mirror of
https://github.com/nushell/nushell
synced 2025-01-09 19:59:02 +00:00
63433f1bc8
* Split closures and blocks * Tests mostly working * finish last fixes, passes all tests * fmt
125 lines
4.2 KiB
Rust
125 lines
4.2 KiB
Rust
use nu_protocol::ast::{Call, PathMember};
|
|
use nu_protocol::engine::{Command, EngineState, Stack};
|
|
use nu_protocol::{
|
|
Category, Example, IntoPipelineData, PipelineData, ShellError, Signature, Span, Type, Value,
|
|
};
|
|
|
|
#[derive(Clone)]
|
|
pub struct ToYaml;
|
|
|
|
impl Command for ToYaml {
|
|
fn name(&self) -> &str {
|
|
"to yaml"
|
|
}
|
|
|
|
fn signature(&self) -> Signature {
|
|
Signature::build("to yaml")
|
|
.input_output_types(vec![(Type::Any, Type::String)])
|
|
.category(Category::Formats)
|
|
}
|
|
|
|
fn usage(&self) -> &str {
|
|
"Convert table into .yaml/.yml text"
|
|
}
|
|
|
|
fn examples(&self) -> Vec<Example> {
|
|
vec![Example {
|
|
description: "Outputs an YAML string representing the contents of this table",
|
|
example: r#"[[foo bar]; ["1" "2"]] | to yaml"#,
|
|
result: Some(Value::test_string("- foo: '1'\n bar: '2'\n")),
|
|
}]
|
|
}
|
|
|
|
fn run(
|
|
&self,
|
|
_engine_state: &EngineState,
|
|
_stack: &mut Stack,
|
|
call: &Call,
|
|
input: PipelineData,
|
|
) -> Result<nu_protocol::PipelineData, ShellError> {
|
|
let head = call.head;
|
|
to_yaml(input, head)
|
|
}
|
|
}
|
|
|
|
pub fn value_to_yaml_value(v: &Value) -> Result<serde_yaml::Value, ShellError> {
|
|
Ok(match &v {
|
|
Value::Bool { val, .. } => serde_yaml::Value::Bool(*val),
|
|
Value::Int { val, .. } => serde_yaml::Value::Number(serde_yaml::Number::from(*val)),
|
|
Value::Filesize { val, .. } => serde_yaml::Value::Number(serde_yaml::Number::from(*val)),
|
|
Value::Duration { val, .. } => serde_yaml::Value::String(val.to_string()),
|
|
Value::Date { val, .. } => serde_yaml::Value::String(val.to_string()),
|
|
Value::Range { .. } => serde_yaml::Value::Null,
|
|
Value::Float { val, .. } => serde_yaml::Value::Number(serde_yaml::Number::from(*val)),
|
|
Value::String { val, .. } => serde_yaml::Value::String(val.clone()),
|
|
Value::Record { cols, vals, .. } => {
|
|
let mut m = serde_yaml::Mapping::new();
|
|
for (k, v) in cols.iter().zip(vals.iter()) {
|
|
m.insert(
|
|
serde_yaml::Value::String(k.clone()),
|
|
value_to_yaml_value(v)?,
|
|
);
|
|
}
|
|
serde_yaml::Value::Mapping(m)
|
|
}
|
|
Value::List { vals, .. } => {
|
|
let mut out = vec![];
|
|
|
|
for value in vals {
|
|
out.push(value_to_yaml_value(value)?);
|
|
}
|
|
|
|
serde_yaml::Value::Sequence(out)
|
|
}
|
|
Value::Block { .. } => serde_yaml::Value::Null,
|
|
Value::Closure { .. } => serde_yaml::Value::Null,
|
|
Value::Nothing { .. } => serde_yaml::Value::Null,
|
|
Value::Error { error } => return Err(error.clone()),
|
|
Value::Binary { val, .. } => serde_yaml::Value::Sequence(
|
|
val.iter()
|
|
.map(|x| serde_yaml::Value::Number(serde_yaml::Number::from(*x)))
|
|
.collect(),
|
|
),
|
|
Value::CellPath { val, .. } => serde_yaml::Value::Sequence(
|
|
val.members
|
|
.iter()
|
|
.map(|x| match &x {
|
|
PathMember::String { val, .. } => Ok(serde_yaml::Value::String(val.clone())),
|
|
PathMember::Int { val, .. } => {
|
|
Ok(serde_yaml::Value::Number(serde_yaml::Number::from(*val)))
|
|
}
|
|
})
|
|
.collect::<Result<Vec<serde_yaml::Value>, ShellError>>()?,
|
|
),
|
|
Value::CustomValue { .. } => serde_yaml::Value::Null,
|
|
})
|
|
}
|
|
|
|
fn to_yaml(input: PipelineData, head: Span) -> Result<PipelineData, ShellError> {
|
|
let value = input.into_value(head);
|
|
|
|
let yaml_value = value_to_yaml_value(&value)?;
|
|
match serde_yaml::to_string(&yaml_value) {
|
|
Ok(serde_yaml_string) => Ok(Value::String {
|
|
val: serde_yaml_string,
|
|
span: head,
|
|
}
|
|
.into_pipeline_data()),
|
|
_ => Ok(Value::Error {
|
|
error: ShellError::CantConvert("YAML".into(), value.get_type().to_string(), head, None),
|
|
}
|
|
.into_pipeline_data()),
|
|
}
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod test {
|
|
use super::*;
|
|
|
|
#[test]
|
|
fn test_examples() {
|
|
use crate::test_examples;
|
|
|
|
test_examples(ToYaml {})
|
|
}
|
|
}
|