blob: 1449994fc6699645c7bd530d6f805fef1019c1fe (
plain)
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
|
use crate::poem::Verse;
use crate::poem::{read::Readable, recite::Reciteable, Poem};
use std::fs;
use std::path::Path;
pub fn incant(verse: &Verse, path: &Vec<&Path>, bins: &mut Vec<String>) -> i32 {
let files = match verse.clause() {
Some(clause) => clause,
None => {
eprintln!("source: not enough arguments");
return 1;
}
};
for file in files {
let poetry = match fs::read_to_string(&file) {
Ok(contents) => contents,
Err(e) => {
eprintln!(
"source: could not load {}: {}",
file,
e.to_string().to_lowercase()
);
return 127;
}
};
let poem = match Poem::read(poetry) {
Ok(poem) => poem,
Err(e) => {
eprintln!("dwvsh: {}", e.to_string().to_lowercase());
continue;
}
};
match poem.recite(path, bins, None) {
Ok(_) => {}
Err(e) => {
eprintln!("dwvsh: {}", e.to_string().to_lowercase());
continue;
}
}
}
0
}
|