mirror of
https://github.com/nushell/nushell.git
synced 2024-12-12 18:20:55 +01:00
076fde16dd
* WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * Finish adding the baseline refactors for argument invocation * Finish cleanup and add test * Add missing plugin references
79 lines
2.2 KiB
Rust
79 lines
2.2 KiB
Rust
use crate::commands::WholeStreamCommand;
|
|
use crate::context::CommandRegistry;
|
|
use crate::prelude::*;
|
|
use nu_errors::ShellError;
|
|
use nu_protocol::{ReturnSuccess, Signature, SyntaxShape, UntaggedValue, Value};
|
|
use nu_source::Tagged;
|
|
use nu_value_ext::ValueExt;
|
|
|
|
#[derive(Deserialize)]
|
|
struct DefaultArgs {
|
|
column: Tagged<String>,
|
|
value: Value,
|
|
}
|
|
|
|
pub struct Default;
|
|
|
|
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."
|
|
}
|
|
|
|
fn run(
|
|
&self,
|
|
args: CommandArgs,
|
|
registry: &CommandRegistry,
|
|
) -> Result<OutputStream, ShellError> {
|
|
default(args, registry)
|
|
}
|
|
|
|
fn examples(&self) -> &[Example] {
|
|
&[Example {
|
|
description: "Give a default 'target' to all file entries",
|
|
example: "ls -af | default target 'nothing'",
|
|
}]
|
|
}
|
|
}
|
|
|
|
fn default(args: CommandArgs, registry: &CommandRegistry) -> Result<OutputStream, ShellError> {
|
|
let registry = registry.clone();
|
|
let stream = async_stream! {
|
|
let (DefaultArgs { column, value }, mut input) = args.process(®istry).await?;
|
|
while let Some(item) = input.next().await {
|
|
let should_add = match item {
|
|
Value {
|
|
value: UntaggedValue::Row(ref r),
|
|
..
|
|
} => 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) => yield ReturnSuccess::value(new_value),
|
|
None => yield ReturnSuccess::value(item),
|
|
}
|
|
} else {
|
|
yield ReturnSuccess::value(item);
|
|
}
|
|
|
|
}
|
|
};
|
|
|
|
Ok(stream.to_output_stream())
|
|
}
|