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

62 lines
1.5 KiB
Rust
Raw Normal View History

2019-11-24 00:57:12 +01:00
use crate::commands::WholeStreamCommand;
use crate::context::CommandRegistry;
2019-11-24 00:57:12 +01:00
use crate::prelude::*;
use futures::stream::StreamExt;
use nu_errors::ShellError;
use nu_protocol::{Signature, SyntaxShape, UntaggedValue, Value};
use nu_source::Tagged;
2019-11-24 00:57:12 +01:00
pub struct Compact;
#[derive(Deserialize)]
pub struct CompactArgs {
rest: Vec<Tagged<String>>,
}
impl WholeStreamCommand for Compact {
fn name(&self) -> &str {
"compact"
}
fn signature(&self) -> Signature {
Signature::build("compact").rest(SyntaxShape::Any, "the columns to compact from the table")
}
fn usage(&self) -> &str {
"Creates a table with non-empty rows"
}
fn run(
&self,
args: CommandArgs,
registry: &CommandRegistry,
) -> Result<OutputStream, ShellError> {
args.process(registry, compact)?.run()
}
}
pub fn compact(
CompactArgs { rest: columns }: CompactArgs,
RunnableContext { input, .. }: RunnableContext,
) -> Result<OutputStream, ShellError> {
let objects = input.filter(move |item| {
2019-11-24 00:57:12 +01:00
let keep = if columns.is_empty() {
item.is_some()
} else {
2019-11-24 07:25:41 +01:00
match item {
Value {
value: UntaggedValue::Row(ref r),
2019-11-24 07:25:41 +01:00
..
} => columns
.iter()
.all(|field| r.get_data(field).borrow().is_some()),
_ => false,
}
2019-11-24 00:57:12 +01:00
};
futures::future::ready(keep)
});
Ok(objects.from_input_stream())
}