about summary refs log tree commit diff
path: root/users/Profpatsch/netencode/netencode-mustache.rs
blob: 73ed5be1ded2d5b58497ec235c104587a83fa1c9 (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
extern crate arglib_netencode;
extern crate mustache;
extern crate netencode;

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

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::arglib_netencode(
        "netencode-mustache",
        Some(std::ffi::OsStr::new("TEMPLATE_DATA")),
    ));
    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()
}