mirror of
https://github.com/nushell/nushell.git
synced 2024-12-12 10:10:51 +01:00
073e5727c6
* WIP * WIP * first builds * Tests pass
148 lines
4.7 KiB
Rust
148 lines
4.7 KiB
Rust
use crate::prelude::*;
|
|
use nu_engine::WholeStreamCommand;
|
|
use nu_errors::ShellError;
|
|
use nu_protocol::{Primitive, ReturnSuccess, Signature, TaggedDictBuilder, UntaggedValue, Value};
|
|
|
|
pub struct FromJson;
|
|
|
|
#[derive(Deserialize)]
|
|
pub struct FromJsonArgs {
|
|
objects: bool,
|
|
}
|
|
|
|
impl WholeStreamCommand for FromJson {
|
|
fn name(&self) -> &str {
|
|
"from json"
|
|
}
|
|
|
|
fn signature(&self) -> Signature {
|
|
Signature::build("from json").switch(
|
|
"objects",
|
|
"treat each line as a separate value",
|
|
Some('o'),
|
|
)
|
|
}
|
|
|
|
fn usage(&self) -> &str {
|
|
"Parse text as .json and create table."
|
|
}
|
|
|
|
fn run(&self, args: CommandArgs) -> Result<OutputStream, ShellError> {
|
|
from_json(args)
|
|
}
|
|
}
|
|
|
|
fn convert_json_value_to_nu_value(v: &nu_json::Value, tag: impl Into<Tag>) -> Value {
|
|
let tag = tag.into();
|
|
let span = tag.span;
|
|
|
|
match v {
|
|
nu_json::Value::Null => UntaggedValue::Primitive(Primitive::Nothing).into_value(&tag),
|
|
nu_json::Value::Bool(b) => UntaggedValue::boolean(*b).into_value(&tag),
|
|
nu_json::Value::F64(n) => UntaggedValue::decimal_from_float(*n, span).into_value(&tag),
|
|
nu_json::Value::U64(n) => UntaggedValue::int(*n).into_value(&tag),
|
|
nu_json::Value::I64(n) => UntaggedValue::int(*n).into_value(&tag),
|
|
nu_json::Value::String(s) => {
|
|
UntaggedValue::Primitive(Primitive::String(String::from(s))).into_value(&tag)
|
|
}
|
|
nu_json::Value::Array(a) => UntaggedValue::Table(
|
|
a.iter()
|
|
.map(|x| convert_json_value_to_nu_value(x, &tag))
|
|
.collect(),
|
|
)
|
|
.into_value(tag),
|
|
nu_json::Value::Object(o) => {
|
|
let mut collected = TaggedDictBuilder::new(&tag);
|
|
for (k, v) in o.iter() {
|
|
collected.insert_value(k.clone(), convert_json_value_to_nu_value(v, &tag));
|
|
}
|
|
|
|
collected.into_value()
|
|
}
|
|
}
|
|
}
|
|
|
|
pub fn from_json_string_to_value(s: String, tag: impl Into<Tag>) -> nu_json::Result<Value> {
|
|
let v: nu_json::Value = nu_json::from_str(&s)?;
|
|
Ok(convert_json_value_to_nu_value(&v, tag))
|
|
}
|
|
|
|
fn from_json(args: CommandArgs) -> Result<OutputStream, ShellError> {
|
|
let name_tag = args.call_info.name_tag.clone();
|
|
|
|
let (FromJsonArgs { objects }, input) = args.process()?;
|
|
let concat_string = input.collect_string(name_tag.clone())?;
|
|
|
|
let string_clone: Vec<_> = concat_string.item.lines().map(|x| x.to_string()).collect();
|
|
|
|
if objects {
|
|
Ok(string_clone
|
|
.into_iter()
|
|
.filter_map(move |json_str| {
|
|
if json_str.is_empty() {
|
|
return None;
|
|
}
|
|
|
|
match from_json_string_to_value(json_str, &name_tag) {
|
|
Ok(x) => Some(ReturnSuccess::value(x)),
|
|
Err(e) => {
|
|
let mut message = "Could not parse as JSON (".to_string();
|
|
message.push_str(&e.to_string());
|
|
message.push(')');
|
|
|
|
Some(Err(ShellError::labeled_error_with_secondary(
|
|
message,
|
|
"input cannot be parsed as JSON",
|
|
name_tag.clone(),
|
|
"value originates from here",
|
|
concat_string.tag.clone(),
|
|
)))
|
|
}
|
|
}
|
|
})
|
|
.to_output_stream())
|
|
} else {
|
|
match from_json_string_to_value(concat_string.item, name_tag.clone()) {
|
|
Ok(x) => match x {
|
|
Value {
|
|
value: UntaggedValue::Table(list),
|
|
..
|
|
} => Ok(list
|
|
.into_iter()
|
|
.map(ReturnSuccess::value)
|
|
.to_output_stream()),
|
|
|
|
x => Ok(OutputStream::one(ReturnSuccess::value(x))),
|
|
},
|
|
Err(e) => {
|
|
let mut message = "Could not parse as JSON (".to_string();
|
|
message.push_str(&e.to_string());
|
|
message.push(')');
|
|
|
|
Ok(OutputStream::one(Err(
|
|
ShellError::labeled_error_with_secondary(
|
|
message,
|
|
"input cannot be parsed as JSON",
|
|
name_tag,
|
|
"value originates from here",
|
|
concat_string.tag,
|
|
),
|
|
)))
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::FromJson;
|
|
use super::ShellError;
|
|
|
|
#[test]
|
|
fn examples_work_as_expected() -> Result<(), ShellError> {
|
|
use crate::examples::test as test_examples;
|
|
|
|
test_examples(FromJson {})
|
|
}
|
|
}
|