mirror of
https://github.com/nushell/nushell.git
synced 2024-12-12 18:20:55 +01:00
076fde16dd
* WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * Finish adding the baseline refactors for argument invocation * Finish cleanup and add test * Add missing plugin references
112 lines
3.6 KiB
Rust
112 lines
3.6 KiB
Rust
use crate::commands::WholeStreamCommand;
|
|
use crate::evaluate::evaluate_baseline_expr;
|
|
use crate::prelude::*;
|
|
use log::trace;
|
|
use nu_errors::ShellError;
|
|
use nu_protocol::{
|
|
hir::ClassifiedCommand, ReturnSuccess, Signature, SyntaxShape, UntaggedValue, Value,
|
|
};
|
|
|
|
pub struct KeepWhile;
|
|
|
|
impl WholeStreamCommand for KeepWhile {
|
|
fn name(&self) -> &str {
|
|
"keep-while"
|
|
}
|
|
|
|
fn signature(&self) -> Signature {
|
|
Signature::build("keep-while")
|
|
.required(
|
|
"condition",
|
|
SyntaxShape::Math,
|
|
"the condition that must be met to keep rows",
|
|
)
|
|
.filter()
|
|
}
|
|
|
|
fn usage(&self) -> &str {
|
|
"Keeps rows while the condition matches."
|
|
}
|
|
|
|
fn run(
|
|
&self,
|
|
args: CommandArgs,
|
|
registry: &CommandRegistry,
|
|
) -> Result<OutputStream, ShellError> {
|
|
let registry = registry.clone();
|
|
let scope = args.call_info.scope.clone();
|
|
let stream = async_stream! {
|
|
let mut call_info = args.evaluate_once(®istry).await?;
|
|
|
|
let block = call_info.args.expect_nth(0)?.clone();
|
|
|
|
let condition = match block {
|
|
Value {
|
|
value: UntaggedValue::Block(block),
|
|
tag,
|
|
} => {
|
|
if block.block.len() != 1 {
|
|
yield Err(ShellError::labeled_error(
|
|
"Expected a condition",
|
|
"expected a condition",
|
|
tag,
|
|
));
|
|
return;
|
|
}
|
|
match block.block[0].list.get(0) {
|
|
Some(item) => match item {
|
|
ClassifiedCommand::Expr(expr) => expr.clone(),
|
|
_ => {
|
|
yield Err(ShellError::labeled_error(
|
|
"Expected a condition",
|
|
"expected a condition",
|
|
tag,
|
|
));
|
|
return;
|
|
}
|
|
},
|
|
None => {
|
|
yield Err(ShellError::labeled_error(
|
|
"Expected a condition",
|
|
"expected a condition",
|
|
tag,
|
|
));
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
Value { tag, .. } => {
|
|
yield Err(ShellError::labeled_error(
|
|
"Expected a condition",
|
|
"expected a condition",
|
|
tag,
|
|
));
|
|
return;
|
|
}
|
|
};
|
|
|
|
while let Some(item) = call_info.input.next().await {
|
|
let condition = condition.clone();
|
|
trace!("ITEM = {:?}", item);
|
|
let result =
|
|
evaluate_baseline_expr(&*condition, ®istry, &scope.clone().set_it(item.clone()))
|
|
.await;
|
|
trace!("RESULT = {:?}", result);
|
|
|
|
let return_value = match result {
|
|
Ok(ref v) if v.is_true() => true,
|
|
_ => false,
|
|
};
|
|
|
|
if return_value {
|
|
yield ReturnSuccess::value(item);
|
|
} else {
|
|
break;
|
|
}
|
|
}
|
|
};
|
|
|
|
Ok(stream.to_output_stream())
|
|
}
|
|
}
|