2020-04-15 07:43:23 +02:00
|
|
|
use crate::commands::classified::pipeline::run_pipeline;
|
|
|
|
use crate::prelude::*;
|
|
|
|
|
|
|
|
use derive_new::new;
|
|
|
|
use nu_errors::ShellError;
|
|
|
|
use nu_protocol::{
|
|
|
|
hir::ClassifiedPipeline, hir::Commands, CallInfo, ReturnSuccess, Scope, Signature, SyntaxShape,
|
|
|
|
Value,
|
|
|
|
};
|
|
|
|
|
|
|
|
#[derive(new)]
|
|
|
|
pub struct AliasCommand {
|
|
|
|
name: String,
|
|
|
|
args: Vec<String>,
|
|
|
|
block: Commands,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl PerItemCommand for AliasCommand {
|
|
|
|
fn name(&self) -> &str {
|
|
|
|
&self.name
|
|
|
|
}
|
|
|
|
|
|
|
|
fn signature(&self) -> Signature {
|
|
|
|
let mut alias = Signature::build(&self.name);
|
|
|
|
|
|
|
|
for arg in &self.args {
|
|
|
|
alias = alias.required(arg, SyntaxShape::Any, "");
|
|
|
|
}
|
|
|
|
|
|
|
|
alias
|
|
|
|
}
|
|
|
|
|
|
|
|
fn usage(&self) -> &str {
|
|
|
|
""
|
|
|
|
}
|
|
|
|
|
|
|
|
fn run(
|
|
|
|
&self,
|
|
|
|
call_info: &CallInfo,
|
|
|
|
registry: &CommandRegistry,
|
|
|
|
raw_args: &RawCommandArgs,
|
|
|
|
input: Value,
|
|
|
|
) -> Result<OutputStream, ShellError> {
|
|
|
|
let tag = call_info.name_tag.clone();
|
|
|
|
let call_info = call_info.clone();
|
|
|
|
let registry = registry.clone();
|
|
|
|
let raw_args = raw_args.clone();
|
|
|
|
let block = self.block.clone();
|
|
|
|
|
2020-04-16 06:25:24 +02:00
|
|
|
let mut scope = Scope::it_value(input.clone());
|
2020-04-15 07:43:23 +02:00
|
|
|
if let Some(positional) = &call_info.args.positional {
|
|
|
|
for (pos, arg) in positional.iter().enumerate() {
|
|
|
|
scope = scope.set_var(self.args[pos].to_string(), arg.clone());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let stream = async_stream! {
|
|
|
|
let mut context = Context::from_raw(&raw_args, ®istry);
|
|
|
|
let input_stream = async_stream! {
|
|
|
|
yield Ok(input.clone())
|
|
|
|
}.to_input_stream();
|
|
|
|
|
|
|
|
let result = run_pipeline(
|
|
|
|
ClassifiedPipeline::new(block.clone(), None),
|
|
|
|
&mut context,
|
|
|
|
Some(input_stream),
|
|
|
|
&scope
|
|
|
|
).await;
|
|
|
|
|
|
|
|
match result {
|
|
|
|
Ok(Some(v)) => {
|
|
|
|
let results: Vec<Value> = v.collect().await;
|
2020-04-16 06:25:24 +02:00
|
|
|
let errors = context.get_errors();
|
|
|
|
if let Some(error) = errors.first() {
|
|
|
|
yield Err(error.clone());
|
|
|
|
return;
|
|
|
|
}
|
2020-04-15 07:43:23 +02:00
|
|
|
|
|
|
|
for result in results {
|
|
|
|
yield Ok(ReturnSuccess::Value(result));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Ok(None) => {
|
|
|
|
yield Err(ShellError::labeled_error(
|
|
|
|
"Expected a block",
|
|
|
|
"each needs a block",
|
|
|
|
tag,
|
|
|
|
));
|
|
|
|
}
|
|
|
|
Err(e) => {
|
|
|
|
yield Err(e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
Ok(stream.to_output_stream())
|
|
|
|
}
|
|
|
|
}
|