mirror of
https://github.com/nushell/nushell.git
synced 2025-03-03 01:42:09 +01:00
64 lines
1.7 KiB
Rust
64 lines
1.7 KiB
Rust
use crate::commands::PerItemCommand;
|
|
use crate::errors::ShellError;
|
|
use crate::parser::hir::SyntaxShape;
|
|
use crate::parser::registry;
|
|
use crate::prelude::*;
|
|
|
|
pub struct Where;
|
|
|
|
impl PerItemCommand for Where {
|
|
fn name(&self) -> &str {
|
|
"where"
|
|
}
|
|
|
|
fn signature(&self) -> registry::Signature {
|
|
Signature::build("where").required(
|
|
"condition",
|
|
SyntaxShape::Block,
|
|
"the condition that must match",
|
|
)
|
|
}
|
|
|
|
fn usage(&self) -> &str {
|
|
"Filter table to match the condition."
|
|
}
|
|
|
|
fn run(
|
|
&self,
|
|
call_info: &CallInfo,
|
|
_registry: ®istry::CommandRegistry,
|
|
_raw_args: &RawCommandArgs,
|
|
input: Tagged<Value>,
|
|
) -> Result<OutputStream, ShellError> {
|
|
let input_clone = input.clone();
|
|
let condition = call_info.args.expect_nth(0)?;
|
|
let stream = match condition {
|
|
Tagged {
|
|
item: Value::Block(block),
|
|
..
|
|
} => {
|
|
let result = block.invoke(&input_clone);
|
|
match result {
|
|
Ok(v) => {
|
|
if v.is_true() {
|
|
VecDeque::from(vec![Ok(ReturnSuccess::Value(input_clone))])
|
|
} else {
|
|
VecDeque::new()
|
|
}
|
|
}
|
|
Err(e) => return Err(e),
|
|
}
|
|
}
|
|
Tagged { tag, .. } => {
|
|
return Err(ShellError::labeled_error(
|
|
"Expected a condition",
|
|
"where needs a condition",
|
|
tag,
|
|
))
|
|
}
|
|
};
|
|
|
|
Ok(stream.to_output_stream())
|
|
}
|
|
}
|