Project

General

Profile

1 51 aaronmk
#!/usr/bin/env python
2
# Inner-joins two map spreadsheets A->B and B->C to A->C
3
4
import csv
5 734 aaronmk
import os.path
6 51 aaronmk
import sys
7 939 aaronmk
import warnings
8 51 aaronmk
9 734 aaronmk
sys.path.append(os.path.dirname(__file__)+"/../lib")
10 732 aaronmk
11 734 aaronmk
import maps
12 1282 aaronmk
import util
13 734 aaronmk
14 51 aaronmk
def main():
15 67 aaronmk
    try: _prog_name, map_1_path = sys.argv
16 51 aaronmk
    except ValueError:
17 180 aaronmk
        raise SystemExit('Usage: '+sys.argv[0]+' <map_0 map_1 [| '+sys.argv[0]
18
            +' map_2]... >joined_map')
19 51 aaronmk
20
    # Get map 1
21
    map_1 = {}
22
    stream = open(map_1_path, 'rb')
23 59 aaronmk
    reader = csv.reader(stream)
24 737 aaronmk
    map_1_cols = reader.next()
25 51 aaronmk
    for row in reader:
26 732 aaronmk
        if row[0] != '': map_1[row[0]] = row
27 51 aaronmk
    stream.close()
28
29
    # Join map 1 to map 0
30 59 aaronmk
    reader = csv.reader(sys.stdin)
31 120 aaronmk
    writer = csv.writer(sys.stdout)
32 737 aaronmk
    map_0_cols = reader.next()
33
    if not map_0_cols[1] == map_1_cols[0]: raise SystemExit('Map error: '
34 1355 aaronmk
        'Map 0 output column name "'+map_0_cols[1]
35
        +'" doesn\'t match map 1 input column name "'+map_1_cols[0]+'"')
36 737 aaronmk
    writer.writerow(maps.merge_mappings(map_0_cols, map_1_cols))
37 51 aaronmk
    for row in reader:
38 730 aaronmk
        if row[1] != '':
39 1283 aaronmk
            out_orig = row[1] # used in "No join mapping" error msg
40
41 1170 aaronmk
            # Look for a match
42
            out_row = None
43
            suffix = ''
44
            while True:
45
                try:
46
                    out_row = map_1[row[1]]
47
                    break
48
                except KeyError:
49
                    # Heuristically look for a match on a parent path.
50
                    # If this produces a syntactically invalid parent path (e.g.
51
                    # there is a / within []), it will be ignored since there
52
                    # wouldn't be a an entry in map_1.
53
                    row[1], sep, new_suffix = row[1].rpartition('/')
54
                    if sep == '': break
55
                    suffix = sep+new_suffix+suffix # prepend new suffix
56
57
            # Write new mapping
58
            if out_row != None:
59
                row = maps.merge_mappings(row, out_row)
60
                row[1] += suffix # don't modify out_row!
61
            else:
62 1283 aaronmk
                msg = 'No join mapping for '+out_orig
63 939 aaronmk
                warnings.warn(UserWarning(msg))
64 1282 aaronmk
                row[2] = '** '+msg+' ** '+util.list_setdefault(row, 2, '')
65 730 aaronmk
                row[1] = ''
66 120 aaronmk
        writer.writerow(row)
67 51 aaronmk
68
main()