tvl-depot/users/Profpatsch/netencode/netencode-mustache.rs
Profpatsch 5d44df3af6 refactor(users/Profpatsch): move arglib_netencode into its own lib
arglib is the simple idea of passing structured data via a
conventional environment variable instead of implementing an optparser
for every little tool.

Pop the envvar, decode the contents, return the contents.

Change-Id: Ie44148293a58aae9a0a613895176227d43b491bb
Reviewed-on: https://cl.tvl.fyi/c/depot/+/2449
Tested-by: BuildkiteCI
Reviewed-by: Profpatsch <mail@profpatsch.de>
2021-01-31 11:10:00 +00:00

53 lines
1.6 KiB
Rust

extern crate netencode;
extern crate mustache;
extern crate arglib_netencode;
use mustache::{Data};
use netencode::{T};
use std::collections::HashMap;
use std::os::unix::ffi::{OsStrExt};
use std::io::{Read};
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(Some(std::ffi::OsStr::new("TEMPLATE_DATA"))).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()
}