about summary refs log tree commit diff
path: root/users/Profpatsch/netencode/netencode-mustache.rs
blob: 796c7a68d4bb5f6828347f33d44214cd8796e657 (plain) (blame)
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
extern crate netencode;
extern crate mustache;

use mustache::{Data};
use netencode::{T};
use std::collections::HashMap;
use std::os::unix::ffi::{OsStrExt};
use std::io::{Read};

fn arglib_netencode(env: Option<&std::ffi::OsStr>) -> Result<T, String> {
    let env = match env {
        None => std::ffi::OsStr::from_bytes("ARGLIB_NETENCODE".as_bytes()),
        Some(a) => a
    };
    match std::env::var_os(env) {
        None => Err(format!("could not read args, envvar {} not set", env.to_string_lossy())),
        // TODO: good error handling for the different parser errors
        Some(soup) => match netencode::parse::t_t(soup.as_bytes()) {
            Ok((remainder, t)) => match remainder.is_empty() {
                true => Ok(t),
                false => Err(format!("there was some unparsed bytes remaining: {:?}", remainder))
            },
            Err(err) => Err(format!("parsing error: {:?}", err))
        }
    }
}


fn netencode_to_mustache_data_dwim(t: T) -> Data {
    match t {
        // TODO: good idea?
        T::Unit => Data::Null,
        T::N1(b) => Data::Bool(b),
        T::N3(u) => Data::String(u.to_string()),
        T::N6(u) => Data::String(u.to_string()),
        T::N7(u) => Data::String(u.to_string()),
        T::I3(i) => Data::String(i.to_string()),
        T::I6(i) => Data::String(i.to_string()),
        T::I7(i) => Data::String(i.to_string()),
        T::Text(s) => Data::String(s),
        T::Binary(b) => unimplemented!(),
        T::Sum(tag) => unimplemented!(),
        T::Record(xs) => Data::Map(
            xs.into_iter()
                .map(|(key, val)| (key, netencode_to_mustache_data_dwim(*val)))
                .collect::<HashMap<_,_>>()
        ),
        T::List(xs) => Data::Vec(
            xs.into_iter()
                .map(|x| netencode_to_mustache_data_dwim(x))
                .collect::<Vec<_>>()
        ),
    }
}

pub fn from_stdin() -> () {
    let data = netencode_to_mustache_data_dwim(
        arglib_netencode(None).unwrap()
    );
    let mut stdin = String::new();
    std::io::stdin().read_to_string(&mut stdin).unwrap();
    mustache::compile_str(&stdin)
        .and_then(|templ| templ.render_data(
            &mut std::io::stdout(),
            &data
        )).unwrap()
}

pub fn main() {
    from_stdin()
}