2019-08-19 07:16:39 +02:00
|
|
|
use crate::commands::WholeStreamCommand;
|
2019-09-05 18:23:42 +02:00
|
|
|
use crate::data::{Primitive, Value};
|
2019-05-28 06:00:00 +02:00
|
|
|
use crate::prelude::*;
|
|
|
|
|
2019-08-19 07:16:39 +02:00
|
|
|
pub struct ToJSON;
|
|
|
|
|
|
|
|
impl WholeStreamCommand for ToJSON {
|
|
|
|
fn name(&self) -> &str {
|
|
|
|
"to-json"
|
|
|
|
}
|
|
|
|
|
|
|
|
fn signature(&self) -> Signature {
|
|
|
|
Signature::build("to-json")
|
|
|
|
}
|
2019-08-30 00:52:32 +02:00
|
|
|
|
|
|
|
fn usage(&self) -> &str {
|
|
|
|
"Convert table into .json text"
|
|
|
|
}
|
|
|
|
|
|
|
|
fn run(
|
|
|
|
&self,
|
|
|
|
args: CommandArgs,
|
|
|
|
registry: &CommandRegistry,
|
|
|
|
) -> Result<OutputStream, ShellError> {
|
|
|
|
to_json(args, registry)
|
|
|
|
}
|
2019-08-19 07:16:39 +02:00
|
|
|
}
|
|
|
|
|
2019-09-01 18:20:31 +02:00
|
|
|
pub fn value_to_json_value(v: &Tagged<Value>) -> Result<serde_json::Value, ShellError> {
|
|
|
|
Ok(match v.item() {
|
2019-06-30 08:46:49 +02:00
|
|
|
Value::Primitive(Primitive::Boolean(b)) => serde_json::Value::Bool(*b),
|
2019-08-30 19:29:04 +02:00
|
|
|
Value::Primitive(Primitive::Bytes(b)) => serde_json::Value::Number(
|
|
|
|
serde_json::Number::from(b.to_u64().expect("What about really big numbers")),
|
|
|
|
),
|
2019-06-30 08:46:49 +02:00
|
|
|
Value::Primitive(Primitive::Date(d)) => serde_json::Value::String(d.to_string()),
|
|
|
|
Value::Primitive(Primitive::EndOfStream) => serde_json::Value::Null,
|
2019-07-27 09:45:00 +02:00
|
|
|
Value::Primitive(Primitive::BeginningOfStream) => serde_json::Value::Null,
|
2019-08-30 19:29:04 +02:00
|
|
|
Value::Primitive(Primitive::Decimal(f)) => serde_json::Value::Number(
|
|
|
|
serde_json::Number::from_f64(
|
|
|
|
f.to_f64().expect("TODO: What about really big decimals?"),
|
|
|
|
)
|
|
|
|
.unwrap(),
|
|
|
|
),
|
2019-09-01 18:20:31 +02:00
|
|
|
Value::Primitive(Primitive::Int(i)) => serde_json::Value::Number(serde_json::Number::from(
|
|
|
|
CoerceInto::<i64>::coerce_into(i.tagged(v.tag), "converting to JSON number")?,
|
|
|
|
)),
|
2019-06-30 08:46:49 +02:00
|
|
|
Value::Primitive(Primitive::Nothing) => serde_json::Value::Null,
|
2019-09-10 17:31:21 +02:00
|
|
|
Value::Primitive(Primitive::Pattern(s)) => serde_json::Value::String(s.clone()),
|
2019-06-30 08:46:49 +02:00
|
|
|
Value::Primitive(Primitive::String(s)) => serde_json::Value::String(s.clone()),
|
2019-07-15 23:16:27 +02:00
|
|
|
Value::Primitive(Primitive::Path(s)) => serde_json::Value::String(s.display().to_string()),
|
2019-06-30 08:46:49 +02:00
|
|
|
|
2019-09-05 18:23:42 +02:00
|
|
|
Value::Table(l) => serde_json::Value::Array(json_list(l)?),
|
2019-06-30 08:46:49 +02:00
|
|
|
Value::Block(_) => serde_json::Value::Null,
|
2019-09-12 20:29:16 +02:00
|
|
|
Value::Primitive(Primitive::Binary(b)) => serde_json::Value::Array(
|
2019-07-04 07:11:56 +02:00
|
|
|
b.iter()
|
|
|
|
.map(|x| {
|
|
|
|
serde_json::Value::Number(serde_json::Number::from_f64(*x as f64).unwrap())
|
|
|
|
})
|
|
|
|
.collect(),
|
|
|
|
),
|
2019-09-05 18:23:42 +02:00
|
|
|
Value::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
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
fn json_list(input: &Vec<Tagged<Value>>) -> Result<Vec<serde_json::Value>, ShellError> {
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2019-08-19 07:16:39 +02:00
|
|
|
fn to_json(args: CommandArgs, registry: &CommandRegistry) -> Result<OutputStream, ShellError> {
|
2019-07-24 00:22:11 +02:00
|
|
|
let args = args.evaluate_once(registry)?;
|
2019-09-11 09:53:05 +02:00
|
|
|
let name_span = args.name_span();
|
2019-09-04 08:48:40 +02:00
|
|
|
let stream = async_stream_block! {
|
|
|
|
let input: Vec<Tagged<Value>> = args.input.values.collect().await;
|
2019-07-24 00:22:11 +02:00
|
|
|
|
2019-09-04 08:48:40 +02:00
|
|
|
let to_process_input = if input.len() > 1 {
|
|
|
|
let tag = input[0].tag;
|
2019-09-05 18:23:42 +02:00
|
|
|
vec![Tagged { item: Value::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 {
|
|
|
|
match value_to_json_value(&value) {
|
|
|
|
Ok(json_value) => {
|
|
|
|
match serde_json::to_string(&json_value) {
|
|
|
|
Ok(x) => yield ReturnSuccess::value(
|
2019-09-11 09:53:05 +02:00
|
|
|
Value::Primitive(Primitive::String(x)).simple_spanned(name_span),
|
2019-09-04 08:48:40 +02:00
|
|
|
),
|
|
|
|
_ => yield Err(ShellError::labeled_error_with_secondary(
|
2019-09-11 09:53:05 +02:00
|
|
|
"Expected a table with JSON-compatible structure.span() from pipeline",
|
2019-09-04 08:48:40 +02:00
|
|
|
"requires JSON-compatible input",
|
2019-09-11 09:53:05 +02:00
|
|
|
name_span,
|
2019-09-04 08:48:40 +02:00
|
|
|
"originates from here".to_string(),
|
2019-09-11 09:53:05 +02: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 JSON-compatible structure from pipeline",
|
2019-08-06 05:03:13 +02:00
|
|
|
"requires JSON-compatible input",
|
2019-09-11 09:53:05 +02:00
|
|
|
name_span))
|
2019-09-04 08:48:40 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
Ok(stream.to_output_stream())
|
2019-05-28 06:00:00 +02:00
|
|
|
}
|