mirror of
https://github.com/nushell/nushell.git
synced 2024-12-13 02:31:32 +01:00
42d18d2294
* replace --headerless flags with --noheaders / -n * Update from_csv.rs Co-authored-by: Jonathan Turner <jonathandturner@users.noreply.github.com>
56 lines
1.3 KiB
Rust
56 lines
1.3 KiB
Rust
use crate::commands::from_delimited_data::from_delimited_data;
|
|
use crate::prelude::*;
|
|
use nu_engine::WholeStreamCommand;
|
|
use nu_errors::ShellError;
|
|
use nu_protocol::Signature;
|
|
|
|
pub struct FromTSV;
|
|
|
|
#[derive(Deserialize)]
|
|
pub struct FromTSVArgs {
|
|
noheaders: bool,
|
|
}
|
|
|
|
#[async_trait]
|
|
impl WholeStreamCommand for FromTSV {
|
|
fn name(&self) -> &str {
|
|
"from tsv"
|
|
}
|
|
|
|
fn signature(&self) -> Signature {
|
|
Signature::build("from tsv").switch(
|
|
"noheaders",
|
|
"don't treat the first row as column names",
|
|
Some('n'),
|
|
)
|
|
}
|
|
|
|
fn usage(&self) -> &str {
|
|
"Parse text as .tsv and create table."
|
|
}
|
|
|
|
async fn run(&self, args: CommandArgs) -> Result<OutputStream, ShellError> {
|
|
from_tsv(args).await
|
|
}
|
|
}
|
|
|
|
async fn from_tsv(args: CommandArgs) -> Result<OutputStream, ShellError> {
|
|
let name = args.call_info.name_tag.clone();
|
|
let (FromTSVArgs { noheaders }, input) = args.process().await?;
|
|
|
|
from_delimited_data(noheaders, '\t', "TSV", input, name).await
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::FromTSV;
|
|
use super::ShellError;
|
|
|
|
#[test]
|
|
fn examples_work_as_expected() -> Result<(), ShellError> {
|
|
use crate::examples::test as test_examples;
|
|
|
|
test_examples(FromTSV {})
|
|
}
|
|
}
|