use crate::commands::WholeStreamCommand; use crate::prelude::*; use nu_errors::{CoerceInto, ShellError}; use nu_protocol::{Primitive, ReturnSuccess, Signature, UnspannedPathMember, UntaggedValue, Value}; pub struct ToJSON; impl WholeStreamCommand for ToJSON { fn name(&self) -> &str { "to-json" } fn signature(&self) -> Signature { Signature::build("to-json") } fn usage(&self) -> &str { "Convert table into .json text" } fn run( &self, args: CommandArgs, registry: &CommandRegistry, ) -> Result { to_json(args, registry) } } pub fn value_to_json_value(v: &Value) -> Result { Ok(match &v.value { UntaggedValue::Primitive(Primitive::Boolean(b)) => serde_json::Value::Bool(*b), UntaggedValue::Primitive(Primitive::Bytes(b)) => serde_json::Value::Number( serde_json::Number::from(b.to_u64().expect("What about really big numbers")), ), UntaggedValue::Primitive(Primitive::Duration(secs)) => { serde_json::Value::Number(serde_json::Number::from(*secs)) } UntaggedValue::Primitive(Primitive::Date(d)) => serde_json::Value::String(d.to_string()), UntaggedValue::Primitive(Primitive::EndOfStream) => serde_json::Value::Null, UntaggedValue::Primitive(Primitive::BeginningOfStream) => serde_json::Value::Null, UntaggedValue::Primitive(Primitive::Decimal(f)) => serde_json::Value::Number( serde_json::Number::from_f64( f.to_f64().expect("TODO: What about really big decimals?"), ) .unwrap(), ), UntaggedValue::Primitive(Primitive::Int(i)) => { serde_json::Value::Number(serde_json::Number::from(CoerceInto::::coerce_into( i.tagged(&v.tag), "converting to JSON number", )?)) } UntaggedValue::Primitive(Primitive::Nothing) => serde_json::Value::Null, UntaggedValue::Primitive(Primitive::Pattern(s)) => serde_json::Value::String(s.clone()), UntaggedValue::Primitive(Primitive::String(s)) => serde_json::Value::String(s.clone()), UntaggedValue::Primitive(Primitive::Line(s)) => serde_json::Value::String(s.clone()), UntaggedValue::Primitive(Primitive::ColumnPath(path)) => serde_json::Value::Array( path.iter() .map(|x| match &x.unspanned { UnspannedPathMember::String(string) => { Ok(serde_json::Value::String(string.clone())) } UnspannedPathMember::Int(int) => Ok(serde_json::Value::Number( serde_json::Number::from(CoerceInto::::coerce_into( int.tagged(&v.tag), "converting to JSON number", )?), )), }) .collect::, ShellError>>()?, ), UntaggedValue::Primitive(Primitive::Path(s)) => { serde_json::Value::String(s.display().to_string()) } UntaggedValue::Table(l) => serde_json::Value::Array(json_list(l)?), UntaggedValue::Error(e) => return Err(e.clone()), UntaggedValue::Block(_) | UntaggedValue::Primitive(Primitive::Range(_)) => { serde_json::Value::Null } UntaggedValue::Primitive(Primitive::Binary(b)) => serde_json::Value::Array( b.iter() .map(|x| { serde_json::Value::Number(serde_json::Number::from_f64(*x as f64).unwrap()) }) .collect(), ), UntaggedValue::Row(o) => { let mut m = serde_json::Map::new(); for (k, v) in o.entries.iter() { m.insert(k.clone(), value_to_json_value(v)?); } serde_json::Value::Object(m) } }) } fn json_list(input: &[Value]) -> Result, ShellError> { let mut out = vec![]; for value in input { out.push(value_to_json_value(value)?); } Ok(out) } fn to_json(args: CommandArgs, registry: &CommandRegistry) -> Result { let args = args.evaluate_once(registry)?; let name_tag = args.name_tag(); let name_span = name_tag.span; let stream = async_stream! { let input: Vec = args.input.values.collect().await; let to_process_input = if input.len() > 1 { let tag = input[0].tag.clone(); vec![Value { value: UntaggedValue::Table(input), tag } ] } else if input.len() == 1 { input } else { vec![] }; for value in to_process_input { match value_to_json_value(&value) { Ok(json_value) => { let value_span = value.tag.span; match serde_json::to_string(&json_value) { Ok(x) => yield ReturnSuccess::value( UntaggedValue::Primitive(Primitive::String(x)).into_value(&name_tag), ), _ => yield Err(ShellError::labeled_error_with_secondary( "Expected a table with JSON-compatible structure.tag() from pipeline", "requires JSON-compatible input", name_span, "originates from here".to_string(), value_span, )), } } _ => yield Err(ShellError::labeled_error( "Expected a table with JSON-compatible structure from pipeline", "requires JSON-compatible input", &name_tag)) } } }; Ok(stream.to_output_stream()) }