nushell/crates/nu-command/src/commands/to_tsv.rs
Jonathan Turner 5f550a355b
Split OutputStream into ActionStream/OutputStream (#3304)
* Split OutputStream into ActionStream/OutputStream

* Fmt

* Missed update

* Cleanup helper names

* Fmt
2021-04-12 14:35:01 +12:00

55 lines
1.2 KiB
Rust

use crate::commands::to_delimited_data::to_delimited_data;
use crate::prelude::*;
use nu_engine::WholeStreamCommand;
use nu_errors::ShellError;
use nu_protocol::Signature;
pub struct ToTsv;
#[derive(Deserialize)]
pub struct ToTsvArgs {
noheaders: bool,
}
impl WholeStreamCommand for ToTsv {
fn name(&self) -> &str {
"to tsv"
}
fn signature(&self) -> Signature {
Signature::build("to tsv").switch(
"noheaders",
"do not output the column names as the first row",
Some('n'),
)
}
fn usage(&self) -> &str {
"Convert table into .tsv text"
}
fn run_with_actions(&self, args: CommandArgs) -> Result<ActionStream, ShellError> {
to_tsv(args)
}
}
fn to_tsv(args: CommandArgs) -> Result<ActionStream, ShellError> {
let name = args.call_info.name_tag.clone();
let (ToTsvArgs { noheaders }, input) = args.process()?;
to_delimited_data(noheaders, '\t', "TSV", input, name)
}
#[cfg(test)]
mod tests {
use super::ShellError;
use super::ToTsv;
#[test]
fn examples_work_as_expected() -> Result<(), ShellError> {
use crate::examples::test as test_examples;
test_examples(ToTsv {})
}
}