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
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
use std::collections::HashMap;
use std::io::Write;
use std::sync::Arc;
use crate::server::database::PvDatabase;
/// Argument type for a command parameter.
#[derive(Debug, Clone)]
pub enum ArgType {
String,
Int,
Double,
}
/// Description of a single command argument.
#[derive(Debug, Clone)]
pub struct ArgDesc {
pub name: &'static str,
pub arg_type: ArgType,
pub optional: bool,
}
/// A parsed argument value.
#[derive(Debug, Clone)]
pub enum ArgValue {
String(String),
Int(i64),
Double(f64),
Missing,
}
/// Result of executing a command.
pub enum CommandOutcome {
Continue,
Exit,
}
/// Command result type.
pub type CommandResult = Result<CommandOutcome, String>;
/// Trait for command handlers.
pub trait CommandHandler: Send + Sync {
fn call(&self, args: &[ArgValue], ctx: &CommandContext) -> CommandResult;
}
impl<F> CommandHandler for F
where
F: Fn(&[ArgValue], &CommandContext) -> CommandResult + Send + Sync,
{
fn call(&self, args: &[ArgValue], ctx: &CommandContext) -> CommandResult {
self(args, ctx)
}
}
/// A registered command definition.
///
/// `handler` is `Arc`-backed so a `CommandDef` can be cloned and
/// re-registered on a fresh `IocShell` (used by the
/// `afterIocRunning` post-init shell — without Clone, custom
/// site-specific commands registered via
/// `IocApplication::register_shell_command` would be unavailable
/// in the post-init queue).
#[derive(Clone)]
pub struct CommandDef {
pub name: String,
pub args: Vec<ArgDesc>,
pub usage: String,
pub handler: Arc<dyn CommandHandler>,
}
impl CommandDef {
pub fn new(
name: impl Into<String>,
args: Vec<ArgDesc>,
usage: impl Into<String>,
handler: impl CommandHandler + 'static,
) -> Self {
Self {
name: name.into(),
args,
usage: usage.into(),
handler: Arc::new(handler),
}
}
}
/// Sync→async bridge for commands running on a blocking thread.
pub struct CommandContext {
db: Arc<PvDatabase>,
handle: tokio::runtime::Handle,
/// Output writer — defaults to stdout, redirected to a file by `>` / `>>`.
output: std::cell::RefCell<Box<dyn std::io::Write>>,
}
impl CommandContext {
pub fn new(db: Arc<PvDatabase>, handle: tokio::runtime::Handle) -> Self {
Self {
db,
handle,
output: std::cell::RefCell::new(Box::new(std::io::stdout())),
}
}
/// Access the PV database.
pub fn db(&self) -> &Arc<PvDatabase> {
&self.db
}
/// Access the tokio runtime handle (e.g., for spawning tasks from iocsh commands).
pub fn runtime_handle(&self) -> &tokio::runtime::Handle {
&self.handle
}
/// Print a line to the current output (stdout or redirected file).
pub fn println(&self, msg: &str) {
let mut out = self.output.borrow_mut();
let _ = writeln!(out, "{msg}");
}
/// Print a formatted string to the current output.
pub fn print_fmt(&self, args: std::fmt::Arguments<'_>) {
let mut out = self.output.borrow_mut();
let _ = out.write_fmt(args);
let _ = writeln!(out);
}
/// Temporarily redirect output to a writer, run a closure, then restore.
pub(crate) fn with_output<W: std::io::Write + 'static, R>(
&self,
writer: W,
f: impl FnOnce() -> R,
) -> R {
let prev = self.output.replace(Box::new(writer));
let result = f();
let _ = self.output.borrow_mut().flush();
self.output.replace(prev);
result
}
/// Run an async future from the blocking REPL thread.
///
/// # Panics
/// Panics if called from within a tokio runtime thread.
pub fn block_on<F: std::future::Future>(&self, future: F) -> F::Output {
assert!(
tokio::runtime::Handle::try_current().is_err(),
"CommandContext::block_on() must not be called from a tokio runtime thread"
);
self.handle.block_on(future)
}
}
/// Registry of all available commands.
pub(crate) struct CommandRegistry {
commands: HashMap<String, CommandDef>,
}
impl CommandRegistry {
pub fn new() -> Self {
Self {
commands: HashMap::new(),
}
}
pub fn register(&mut self, def: CommandDef) {
self.commands.insert(def.name.clone(), def);
}
pub fn get(&self, name: &str) -> Option<&CommandDef> {
self.commands.get(name)
}
pub fn list(&self) -> Vec<&str> {
let mut names: Vec<&str> = self.commands.keys().map(|s| s.as_str()).collect();
names.sort();
names
}
}
/// Tokenize a command line supporting both C++ EPICS and space-separated syntax.
///
/// C++ syntax: `command("arg1", arg2, $(VAR))` — parens delimit args, commas separate.
/// Legacy syntax: `command "arg1" arg2` — whitespace separates.
///
/// `$(VAR)` references are resolved from environment variables in all tokens.
pub(crate) fn tokenize(line: &str) -> Vec<String> {
let line = line.trim();
if line.is_empty() {
return Vec::new();
}
// Find the command name: everything up to first '(' or whitespace
let mut cmd_end = line.len();
let mut has_parens = false;
for (i, ch) in line.char_indices() {
if ch == '(' {
cmd_end = i;
has_parens = true;
break;
} else if ch == ' ' || ch == '\t' {
cmd_end = i;
break;
}
}
let cmd_name = &line[..cmd_end];
if cmd_name.is_empty() {
return Vec::new();
}
let mut tokens = vec![substitute_env_vars(cmd_name)];
if has_parens {
// C++ syntax: command(arg1, arg2, ...)
// Find matching closing paren
let args_start = cmd_end + 1; // skip '('
let rest = &line[args_start..];
let paren_end = find_closing_paren(rest);
let args_str = &rest[..paren_end];
if !args_str.trim().is_empty() {
for arg in split_comma_args(args_str) {
tokens.push(substitute_env_vars(&arg));
}
}
} else {
// Legacy space-separated syntax
let rest = &line[cmd_end..];
for arg in split_space_args(rest) {
tokens.push(substitute_env_vars(&arg));
}
}
tokens
}
/// Find the closing ')' in a string, respecting quoted strings, `$(...)`
/// macro references, and `${...}` macro references (which C macLib treats
/// equivalently — see macCore.c:777). A `)` inside a `${...}` body (e.g.
/// `${foo(bar)}`) must NOT be mistaken for the outer call's closing paren.
/// Returns the byte offset of ')' or the string length if not found.
fn find_closing_paren(s: &str) -> usize {
let mut in_quotes = false;
let bytes = s.as_bytes();
let mut i = 0;
while i < bytes.len() {
let ch = bytes[i];
if in_quotes {
if ch == b'\\' {
i += 1; // skip escaped char
} else if ch == b'"' {
in_quotes = false;
}
} else if ch == b'"' {
in_quotes = true;
} else if ch == b'$' && i + 1 < bytes.len() && bytes[i + 1] == b'(' {
// Skip $(...) — find the matching ')' for the macro ref
if let Some(end) = bytes[i + 2..].iter().position(|&c| c == b')') {
i += 2 + end + 1; // skip past the macro's ')'
continue;
}
} else if ch == b'$' && i + 1 < bytes.len() && bytes[i + 1] == b'{' {
// Skip ${...} — find the matching '}' for the macro ref so any
// ')' inside the macro body doesn't terminate the outer call.
if let Some(end) = bytes[i + 2..].iter().position(|&c| c == b'}') {
i += 2 + end + 1; // skip past the macro's '}'
continue;
}
} else if ch == b')' {
return i;
}
i += 1;
}
s.len()
}
/// Split comma-separated arguments, respecting quoted strings.
/// Trims whitespace around each argument and strips outer quotes.
///
/// M-1: both `"` and `'` open a quoted string; the quote is closed
/// only by the *same* character it was opened with — matching C
/// `iocsh.cpp` `split()` (`if ((c == '"') || (c == '\'')) quote = c;`).
fn split_comma_args(s: &str) -> Vec<String> {
// First, split on commas respecting quoted strings
let mut raw_parts: Vec<String> = Vec::new();
let mut current = String::new();
// `0` = not in a quote; otherwise the opening quote char.
let mut quote: char = '\0';
let mut chars = s.chars().peekable();
while let Some(ch) = chars.next() {
if quote != '\0' {
if ch == '\\' {
if let Some(&next) = chars.peek() {
match next {
'"' | '\'' | '\\' => {
current.push(chars.next().unwrap());
}
_ => {
current.push(ch);
}
}
} else {
current.push(ch);
}
} else if ch == quote {
quote = '\0';
current.push(ch);
} else {
current.push(ch);
}
} else if ch == '"' || ch == '\'' {
quote = ch;
current.push(ch);
} else if ch == ',' {
raw_parts.push(std::mem::take(&mut current));
} else {
current.push(ch);
}
}
raw_parts.push(current);
// Now process each part: trim whitespace, then strip outer quotes
let mut args = Vec::new();
for part in raw_parts {
let trimmed = part.trim();
if trimmed.is_empty() && args.is_empty() {
continue; // skip leading empty
}
let outer_quote = trimmed.chars().next().filter(|c| *c == '"' || *c == '\'');
if let Some(q) = outer_quote {
if trimmed.len() >= 2 && trimmed.ends_with(q) {
// Strip outer quotes and process escapes
let inner = &trimmed[1..trimmed.len() - 1];
let mut val = String::new();
let mut chs = inner.chars().peekable();
while let Some(c) = chs.next() {
if c == '\\' {
if let Some(&next) = chs.peek() {
match next {
'"' | '\'' | '\\' => {
val.push(chs.next().unwrap());
}
_ => {
val.push(c);
}
}
} else {
val.push(c);
}
} else {
val.push(c);
}
}
args.push(val);
continue;
}
}
args.push(trimmed.to_string());
}
args
}
/// Split space/tab separated arguments, respecting quoted strings.
///
/// M-1: both `"` and `'` delimit a quoted string; the quote is closed
/// only by the matching character — mirrors C `iocsh.cpp` `split()`.
fn split_space_args(s: &str) -> Vec<String> {
let mut args = Vec::new();
let mut current = String::new();
// `0` = not in a quote; otherwise the opening quote char.
let mut quote: char = '\0';
let mut has_token = false;
let mut chars = s.chars().peekable();
while let Some(ch) = chars.next() {
if quote != '\0' {
if ch == '\\' {
if let Some(&next) = chars.peek() {
match next {
'"' | '\'' | '\\' => {
current.push(chars.next().unwrap());
}
_ => {
current.push(ch);
}
}
} else {
current.push(ch);
}
} else if ch == quote {
quote = '\0';
} else {
current.push(ch);
}
} else if ch == '"' || ch == '\'' {
quote = ch;
has_token = true;
} else if ch == ' ' || ch == '\t' {
if has_token {
args.push(std::mem::take(&mut current));
has_token = false;
}
} else {
current.push(ch);
has_token = true;
}
}
if has_token {
args.push(current);
}
args
}
/// Scan a command line for the malformed-input conditions C
/// `iocsh.cpp` `split()` (lines 362-371) flags: an unbalanced quote
/// (`"` or `'`) and a trailing backslash. Returns a human-readable
/// diagnostic for the first problem found, or `None` if the line is
/// well-formed. L-5: C marks such a line errored; the Rust tokenizer
/// previously consumed them silently.
pub(crate) fn lint_line(line: &str) -> Option<&'static str> {
let mut quote: char = '\0';
let mut backslash = false;
for ch in line.chars() {
if backslash {
backslash = false;
continue;
}
if ch == '\\' {
backslash = true;
continue;
}
if quote != '\0' {
if ch == quote {
quote = '\0';
}
} else if ch == '"' || ch == '\'' {
quote = ch;
}
}
if quote != '\0' {
return Some("Unbalanced quote.");
}
if backslash {
return Some("Trailing backslash.");
}
None
}
/// Substitute `$(NAME)` and `${NAME}` references with environment variable
/// values. Mirrors C macLib (macCore.c:777) which accepts both bracket
/// forms: `(*r++ == '(') ? "=,)" : "=,}"`. Default values via
/// `$(NAME=DEFAULT)` / `${NAME=DEFAULT}` are supported.
///
/// Unresolved references are passed through verbatim using the bracket
/// pair they came in with — so `${X}` with X unset emits `${X}`, not
/// `$(X)`.
pub(crate) fn substitute_env_vars(s: &str) -> String {
if !s.contains("$(") && !s.contains("${") {
return s.to_string();
}
let mut result = String::with_capacity(s.len());
let chars: Vec<char> = s.chars().collect();
let mut i = 0;
while i < chars.len() {
if i + 1 < chars.len() && chars[i] == '$' && (chars[i + 1] == '(' || chars[i + 1] == '{') {
// Track the bracket pair so the verbatim passthrough on
// lookup miss reproduces the original syntax.
let (open, close) = if chars[i + 1] == '(' {
('(', ')')
} else {
('{', '}')
};
if let Some(end) = chars[i + 2..].iter().position(|&c| c == close) {
let var_expr: String = chars[i + 2..i + 2 + end].iter().collect();
// Support $(VAR=DEFAULT) / ${VAR=DEFAULT} syntax
let (var_name, default_val) = if let Some(eq_pos) = var_expr.find('=') {
(&var_expr[..eq_pos], Some(&var_expr[eq_pos + 1..]))
} else {
(var_expr.as_str(), None)
};
if let Some(val) = crate::runtime::env::get(var_name) {
result.push_str(&val);
} else if let Some(def) = default_val {
result.push_str(def);
} else {
result.push('$');
result.push(open);
result.push_str(&var_expr);
result.push(close);
}
i += 2 + end + 1;
continue;
}
}
result.push(chars[i]);
i += 1;
}
result
}
/// Parse tokens into argument values according to argument descriptors.
pub(crate) fn parse_args(tokens: &[String], descs: &[ArgDesc]) -> Result<Vec<ArgValue>, String> {
let mut result = Vec::with_capacity(descs.len());
for (i, desc) in descs.iter().enumerate() {
if i < tokens.len() {
let token = &tokens[i];
let val = match desc.arg_type {
ArgType::String => ArgValue::String(token.clone()),
ArgType::Int => token.parse::<i64>().map(ArgValue::Int).map_err(|_| {
format!(
"argument '{}': expected integer, got '{}'",
desc.name, token
)
})?,
ArgType::Double => token.parse::<f64>().map(ArgValue::Double).map_err(|_| {
format!("argument '{}': expected number, got '{}'", desc.name, token)
})?,
};
result.push(val);
} else if desc.optional {
result.push(ArgValue::Missing);
} else {
return Err(format!("missing required argument '{}'", desc.name));
}
}
Ok(result)
}
#[cfg(test)]
mod tests {
use super::*;
// --- Legacy space-separated syntax ---
#[test]
fn test_tokenize_simple() {
assert_eq!(tokenize("dbl"), vec!["dbl"]);
assert_eq!(tokenize("dbgf TEMP.VAL"), vec!["dbgf", "TEMP.VAL"]);
}
#[test]
fn test_tokenize_quoted() {
assert_eq!(
tokenize(r#"dbpf TEMP "42.0""#),
vec!["dbpf", "TEMP", "42.0"]
);
}
#[test]
fn test_tokenize_escaped_quotes() {
assert_eq!(
tokenize(r#"cmd "hello \"world\"""#),
vec!["cmd", r#"hello "world""#]
);
}
#[test]
fn test_tokenize_escaped_backslash() {
assert_eq!(tokenize(r#"cmd "a\\b""#), vec!["cmd", r#"a\b"#]);
}
#[test]
fn test_tokenize_empty() {
assert!(tokenize("").is_empty());
assert!(tokenize(" ").is_empty());
}
#[test]
fn test_tokenize_trailing_whitespace() {
assert_eq!(tokenize("dbl "), vec!["dbl"]);
}
// --- C++ EPICS function-call syntax ---
#[test]
fn test_tokenize_cpp_basic() {
assert_eq!(
tokenize(r#"epicsEnvSet("PREFIX", "SIM1:")"#),
vec!["epicsEnvSet", "PREFIX", "SIM1:"]
);
}
#[test]
fn test_tokenize_cpp_mixed_types() {
assert_eq!(
tokenize(r#"simDetectorConfig("SIM1", 256, 256, 50000000)"#),
vec!["simDetectorConfig", "SIM1", "256", "256", "50000000"]
);
}
#[test]
fn test_tokenize_cpp_no_args() {
assert_eq!(tokenize("iocInit()"), vec!["iocInit"]);
}
#[test]
fn test_tokenize_cpp_spaces_around_commas() {
assert_eq!(
tokenize(r#"cmd( "a" , "b" , 3 )"#),
vec!["cmd", "a", "b", "3"]
);
}
#[test]
fn test_tokenize_cpp_env_var() {
unsafe { std::env::set_var("_TEST_TOK_VAR", "HELLO") };
assert_eq!(
tokenize(r#"cmd("$(_TEST_TOK_VAR)", $(_TEST_TOK_VAR))"#),
vec!["cmd", "HELLO", "HELLO"]
);
unsafe { std::env::remove_var("_TEST_TOK_VAR") };
}
#[test]
fn test_tokenize_cpp_env_var_unset() {
// Unset env vars kept as $(NAME)
assert_eq!(
tokenize(r#"cmd($(UNLIKELY_VAR_XYZ))"#),
vec!["cmd", "$(UNLIKELY_VAR_XYZ)"]
);
}
#[test]
fn test_tokenize_cpp_dbloadrecords() {
// Matches real C++ EPICS syntax
assert_eq!(
tokenize(r#"dbLoadRecords("path/to/file.db","P=SIM1:,R=cam1:")"#),
vec!["dbLoadRecords", "path/to/file.db", "P=SIM1:,R=cam1:"]
);
}
#[test]
fn test_tokenize_cpp_quoted_with_parens_inside() {
// Parens inside quotes should not confuse the parser
assert_eq!(
tokenize(r#"cmd("hello(world)")"#),
vec!["cmd", "hello(world)"]
);
}
#[test]
fn test_parse_args_required() {
let descs = vec![ArgDesc {
name: "name",
arg_type: ArgType::String,
optional: false,
}];
let tokens = vec!["TEMP".to_string()];
let result = parse_args(&tokens, &descs).unwrap();
assert!(matches!(&result[0], ArgValue::String(s) if s == "TEMP"));
}
#[test]
fn test_parse_args_optional_missing() {
let descs = vec![ArgDesc {
name: "type",
arg_type: ArgType::String,
optional: true,
}];
let result = parse_args(&[], &descs).unwrap();
assert!(matches!(&result[0], ArgValue::Missing));
}
#[test]
fn test_parse_args_missing_required() {
let descs = vec![ArgDesc {
name: "name",
arg_type: ArgType::String,
optional: false,
}];
let result = parse_args(&[], &descs);
assert!(result.is_err());
}
#[test]
fn test_parse_args_int() {
let descs = vec![ArgDesc {
name: "level",
arg_type: ArgType::Int,
optional: false,
}];
let tokens = vec!["42".to_string()];
let result = parse_args(&tokens, &descs).unwrap();
assert!(matches!(&result[0], ArgValue::Int(42)));
}
#[test]
fn test_parse_args_int_invalid() {
let descs = vec![ArgDesc {
name: "level",
arg_type: ArgType::Int,
optional: false,
}];
let tokens = vec!["abc".to_string()];
assert!(parse_args(&tokens, &descs).is_err());
}
#[test]
fn test_parse_args_double() {
let descs = vec![ArgDesc {
name: "value",
arg_type: ArgType::Double,
optional: false,
}];
let tokens = vec!["3.14".to_string()];
let result = parse_args(&tokens, &descs).unwrap();
match &result[0] {
ArgValue::Double(v) => assert!((*v - 3.14).abs() < 1e-10),
other => panic!("expected Double, got {:?}", other),
}
}
#[test]
fn test_registry_basic() {
let mut reg = CommandRegistry::new();
reg.register(CommandDef::new(
"test",
vec![],
"test command",
|_args: &[ArgValue], _ctx: &CommandContext| Ok(CommandOutcome::Continue),
));
assert!(reg.get("test").is_some());
assert!(reg.get("nonexistent").is_none());
assert_eq!(reg.list(), vec!["test"]);
}
// C macLib (macCore.c:777) accepts both `$(NAME)` and `${NAME}` bracket
// forms — `(*r++ == '(') ? "=,)" : "=,}"`. Rust port previously only
// honored `$(...)`. iocsh scripts that used `${IOC}/db/foo.db`
// (the shell-style form many sites adopted in `st.cmd`) had their
// variables silently left unexpanded.
#[test]
#[serial_test::serial(epics_env)]
fn substitute_env_vars_handles_brace_form() {
// SAFETY: serial(epics_env) serialises every env-mutating test in
// the crate, and we restore the prior state below.
let prev = std::env::var("EPICS_PARITY_TEST_BRACE").ok();
unsafe {
std::env::set_var("EPICS_PARITY_TEST_BRACE", "expanded");
}
let expanded = substitute_env_vars("prefix-${EPICS_PARITY_TEST_BRACE}-suffix");
assert_eq!(expanded, "prefix-expanded-suffix");
// Default value via ${VAR=default} — same syntax C macLib supports.
unsafe {
std::env::remove_var("EPICS_PARITY_TEST_BRACE_UNSET");
}
let expanded = substitute_env_vars("${EPICS_PARITY_TEST_BRACE_UNSET=fallback}");
assert_eq!(expanded, "fallback");
// Unset without default — passes through verbatim using the bracket
// pair it came in with. Caller may then resubstitute later.
let expanded = substitute_env_vars("${EPICS_PARITY_TEST_BRACE_UNSET}");
assert_eq!(expanded, "${EPICS_PARITY_TEST_BRACE_UNSET}");
// $(...) still works exactly as before.
let expanded = substitute_env_vars("$(EPICS_PARITY_TEST_BRACE)");
assert_eq!(expanded, "expanded");
unsafe {
match prev {
Some(v) => std::env::set_var("EPICS_PARITY_TEST_BRACE", v),
None => std::env::remove_var("EPICS_PARITY_TEST_BRACE"),
}
}
}
}