2019-08-19 07:16:39 +02:00
|
|
|
use crate::commands::WholeStreamCommand;
|
2019-07-16 06:05:38 +02:00
|
|
|
use crate::prelude::*;
|
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;
|
|
|
|
|
|
|
|
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"
|
|
|
|
}
|
|
|
|
|
|
|
|
fn run(
|
|
|
|
&self,
|
|
|
|
args: CommandArgs,
|
|
|
|
registry: &CommandRegistry,
|
|
|
|
) -> Result<OutputStream, ShellError> {
|
|
|
|
to_yaml(args, registry)
|
|
|
|
}
|
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),
|
|
|
|
UntaggedValue::Primitive(Primitive::Bytes(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-01-04 07:44:17 +01:00
|
|
|
UntaggedValue::Primitive(Primitive::Duration(secs)) => serde_yaml::Value::Number(
|
|
|
|
serde_yaml::Number::from(secs.to_f64().ok_or_else(|| {
|
|
|
|
ShellError::labeled_error(
|
|
|
|
"Could not convert to duration",
|
|
|
|
"could not convert to duration",
|
|
|
|
&v.tag,
|
|
|
|
)
|
|
|
|
})?),
|
|
|
|
),
|
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,
|
|
|
|
UntaggedValue::Primitive(Primitive::Pattern(s)) => serde_yaml::Value::String(s.clone()),
|
|
|
|
UntaggedValue::Primitive(Primitive::String(s)) => serde_yaml::Value::String(s.clone()),
|
2019-12-03 07:44:59 +01:00
|
|
|
UntaggedValue::Primitive(Primitive::Line(s)) => serde_yaml::Value::String(s.clone()),
|
2019-11-21 15:33:14 +01:00
|
|
|
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)
|
|
|
|
}
|
2019-11-21 15:33:14 +01:00
|
|
|
UntaggedValue::Primitive(Primitive::Path(s)) => {
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2019-08-19 07:16:39 +02:00
|
|
|
fn to_yaml(args: CommandArgs, registry: &CommandRegistry) -> Result<OutputStream, ShellError> {
|
2019-07-24 00:22:11 +02:00
|
|
|
let args = args.evaluate_once(registry)?;
|
2019-09-14 18:30:24 +02:00
|
|
|
let name_tag = args.name_tag();
|
2019-11-21 15:33:14 +01:00
|
|
|
let name_span = name_tag.span;
|
|
|
|
|
2019-09-26 02:22:17 +02:00
|
|
|
let stream = async_stream! {
|
Move external closer to internal (#1611)
* Refactor InputStream and affected commands.
First, making `values` private and leaning on the `Stream` implementation makes
consumes of `InputStream` less likely to have to change in the future, if we
change what an `InputStream` is internally.
Second, we're dropping `Option<InputStream>` as the input to pipelines,
internals, and externals. Instead, `InputStream.is_empty` can be used to check
for "emptiness". Empty streams are typically only ever used as the first input
to a pipeline.
* Add run_external internal command.
We want to push external commands closer to internal commands, eventually
eliminating the concept of "external" completely. This means we can consolidate
a couple of things:
- Variable evaluation (for example, `$it`, `$nu`, alias vars)
- Behaviour of whole stream vs per-item external execution
It should also make it easier for us to start introducing argument signatures
for external commands,
* Update run_external.rs
* Update run_external.rs
* Update run_external.rs
* Update run_external.rs
Co-authored-by: Jonathan Turner <jonathandturner@users.noreply.github.com>
2020-04-20 05:30:44 +02:00
|
|
|
let input: Vec<Value> = args.input.collect().await;
|
2019-09-04 08:48:40 +02:00
|
|
|
|
|
|
|
let to_process_input = if input.len() > 1 {
|
2019-10-13 06:12:43 +02:00
|
|
|
let tag = input[0].tag.clone();
|
2019-11-21 15:33:14 +01:00
|
|
|
vec![Value { value: UntaggedValue::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 {
|
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) {
|
|
|
|
Ok(yaml_value) => {
|
|
|
|
match serde_yaml::to_string(&yaml_value) {
|
|
|
|
Ok(x) => yield ReturnSuccess::value(
|
2019-11-21 15:33:14 +01:00
|
|
|
UntaggedValue::Primitive(Primitive::String(x)).into_value(&name_tag),
|
2019-09-04 08:48:40 +02:00
|
|
|
),
|
|
|
|
_ => yield Err(ShellError::labeled_error_with_secondary(
|
2020-01-08 12:12:59 +01:00
|
|
|
"Expected a table with YAML-compatible structure from pipeline",
|
2019-09-04 08:48:40 +02:00
|
|
|
"requires YAML-compatible input",
|
2019-11-21 15:33:14 +01:00
|
|
|
name_span,
|
2019-09-04 08:48:40 +02:00
|
|
|
"originates from here".to_string(),
|
2019-11-21 15:33:14 +01: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 YAML-compatible structure from pipeline",
|
2019-08-06 05:03:13 +02:00
|
|
|
"requires YAML-compatible input",
|
2019-10-13 06:12:43 +02:00
|
|
|
&name_tag))
|
2019-09-04 08:48:40 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
Ok(stream.to_output_stream())
|
2019-07-16 06:05:38 +02:00
|
|
|
}
|