mirror of
https://github.com/nushell/nushell
synced 2025-01-10 12:19:14 +00:00
8bd3cedce1
* First step in it-expansion * Fix tests * fix clippy warnings
63 lines
1.7 KiB
Rust
63 lines
1.7 KiB
Rust
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<String>,
|
|
pub args: Vec<Value>,
|
|
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<OutputStream, ShellError> {
|
|
args.process(registry, alias)?.run()
|
|
}
|
|
}
|
|
|
|
pub fn alias(
|
|
AliasArgs {
|
|
name,
|
|
args: list,
|
|
block,
|
|
}: AliasArgs,
|
|
_: RunnableContext,
|
|
) -> Result<OutputStream, ShellError> {
|
|
let stream = async_stream! {
|
|
let mut args: Vec<String> = 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())
|
|
}
|