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

72 lines
1.6 KiB
Rust
Raw Normal View History

use crate::commands::to_delimited_data::to_delimited_data;
2019-08-29 11:02:16 +02:00
use crate::commands::WholeStreamCommand;
use crate::prelude::*;
use nu_errors::ShellError;
use nu_protocol::Signature;
2019-08-29 11:02:16 +02:00
pub struct ToTSV;
#[derive(Deserialize)]
pub struct ToTSVArgs {
headerless: bool,
}
impl WholeStreamCommand for ToTSV {
fn name(&self) -> &str {
"to tsv"
2019-08-29 11:02:16 +02:00
}
fn signature(&self) -> Signature {
Signature::build("to tsv").switch(
2019-10-28 06:15:35 +01:00
"headerless",
"do not output the column names as the first row",
None,
2019-10-28 06:15:35 +01:00
)
}
fn usage(&self) -> &str {
"Convert table into .tsv text"
2019-08-29 11:02:16 +02:00
}
fn run(
&self,
args: CommandArgs,
registry: &CommandRegistry,
) -> Result<OutputStream, ShellError> {
to_tsv(args, registry)
2019-08-29 11:02:16 +02:00
}
}
fn to_tsv(args: CommandArgs, registry: &CommandRegistry) -> Result<OutputStream, ShellError> {
let registry = registry.clone();
let stream = async_stream! {
let name = args.call_info.name_tag.clone();
let (ToTSVArgs { headerless }, mut input) = args.process(&registry).await?;
let mut result = to_delimited_data(
headerless,
'\t',
"TSV",
input,
name,
)?;
while let Some(item) = result.next().await {
yield item;
}
};
Ok(stream.to_output_stream())
2019-08-29 11:02:16 +02:00
}
#[cfg(test)]
mod tests {
use super::ToTSV;
#[test]
fn examples_work_as_expected() {
use crate::examples::test as test_examples;
test_examples(ToTSV {})
}
}