nushell/crates/nu-cli/src/commands/default.rs

94 lines
2.4 KiB
Rust
Raw Normal View History

2019-11-24 10:20:08 +01:00
use crate::commands::WholeStreamCommand;
use crate::context::CommandRegistry;
2019-11-24 10:20:08 +01:00
use crate::prelude::*;
use nu_errors::ShellError;
use nu_protocol::{ReturnSuccess, Signature, SyntaxShape, UntaggedValue, Value};
use nu_source::Tagged;
2019-12-09 19:52:01 +01:00
use nu_value_ext::ValueExt;
2019-11-24 10:20:08 +01:00
#[derive(Deserialize)]
struct DefaultArgs {
column: Tagged<String>,
value: Value,
2019-11-24 10:20:08 +01:00
}
pub struct Default;
2020-05-29 10:22:52 +02:00
#[async_trait]
2019-11-24 10:20:08 +01:00
impl WholeStreamCommand for Default {
fn name(&self) -> &str {
"default"
}
fn signature(&self) -> Signature {
Signature::build("default")
.required("column name", SyntaxShape::String, "the name of the column")
.required(
"column value",
SyntaxShape::Any,
"the value of the column to default",
)
}
fn usage(&self) -> &str {
"Sets a default row's column if missing."
}
2020-05-29 10:22:52 +02:00
async fn run(
2019-11-24 10:20:08 +01:00
&self,
args: CommandArgs,
registry: &CommandRegistry,
) -> Result<OutputStream, ShellError> {
default(args, registry).await
2019-11-24 10:20:08 +01:00
}
2020-05-12 07:17:17 +02:00
fn examples(&self) -> Vec<Example> {
vec![Example {
2020-05-12 07:17:17 +02:00
description: "Give a default 'target' to all file entries",
example: "ls -af | default target 'nothing'",
result: None,
2020-05-12 07:17:17 +02:00
}]
}
2019-11-24 10:20:08 +01:00
}
async fn default(
args: CommandArgs,
registry: &CommandRegistry,
) -> Result<OutputStream, ShellError> {
let registry = registry.clone();
let (DefaultArgs { column, value }, input) = args.process(&registry).await?;
Ok(input
.map(move |item| {
2019-11-24 10:20:08 +01:00
let should_add = match item {
Value {
value: UntaggedValue::Row(ref r),
2019-11-24 10:20:08 +01:00
..
} => r.get_data(&column.item).borrow().is_none(),
_ => false,
};
if should_add {
match item.insert_data_at_path(&column.item, value.clone()) {
Some(new_value) => ReturnSuccess::value(new_value),
None => ReturnSuccess::value(item),
2019-11-24 10:20:08 +01:00
}
} else {
ReturnSuccess::value(item)
2019-11-24 10:20:08 +01:00
}
})
.to_output_stream())
2019-11-24 10:20:08 +01:00
}
#[cfg(test)]
mod tests {
use super::Default;
#[test]
fn examples_work_as_expected() {
use crate::examples::test as test_examples;
test_examples(Default {})
}
}