mirror of
https://github.com/nushell/nushell.git
synced 2024-12-12 18:20:55 +01:00
076fde16dd
* WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * Finish adding the baseline refactors for argument invocation * Finish cleanup and add test * Add missing plugin references
76 lines
1.8 KiB
Rust
76 lines
1.8 KiB
Rust
use crate::commands::WholeStreamCommand;
|
|
use crate::context::CommandRegistry;
|
|
use crate::prelude::*;
|
|
use nu_errors::ShellError;
|
|
use nu_protocol::{ReturnSuccess, Signature, SyntaxShape};
|
|
use nu_source::Tagged;
|
|
|
|
pub struct Keep;
|
|
|
|
#[derive(Deserialize)]
|
|
pub struct KeepArgs {
|
|
rows: Option<Tagged<usize>>,
|
|
}
|
|
|
|
impl WholeStreamCommand for Keep {
|
|
fn name(&self) -> &str {
|
|
"keep"
|
|
}
|
|
|
|
fn signature(&self) -> Signature {
|
|
Signature::build("keep").optional(
|
|
"rows",
|
|
SyntaxShape::Int,
|
|
"starting from the front, the number of rows to keep",
|
|
)
|
|
}
|
|
|
|
fn usage(&self) -> &str {
|
|
"Keep the number of rows only"
|
|
}
|
|
|
|
fn run(
|
|
&self,
|
|
args: CommandArgs,
|
|
registry: &CommandRegistry,
|
|
) -> Result<OutputStream, ShellError> {
|
|
keep(args, registry)
|
|
}
|
|
|
|
fn examples(&self) -> &[Example] {
|
|
&[
|
|
Example {
|
|
description: "Keep the first row",
|
|
example: "ls | keep",
|
|
},
|
|
Example {
|
|
description: "Keep the first four rows",
|
|
example: "ls | keep 4",
|
|
},
|
|
]
|
|
}
|
|
}
|
|
|
|
fn keep(args: CommandArgs, registry: &CommandRegistry) -> Result<OutputStream, ShellError> {
|
|
let registry = registry.clone();
|
|
let stream = async_stream! {
|
|
let (KeepArgs { rows }, mut input) = args.process(®istry).await?;
|
|
let mut rows_desired = if let Some(quantity) = rows {
|
|
*quantity
|
|
} else {
|
|
1
|
|
};
|
|
|
|
while let Some(input) = input.next().await {
|
|
if rows_desired > 0 {
|
|
yield ReturnSuccess::value(input);
|
|
rows_desired -= 1;
|
|
} else {
|
|
break;
|
|
}
|
|
}
|
|
};
|
|
|
|
Ok(stream.to_output_stream())
|
|
}
|