summaryrefslogtreecommitdiffstats
path: root/src/compose.rs
blob: 3d2a2dbd901a0d1b00eee2ac413a889eb244059f (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
use crate::poem::{read::Readable, recite::Reciteable, Poem};
pub mod environment;
pub use environment::Environment;
use std::fs;
use std::path::PathBuf;

pub fn env() -> Environment {
    // Create a new Environment object, to store some extra shell info
    let mut env = Environment::new();

    // Use local repo path if running the debug target
    let global_rc = if cfg!(debug_assertions) {
        let mut base = PathBuf::from(env!("CARGO_MANIFEST_DIR"));
        base.push("dist/etc/dwvshrc");
        base
    } else {
        PathBuf::from("/etc/dwvshrc")
    };

    // User defined rc file in ~
    let mut local_rc = PathBuf::from(env!("HOME"));
    local_rc.push(".dwvshrc");

    // Read, read, and recite
    rrr(global_rc, &mut env);
    rrr(local_rc, &mut env);

    // Return the new environment
    env
}

fn rrr(path: PathBuf, env: &mut Environment) {
    let poetry = match fs::read_to_string(&path) {
        Ok(poetry) => poetry,
        Err(e) => {
            if path.to_string_lossy().contains("etc/dwvshrc") {
                eprintln!(
                    "dwvsh: unable to read global dwvshrc file: {}",
                    e.to_string().to_lowercase()
                );
            }
            return;
        }
    };

    let poem = match Poem::read(poetry) {
        Ok(poem) => poem,
        Err(e) => {
            eprintln!(
                "dwvsh: error in {}: {}",
                path.display(),
                e.to_string().to_lowercase()
            );
            return;
        }
    };

    match poem.recite(env, None) {
        Ok(_) => {}
        Err(e) => {
            eprintln!("dwvsh: {}", e.to_string().to_lowercase());
            return;
        }
    }
}