mirror of
https://github.com/nushell/nushell
synced 2024-12-29 06:23:11 +00:00
Move any to enginep style (#3324)
This commit is contained in:
parent
3ad4e0348f
commit
5c2199e7f4
2 changed files with 56 additions and 50 deletions
|
@ -8,9 +8,8 @@ use nu_protocol::{
|
||||||
|
|
||||||
pub struct Command;
|
pub struct Command;
|
||||||
|
|
||||||
#[derive(Deserialize)]
|
struct AnyArgs {
|
||||||
pub struct Arguments {
|
predicate: CapturedBlock,
|
||||||
block: CapturedBlock,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
impl WholeStreamCommand for Command {
|
impl WholeStreamCommand for Command {
|
||||||
|
@ -30,7 +29,7 @@ impl WholeStreamCommand for Command {
|
||||||
"Find if the table rows matches the condition."
|
"Find if the table rows matches the condition."
|
||||||
}
|
}
|
||||||
|
|
||||||
fn run_with_actions(&self, args: CommandArgs) -> Result<ActionStream, ShellError> {
|
fn run(&self, args: CommandArgs) -> Result<OutputStream, ShellError> {
|
||||||
any(args)
|
any(args)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -52,56 +51,58 @@ impl WholeStreamCommand for Command {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fn any(args: CommandArgs) -> Result<ActionStream, ShellError> {
|
fn any(args: CommandArgs) -> Result<OutputStream, ShellError> {
|
||||||
let ctx = Arc::new(EvaluationContext::from_args(&args));
|
let ctx = EvaluationContext::from_args(&args);
|
||||||
let tag = args.call_info.name_tag.clone();
|
let tag = args.call_info.name_tag.clone();
|
||||||
let (Arguments { block }, input) = args.process()?;
|
let args = args.evaluate_once()?;
|
||||||
|
let any_args = AnyArgs {
|
||||||
|
predicate: args.req(0)?,
|
||||||
|
};
|
||||||
|
|
||||||
let condition = {
|
let err = Err(ShellError::labeled_error(
|
||||||
if block.block.block.len() != 1 {
|
|
||||||
return Err(ShellError::labeled_error(
|
|
||||||
"Expected a condition",
|
"Expected a condition",
|
||||||
"expected a condition",
|
"expected a condition",
|
||||||
tag,
|
args.call_info.name_tag.clone(),
|
||||||
));
|
));
|
||||||
|
|
||||||
|
//This seems a little odd. Can't we have predicates with pipelines/multiple statements?
|
||||||
|
let condition = {
|
||||||
|
if any_args.predicate.block.block.len() != 1 {
|
||||||
|
return err;
|
||||||
}
|
}
|
||||||
match block.block.block[0].pipelines.get(0) {
|
match any_args.predicate.block.block[0].pipelines.get(0) {
|
||||||
Some(item) => match item.list.get(0) {
|
Some(item) => match item.list.get(0) {
|
||||||
Some(ClassifiedCommand::Expr(expr)) => expr.clone(),
|
Some(ClassifiedCommand::Expr(expr)) => expr.clone(),
|
||||||
_ => {
|
_ => {
|
||||||
return Err(ShellError::labeled_error(
|
return err;
|
||||||
"Expected a condition",
|
|
||||||
"expected a condition",
|
|
||||||
tag,
|
|
||||||
));
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
None => {
|
None => {
|
||||||
return Err(ShellError::labeled_error(
|
return err;
|
||||||
"Expected a condition",
|
|
||||||
"expected a condition",
|
|
||||||
tag,
|
|
||||||
));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
let cond = Ok(InputStream::one(
|
let scope = args.scope.clone();
|
||||||
|
|
||||||
|
let init = Ok(InputStream::one(
|
||||||
UntaggedValue::boolean(false).into_value(&tag),
|
UntaggedValue::boolean(false).into_value(&tag),
|
||||||
));
|
));
|
||||||
|
|
||||||
Ok(input
|
// Variables in nu are immutable. Having the same variable accross invocations
|
||||||
.fold(cond, move |cond, row| {
|
// of evaluate_baseline_expr does not mutate the variables and thus each
|
||||||
|
// invocations are independent of each other!
|
||||||
|
scope.enter_scope();
|
||||||
|
scope.add_vars(&any_args.predicate.captured.entries);
|
||||||
|
|
||||||
|
let result = args.input.fold(init, move |acc, row| {
|
||||||
let condition = condition.clone();
|
let condition = condition.clone();
|
||||||
let ctx = ctx.clone();
|
let ctx = ctx.clone();
|
||||||
ctx.scope.enter_scope();
|
|
||||||
ctx.scope.add_vars(&block.captured.entries);
|
|
||||||
ctx.scope.add_var("$it", row);
|
ctx.scope.add_var("$it", row);
|
||||||
|
|
||||||
let condition = evaluate_baseline_expr(&condition, &*ctx);
|
let condition = evaluate_baseline_expr(&condition, &ctx);
|
||||||
ctx.scope.exit_scope();
|
|
||||||
|
|
||||||
let curr = cond?.drain_vec();
|
let curr = acc?.drain_vec();
|
||||||
let curr = curr
|
let curr = curr
|
||||||
.get(0)
|
.get(0)
|
||||||
.ok_or_else(|| ShellError::unexpected("No value to check with"))?;
|
.ok_or_else(|| ShellError::unexpected("No value to check with"))?;
|
||||||
|
@ -116,8 +117,10 @@ fn any(args: CommandArgs) -> Result<ActionStream, ShellError> {
|
||||||
},
|
},
|
||||||
Err(e) => Err(e),
|
Err(e) => Err(e),
|
||||||
}
|
}
|
||||||
})?
|
});
|
||||||
.to_action_stream())
|
scope.exit_scope();
|
||||||
|
|
||||||
|
Ok(result?.to_output_stream())
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
|
|
|
@ -16,7 +16,8 @@ use nu_protocol::{ShellTypeName, Value};
|
||||||
use nu_source::AnchorLocation;
|
use nu_source::AnchorLocation;
|
||||||
|
|
||||||
use crate::commands::{
|
use crate::commands::{
|
||||||
Append, BuildString, Each, Echo, First, Get, Keep, Last, Let, Nth, Select, StrCollect, Wrap,
|
Append, BuildString, Each, Echo, First, Get, Keep, Last, Let, Math, MathMode, Nth, Select,
|
||||||
|
StrCollect, Wrap,
|
||||||
};
|
};
|
||||||
use nu_engine::{run_block, whole_stream_command, Command, EvaluationContext, WholeStreamCommand};
|
use nu_engine::{run_block, whole_stream_command, Command, EvaluationContext, WholeStreamCommand};
|
||||||
use nu_stream::InputStream;
|
use nu_stream::InputStream;
|
||||||
|
@ -93,6 +94,8 @@ pub fn test(cmd: impl WholeStreamCommand + 'static) -> Result<(), ShellError> {
|
||||||
let base_context = basic_evaluation_context()?;
|
let base_context = basic_evaluation_context()?;
|
||||||
|
|
||||||
base_context.add_commands(vec![
|
base_context.add_commands(vec![
|
||||||
|
whole_stream_command(Math),
|
||||||
|
whole_stream_command(MathMode {}),
|
||||||
whole_stream_command(Echo {}),
|
whole_stream_command(Echo {}),
|
||||||
whole_stream_command(BuildString {}),
|
whole_stream_command(BuildString {}),
|
||||||
whole_stream_command(Get {}),
|
whole_stream_command(Get {}),
|
||||||
|
|
Loading…
Reference in a new issue