-
Notifications
You must be signed in to change notification settings - Fork 71
/
luau.rs
1499 lines (1310 loc) · 57.6 KB
/
luau.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#"
Create multiple new computed columns, filter rows or compute aggregations by
executing a Luau script for every row (SEQUENTIAL MODE) or for
specified rows (RANDOM ACCESS MODE) of a CSV file.
The executed Luau has 3 ways to reference row columns (as strings):
1. Directly by using column name (e.g. Amount), can be disabled with -g
2. Indexing col variable by column name: col.Amount or col["Total Balance"]
3. Indexing col variable by column 1-based index: col[1], col[2], etc.
Of course, if your input has no headers, then 3. will be the only available
option.
Some usage examples:
Sum numeric columns 'a' and 'b' and call new column 'c'
$ qsv luau map c "a + b"
$ qsv luau map c "col.a + col['b']"
$ qsv luau map c "col[1] + col[2]"
There is some magic in the previous example as 'a' and 'b' are passed in
as strings (not numbers), but Luau still manages to add them up.
A more explicit way of doing it, is by using tonumber
$ qsv luau map c "tonumber(a) + tonumber(b)"
Add running total column for Amount
$ qsv luau map Total -x "tot = (tot or 0) + Amount; return tot"
Or use the --begin and --end options to compute the running & grand totals
$ qsv luau map Total --begin "tot = 0; gtotal = 0" -x \
"tot = tot + Amount; gtotal = gtotal + tot; return tot" --end "return gtotal"
Add running total column for Amount when previous balance was 900
$ qsv luau map Total -x "tot = (tot or 900) + Amount; return tot"
Convert Amount to always-positive AbsAmount and Type (debit/credit) columns
$ qsv luau map Type -x \
"if tonumber(Amount) < 0 then return 'debit' else return 'credit' end" | \
qsv luau map AbsAmount "math.abs(tonumber(Amount))"
Map multiple new columns in one pass
$ qsv luau map newcol1,newcol2,newcol3 "{cola + 1, colb + 2, colc + 3}"
Filter some rows based on numerical filtering
$ qsv luau filter "tonumber(a) > 45"
$ qsv luau filter "tonumber(a) >= tonumber(b)"
Typing long scripts on the command line gets tiresome rather quickly, so use the
"file:" prefix to read non-trivial scripts from the filesystem.
$ qsv luau map Type -B "file:init.luau" -x "file:debitcredit.luau" -E "file:end.luau"
With "luau map", if the MAIN script is invalid for a row, "<ERROR>" is returned for that row.
With "luau filter", if the MAIN script is invalid for a row, that row is not filtered.
If any row has an invalid result, an exitcode of 1 is returned and an error count is logged.
SPECIAL VARIABLES:
"_IDX" - a READ-only variable that is zero during the BEGIN script and
set to the current row number during the MAIN & END scripts.
"_IDX" is primarily used when the CSV has no index and the MAIN script evaluates each
row in sequence (SEQUENTIAL MODE).
"_INDEX" - a READ/WRITE variable that enables RANDOM ACCESS MODE when used in a script.
Setting it to a row number will change the current row to the specified row number.
It will only work, however, if the CSV has an index.
When using _INDEX, the MAIN script will keep looping and evaluate the row specified by
_INDEX until _INDEX is set to an invalid row number (e.g. negative number or to a value
greater than rowcount).
If the CSV has no index, it will abort with an error unless "qsv_autoindex()" is
called in the BEGIN script to create an index.
"_ROWCOUNT" - a READ-only variable which is zero during the BEGIN & MAIN scripts,
and set to the rowcount during the END script when the CSV has no index (SEQUENTIAL MODE).
When using _INDEX and the CSV has an index, _ROWCOUNT will be set to the rowcount
of the CSV file, even from the BEGINning (RANDOM ACCESS MODE).
"_LASTROW" - a READ-only variable that is set to the last row number of the CSV file.
It will only work, however, if the CSV has an index (RANDOM ACCESS MODE).
Luau's standard library is relatively minimal (https://luau-lang.org/library).
That's why qsv preloads the LuaDate library as date manipulation is a common data-wrangling task.
See https://tieske.github.io/date/#date-id96473 for info on how to use the LuaDate library.
Additional libraries can be loaded from the LUAU_PATH using luau's "require" function.
See http://lua-users.org/wiki/LibrariesAndBindings for a list of other libraries.
With the judicious use of "require", the BEGIN script & the special variables, one can create
variables/tables/arrays that can be used for complex aggregation operations in the END script.
TIP: When developing Luau scripts, be sure to take advantage of the "qsv_log" function to debug your script.
It will log messages to the logfile at the specified log level as specified by the QSV_LOG_LEVEL
environment variable. The first parameter to qsv_log is the log level (info, warn, error, debug, trace)
of the log message and will default to "info" if an invalid log level is specified.
You can add as many as 255 addl parameters which will be concatenated and logged as a single message.
There are more Luau helper functions in addition to "qsv_log": "qsv_break", "qsv_insertrecord",
"qsv_autoindex", and "qsv_coalesce". Detailed descriptions of these helpers can be found in the
"setup_helpers" section at the bottom of this file.
For more detailed examples, see https://github.com/jqnatividad/qsv/blob/master/tests/test_luau.rs.
Usage:
qsv luau map [options] -n <main-script> [<input>]
qsv luau map [options] <new-columns> <main-script> [<input>]
qsv luau filter [options] <main-script> [<input>]
qsv luau map --help
qsv luau filter --help
qsv luau --help
Luau arguments:
All <script> arguments/options can either be the Luau code, or if it starts with "file:",
the filepath from which to load the script.
Instead of using the --begin and --end options, you can also embed BEGIN and END scripts in the
MAIN script by using the "BEGIN { ... }!" and "END { ... }!" syntax.
The BEGIN script is embedded in the MAIN script by adding a BEGIN block at the top of the script.
The BEGIN block must start at the beggining of the line. It can contain multiple statements.
The END script is embedded in the MAIN script by adding an END block at the bottom of the script.
The END block must start at the beginning of the line. It can contain multiple statements.
<new-columns> is a comma-separated list of new computed columns to add to the CSV when using
"luau map". Note that the new columns are added to the CSV after the existing columns.
Luau options:
-x, --exec exec[ute] Luau script, instead of the default eval[uate].
eval (default) expects just a single Luau expression,
while exec expects one or more statements, allowing
full-fledged Luau programs. This only applies to the main-script
argument, not the BEGIN & END scripts.
-g, --no-globals Don't create Luau global variables for each column, only col.
Useful when some column names mask standard Luau globals.
Note: access to Luau globals thru _G remains even without -g.
-r, --remap Only the listed new columns are written to the output CSV.
Only applies to "map" subcommand.
-B, --begin <script> Luau script/file to execute in the BEGINning, before processing
the CSV with the main-script.
Typically used to initialize global variables.
Takes precedence over an embedded BEGIN script.
-E, --end <script> Luau script/file to execute at the END, after processing the
CSV with the main-script.
Typically used for aggregations.
The output of the END script is sent to stderr.
Takes precedence over an embedded END script.
--luau-path <pattern> The LUAU_PATH pattern to use from which the scripts
can "require" lua/luau library files from.
See https://www.lua.org/pil/8.1.html
[default: ?;?.luau;?.lua]
--max-errors <count> The maximum number of errors to tolerate before aborting.
Set to zero to disable error limit.
[default: 100]
--timeout <seconds> Timeout for downloading lookup_tables using
the qsv_register_lookup() helper function.
[default: 15]
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: ,)
-p, --progressbar Show progress bars. Not valid for stdin.
Also not valid when "_INDEX" var is used
for random access.
"#;
use std::{
env, fs, io,
io::Write,
path::Path,
sync::atomic::{AtomicBool, AtomicI8, AtomicU16, Ordering},
};
use csv_index::RandomAccessSimple;
#[cfg(any(feature = "full", feature = "lite"))]
use indicatif::{ProgressBar, ProgressDrawTarget};
use log::{debug, info, log_enabled};
use mlua::{Lua, LuaSerdeExt, Value};
use serde::Deserialize;
use tempfile;
use crate::{
config::{Config, Delimiter},
util, CliError, CliResult,
};
#[derive(Deserialize)]
struct Args {
cmd_map: bool,
cmd_filter: bool,
arg_new_columns: Option<String>,
arg_main_script: String,
arg_input: Option<String>,
flag_exec: bool,
flag_no_globals: bool,
flag_remap: bool,
flag_begin: Option<String>,
flag_end: Option<String>,
flag_luau_path: String,
flag_output: Option<String>,
flag_no_headers: bool,
flag_delimiter: Option<Delimiter>,
flag_progressbar: bool,
flag_max_errors: usize,
flag_timeout: u16,
}
impl From<mlua::Error> for CliError {
fn from(err: mlua::Error) -> CliError {
CliError::Other(err.to_string())
}
}
static QSV_BREAK: AtomicBool = AtomicBool::new(false);
static QSV_SKIP: AtomicBool = AtomicBool::new(false);
// there are 3 stages: 1-BEGIN, 2-MAIN, 3-END
const BEGIN_STAGE: i8 = 1;
const MAIN_STAGE: i8 = 2;
const END_STAGE: i8 = 3;
static LUAU_STAGE: AtomicI8 = AtomicI8::new(0);
static TIMEOUT_SECS: AtomicU16 = AtomicU16::new(15);
pub fn run(argv: &[&str]) -> CliResult<()> {
let args: Args = util::get_args(USAGE, argv)?;
if args.flag_timeout > 3_600 {
return fail!("Timeout cannot be more than 3,600 seconds (1 hour).");
} else if args.flag_timeout == 0 {
return fail!("Timeout cannot be zero.");
}
info!("TIMEOUT: {} secs", args.flag_timeout);
TIMEOUT_SECS.store(args.flag_timeout, Ordering::Relaxed);
let rconfig = Config::new(&args.arg_input)
.delimiter(args.flag_delimiter)
.no_headers(args.flag_no_headers);
let mut luau_script = if let Some(script_filepath) = args.arg_main_script.strip_prefix("file:")
{
match fs::read_to_string(script_filepath) {
Ok(file_contents) => file_contents,
Err(e) => return fail_clierror!("Cannot load Luau file: {e}"),
}
} else {
args.arg_main_script.clone()
};
// in Luau, comments begin with two consecutive hyphens
// let's remove them, so we don't falsely trigger on commented special variables
let comment_remover_re = regex::Regex::new(r"(?m)(^\s*?--.*?$)").unwrap();
luau_script = comment_remover_re.replace_all(&luau_script, "").to_string();
let mut index_file_used = luau_script.contains("_INDEX") || luau_script.contains("_LASTROW");
// check if the main script has BEGIN and END blocks
// and if so, extract them and remove them from the main script
let begin_re = regex::Regex::new(r"(?ms)^BEGIN \{(?P<begin_block>.*?)\}!").unwrap();
let end_re = regex::Regex::new(r"(?ms)^END \{(?P<end_block>.*?)\}!").unwrap();
let mut embedded_begin_script = String::new();
let mut embedded_end_script = String::new();
let mut main_script = luau_script.clone();
if let Some(caps) = begin_re.captures(&luau_script) {
embedded_begin_script = caps["begin_block"].to_string();
let begin_block_replace = format!("BEGIN {{{embedded_begin_script}}}!");
debug!("begin_block_replace: {begin_block_replace:?}");
main_script = main_script.replace(&begin_block_replace, "");
}
if let Some(caps) = end_re.captures(&main_script) {
embedded_end_script = caps["end_block"].to_string();
let end_block_replace = format!("END {{{embedded_end_script}}}!");
main_script = main_script.replace(&end_block_replace, "");
}
luau_script = main_script;
let mut main_script = if args.flag_exec {
String::new()
} else {
String::from("return ")
};
main_script.push_str(luau_script.trim());
debug!("MAIN script: {main_script:?}");
// check if a BEGIN script was specified
let begin_script = if let Some(ref begin) = args.flag_begin {
let discrete_begin = if let Some(begin_filepath) = begin.strip_prefix("file:") {
match fs::read_to_string(begin_filepath) {
Ok(begin) => begin,
Err(e) => return fail_clierror!("Cannot load Luau BEGIN script file: {e}"),
}
} else {
begin.to_string()
};
comment_remover_re
.replace_all(&discrete_begin, "")
.to_string()
} else {
embedded_begin_script.trim().to_string()
};
// check if the BEGIN script uses _INDEX
index_file_used =
index_file_used || begin_script.contains("_INDEX") || begin_script.contains("_LASTROW");
debug!("BEGIN script: {begin_script:?}");
// check if an END script was specified
let end_script = if let Some(ref end) = args.flag_end {
let discrete_end = if let Some(end_filepath) = end.strip_prefix("file:") {
match fs::read_to_string(end_filepath) {
Ok(end) => end,
Err(e) => return fail_clierror!("Cannot load Luau END script file: {e}"),
}
} else {
end.to_string()
};
comment_remover_re
.replace_all(&discrete_end, "")
.to_string()
} else {
embedded_end_script.trim().to_string()
};
// check if the END script uses _INDEX
index_file_used =
index_file_used || end_script.contains("_INDEX") || end_script.contains("_LASTROW");
debug!("END script: {end_script:?}");
// check if "require" was used in the scripts. If so, we need to setup LUAU_PATH;
// we check for "require \"" so we don't trigger on just the literal "require"
// which is a fairly common word (e.g. requirements, required, requires, etc.)
let require_used = main_script.contains("require \"")
|| begin_script.contains("require \"")
|| end_script.contains("require \"");
// if require_used, create a temporary directory and copy date.lua there.
// we do this outside the "require_used" setup below as the tempdir
// needs to persist until the end of the program.
let temp_dir = if require_used {
match tempfile::tempdir() {
Ok(temp_dir) => {
let temp_dir_path = temp_dir.into_path();
Some(temp_dir_path)
}
Err(e) => {
return fail_clierror!(
"Cannot create temporary directory to copy luadate library to: {e}"
)
}
}
} else {
None
};
// "require " was used in the scripts, so we need to prepare luadate library and setup LUAU_PATH
if require_used {
// prepare luadate so users can just use 'date = require "date"' in their scripts
let luadate_library = include_bytes!("../../resources/luau/vendor/luadate/date.lua");
// safety: safe to unwrap as we just created the tempdir above
let tdir_path = temp_dir.clone().unwrap();
let luadate_path = tdir_path.join("date.lua");
fs::write(luadate_path.clone(), luadate_library)?;
// set LUAU_PATH to include the luadate library
let mut luau_path = args.flag_luau_path.clone();
luau_path.push_str(&format!(";{}", luadate_path.as_os_str().to_string_lossy()));
env::set_var("LUAU_PATH", luau_path.clone());
info!(r#"set LUAU_PATH to "{luau_path}""#);
}
// -------- setup Luau environment --------
let luau = Lua::new();
let luau_compiler = if log_enabled!(log::Level::Debug) || log_enabled!(log::Level::Trace) {
// debugging is on, set more debugging friendly compiler settings
// so we can see more error details in the logfile
mlua::Compiler::new()
.set_optimization_level(0)
.set_debug_level(2)
.set_coverage_level(2)
} else {
// use more performant compiler settings
mlua::Compiler::new()
.set_optimization_level(2)
.set_debug_level(1)
.set_coverage_level(0)
};
// set default Luau compiler
luau.set_compiler(luau_compiler.clone());
let globals = luau.globals();
setup_helpers(&luau, args.flag_delimiter)?;
if index_file_used {
info!("RANDOM ACCESS MODE (_INDEX or _LASTROW special variables used)");
random_acess_mode(
&rconfig,
&args,
&luau,
&luau_compiler,
&globals,
&begin_script,
&main_script,
&end_script,
args.flag_max_errors,
)?;
} else {
info!("SEQUENTIAL MODE");
sequential_mode(
&rconfig,
&args,
&luau,
&luau_compiler,
&globals,
&begin_script,
&main_script,
&end_script,
args.flag_max_errors,
)?;
}
if let Some(temp_dir) = temp_dir {
// delete the tempdir
fs::remove_dir_all(temp_dir)?;
}
Ok(())
}
// ------------ SEQUENTIAL MODE ------------
// this mode is used when the user does not use _INDEX or _LASTROW in their script,
// so we just scan the CSV, processing the MAIN script in sequence.
fn sequential_mode(
rconfig: &Config,
args: &Args,
luau: &Lua,
luau_compiler: &mlua::Compiler,
globals: &mlua::Table,
begin_script: &str,
main_script: &str,
end_script: &str,
max_errors: usize,
) -> Result<(), CliError> {
globals.set("cols", "{}")?;
let mut rdr = rconfig.reader()?;
let mut wtr = Config::new(&args.flag_output).writer()?;
let mut headers = rdr.headers()?.clone();
let mut remap_headers = csv::StringRecord::new();
let mut new_column_count = 0_u8;
let mut headers_count = headers.len();
if !rconfig.no_headers {
if !args.cmd_filter {
let new_columns = args
.arg_new_columns
.as_ref()
.ok_or("Specify new column names")?;
let new_columns_vec: Vec<&str> = new_columns.split(',').collect();
for new_column in new_columns_vec {
new_column_count += 1;
let new_column = new_column.trim();
headers.push_field(new_column);
remap_headers.push_field(new_column);
}
}
if args.flag_remap {
wtr.write_record(&remap_headers)?;
headers_count = remap_headers.len();
} else {
wtr.write_record(&headers)?;
}
}
// we initialize the special vars _IDX and _ROWCOUNT
globals.set("_IDX", 0)?;
globals.set("_ROWCOUNT", 0)?;
if !begin_script.is_empty() {
info!("Compiling and executing BEGIN script.");
LUAU_STAGE.store(BEGIN_STAGE, Ordering::Relaxed);
let begin_bytecode = luau_compiler.compile(begin_script);
if let Err(e) = luau
.load(&begin_bytecode)
.set_mode(mlua::ChunkMode::Binary)
.exec()
{
return fail_clierror!("BEGIN error: Failed to execute \"{begin_script}\".\n{e}");
}
info!("BEGIN executed.");
}
#[allow(unused_assignments)]
let mut insertrecord_table = luau.create_table()?; // amortize alloc
let empty_table = luau.create_table()?;
let mut insertrecord = csv::StringRecord::new();
// check if qsv_insertrecord() was called in the BEGIN script
beginend_insertrecord(
luau,
&empty_table,
insertrecord.clone(),
headers_count,
&mut wtr,
)?;
if QSV_BREAK.load(Ordering::Relaxed) {
let qsv_break_msg: String = globals.get("_QSV_BREAK_MSG")?;
eprintln!("{qsv_break_msg}");
return Ok(());
}
// we clear the table so we don't falsely detect a call to qsv_insertrecord()
// in the MAIN/END scripts
luau.globals().set("_QSV_INSERTRECORD_TBL", Value::Nil)?;
#[cfg(any(feature = "full", feature = "lite"))]
let show_progress =
(args.flag_progressbar || std::env::var("QSV_PROGRESSBAR").is_ok()) && !rconfig.is_stdin();
#[cfg(any(feature = "full", feature = "lite"))]
let progress = ProgressBar::with_draw_target(None, ProgressDrawTarget::stderr_with_hz(5));
#[cfg(any(feature = "full", feature = "lite"))]
if show_progress {
util::prep_progress(&progress, util::count_rows(rconfig)?);
} else {
progress.set_draw_target(ProgressDrawTarget::hidden());
}
let error_result: Value = luau.load("return \"<ERROR>\";").eval()?;
let main_bytecode = luau_compiler.compile(main_script);
let mut record = csv::StringRecord::new();
let mut idx = 0_u64;
let mut error_count = 0_usize;
LUAU_STAGE.store(MAIN_STAGE, Ordering::Relaxed);
// main loop
// without an index, we stream the CSV in sequential order
'main: while rdr.read_record(&mut record)? {
#[cfg(any(feature = "full", feature = "lite"))]
if show_progress {
progress.inc(1);
}
idx += 1;
globals.set("_IDX", idx)?;
// Updating col
{
let col =
luau.create_table_with_capacity(record.len().try_into().unwrap_or_default(), 1)?;
for (i, v) in record.iter().enumerate() {
col.set(i + 1, v)?;
}
if !rconfig.no_headers {
for (h, v) in headers.iter().zip(record.iter()) {
col.set(h, v)?;
}
}
globals.set("col", col)?;
}
// Updating global
if !args.flag_no_globals && !rconfig.no_headers {
for (h, v) in headers.iter().zip(record.iter()) {
globals.set(h, v)?;
}
}
let computed_value: Value = match luau
.load(&main_bytecode)
.set_mode(mlua::ChunkMode::Binary)
.eval()
{
Ok(computed) => computed,
Err(e) => {
error_count += 1;
log::error!("_IDX: {idx} error({error_count}): {e:?}");
error_result.clone()
}
};
if QSV_BREAK.load(Ordering::Relaxed) {
let qsv_break_msg: String = globals.get("_QSV_BREAK_MSG")?;
eprintln!("{qsv_break_msg}");
break 'main;
}
if max_errors > 0 && error_count > max_errors {
info!("Maximum number of errors ({max_errors}) reached. Aborting MAIN script.");
break 'main;
}
if args.cmd_map {
map_computedvalue(computed_value, &mut record, args, new_column_count)?;
// check if the script is trying to insert a record with
// qsv_insertrecord(). We do this by checking if the global
// _QSV_INSERTRECORD_TBL exists and is not empty
insertrecord_table = luau
.globals()
.get("_QSV_INSERTRECORD_TBL")
.unwrap_or_else(|_| empty_table.clone());
let insertrecord_table_len = insertrecord_table.len().unwrap_or_default();
if insertrecord_table_len > 0 {
// _QSV_INSERTRECORD_TBL is populated, we have a record to insert
insertrecord.clear();
create_insertrecord(&insertrecord_table, &mut insertrecord, headers_count)?;
if QSV_SKIP.load(Ordering::Relaxed) {
QSV_SKIP.store(false, Ordering::Relaxed);
} else {
wtr.write_record(&record)?;
}
wtr.write_record(&insertrecord)?;
luau.globals().raw_set("_QSV_INSERTRECORD_TBL", "")?; // empty the table
} else if QSV_SKIP.load(Ordering::Relaxed) {
QSV_SKIP.store(false, Ordering::Relaxed);
} else {
wtr.write_record(&record)?;
}
} else if args.cmd_filter {
let must_keep_row = if error_count > 0 {
true
} else {
match computed_value {
Value::String(strval) => !strval.to_string_lossy().is_empty(),
Value::Boolean(boolean) => boolean,
Value::Nil => false,
Value::Integer(intval) => intval != 0,
// we compare to f64::EPSILON as float comparison to zero
// unlike int, where we can say intval != 0, we cannot do fltval !=0
// https://doc.rust-lang.org/std/primitive.f64.html#associatedconstant.EPSILON
Value::Number(fltval) => (fltval).abs() > f64::EPSILON,
_ => true,
}
};
if must_keep_row {
wtr.write_record(&record)?;
}
}
}
if !end_script.is_empty() {
// at the END, set a convenience variable named _ROWCOUNT;
// true, _ROWCOUNT is equal to _IDX at this point, but this
// should make for more readable END scripts.
// Also, _ROWCOUNT is zero during the main script, and only set
// to _IDX during the END script.
LUAU_STAGE.store(END_STAGE, Ordering::Relaxed);
globals.set("_ROWCOUNT", idx)?;
info!("Compiling and executing END script. _ROWCOUNT: {idx}");
let end_bytecode = luau_compiler.compile(end_script);
let end_value: Value = match luau
.load(&end_bytecode)
.set_mode(mlua::ChunkMode::Binary)
.eval()
{
Ok(computed) => computed,
Err(e) => {
log::error!("END error: Cannot evaluate \"{end_script}\".\n{e}");
log::error!("END globals: {globals:?}");
error_result.clone()
}
};
// check if qsv_insertrecord() was called in the END script
beginend_insertrecord(luau, &empty_table, insertrecord, headers_count, &mut wtr)?;
let end_string = match end_value {
Value::String(string) => string.to_string_lossy().to_string(),
Value::Number(number) => number.to_string(),
Value::Integer(number) => number.to_string(),
Value::Boolean(boolean) => (if boolean { "true" } else { "false" }).to_string(),
Value::Nil => String::new(),
_ => {
return fail_clierror!(
"Unexpected END value type returned by provided Luau expression. {end_value:?}"
);
}
};
winfo!("{end_string}");
}
wtr.flush()?;
#[cfg(any(feature = "full", feature = "lite"))]
if show_progress {
util::finish_progress(&progress);
}
if error_count > 0 {
return fail_clierror!("Luau errors encountered: {error_count}");
};
Ok(())
}
// ------------ RANDOM ACCESS MODE ------------
// this function is largely similar to sequential_mode, and is triggered when
// we use the special variable _INDEX or _LASTROW in the Luau scripts.
// the primary difference being that we use an Indexed File rdr in the main loop.
// differences pointed out in comments below
fn random_acess_mode(
rconfig: &Config,
args: &Args,
luau: &Lua,
luau_compiler: &mlua::Compiler,
globals: &mlua::Table,
begin_script: &str,
main_script: &str,
end_script: &str,
max_errors: usize,
) -> Result<(), CliError> {
// users can create an index file by calling qsv_autoindex() in their BEGIN script
if begin_script.contains("qsv_autoindex()") {
let result = create_index(&args.arg_input);
if result.is_err() {
return fail_clierror!("Unable to create/update index file");
}
}
// we abort RANDOM ACCESS mode if the index file is not found
let Some(mut idx_file) = rconfig.indexed()? else {
return fail!(r#"Index required but no index file found. Use "qsv_autoindex()" in your BEGIN script."#);
};
globals.set("cols", "{}")?;
// with an index, we can fetch the row_count in advance
let mut row_count = util::count_rows(rconfig).unwrap_or_default();
if args.flag_no_headers {
row_count += 1;
}
let mut wtr = Config::new(&args.flag_output).writer()?;
let mut headers = idx_file.headers()?.clone();
let mut remap_headers = csv::StringRecord::new();
let mut new_column_count = 0_u8;
let mut headers_count = headers.len();
if !rconfig.no_headers {
if !args.cmd_filter {
let new_columns = args
.arg_new_columns
.as_ref()
.ok_or("Specify new column names")?;
let new_columns_vec: Vec<&str> = new_columns.split(',').collect();
for new_column in new_columns_vec {
new_column_count += 1;
let new_column = new_column.trim();
headers.push_field(new_column);
remap_headers.push_field(new_column);
}
}
if args.flag_remap {
wtr.write_record(&remap_headers)?;
headers_count = remap_headers.len();
} else {
wtr.write_record(&headers)?;
}
}
// unlike sequential_mode, we actually know the row_count at the BEGINning
globals.set("_IDX", 0)?;
globals.set("_INDEX", 0)?;
globals.set("_ROWCOUNT", row_count)?;
globals.set("_LASTROW", row_count - 1)?;
if !begin_script.is_empty() {
info!("Compiling and executing BEGIN script.");
LUAU_STAGE.store(BEGIN_STAGE, Ordering::Relaxed);
let begin_bytecode = luau_compiler.compile(begin_script);
if let Err(e) = luau
.load(&begin_bytecode)
.set_mode(mlua::ChunkMode::Binary)
.exec()
{
return fail_clierror!("BEGIN error: Failed to execute \"{begin_script}\".\n{e}");
}
info!("BEGIN executed.");
}
#[allow(unused_assignments)]
let mut insertrecord_table = luau.create_table()?; // amortize alloc
let empty_table = luau.create_table()?;
let mut insertrecord = csv::StringRecord::new();
// check if qsv_insertrecord() was called in the BEGIN script
beginend_insertrecord(
luau,
&empty_table,
insertrecord.clone(),
headers_count,
&mut wtr,
)?;
if QSV_BREAK.load(Ordering::Relaxed) {
let qsv_break_msg: String = globals.get("_QSV_BREAK_MSG")?;
eprintln!("{qsv_break_msg}");
return Ok(());
}
// we clear the table so we don't falsely detect a call to qsv_insertrecord()
// in the MAIN/END scripts
luau.globals().set("_QSV_INSERTRECORD_TBL", Value::Nil)?;
// in random access mode, setting "_INDEX" allows us to change the current record
// for the NEXT read
let mut pos = globals.get::<_, isize>("_INDEX").unwrap_or_default();
let mut curr_record = if pos > 0 && pos <= row_count as isize {
pos as u64
} else {
0_u64
};
debug!("BEGIN current record: {curr_record}");
idx_file.seek(curr_record)?;
let error_result: Value = luau.load("return \"<ERROR>\";").eval()?;
let main_bytecode = luau_compiler.compile(main_script);
let mut record = csv::StringRecord::new();
let mut error_count = 0_usize;
LUAU_STAGE.store(MAIN_STAGE, Ordering::Relaxed);
// main loop - here we use an indexed file reader to implement random access mode,
// seeking to the next record to read by looking at _INDEX special var
'main: while idx_file.read_record(&mut record)? {
globals.set("_IDX", curr_record)?;
{
let col =
luau.create_table_with_capacity(record.len().try_into().unwrap_or_default(), 1)?;
for (i, v) in record.iter().enumerate() {
col.set(i + 1, v)?;
}
if !rconfig.no_headers {
for (h, v) in headers.iter().zip(record.iter()) {
col.set(h, v)?;
}
}
globals.set("col", col)?;
}
if !args.flag_no_globals && !rconfig.no_headers {
for (h, v) in headers.iter().zip(record.iter()) {
globals.set(h, v)?;
}
}
let computed_value: Value = match luau
.load(&main_bytecode)
.set_mode(mlua::ChunkMode::Binary)
.eval()
{
Ok(computed) => computed,
Err(e) => {
error_count += 1;
log::error!("_IDX: {curr_record} error({error_count}): {e:?}");
error_result.clone()
}
};
if QSV_BREAK.load(Ordering::Relaxed) {
let qsv_break_msg: String = globals.get("_QSV_BREAK_MSG")?;
eprintln!("{qsv_break_msg}");
break 'main;
}
if max_errors > 0 && error_count > max_errors {
info!("Maximum number of errors ({max_errors}) reached. Aborting MAIN script.");
break 'main;
}
if args.cmd_map {
map_computedvalue(computed_value, &mut record, args, new_column_count)?;
// check if the MAIN script is trying to insert a record
insertrecord_table = luau
.globals()
.get("_QSV_INSERTRECORD_TBL")
.unwrap_or_else(|_| empty_table.clone());
let insertrecord_table_len = insertrecord_table.len().unwrap_or_default();
if insertrecord_table_len > 0 {
// _QSV_INSERTRECORD_TBL is populated, we have a record to insert
insertrecord.clear();
create_insertrecord(&insertrecord_table, &mut insertrecord, headers_count)?;
if QSV_SKIP.load(Ordering::Relaxed) {
QSV_SKIP.store(false, Ordering::Relaxed);
} else {
wtr.write_record(&record)?;
}
wtr.write_record(&insertrecord)?;
luau.globals().raw_set("_QSV_INSERTRECORD_TBL", "")?; // empty the table
} else if QSV_SKIP.load(Ordering::Relaxed) {
QSV_SKIP.store(false, Ordering::Relaxed);
} else {
wtr.write_record(&record)?;
}
} else if args.cmd_filter {
let must_keep_row = if error_count > 0 {
true
} else {
match computed_value {
Value::String(strval) => !strval.to_string_lossy().is_empty(),
Value::Boolean(boolean) => boolean,
Value::Nil => false,
Value::Integer(intval) => intval != 0,
Value::Number(fltval) => (fltval).abs() > f64::EPSILON,
_ => true,
}
};
if must_keep_row {
wtr.write_record(&record)?;
}
}
pos = globals.get::<_, isize>("_INDEX").unwrap_or_default();
if pos < 0 || pos as u64 > row_count {
break 'main;
}
let next_record = if pos > 0 && pos <= row_count as isize {
pos as u64
} else {
0_u64
};
if idx_file.seek(next_record).is_err() {
break 'main;
}
curr_record = next_record;
} // main loop
if !end_script.is_empty() {
info!("Compiling and executing END script. _ROWCOUNT: {row_count}");
LUAU_STAGE.store(END_STAGE, Ordering::Relaxed);
let end_bytecode = luau_compiler.compile(end_script);
let end_value: Value = match luau
.load(&end_bytecode)
.set_mode(mlua::ChunkMode::Binary)
.eval()
{
Ok(computed) => computed,
Err(e) => {
log::error!("END error: Cannot evaluate \"{end_script}\".\n{e}");
log::error!("END globals: {globals:?}");
error_result.clone()
}
};
// check if qsv_insertrecord() was called in the END script
beginend_insertrecord(luau, &empty_table, insertrecord, headers_count, &mut wtr)?;
let end_string = match end_value {
Value::String(string) => string.to_string_lossy().to_string(),
Value::Number(number) => number.to_string(),
Value::Integer(number) => number.to_string(),
Value::Boolean(boolean) => (if boolean { "true" } else { "false" }).to_string(),
Value::Nil => String::new(),
_ => {
return fail_clierror!(
"Unexpected END value type returned by provided Luau expression. {end_value:?}"
);
}
};
winfo!("{end_string}");
}
wtr.flush()?;
if error_count > 0 {
return fail_clierror!("Luau errors encountered: {error_count}");
};
Ok(())
}
// -----------------------------------------------------------------------------
// UTILITY FUNCTIONS
// -----------------------------------------------------------------------------
#[inline]