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
use std::collections::hash_map::{Entry, HashMap};
use std::fmt;
use std::io;
use std::iter::repeat;
use std::str;

use byteorder::{BigEndian, WriteBytesExt};
use csv;
use pariter::IteratorExt;

use crate::config::{Config, Delimiter, SeekRead};
use crate::index::Indexed;
use crate::select::{SelectColumns, Selection};
use crate::util;
use crate::CliResult;

static USAGE: &str = "
Joins two sets of CSV data on the specified columns.

The default join operation is an 'inner' join. This corresponds to the
intersection of rows on the keys specified.

By default, joins are done case sensitively, but this can be disabled using
the --ignore-case flag.

The column arguments specify the columns to join for each input. Columns can
selected using the same syntax as the 'xsv select' command. Both selections
must return a same number of columns in proper order.

Note that this command is able to consume streams such as stdin (in which case
the file name must be '-' to indicate which file will be read from stdin) and
gzipped files out of the box, but be aware that those file will be entirely
buffered into memory so the join operation can be done.

Note that when performing an 'inner' join (the default), it's the second file that
will be indexed into memory. And when performing an 'outer' join, it will be the file
that is on the other side of --left/--right.

Finally, the command can also perform a 'regex' join, matching efficiently a CSV file containing
a column of regex patterns with another file. But if you only need to filter out a file
based on a set of regex patterns and don't need the auxilliary columns to be concatenated
to the joined result, please be sure to check out the search command --input flag before.

Usage:
    xan join [options] <columns1> <input1> <columns2> <input2>
    xan join --help

join options:
    -i, --ignore-case           When set, joins are done case insensitively.
    --left                      Do a 'left outer' join. This returns all rows in
                                first CSV data set, including rows with no
                                corresponding row in the second data set. When no
                                corresponding row exists, it is padded out with
                                empty fields.
    --right                     Do a 'right outer' join. This returns all rows in
                                second CSV data set, including rows with no
                                corresponding row in the first data set. When no
                                corresponding row exists, it is padded out with
                                empty fields. (This is the reverse of 'outer left'.)
    --full                      Do a 'full outer' join. This returns all rows in
                                both data sets with matching records joined. If
                                there is no match, the missing side will be padded
                                out with empty fields. (This is the combination of
                                'outer left' and 'outer right'.)
    --cross                     USE WITH CAUTION.
                                This returns the cartesian product of the CSV
                                data sets given. The number of rows return is
                                equal to N * M, where N and M correspond to the
                                number of rows in the given data sets, respectively.
    --regex                     Perform an optimized regex join where the second file
                                contains a column of regex patterns that will be used
                                to match the values of a column of the first file.
                                This is a variant of 'inner join' in that only matching
                                rows will be written to the output.
    --regex-left                Perform an optimized regex join where the second file
                                contains a column of regex patterns that will be used
                                to match the values of a column of the first file.
                                This is a variant of 'left join' in that all rows from
                                the first files will be written at least one, even if
                                no pattern from the second file matched.
    -p, --parallel              Whether to use parallelization to speed up computations.
                                Will automatically select a suitable number of threads to use
                                based on your number of cores. Use -t, --threads if you want to
                                indicate the number of threads yourself. Only works with --regex
                                and --regex-left currently.
    -t, --threads <threads>     Parellize computations using this many threads. Use -p, --parallel
                                if you want the number of threads to be automatically chosen instead.
                                Only works with --regex and --regex-left currently.
    --nulls                     When set, joins will work on empty fields.
                                Otherwise, empty fields are completely ignored.
                                (In fact, any row that has an empty field in the
                                key specified is ignored.)
    --prefix-left <prefix>      Add a prefix to the names of the columns in the
                                first dataset.
    --prefix-right <prefix>     Add a prefix to the names of the columns in the
                                second dataset.

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. (i.e., They are not searched, analyzed,
                                sliced, etc.)
    -d, --delimiter <arg>       The field delimiter for reading CSV data.
                                Must be a single character.
";

type ByteString = Vec<u8>;

#[derive(Deserialize)]
struct Args {
    arg_columns1: SelectColumns,
    arg_input1: String,
    arg_columns2: SelectColumns,
    arg_input2: String,
    flag_left: bool,
    flag_right: bool,
    flag_full: bool,
    flag_cross: bool,
    flag_regex: bool,
    flag_regex_left: bool,
    flag_output: Option<String>,
    flag_no_headers: bool,
    flag_ignore_case: bool,
    flag_nulls: bool,
    flag_delimiter: Option<Delimiter>,
    flag_prefix_left: Option<String>,
    flag_prefix_right: Option<String>,
    flag_parallel: bool,
    flag_threads: Option<usize>,
}

pub fn run(argv: &[&str]) -> CliResult<()> {
    let args: Args = util::get_args(USAGE, argv)?;
    let mut state = args.new_io_state()?;

    if [
        args.flag_left,
        args.flag_right,
        args.flag_full,
        args.flag_cross,
        args.flag_regex,
        args.flag_regex_left,
    ]
    .iter()
    .filter(|flag| **flag)
    .count()
        > 1
    {
        return fail!("Please pick exactly one join operation.");
    }

    state.write_headers()?;

    let parallelization = match (args.flag_parallel, args.flag_threads) {
        (true, None) => Some(None),
        (_, Some(count)) => Some(Some(count)),
        _ => None,
    };

    if args.flag_left {
        state.outer_join(false)
    } else if args.flag_right {
        state.outer_join(true)
    } else if args.flag_full {
        state.full_outer_join()
    } else if args.flag_cross {
        state.cross_join()
    } else if args.flag_regex {
        state.regex_join(true, parallelization)
    } else if args.flag_regex_left {
        state.regex_join(false, parallelization)
    } else {
        state.inner_join()
    }
}

fn prefix_header(headers: &csv::ByteRecord, prefix: &String) -> csv::ByteRecord {
    let mut prefixed_headers = csv::ByteRecord::new();
    let byte_prefix = prefix.as_bytes();
    for column in headers.iter() {
        prefixed_headers.push_field(&[byte_prefix, column].concat());
    }

    prefixed_headers
}

struct IoState<R: 'static, W: io::Write> {
    wtr: csv::Writer<W>,
    rdr1: csv::Reader<R>,
    sel1: Selection,
    rdr2: csv::Reader<R>,
    sel2: Selection,
    no_headers: bool,
    case_insensitive: bool,
    nulls: bool,
    pfx_left: Option<String>,
    pfx_right: Option<String>,
}

impl<R: io::Read + io::Seek, W: io::Write> IoState<R, W> {
    fn write_headers(&mut self) -> CliResult<()> {
        if !self.no_headers {
            let mut headers = self.rdr1.byte_headers()?.clone();
            if let Some(prefix) = &self.pfx_left {
                headers = prefix_header(&headers, prefix);
            }

            if let Some(prefix) = &self.pfx_right {
                headers.extend(prefix_header(&self.rdr2.byte_headers()?.clone(), prefix).iter())
            } else {
                headers.extend(self.rdr2.byte_headers()?.iter());
            }
            self.wtr.write_record(&headers)?;
        }
        Ok(())
    }

    fn inner_join(mut self) -> CliResult<()> {
        let mut scratch = csv::ByteRecord::new();
        let mut validx = ValueIndex::new(self.rdr2, &self.sel2, self.case_insensitive, self.nulls)?;
        for row in self.rdr1.byte_records() {
            let row = row?;
            let key = get_row_key(&self.sel1, &row, self.case_insensitive);
            match validx.values.get(&key) {
                None => continue,
                Some(rows) => {
                    for &rowi in rows.iter() {
                        validx.idx.seek(rowi as u64)?;

                        validx.idx.read_byte_record(&mut scratch)?;
                        let combined = row.iter().chain(scratch.iter());
                        self.wtr.write_record(combined)?;
                    }
                }
            }
        }
        Ok(())
    }

    fn regex_join(mut self, inner: bool, parallelization: Option<Option<usize>>) -> CliResult<()> {
        if self.sel1.len() > 1 {
            return Err(crate::CliError::Other(
                "Cannot select multiple columns for first CSV file when using the --regex flag."
                    .to_string(),
            ));
        }
        if self.sel2.len() > 1 {
            return Err(crate::CliError::Other("Cannot select multiple columns for second CSV file containing regex patterns when using the --regex flag.".to_string()));
        }

        let (_, pad_right) = self.get_padding()?;

        // Indexing the patterns
        let mut patterns: Vec<String> = Vec::new();
        let mut regex_rows: Vec<csv::ByteRecord> = Vec::new();

        for row in self.rdr2.into_byte_records() {
            let row = row?;

            let pattern = std::str::from_utf8(self.sel2.select(&row).next().unwrap())
                .unwrap()
                .to_string();

            patterns.push(pattern);
            regex_rows.push(row);
        }

        let regex_set = regex::bytes::RegexSetBuilder::new(&patterns)
            .case_insensitive(self.case_insensitive)
            .build()?;

        // Peforming join
        if let Some(threads) = parallelization {
            let sel1 = self.sel1;
            let mut wtr = self.wtr;

            self.rdr1
                .into_byte_records()
                .parallel_map_custom(
                    |o| {
                        if let Some(count) = threads {
                            o.threads(count)
                        } else {
                            o
                        }
                    },
                    move |record| -> CliResult<Vec<csv::ByteRecord>> {
                        let mut row = record?;

                        let mut rows_to_emit: Vec<csv::ByteRecord> = Vec::new();

                        let mut any_match = false;

                        for m in regex_set.matches(sel1.select(&row).next().unwrap()) {
                            any_match = true;

                            let mut row_to_write = row.clone();
                            row_to_write.extend(&regex_rows[m]);
                            rows_to_emit.push(row_to_write);
                        }

                        if !inner && !any_match {
                            row.extend(&pad_right);
                            rows_to_emit.push(row);
                        }

                        Ok(rows_to_emit)
                    },
                )
                .try_for_each(|result| -> CliResult<()> {
                    let rows_to_emit = result?;

                    for row in rows_to_emit {
                        wtr.write_byte_record(&row)?;
                    }

                    Ok(())
                })?;

            wtr.flush()?;
        } else {
            let mut row = csv::ByteRecord::new();

            while self.rdr1.read_byte_record(&mut row)? {
                let mut any_match = false;

                for m in regex_set.matches(self.sel1.select(&row).next().unwrap()) {
                    any_match = true;

                    let mut row_to_write = row.clone();
                    row_to_write.extend(&regex_rows[m]);
                    self.wtr.write_byte_record(&row_to_write)?;
                }

                if !inner && !any_match {
                    row.extend(&pad_right);
                    self.wtr.write_byte_record(&row)?;
                }
            }

            self.wtr.flush()?;
        }

        Ok(())
    }

    fn outer_join(mut self, right: bool) -> CliResult<()> {
        if right {
            ::std::mem::swap(&mut self.rdr1, &mut self.rdr2);
            ::std::mem::swap(&mut self.sel1, &mut self.sel2);
        }

        let mut scratch = csv::ByteRecord::new();
        let (_, pad2) = self.get_padding()?;
        let mut validx = ValueIndex::new(self.rdr2, &self.sel2, self.case_insensitive, self.nulls)?;
        for row in self.rdr1.byte_records() {
            let row = row?;
            let key = get_row_key(&self.sel1, &row, self.case_insensitive);
            match validx.values.get(&key) {
                None => {
                    if right {
                        self.wtr.write_record(pad2.iter().chain(&row))?;
                    } else {
                        self.wtr.write_record(row.iter().chain(&pad2))?;
                    }
                }
                Some(rows) => {
                    for &rowi in rows.iter() {
                        validx.idx.seek(rowi as u64)?;
                        let row1 = row.iter();
                        validx.idx.read_byte_record(&mut scratch)?;
                        if right {
                            self.wtr.write_record(scratch.iter().chain(row1))?;
                        } else {
                            self.wtr.write_record(row1.chain(&scratch))?;
                        }
                    }
                }
            }
        }
        Ok(())
    }

    fn full_outer_join(mut self) -> CliResult<()> {
        let mut scratch = csv::ByteRecord::new();
        let (pad1, pad2) = self.get_padding()?;
        let mut validx = ValueIndex::new(self.rdr2, &self.sel2, self.case_insensitive, self.nulls)?;

        // Keep track of which rows we've written from rdr2.
        let mut rdr2_written: Vec<_> = repeat(false).take(validx.num_rows).collect();
        for row1 in self.rdr1.byte_records() {
            let row1 = row1?;
            let key = get_row_key(&self.sel1, &row1, self.case_insensitive);
            match validx.values.get(&key) {
                None => {
                    self.wtr.write_record(row1.iter().chain(&pad2))?;
                }
                Some(rows) => {
                    for &rowi in rows.iter() {
                        rdr2_written[rowi] = true;

                        validx.idx.seek(rowi as u64)?;
                        validx.idx.read_byte_record(&mut scratch)?;
                        self.wtr.write_record(row1.iter().chain(&scratch))?;
                    }
                }
            }
        }

        // OK, now write any row from rdr2 that didn't get joined with a row
        // from rdr1.
        for (i, &written) in rdr2_written.iter().enumerate() {
            if !written {
                validx.idx.seek(i as u64)?;
                validx.idx.read_byte_record(&mut scratch)?;
                self.wtr.write_record(pad1.iter().chain(&scratch))?;
            }
        }
        Ok(())
    }

    fn cross_join(mut self) -> CliResult<()> {
        let mut pos = csv::Position::new();
        pos.set_byte(0);
        let mut row2 = csv::ByteRecord::new();
        for row1 in self.rdr1.byte_records() {
            let row1 = row1?;
            self.rdr2.seek(pos.clone())?;
            if self.rdr2.has_headers() {
                // Read and skip the header row, since CSV readers disable
                // the header skipping logic after being seeked.
                self.rdr2.read_byte_record(&mut row2)?;
            }
            while self.rdr2.read_byte_record(&mut row2)? {
                self.wtr.write_record(row1.iter().chain(&row2))?;
            }
        }
        Ok(())
    }

    fn get_padding(&mut self) -> CliResult<(csv::ByteRecord, csv::ByteRecord)> {
        let len1 = self.rdr1.byte_headers()?.len();
        let len2 = self.rdr2.byte_headers()?.len();
        Ok((
            repeat(b"").take(len1).collect(),
            repeat(b"").take(len2).collect(),
        ))
    }
}

impl Args {
    fn new_io_state(&self) -> CliResult<IoState<Box<dyn SeekRead>, Box<dyn io::Write + 'static>>> {
        let rconf1 = Config::new(&Some(self.arg_input1.clone()))
            .delimiter(self.flag_delimiter)
            .no_headers(self.flag_no_headers)
            .select(self.arg_columns1.clone());
        let rconf2 = Config::new(&Some(self.arg_input2.clone()))
            .delimiter(self.flag_delimiter)
            .no_headers(self.flag_no_headers)
            .select(self.arg_columns2.clone());

        let mut rdr1 = rconf1.reader_file()?;
        let mut rdr2 = rconf2.reader_file()?;
        let (sel1, sel2) = self.get_selections(&rconf1, &mut rdr1, &rconf2, &mut rdr2)?;
        Ok(IoState {
            wtr: Config::new(&self.flag_output).writer()?,
            rdr1,
            sel1,
            rdr2,
            sel2,
            no_headers: rconf1.no_headers,
            case_insensitive: self.flag_ignore_case,
            nulls: self.flag_nulls,
            pfx_left: self.flag_prefix_left.clone(),
            pfx_right: self.flag_prefix_right.clone(),
        })
    }

    fn get_selections<R: io::Read>(
        &self,
        rconf1: &Config,
        rdr1: &mut csv::Reader<R>,
        rconf2: &Config,
        rdr2: &mut csv::Reader<R>,
    ) -> CliResult<(Selection, Selection)> {
        let headers1 = rdr1.byte_headers()?;
        let headers2 = rdr2.byte_headers()?;
        let select1 = rconf1.selection(headers1)?;
        let select2 = rconf2.selection(headers2)?;
        if select1.len() != select2.len() {
            return fail!(format!(
                "Column selections must have the same number of columns, \
                 but found column selections with {} and {} columns.",
                select1.len(),
                select2.len()
            ));
        }
        Ok((select1, select2))
    }
}

struct ValueIndex<R> {
    // This maps tuples of values to corresponding rows.
    values: HashMap<Vec<ByteString>, Vec<usize>>,
    idx: Indexed<R, io::Cursor<Vec<u8>>>,
    num_rows: usize,
}

impl<R: io::Read + io::Seek> ValueIndex<R> {
    fn new(
        mut rdr: csv::Reader<R>,
        sel: &Selection,
        case_insensitive: bool,
        nulls: bool,
    ) -> CliResult<ValueIndex<R>> {
        let mut val_idx = HashMap::with_capacity(10000);
        let mut row_idx = io::Cursor::new(Vec::with_capacity(8 * 10000));
        let (mut rowi, mut count) = (0usize, 0usize);

        // This logic is kind of tricky. Basically, we want to include
        // the header row in the line index (because that's what csv::index
        // does), but we don't want to include header values in the ValueIndex.
        if !rdr.has_headers() {
            // ... so if there are no headers, we seek to the beginning and
            // index everything.
            let mut pos = csv::Position::new();
            pos.set_byte(0);
            rdr.seek(pos)?;
        } else {
            // ... and if there are headers, we make sure that we've parsed
            // them, and write the offset of the header row to the index.
            rdr.byte_headers()?;
            row_idx.write_u64::<BigEndian>(0)?;
            count += 1;
        }

        let mut row = csv::ByteRecord::new();
        while rdr.read_byte_record(&mut row)? {
            // This is a bit hokey. We're doing this manually instead of using
            // the `csv-index` crate directly so that we can create both
            // indexes in one pass.
            row_idx.write_u64::<BigEndian>(row.position().unwrap().byte())?;

            let fields: Vec<_> = sel
                .select(&row)
                .map(|v| transform(v, case_insensitive))
                .collect();
            if nulls || !fields.iter().any(|f| f.is_empty()) {
                match val_idx.entry(fields) {
                    Entry::Vacant(v) => {
                        let mut rows = Vec::with_capacity(4);
                        rows.push(rowi);
                        v.insert(rows);
                    }
                    Entry::Occupied(mut v) => {
                        v.get_mut().push(rowi);
                    }
                }
            }
            rowi += 1;
            count += 1;
        }

        row_idx.write_u64::<BigEndian>(count as u64)?;
        let idx = Indexed::open(rdr, io::Cursor::new(row_idx.into_inner()))?;
        Ok(ValueIndex {
            values: val_idx,
            idx,
            num_rows: rowi,
        })
    }
}

impl<R> fmt::Debug for ValueIndex<R> {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        // Sort the values by order of first appearance.
        let mut kvs = self.values.iter().collect::<Vec<_>>();
        kvs.sort_by(|&(_, v1), &(_, v2)| v1[0].cmp(&v2[0]));
        for (keys, rows) in kvs.into_iter() {
            // This is just for debugging, so assume Unicode for now.
            let keys = keys
                .iter()
                .map(|k| String::from_utf8(k.to_vec()).unwrap())
                .collect::<Vec<_>>();
            writeln!(f, "({}) => {:?}", keys.join(", "), rows)?
        }
        Ok(())
    }
}

fn get_row_key(sel: &Selection, row: &csv::ByteRecord, case_insensitive: bool) -> Vec<ByteString> {
    sel.select(row)
        .map(|v| transform(v, case_insensitive))
        .collect()
}

fn transform(bs: &[u8], case_insensitive: bool) -> ByteString {
    if !case_insensitive {
        bs.to_vec()
    } else {
        match str::from_utf8(bs) {
            Err(_) => bs.to_vec(),
            Ok(s) => s.to_lowercase().into_bytes(),
        }
    }
}