nushell/src/commands/from_tsv.rs

43 lines
1013 B
Rust
Raw Normal View History

use crate::commands::from_delimited_data::from_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 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
}
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(
FromTSVArgs { headerless }: FromTSVArgs,
runnable_context: RunnableContext,
2019-08-29 11:02:16 +02:00
) -> Result<OutputStream, ShellError> {
from_delimited_data(headerless, '\t', "TSV", runnable_context)
2019-08-29 11:02:16 +02:00
}