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

87 lines
2.2 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 Count;
2020-08-15 07:36:15 +02:00
#[derive(Deserialize)]
pub struct CountArgs {
column: bool,
}
2020-05-29 10:22:52 +02:00
#[async_trait]
2019-10-15 12:19:06 +02:00
impl WholeStreamCommand for Count {
fn name(&self) -> &str {
"count"
}
fn signature(&self) -> Signature {
2020-08-15 07:36:15 +02:00
Signature::build("count").switch(
"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 (CountArgs { column }, input) = args.process().await?;
2020-08-15 07:36:15 +02:00
let rows: Vec<Value> = input.collect().await;
let count = 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 count",
"cannot obtain column count",
tag,
));
}
}
2020-08-15 07:36:15 +02:00
}
} else {
rows.len()
};
Ok(OutputStream::one(UntaggedValue::int(count).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] | count",
result: Some(vec![UntaggedValue::int(5).into()]),
},
Example {
description: "Count the number of columns in the calendar table",
example: "cal | count -c",
result: None,
},
]
2020-05-12 03:00:55 +02:00
}
2019-10-15 12:19:06 +02:00
}
#[cfg(test)]
mod tests {
use super::Count;
use super::ShellError;
#[test]
fn examples_work_as_expected() -> Result<(), ShellError> {
use crate::examples::test as test_examples;
2021-02-12 11:13:14 +01:00
test_examples(Count {})
}
}