2019-07-16 06:05:38 +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};
|
|
|
|
use nu_protocol::{Primitive, ReturnSuccess, Signature, UnspannedPathMember, UntaggedValue, Value};
|
2019-07-16 06:05:38 +02:00
|
|
|
|
2019-08-19 07:16:39 +02:00
|
|
|
pub struct ToYAML;
|
|
|
|
|
2020-05-29 10:22:52 +02:00
|
|
|
#[async_trait]
|
2019-08-19 07:16:39 +02:00
|
|
|
impl WholeStreamCommand for ToYAML {
|
|
|
|
fn name(&self) -> &str {
|
2020-05-04 10:44:33 +02:00
|
|
|
"to yaml"
|
2019-08-19 07:16:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fn signature(&self) -> Signature {
|
2020-05-04 10:44:33 +02:00
|
|
|
Signature::build("to yaml")
|
2019-08-19 07:16:39 +02:00
|
|
|
}
|
2019-08-30 00:52:32 +02:00
|
|
|
|
|
|
|
fn usage(&self) -> &str {
|
|
|
|
"Convert table into .yaml/.yml text"
|
|
|
|
}
|
|
|
|
|
2020-12-18 08:53:49 +01:00
|
|
|
async fn run(&self, args: CommandArgs) -> Result<OutputStream, ShellError> {
|
|
|
|
to_yaml(args).await
|
2019-08-30 00:52:32 +02:00
|
|
|
}
|
2019-08-19 07:16:39 +02:00
|
|
|
}
|
|
|
|
|
2019-11-21 15:33:14 +01:00
|
|
|
pub fn value_to_yaml_value(v: &Value) -> Result<serde_yaml::Value, ShellError> {
|
|
|
|
Ok(match &v.value {
|
|
|
|
UntaggedValue::Primitive(Primitive::Boolean(b)) => serde_yaml::Value::Bool(*b),
|
2020-07-11 04:17:37 +02:00
|
|
|
UntaggedValue::Primitive(Primitive::Filesize(b)) => {
|
2020-01-04 07:44:17 +01:00
|
|
|
serde_yaml::Value::Number(serde_yaml::Number::from(b.to_f64().ok_or_else(|| {
|
|
|
|
ShellError::labeled_error(
|
|
|
|
"Could not convert to bytes",
|
|
|
|
"could not convert to bytes",
|
|
|
|
&v.tag,
|
|
|
|
)
|
|
|
|
})?))
|
2019-11-17 06:48:48 +01:00
|
|
|
}
|
2020-07-10 19:48:11 +02:00
|
|
|
UntaggedValue::Primitive(Primitive::Duration(i)) => {
|
|
|
|
serde_yaml::Value::String(i.to_string())
|
|
|
|
}
|
2019-11-21 15:33:14 +01:00
|
|
|
UntaggedValue::Primitive(Primitive::Date(d)) => serde_yaml::Value::String(d.to_string()),
|
|
|
|
UntaggedValue::Primitive(Primitive::EndOfStream) => serde_yaml::Value::Null,
|
|
|
|
UntaggedValue::Primitive(Primitive::BeginningOfStream) => serde_yaml::Value::Null,
|
|
|
|
UntaggedValue::Primitive(Primitive::Decimal(f)) => {
|
2020-01-04 07:44:17 +01:00
|
|
|
serde_yaml::Value::Number(serde_yaml::Number::from(f.to_f64().ok_or_else(|| {
|
|
|
|
ShellError::labeled_error(
|
|
|
|
"Could not convert to decimal",
|
|
|
|
"could not convert to decimal",
|
|
|
|
&v.tag,
|
|
|
|
)
|
|
|
|
})?))
|
2019-07-16 06:05:38 +02:00
|
|
|
}
|
2019-11-21 15:33:14 +01:00
|
|
|
UntaggedValue::Primitive(Primitive::Int(i)) => {
|
|
|
|
serde_yaml::Value::Number(serde_yaml::Number::from(CoerceInto::<i64>::coerce_into(
|
|
|
|
i.tagged(&v.tag),
|
|
|
|
"converting to YAML number",
|
|
|
|
)?))
|
|
|
|
}
|
|
|
|
UntaggedValue::Primitive(Primitive::Nothing) => serde_yaml::Value::Null,
|
2021-01-08 08:30:41 +01:00
|
|
|
UntaggedValue::Primitive(Primitive::GlobPattern(s)) => serde_yaml::Value::String(s.clone()),
|
2019-11-21 15:33:14 +01:00
|
|
|
UntaggedValue::Primitive(Primitive::String(s)) => serde_yaml::Value::String(s.clone()),
|
|
|
|
UntaggedValue::Primitive(Primitive::ColumnPath(path)) => {
|
2019-11-04 16:47:03 +01:00
|
|
|
let mut out = vec![];
|
|
|
|
|
|
|
|
for member in path.iter() {
|
2019-11-21 15:33:14 +01:00
|
|
|
match &member.unspanned {
|
|
|
|
UnspannedPathMember::String(string) => {
|
2019-11-04 16:47:03 +01:00
|
|
|
out.push(serde_yaml::Value::String(string.clone()))
|
|
|
|
}
|
2019-11-21 15:33:14 +01:00
|
|
|
UnspannedPathMember::Int(int) => out.push(serde_yaml::Value::Number(
|
2019-11-04 16:47:03 +01:00
|
|
|
serde_yaml::Number::from(CoerceInto::<i64>::coerce_into(
|
|
|
|
int.tagged(&member.span),
|
|
|
|
"converting to YAML number",
|
|
|
|
)?),
|
|
|
|
)),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
serde_yaml::Value::Sequence(out)
|
|
|
|
}
|
2021-01-08 08:30:41 +01:00
|
|
|
UntaggedValue::Primitive(Primitive::FilePath(s)) => {
|
2019-11-21 15:33:14 +01:00
|
|
|
serde_yaml::Value::String(s.display().to_string())
|
|
|
|
}
|
2019-07-16 06:05:38 +02:00
|
|
|
|
2019-11-21 15:33:14 +01:00
|
|
|
UntaggedValue::Table(l) => {
|
2019-09-01 18:20:31 +02:00
|
|
|
let mut out = vec![];
|
|
|
|
|
|
|
|
for value in l {
|
|
|
|
out.push(value_to_yaml_value(value)?);
|
|
|
|
}
|
|
|
|
|
|
|
|
serde_yaml::Value::Sequence(out)
|
2019-07-16 06:05:38 +02:00
|
|
|
}
|
2019-11-21 15:33:14 +01:00
|
|
|
UntaggedValue::Error(e) => return Err(e.clone()),
|
2019-12-04 22:14:52 +01:00
|
|
|
UntaggedValue::Block(_) | UntaggedValue::Primitive(Primitive::Range(_)) => {
|
|
|
|
serde_yaml::Value::Null
|
|
|
|
}
|
2019-11-21 15:33:14 +01:00
|
|
|
UntaggedValue::Primitive(Primitive::Binary(b)) => serde_yaml::Value::Sequence(
|
2019-07-16 06:05:38 +02:00
|
|
|
b.iter()
|
|
|
|
.map(|x| serde_yaml::Value::Number(serde_yaml::Number::from(*x)))
|
|
|
|
.collect(),
|
|
|
|
),
|
2019-11-21 15:33:14 +01:00
|
|
|
UntaggedValue::Row(o) => {
|
2019-07-16 06:05:38 +02:00
|
|
|
let mut m = serde_yaml::Mapping::new();
|
|
|
|
for (k, v) in o.entries.iter() {
|
2019-09-01 18:20:31 +02:00
|
|
|
m.insert(
|
|
|
|
serde_yaml::Value::String(k.clone()),
|
|
|
|
value_to_yaml_value(v)?,
|
|
|
|
);
|
2019-07-16 06:05:38 +02:00
|
|
|
}
|
|
|
|
serde_yaml::Value::Mapping(m)
|
|
|
|
}
|
2019-09-01 18:20:31 +02:00
|
|
|
})
|
2019-07-16 06:05:38 +02:00
|
|
|
}
|
|
|
|
|
2020-12-18 08:53:49 +01:00
|
|
|
async fn to_yaml(args: CommandArgs) -> Result<OutputStream, ShellError> {
|
|
|
|
let args = args.evaluate_once().await?;
|
2020-06-13 06:03:39 +02:00
|
|
|
let name_tag = args.name_tag();
|
|
|
|
let name_span = name_tag.span;
|
2020-05-16 05:18:24 +02:00
|
|
|
|
2020-06-13 06:03:39 +02:00
|
|
|
let input: Vec<Value> = args.input.collect().await;
|
2019-09-04 08:48:40 +02:00
|
|
|
|
2020-06-13 06:03:39 +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 06:03:39 +02:00
|
|
|
vec![Value {
|
|
|
|
value: UntaggedValue::Table(input),
|
|
|
|
tag,
|
|
|
|
}]
|
|
|
|
}
|
|
|
|
1 => input,
|
|
|
|
_ => vec![],
|
|
|
|
};
|
|
|
|
|
|
|
|
Ok(
|
|
|
|
futures::stream::iter(to_process_input.into_iter().map(move |value| {
|
2019-11-21 15:33:14 +01:00
|
|
|
let value_span = value.tag.span;
|
|
|
|
|
2019-09-04 08:48:40 +02:00
|
|
|
match value_to_yaml_value(&value) {
|
2020-06-13 06:03:39 +02:00
|
|
|
Ok(yaml_value) => match serde_yaml::to_string(&yaml_value) {
|
|
|
|
Ok(x) => ReturnSuccess::value(
|
|
|
|
UntaggedValue::Primitive(Primitive::String(x)).into_value(&name_tag),
|
|
|
|
),
|
|
|
|
_ => Err(ShellError::labeled_error_with_secondary(
|
|
|
|
"Expected a table with YAML-compatible structure from pipeline",
|
|
|
|
"requires YAML-compatible input",
|
|
|
|
name_span,
|
|
|
|
"originates from here".to_string(),
|
|
|
|
value_span,
|
|
|
|
)),
|
|
|
|
},
|
|
|
|
_ => Err(ShellError::labeled_error(
|
2019-09-04 18:29:49 +02:00
|
|
|
"Expected a table with YAML-compatible structure from pipeline",
|
2019-08-06 05:03:13 +02:00
|
|
|
"requires YAML-compatible input",
|
2020-06-13 06:03:39 +02:00
|
|
|
&name_tag,
|
|
|
|
)),
|
2019-09-04 08:48:40 +02:00
|
|
|
}
|
2020-06-13 06:03:39 +02:00
|
|
|
}))
|
|
|
|
.to_output_stream(),
|
|
|
|
)
|
2019-07-16 06:05:38 +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-05-18 14:56:01 +02:00
|
|
|
use super::ToYAML;
|
|
|
|
|
|
|
|
#[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-02-12 11:13:14 +01:00
|
|
|
test_examples(ToYAML {})
|
2020-05-18 14:56:01 +02:00
|
|
|
}
|
|
|
|
}
|