2019-08-19 07:16:39 +02:00
|
|
|
use crate::commands::WholeStreamCommand;
|
2019-05-28 06:00:00 +02:00
|
|
|
use crate::prelude::*;
|
Extract core stuff into own crates
This commit extracts five new crates:
- nu-source, which contains the core source-code handling logic in Nu,
including Text, Span, and also the pretty.rs-based debug logic
- nu-parser, which is the parser and expander logic
- nu-protocol, which is the bulk of the types and basic conveniences
used by plugins
- nu-errors, which contains ShellError, ParseError and error handling
conveniences
- nu-textview, which is the textview plugin extracted into a crate
One of the major consequences of this refactor is that it's no longer
possible to `impl X for Spanned<Y>` outside of the `nu-source` crate, so
a lot of types became more concrete (Value became a concrete type
instead of Spanned<Value>, for example).
This also turned a number of inherent methods in the main nu crate into
plain functions (impl Value {} became a bunch of functions in the
`value` namespace in `crate::data::value`).
2019-11-26 03:30:48 +01:00
|
|
|
use nu_errors::{CoerceInto, ShellError};
|
2020-05-17 20:48:58 +02:00
|
|
|
use nu_protocol::{
|
|
|
|
Primitive, ReturnSuccess, Signature, SyntaxShape, UnspannedPathMember, UntaggedValue, Value,
|
|
|
|
};
|
2020-05-17 06:43:10 +02:00
|
|
|
use serde::Serialize;
|
|
|
|
use serde_json::json;
|
2019-05-28 06:00:00 +02:00
|
|
|
|
2019-08-19 07:16:39 +02:00
|
|
|
pub struct ToJSON;
|
|
|
|
|
2020-05-17 06:43:10 +02:00
|
|
|
#[derive(Deserialize)]
|
|
|
|
pub struct ToJSONArgs {
|
|
|
|
pretty: Option<Value>,
|
|
|
|
}
|
|
|
|
|
2020-05-29 10:22:52 +02:00
|
|
|
#[async_trait]
|
2019-08-19 07:16:39 +02:00
|
|
|
impl WholeStreamCommand for ToJSON {
|
|
|
|
fn name(&self) -> &str {
|
2020-05-04 10:44:33 +02:00
|
|
|
"to json"
|
2019-08-19 07:16:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fn signature(&self) -> Signature {
|
2020-05-17 20:48:58 +02:00
|
|
|
Signature::build("to json").named(
|
|
|
|
"pretty",
|
|
|
|
SyntaxShape::Int,
|
|
|
|
"Formats the JSON text with the provided indentation setting",
|
|
|
|
Some('p'),
|
|
|
|
)
|
2019-08-19 07:16:39 +02:00
|
|
|
}
|
2019-08-30 00:52:32 +02:00
|
|
|
|
|
|
|
fn usage(&self) -> &str {
|
2020-05-17 20:48:58 +02:00
|
|
|
"Converts table data into JSON text."
|
2019-08-30 00:52:32 +02:00
|
|
|
}
|
|
|
|
|
2020-05-29 10:22:52 +02:00
|
|
|
async fn run(
|
2019-08-30 00:52:32 +02:00
|
|
|
&self,
|
|
|
|
args: CommandArgs,
|
|
|
|
registry: &CommandRegistry,
|
|
|
|
) -> Result<OutputStream, ShellError> {
|
2020-06-13 21:13:36 +02:00
|
|
|
to_json(args, registry).await
|
2019-08-30 00:52:32 +02:00
|
|
|
}
|
2020-05-17 06:43:10 +02:00
|
|
|
|
2020-05-18 14:56:01 +02:00
|
|
|
fn examples(&self) -> Vec<Example> {
|
|
|
|
vec![
|
2020-05-17 06:43:10 +02:00
|
|
|
Example {
|
|
|
|
description:
|
|
|
|
"Outputs an unformatted JSON string representing the contents of this table",
|
2020-05-18 14:56:01 +02:00
|
|
|
example: "echo [1 2 3] | to json",
|
|
|
|
result: Some(vec![Value::from("[1,2,3]")]),
|
2020-05-17 06:43:10 +02:00
|
|
|
},
|
|
|
|
Example {
|
|
|
|
description:
|
2020-05-18 14:56:01 +02:00
|
|
|
"Outputs a formatted JSON string representing the contents of this table with an indentation setting of 2 spaces",
|
|
|
|
example: "echo [1 2 3] | to json --pretty 2",
|
|
|
|
result: Some(vec![Value::from("[\n 1,\n 2,\n 3\n]")]),
|
2020-05-17 06:43:10 +02:00
|
|
|
},
|
|
|
|
]
|
|
|
|
}
|
2019-08-19 07:16:39 +02:00
|
|
|
}
|
|
|
|
|
2019-11-21 15:33:14 +01:00
|
|
|
pub fn value_to_json_value(v: &Value) -> Result<serde_json::Value, ShellError> {
|
|
|
|
Ok(match &v.value {
|
|
|
|
UntaggedValue::Primitive(Primitive::Boolean(b)) => serde_json::Value::Bool(*b),
|
|
|
|
UntaggedValue::Primitive(Primitive::Bytes(b)) => serde_json::Value::Number(
|
2019-08-30 19:29:04 +02:00
|
|
|
serde_json::Number::from(b.to_u64().expect("What about really big numbers")),
|
|
|
|
),
|
2019-11-21 15:33:14 +01:00
|
|
|
UntaggedValue::Primitive(Primitive::Duration(secs)) => {
|
2019-11-17 06:48:48 +01:00
|
|
|
serde_json::Value::Number(serde_json::Number::from(*secs))
|
|
|
|
}
|
2019-11-21 15:33:14 +01:00
|
|
|
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,
|
2020-01-02 08:07:17 +01:00
|
|
|
UntaggedValue::Primitive(Primitive::Decimal(f)) => {
|
|
|
|
if let Some(f) = f.to_f64() {
|
|
|
|
if let Some(num) = serde_json::Number::from_f64(
|
|
|
|
f.to_f64().expect("TODO: What about really big decimals?"),
|
|
|
|
) {
|
|
|
|
serde_json::Value::Number(num)
|
|
|
|
} else {
|
|
|
|
return Err(ShellError::labeled_error(
|
|
|
|
"Could not convert value to decimal number",
|
|
|
|
"could not convert to decimal",
|
|
|
|
&v.tag,
|
|
|
|
));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return Err(ShellError::labeled_error(
|
|
|
|
"Could not convert value to decimal number",
|
|
|
|
"could not convert to decimal",
|
|
|
|
&v.tag,
|
|
|
|
));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-21 15:33:14 +01:00
|
|
|
UntaggedValue::Primitive(Primitive::Int(i)) => {
|
|
|
|
serde_json::Value::Number(serde_json::Number::from(CoerceInto::<i64>::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()),
|
2019-12-03 07:44:59 +01:00
|
|
|
UntaggedValue::Primitive(Primitive::Line(s)) => serde_json::Value::String(s.clone()),
|
2019-11-21 15:33:14 +01:00
|
|
|
UntaggedValue::Primitive(Primitive::ColumnPath(path)) => serde_json::Value::Array(
|
2019-11-04 16:47:03 +01:00
|
|
|
path.iter()
|
2019-11-21 15:33:14 +01:00
|
|
|
.map(|x| match &x.unspanned {
|
|
|
|
UnspannedPathMember::String(string) => {
|
|
|
|
Ok(serde_json::Value::String(string.clone()))
|
|
|
|
}
|
|
|
|
UnspannedPathMember::Int(int) => Ok(serde_json::Value::Number(
|
2019-11-04 16:47:03 +01:00
|
|
|
serde_json::Number::from(CoerceInto::<i64>::coerce_into(
|
|
|
|
int.tagged(&v.tag),
|
|
|
|
"converting to JSON number",
|
|
|
|
)?),
|
|
|
|
)),
|
|
|
|
})
|
|
|
|
.collect::<Result<Vec<serde_json::Value>, ShellError>>()?,
|
|
|
|
),
|
2019-11-21 15:33:14 +01:00
|
|
|
UntaggedValue::Primitive(Primitive::Path(s)) => {
|
|
|
|
serde_json::Value::String(s.display().to_string())
|
|
|
|
}
|
2019-06-30 08:46:49 +02:00
|
|
|
|
2019-11-21 15:33:14 +01:00
|
|
|
UntaggedValue::Table(l) => serde_json::Value::Array(json_list(l)?),
|
|
|
|
UntaggedValue::Error(e) => return Err(e.clone()),
|
2019-12-04 22:14:52 +01:00
|
|
|
UntaggedValue::Block(_) | UntaggedValue::Primitive(Primitive::Range(_)) => {
|
|
|
|
serde_json::Value::Null
|
|
|
|
}
|
2019-11-21 15:33:14 +01:00
|
|
|
UntaggedValue::Primitive(Primitive::Binary(b)) => serde_json::Value::Array(
|
2019-07-04 07:11:56 +02:00
|
|
|
b.iter()
|
|
|
|
.map(|x| {
|
2020-01-04 07:44:17 +01:00
|
|
|
serde_json::Number::from_f64(*x as f64).ok_or_else(|| {
|
|
|
|
ShellError::labeled_error(
|
|
|
|
"Can not convert number from floating point",
|
|
|
|
"can not convert to number",
|
|
|
|
&v.tag,
|
|
|
|
)
|
|
|
|
})
|
2019-07-04 07:11:56 +02:00
|
|
|
})
|
2020-01-04 07:44:17 +01:00
|
|
|
.collect::<Result<Vec<serde_json::Number>, ShellError>>()?
|
|
|
|
.into_iter()
|
|
|
|
.map(serde_json::Value::Number)
|
2019-07-04 07:11:56 +02:00
|
|
|
.collect(),
|
|
|
|
),
|
2019-11-21 15:33:14 +01:00
|
|
|
UntaggedValue::Row(o) => {
|
2019-06-30 08:46:49 +02:00
|
|
|
let mut m = serde_json::Map::new();
|
|
|
|
for (k, v) in o.entries.iter() {
|
2019-09-01 18:20:31 +02:00
|
|
|
m.insert(k.clone(), value_to_json_value(v)?);
|
2019-06-30 08:46:49 +02:00
|
|
|
}
|
|
|
|
serde_json::Value::Object(m)
|
|
|
|
}
|
2019-09-01 18:20:31 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-12-06 16:28:26 +01:00
|
|
|
fn json_list(input: &[Value]) -> Result<Vec<serde_json::Value>, ShellError> {
|
2019-09-01 18:20:31 +02:00
|
|
|
let mut out = vec![];
|
|
|
|
|
|
|
|
for value in input {
|
|
|
|
out.push(value_to_json_value(value)?);
|
2019-06-30 08:46:49 +02:00
|
|
|
}
|
2019-09-01 18:20:31 +02:00
|
|
|
|
|
|
|
Ok(out)
|
2019-06-30 08:46:49 +02:00
|
|
|
}
|
|
|
|
|
2020-06-13 21:13:36 +02:00
|
|
|
async fn to_json(
|
|
|
|
args: CommandArgs,
|
|
|
|
registry: &CommandRegistry,
|
|
|
|
) -> Result<OutputStream, ShellError> {
|
2020-05-16 05:18:24 +02:00
|
|
|
let registry = registry.clone();
|
2020-06-13 21:13:36 +02:00
|
|
|
let name_tag = args.call_info.name_tag.clone();
|
|
|
|
let (ToJSONArgs { pretty }, input) = args.process(®istry).await?;
|
|
|
|
let name_span = name_tag.span;
|
|
|
|
let input: Vec<Value> = input.collect().await;
|
2019-07-24 00:22:11 +02:00
|
|
|
|
2020-06-13 21:13:36 +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 21:13:36 +02:00
|
|
|
vec![Value {
|
|
|
|
value: UntaggedValue::Table(input),
|
|
|
|
tag,
|
|
|
|
}]
|
|
|
|
}
|
|
|
|
1 => input,
|
|
|
|
_ => vec![],
|
|
|
|
};
|
|
|
|
|
|
|
|
Ok(futures::stream::iter(to_process_input.into_iter().map(
|
|
|
|
move |value| match value_to_json_value(&value) {
|
|
|
|
Ok(json_value) => {
|
|
|
|
let value_span = value.tag.span;
|
|
|
|
|
|
|
|
match serde_json::to_string(&json_value) {
|
|
|
|
Ok(mut serde_json_string) => {
|
|
|
|
if let Some(pretty_value) = &pretty {
|
|
|
|
let mut pretty_format_failed = true;
|
|
|
|
|
|
|
|
if let Ok(pretty_u64) = pretty_value.as_u64() {
|
|
|
|
if let Ok(serde_json_value) =
|
|
|
|
serde_json::from_str::<serde_json::Value>(
|
|
|
|
serde_json_string.as_str(),
|
|
|
|
)
|
|
|
|
{
|
|
|
|
let indentation_string = std::iter::repeat(" ")
|
|
|
|
.take(pretty_u64 as usize)
|
|
|
|
.collect::<String>();
|
|
|
|
let serde_formatter =
|
|
|
|
serde_json::ser::PrettyFormatter::with_indent(
|
|
|
|
indentation_string.as_bytes(),
|
|
|
|
);
|
|
|
|
let serde_buffer = Vec::new();
|
|
|
|
let mut serde_serializer =
|
|
|
|
serde_json::Serializer::with_formatter(
|
|
|
|
serde_buffer,
|
|
|
|
serde_formatter,
|
|
|
|
);
|
|
|
|
let serde_json_object = json!(serde_json_value);
|
|
|
|
|
|
|
|
if let Ok(()) =
|
|
|
|
serde_json_object.serialize(&mut serde_serializer)
|
|
|
|
{
|
|
|
|
if let Ok(ser_json_string) =
|
|
|
|
String::from_utf8(serde_serializer.into_inner())
|
|
|
|
{
|
|
|
|
pretty_format_failed = false;
|
|
|
|
serde_json_string = ser_json_string
|
2020-05-17 06:43:10 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-06-13 21:13:36 +02:00
|
|
|
}
|
2020-05-17 06:43:10 +02:00
|
|
|
|
2020-06-13 21:13:36 +02:00
|
|
|
if pretty_format_failed {
|
|
|
|
return Err(ShellError::labeled_error(
|
|
|
|
"Pretty formatting failed",
|
|
|
|
"failed",
|
|
|
|
pretty_value.tag(),
|
|
|
|
));
|
2020-05-17 06:43:10 +02:00
|
|
|
}
|
2020-06-13 21:13:36 +02:00
|
|
|
}
|
2020-05-17 06:43:10 +02:00
|
|
|
|
2020-06-13 21:13:36 +02:00
|
|
|
ReturnSuccess::value(
|
|
|
|
UntaggedValue::Primitive(Primitive::String(serde_json_string))
|
|
|
|
.into_value(&name_tag),
|
|
|
|
)
|
2019-09-04 08:48:40 +02:00
|
|
|
}
|
2020-06-13 21:13:36 +02:00
|
|
|
_ => 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,
|
|
|
|
)),
|
2019-09-04 08:48:40 +02:00
|
|
|
}
|
|
|
|
}
|
2020-06-13 21:13:36 +02:00
|
|
|
_ => Err(ShellError::labeled_error(
|
|
|
|
"Expected a table with JSON-compatible structure from pipeline",
|
|
|
|
"requires JSON-compatible input",
|
|
|
|
&name_tag,
|
|
|
|
)),
|
|
|
|
},
|
|
|
|
))
|
|
|
|
.to_output_stream())
|
2019-05-28 06:00:00 +02:00
|
|
|
}
|
2020-05-18 14:56:01 +02:00
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::ToJSON;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn examples_work_as_expected() {
|
|
|
|
use crate::examples::test as test_examples;
|
|
|
|
|
|
|
|
test_examples(ToJSON {})
|
|
|
|
}
|
|
|
|
}
|