2020-09-19 21:29:51 +00:00
|
|
|
use crate::command_registry::CommandRegistry;
|
2019-10-15 10:19:06 +00:00
|
|
|
use crate::commands::WholeStreamCommand;
|
|
|
|
use crate::prelude::*;
|
|
|
|
use futures::stream::StreamExt;
|
Extract core stuff into own crates
This commit extracts five new crates:
- nu-source, which contains the core source-code handling logic in Nu,
including Text, Span, and also the pretty.rs-based debug logic
- nu-parser, which is the parser and expander logic
- nu-protocol, which is the bulk of the types and basic conveniences
used by plugins
- nu-errors, which contains ShellError, ParseError and error handling
conveniences
- nu-textview, which is the textview plugin extracted into a crate
One of the major consequences of this refactor is that it's no longer
possible to `impl X for Spanned<Y>` outside of the `nu-source` crate, so
a lot of types became more concrete (Value became a concrete type
instead of Spanned<Value>, for example).
This also turned a number of inherent methods in the main nu crate into
plain functions (impl Value {} became a bunch of functions in the
`value` namespace in `crate::data::value`).
2019-11-26 02:30:48 +00:00
|
|
|
use nu_errors::ShellError;
|
2020-05-29 23:36:04 +00:00
|
|
|
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(®istry).await?;
|
|
|
|
let rows: Vec<Value> = input.collect().await;
|
|
|
|
|
2020-08-19 02:16:35 +00:00
|
|
|
let count = if column {
|
|
|
|
if rows.is_empty() {
|
|
|
|
0
|
2020-08-15 05:36:15 +00:00
|
|
|
} else {
|
2020-08-19 02:16:35 +00:00
|
|
|
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
|
|
|
}
|
2020-08-19 02:16:35 +00:00
|
|
|
} else {
|
|
|
|
rows.len()
|
|
|
|
};
|
2020-05-29 23:36:04 +00:00
|
|
|
|
2020-08-19 02:16:35 +00:00
|
|
|
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
|
|
|
|
2020-05-18 12:56:01 +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
|
|
|
}
|
|
|
|
|
2020-05-18 12:56:01 +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 {})
|
|
|
|
}
|
|
|
|
}
|