2019-07-03 19:37:09 +02:00
|
|
|
use crate::object::{Dictionary, Primitive, Value};
|
2019-06-16 08:43:40 +02:00
|
|
|
use crate::prelude::*;
|
|
|
|
use indexmap::IndexMap;
|
|
|
|
use std::collections::HashMap;
|
|
|
|
|
|
|
|
fn convert_ini_second_to_nu_value(v: &HashMap<String, String>) -> Value {
|
|
|
|
let mut second = Dictionary::new(IndexMap::new());
|
|
|
|
for (key, value) in v.into_iter() {
|
|
|
|
second.add(
|
2019-07-03 19:37:09 +02:00
|
|
|
key.clone(),
|
2019-06-16 08:43:40 +02:00
|
|
|
Value::Primitive(Primitive::String(value.clone())),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
Value::Object(second)
|
|
|
|
}
|
|
|
|
fn convert_ini_top_to_nu_value(v: &HashMap<String, HashMap<String, String>>) -> Value {
|
|
|
|
let mut top_level = Dictionary::new(IndexMap::new());
|
|
|
|
for (key, value) in v.iter() {
|
2019-07-03 19:37:09 +02:00
|
|
|
top_level.add(key.clone(), convert_ini_second_to_nu_value(value));
|
2019-06-16 08:43:40 +02:00
|
|
|
}
|
|
|
|
Value::Object(top_level)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn from_ini_string_to_value(s: String) -> Result<Value, Box<dyn std::error::Error>> {
|
|
|
|
let v: HashMap<String, HashMap<String, String>> = serde_ini::from_str(&s)?;
|
|
|
|
Ok(convert_ini_top_to_nu_value(&v))
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn from_ini(args: CommandArgs) -> Result<OutputStream, ShellError> {
|
|
|
|
let out = args.input;
|
|
|
|
let span = args.name_span;
|
|
|
|
Ok(out
|
2019-07-03 22:31:15 +02:00
|
|
|
.values
|
2019-07-08 18:44:53 +02:00
|
|
|
.map(move |a| match a.item {
|
2019-06-16 08:43:40 +02:00
|
|
|
Value::Primitive(Primitive::String(s)) => match from_ini_string_to_value(s) {
|
2019-07-08 18:44:53 +02:00
|
|
|
Ok(x) => ReturnSuccess::value(x.spanned(a.span)),
|
2019-07-03 22:31:15 +02:00
|
|
|
Err(e) => Err(ShellError::maybe_labeled_error(
|
|
|
|
"Could not parse as INI",
|
|
|
|
format!("{:#?}", e),
|
|
|
|
span,
|
|
|
|
)),
|
2019-06-16 08:43:40 +02:00
|
|
|
},
|
2019-07-03 22:31:15 +02:00
|
|
|
_ => Err(ShellError::maybe_labeled_error(
|
2019-06-16 08:43:40 +02:00
|
|
|
"Expected string values from pipeline",
|
|
|
|
"expects strings from pipeline",
|
|
|
|
span,
|
2019-07-03 22:31:15 +02:00
|
|
|
)),
|
2019-06-16 08:43:40 +02:00
|
|
|
})
|
2019-07-03 22:31:15 +02:00
|
|
|
.to_output_stream())
|
2019-06-16 08:43:40 +02:00
|
|
|
}
|