use crate::commands::WholeStreamCommand; use crate::context::CommandRegistry; use crate::prelude::*; use nu_errors::ShellError; use nu_protocol::{hir::Block, CommandAction, ReturnSuccess, Signature, SyntaxShape, Value}; use nu_source::Tagged; pub struct Alias; #[derive(Deserialize)] pub struct AliasArgs { pub name: Tagged, pub args: Vec, pub block: Block, } impl WholeStreamCommand for Alias { fn name(&self) -> &str { "alias" } fn signature(&self) -> Signature { Signature::build("alias") .required("name", SyntaxShape::String, "the name of the alias") .required("args", SyntaxShape::Table, "the arguments to the alias") .required("block", SyntaxShape::Block, "the block to run on each row") } fn usage(&self) -> &str { "Run a block on each row of the table." } fn run( &self, args: CommandArgs, registry: &CommandRegistry, ) -> Result { args.process(registry, alias)?.run() } } pub fn alias( AliasArgs { name, args: list, block, }: AliasArgs, _: RunnableContext, ) -> Result { let stream = async_stream! { let mut args: Vec = vec![]; for item in list.iter() { if let Ok(string) = item.as_string() { args.push(format!("${}", string)); } else { yield Err(ShellError::labeled_error("Expected a string", "expected a string", item.tag())); } } yield ReturnSuccess::action(CommandAction::AddAlias(name.to_string(), args, block.clone())) }; Ok(stream.to_output_stream()) }