mirror of
https://github.com/nushell/nushell.git
synced 2025-07-28 07:29:18 +02:00
with the `help` command to explore and list all commands available. Enter will also try to see if the location to be entered is an existing Nu command, if it is it will let you inspect the command under `help`. This provides baseline needed so we can iterate on it.
56 lines
1.3 KiB
Rust
56 lines
1.3 KiB
Rust
use crate::commands::WholeStreamCommand;
|
|
use crate::context::CommandRegistry;
|
|
use crate::errors::ShellError;
|
|
use crate::object::base::select_fields;
|
|
use crate::prelude::*;
|
|
|
|
#[derive(Deserialize)]
|
|
struct PickArgs {
|
|
rest: Vec<Tagged<String>>,
|
|
}
|
|
|
|
pub struct Pick;
|
|
|
|
impl WholeStreamCommand for Pick {
|
|
fn name(&self) -> &str {
|
|
"pick"
|
|
}
|
|
|
|
fn signature(&self) -> Signature {
|
|
Signature::build("pick").rest(SyntaxType::Any)
|
|
}
|
|
|
|
fn usage(&self) -> &str {
|
|
"Down-select table to only these columns."
|
|
}
|
|
|
|
fn run(
|
|
&self,
|
|
args: CommandArgs,
|
|
registry: &CommandRegistry,
|
|
) -> Result<OutputStream, ShellError> {
|
|
args.process(registry, pick)?.run()
|
|
}
|
|
}
|
|
|
|
fn pick(
|
|
PickArgs { rest: fields }: PickArgs,
|
|
RunnableContext { input, name, .. }: RunnableContext,
|
|
) -> Result<OutputStream, ShellError> {
|
|
if fields.len() == 0 {
|
|
return Err(ShellError::labeled_error(
|
|
"Pick requires columns to pick",
|
|
"needs parameter",
|
|
name,
|
|
));
|
|
}
|
|
|
|
let fields: Vec<_> = fields.iter().map(|f| f.item.clone()).collect();
|
|
|
|
let objects = input
|
|
.values
|
|
.map(move |value| select_fields(&value.item, &fields, value.tag()));
|
|
|
|
Ok(objects.from_input_stream())
|
|
}
|