mirror of
https://github.com/nushell/nushell.git
synced 2025-04-03 06:01:11 +02:00
49 lines
1014 B
Rust
49 lines
1014 B
Rust
use crate::commands::WholeStreamCommand;
|
|
use crate::errors::ShellError;
|
|
use crate::parser::CommandRegistry;
|
|
use crate::prelude::*;
|
|
|
|
pub struct First;
|
|
|
|
#[derive(Deserialize)]
|
|
pub struct FirstArgs {
|
|
rows: Option<Tagged<u64>>,
|
|
}
|
|
|
|
impl WholeStreamCommand for First {
|
|
fn name(&self) -> &str {
|
|
"first"
|
|
}
|
|
|
|
fn signature(&self) -> Signature {
|
|
Signature::build("first").optional("rows", SyntaxShape::Int)
|
|
}
|
|
|
|
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 { rows }: FirstArgs,
|
|
context: RunnableContext,
|
|
) -> Result<OutputStream, ShellError> {
|
|
let rows_desired = if let Some(quantity) = rows {
|
|
*quantity
|
|
} else {
|
|
1
|
|
};
|
|
|
|
Ok(OutputStream::from_input(
|
|
context.input.values.take(rows_desired),
|
|
))
|
|
}
|