nushell/src/commands/where_.rs

31 lines
917 B
Rust
Raw Normal View History

2019-05-16 04:42:44 +02:00
use crate::errors::ShellError;
use crate::object::base::find;
use crate::prelude::*;
pub fn r#where(args: CommandArgs) -> Result<OutputStream, ShellError> {
2019-05-22 09:12:03 +02:00
if args.args.is_empty() {
return Err(ShellError::string("select requires a field"));
}
2019-05-16 04:42:44 +02:00
2019-05-22 09:12:03 +02:00
let field: Result<String, _> = args.args[0].as_string();
let field = field?;
let input = args.input;
let operator = args.args[1].copy();
2019-05-16 04:42:44 +02:00
match operator {
Value::Primitive(Primitive::Operator(operator)) => {
let right = args.args[2].copy();
2019-05-16 04:42:44 +02:00
let objects = input
.filter(move |item| futures::future::ready(find(&item, &field, &operator, &right)))
.map(|item| ReturnValue::Value(item.copy()));
Ok(objects.boxed())
2019-05-22 09:12:03 +02:00
}
x => {
2019-05-22 09:12:03 +02:00
println!("{:?}", x);
Err(ShellError::string("expected a comparison operator"))
}
2019-05-16 04:42:44 +02:00
}
}