-
Notifications
You must be signed in to change notification settings - Fork 74
/
apply.rs
627 lines (559 loc) · 23.3 KB
/
apply.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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
use crate::config::{Config, Delimiter};
use crate::select::SelectColumns;
use crate::util;
use crate::CliResult;
use cached::proc_macro::cached;
use censor::{Censor, Sex, Zealous};
use chrono::{NaiveTime, Utc};
use currency::Currency;
use dateparser::parse_with;
use eudex::Hash;
use indicatif::{ProgressBar, ProgressDrawTarget};
use once_cell::sync::OnceCell;
use regex::Regex;
use reverse_geocoder::{Locations, ReverseGeocoder};
use serde::Deserialize;
use strsim::{
damerau_levenshtein, hamming, jaro_winkler, normalized_damerau_levenshtein, osa_distance,
sorensen_dice,
};
use titlecase::titlecase;
static USAGE: &str = "
Apply a series of transformation functions to a given CSV column. This can be used to
perform typical cleaning tasks and/or harmonize some values, etc.
It has several subcommands:
OPERATIONS
The series of operations must be given separated by commas as such:
trim => Trim the cell
trim,upper => Trim the cell, then transform to uppercase
lower,simdln => Lowercase the cell, then compute the normalized
Damerau-Levenshtein similarity to --comparand
Currently supported operations:
* len: Return string length
* lower: Transform to lowercase
* upper: Transform to uppercase
* squeeze: Compress consecutive whitespaces
* trim: Trim (drop whitespace left & right of the string)
* ltrim: Left trim whitespace
* rtrim: Right trim whitespace
* mtrim: Trims --comparand matches left & right of the string
* mltrim: Left trim --comparand matches
* mrtrim: Right trim --comparand matches
* replace: Replace all matches of a pattern (using --comparand)
with a string (using --replacement).
* regex_replace: Replace all regex matches in --comparand w/ --replacement.
* titlecase - capitalizes English text using Daring Fireball titlecase style
https://daringfireball.net/2008/05/title_case
* censor_check: check if profanity is detected (boolean).
Add additional comma-delimited profanities with -comparand.
* censor: profanity filter. Add additional comma-delimited profanities
with --comparand.
* currencytonum: Gets the numeric value of a currency. Supports one-character
currency symbols only ($,¥,£,€,֏,₱,₽,₪,₩,ƒ,฿,₫). Recognizes point, comma
and space separators.
* copy: Mark a column for copying
* simdl: Damerau-Levenshtein similarity to --comparand
* simdln: Normalized Damerau-Levenshtein similarity to --comparand
(between 0.0 & 1.0)
* simjw: Jaro-Winkler similarity to --comparand (between 0.0 & 1.0)
* simsd: Sørensen-Dice similarity to --comparand (between 0.0 & 1.0)
* simhm: Hamming distance to --comparand. Num of positions characters differ.
* simod: OSA Distance to --comparand.
* eudex: Multi-lingual sounds like --comparand (boolean)
Examples:
Trim, then transform to uppercase the surname field.
$ qsv apply operations trim,upper surname file.csv
Trim, then transform to uppercase the surname field and
rename the column uppercase_clean_surname.
$ qsv apply operations trim,upper surname -r uppercase_clean_surname file.csv
Trim, then transform to uppercase the surname field and
save it to a new column named uppercase_clean_surname.
$ qsv apply operations trim,upper surname -c uppercase_clean_surname file.csv
Trim parentheses & brackets from the description field.
$ qsv apply operations mtrim description --comparand '()<>' file.csv
Replace ' and ' with ' & ' in the description field.u64
$ qsv apply replace description --comparand ' and ' --replacement ' & ' file.csv
Extract the numeric value of the Salary column in a new
column named Salary_num.
$ qsv apply operations currencytonum Salary -c Salary_num file.csv
Compute the Normalized Damerau-Levenshtein similarity of
the neighborhood column to the string 'Roxbury' and save
it to a new column named dln_roxbury_score.
$ qsv apply operations lower,simdln neighborhood --comparand roxbury \
-c dln_roxbury_score boston311.csv
You can also use this subcommand command to make a copy of a column:
$ qsv apply operations copy col_to_copy -c col_copy file.csv
EMPTYREPLACE
Replace empty cells with <--replacement> string.
Non-empty cells are not modified. See the `fill` command for more
complex empty field operations.
Examples:
Replace empty cells in file.csv Measurement column with 'None'.
$ qsv apply emptyreplace Measurement --replacement None file.csv
Replace empty cells in file.csv Measurement column with 'Unknown'.
$ qsv apply emptyreplace --replacement Unknown Measurement file.csv
DATEFMT
Formats a recognized date column to a specified format using --formatstr.
See https://docs.rs/dateparser/0.1.6/dateparser/#accepted-date-formats for
recognized date formats.
See https://docs.rs/chrono/0.4.19/chrono/format/strftime/ for
accepted date formats for --formatstr.
Defaults to ISO 8601/RFC 3339 format when --formatstr is not specified.
Examples:
Format dates in Open Date column to ISO 8601/RFC 3339 format:
$ qsv apply datefmt 'Open Date' file.csv
Format dates in OpenDate column using '%Y-%m-%d' format:
$ qsv apply datefmt OpenDate --formatstr '%Y-%m-%d' file.csv
Get the week number and store it in the week_number column:
$ qsv apply dateformat OpenDate --formatstr '%V' --new-column week_number file.csv
GEOCODE
Geocodes to the nearest city center point given a location column
[i.e. a column which contains a latitude, longitude coordinate] against
an embedded copy of the geonames city database.
The geocoded information is formatted based on --formatstr, returning
it in 'city-state' format if not specified.
Use the --new-column option if you want to keep the location column:
Examples:
Geocode file.csv Location column and set the geocoded value to a
new column named City.
$ qsv apply geocode Location --new-column City file.csv
Geocode file.csv Location column with --formatstr=city-state and
set the geocoded value a new column named City.
$ qsv apply geocode Location --formatstr city-state --new-column City file.csv
Usage:
qsv apply operations <operations> [options] <column> [<input>]
qsv apply emptyreplace --replacement=<string> [options] <column> [<input>]
qsv apply datefmt [--formatstr=<string>] [options] <column> [<input>]
qsv apply geocode [--formatstr=<string>] [options] <column> [<input>]
qsv apply --help
apply options:
-c, --new-column <name> Put the transformed values in a new column instead.
-r, --rename <name> New name for the transformed column.
-C, --comparand=<string> The string to compare against for replace & similarity operations.
-R, --replacement=<string> The string to use for the replace & emptyreplace operations.
-f, --formatstr=<string> The date format to use when formatting dates. For formats, see
https://docs.rs/chrono/0.4.19/chrono/format/strftime/index.html
[default: %+]
the place format to use when geocoding. The available formats are:
- 'city-state' (default) - e.g. Brooklyn, New York
- 'city-country' - Brooklyn, US
- 'city-state-county' | 'city-admin1-country' - Brooklyn, New York US
- 'city' - Brooklyn
- 'county' | 'admin2' - Kings County
- 'state' | 'admin1' - New York
- 'county-country' | 'admin2-country' - Kings County, US
- 'county-state-country' | 'admin2-admin1-country' - Kings County, New York US
- 'country' - US
Common options:
-h, --help Display this message
-o, --output <file> Write output to <file> instead of stdout.
-n, --no-headers When set, the first row will not be interpreted
as headers.
-d, --delimiter <arg> The field delimiter for reading CSV data.
Must be a single character. (default: ,)
-q, --quiet Don't show progress bars.
";
macro_rules! regex {
($re:literal $(,)?) => {{
static RE: once_cell::sync::OnceCell<regex::Regex> = once_cell::sync::OnceCell::new();
RE.get_or_init(|| regex::Regex::new($re).unwrap())
}};
}
static OPERATIONS: &[&str] = &[
"len",
"lower",
"upper",
"squeeze",
"trim",
"rtrim",
"ltrim",
"mtrim",
"mltrim",
"mrtrim",
"titlecase",
"replace",
"regex_replace",
"censor_check",
"censor",
"currencytonum",
"copy",
"simdl",
"simdln",
"simjw",
"simsd",
"simhm",
"simod",
"eudex",
];
#[derive(Deserialize, Debug)]
struct Args {
arg_column: SelectColumns,
cmd_operations: bool,
arg_operations: String,
cmd_datefmt: bool,
cmd_emptyreplace: bool,
cmd_geocode: bool,
arg_input: Option<String>,
flag_rename: Option<String>,
flag_comparand: String,
flag_replacement: String,
flag_formatstr: String,
flag_new_column: Option<String>,
flag_output: Option<String>,
flag_no_headers: bool,
flag_delimiter: Option<Delimiter>,
flag_quiet: bool,
}
static MIDNIGHT: OnceCell<chrono::NaiveTime> = OnceCell::new();
static CENSOR: OnceCell<Censor> = OnceCell::new();
static LOCS: OnceCell<Locations> = OnceCell::new();
static GEOCODER: OnceCell<ReverseGeocoder> = OnceCell::new();
static EUDEX_COMPARAND_HASH: OnceCell<eudex::Hash> = OnceCell::new();
static REGEX_REPLACE: OnceCell<Regex> = OnceCell::new();
pub fn replace_column_value(
record: &csv::StringRecord,
column_index: usize,
new_value: &str,
) -> csv::StringRecord {
record
.into_iter()
.enumerate()
.map(|(i, v)| if i == column_index { new_value } else { v })
.collect()
}
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);
let mut rdr = rconfig.reader()?;
let mut wtr = Config::new(&args.flag_output).writer()?;
let headers = rdr.byte_headers()?.clone();
let sel = rconfig.selection(&headers)?;
let column_index = *sel.iter().next().unwrap();
let mut headers = rdr.headers()?.clone();
if let Some(new_name) = args.flag_rename {
headers = replace_column_value(&headers, column_index, &new_name);
}
if !rconfig.no_headers {
if let Some(new_column) = &args.flag_new_column {
headers.push_field(new_column);
}
wtr.write_record(&headers)?;
}
// validate specified operations
let mut censor_invokes = 0_usize;
let mut replace_invokes = 0_usize;
let mut regex_replace_invokes = 0_usize;
let mut sim_invokes = 0_usize;
let mut eudex_invokes = 0_usize;
let operations: Vec<&str> = args.arg_operations.split(',').collect();
if args.cmd_operations {
for op in &operations {
if !OPERATIONS.contains(op) {
return fail!(format!("Unknown \"{}\" operation", op));
}
match op.as_ref() {
"replace" => {
if args.flag_comparand.is_empty() || args.flag_replacement.is_empty() {
return fail!(
"--comparand (-C) and --replacement (-R) are required for replace operation."
);
}
replace_invokes += 1;
}
"regex_replace" => {
if args.flag_comparand.is_empty() || args.flag_replacement.is_empty() {
return fail!(
"--comparand (-C) and --replacement (-R) are required for regex_replace operation."
);
}
regex_replace_invokes += 1;
}
"copy" => {
if args.flag_new_column.is_none() {
return fail!("--new_column (-c) is required for copy operation.");
}
}
"censor" | "censor_check" => {
if args.flag_new_column.is_none() {
return fail!("--new_column (-c) is required for censor operations.");
}
censor_invokes += 1;
}
"mtrim" | "mltrim" | "mrtrim" => {
if args.flag_comparand.is_empty() {
return fail!("--comparand (-C) is required for match trim operations.");
}
}
"simdl" | "simdln" | "simjw" | "simsd" | "simhm" | "simod" => {
if args.flag_new_column.is_none() {
return fail!("--new_column (-c) is required for similarity operations.");
}
sim_invokes += 1;
}
"eudex" => {
if args.flag_new_column.is_none() {
return fail!("--new_column (-c) is required for eudex.");
}
eudex_invokes += 1;
}
_ => {}
}
}
}
if censor_invokes > 1
|| replace_invokes > 1
|| regex_replace_invokes > 1
|| sim_invokes > 1
|| eudex_invokes > 1
{
return fail!("you can only use censor, replace, regex_replace, similarity, or eudex ONCE per operation series.");
};
// prep progress bar
let mut record_count = 0_u64;
let progress = ProgressBar::new(0);
if !args.flag_quiet {
record_count = util::count_rows(&rconfig);
util::prep_progress(&progress, record_count);
} else {
progress.set_draw_target(ProgressDrawTarget::hidden());
}
#[allow(unused_assignments)]
let mut record = csv::StringRecord::new();
let records_iter = rdr.records();
for result in records_iter {
record = result?;
if !args.flag_quiet {
progress.inc(1);
}
let mut cell = record[column_index].to_owned();
if args.cmd_operations {
apply_operations(
&operations,
&mut cell,
&args.flag_comparand,
&args.flag_replacement,
);
} else if args.cmd_emptyreplace {
if cell.trim().is_empty() {
cell = args.flag_replacement.to_string();
}
} else if args.cmd_datefmt && !cell.is_empty() {
let midnight = MIDNIGHT.get_or_init(|| NaiveTime::from_hms(0, 0, 0));
let parsed_date = parse_with(&cell, &Utc, *midnight);
if let Ok(format_date) = parsed_date {
let formatted_date = format_date.format(&args.flag_formatstr).to_string();
if formatted_date.ends_with("T00:00:00+00:00") {
cell = formatted_date[..10].to_string();
} else {
cell = formatted_date;
}
}
} else if args.cmd_geocode && !cell.is_empty() {
let search_result = search_cached(&cell, &args.flag_formatstr);
if let Some(geocoded_result) = search_result {
cell = geocoded_result;
}
}
match &args.flag_new_column {
Some(_) => {
record.push_field(&cell);
}
None => {
record = replace_column_value(&record, column_index, &cell);
}
}
wtr.write_record(&record)?;
}
if !args.flag_quiet {
if args.cmd_geocode {
use cached::Cached;
use thousands::Separable;
let cache = SEARCH_CACHED.lock().unwrap();
let cache_size = cache.cache_size();
let hits = cache.cache_hits().unwrap();
let misses = cache.cache_misses().unwrap();
let hit_ratio = (hits as f64 / (hits + misses) as f64) * 100.0;
progress.set_message(format!(
" of {} records. Geocode cache hit ratio: {:.2}% - {} entries",
record_count.separate_with_commas(),
hit_ratio,
cache_size.separate_with_commas(),
));
}
util::finish_progress(&progress);
}
Ok(wtr.flush()?)
}
#[inline]
fn apply_operations(operations: &[&str], cell: &mut String, comparand: &str, replacement: &str) {
for op in operations {
match op.as_ref() {
"len" => {
*cell = cell.len().to_string();
}
"lower" => {
*cell = cell.to_lowercase();
}
"upper" => {
*cell = cell.to_uppercase();
}
"squeeze" => {
let squeezer: &'static Regex = regex!(r"\s+");
*cell = squeezer.replace_all(cell, " ").to_string();
}
"trim" => {
*cell = String::from(cell.trim());
}
"ltrim" => {
*cell = String::from(cell.trim_start());
}
"rtrim" => {
*cell = String::from(cell.trim_end());
}
"mtrim" => {
let chars_to_trim: &[char] = &comparand.chars().collect::<Vec<_>>();
*cell = String::from(cell.trim_matches(chars_to_trim));
}
"mltrim" => {
*cell = String::from(cell.trim_start_matches(comparand));
}
"mrtrim" => {
*cell = String::from(cell.trim_end_matches(comparand));
}
"titlecase" => {
*cell = titlecase(cell);
}
"replace" => {
*cell = cell.replace(comparand, replacement);
}
"regex_replace" => {
let regexreplace =
REGEX_REPLACE.get_or_init(|| regex::Regex::new(&comparand).unwrap());
*cell = regexreplace.replace_all(cell, replacement).to_string();
}
"censor_check" | "censor" => {
let censor = CENSOR.get_or_init(|| {
let mut censored_words = Censor::Standard + Zealous + Sex;
for (_pos, word) in comparand.split(',').enumerate() {
censored_words = censored_words + word.trim();
}
censored_words
});
if *op == "censor_check" {
*cell = censor.check(cell).to_string();
} else {
*cell = censor.censor(cell);
}
}
"currencytonum" => {
let currency_value = Currency::from_str(cell);
if let Ok(currency_val) = currency_value {
// its kludgy as currency is stored as BigInt, with
// 1 currency unit being 100 coins
let currency_coins = currency_val.value();
let coins = format!("{:03}", ¤cy_coins);
let coinlen = coins.len();
if coinlen > 2 && coins != "000" {
let decpoint = coinlen - 2;
let coin_num = &coins[..decpoint];
let coin_frac = &coins[decpoint..];
*cell = format!("{}.{}", coin_num, coin_frac);
}
}
}
"simdl" => {
*cell = damerau_levenshtein(cell, comparand).to_string();
}
"simdln" => {
*cell = normalized_damerau_levenshtein(cell, comparand).to_string();
}
"simjw" => {
*cell = jaro_winkler(cell, comparand).to_string();
}
"simsd" => {
*cell = sorensen_dice(cell, comparand).to_string();
}
"simhm" => {
let ham_val = hamming(cell, comparand);
match ham_val {
Ok(val) => *cell = val.to_string(),
Err(_) => *cell = String::from("ERROR: Different lengths"),
}
}
"simod" => *cell = osa_distance(cell, comparand).to_string(),
"eudex" => {
let eudex_comparand_hash =
EUDEX_COMPARAND_HASH.get_or_init(|| eudex::Hash::new(&comparand));
let cell_hash = Hash::new(cell);
*cell = format!("{}", (cell_hash - *eudex_comparand_hash).similar());
}
_ => {} // this also handles copy, which is a noop
}
}
}
#[cached(
key = "String",
convert = r#"{ format!("{}", cell) }"#,
option = true,
sync_writes = false
)]
fn search_cached(cell: &str, formatstr: &str) -> Option<String> {
let geocoder = GEOCODER
.get_or_init(|| ReverseGeocoder::new(LOCS.get_or_init(|| Locations::from_memory())));
let locregex: &'static Regex =
regex!(r"(?-u)([+-]?[0-9]+\.?[0-9]*|\.[0-9]+),\s*([+-]?[0-9]+\.?[0-9]*|\.[0-9]+)");
let loccaps = locregex.captures(cell);
if let Some(loccaps) = loccaps {
let lat = loccaps[1].to_string().parse::<f64>().unwrap_or_default();
let long = loccaps[2].to_string().parse::<f64>().unwrap_or_default();
if (-90.0..=90.00).contains(&lat) && (-180.0..=180.0).contains(&long) {
let search_result = geocoder.search((lat, long));
if let Some(locdetails) = search_result {
let geocoded_result = match formatstr {
"%+" | "city-state" => format!(
"{name}, {admin1}",
name = locdetails.record.name,
admin1 = locdetails.record.admin1,
),
"city-country" => format!(
"{name}, {admin3}",
name = locdetails.record.name,
admin3 = locdetails.record.admin3
),
"city-state-county" | "city-admin1-country" => format!(
"{name}, {admin1} {admin3}",
name = locdetails.record.name,
admin1 = locdetails.record.admin1,
admin3 = locdetails.record.admin3
),
"city" => locdetails.record.name.to_string(),
"county" | "admin2" => locdetails.record.admin2.to_string(),
"state" | "admin1" => locdetails.record.admin1.to_string(),
"county-country" | "admin2-country" => format!(
"{admin2}, {admin3}",
admin2 = locdetails.record.admin2,
admin3 = locdetails.record.admin3
),
"county-state-country" | "admin2-admin1-country" => format!(
"{admin2}, {admin1} {admin3}",
admin2 = locdetails.record.admin2,
admin1 = locdetails.record.admin1,
admin3 = locdetails.record.admin3
),
"country" => locdetails.record.admin3.to_string(),
_ => locdetails.record.name.to_string(),
};
Some(geocoded_result)
} else {
None
}
} else {
None
}
} else {
None
}
}