summaryrefslogtreecommitdiffstats
path: root/src/poem/anthology/source.rs
blob: b4148cbf746a512a512fe9121ebbbc0e39da7763 (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::compose::Environment;
use crate::poem::Verse;
use crate::poem::{read::Readable, recite::Reciteable, Poem};
use std::fs;

pub fn incant(verse: &Verse, env: &mut Environment) -> 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(poetry) => poetry,
            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(env, None) {
            Ok(_) => {}
            Err(e) => {
                eprintln!("dwvsh: {}", e.to_string().to_lowercase());
                continue;
            }
        }
    }

    0
}