2019-11-11 12:54:58 +01:00
|
|
|
use crate::commands::from_structured_data::from_structured_data;
|
2019-08-29 11:02:16 +02:00
|
|
|
use crate::commands::WholeStreamCommand;
|
|
|
|
use crate::prelude::*;
|
|
|
|
|
|
|
|
pub struct FromTSV;
|
|
|
|
|
|
|
|
#[derive(Deserialize)]
|
|
|
|
pub struct FromTSVArgs {
|
|
|
|
headerless: bool,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl WholeStreamCommand for FromTSV {
|
|
|
|
fn name(&self) -> &str {
|
|
|
|
"from-tsv"
|
|
|
|
}
|
|
|
|
|
|
|
|
fn signature(&self) -> Signature {
|
2019-10-28 06:15:35 +01:00
|
|
|
Signature::build("from-tsv")
|
|
|
|
.switch("headerless", "don't treat the first row as column names")
|
2019-08-29 11:02:16 +02:00
|
|
|
}
|
|
|
|
|
2019-08-30 00:52:32 +02:00
|
|
|
fn usage(&self) -> &str {
|
|
|
|
"Parse text as .tsv and create table."
|
|
|
|
}
|
|
|
|
|
2019-08-29 11:02:16 +02:00
|
|
|
fn run(
|
|
|
|
&self,
|
|
|
|
args: CommandArgs,
|
|
|
|
registry: &CommandRegistry,
|
|
|
|
) -> Result<OutputStream, ShellError> {
|
|
|
|
args.process(registry, from_tsv)?.run()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn from_tsv(
|
2019-11-11 12:25:41 +01:00
|
|
|
FromTSVArgs { headerless }: FromTSVArgs,
|
2019-11-11 12:54:58 +01:00
|
|
|
runnable_context: RunnableContext,
|
2019-08-29 11:02:16 +02:00
|
|
|
) -> Result<OutputStream, ShellError> {
|
2019-11-11 12:54:58 +01:00
|
|
|
from_structured_data(headerless, '\t', "TSV", runnable_context)
|
2019-08-29 11:02:16 +02:00
|
|
|
}
|