2019-08-19 07:16:39 +02:00
|
|
|
use crate::commands::WholeStreamCommand;
|
2019-09-05 18:23:42 +02:00
|
|
|
use crate::data::{Primitive, Value};
|
2019-06-01 20:26:04 +02:00
|
|
|
use crate::prelude::*;
|
|
|
|
|
2019-08-19 07:16:39 +02:00
|
|
|
pub struct ToTOML;
|
|
|
|
|
|
|
|
impl WholeStreamCommand for ToTOML {
|
|
|
|
fn name(&self) -> &str {
|
|
|
|
"to-toml"
|
|
|
|
}
|
|
|
|
|
|
|
|
fn signature(&self) -> Signature {
|
|
|
|
Signature::build("to-toml")
|
|
|
|
}
|
2019-08-30 00:52:32 +02:00
|
|
|
|
|
|
|
fn usage(&self) -> &str {
|
|
|
|
"Convert table into .toml text"
|
|
|
|
}
|
|
|
|
|
|
|
|
fn run(
|
|
|
|
&self,
|
|
|
|
args: CommandArgs,
|
|
|
|
registry: &CommandRegistry,
|
|
|
|
) -> Result<OutputStream, ShellError> {
|
|
|
|
to_toml(args, registry)
|
|
|
|
}
|
2019-08-19 07:16:39 +02:00
|
|
|
}
|
|
|
|
|
2019-09-01 18:20:31 +02:00
|
|
|
pub fn value_to_toml_value(v: &Tagged<Value>) -> Result<toml::Value, ShellError> {
|
|
|
|
Ok(match v.item() {
|
2019-06-30 08:46:49 +02:00
|
|
|
Value::Primitive(Primitive::Boolean(b)) => toml::Value::Boolean(*b),
|
2019-09-01 18:20:31 +02:00
|
|
|
Value::Primitive(Primitive::Bytes(b)) => toml::Value::Integer(*b as i64),
|
2019-06-30 08:46:49 +02:00
|
|
|
Value::Primitive(Primitive::Date(d)) => toml::Value::String(d.to_string()),
|
|
|
|
Value::Primitive(Primitive::EndOfStream) => {
|
|
|
|
toml::Value::String("<End of Stream>".to_string())
|
|
|
|
}
|
2019-07-27 09:45:00 +02:00
|
|
|
Value::Primitive(Primitive::BeginningOfStream) => {
|
|
|
|
toml::Value::String("<Beginning of Stream>".to_string())
|
|
|
|
}
|
2019-08-30 19:29:04 +02:00
|
|
|
Value::Primitive(Primitive::Decimal(f)) => {
|
2019-09-01 18:20:31 +02:00
|
|
|
toml::Value::Float(f.tagged(v.tag).coerce_into("converting to TOML float")?)
|
|
|
|
}
|
|
|
|
Value::Primitive(Primitive::Int(i)) => {
|
|
|
|
toml::Value::Integer(i.tagged(v.tag).coerce_into("converting to TOML integer")?)
|
2019-08-30 19:29:04 +02:00
|
|
|
}
|
2019-06-30 08:46:49 +02:00
|
|
|
Value::Primitive(Primitive::Nothing) => toml::Value::String("<Nothing>".to_string()),
|
2019-09-10 17:31:21 +02:00
|
|
|
Value::Primitive(Primitive::Pattern(s)) => toml::Value::String(s.clone()),
|
2019-06-30 08:46:49 +02:00
|
|
|
Value::Primitive(Primitive::String(s)) => toml::Value::String(s.clone()),
|
2019-07-15 23:16:27 +02:00
|
|
|
Value::Primitive(Primitive::Path(s)) => toml::Value::String(s.display().to_string()),
|
2019-06-30 08:46:49 +02:00
|
|
|
|
2019-09-05 18:23:42 +02:00
|
|
|
Value::Table(l) => toml::Value::Array(collect_values(l)?),
|
2019-06-30 08:46:49 +02:00
|
|
|
Value::Block(_) => toml::Value::String("<Block>".to_string()),
|
2019-07-04 07:11:56 +02:00
|
|
|
Value::Binary(b) => {
|
|
|
|
toml::Value::Array(b.iter().map(|x| toml::Value::Integer(*x as i64)).collect())
|
|
|
|
}
|
2019-09-05 18:23:42 +02:00
|
|
|
Value::Row(o) => {
|
2019-06-30 08:46:49 +02:00
|
|
|
let mut m = toml::map::Map::new();
|
|
|
|
for (k, v) in o.entries.iter() {
|
2019-08-30 19:29:04 +02:00
|
|
|
m.insert(k.clone(), value_to_toml_value(v)?);
|
2019-06-30 08:46:49 +02:00
|
|
|
}
|
|
|
|
toml::Value::Table(m)
|
|
|
|
}
|
2019-08-30 19:29:04 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
fn collect_values(input: &Vec<Tagged<Value>>) -> Result<Vec<toml::Value>, ShellError> {
|
|
|
|
let mut out = vec![];
|
|
|
|
|
|
|
|
for value in input {
|
|
|
|
out.push(value_to_toml_value(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
|
|
|
}
|
|
|
|
|
2019-08-19 07:16:39 +02:00
|
|
|
fn to_toml(args: CommandArgs, registry: &CommandRegistry) -> Result<OutputStream, ShellError> {
|
2019-07-24 00:22:11 +02:00
|
|
|
let args = args.evaluate_once(registry)?;
|
2019-09-11 09:53:05 +02:00
|
|
|
let name_span = args.name_span();
|
2019-09-04 08:48:40 +02:00
|
|
|
let stream = async_stream_block! {
|
|
|
|
let input: Vec<Tagged<Value>> = args.input.values.collect().await;
|
2019-07-09 06:31:26 +02:00
|
|
|
|
2019-09-04 08:48:40 +02:00
|
|
|
let to_process_input = if input.len() > 1 {
|
|
|
|
let tag = input[0].tag;
|
2019-09-05 18:23:42 +02:00
|
|
|
vec![Tagged { item: Value::Table(input), tag } ]
|
2019-09-04 08:48:40 +02:00
|
|
|
} else if input.len() == 1 {
|
|
|
|
input
|
|
|
|
} else {
|
|
|
|
vec![]
|
|
|
|
};
|
|
|
|
|
|
|
|
for value in to_process_input {
|
|
|
|
match value_to_toml_value(&value) {
|
|
|
|
Ok(toml_value) => {
|
|
|
|
match toml::to_string(&toml_value) {
|
|
|
|
Ok(x) => yield ReturnSuccess::value(
|
2019-09-11 09:53:05 +02:00
|
|
|
Value::Primitive(Primitive::String(x)).simple_spanned(name_span),
|
2019-09-04 08:48:40 +02:00
|
|
|
),
|
|
|
|
_ => yield Err(ShellError::labeled_error_with_secondary(
|
2019-09-11 09:53:05 +02:00
|
|
|
"Expected a table with TOML-compatible structure.span() from pipeline",
|
2019-09-04 08:48:40 +02:00
|
|
|
"requires TOML-compatible input",
|
2019-09-11 09:53:05 +02:00
|
|
|
name_span,
|
2019-09-04 08:48:40 +02:00
|
|
|
"originates from here".to_string(),
|
2019-09-11 09:53:05 +02:00
|
|
|
value.span(),
|
2019-09-04 08:48:40 +02:00
|
|
|
)),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => yield Err(ShellError::labeled_error(
|
2019-09-04 18:29:49 +02:00
|
|
|
"Expected a table with TOML-compatible structure from pipeline",
|
2019-09-04 08:48:40 +02:00
|
|
|
"requires TOML-compatible input",
|
2019-09-11 09:53:05 +02:00
|
|
|
name_span))
|
2019-07-08 18:44:53 +02:00
|
|
|
}
|
2019-09-04 08:48:40 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
Ok(stream.to_output_stream())
|
2019-06-01 20:26:04 +02:00
|
|
|
}
|