2020-09-19 23:29:51 +02:00
|
|
|
use crate::command_registry::CommandRegistry;
|
2020-04-27 04:04:54 +02:00
|
|
|
use crate::commands::WholeStreamCommand;
|
2020-04-13 09:59:57 +02:00
|
|
|
use crate::evaluate::evaluate_baseline_expr;
|
2019-05-16 04:42:44 +02:00
|
|
|
use crate::prelude::*;
|
Extract core stuff into own crates
This commit extracts five new crates:
- nu-source, which contains the core source-code handling logic in Nu,
including Text, Span, and also the pretty.rs-based debug logic
- nu-parser, which is the parser and expander logic
- nu-protocol, which is the bulk of the types and basic conveniences
used by plugins
- nu-errors, which contains ShellError, ParseError and error handling
conveniences
- nu-textview, which is the textview plugin extracted into a crate
One of the major consequences of this refactor is that it's no longer
possible to `impl X for Spanned<Y>` outside of the `nu-source` crate, so
a lot of types became more concrete (Value became a concrete type
instead of Spanned<Value>, for example).
This also turned a number of inherent methods in the main nu crate into
plain functions (impl Value {} became a bunch of functions in the
`value` namespace in `crate::data::value`).
2019-11-26 03:30:48 +01:00
|
|
|
use nu_errors::ShellError;
|
2020-09-26 01:40:02 +02:00
|
|
|
use nu_protocol::{
|
|
|
|
hir::Block, hir::ClassifiedCommand, ReturnSuccess, Scope, Signature, SyntaxShape,
|
|
|
|
};
|
2019-07-24 00:22:11 +02:00
|
|
|
|
|
|
|
pub struct Where;
|
|
|
|
|
2020-04-27 04:04:54 +02:00
|
|
|
#[derive(Deserialize)]
|
|
|
|
pub struct WhereArgs {
|
|
|
|
block: Block,
|
|
|
|
}
|
|
|
|
|
2020-05-29 10:22:52 +02:00
|
|
|
#[async_trait]
|
2020-04-27 04:04:54 +02:00
|
|
|
impl WholeStreamCommand for Where {
|
2019-07-24 00:22:11 +02:00
|
|
|
fn name(&self) -> &str {
|
|
|
|
"where"
|
|
|
|
}
|
2019-05-28 08:45:18 +02:00
|
|
|
|
Extract core stuff into own crates
This commit extracts five new crates:
- nu-source, which contains the core source-code handling logic in Nu,
including Text, Span, and also the pretty.rs-based debug logic
- nu-parser, which is the parser and expander logic
- nu-protocol, which is the bulk of the types and basic conveniences
used by plugins
- nu-errors, which contains ShellError, ParseError and error handling
conveniences
- nu-textview, which is the textview plugin extracted into a crate
One of the major consequences of this refactor is that it's no longer
possible to `impl X for Spanned<Y>` outside of the `nu-source` crate, so
a lot of types became more concrete (Value became a concrete type
instead of Spanned<Value>, for example).
This also turned a number of inherent methods in the main nu crate into
plain functions (impl Value {} became a bunch of functions in the
`value` namespace in `crate::data::value`).
2019-11-26 03:30:48 +01:00
|
|
|
fn signature(&self) -> Signature {
|
2019-10-28 06:15:35 +01:00
|
|
|
Signature::build("where").required(
|
|
|
|
"condition",
|
2020-04-18 03:50:58 +02:00
|
|
|
SyntaxShape::Math,
|
2019-10-28 06:15:35 +01:00
|
|
|
"the condition that must match",
|
|
|
|
)
|
2019-08-30 00:52:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fn usage(&self) -> &str {
|
|
|
|
"Filter table to match the condition."
|
2019-05-22 09:12:03 +02:00
|
|
|
}
|
2019-07-24 00:22:11 +02:00
|
|
|
|
2020-05-29 10:22:52 +02:00
|
|
|
async fn run(
|
2019-08-02 21:15:07 +02:00
|
|
|
&self,
|
2020-04-27 04:04:54 +02:00
|
|
|
args: CommandArgs,
|
2020-04-13 09:59:57 +02:00
|
|
|
registry: &CommandRegistry,
|
2019-08-24 21:36:19 +02:00
|
|
|
) -> Result<OutputStream, ShellError> {
|
2020-06-13 21:13:36 +02:00
|
|
|
where_command(args, registry).await
|
2020-04-27 04:04:54 +02:00
|
|
|
}
|
2020-05-18 09:11:37 +02:00
|
|
|
|
2020-05-18 17:40:44 +02:00
|
|
|
fn examples(&self) -> Vec<Example> {
|
|
|
|
vec![
|
2020-05-18 09:11:37 +02:00
|
|
|
Example {
|
|
|
|
description: "List all files in the current directory with sizes greater than 2kb",
|
|
|
|
example: "ls | where size > 2kb",
|
2020-05-18 17:40:44 +02:00
|
|
|
result: None,
|
2020-05-18 09:11:37 +02:00
|
|
|
},
|
|
|
|
Example {
|
|
|
|
description: "List only the files in the current directory",
|
|
|
|
example: "ls | where type == File",
|
2020-05-18 17:40:44 +02:00
|
|
|
result: None,
|
2020-05-18 09:11:37 +02:00
|
|
|
},
|
|
|
|
Example {
|
|
|
|
description: "List all files with names that contain \"Car\"",
|
|
|
|
example: "ls | where name =~ \"Car\"",
|
2020-05-18 17:40:44 +02:00
|
|
|
result: None,
|
2020-05-18 09:11:37 +02:00
|
|
|
},
|
|
|
|
Example {
|
|
|
|
description: "List all files that were modified in the last two months",
|
2020-08-15 21:03:28 +02:00
|
|
|
example: "ls | where modified <= 2mon",
|
2020-05-18 17:40:44 +02:00
|
|
|
result: None,
|
2020-05-18 09:11:37 +02:00
|
|
|
},
|
|
|
|
]
|
|
|
|
}
|
2020-04-27 04:04:54 +02:00
|
|
|
}
|
2020-06-13 21:13:36 +02:00
|
|
|
async fn where_command(
|
2020-05-16 05:18:24 +02:00
|
|
|
raw_args: CommandArgs,
|
|
|
|
registry: &CommandRegistry,
|
2020-04-27 04:04:54 +02:00
|
|
|
) -> Result<OutputStream, ShellError> {
|
2020-06-13 21:13:36 +02:00
|
|
|
let registry = Arc::new(registry.clone());
|
2020-09-26 01:40:02 +02:00
|
|
|
let scope = raw_args.call_info.scope.clone();
|
2020-05-27 06:50:26 +02:00
|
|
|
let tag = raw_args.call_info.name_tag.clone();
|
2020-06-13 21:13:36 +02:00
|
|
|
let (WhereArgs { block }, input) = raw_args.process(®istry).await?;
|
|
|
|
let condition = {
|
|
|
|
if block.block.len() != 1 {
|
|
|
|
return Err(ShellError::labeled_error(
|
|
|
|
"Expected a condition",
|
|
|
|
"expected a condition",
|
|
|
|
tag,
|
|
|
|
));
|
|
|
|
}
|
|
|
|
match block.block[0].list.get(0) {
|
|
|
|
Some(item) => match item {
|
|
|
|
ClassifiedCommand::Expr(expr) => expr.clone(),
|
|
|
|
_ => {
|
|
|
|
return Err(ShellError::labeled_error(
|
2020-05-16 05:18:24 +02:00
|
|
|
"Expected a condition",
|
|
|
|
"expected a condition",
|
|
|
|
tag,
|
|
|
|
));
|
|
|
|
}
|
2020-06-13 21:13:36 +02:00
|
|
|
},
|
|
|
|
None => {
|
|
|
|
return Err(ShellError::labeled_error(
|
|
|
|
"Expected a condition",
|
|
|
|
"expected a condition",
|
|
|
|
tag,
|
|
|
|
));
|
2020-05-16 05:18:24 +02:00
|
|
|
}
|
2020-06-13 21:13:36 +02:00
|
|
|
}
|
|
|
|
};
|
2020-04-27 04:04:54 +02:00
|
|
|
|
2020-06-13 21:13:36 +02:00
|
|
|
Ok(input
|
|
|
|
.filter_map(move |input| {
|
|
|
|
let condition = condition.clone();
|
|
|
|
let registry = registry.clone();
|
2020-09-26 01:40:02 +02:00
|
|
|
let scope = Scope::append_it(scope.clone(), input.clone());
|
2020-04-13 09:59:57 +02:00
|
|
|
|
2020-06-13 21:13:36 +02:00
|
|
|
async move {
|
|
|
|
//FIXME: should we use the scope that's brought in as well?
|
2020-09-26 01:40:02 +02:00
|
|
|
let condition = evaluate_baseline_expr(&condition, &*registry, scope).await;
|
2020-04-13 09:59:57 +02:00
|
|
|
|
2020-06-13 21:13:36 +02:00
|
|
|
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)),
|
2020-04-13 09:59:57 +02:00
|
|
|
}
|
2020-06-13 21:13:36 +02:00
|
|
|
}
|
|
|
|
})
|
|
|
|
.to_output_stream())
|
2019-08-02 21:15:07 +02:00
|
|
|
}
|
2020-05-18 14:56:01 +02:00
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::Where;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn examples_work_as_expected() {
|
|
|
|
use crate::examples::test as test_examples;
|
|
|
|
|
|
|
|
test_examples(Where {})
|
|
|
|
}
|
|
|
|
}
|