nushell/src/commands/first.rs

41 lines
892 B
Rust
Raw Normal View History

use crate::commands::WholeStreamCommand;
2019-05-15 18:12:38 +02:00
use crate::errors::ShellError;
2019-07-24 00:22:11 +02:00
use crate::parser::CommandRegistry;
2019-05-15 18:12:38 +02:00
use crate::prelude::*;
pub struct First;
#[derive(Deserialize)]
pub struct FirstArgs {
amount: Tagged<u64>,
}
impl WholeStreamCommand for First {
fn name(&self) -> &str {
"first"
}
fn signature(&self) -> Signature {
2019-09-11 16:36:50 +02:00
Signature::build("first").required("amount", SyntaxType::Literal)
}
fn usage(&self) -> &str {
"Show only the first number of rows."
}
fn run(
&self,
args: CommandArgs,
registry: &CommandRegistry,
) -> Result<OutputStream, ShellError> {
args.process(registry, first)?.run()
}
}
fn first(
FirstArgs { amount }: FirstArgs,
context: RunnableContext,
) -> Result<OutputStream, ShellError> {
Ok(OutputStream::from_input(context.input.values.take(*amount)))
2019-05-15 18:12:38 +02:00
}