2019-11-19 16:13:10 +01:00
|
|
|
use crate::commands::to_delimited_data::to_delimited_data;
|
2019-08-29 11:02:16 +02:00
|
|
|
use crate::commands::WholeStreamCommand;
|
|
|
|
use crate::prelude::*;
|
|
|
|
|
|
|
|
pub struct ToTSV;
|
|
|
|
|
|
|
|
#[derive(Deserialize)]
|
|
|
|
pub struct ToTSVArgs {
|
|
|
|
headerless: bool,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl WholeStreamCommand for ToTSV {
|
|
|
|
fn name(&self) -> &str {
|
|
|
|
"to-tsv"
|
|
|
|
}
|
|
|
|
|
|
|
|
fn signature(&self) -> Signature {
|
2019-10-28 06:15:35 +01:00
|
|
|
Signature::build("to-tsv").switch(
|
|
|
|
"headerless",
|
|
|
|
"do not output the column names as the first row",
|
|
|
|
)
|
2019-08-30 00:52:32 +02: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> {
|
|
|
|
args.process(registry, to_tsv)?.run()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn to_tsv(
|
|
|
|
ToTSVArgs { headerless }: ToTSVArgs,
|
2019-11-19 16:13:10 +01:00
|
|
|
runnable_context: RunnableContext,
|
2019-08-29 11:02:16 +02:00
|
|
|
) -> Result<OutputStream, ShellError> {
|
2019-11-19 16:13:10 +01:00
|
|
|
to_delimited_data(headerless, '\t', "TSV", runnable_context)
|
2019-08-29 11:02:16 +02:00
|
|
|
}
|