forked from dathere/qsv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathforeach.rs
159 lines (123 loc) · 5.14 KB
/
foreach.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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
#![cfg(target_family="unix")]
use crate::regex::bytes::{Regex, NoExpand};
use std::process::{Command, Stdio};
use std::io::{BufReader};
use std::ffi::OsStr;
use std::os::unix::ffi::OsStrExt;
use crate::CliResult;
use crate::config::{Delimiter, Config};
use crate::select::SelectColumns;
use crate::util;
use serde::Deserialize;
static USAGE: &str = "
Execute a bash command once per line in given CSV file.
Deleting all files whose filenames are listed in a column:
$ xsv foreach filename 'rm {}' assets.csv
Executing a command that outputs CSV once per line without repeating headers:
$ xsv foreach query 'search --year 2020 {}' queries.csv > results.csv
Same as above but with an additional column containing the current value:
$ xsv foreach query -c from_query 'search {}' queries.csv > results.csv
Usage:
xsv foreach [options] <column> <command> [<input>]
xsv foreach --help
foreach options:
-u, --unify If the output of execute command is CSV, will
unify the result by skipping headers on each
subsequent command.
-c, --new-column <name> If unifying, add a new column with given name
and copying the value of the current input file line.
Common options:
-h, --help Display this message
-n, --no-headers When set, the file will be considered to have no
headers.
-d, --delimiter <arg> The field delimiter for reading CSV data.
Must be a single character. (default: ,)
";
#[derive(Deserialize)]
struct Args {
arg_column: SelectColumns,
arg_command: String,
arg_input: Option<String>,
flag_unify: bool,
flag_new_column: Option<String>,
flag_no_headers: bool,
flag_delimiter: Option<Delimiter>,
}
pub fn run(argv: &[&str]) -> CliResult<()> {
let args: Args = util::get_args(USAGE, argv)?;
let rconfig = Config::new(&args.arg_input)
.delimiter(args.flag_delimiter)
.no_headers(args.flag_no_headers)
.select(args.arg_column);
if cfg!(windows) {
panic!("foreach command does not work on Windows");
}
let mut rdr = rconfig.reader()?;
let mut wtr = Config::new(&None).writer()?;
let template_pattern = Regex::new(r"\{\}")?;
let splitter_pattern = Regex::new(r#"(?:[\w-]+|"[^"]*"|'[^']*'|`[^`]*`)"#)?;
let cleaner_pattern = Regex::new(r#"(?:^["'`]|["'`]$)"#)?;
let headers = rdr.byte_headers()?.clone();
let sel = rconfig.selection(&headers)?;
let column_index = *sel.iter().next().unwrap();
let mut record = csv::ByteRecord::new();
let mut output_headers_written = false;
while rdr.read_byte_record(&mut record)? {
let current_value = &record[column_index];
let templated_command = template_pattern
.replace_all(&args.arg_command.as_bytes(), current_value)
.to_vec();
let mut command_pieces = splitter_pattern.find_iter(&templated_command);
let prog = OsStr::from_bytes(command_pieces.next().unwrap().as_bytes());
let cmd_args: Vec<String> = command_pieces.map(|piece| {
let clean_piece = cleaner_pattern.replace_all(&piece.as_bytes(), NoExpand(b""));
return String::from_utf8(clean_piece.into_owned()).expect("encoding error");
}).collect();
if !args.flag_unify {
let mut cmd = Command::new(prog)
.args(cmd_args)
.stdout(Stdio::inherit())
.stderr(Stdio::inherit())
.spawn()
.unwrap();
cmd.wait().unwrap();
}
else {
let mut cmd = Command::new(prog)
.args(cmd_args)
.stdout(Stdio::piped())
.stderr(Stdio::inherit())
.spawn()
.unwrap();
{
let stdout = cmd.stdout.as_mut().unwrap();
let stdout_reader = BufReader::new(stdout);
// let stdout_lines = stdout_reader.lines();
let mut stdout_rdr = csv::ReaderBuilder::new()
.delimiter(match &args.flag_delimiter {
Some(delimiter) => delimiter.as_byte(),
None => b','
})
.has_headers(true)
.from_reader(stdout_reader);
let mut output_record = csv::ByteRecord::new();
if !output_headers_written {
let mut headers = stdout_rdr.byte_headers()?.clone();
if let Some(name) = &args.flag_new_column {
headers.push_field(name.as_bytes());
}
wtr.write_byte_record(&headers)?;
output_headers_written = true;
}
while stdout_rdr.read_byte_record(&mut output_record)? {
if let Some(_) = &args.flag_new_column {
output_record.push_field(¤t_value);
}
wtr.write_byte_record(&output_record)?;
}
}
cmd.wait().unwrap();
}
}
Ok(())
}