mirror of
https://github.com/nushell/nushell.git
synced 2024-12-13 10:41:52 +01:00
d06f457b2a
* move commands, futures.rs, script.rs, utils * move over maybe_print_errors * add nu_command crate references to nu_cli * in commands.rs open up to pub mod from pub(crate) * nu-cli, nu-command, and nu tests are now passing * cargo fmt * clean up nu-cli/src/prelude.rs * code cleanup * for some reason lex.rs was not formatted, may be causing my error * remove mod completion from lib.rs which was not being used along with quickcheck macros * add in allow unused imports * comment out one failing external test; comment out one failing internal test * revert commenting out failing tests; something else might be going on; someone with a windows machine should check and see what is going on with these failing windows tests * Update Cargo.toml Extend the optional features to nu-command Co-authored-by: Jonathan Turner <jonathandturner@users.noreply.github.com>
140 lines
4.1 KiB
Rust
140 lines
4.1 KiB
Rust
use crate::prelude::*;
|
|
use nu_engine::evaluate_baseline_expr;
|
|
use nu_engine::WholeStreamCommand;
|
|
use nu_errors::ShellError;
|
|
use nu_protocol::{
|
|
hir::CapturedBlock, hir::ClassifiedCommand, ReturnSuccess, Signature, SyntaxShape,
|
|
};
|
|
|
|
pub struct Where;
|
|
|
|
#[derive(Deserialize)]
|
|
pub struct WhereArgs {
|
|
block: CapturedBlock,
|
|
}
|
|
|
|
#[async_trait]
|
|
impl WholeStreamCommand for Where {
|
|
fn name(&self) -> &str {
|
|
"where"
|
|
}
|
|
|
|
fn signature(&self) -> Signature {
|
|
Signature::build("where").required(
|
|
"condition",
|
|
SyntaxShape::RowCondition,
|
|
"the condition that must match",
|
|
)
|
|
}
|
|
|
|
fn usage(&self) -> &str {
|
|
"Filter table to match the condition."
|
|
}
|
|
|
|
async fn run(&self, args: CommandArgs) -> Result<OutputStream, ShellError> {
|
|
where_command(args).await
|
|
}
|
|
|
|
fn examples(&self) -> Vec<Example> {
|
|
vec![
|
|
Example {
|
|
description: "List all files in the current directory with sizes greater than 2kb",
|
|
example: "ls | where size > 2kb",
|
|
result: None,
|
|
},
|
|
Example {
|
|
description: "List only the files in the current directory",
|
|
example: "ls | where type == File",
|
|
result: None,
|
|
},
|
|
Example {
|
|
description: "List all files with names that contain \"Car\"",
|
|
example: "ls | where name =~ \"Car\"",
|
|
result: None,
|
|
},
|
|
Example {
|
|
description: "List all files that were modified in the last two months",
|
|
example: "ls | where modified <= 2mon",
|
|
result: None,
|
|
},
|
|
]
|
|
}
|
|
}
|
|
async fn where_command(raw_args: CommandArgs) -> Result<OutputStream, ShellError> {
|
|
let ctx = Arc::new(EvaluationContext::from_raw(&raw_args));
|
|
let tag = raw_args.call_info.name_tag.clone();
|
|
let (WhereArgs { block }, input) = raw_args.process().await?;
|
|
let condition = {
|
|
if block.block.block.len() != 1 {
|
|
return Err(ShellError::labeled_error(
|
|
"Expected a condition",
|
|
"expected a condition",
|
|
tag,
|
|
));
|
|
}
|
|
match block.block.block[0].pipelines.get(0) {
|
|
Some(item) => match item.list.get(0) {
|
|
Some(ClassifiedCommand::Expr(expr)) => expr.clone(),
|
|
_ => {
|
|
return Err(ShellError::labeled_error(
|
|
"Expected a condition",
|
|
"expected a condition",
|
|
tag,
|
|
));
|
|
}
|
|
},
|
|
None => {
|
|
return Err(ShellError::labeled_error(
|
|
"Expected a condition",
|
|
"expected a condition",
|
|
tag,
|
|
));
|
|
}
|
|
}
|
|
};
|
|
|
|
Ok(input
|
|
.filter_map(move |input| {
|
|
let condition = condition.clone();
|
|
let ctx = ctx.clone();
|
|
|
|
ctx.scope.enter_scope();
|
|
ctx.scope.add_vars(&block.captured.entries);
|
|
ctx.scope.add_var("$it", input.clone());
|
|
|
|
async move {
|
|
//FIXME: should we use the scope that's brought in as well?
|
|
let condition = evaluate_baseline_expr(&condition, &*ctx).await;
|
|
ctx.scope.exit_scope();
|
|
|
|
match condition {
|
|
Ok(condition) => match condition.as_bool() {
|
|
Ok(b) => {
|
|
if b {
|
|
Some(Ok(ReturnSuccess::Value(input)))
|
|
} else {
|
|
None
|
|
}
|
|
}
|
|
Err(e) => Some(Err(e)),
|
|
},
|
|
Err(e) => Some(Err(e)),
|
|
}
|
|
}
|
|
})
|
|
.to_output_stream())
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::ShellError;
|
|
use super::Where;
|
|
|
|
#[test]
|
|
fn examples_work_as_expected() -> Result<(), ShellError> {
|
|
use crate::examples::test as test_examples;
|
|
|
|
Ok(test_examples(Where {})?)
|
|
}
|
|
}
|