mirror of
https://github.com/nushell/nushell.git
synced 2024-12-04 22:33:50 +01:00
96 lines
2.5 KiB
Rust
96 lines
2.5 KiB
Rust
use crate::command_registry::CommandRegistry;
|
|
use crate::commands::WholeStreamCommand;
|
|
use crate::prelude::*;
|
|
use futures::future;
|
|
use futures::stream::StreamExt;
|
|
use nu_errors::ShellError;
|
|
use nu_protocol::{ReturnSuccess, Signature, SyntaxShape, UntaggedValue, Value};
|
|
use nu_source::Tagged;
|
|
|
|
pub struct Compact;
|
|
|
|
#[derive(Deserialize)]
|
|
pub struct CompactArgs {
|
|
rest: Vec<Tagged<String>>,
|
|
}
|
|
|
|
#[async_trait]
|
|
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"
|
|
}
|
|
|
|
async fn run(
|
|
&self,
|
|
args: CommandArgs,
|
|
registry: &CommandRegistry,
|
|
) -> Result<OutputStream, ShellError> {
|
|
compact(args, registry).await
|
|
}
|
|
|
|
fn examples(&self) -> Vec<Example> {
|
|
vec![Example {
|
|
description: "Filter out all directory entries having no 'target'",
|
|
example: "ls -la | compact target",
|
|
result: None,
|
|
}]
|
|
}
|
|
}
|
|
|
|
pub async fn compact(
|
|
args: CommandArgs,
|
|
registry: &CommandRegistry,
|
|
) -> Result<OutputStream, ShellError> {
|
|
let registry = registry.clone();
|
|
let (CompactArgs { rest: columns }, input) = args.process(®istry).await?;
|
|
Ok(input
|
|
.filter_map(move |item| {
|
|
future::ready(if columns.is_empty() {
|
|
if !item.is_empty() {
|
|
Some(ReturnSuccess::value(item))
|
|
} else {
|
|
None
|
|
}
|
|
} else {
|
|
match item {
|
|
Value {
|
|
value: UntaggedValue::Row(ref r),
|
|
..
|
|
} => {
|
|
if columns
|
|
.iter()
|
|
.all(|field| r.get_data(field).borrow().is_some())
|
|
{
|
|
Some(ReturnSuccess::value(item))
|
|
} else {
|
|
None
|
|
}
|
|
}
|
|
_ => None,
|
|
}
|
|
})
|
|
})
|
|
.to_output_stream())
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::Compact;
|
|
use super::ShellError;
|
|
|
|
#[test]
|
|
fn examples_work_as_expected() -> Result<(), ShellError> {
|
|
use crate::examples::test as test_examples;
|
|
|
|
Ok(test_examples(Compact {})?)
|
|
}
|
|
}
|