2019-06-01 20:26:04 +02:00
|
|
|
use crate::prelude::*;
|
2021-01-10 03:50:49 +01:00
|
|
|
use nu_engine::WholeStreamCommand;
|
2019-11-30 01:21:05 +01:00
|
|
|
use nu_errors::{CoerceInto, ShellError};
|
2021-04-15 09:43:33 +02:00
|
|
|
use nu_protocol::{Primitive, Signature, UnspannedPathMember, UntaggedValue, Value};
|
2019-06-01 20:26:04 +02:00
|
|
|
|
2021-03-26 09:26:57 +01:00
|
|
|
pub struct ToToml;
|
2019-08-19 07:16:39 +02:00
|
|
|
|
2021-03-26 09:26:57 +01:00
|
|
|
impl WholeStreamCommand for ToToml {
|
2019-08-19 07:16:39 +02:00
|
|
|
fn name(&self) -> &str {
|
2020-05-04 10:44:33 +02:00
|
|
|
"to toml"
|
2019-08-19 07:16:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fn signature(&self) -> Signature {
|
2020-05-04 10:44:33 +02:00
|
|
|
Signature::build("to toml")
|
2019-08-19 07:16:39 +02:00
|
|
|
}
|
2019-08-30 00:52:32 +02:00
|
|
|
|
|
|
|
fn usage(&self) -> &str {
|
|
|
|
"Convert table into .toml text"
|
|
|
|
}
|
|
|
|
|
2021-04-15 09:43:33 +02:00
|
|
|
fn run(&self, args: CommandArgs) -> Result<OutputStream, ShellError> {
|
2021-04-06 18:19:43 +02:00
|
|
|
to_toml(args)
|
2019-08-30 00:52:32 +02:00
|
|
|
}
|
2019-08-19 07:16:39 +02:00
|
|
|
}
|
|
|
|
|
2020-06-07 22:02:37 +02:00
|
|
|
// Helper method to recursively convert nu_protocol::Value -> toml::Value
|
|
|
|
// This shouldn't be called at the top-level
|
|
|
|
fn helper(v: &Value) -> Result<toml::Value, ShellError> {
|
2019-11-21 15:33:14 +01:00
|
|
|
Ok(match &v.value {
|
|
|
|
UntaggedValue::Primitive(Primitive::Boolean(b)) => toml::Value::Boolean(*b),
|
2021-01-29 23:35:18 +01:00
|
|
|
UntaggedValue::Primitive(Primitive::Filesize(b)) => {
|
|
|
|
if let Some(value) = b.to_i64() {
|
|
|
|
toml::Value::Integer(value)
|
|
|
|
} else {
|
|
|
|
return Err(ShellError::labeled_error(
|
|
|
|
"Value too large to write to toml",
|
|
|
|
"value too large for toml",
|
|
|
|
v.tag.span,
|
|
|
|
));
|
|
|
|
}
|
|
|
|
}
|
2020-07-10 19:48:11 +02:00
|
|
|
UntaggedValue::Primitive(Primitive::Duration(i)) => toml::Value::String(i.to_string()),
|
2019-11-21 15:33:14 +01:00
|
|
|
UntaggedValue::Primitive(Primitive::Date(d)) => toml::Value::String(d.to_string()),
|
|
|
|
UntaggedValue::Primitive(Primitive::EndOfStream) => {
|
2019-06-30 08:46:49 +02:00
|
|
|
toml::Value::String("<End of Stream>".to_string())
|
|
|
|
}
|
2019-11-21 15:33:14 +01:00
|
|
|
UntaggedValue::Primitive(Primitive::BeginningOfStream) => {
|
2019-07-27 09:45:00 +02:00
|
|
|
toml::Value::String("<Beginning of Stream>".to_string())
|
|
|
|
}
|
2019-11-21 15:33:14 +01:00
|
|
|
UntaggedValue::Primitive(Primitive::Decimal(f)) => {
|
2019-10-13 06:12:43 +02:00
|
|
|
toml::Value::Float(f.tagged(&v.tag).coerce_into("converting to TOML float")?)
|
2019-09-01 18:20:31 +02:00
|
|
|
}
|
2021-05-14 10:35:09 +02:00
|
|
|
UntaggedValue::Primitive(Primitive::Int(i)) => toml::Value::Integer(*i),
|
|
|
|
UntaggedValue::Primitive(Primitive::BigInt(i)) => {
|
2019-10-13 06:12:43 +02:00
|
|
|
toml::Value::Integer(i.tagged(&v.tag).coerce_into("converting to TOML integer")?)
|
2019-08-30 19:29:04 +02:00
|
|
|
}
|
2019-11-21 15:33:14 +01:00
|
|
|
UntaggedValue::Primitive(Primitive::Nothing) => {
|
|
|
|
toml::Value::String("<Nothing>".to_string())
|
|
|
|
}
|
2021-01-08 08:30:41 +01:00
|
|
|
UntaggedValue::Primitive(Primitive::GlobPattern(s)) => toml::Value::String(s.clone()),
|
2019-11-21 15:33:14 +01:00
|
|
|
UntaggedValue::Primitive(Primitive::String(s)) => toml::Value::String(s.clone()),
|
2021-01-08 08:30:41 +01:00
|
|
|
UntaggedValue::Primitive(Primitive::FilePath(s)) => {
|
2019-11-21 15:33:14 +01:00
|
|
|
toml::Value::String(s.display().to_string())
|
|
|
|
}
|
|
|
|
UntaggedValue::Primitive(Primitive::ColumnPath(path)) => toml::Value::Array(
|
2019-11-04 16:47:03 +01:00
|
|
|
path.iter()
|
2019-11-21 15:33:14 +01:00
|
|
|
.map(|x| match &x.unspanned {
|
|
|
|
UnspannedPathMember::String(string) => Ok(toml::Value::String(string.clone())),
|
2021-05-14 10:35:09 +02:00
|
|
|
UnspannedPathMember::Int(int) => Ok(toml::Value::Integer(*int)),
|
2019-11-04 16:47:03 +01:00
|
|
|
})
|
|
|
|
.collect::<Result<Vec<toml::Value>, ShellError>>()?,
|
|
|
|
),
|
2019-11-21 15:33:14 +01:00
|
|
|
UntaggedValue::Table(l) => toml::Value::Array(collect_values(l)?),
|
|
|
|
UntaggedValue::Error(e) => return Err(e.clone()),
|
|
|
|
UntaggedValue::Block(_) => toml::Value::String("<Block>".to_string()),
|
2021-05-12 03:01:31 +02:00
|
|
|
#[cfg(feature = "dataframe")]
|
|
|
|
UntaggedValue::Dataframe(_) => toml::Value::String("<Dataframe>".to_string()),
|
2019-12-04 22:14:52 +01:00
|
|
|
UntaggedValue::Primitive(Primitive::Range(_)) => toml::Value::String("<Range>".to_string()),
|
2019-11-21 15:33:14 +01:00
|
|
|
UntaggedValue::Primitive(Primitive::Binary(b)) => {
|
2019-07-04 07:11:56 +02:00
|
|
|
toml::Value::Array(b.iter().map(|x| toml::Value::Integer(*x as i64)).collect())
|
|
|
|
}
|
2019-11-21 15:33:14 +01:00
|
|
|
UntaggedValue::Row(o) => {
|
2019-06-30 08:46:49 +02:00
|
|
|
let mut m = toml::map::Map::new();
|
|
|
|
for (k, v) in o.entries.iter() {
|
2020-06-07 22:02:37 +02:00
|
|
|
m.insert(k.clone(), helper(v)?);
|
2019-06-30 08:46:49 +02:00
|
|
|
}
|
|
|
|
toml::Value::Table(m)
|
|
|
|
}
|
2019-08-30 19:29:04 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-06-07 22:02:37 +02:00
|
|
|
/// Converts a nu_protocol::Value into a toml::Value
|
|
|
|
/// Will return a Shell Error, if the Nu Value is not a valid top-level TOML Value
|
|
|
|
pub fn value_to_toml_value(v: &Value) -> Result<toml::Value, ShellError> {
|
|
|
|
match &v.value {
|
|
|
|
UntaggedValue::Row(o) => {
|
|
|
|
let mut m = toml::map::Map::new();
|
|
|
|
for (k, v) in o.entries.iter() {
|
|
|
|
m.insert(k.clone(), helper(v)?);
|
|
|
|
}
|
|
|
|
Ok(toml::Value::Table(m))
|
|
|
|
}
|
|
|
|
UntaggedValue::Primitive(Primitive::String(s)) => {
|
|
|
|
// Attempt to de-serialize the String
|
|
|
|
toml::de::from_str(s).map_err(|_| {
|
|
|
|
ShellError::labeled_error(
|
|
|
|
format!("{:?} unable to de-serialize string to TOML", s),
|
|
|
|
"invalid TOML",
|
|
|
|
v.tag(),
|
|
|
|
)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
_ => Err(ShellError::labeled_error(
|
|
|
|
format!("{:?} is not a valid top-level TOML", v.value),
|
|
|
|
"invalid TOML",
|
|
|
|
v.tag(),
|
|
|
|
)),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-06 16:28:26 +01:00
|
|
|
fn collect_values(input: &[Value]) -> Result<Vec<toml::Value>, ShellError> {
|
2019-08-30 19:29:04 +02:00
|
|
|
let mut out = vec![];
|
|
|
|
|
|
|
|
for value in input {
|
2020-06-07 22:02:37 +02:00
|
|
|
out.push(helper(value)?);
|
2019-06-30 08:46:49 +02:00
|
|
|
}
|
2019-08-30 19:29:04 +02:00
|
|
|
|
|
|
|
Ok(out)
|
2019-06-30 08:46:49 +02:00
|
|
|
}
|
|
|
|
|
2021-04-15 09:43:33 +02:00
|
|
|
fn to_toml(args: CommandArgs) -> Result<OutputStream, ShellError> {
|
2021-04-06 18:19:43 +02:00
|
|
|
let args = args.evaluate_once()?;
|
2020-06-13 21:13:36 +02:00
|
|
|
let name_tag = args.name_tag();
|
|
|
|
let name_span = name_tag.span;
|
2021-04-06 18:19:43 +02:00
|
|
|
let input: Vec<Value> = args.input.collect();
|
2019-07-09 06:31:26 +02:00
|
|
|
|
2020-06-13 21:13:36 +02:00
|
|
|
let to_process_input = match input.len() {
|
|
|
|
x if x > 1 => {
|
2019-10-13 06:12:43 +02:00
|
|
|
let tag = input[0].tag.clone();
|
2020-06-13 21:13:36 +02:00
|
|
|
vec![Value {
|
|
|
|
value: UntaggedValue::Table(input),
|
|
|
|
tag,
|
|
|
|
}]
|
|
|
|
}
|
|
|
|
1 => input,
|
|
|
|
_ => vec![],
|
|
|
|
};
|
|
|
|
|
2021-04-06 18:19:43 +02:00
|
|
|
Ok((to_process_input.into_iter().map(move |value| {
|
|
|
|
let value_span = value.tag.span;
|
|
|
|
match value_to_toml_value(&value) {
|
|
|
|
Ok(toml_value) => match toml::to_string(&toml_value) {
|
2021-04-15 09:43:33 +02:00
|
|
|
Ok(x) => UntaggedValue::Primitive(Primitive::String(x)).into_value(&name_tag),
|
|
|
|
|
|
|
|
_ => Value::error(ShellError::labeled_error_with_secondary(
|
2021-04-06 18:19:43 +02:00
|
|
|
"Expected a table with TOML-compatible structure.tag() from pipeline",
|
2019-09-04 08:48:40 +02:00
|
|
|
"requires TOML-compatible input",
|
2021-04-06 18:19:43 +02:00
|
|
|
name_span,
|
|
|
|
"originates from here".to_string(),
|
|
|
|
value_span,
|
2020-06-13 21:13:36 +02:00
|
|
|
)),
|
2021-04-06 18:19:43 +02:00
|
|
|
},
|
2021-04-15 09:43:33 +02:00
|
|
|
_ => Value::error(ShellError::labeled_error(
|
2021-04-06 18:19:43 +02:00
|
|
|
"Expected a table with TOML-compatible structure from pipeline",
|
|
|
|
"requires TOML-compatible input",
|
|
|
|
&name_tag,
|
|
|
|
)),
|
|
|
|
}
|
|
|
|
}))
|
2021-04-15 09:43:33 +02:00
|
|
|
.to_output_stream())
|
2019-06-01 20:26:04 +02:00
|
|
|
}
|
2020-05-18 14:56:01 +02:00
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
2020-10-03 16:06:02 +02:00
|
|
|
use super::ShellError;
|
2020-06-07 22:02:37 +02:00
|
|
|
use super::*;
|
|
|
|
use nu_protocol::Dictionary;
|
2020-05-18 14:56:01 +02:00
|
|
|
|
|
|
|
#[test]
|
2020-10-03 16:06:02 +02:00
|
|
|
fn examples_work_as_expected() -> Result<(), ShellError> {
|
2020-05-18 14:56:01 +02:00
|
|
|
use crate::examples::test as test_examples;
|
|
|
|
|
2021-03-26 09:26:57 +01:00
|
|
|
test_examples(ToToml {})
|
2020-05-18 14:56:01 +02:00
|
|
|
}
|
2020-06-07 22:02:37 +02:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_value_to_toml_value() {
|
|
|
|
//
|
|
|
|
// Positive Tests
|
|
|
|
//
|
|
|
|
|
|
|
|
// Dictionary -> What we do in "crates/nu-cli/src/data/config.rs" to write the config file
|
|
|
|
let mut m = indexmap::IndexMap::new();
|
|
|
|
m.insert("rust".to_owned(), Value::from("editor"));
|
|
|
|
m.insert("is".to_owned(), Value::nothing());
|
|
|
|
m.insert(
|
|
|
|
"features".to_owned(),
|
|
|
|
UntaggedValue::Table(vec![
|
|
|
|
UntaggedValue::string("hello").into_untagged_value(),
|
|
|
|
UntaggedValue::string("array").into_untagged_value(),
|
|
|
|
])
|
|
|
|
.into_untagged_value(),
|
|
|
|
);
|
|
|
|
let tv = value_to_toml_value(&UntaggedValue::Row(Dictionary::new(m)).into_untagged_value())
|
|
|
|
.expect("Expected Ok from valid TOML dictionary");
|
|
|
|
assert_eq!(
|
|
|
|
tv.get("features"),
|
|
|
|
Some(&toml::Value::Array(vec![
|
|
|
|
toml::Value::String("hello".to_owned()),
|
|
|
|
toml::Value::String("array".to_owned())
|
|
|
|
]))
|
|
|
|
);
|
|
|
|
// TOML string
|
|
|
|
let tv = value_to_toml_value(&Value::from(
|
|
|
|
r#"
|
|
|
|
title = "TOML Example"
|
|
|
|
|
|
|
|
[owner]
|
|
|
|
name = "Tom Preston-Werner"
|
|
|
|
dob = 1979-05-27T07:32:00-08:00 # First class dates
|
2021-05-12 03:01:31 +02:00
|
|
|
|
2020-06-07 22:02:37 +02:00
|
|
|
[dependencies]
|
|
|
|
rustyline = "4.1.0"
|
|
|
|
sysinfo = "0.8.4"
|
|
|
|
chrono = { version = "0.4.6", features = ["serde"] }
|
|
|
|
"#,
|
|
|
|
))
|
|
|
|
.expect("Expected Ok from valid TOML string");
|
|
|
|
assert_eq!(
|
|
|
|
tv.get("title").unwrap(),
|
|
|
|
&toml::Value::String("TOML Example".to_owned())
|
|
|
|
);
|
|
|
|
//
|
|
|
|
// Negative Tests
|
|
|
|
//
|
|
|
|
value_to_toml_value(&Value::from("not_valid"))
|
|
|
|
.expect_err("Expected non-valid toml (String) to cause error!");
|
|
|
|
value_to_toml_value(&UntaggedValue::Table(vec![Value::from("1")]).into_untagged_value())
|
|
|
|
.expect_err("Expected non-valid toml (Table) to cause error!");
|
|
|
|
}
|
2020-05-18 14:56:01 +02:00
|
|
|
}
|