imag/imag-store/src/util.rs

69 lines
2.2 KiB
Rust
Raw Normal View History

use std::collections::BTreeMap;
use std::str::Split;
use clap::ArgMatches;
use toml::Value;
use libimagstore::store::EntryHeader;
use libimagutil::key_value_split::IntoKeyValue;
pub fn build_toml_header(matches: &ArgMatches, header: EntryHeader) -> EntryHeader {
debug!("Building header from cli spec");
if let Some(headerspecs) = matches.values_of("header") {
let mut main = BTreeMap::new();
for tpl in headerspecs.into_iter().filter_map(|hs| String::from(hs).into_kv()) {
let (key, value) = tpl.into();
debug!("Splitting: {:?}", key);
let mut split = key.split(".");
let current = split.next();
if current.is_some() {
insert_key_into(String::from(current.unwrap()), &mut split, value, &mut main);
}
}
}
header
}
fn insert_key_into(current: String,
rest_path: &mut Split<&str>,
value: String,
map: &mut BTreeMap<String, Value>) {
let next = rest_path.next();
if next.is_none() {
map.insert(current, parse_value(value));
} else {
if map.contains_key(&current) {
match map.get_mut(&current).unwrap() {
&mut Value::Table(ref mut t) => {
insert_key_into(String::from(next.unwrap()), rest_path, value, t);
},
_ => unreachable!(),
}
} else {
let mut submap = BTreeMap::new();
insert_key_into(String::from(next.unwrap()), rest_path, value, &mut submap);
map.insert(current, Value::Table(submap));
}
}
}
fn parse_value(value: String) -> Value {
fn is_ary(v: &String) -> bool {
v.chars().next() == Some('[') && v.chars().last() == Some(']') && v.len() >= 3
}
debug!("Building value out of: {:?}", value);
if value == "true" {
Value::Boolean(true)
} else if value == "false" {
Value::Boolean(false)
} else if is_ary(&value) {
let sub = &value[1..(value.len()-1)];
Value::Array(sub.split(",").map(|v| parse_value(String::from(v))).collect())
} else {
Value::String(value)
}
}