nushell/src/commands/pick.rs

83 lines
2.2 KiB
Rust
Raw Normal View History

use crate::commands::WholeStreamCommand;
2019-07-24 00:22:11 +02:00
use crate::context::CommandRegistry;
use crate::data::base::select_fields;
use crate::prelude::*;
use futures_util::pin_mut;
use nu_errors::ShellError;
use nu_protocol::{Primitive, ReturnSuccess, ReturnValue, Signature, SyntaxShape, UntaggedValue};
use nu_source::Tagged;
#[derive(Deserialize)]
struct PickArgs {
rest: Vec<Tagged<String>>,
}
pub struct Pick;
impl WholeStreamCommand for Pick {
fn name(&self) -> &str {
"pick"
}
2019-07-24 00:22:11 +02:00
fn signature(&self) -> Signature {
2019-10-28 06:15:35 +01:00
Signature::build("pick").rest(SyntaxShape::Any, "the columns to select from the table")
2019-05-22 09:12:03 +02:00
}
2019-08-21 14:08:23 +02:00
fn usage(&self) -> &str {
"Down-select table to only these columns."
}
2019-08-21 14:08:23 +02:00
fn run(
&self,
args: CommandArgs,
registry: &CommandRegistry,
) -> Result<OutputStream, ShellError> {
args.process(registry, pick)?.run()
}
}
fn pick(
PickArgs { rest: fields }: PickArgs,
2019-08-20 08:11:11 +02:00
RunnableContext { input, name, .. }: RunnableContext,
) -> Result<OutputStream, ShellError> {
if fields.is_empty() {
2019-08-20 08:11:11 +02:00
return Err(ShellError::labeled_error(
2019-08-23 22:31:14 +02:00
"Pick requires columns to pick",
2019-08-20 08:11:11 +02:00
"needs parameter",
name,
));
}
let fields: Vec<_> = fields.iter().map(|f| f.item.clone()).collect();
let stream = async_stream! {
let values = input.values;
pin_mut!(values);
let mut empty = true;
while let Some(value) = values.next().await {
let new_value = select_fields(&value, &fields, value.tag.clone());
if let UntaggedValue::Row(dict) = &new_value.value {
if dict
.entries
.values()
.any(|v| v.value != UntaggedValue::Primitive(Primitive::Nothing))
{
empty = false;
yield ReturnSuccess::value(new_value);
}
}
}
if empty {
yield Err(ShellError::labeled_error("None of the columns were found in the input", "could not find columns given", name));
}
};
let stream: BoxStream<'static, ReturnValue> = stream.boxed();
Ok(stream.to_output_stream())
}