forked from dathere/qsv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheaders.rs
72 lines (60 loc) · 2.07 KB
/
headers.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
use std::io;
use tabwriter::TabWriter;
use crate::config::Delimiter;
use crate::util;
use crate::CliResult;
use serde::Deserialize;
static USAGE: &str = "
Prints the fields of the first row in the CSV data.
These names can be used in commands like 'select' to refer to columns in the
CSV data.
Note that multiple CSV files may be given to this command. This is useful with
the --intersect flag.
Usage:
qsv headers [options] [<input>...]
headers options:
-j, --just-names Only show the header names (hide column index).
This is automatically enabled if more than one
input is given.
--intersect Shows the intersection of all headers in all of
the inputs given.
Common options:
-h, --help Display this message
-d, --delimiter <arg> The field delimiter for reading CSV data.
Must be a single character. (default: ,)
";
#[derive(Deserialize)]
struct Args {
arg_input: Vec<String>,
flag_just_names: bool,
flag_intersect: bool,
flag_delimiter: Option<Delimiter>,
}
pub fn run(argv: &[&str]) -> CliResult<()> {
let args: Args = util::get_args(USAGE, argv)?;
let configs = util::many_configs(&*args.arg_input, args.flag_delimiter, true)?;
let num_inputs = configs.len();
let mut headers: Vec<Vec<u8>> = vec![];
for conf in configs.into_iter() {
let mut rdr = conf.reader()?;
for header in rdr.byte_headers()?.iter() {
if !args.flag_intersect || !headers.iter().any(|h| &**h == header) {
headers.push(header.to_vec());
}
}
}
let mut wtr: Box<dyn io::Write> = if args.flag_just_names {
Box::new(io::stdout())
} else {
Box::new(TabWriter::new(io::stdout()))
};
for (i, header) in headers.into_iter().enumerate() {
if num_inputs == 1 && !args.flag_just_names {
write!(&mut wtr, "{}\t", i + 1)?;
}
wtr.write_all(&header)?;
wtr.write_all(b"\n")?;
}
wtr.flush()?;
Ok(())
}