Project

General

Profile

1
#!/usr/bin/env python
2
# Combines two map spreadsheets A0->B and A1->C to A->B, with B overwriting C
3

    
4
import csv
5
import os.path
6
import sys
7

    
8
sys.path.append(os.path.dirname(__file__)+"/../lib")
9

    
10
import maps
11
import opts
12

    
13
def col_label(col_name): return col_name.partition(':')[0]
14

    
15
def overlaps(str0, str1): return str0.find(str1) >= 0 or str1.find(str0) >= 0
16

    
17
def main():
18
    ignore = opts.env_flag('ignore')
19
    try: _prog_name, map_1_path = sys.argv
20
    except ValueError:
21
        raise SystemExit('Usage: env [ignore=1] '+sys.argv[0]
22
            +' <map_0 map_1 [| '+sys.argv[0]+' map_2]... >union_map')
23
    
24
    headers = [None]*2
25
    
26
    # Open map 0
27
    map_0_reader = csv.reader(sys.stdin)
28
    headers[0] = map_0_reader.next()
29
    
30
    # Open map 1
31
    stream = open(map_1_path, 'rb')
32
    map_1_reader = csv.reader(stream)
33
    headers[1] = map_1_reader.next()
34
    
35
    # Check col labels
36
    combinable = overlaps(*[col_label(header[0]) for header in headers])
37
    if not combinable and not ignore: raise SystemExit('Map error: '
38
        'Map 0 column 0 label doesn\'t contain map 1 column 0 label')
39
    
40
    # Pass through map 0, storing which inputs it defines
41
    writer = csv.writer(sys.stdout)
42
    writer.writerow(headers[0])
43
    inputs = set()
44
    for row in map_0_reader:
45
        if row[0] != '': inputs.add(row[0])
46
        writer.writerow(row)
47
    
48
    if combinable:
49
        # Add entries in map 1 that weren't already defined
50
        for row in map_1_reader:
51
            if row[0] != '' and row[0] not in inputs: writer.writerow(row)
52
    
53
    stream.close()
54

    
55
main()
(24-24/25)