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
//! Implementation - **instantiated twice**
//!
//! **IMPORTANT NOTE TO IMPLEMENTORS**
//!
//! This module is included twice - there are two `mod` statements.
//! The `use super::wtraits::*` line imports *different types* each type.
//!
//! This allows the same code to do double duty: it works with `str`, and also with `Path`.
//! Working with `Path` is quite awkward and complicated - see `path.rs` for the type definitions.
//!
//! The `wtraits` module has all the type names and traits we use,
//! along with documentation of their semantics.
//!
//! But we also allow the use of inherent methods
//! (if they do the right things with both the string and path types).
use VarError;
use Error;
use *;
/// Performs both tilde and environment expansion using the provided contexts.
///
/// `home_dir` and `context` are contexts for tilde expansion and environment expansion,
/// respectively. See [`env_with_context()`] and [`tilde_with_context()`] for more details on
/// them.
///
/// Unfortunately, expanding both `~` and `$VAR`s at the same time is not that simple. First,
/// this function has to track ownership of the data. Since all functions in this crate
/// return [`Cow<str>`], this function takes some precautions in order not to allocate more than
/// necessary. In particular, if the input string contains neither tilde nor `$`-vars, this
/// function will perform no allocations.
///
/// Second, if the input string starts with a variable, and the value of this variable starts
/// with tilde, the naive approach may result into expansion of this tilde. This function
/// avoids this.
///
/// # Examples
///
/// ```
/// use std::path::{PathBuf, Path};
/// use std::borrow::Cow;
///
/// fn home_dir() -> Option<String> { Some("/home/user".into()) }
///
/// fn get_env(name: &str) -> Result<Option<&'static str>, &'static str> {
/// match name {
/// "A" => Ok(Some("a value")),
/// "B" => Ok(Some("b value")),
/// "T" => Ok(Some("~")),
/// "E" => Err("some error"),
/// _ => Ok(None)
/// }
/// }
///
/// // Performs both tilde and environment expansions
/// assert_eq!(
/// shellexpand::full_with_context("~/$A/$B", home_dir, get_env).unwrap(),
/// "/home/user/a value/b value"
/// );
///
/// // Errors from environment expansion are propagated to the result
/// assert_eq!(
/// shellexpand::full_with_context("~/$E/something", home_dir, get_env),
/// Err(shellexpand::LookupError {
/// var_name: "E".into(),
/// cause: "some error"
/// })
/// );
///
/// // Input without starting tilde and without variables does not cause allocations
/// let s = shellexpand::full_with_context("some/path", home_dir, get_env);
/// match s {
/// Ok(Cow::Borrowed(s)) => assert_eq!(s, "some/path"),
/// _ => unreachable!("the above variant is always valid")
/// }
///
/// // Input with a tilde inside a variable in the beginning of the string does not cause tilde
/// // expansion
/// assert_eq!(
/// shellexpand::full_with_context("$T/$A/$B", home_dir, get_env).unwrap(),
/// "~/a value/b value"
/// );
/// ```
Sized, CO, C, E, P, HD> where
SI: ,
CO: ,
C: FnMut ,
P: ,
HD: FnOnce ,
/// Same as [`full_with_context()`], but forbids the variable lookup function to return errors.
///
/// This function also performs full shell-like expansion, but it uses
/// [`env_with_context_no_errors()`] for environment expansion whose context lookup function returns
/// just [`Option<CO>`] instead of [`Result<Option<CO>, E>`]. Therefore, the function itself also
/// returns just [`Cow<str>`] instead of [`Result<Cow<str>, LookupError<E>>`]. Otherwise it is
/// identical to [`full_with_context()`].
///
/// # Examples
///
/// ```
/// use std::path::{PathBuf, Path};
/// use std::borrow::Cow;
///
/// fn home_dir() -> Option<String> { Some("/home/user".into()) }
///
/// fn get_env(name: &str) -> Option<&'static str> {
/// match name {
/// "A" => Some("a value"),
/// "B" => Some("b value"),
/// "T" => Some("~"),
/// _ => None
/// }
/// }
///
/// // Performs both tilde and environment expansions
/// assert_eq!(
/// shellexpand::full_with_context_no_errors("~/$A/$B", home_dir, get_env),
/// "/home/user/a value/b value"
/// );
///
/// // Input without starting tilde and without variables does not cause allocations
/// let s = shellexpand::full_with_context_no_errors("some/path", home_dir, get_env);
/// match s {
/// Cow::Borrowed(s) => assert_eq!(s, "some/path"),
/// _ => unreachable!("the above variant is always valid")
/// }
///
/// // Input with a tilde inside a variable in the beginning of the string does not cause tilde
/// // expansion
/// assert_eq!(
/// shellexpand::full_with_context_no_errors("$T/$A/$B", home_dir, get_env),
/// "~/a value/b value"
/// );
/// ```
Sized, CO, C, P, HD> where
SI: ,
CO: ,
C: FnMut ,
P: ,
HD: FnOnce ,
/// Performs both tilde and environment expansions in the default system context.
///
/// This function delegates to [`full_with_context()`], using the default system sources for both
/// home directory and environment, namely [`dirs::home_dir()`] and [`std::env::var()`].
///
/// Note that variable lookup of unknown variables will fail with an error instead of, for example,
/// replacing the unknown variable with an empty string. The author thinks that this behavior is
/// more useful than the other ones. If you need to change it, use [`full_with_context()`] or
/// [`full_with_context_no_errors()`] with an appropriate context function instead.
///
/// This function behaves exactly like [`full_with_context()`] in regard to tilde-containing
/// variables in the beginning of the input string.
///
/// # Examples
///
/// ```
/// use std::env;
///
/// env::set_var("A", "a value");
/// env::set_var("B", "b value");
///
/// let home_dir = dirs::home_dir()
/// .map(|p| p.display().to_string())
/// .unwrap_or_else(|| "~".to_owned());
///
/// // Performs both tilde and environment expansions using the system contexts
/// assert_eq!(
/// shellexpand::full("~/$A/${B}s").unwrap(),
/// format!("{}/a value/b values", home_dir)
/// );
///
/// // Unknown variables cause expansion errors
/// assert_eq!(
/// shellexpand::full("~/$UNKNOWN/$B"),
/// Err(shellexpand::LookupError {
/// var_name: "UNKNOWN".into(),
/// cause: env::VarError::NotPresent
/// })
/// );
/// ```
Sized> where
SI: ,
/// Represents a variable lookup error.
///
/// This error is returned by [`env_with_context()`] function (and, therefore, also by [`env()`],
/// [`full_with_context()`] and [`full()`]) when the provided context function returns an error. The
/// original error is provided in the `cause` field, while `name` contains the name of a variable
/// whose expansion caused the error.
/// Performs the environment expansion using the provided context.
///
/// This function walks through the input string `input` and attempts to construct a new string by
/// replacing all shell-like variable sequences with the corresponding values obtained via the
/// `context` function. The latter may return an error; in this case the error will be returned
/// immediately, along with the name of the offending variable. Also the context function may
/// return `Ok(None)`, indicating that the given variable is not available; in this case the
/// variable sequence is left as it is in the output string.
///
/// The syntax of variables resembles the one of bash-like shells: all of `$VAR`, `${VAR}`,
/// `$NAME_WITH_UNDERSCORES` are valid variable references, and the form with braces may be used to
/// separate the reference from the surrounding alphanumeric text: `before${VAR}after`. Note,
/// however, that for simplicity names like `$123` or `$1AB` are also valid, as opposed to shells
/// where `$<number>` has special meaning of positional arguments. Also note that "alphanumericity"
/// of variable names is checked with [`std::primitive::char::is_alphanumeric()`], therefore lots of characters which
/// are considered alphanumeric by the Unicode standard are also valid names for variables. When
/// unsure, use braces to separate variables from the surrounding text.
///
/// This function has four generic type parameters: `SI` represents the input string, `CO` is the
/// output of context lookups, `C` is the context closure and `E` is the type of errors returned by
/// the context function. `SI` and `CO` must be types, a references to which can be converted to
/// a string slice. For example, it is fine for the context function to return [`&str`]'s, [`String`]'s or
/// [`Cow<str>`]'s, which gives the user a lot of flexibility.
///
/// If the context function returns an error, it will be wrapped into [`LookupError`] and returned
/// immediately. [`LookupError`], besides the original error, also contains a string with the name of
/// the variable whose expansion caused the error. [`LookupError`] implements [`Error`], [`Clone`] and
/// [`Eq`] traits for further convenience and interoperability.
///
/// If you need to expand system environment variables, you can use [`env()`] or [`full()`] functions.
/// If your context does not have errors, you may use [`env_with_context_no_errors()`] instead of
/// this function because it provides a simpler API.
///
/// # Examples
///
/// ```
/// fn context(s: &str) -> Result<Option<&'static str>, &'static str> {
/// match s {
/// "A" => Ok(Some("a value")),
/// "B" => Ok(Some("b value")),
/// "E" => Err("something went wrong"),
/// _ => Ok(None)
/// }
/// }
///
/// // Regular variables are expanded
/// assert_eq!(
/// shellexpand::env_with_context("begin/$A/${B}s/end", context).unwrap(),
/// "begin/a value/b values/end"
/// );
///
/// // Expand to a default value if the variable is not defined
/// assert_eq!(
/// shellexpand::env_with_context("begin/${UNSET_ENV:-42}/end", context).unwrap(),
/// "begin/42/end"
/// );
///
/// // Unknown variables are left as is
/// assert_eq!(
/// shellexpand::env_with_context("begin/$UNKNOWN/end", context).unwrap(),
/// "begin/$UNKNOWN/end"
/// );
///
/// // Errors are propagated
/// assert_eq!(
/// shellexpand::env_with_context("begin${E}end", context),
/// Err(shellexpand::LookupError {
/// var_name: "E".into(),
/// cause: "something went wrong"
/// })
/// );
/// ```
Sized, CO, C, E> where
SI: ,
CO: ,
C: FnMut ,
/// Same as [`env_with_context()`], but forbids the variable lookup function to return errors.
///
/// This function also performs environment expansion, but it requires context function of type
/// `FnMut(&str) -> Option<CO>` instead of `FnMut(&str) -> Result<Option<CO>, E>`. This simplifies
/// the API when you know in advance that the context lookups may not fail.
///
/// Because of the above, instead of [`Result<Cow<str>, LookupError<E>>`] this function returns just
/// [`Cow<str>`].
///
/// Note that if the context function returns [`None`], the behavior remains the same as that of
/// [`env_with_context()`]: the variable reference will remain in the output string unexpanded.
///
/// # Examples
///
/// ```
/// fn context(s: &str) -> Option<&'static str> {
/// match s {
/// "A" => Some("a value"),
/// "B" => Some("b value"),
/// _ => None
/// }
/// }
///
/// // Known variables are expanded
/// assert_eq!(
/// shellexpand::env_with_context_no_errors("begin/$A/${B}s/end", context),
/// "begin/a value/b values/end"
/// );
///
/// // Unknown variables are left as is
/// assert_eq!(
/// shellexpand::env_with_context_no_errors("begin/$U/end", context),
/// "begin/$U/end"
/// );
/// ```
Sized, CO, C> where
SI: ,
CO: ,
C: FnMut ,
/// Performs the environment expansion using the default system context.
///
/// This function delegates to [`env_with_context()`], using the default system source for
/// environment variables, namely the [`std::env::var()`] function.
///
/// Note that variable lookup of unknown variables will fail with an error instead of, for example,
/// replacing the offending variables with an empty string. The author thinks that such behavior is
/// more useful than the other ones. If you need something else, use [`env_with_context()`] or
/// [`env_with_context_no_errors()`] with an appropriate context function.
///
/// # Examples
///
/// ```
/// use std::env;
///
/// // make sure that some environment variables are set
/// env::set_var("X", "x value");
/// env::set_var("Y", "y value");
///
/// // Known variables are expanded
/// assert_eq!(
/// shellexpand::env("begin/$X/${Y}s/end").unwrap(),
/// "begin/x value/y values/end"
/// );
///
/// // Unknown variables result in an error
/// assert_eq!(
/// shellexpand::env("begin/$Z/end"),
/// Err(shellexpand::LookupError {
/// var_name: "Z".into(),
/// cause: env::VarError::NotPresent
/// })
/// );
/// ```
Sized> where
SI: ,
/// Performs the tilde expansion using the provided context.
///
/// This function expands tilde (`~`) character in the beginning of the input string into contents
/// of the path returned by `home_dir` function. If the input string does not contain a tilde, or
/// if it is not followed either by a slash (`/`) or by the end of string, then it is also left as
/// is. This means, in particular, that expansions like `~anotheruser/directory` are not supported.
/// The context function may also return a `None`, in that case even if the tilde is present in the
/// input in the correct place, it won't be replaced (there is nothing to replace it with, after
/// all).
///
/// This function has three generic type parameters: `SI` represents the input string, `P` is the
/// output of a context lookup, and `HD` is the context closure. `SI` must be a type, a reference
/// to which can be converted to a string slice via [`AsRef<str>`], and `P` must be a type, a
/// reference to which can be converted to a `str` via [`AsRef<str>`].
/// Home directories which are available only as a `Path` are not supported here,
/// because they cannot be represented in the output string.
/// If you wish to support home directories which are not valid Unicode,
/// use the [`path`](crate::path) module.
///
/// If you need to expand the tilde into the actual user home directory, you can use [`tilde()`] or
/// [`full()`] functions.
///
/// # Examples
///
/// ```
/// use std::path::{PathBuf, Path};
///
/// fn home_dir() -> Option<String> { Some("/home/user".into()) }
///
/// assert_eq!(
/// shellexpand::tilde_with_context("~/some/dir", home_dir),
/// "/home/user/some/dir"
/// );
/// ```
Sized, P, HD> where
SI: ,
P: ,
HD: FnOnce ,
/// Performs the tilde expansion using the default system context.
///
/// This function delegates to [`tilde_with_context()`], using the default system source of home
/// directory path, namely [`dirs::home_dir()`] function.
///
/// # Examples
///
/// ```
/// let hds = dirs::home_dir()
/// .map(|p| p.display().to_string())
/// .unwrap_or_else(|| "~".to_owned());
///
/// assert_eq!(
/// shellexpand::tilde("~/some/dir"),
/// format!("{}/some/dir", hds)
/// );
/// ```
Sized> where
SI: ,