mirror of
https://github.com/nushell/nushell.git
synced 2025-03-05 02:41:48 +01:00
fixes #969, admittedly without a --delimiter alias moves from_structured_data.rs to from_delimited_data.rs to better identify its scope and adds to_delimited_data.rs. Now csv and tsv both use the same code, tsv passes in a fixed '\t' argument where csv passes in the value of --separator
41 lines
958 B
Rust
41 lines
958 B
Rust
use crate::commands::from_delimited_data::from_delimited_data;
|
|
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 {
|
|
Signature::build("from-tsv")
|
|
.switch("headerless", "don't treat the first row as column names")
|
|
}
|
|
|
|
fn usage(&self) -> &str {
|
|
"Parse text as .tsv and create table."
|
|
}
|
|
|
|
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,
|
|
) -> Result<OutputStream, ShellError> {
|
|
from_delimited_data(headerless, '\t', "TSV", runnable_context)
|
|
}
|