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

64 lines
1.6 KiB
Rust
Raw Normal View History

use crate::command_registry::CommandRegistry;
2019-10-30 07:54:06 +01:00
use crate::commands::WholeStreamCommand;
use crate::prelude::*;
use nu_errors::ShellError;
use nu_protocol::{ReturnSuccess, Signature, SyntaxShape, UntaggedValue, Value};
2019-10-30 07:54:06 +01:00
#[derive(Deserialize)]
struct Arguments {
row: Value,
2019-10-30 07:54:06 +01:00
}
pub struct Command;
2019-10-30 07:54:06 +01:00
2020-05-29 10:22:52 +02:00
#[async_trait]
impl WholeStreamCommand for Command {
2019-10-30 07:54:06 +01:00
fn name(&self) -> &str {
"append"
}
fn signature(&self) -> Signature {
Signature::build("append").required(
"row value",
SyntaxShape::Any,
"the value of the row to append to the table",
)
}
fn usage(&self) -> &str {
"Append the given row to the table"
}
2020-05-29 10:22:52 +02:00
async fn run(
2019-10-30 07:54:06 +01:00
&self,
args: CommandArgs,
registry: &CommandRegistry,
) -> Result<OutputStream, ShellError> {
let (Arguments { mut row }, input) = args.process(registry).await?;
let input: Vec<Value> = input.collect().await;
if let Some(first) = input.get(0) {
row.tag = first.tag();
}
Ok(
futures::stream::iter(input.into_iter().chain(vec![row]).map(ReturnSuccess::value))
.to_output_stream(),
)
2019-10-30 07:54:06 +01:00
}
2020-05-12 03:00:55 +02:00
fn examples(&self) -> Vec<Example> {
vec![Example {
2020-05-12 03:00:55 +02:00
description: "Add something to the end of a list or table",
example: "echo [1 2 3] | append 4",
result: Some(vec![
UntaggedValue::int(1).into(),
UntaggedValue::int(2).into(),
UntaggedValue::int(3).into(),
UntaggedValue::int(4).into(),
]),
2020-05-12 03:00:55 +02:00
}]
}
2019-10-30 07:54:06 +01:00
}