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
|
use crate::poem::{read::Readable, recite::Reciteable, Poem};
pub mod environment;
pub use environment::Environment;
use std::env;
use std::fs;
use std::path::PathBuf;
/// Setup the global shell environment
///
/// Sets up the shell's environment via configuration files. In order:
/// * `/etc/dwvshrc`
/// * `~/.dwvshrc`
///
/// For debug builds, all files will instead be sourced from
/// `./dist/...` with the exception of `~/.dwvshrc`.
pub fn env() -> Environment {
// Create a new Environment object, to store some extra shell info
let mut env = Environment::new();
// Try to get paths for default run command file locations
let paths = vec![
// -> ./dist/etc/dwvshrc
// -> /etc/dwvshrc
if cfg!(debug_assertions) {
let mut base = PathBuf::from(env!("CARGO_MANIFEST_DIR"));
base.push("dist/etc/dwvshrc");
Some(base)
} else {
Some(PathBuf::from("/etc/dwvshrc"))
},
// -> ./dist/etc/linuxrc
// -> /etc/dwvshrc
if cfg!(debug_assertions) && std::env::consts::OS == "linux" {
let mut base = PathBuf::from(env!("CARGO_MANIFEST_DIR"));
base.push("dist/etc/dwvshrc");
Some(base)
} else {
None
},
// -> $HOME/.dwvshrc
match env::var("HOME") {
Ok(home) => {
let mut base = PathBuf::from(home);
base.push(".dwvshrc");
Some(base)
}
Err(_) => None,
},
];
// Read, read, and recite
rrr(paths, &mut env);
// Return the new environment
env
}
/// Read, read, and recite
///
/// Small, reusable function used to do the heavy lifting in regards to
/// sourcing configuration files. [Read][fs::read_to_string]s a file
/// from disk, then [read][crate::poem::read]s (parses) a [Poem],
/// then [recite][crate::poem::recite]s that [Poem].
/// Configuration files are just shell scripts.
fn rrr(paths: Vec<Option<PathBuf>>, env: &mut Environment) {
for path in paths {
let path = match path {
Some(path) => path,
None => continue,
};
let poetry = match fs::read_to_string(&path) {
Ok(poetry) => poetry,
Err(_) => continue,
};
let poem = match Poem::read(poetry, &mut Environment::new()) {
Ok(poem) => poem,
Err(e) => {
eprintln!(
"dwvsh: error in {}: {}",
path.display(),
e.to_string().to_lowercase()
);
continue;
}
};
match poem.recite(env) {
Ok(_) => {}
Err(e) => {
eprintln!("dwvsh: {}", e.to_string().to_lowercase());
continue;
}
}
}
}
|