forked from extern/nushell
# Description This PR creates a new `Record` type to reduce duplicate code and possibly bugs as well. (This is an edited version of #9648.) - `Record` implements `FromIterator` and `IntoIterator` and so can be iterated over or collected into. For example, this helps with conversions to and from (hash)maps. (Also, no more `cols.iter().zip(vals)`!) - `Record` has a `push(col, val)` function to help insure that the number of columns is equal to the number of values. I caught a few potential bugs thanks to this (e.g. in the `ls` command). - Finally, this PR also adds a `record!` macro that helps simplify record creation. It is used like so: ```rust record! { "key1" => some_value, "key2" => Value::string("text", span), "key3" => Value::int(optional_int.unwrap_or(0), span), "key4" => Value::bool(config.setting, span), } ``` Since macros hinder formatting, etc., the right hand side values should be relatively short and sweet like the examples above. Where possible, prefer `record!` or `.collect()` on an iterator instead of multiple `Record::push`s, since the first two automatically set the record capacity and do less work overall. # User-Facing Changes Besides the changes in `nu-protocol` the only other breaking changes are to `nu-table::{ExpandedTable::build_map, JustTable::kv_table}`.
168 lines
5.6 KiB
Rust
168 lines
5.6 KiB
Rust
use nu_engine::CallExt;
|
|
use nu_parser::parse;
|
|
use nu_protocol::{
|
|
ast::Call,
|
|
engine::{Command, EngineState, Stack, StateWorkingSet},
|
|
record, Category, Example, IntoPipelineData, PipelineData, ShellError, Signature, Span,
|
|
Spanned, SyntaxShape, Type, Value,
|
|
};
|
|
|
|
#[derive(Clone)]
|
|
pub struct Ast;
|
|
|
|
impl Command for Ast {
|
|
fn name(&self) -> &str {
|
|
"ast"
|
|
}
|
|
|
|
fn usage(&self) -> &str {
|
|
"Print the abstract syntax tree (ast) for a pipeline."
|
|
}
|
|
|
|
fn signature(&self) -> Signature {
|
|
Signature::build("ast")
|
|
.input_output_types(vec![(Type::String, Type::Record(vec![]))])
|
|
.required(
|
|
"pipeline",
|
|
SyntaxShape::String,
|
|
"the pipeline to print the ast for",
|
|
)
|
|
.switch("json", "serialize to json", Some('j'))
|
|
.switch("minify", "minify the nuon or json output", Some('m'))
|
|
.allow_variants_without_examples(true)
|
|
.category(Category::Debug)
|
|
}
|
|
|
|
fn run(
|
|
&self,
|
|
engine_state: &EngineState,
|
|
stack: &mut Stack,
|
|
call: &Call,
|
|
_input: PipelineData,
|
|
) -> Result<PipelineData, ShellError> {
|
|
let pipeline: Spanned<String> = call.req(engine_state, stack, 0)?;
|
|
let to_json = call.has_flag("json");
|
|
let minify = call.has_flag("minify");
|
|
let mut working_set = StateWorkingSet::new(engine_state);
|
|
let block_output = parse(&mut working_set, None, pipeline.item.as_bytes(), false);
|
|
let error_output = working_set.parse_errors.first();
|
|
let block_span = match &block_output.span {
|
|
Some(span) => span,
|
|
None => &pipeline.span,
|
|
};
|
|
if to_json {
|
|
// Get the block as json
|
|
let serde_block_str = if minify {
|
|
serde_json::to_string(&block_output)
|
|
} else {
|
|
serde_json::to_string_pretty(&block_output)
|
|
};
|
|
let block_json = match serde_block_str {
|
|
Ok(json) => json,
|
|
Err(e) => Err(ShellError::CantConvert {
|
|
to_type: "string".to_string(),
|
|
from_type: "block".to_string(),
|
|
span: *block_span,
|
|
help: Some(format!(
|
|
"Error: {e}\nCan't convert {block_output:?} to string"
|
|
)),
|
|
})?,
|
|
};
|
|
// Get the error as json
|
|
let serde_error_str = if minify {
|
|
serde_json::to_string(&error_output)
|
|
} else {
|
|
serde_json::to_string_pretty(&error_output)
|
|
};
|
|
|
|
let error_json = match serde_error_str {
|
|
Ok(json) => json,
|
|
Err(e) => Err(ShellError::CantConvert {
|
|
to_type: "string".to_string(),
|
|
from_type: "error".to_string(),
|
|
span: *block_span,
|
|
help: Some(format!(
|
|
"Error: {e}\nCan't convert {error_output:?} to string"
|
|
)),
|
|
})?,
|
|
};
|
|
|
|
// Create a new output record, merging the block and error
|
|
let output_record = Value::record(
|
|
record! {
|
|
"block" => Value::string(block_json, *block_span),
|
|
"error" => Value::string(error_json, Span::test_data()),
|
|
},
|
|
pipeline.span,
|
|
);
|
|
Ok(output_record.into_pipeline_data())
|
|
} else {
|
|
let block_value = Value::String {
|
|
val: if minify {
|
|
format!("{block_output:?}")
|
|
} else {
|
|
format!("{block_output:#?}")
|
|
},
|
|
span: pipeline.span,
|
|
};
|
|
let error_value = Value::String {
|
|
val: if minify {
|
|
format!("{error_output:?}")
|
|
} else {
|
|
format!("{error_output:#?}")
|
|
},
|
|
span: pipeline.span,
|
|
};
|
|
let output_record = Value::record(
|
|
record! {
|
|
"block" => block_value,
|
|
"error" => error_value
|
|
},
|
|
pipeline.span,
|
|
);
|
|
Ok(output_record.into_pipeline_data())
|
|
}
|
|
}
|
|
|
|
fn examples(&self) -> Vec<Example> {
|
|
vec![
|
|
Example {
|
|
description: "Print the ast of a string",
|
|
example: "ast 'hello'",
|
|
result: None,
|
|
},
|
|
Example {
|
|
description: "Print the ast of a pipeline",
|
|
example: "ast 'ls | where name =~ README'",
|
|
result: None,
|
|
},
|
|
Example {
|
|
description: "Print the ast of a pipeline with an error",
|
|
example: "ast 'for x in 1..10 { echo $x '",
|
|
result: None,
|
|
},
|
|
Example {
|
|
description:
|
|
"Print the ast of a pipeline with an error, as json, in a nushell table",
|
|
example: "ast 'for x in 1..10 { echo $x ' --json | get block | from json",
|
|
result: None,
|
|
},
|
|
Example {
|
|
description: "Print the ast of a pipeline with an error, as json, minified",
|
|
example: "ast 'for x in 1..10 { echo $x ' -j -m",
|
|
result: None,
|
|
},
|
|
]
|
|
}
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod test {
|
|
#[test]
|
|
fn test_examples() {
|
|
use super::Ast;
|
|
use crate::test_examples;
|
|
test_examples(Ast {})
|
|
}
|
|
}
|