2019-08-19 07:16:39 +02:00
|
|
|
use crate::commands::WholeStreamCommand;
|
2019-07-24 00:22:11 +02:00
|
|
|
use crate::context::CommandRegistry;
|
2019-09-05 18:23:42 +02:00
|
|
|
use crate::data::base::select_fields;
|
2019-09-11 16:36:50 +02:00
|
|
|
use crate::errors::ShellError;
|
2019-05-15 20:14:51 +02:00
|
|
|
use crate::prelude::*;
|
2019-11-21 15:33:14 +01:00
|
|
|
use nu_source::Tagged;
|
2019-05-15 20:14:51 +02:00
|
|
|
|
2019-08-20 05:15:05 +02:00
|
|
|
#[derive(Deserialize)]
|
|
|
|
struct PickArgs {
|
|
|
|
rest: Vec<Tagged<String>>,
|
|
|
|
}
|
|
|
|
|
2019-08-19 07:16:39 +02:00
|
|
|
pub struct Pick;
|
|
|
|
|
|
|
|
impl WholeStreamCommand for Pick {
|
|
|
|
fn name(&self) -> &str {
|
|
|
|
"pick"
|
|
|
|
}
|
2019-07-24 00:22:11 +02:00
|
|
|
|
2019-08-19 07:16:39 +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
|
|
|
|
2019-08-30 00:52:32 +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()
|
|
|
|
}
|
2019-08-19 07:16:39 +02:00
|
|
|
}
|
|
|
|
|
2019-08-20 05:15:05 +02:00
|
|
|
fn pick(
|
|
|
|
PickArgs { rest: fields }: PickArgs,
|
2019-08-20 08:11:11 +02:00
|
|
|
RunnableContext { input, name, .. }: RunnableContext,
|
2019-08-20 05:15:05 +02:00
|
|
|
) -> Result<OutputStream, ShellError> {
|
2019-08-20 08:11:11 +02:00
|
|
|
if fields.len() == 0 {
|
|
|
|
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,
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
2019-08-20 05:15:05 +02:00
|
|
|
let fields: Vec<_> = fields.iter().map(|f| f.item.clone()).collect();
|
2019-05-15 20:14:51 +02:00
|
|
|
|
2019-07-08 18:44:53 +02:00
|
|
|
let objects = input
|
2019-07-03 22:31:15 +02:00
|
|
|
.values
|
2019-11-21 15:33:14 +01:00
|
|
|
.map(move |value| select_fields(&value, &fields, value.tag.clone()));
|
2019-05-15 20:14:51 +02:00
|
|
|
|
2019-07-03 22:31:15 +02:00
|
|
|
Ok(objects.from_input_stream())
|
2019-05-15 20:14:51 +02:00
|
|
|
}
|