mirror of
https://github.com/nushell/nushell.git
synced 2025-04-24 21:28:20 +02:00
# Description All core `to *` set content type pipeline metadata. # User-Facing Changes - For consistency, `from json` no longer sets the content type metadata # Tests + Formatting - 🟢 `toolkit fmt` - 🟢 `toolkit clippy` - 🟢 `toolkit test` - 🟢 `toolkit test stdlib
168 lines
5.4 KiB
Rust
168 lines
5.4 KiB
Rust
use nu_engine::command_prelude::*;
|
|
use nu_protocol::ast::PathMember;
|
|
|
|
#[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<PipelineData, ShellError> {
|
|
let head = call.head;
|
|
let input = input.try_expand_range()?;
|
|
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, .. } | Value::Glob { val, .. } => {
|
|
serde_yaml::Value::String(val.clone())
|
|
}
|
|
Value::Record { val, .. } => {
|
|
let mut m = serde_yaml::Mapping::new();
|
|
for (k, v) in &**val {
|
|
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::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::Custom { .. } => serde_yaml::Value::Null,
|
|
})
|
|
}
|
|
|
|
fn to_yaml(input: PipelineData, head: Span) -> Result<PipelineData, ShellError> {
|
|
let metadata = input
|
|
.metadata()
|
|
.unwrap_or_default()
|
|
.with_content_type(Some("application/yaml".into()));
|
|
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(serde_yaml_string, head)
|
|
.into_pipeline_data_with_metadata(Some(metadata)))
|
|
}
|
|
_ => Ok(Value::error(
|
|
ShellError::CantConvert {
|
|
to_type: "YAML".into(),
|
|
from_type: value.get_type().to_string(),
|
|
span: head,
|
|
help: None,
|
|
},
|
|
head,
|
|
)
|
|
.into_pipeline_data_with_metadata(Some(metadata))),
|
|
}
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod test {
|
|
use nu_cmd_lang::eval_pipeline_without_terminal_expression;
|
|
|
|
use crate::Metadata;
|
|
|
|
use super::*;
|
|
|
|
#[test]
|
|
fn test_examples() {
|
|
use crate::test_examples;
|
|
|
|
test_examples(ToYaml {})
|
|
}
|
|
|
|
#[test]
|
|
fn test_content_type_metadata() {
|
|
let mut engine_state = Box::new(EngineState::new());
|
|
let delta = {
|
|
// Base functions that are needed for testing
|
|
// Try to keep this working set small to keep tests running as fast as possible
|
|
let mut working_set = StateWorkingSet::new(&engine_state);
|
|
|
|
working_set.add_decl(Box::new(ToYaml {}));
|
|
working_set.add_decl(Box::new(Metadata {}));
|
|
|
|
working_set.render()
|
|
};
|
|
|
|
engine_state
|
|
.merge_delta(delta)
|
|
.expect("Error merging delta");
|
|
|
|
let cmd = "{a: 1 b: 2} | to yaml | metadata | get content_type";
|
|
let result = eval_pipeline_without_terminal_expression(
|
|
cmd,
|
|
std::env::temp_dir().as_ref(),
|
|
&mut engine_state,
|
|
);
|
|
assert_eq!(
|
|
Value::test_record(record!("content_type" => Value::test_string("application/yaml"))),
|
|
result.expect("There should be a result")
|
|
);
|
|
}
|
|
}
|