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

91 lines
2.3 KiB
Rust
Raw Normal View History

use crate::command_registry::CommandRegistry;
2019-10-15 10:19:06 +00:00
use crate::commands::WholeStreamCommand;
use crate::prelude::*;
use futures::stream::StreamExt;
use nu_errors::ShellError;
use nu_protocol::{Signature, UntaggedValue, Value};
2019-10-15 10:19:06 +00:00
pub struct Count;
2020-08-15 05:36:15 +00:00
#[derive(Deserialize)]
pub struct CountArgs {
column: bool,
}
2020-05-29 08:22:52 +00:00
#[async_trait]
2019-10-15 10:19:06 +00:00
impl WholeStreamCommand for Count {
fn name(&self) -> &str {
"count"
}
fn signature(&self) -> Signature {
2020-08-15 05:36:15 +00:00
Signature::build("count").switch(
"column",
"Calculate number of columns in table",
Some('c'),
)
2019-10-15 10:19:06 +00:00
}
fn usage(&self) -> &str {
2020-05-12 01:00:55 +00:00
"Show the total number of rows or items."
2019-10-15 10:19:06 +00:00
}
2020-05-29 08:22:52 +00:00
async fn run(
2019-10-15 10:19:06 +00:00
&self,
args: CommandArgs,
2020-08-15 05:36:15 +00:00
registry: &CommandRegistry,
2019-10-15 10:19:06 +00:00
) -> Result<OutputStream, ShellError> {
2020-08-15 05:36:15 +00:00
let tag = args.call_info.name_tag.clone();
let (CountArgs { column }, input) = args.process(&registry).await?;
let rows: Vec<Value> = input.collect().await;
let count = if column {
if rows.is_empty() {
0
2020-08-15 05:36:15 +00: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 05:36:15 +00:00
}
} else {
rows.len()
};
Ok(OutputStream::one(UntaggedValue::int(count).into_value(tag)))
2019-10-15 10:19:06 +00:00
}
2020-05-12 01:00:55 +00:00
fn examples(&self) -> Vec<Example> {
2020-08-15 05:36:15 +00: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 01:00:55 +00:00
}
2019-10-15 10:19:06 +00:00
}
#[cfg(test)]
mod tests {
use super::Count;
#[test]
fn examples_work_as_expected() {
use crate::examples::test as test_examples;
test_examples(Count {})
}
}