-
Notifications
You must be signed in to change notification settings - Fork 71
/
validate.rs
1777 lines (1556 loc) · 65.3 KB
/
validate.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
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
static USAGE: &str = r#"
Validates CSV data using two modes:
JSON SCHEMA VALIDATION MODE:
===========================
This mode is invoked if a JSON Schema file (draft 2020-12) is provided.
The CSV data is validated against the JSON Schema. If the CSV data is valid, no output
files are created and the command returns an exit code of 0.
If invalid records are found, they are put into an "invalid" file, with the rest of the
records put into a "valid"" file.
A "validation-errors.tsv" report is also created with the following columns:
* row_number: the row number of the invalid record
* field: the field name of the invalid field
* error: a validation error message detailing why the field is invalid
It uses the JSON Schema Validation Specification (draft 2020-12) to validate the CSV.
It validates the structure of the file, as well as the data types and domain/range of the fields.
See https://json-schema.org/draft/2020-12/json-schema-validation.html
qsv supports a custom format - `currency`. This format will only accept a valid currency, defined as:
1. ISO Currency Symbol (optional): This is the ISO 4217 three-character code or currency symbol
(e.g. USD, EUR, JPY, $, €, ¥, etc.)
2. Amount: This is the numerical value of the currency. More than 2 decimal places are allowed.
3. Formats: Valid currency formats include:
Standard: $1,000.00 or USD1000.00
Negative amounts: ($100.00) or -$100.00
Different styles: 1.000,00 (used in some countries for euros)
qsv also supports a custom keyword - `dynamicEnum`. It allows for dynamic validation against a CSV.
This is useful for validating against a set of values unknown at the time of schema creation or
when the set of valid values is dynamic or too large to hardcode into the schema.
`dynamicEnum` can be used to validate against a CSV file on the local filesystem or a URL
(http/https, dathere and ckan schemes supported). The "dynamicEnum" value has the form:
// qsvlite binary variant only supports URIs which can be files on the local filesystem
// or remote files (http and https schemes supported)
dynamicEnum = "URI"
// on other qsv binary variants, dynamicEnum has expanded functionality
dynamicEnum = "[cache_name;cache_age]|URI" where cache_name and cache_age are optional
// get data.csv; cache it as data.csv with a default cache age of 3600 seconds
// i.e. the cached data.csv expires after 1 hour
dynamicEnum = "https://example.com/data.csv"
// get data.csv; cache it as custom_name.csv, cache age 600 seconds
dynamicEnum = "custom_name;600|https://example.com/data.csv"
// get data.csv; cache it as data.csv, cache age 800 seconds
dynamicEnum = ";800|https://example.com/data.csv"
// get the top matching result for nyc_neighborhoods (signaled by trailing ?),
// cache it as nyc_neighborhood_data.csv (NOTE: cache name is required when using CKAN scheme)
// with a default cache age of 3600 seconds
// be sure to set --ckan-api, otherwise it will default to datHere's CKAN (data.dathere.com)
dynamicEnum = "nyc_neighborhood_data|ckan:://nyc_neighborhoods?"
// get CKAN resource with id 1234567, cache it as resname, 3600 secs cache age
// note that if the resource is a private resource, you'll need to set --ckan-token
dynamicEnum = "resname|ckan:://1234567"
// same as above but with a cache age of 100 seconds
dynamicEnum = "resname;100|ckan:://1234567
// get us_states.csv from datHere lookup tables
dynamicEnum = "dathere://us_states.csv"
Only the first column of the CSV file is read and used for validation.
You can create a JSON Schema file from a reference CSV file using the `qsv schema` command.
Once the schema is created, you can fine-tune it to your needs and use it to validate other CSV
files that have the same structure.
Be sure to select a "training" CSV file that is representative of the data you want to validate
when creating a schema. The data types, domain/range and regular expressions inferred from the
reference CSV file should be appropriate for the data you want to validate.
Typically, after creating a schema, you should edit it to fine-tune each field's inferred
validation rules.
For example, if we created a JSON schema file called "reference.schema.json" using the `schema` command.
And want to validate "mydata.csv" which we know has validation errors, the output files from running
`qsv validate mydata.csv reference.schema.json` are:
* mydata.csv.valid
* mydata.csv.invalid
* mydata.csv.validation-errors.tsv
With an exit code of 1 to indicate a validation error.
If we validate another CSV file, "mydata2.csv", which we know is valid, there are no output files,
and the exit code is 0.
If piped from stdin, the filenames will use `stdin.csv` as the base filename. For example:
`cat mydata.csv | qsv validate reference.schema.json`
* stdin.csv.valid
* stdin.csv.invalid
* stdin.csv.validation-errors.tsv
RFC 4180 VALIDATION MODE:
========================
If run without a JSON Schema file, the CSV is validated for RFC 4180 CSV standard compliance
(see https://github.com/jqnatividad/qsv#rfc-4180-csv-standard).
It also confirms if the CSV is UTF-8 encoded.
For both modes, returns exit code 0 when the CSV file is valid, exitcode > 0 otherwise.
If all records are valid, no output files are produced.
For examples, see the tests included in this file (denoted by '#[test]') or see
https://github.com/jqnatividad/qsv/blob/master/tests/test_validate.rs.
Usage:
qsv validate [options] [<input>] [<json-schema>]
qsv validate --help
Validate arguments:
<input> Input CSV file to validate. If not provided, will read from stdin.
<json-schema> JSON Schema file to validate against. If not provided, `validate`
will run in RFC 4180 validation mode. The file can be a local file
or a URL (http and https schemes supported).
Validate options:
--trim Trim leading and trailing whitespace from fields before validating.
--fail-fast Stops on first error.
--valid <suffix> Valid record output file suffix. [default: valid]
--invalid <suffix> Invalid record output file suffix. [default: invalid]
--json When validating without a schema, return the RFC 4180 check
as a JSON file instead of a message.
--pretty-json Same as --json, but pretty printed.
--valid-output <file> Change validation mode behavior so if ALL rows are valid, to pass it to
output, return exit code 1, and set stderr to the number of valid rows.
Setting this will override the default behavior of creating
a valid file only when there are invalid records.
To send valid records to stdout, use `-` as the filename.
-j, --jobs <arg> The number of jobs to run in parallel.
When not set, the number of jobs is set to the
number of CPUs detected.
-b, --batch <size> The number of rows per batch to load into memory,
before running in parallel. Automatically determined
for CSV files with more than 50000 rows.
Set to 0 to load all rows in one batch.
Set to 1 to force batch optimization even for files with
less than 50000 rows. [default: 50000]
--timeout <seconds> Timeout for downloading json-schemas on URLs and for
'dynamicEnum' lookups on URLs. [default: 30]
--cache-dir <dir> The directory to use for caching downloaded dynamicEnum resources.
If the directory does not exist, qsv will attempt to create it.
If the QSV_CACHE_DIR envvar is set, it will be used instead.
Not available on qsvlite.
[default: ~/.qsv-cache]
--ckan-api <url> The URL of the CKAN API to use for downloading dynamicEnum
resources with the "ckan://" scheme.
If the QSV_CKAN_API envvar is set, it will be used instead.
Not available on qsvlite.
[default: https://data.dathere.com/api/3/action]
--ckan-token <token> The CKAN API token to use. Only required if downloading
private resources.
If the QSV_CKAN_TOKEN envvar is set, it will be used instead.
Not available on qsvlite.
Common options:
-h, --help Display this message
-n, --no-headers When set, the first row will not be interpreted
as headers. It will be validated with the rest
of the rows. Otherwise, the first row will always
appear as the header row in the output.
Note that this option is only valid when running
in RFC 4180 validation mode as JSON Schema validation
requires headers.
-d, --delimiter <arg> The field delimiter for reading CSV data.
Must be a single character.
-p, --progressbar Show progress bars. Not valid for stdin.
-Q, --quiet Do not display validation summary message.
"#;
use std::{
env,
fs::File,
io::{BufReader, BufWriter, Read, Write},
str,
sync::{
atomic::{AtomicU16, Ordering},
OnceLock,
},
};
use ahash::{HashSet, HashSetExt};
use csv::ByteRecord;
use indicatif::HumanCount;
#[cfg(any(feature = "feature_capable", feature = "lite"))]
use indicatif::{ProgressBar, ProgressDrawTarget};
use jsonschema::{
output::BasicOutput,
paths::{LazyLocation, Location},
Keyword, ValidationError, Validator,
};
use log::{debug, info, log_enabled};
use qsv_currency::Currency;
use rayon::{
iter::{IndexedParallelIterator, ParallelIterator},
prelude::IntoParallelRefIterator,
};
use serde::{Deserialize, Serialize};
use serde_json::{json, value::Number, Map, Value};
#[cfg(feature = "lite")]
use tempfile::NamedTempFile;
#[cfg(not(feature = "lite"))]
use crate::lookup;
#[cfg(not(feature = "lite"))]
use crate::lookup::{load_lookup_table, LookupTableOptions};
use crate::{
config::{Config, Delimiter, DEFAULT_WTR_BUFFER_CAPACITY},
util, CliError, CliResult,
};
// to save on repeated init/allocs
static NULL_TYPE: OnceLock<Value> = OnceLock::new();
static TIMEOUT_SECS: AtomicU16 = AtomicU16::new(30);
#[cfg(not(feature = "lite"))]
static QSV_CACHE_DIR: OnceLock<String> = OnceLock::new();
#[cfg(not(feature = "lite"))]
static CKAN_API: OnceLock<String> = OnceLock::new();
#[cfg(not(feature = "lite"))]
static CKAN_TOKEN: OnceLock<Option<String>> = OnceLock::new();
static DELIMITER: OnceLock<Option<Delimiter>> = OnceLock::new();
/// write to stderr and log::error, using ValidationError
macro_rules! fail_validation_error {
($($t:tt)*) => {{
use log::error;
let err = format!($($t)*);
error!("{err}");
Err(ValidationError::custom(
Location::default(),
Location::default(),
&Value::Null,
err,
))
}};
}
#[derive(Deserialize)]
#[allow(dead_code)]
struct Args {
flag_trim: bool,
flag_fail_fast: bool,
flag_valid: Option<String>,
flag_invalid: Option<String>,
flag_json: bool,
flag_pretty_json: bool,
flag_valid_output: Option<String>,
flag_jobs: Option<usize>,
flag_batch: usize,
flag_no_headers: bool,
flag_delimiter: Option<Delimiter>,
flag_progressbar: bool,
flag_quiet: bool,
arg_input: Option<String>,
arg_json_schema: Option<String>,
flag_timeout: u16,
flag_cache_dir: String,
flag_ckan_api: String,
flag_ckan_token: Option<String>,
}
enum JSONtypes {
String,
Number,
Integer,
Boolean,
Unsupported,
}
#[derive(Serialize, Deserialize)]
struct RFC4180Struct {
delimiter_char: char,
header_row: bool,
quote_char: char,
num_records: u64,
num_fields: u64,
fields: Vec<String>,
}
impl From<ValidationError<'_>> for CliError {
fn from(err: ValidationError) -> CliError {
CliError::Other(format!("{err}"))
}
}
#[inline]
/// Checks if a given string represents a valid currency format.
fn currency_format_checker(s: &str) -> bool {
Currency::from_str(s).map_or(false, |c| {
if c.symbol().is_empty() {
true // allow empty currency symbol
} else {
qsv_currency::Currency::is_iso_currency(&c)
}
})
}
struct DynEnumValidator {
dynenum_set: HashSet<String>,
}
impl DynEnumValidator {
#[allow(dead_code)]
const fn new(dynenum_set: HashSet<String>) -> Self {
Self { dynenum_set }
}
}
impl Keyword for DynEnumValidator {
#[inline]
fn validate<'instance>(
&self,
instance: &'instance Value,
instance_path: &LazyLocation,
) -> Result<(), ValidationError<'instance>> {
if self.dynenum_set.contains(instance.as_str().unwrap()) {
Ok(())
} else {
let error = ValidationError::custom(
Location::default(),
instance_path.into(),
instance,
format!("{instance} is not a valid dynamicEnum value"),
);
Err(error)
}
}
#[inline]
fn is_valid(&self, instance: &Value) -> bool {
if let Value::String(s) = instance {
self.dynenum_set.contains(s)
} else {
false
}
}
}
/// Parse the dynamicEnum URI string to extract cache name and age
/// Format: "[cache_name;cache_age]|URL" where cache_name and cache_age are optional
#[cfg(not(feature = "lite"))]
fn parse_dynenum_uri(uri: &str) -> (String, i64) {
const DEFAULT_CACHE_AGE_SECS: i64 = 3600; // 1 hour
const DEFAULT_LOOKUP_NAME: &str = "dynenum";
if !uri.contains('|') {
return (
uri.split('/')
.last()
.unwrap_or(DEFAULT_LOOKUP_NAME)
.trim_end_matches(".csv")
.to_string(),
DEFAULT_CACHE_AGE_SECS,
);
}
let cache_config = uri.split('|').next().unwrap();
if !cache_config.contains(';') {
return (cache_config.to_owned(), DEFAULT_CACHE_AGE_SECS);
}
let parts: Vec<&str> = cache_config.split(';').collect();
let cache_age = parts[1].parse::<i64>().unwrap_or(DEFAULT_CACHE_AGE_SECS);
let cache_name = parts[0].to_string();
(
if cache_name.is_empty() {
cache_config.to_string()
} else {
cache_name
},
cache_age,
)
}
/// Factory function that creates a DynEnumValidator for validating against dynamic enums loaded
/// from CSV files.
///
/// This function takes a CSV file path or URL and loads its first column into a HashSet to validate
/// against. The CSV can be loaded from:
/// - Local filesystem
/// - HTTP/HTTPS URLs
/// - CKAN resources (requires --ckan-api and optionally --ckan-token)
/// - datHere lookup tables
///
/// The dynamicEnum value format is: "[cache_name;cache_age]|URL" where cache_name and cache_age are
/// optional. Examples:
/// - "https://example.com/data.csv" - Cache as data.csv with 1 hour default cache
/// - "custom_name;600|https://example.com/data.csv" - Cache as custom_name.csv for 600 seconds
/// - "resname|ckan://1234567" - Get CKAN resource ID 1234567, cache as resname.csv
///
/// # Arguments
/// * `_parent` - Parent JSON Schema object (unused)
/// * `value` - The dynamicEnum value string specifying the CSV source
/// * `location` - Location in the schema for error reporting
///
/// # Returns
/// * `Ok(Box<DynEnumValidator>)` - Validator initialized with values from first CSV column
/// * `Err(ValidationError)` - If loading/parsing CSV fails or value is not a string
#[cfg(not(feature = "lite"))]
fn dyn_enum_validator_factory<'a>(
_parent: &'a Map<String, Value>,
value: &'a Value,
location: Location,
) -> Result<Box<dyn Keyword>, ValidationError<'a>> {
let uri = value.as_str().ok_or_else(|| {
ValidationError::custom(
Location::default(),
location,
value,
"'dynamicEnum' must be set to a CSV file on the local filesystem or on a URL.",
)
})?;
let (lookup_name, cache_age_secs) = parse_dynenum_uri(uri);
// Create lookup table options
let opts = LookupTableOptions {
name: lookup_name,
uri: uri.to_string(),
cache_age_secs,
cache_dir: QSV_CACHE_DIR.get().unwrap().to_string(),
delimiter: DELIMITER.get().copied().flatten(),
ckan_api_url: CKAN_API.get().cloned(),
#[allow(clippy::redundant_closure_for_method_calls)]
ckan_token: CKAN_TOKEN.get().and_then(|t| t.clone()),
timeout_secs: TIMEOUT_SECS.load(Ordering::Relaxed),
};
// Load the lookup table
let lookup_result = match load_lookup_table(&opts) {
Ok(result) => result,
Err(e) => return fail_validation_error!("Error loading dynamicEnum lookup table: {}", e),
};
// Read the first column into a HashSet
let mut enum_set = HashSet::with_capacity(50);
let rconfig = Config::new(Some(lookup_result.filepath).as_ref());
let mut rdr = match rconfig.flexible(true).comment(Some(b'#')).reader() {
Ok(reader) => reader,
Err(e) => return fail_validation_error!("Error opening dynamicEnum file: {e}"),
};
for result in rdr.records() {
match result {
Ok(record) => {
if let Some(value) = record.get(0) {
enum_set.insert(value.to_owned());
}
},
Err(e) => return fail_validation_error!("Error reading dynamicEnum file - {e}"),
};
}
Ok(Box::new(DynEnumValidator::new(enum_set)))
}
#[cfg(feature = "lite")]
fn dyn_enum_validator_factory<'a>(
_parent: &'a Map<String, Value>,
value: &'a Value,
location: Location,
) -> Result<Box<dyn Keyword>, ValidationError<'a>> {
if let Value::String(uri) = value {
let temp_download = match NamedTempFile::new() {
Ok(file) => file,
Err(e) => return fail_validation_error!("Failed to create temporary file: {}", e),
};
let dynenum_path = if uri.starts_with("http") {
let valid_url = reqwest::Url::parse(uri).map_err(|e| {
ValidationError::custom(
Location::default(),
location,
value,
format!("Error parsing dynamicEnum URL: {e}"),
)
})?;
// download the CSV file from the URL
let download_timeout = TIMEOUT_SECS.load(Ordering::Relaxed);
let future = util::download_file(
valid_url.as_str(),
temp_download.path().to_path_buf(),
false,
None,
Some(download_timeout),
None,
);
match tokio::runtime::Runtime::new() {
Ok(runtime) => {
if let Err(e) = runtime.block_on(future) {
return fail_validation_error!("Error downloading dynamicEnum file - {e}");
}
},
Err(e) => {
return fail_validation_error!("Error creating Tokio runtime - {e}");
},
}
temp_download.path().to_str().unwrap().to_string()
} else {
// its a local file
let uri_path = std::path::Path::new(uri);
let uri_exists = uri_path.exists();
if !uri_exists {
return fail_validation_error!("dynamicEnum file not found - {uri}");
}
uri_path.to_str().unwrap().to_string()
};
// read the first column into a HashSet
let mut enum_set = HashSet::with_capacity(50);
let rconfig = Config::new(Some(dynenum_path).as_ref());
let mut rdr = match rconfig.flexible(true).reader() {
Ok(reader) => reader,
Err(e) => return fail_validation_error!("Error opening dynamicEnum file: {e}"),
};
for result in rdr.records() {
match result {
Ok(record) => {
if let Some(value) = record.get(0) {
enum_set.insert(value.to_owned());
}
},
Err(e) => return fail_validation_error!("Error reading dynamicEnum file - {e}"),
};
}
Ok(Box::new(DynEnumValidator::new(enum_set)))
} else {
Err(ValidationError::custom(
Location::default(),
location,
value,
"'dynamicEnum' must be set to a CSV file on the local filesystem or on a URL.",
))
}
}
pub fn run(argv: &[&str]) -> CliResult<()> {
let args: Args = util::get_args(USAGE, argv)?;
TIMEOUT_SECS.store(
util::timeout_secs(args.flag_timeout)? as u16,
Ordering::Relaxed,
);
let mut rconfig = Config::new(args.arg_input.as_ref()).no_headers(args.flag_no_headers);
if args.flag_delimiter.is_some() {
rconfig = rconfig.delimiter(args.flag_delimiter);
}
DELIMITER.set(args.flag_delimiter).unwrap();
let mut rdr = rconfig.reader()?;
// if no JSON Schema supplied, only let csv reader RFC4180-validate csv file
if args.arg_json_schema.is_none() {
// just read csv file and let csv reader report problems
// since we're using csv::StringRecord, this will also detect non-utf8 sequences
let flag_json = args.flag_json || args.flag_pretty_json;
let flag_pretty_json = args.flag_pretty_json;
// first, let's validate the header row
let mut header_msg = String::new();
let mut header_len = 0_usize;
let mut field_vec: Vec<String> = Vec::new();
if !args.flag_no_headers {
let fields_result = rdr.headers();
match fields_result {
Ok(fields) => {
header_len = fields.len();
field_vec.reserve(header_len);
for field in fields {
field_vec.push(field.to_string());
}
let field_list = field_vec.join(r#"", ""#);
header_msg = format!(
"{} Columns: (\"{field_list}\");",
HumanCount(header_len as u64)
);
},
Err(e) => {
// we're returning a JSON error for the header,
// so we have more machine-friendly details
if flag_json {
// there's a UTF-8 error, so we report utf8 error metadata
if let csv::ErrorKind::Utf8 { pos, err } = e.kind() {
let header_error = json!({
"errors": [{
"title" : "Header UTF-8 validation error",
"detail" : format!("{e}"),
"meta": {
"record_position": format!("{pos:?}"),
"record_error": format!("{err}"),
}
}]
});
let json_error = if flag_pretty_json {
serde_json::to_string_pretty(&header_error).unwrap()
} else {
header_error.to_string()
};
return fail_encoding_clierror!("{json_error}");
}
// it's not a UTF-8 error, so we report a generic
// header validation error
let header_error = json!({
"errors": [{
"title" : "Header Validation error",
"detail" : format!("{e}"),
}]
});
let json_error = if flag_pretty_json {
serde_json::to_string_pretty(&header_error).unwrap()
} else {
header_error.to_string()
};
return fail_encoding_clierror!("{json_error}");
}
// we're not returning a JSON error, so we can use
// a user-friendly error message with suggestions
if let csv::ErrorKind::Utf8 { pos, err } = e.kind() {
return fail_encoding_clierror!(
"non-utf8 sequence detected in header, position {pos:?}.\n{err}\nUse \
`qsv input` to fix formatting and to handle non-utf8 sequences.\n
You may also want to transcode your data to UTF-8 first using `iconv` \
or `recode`."
);
}
// its not a UTF-8 error, report a generic header validation error
return fail_clierror!("Header Validation error: {e}.");
},
}
}
// Now, let's validate the rest of the records the fastest way possible.
// We do this by using csv::ByteRecord, which does not validate utf8
// making for higher throughput and lower memory usage compared to csv::StringRecord
// which validates each field SEPARATELY as a utf8 string.
// Combined with simdutf8::basic::from_utf8(), we utf8-validate the entire record in one go
// as a slice of bytes, this approach is much faster than csv::StringRecord's
// per-field validation.
let mut record = csv::ByteRecord::with_capacity(500, header_len);
let mut result;
let mut record_idx: u64 = 0;
'rfc4180_check: loop {
result = rdr.read_byte_record(&mut record);
if let Err(e) = result {
// read_byte_record() does not validate utf8, so we know this is not a utf8 error
if flag_json {
// we're returning a JSON error, so we have more machine-friendly details
// using the JSON API error format
let validation_error = json!({
"errors": [{
"title" : "Validation error",
"detail" : format!("{e}"),
"meta": {
"last_valid_record": format!("{record_idx}"),
}
}]
});
let json_error = if flag_pretty_json {
serde_json::to_string_pretty(&validation_error).unwrap()
} else {
validation_error.to_string()
};
return fail!(json_error);
}
// we're not returning a JSON error, so we can use a
// user-friendly error message with a fixlengths suggestion
if let csv::ErrorKind::UnequalLengths {
expected_len: _,
len: _,
pos: _,
} = e.kind()
{
return fail_clierror!(
"Validation error: {e}.\nUse `qsv fixlengths` to fix record length issues."
);
}
return fail_clierror!("Validation error: {e}.\nLast valid record: {record_idx}");
}
// use SIMD accelerated UTF-8 validation, validate the entire record in one go
if simdutf8::basic::from_utf8(record.as_slice()).is_err() {
// there's a UTF-8 error, so we report utf8 error metadata
if flag_json {
let validation_error = json!({
"errors": [{
"title" : "UTF-8 validation error",
"detail" : "Cannot parse CSV record as UTF-8",
"meta": {
"last_valid_record": format!("{record_idx}"),
}
}]
});
let json_error = if flag_pretty_json {
serde_json::to_string_pretty(&validation_error).unwrap()
} else {
validation_error.to_string()
};
return fail_encoding_clierror!("{json_error}");
}
// we're not returning a JSON error, so we can use a
// user-friendly error message with utf8 transcoding suggestions
return fail_encoding_clierror!(
"non-utf8 sequence at record {record_idx}.\nUse `qsv input` to fix formatting \
and to handle non-utf8 sequences.\nYou may also want to transcode your data \
to UTF-8 first using `iconv` or `recode`."
);
}
if result.is_ok_and(|more_data| !more_data) {
// we've read the CSV to the end, so break out of loop
break 'rfc4180_check;
}
record_idx += 1;
} // end rfc4180_check loop
// if we're here, we know the CSV is valid
let msg = if flag_json {
let rfc4180 = RFC4180Struct {
delimiter_char: rconfig.get_delimiter() as char,
header_row: !rconfig.no_headers,
quote_char: rconfig.quote as char,
num_records: record_idx,
num_fields: header_len as u64,
fields: field_vec,
};
if flag_pretty_json {
serde_json::to_string_pretty(&rfc4180).unwrap()
} else {
serde_json::to_string(&rfc4180).unwrap()
}
} else {
let delim_display = if rconfig.get_delimiter() == b'\t' {
"TAB".to_string()
} else {
(rconfig.get_delimiter() as char).to_string()
};
format!(
"Valid: {header_msg} Records: {}; Delimiter: {delim_display}",
HumanCount(record_idx)
)
};
if !args.flag_quiet {
woutinfo!("{msg}");
}
// we're done when validating without a schema
return Ok(());
}
// if we're here, we're validating with a JSON Schema
// JSONSchema validation requires headers
if args.flag_no_headers {
return fail_clierror!("Cannot validate CSV without headers against a JSON Schema.");
}
// prep progress bar
#[cfg(any(feature = "feature_capable", feature = "lite"))]
let progress = ProgressBar::with_draw_target(None, ProgressDrawTarget::stderr_with_hz(5));
#[cfg(any(feature = "feature_capable", feature = "lite"))]
let show_progress =
(args.flag_progressbar || util::get_envvar_flag("QSV_PROGRESSBAR")) && !rconfig.is_stdin();
#[cfg(any(feature = "feature_capable", feature = "lite"))]
if show_progress {
// for full row count, prevent CSV reader from aborting on inconsistent column count
rconfig = rconfig.flexible(true);
let record_count = util::count_rows(&rconfig)?;
rconfig = rconfig.flexible(false);
util::prep_progress(&progress, record_count);
} else {
progress.set_draw_target(ProgressDrawTarget::hidden());
}
let headers = rdr.byte_headers()?.clone();
let header_len = headers.len();
#[cfg(not(feature = "lite"))]
let qsv_cache_dir = lookup::set_qsv_cache_dir(&args.flag_cache_dir)?;
#[cfg(not(feature = "lite"))]
QSV_CACHE_DIR.set(qsv_cache_dir)?;
// check the QSV_CKAN_API environment variable
#[cfg(not(feature = "lite"))]
CKAN_API.set(if let Ok(api) = std::env::var("QSV_CKAN_API") {
api
} else {
args.flag_ckan_api.clone()
})?;
// check the QSV_CKAN_TOKEN environment variable
#[cfg(not(feature = "lite"))]
CKAN_TOKEN
.set(if let Ok(token) = std::env::var("QSV_CKAN_TOKEN") {
Some(token)
} else {
args.flag_ckan_token.clone()
})
.unwrap();
// parse and compile supplied JSON Schema
let (schema_json, schema_compiled): (Value, Validator) =
// safety: we know the schema is_some() because we checked above
match load_json(&args.arg_json_schema.unwrap()) {
Ok(s) => {
// parse JSON string
let mut s_slice = s.as_bytes().to_vec();
match simd_json::serde::from_slice(&mut s_slice) {
Ok(json) => {
// compile JSON Schema
match Validator::options()
.with_format("currency", currency_format_checker)
.with_keyword("dynamicEnum", dyn_enum_validator_factory)
.should_validate_formats(true)
.build(&json)
{
Ok(schema) => (json, schema),
Err(e) => {
return fail_clierror!("Cannot compile JSONschema. error: {e}");
},
}
},
Err(e) => {
return fail_clierror!("Unable to parse JSONschema. error: {e}");
},
}
},
Err(e) => {
return fail_clierror!("Unable to retrieve JSONschema. error: {e}");
},
};
if log::log_enabled!(log::Level::Debug) {
// only log if debug is enabled
// as it can be quite large and expensive to deserialize the schema
debug!("schema json: {:?}", &schema_json);
}
// set this once, as this is used repeatedly in a hot loop
NULL_TYPE.set(Value::String("null".to_string())).unwrap();
// get JSON types for each column in CSV file
let header_types = get_json_types(&headers, &schema_json)?;
// how many rows read and processed as batches
let mut row_number: u64 = 0;
// how many invalid rows found
let mut invalid_count: u64 = 0;
// amortize memory allocation by reusing record
let mut record = csv::ByteRecord::with_capacity(500, header_len);
let num_jobs = util::njobs(args.flag_jobs);
// reuse batch buffer
let batch_size = util::optimal_batch_size(&rconfig, args.flag_batch, num_jobs);
let mut batch = Vec::with_capacity(batch_size);
let mut validation_results = Vec::with_capacity(batch_size);
let mut valid_flags: Vec<bool> = Vec::with_capacity(batch_size);
let mut validation_error_messages: Vec<String> = Vec::with_capacity(50);
let flag_trim = args.flag_trim;
// main loop to read CSV and construct batches for parallel processing.
// each batch is processed via Rayon parallel iterator.
// loop exits when batch is empty.
'batch_loop: loop {
for _ in 0..batch_size {
match rdr.read_byte_record(&mut record) {
Ok(true) => {
row_number += 1;
record.push_field(itoa::Buffer::new().format(row_number).as_bytes());
if flag_trim {
record.trim();
}
// we use mem::take() to avoid cloning & clearing the record
batch.push(std::mem::take(&mut record));
},
Ok(false) => break, // nothing else to add to batch
Err(e) => {
return fail_clierror!("Error reading row: {row_number}: {e}");
},
}
}
if batch.is_empty() {
// break out of infinite loop when at EOF
break 'batch_loop;
}
// do actual validation via Rayon parallel iterator
// validation_results vector should have same row count and in same order as input CSV
batch
.par_iter()
.with_min_len(1024)
.map(|record| do_json_validation(&header_types, header_len, record, &schema_compiled))
.collect_into_vec(&mut validation_results);
// write to validation error report, but keep Vec<bool> to gen valid/invalid files later
// because Rayon collect() guarantees original order, we can sequentially append results
// to vector with each batch
for result in &validation_results {
if let Some(validation_error_msg) = result {
invalid_count += 1;
valid_flags.push(false);
validation_error_messages.push(validation_error_msg.to_string());
} else {
valid_flags.push(true);
}
}
#[cfg(any(feature = "feature_capable", feature = "lite"))]
if show_progress {
progress.inc(batch.len() as u64);
}
batch.clear();
// for fail-fast, exit loop if batch has any error
if args.flag_fail_fast && invalid_count > 0 {
break 'batch_loop;
}
} // end batch loop
#[cfg(any(feature = "feature_capable", feature = "lite"))]
if show_progress {
progress.set_message(format!(
" validated {} records.",
HumanCount(progress.length().unwrap())
));
util::finish_progress(&progress);
}
if invalid_count == 0 {
// no invalid records found
// see if we need to pass all valid records to output
if let Some(valid_output) = args.flag_valid_output {
// pass all valid records to output and return exit code 1
let valid_path = if valid_output == "-" {
// write to stdout
None
} else {
Some(valid_output)
};
let mut valid_wtr = Config::new(valid_path.as_ref()).writer()?;
valid_wtr.write_byte_record(&headers)?;
let mut rdr = rconfig.reader()?;
let mut record = csv::ByteRecord::new();
while rdr.read_byte_record(&mut record)? {
valid_wtr.write_byte_record(&record)?;
}
valid_wtr.flush()?;
// return 1 as an exitcode and the number of valid rows to stderr
return fail_clierror!("{row_number}");
}
} else {
// there are invalid records. write out invalid/valid/errors output files.
// if 100% invalid, valid file isn't needed, but this is rare so OK creating empty file.
woutinfo!("Writing invalid/valid/error files...");
let input_path = args
.arg_input
.clone()
.unwrap_or_else(|| "stdin.csv".to_string());