use crate::commands::WholeStreamCommand; use crate::context::CommandRegistry; use crate::prelude::*; use nu_errors::ShellError; use nu_protocol::{ReturnSuccess, Signature, SyntaxShape, UntaggedValue, Value}; #[derive(Deserialize)] struct AppendArgs { row: Value, } pub struct Append; #[async_trait] impl WholeStreamCommand for Append { 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" } async fn run( &self, args: CommandArgs, registry: &CommandRegistry, ) -> Result { append(args, registry) } fn examples(&self) -> Vec { vec![Example { 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(), ]), }] } } fn append(args: CommandArgs, registry: &CommandRegistry) -> Result { let registry = registry.clone(); let stream = async_stream! { let (AppendArgs { row }, mut input) = args.process(®istry).await?; while let Some(item) = input.next().await { yield ReturnSuccess::value(item); } yield ReturnSuccess::value(row); }; Ok(stream.to_output_stream()) } #[cfg(test)] mod tests { use super::Append; #[test] fn examples_work_as_expected() { use crate::examples::test as test_examples; test_examples(Append {}) } }