mirror of
https://github.com/nushell/nushell.git
synced 2025-03-26 15:26:51 +01:00
# Description This PR changes the `metadata` command to a `Category::Debug` command for better organization. # User-Facing Changes Just a different category. # Tests + Formatting Don't forget to add tests that cover your changes. Make sure you've run and fixed any issues with these commands: - `cargo fmt --all -- --check` to check standard code formatting (`cargo fmt --all` applies these changes) - `cargo clippy --workspace -- -D warnings -D clippy::unwrap_used -A clippy::needless_collect` to check that you're using the standard code style - `cargo test --workspace` to check that all tests pass # After Submitting If your PR had any user-facing changes, update [the documentation](https://github.com/nushell/nushell.github.io) after the PR is merged, if necessary. This will help us keep the docs up to date.
178 lines
5.3 KiB
Rust
178 lines
5.3 KiB
Rust
use nu_engine::CallExt;
|
|
use nu_protocol::ast::{Call, Expr, Expression};
|
|
use nu_protocol::engine::{Command, EngineState, Stack};
|
|
use nu_protocol::{
|
|
Category, DataSource, Example, IntoPipelineData, PipelineData, PipelineMetadata, ShellError,
|
|
Signature, Span, SyntaxShape, Type, Value,
|
|
};
|
|
|
|
#[derive(Clone)]
|
|
pub struct Metadata;
|
|
|
|
impl Command for Metadata {
|
|
fn name(&self) -> &str {
|
|
"metadata"
|
|
}
|
|
|
|
fn usage(&self) -> &str {
|
|
"Get the metadata for items in the stream"
|
|
}
|
|
|
|
fn signature(&self) -> nu_protocol::Signature {
|
|
Signature::build("metadata")
|
|
.input_output_types(vec![(Type::Nothing, Type::Record(vec![]))])
|
|
.allow_variants_without_examples(true)
|
|
.optional(
|
|
"expression",
|
|
SyntaxShape::Any,
|
|
"the expression you want metadata for",
|
|
)
|
|
.category(Category::Debug)
|
|
}
|
|
|
|
fn run(
|
|
&self,
|
|
engine_state: &EngineState,
|
|
stack: &mut Stack,
|
|
call: &Call,
|
|
input: PipelineData,
|
|
) -> Result<PipelineData, ShellError> {
|
|
let arg = call.positional_nth(0);
|
|
let head = call.head;
|
|
|
|
match arg {
|
|
Some(Expression {
|
|
expr: Expr::FullCellPath(full_cell_path),
|
|
span,
|
|
..
|
|
}) => {
|
|
if full_cell_path.tail.is_empty() {
|
|
match &full_cell_path.head {
|
|
Expression {
|
|
expr: Expr::Var(var_id),
|
|
..
|
|
} => {
|
|
let origin = stack.get_var_with_origin(*var_id, *span)?;
|
|
|
|
Ok(build_metadata_record(&origin, &input.metadata(), head)
|
|
.into_pipeline_data())
|
|
}
|
|
_ => {
|
|
let val: Value = call.req(engine_state, stack, 0)?;
|
|
Ok(build_metadata_record(&val, &input.metadata(), head)
|
|
.into_pipeline_data())
|
|
}
|
|
}
|
|
} else {
|
|
let val: Value = call.req(engine_state, stack, 0)?;
|
|
Ok(build_metadata_record(&val, &input.metadata(), head).into_pipeline_data())
|
|
}
|
|
}
|
|
Some(_) => {
|
|
let val: Value = call.req(engine_state, stack, 0)?;
|
|
Ok(build_metadata_record(&val, &input.metadata(), head).into_pipeline_data())
|
|
}
|
|
None => {
|
|
let mut cols = vec![];
|
|
let mut vals = vec![];
|
|
if let Some(x) = &input.metadata() {
|
|
match x {
|
|
PipelineMetadata {
|
|
data_source: DataSource::Ls,
|
|
} => {
|
|
cols.push("source".into());
|
|
vals.push(Value::string("ls", head))
|
|
}
|
|
PipelineMetadata {
|
|
data_source: DataSource::HtmlThemes,
|
|
} => {
|
|
cols.push("source".into());
|
|
vals.push(Value::string("into html --list", head))
|
|
}
|
|
}
|
|
}
|
|
|
|
Ok(Value::Record {
|
|
cols,
|
|
vals,
|
|
span: head,
|
|
}
|
|
.into_pipeline_data())
|
|
}
|
|
}
|
|
}
|
|
|
|
fn examples(&self) -> Vec<Example> {
|
|
vec![
|
|
Example {
|
|
description: "Get the metadata of a variable",
|
|
example: "let a = 42; metadata $a",
|
|
result: None,
|
|
},
|
|
Example {
|
|
description: "Get the metadata of the input",
|
|
example: "ls | metadata",
|
|
result: None,
|
|
},
|
|
]
|
|
}
|
|
}
|
|
|
|
fn build_metadata_record(arg: &Value, metadata: &Option<PipelineMetadata>, head: Span) -> Value {
|
|
let mut cols = vec![];
|
|
let mut vals = vec![];
|
|
|
|
if let Ok(span) = arg.span() {
|
|
cols.push("span".into());
|
|
vals.push(Value::Record {
|
|
cols: vec!["start".into(), "end".into()],
|
|
vals: vec![
|
|
Value::Int {
|
|
val: span.start as i64,
|
|
span,
|
|
},
|
|
Value::Int {
|
|
val: span.end as i64,
|
|
span,
|
|
},
|
|
],
|
|
span: head,
|
|
});
|
|
}
|
|
|
|
if let Some(x) = &metadata {
|
|
match x {
|
|
PipelineMetadata {
|
|
data_source: DataSource::Ls,
|
|
} => {
|
|
cols.push("source".into());
|
|
vals.push(Value::string("ls", head))
|
|
}
|
|
PipelineMetadata {
|
|
data_source: DataSource::HtmlThemes,
|
|
} => {
|
|
cols.push("source".into());
|
|
vals.push(Value::string("into html --list", head))
|
|
}
|
|
}
|
|
}
|
|
|
|
Value::Record {
|
|
cols,
|
|
vals,
|
|
span: head,
|
|
}
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod test {
|
|
use super::*;
|
|
|
|
#[test]
|
|
fn test_examples() {
|
|
use crate::test_examples;
|
|
|
|
test_examples(Metadata {})
|
|
}
|
|
}
|