repvar 0.14.3

A tiny CLI tool that replaces variables of the style `${KEY}` in text with their respective value. It can also be used as a rust library.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
// SPDX-FileCopyrightText: 2021-2024 Robin Vobruba <hoijui.quaero@gmail.com>
//
// SPDX-License-Identifier: AGPL-3.0-or-later

#![allow(clippy::shadow_reuse)]

use std::borrow::Cow;
use std::collections::HashMap;
use std::io::{self, BufRead, Write};
use typed_builder::TypedBuilder;

fn replacement<S: ::std::hash::BuildHasher>(
    key: &str,
    settings: &Settings<S>,
) -> io::Result<(bool, String)> {
    settings.vars.get(key).map_or_else(
        || {
            if settings.fail_on_missing {
                Err(io::Error::new(
                    io::ErrorKind::NotFound,
                    format!("Undefined variable '{key}'"),
                ))
            } else {
                Ok((false, format!("${{{key}}}")))
            }
        },
        |val| Ok((true, val.to_string())),
    )
}

enum ReplState {
    Text,
    Dollar1,
    Dollar2,
    Key,
}

#[derive(TypedBuilder)]
pub struct Settings<S: ::std::hash::BuildHasher> {
    vars: HashMap<String, String, S>,
    #[builder(default = false)]
    fail_on_missing: bool,
}

/// Settings builder macro.
///
/// This macro generates builder code,
/// which uses code auto-generated by `TypedBuilder`
/// from the external macro `typed_builder`.
///
/// ```rust
/// # use repvar::replacer::Settings;
/// # use repvar::settings;
/// # use std::collections::HashMap;
/// let mut vars = HashMap::new();
/// settings! {vars: vars};
/// // expands to:
/// # let mut vars = HashMap::new();
/// Settings::builder().vars(vars).build();
/// ```
#[allow(unused_macros)]
#[macro_export]
macro_rules! settings {
    // match-like arm for the macro
    ($($p:ident:$v:expr),*) => {
        // the macro expands to this code

        // This is always there
        Settings::builder()
            // This appears as many times as there are arguments
            $(.$p($v))*
            // This too is always there
            .build()
    }
}
#[allow(unused_imports)]
pub use settings;

/// Extracts all occurrences of variables of the form `${KEY}` in a string
/// in the order and amount they appear in the input.
///
/// ```rust
/// # use repvar::replacer::extract_from_string;
/// let input = "a ${key_a} $${key_a} b ${key_b} c d ${key_a}e";
/// let expected = vec!("key_a", "key_b", "key_a");
/// let actual = extract_from_string(input);
/// assert_eq!(expected, actual);
/// ```
///
/// # Panics
///
/// In the theoretically impossible case of invalid key-name indices.
#[must_use]
pub fn extract_from_string(input: &'_ str) -> Vec<&'_ str> {
    let mut state = ReplState::Text;
    let mut key_start = 0;
    let mut keys = vec![];
    for (idx, chr) in input.char_indices() {
        match state {
            ReplState::Text => {
                if chr == '$' {
                    state = ReplState::Dollar1;
                }
            }
            ReplState::Dollar1 => {
                if chr == '$' {
                    state = ReplState::Dollar2;
                } else if chr == '{' {
                    state = ReplState::Key;
                    key_start = idx + 1;
                } else {
                    state = ReplState::Text;
                }
            }
            ReplState::Dollar2 => {
                if chr != '$' {
                    state = ReplState::Text;
                }
            }
            ReplState::Key => {
                if chr == '}' {
                    keys.push(input.get(key_start..idx).expect("Bad indices for the name part; should be impossilbe due to the logic we use."));
                    state = ReplState::Text;
                }
            }
        }
    }

    keys
}

/// Extracts all occurrences of variables of the form `${KEY}` in a stream
/// in the order and amount they appear in the input.
///
/// # Errors
///
/// If reading from the `reader` failed.
pub fn extract_from_stream(reader: &mut impl BufRead) -> io::Result<Vec<String>> {
    let mut keys = vec![];

    for line in cli_utils::lines_iterator(reader, false) {
        extract_from_string(&line?)
            .into_iter()
            .map(str::to_owned)
            .for_each(|key| keys.push(key));
    }

    Ok(keys)
}

/// Extracts all occurrences of variables of the form `${KEY}` in a file
/// in the order and amount they appear in the input.
///
/// # Errors
///
/// If reading from the `source` failed.
pub fn extract_from_file(source: Option<&str>) -> io::Result<Vec<String>> {
    let mut reader = cli_utils::create_input_reader(source)?;

    extract_from_stream(&mut reader)
}

/// Replaces all occurrences of variables of the form `${KEY}` in a string
/// with their respective values.
///
/// ```rust
/// # use repvar::replacer::{replace_in_string, Settings};
/// # use std::collections::HashMap;
/// let mut vars = HashMap::new();
/// vars.insert("key_a".to_string(), "1".to_string());
/// vars.insert("key_b".to_string(), "2".to_string());
/// let input = "a ${key_a} $${key_a} b ${key_b} c";
/// let expected = "a 1 ${key_a} b 2 c";
/// let actual =
///     replace_in_string(input, &Settings::builder().vars(vars).build()).unwrap();
/// assert_eq!(expected, actual);
/// ```
///
/// # Errors
///
/// If a variable key was found in the stream,
/// but `vars` contains no entry for it,
/// and `fail_on_missing` is `true`.
pub fn replace_in_string<'t, S: ::std::hash::BuildHasher>(
    line: &'t str,
    settings: &Settings<S>,
) -> io::Result<Cow<'t, str>> {
    let mut state = ReplState::Text;
    let mut key = String::with_capacity(64);
    let mut buff_special = String::with_capacity(5);
    let mut buff_out = String::with_capacity(line.len() * 3 / 2);
    let mut replaced = false;
    for chr in line.chars() {
        match state {
            ReplState::Text => {
                if chr == '$' {
                    state = ReplState::Dollar1;
                    buff_special.push(chr);
                } else {
                    buff_out.push(chr);
                }
            }
            ReplState::Dollar1 => {
                if chr == '$' {
                    state = ReplState::Dollar2;
                    buff_special.push(chr);
                } else if chr == '{' {
                    state = ReplState::Key;
                    buff_special.clear();
                } else {
                    state = ReplState::Text;
                    buff_out.push_str(&buff_special);
                    buff_special.clear();
                }
            }
            ReplState::Dollar2 => {
                buff_special.push(chr);
                if chr != '$' {
                    if chr == '{' {
                        // Remove one of the '$'s,
                        // so "$$${key_" -> "$${key_",
                        // for example
                        buff_special.remove(0);
                        replaced = true;
                    }
                    state = ReplState::Text;
                    buff_out.push_str(&buff_special);
                    buff_special.clear();
                }
            }
            ReplState::Key => {
                if chr == '}' {
                    let repl = replacement(&key, settings)?;
                    replaced = replaced || repl.0;
                    buff_out.push_str(&repl.1);
                    key.clear();
                    state = ReplState::Text;
                } else {
                    key.push(chr);
                }
            }
        }
    }

    if replaced {
        buff_out.push_str(&buff_special);
        if matches!(state, ReplState::Key) {
            buff_out.push_str("${");
        }
        buff_out.push_str(&key);

        Ok(Cow::Owned(buff_out))
    } else {
        // There was no replacement at all
        // -> return the input
        Ok(Cow::Borrowed(line))
    }
}

/// Replaces all occurrences of variables of the form `${KEY}` in a input stream
/// with their respective values.
///
/// # Errors
///
/// If a variable key was found in the stream,
/// but `vars` contains no entry for it,
/// and `fail_on_missing` is `true`.
///
/// If reading from the `reader` failed.
///
/// If writing to the `writer` failed.
pub fn replace_in_stream<S: ::std::hash::BuildHasher>(
    reader: &mut impl BufRead,
    writer: &mut impl Write,
    settings: &Settings<S>,
) -> io::Result<()> {
    if tracing::enabled!(tracing::Level::DEBUG) {
        for (key, value) in &settings.vars {
            tracing::debug!("VARIABLE: {key}={value}");
        }
    }

    for line in cli_utils::lines_iterator(reader, false) {
        writer.write_all(replace_in_string(&line?, settings)?.as_bytes())?;
    }

    Ok(())
}

/// Replaces all occurrences of variables of the form `${KEY}` in a input stream
/// with their respective values.
///
/// # Errors
///
/// If a variable key was found in the stream,
/// but `vars` contains no entry for it,
/// and `fail_on_missing` is `true`.
///
/// If reading from the `source` failed.
///
/// If writing to the `destination` failed.
pub fn replace_in_file<S: ::std::hash::BuildHasher>(
    source: Option<&str>,
    destination: Option<&str>,
    settings: &Settings<S>,
) -> io::Result<()> {
    if tracing::enabled!(tracing::Level::DEBUG) {
        if let Some(in_file) = source {
            tracing::debug!("INPUT: {}", &in_file);
        }
        if let Some(out_file) = destination {
            tracing::debug!("OUTPUT: {}", &out_file);
        }
    }

    let mut reader = cli_utils::create_input_reader(source)?;
    let mut writer = cli_utils::create_output_writer(destination)?;

    replace_in_stream(&mut reader, &mut writer, settings)
}

#[cfg(test)]
mod tests {
    // Note this useful idiom:
    // importing names from outer (for mod tests) scope.
    use super::*;

    #[test]
    fn test_replace_in_string_no_vars() {
        let vars = HashMap::new();
        let input = "a ${key_a} $${key_a} b ${key_b} c";
        let expected = "a ${key_a} ${key_a} b ${key_b} c";
        let actual = replace_in_string(input, &settings! {vars: vars}).unwrap();
        assert_eq!(expected, actual);
    }

    #[test]
    fn test_replace_in_string_one_var() {
        let mut vars = HashMap::new();
        vars.insert("key_a".to_string(), "1".to_string());
        let input = "a ${key_a} $${key_a} b ${key_b} c";
        let expected = "a 1 ${key_a} b ${key_b} c";
        let actual = replace_in_string(input, &settings! {vars: vars}).unwrap();
        assert_eq!(expected, actual);
    }

    #[test]
    fn test_replace_in_string_two_vars() {
        let mut vars = HashMap::new();
        vars.insert("key_a".to_string(), "1".to_string());
        vars.insert("key_b".to_string(), "2".to_string());
        let input = "a ${key_a} $${key_a} b ${key_b} c";
        let expected = "a 1 ${key_a} b 2 c";
        let actual = replace_in_string(input, &settings! {vars: vars}).unwrap();
        assert_eq!(expected, actual);
    }

    #[test]
    fn test_replace_in_string_case_sensitive() {
        let mut vars = HashMap::new();
        vars.insert("Key_A".to_string(), "1".to_string());
        vars.insert("key_b".to_string(), "2".to_string());
        let input = "a ${key_a} $${key_a} b ${key_b} c";
        let expected = "a ${key_a} ${key_a} b 2 c";
        let actual = replace_in_string(input, &settings! {vars: vars}).unwrap();
        assert_eq!(expected, actual);
    }

    #[test]
    fn test_replace_in_string_missing_closing_bracket() {
        let mut vars = HashMap::new();
        vars.insert("key_a".to_string(), "1".to_string());
        let input = "a ${key_a";
        let expected = "a ${key_a";
        let actual = replace_in_string(input, &settings! {vars: vars}).unwrap();
        assert_eq!(expected, actual);
    }

    #[test]
    fn test_replace_in_string_missing_closing_bracket_and_key() {
        let mut vars = HashMap::new();
        vars.insert("key_a".to_string(), "1".to_string());
        let input = "a ${";
        let expected = "a ${";
        let actual = replace_in_string(input, &settings! {vars: vars}).unwrap();
        assert_eq!(expected, actual);
    }

    #[test]
    fn test_replace_in_string_missing_closing_bracket_quoted() {
        let mut vars = HashMap::new();
        vars.insert("key_a".to_string(), "1".to_string());
        let input = "a $${key_a";
        let expected = "a ${key_a"; // NOTE Do we really want it this way, or should there still be two $$? this way is easy to implement, the other way seems more correct
        let actual = replace_in_string(input, &settings! {vars: vars}).unwrap();
        assert_eq!(expected, actual);
    }
    #[test]
    fn test_replace_in_string_missing_closing_bracket_and_key_quoted() {
        let vars = HashMap::new();
        let input = "a $${";
        let expected = "a ${"; // NOTE Do we really want it this way, or should there still be two $$? this way is easy to implement, the other way seems more correct
        let actual = replace_in_string(input, &settings! {vars: vars}).unwrap();
        assert_eq!(expected, actual);
    }

    #[test]
    fn test_replace_in_string_with_var_with_dollar_value() {
        let mut vars = HashMap::new();
        vars.insert("key_a".to_string(), "1$2".to_string());
        let input = "a ${key_a} $${key_a} b ${key_b} c";
        let expected = "a 1$2 ${key_a} b ${key_b} c";
        let actual = replace_in_string(input, &settings! {vars: vars}).unwrap();
        assert_eq!(expected, actual);
    }
}