-
Notifications
You must be signed in to change notification settings - Fork 71
/
lens.rs
123 lines (99 loc) · 3.97 KB
/
lens.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
static USAGE: &str = r#"
Explore a CSV file interactively using the csvlens (https://github.com/YS-L/csvlens) engine.
Press 'q' to exit. Press '?' for help.
Usage:
qsv lens [options] [<input>]
qsv lens --help
lens options:
-d, --delimiter <char> Delimiter character (comma by default)
"auto" to auto-detect the delimiter
-t, --tab-separated Use tab separation. Shortcut for -d '\t'
--no-headers Do not interpret the first row as headers
--columns <regex> Use this regex to select columns to display by default
--filter <regex> Use this regex to filter rows to display by default
--find <regex> Use this regex to find and highlight matches by default
-i, --ignore-case Searches ignore case. Ignored if any uppercase letters
are present in the search string
--echo-column <column_name> Print the value of this column to stdout for the selected row
--debug Show stats for debugging
Common options:
-h, --help Display this message
"#;
use std::path::PathBuf;
use csvlens::run_csvlens;
use serde::Deserialize;
use tempfile;
use crate::{config::Config, util, CliError, CliResult};
#[derive(Deserialize)]
struct Args {
arg_input: Option<String>,
flag_delimiter: Option<String>,
flag_tab_separated: bool,
flag_no_headers: bool,
flag_columns: Option<String>,
flag_filter: Option<String>,
flag_find: Option<String>,
flag_ignore_case: bool,
flag_echo_column: Option<String>,
flag_debug: bool,
}
pub fn run(argv: &[&str]) -> CliResult<()> {
let args: Args = util::get_args(USAGE, argv)?;
let mut lens_args = Vec::new();
// Process input file
// support stdin and auto-decompress snappy file
// stdin/decompressed file is written to a temporary file in tmpdir
// which is automatically deleted after the command finishes
let tmpdir = tempfile::tempdir()?;
let work_input = util::process_input(
vec![PathBuf::from(
// if no input file is specified, read from stdin "-"
args.arg_input.unwrap_or_else(|| "-".to_string()),
)],
&tmpdir,
"",
)?;
let input = work_input[0].to_string_lossy().to_string();
lens_args.push(input.clone());
// we do config here to get the delimiter, just in case
// QSV_SNIFF_DELIMITER or QSV_DELIMITER is set
let config: Config = Config::new(Some(input).as_ref());
if let Some(delimiter) = &args.flag_delimiter {
lens_args.extend_from_slice(&["--delimiter".to_string(), delimiter.to_string()]);
} else {
lens_args.extend_from_slice(&[
"--delimiter".to_string(),
(config.get_delimiter() as char).to_string(),
]);
}
if args.flag_tab_separated {
lens_args.push("--tab-separated".to_string());
}
if args.flag_no_headers {
lens_args.push("--no-headers".to_string());
}
if let Some(columns) = &args.flag_columns {
lens_args.extend_from_slice(&["--columns".to_string(), columns.to_string()]);
}
if let Some(filter) = &args.flag_filter {
lens_args.extend_from_slice(&["--filter".to_string(), filter.to_string()]);
}
if let Some(find) = &args.flag_find {
lens_args.extend_from_slice(&["--find".to_string(), find.to_string()]);
}
if args.flag_ignore_case {
lens_args.push("--ignore-case".to_string());
}
if let Some(echo_column) = &args.flag_echo_column {
lens_args.extend_from_slice(&["--echo-column".to_string(), echo_column.to_string()]);
}
if args.flag_debug {
lens_args.push("--debug".to_string());
}
let out =
run_csvlens(&lens_args).map_err(|e| CliError::Other(format!("csvlens error: {e}")))?;
if let Some(selected_cell) = out {
println!("{selected_cell}");
}
Ok(())
}