nushell/crates/nu-command/src/commands/length.rs

89 lines
2.3 KiB
Rust
Raw Normal View History

2019-10-15 12:19:06 +02:00
use crate::prelude::*;
use futures::stream::StreamExt;
use nu_engine::WholeStreamCommand;
use nu_errors::ShellError;
use nu_protocol::{Signature, UntaggedValue, Value};
2019-10-15 12:19:06 +02:00
pub struct Length;
2019-10-15 12:19:06 +02:00
2020-08-15 07:36:15 +02:00
#[derive(Deserialize)]
pub struct LengthArgs {
2020-08-15 07:36:15 +02:00
column: bool,
}
2020-05-29 10:22:52 +02:00
#[async_trait]
impl WholeStreamCommand for Length {
2019-10-15 12:19:06 +02:00
fn name(&self) -> &str {
"length"
2019-10-15 12:19:06 +02:00
}
fn signature(&self) -> Signature {
Signature::build("length").switch(
2020-08-15 07:36:15 +02:00
"column",
"Calculate number of columns in table",
Some('c'),
)
2019-10-15 12:19:06 +02:00
}
fn usage(&self) -> &str {
2020-05-12 03:00:55 +02:00
"Show the total number of rows or items."
2019-10-15 12:19:06 +02:00
}
async fn run(&self, args: CommandArgs) -> Result<OutputStream, ShellError> {
2020-08-15 07:36:15 +02:00
let tag = args.call_info.name_tag.clone();
let (LengthArgs { column }, input) = args.process().await?;
2020-08-15 07:36:15 +02:00
let rows: Vec<Value> = input.collect().await;
let length = if column {
if rows.is_empty() {
0
2020-08-15 07:36:15 +02:00
} else {
match &rows[0].value {
UntaggedValue::Row(dictionary) => dictionary.length(),
_ => {
return Err(ShellError::labeled_error(
"Cannot obtain column length",
"cannot obtain column length",
tag,
));
}
}
2020-08-15 07:36:15 +02:00
}
} else {
rows.len()
};
Ok(OutputStream::one(
UntaggedValue::int(length).into_value(tag),
))
2019-10-15 12:19:06 +02:00
}
2020-05-12 03:00:55 +02:00
fn examples(&self) -> Vec<Example> {
2020-08-15 07:36:15 +02:00
vec![
Example {
description: "Count the number of entries in a list",
example: "echo [1 2 3 4 5] | length",
2020-08-15 07:36:15 +02:00
result: Some(vec![UntaggedValue::int(5).into()]),
},
Example {
description: "Count the number of columns in the calendar table",
example: "cal | length -c",
2020-08-15 07:36:15 +02:00
result: None,
},
]
2020-05-12 03:00:55 +02:00
}
2019-10-15 12:19:06 +02:00
}
#[cfg(test)]
mod tests {
use super::Length;
use super::ShellError;
#[test]
fn examples_work_as_expected() -> Result<(), ShellError> {
use crate::examples::test as test_examples;
test_examples(Length {})
}
}