Project

General

Profile

1
#!/usr/bin/env python
2
# Maps one datasource to another, using a map spreadsheet if needed
3
# For outputting an XML file to a PostgreSQL database, use the general format of
4
# http://vegbank.org/vegdocs/xml/vegbank_example_ver1.0.2.xml
5

    
6
import os.path
7
import sys
8
import traceback
9
import xml.dom.minidom
10

    
11
sys.path.append(os.path.dirname(__file__)+"/../lib")
12

    
13
import opts
14
import Parser
15
import sql
16
import xml_dom
17
import xml_func
18

    
19
def metadata_value(name):
20
    if type(name) == str and name.startswith(':'): return name[1:]
21
    else: return None
22

    
23
def main():
24
    env_names = []
25
    def usage_err():
26
        raise SystemExit('Usage: '+opts.env_usage(env_names, True)
27
            +' [commit=1] '+sys.argv[0]+' [map_path] [<input] [>output]')
28
    limit = opts.get_env_var('n', None, env_names)
29
    if limit != None: limit = int(limit)
30
    commit = opts.env_flag('commit')
31
    
32
    # Get db config from env vars
33
    db_config_names = ['engine', 'host', 'user', 'password', 'database']
34
    def get_db_config(prefix):
35
        return opts.get_env_vars(db_config_names, prefix, env_names)
36
    in_db_config = get_db_config('in')
37
    out_db_config = get_db_config('out')
38
    in_is_db = 'engine' in in_db_config
39
    out_is_db = 'engine' in out_db_config
40
    
41
    # Parse args
42
    map_path = None
43
    try: _prog_name, map_path = sys.argv
44
    except ValueError:
45
        if in_is_db: usage_err()
46
    
47
    # Load map header
48
    in_is_xpaths = True
49
    if map_path != None:
50
        import copy
51
        import csv
52
        
53
        import xpath
54
        
55
        metadata = []
56
        mappings = []
57
        stream = open(map_path, 'rb')
58
        reader = csv.reader(stream)
59
        in_label, out_label = reader.next()[:2]
60
        def split_col_name(name):
61
            name, sep, root = name.partition(':')
62
            return name, sep != '', root
63
        in_label, in_is_xpaths, in_root = split_col_name(in_label)
64
        out_label, out_is_xpaths, out_root = split_col_name(out_label)
65
        assert out_is_xpaths # CSV output not supported yet
66
        has_types = out_root.startswith('/*s/') # outer elements are types
67
        for row in reader:
68
            in_, out = row[:2]
69
            if out != '':
70
                if out_is_xpaths: out = out_root+out
71
                mappings.append((in_, out))
72
        stream.close()
73
    in_is_xml = in_is_xpaths and not in_is_db
74
    
75
    if in_is_xml: doc0 = xml.dom.minidom.parse(sys.stdin)
76
    
77
    def process_xml(use_row):
78
        '''Maps datasource to XML tree'''
79
        doc1 = xml_dom.create_doc(out_label)
80
        root = doc1.documentElement
81
        if in_is_db:
82
            assert in_is_xpaths
83
            
84
            import db_xml
85
            
86
            in_root_xml = xpath.path2xml(in_root)
87
            for i, mapping in enumerate(mappings):
88
                in_, out = mapping
89
                if metadata_value(in_) == None:
90
                    mappings[i] = (xpath.path2xml(in_root+'/'+in_), out)
91
            
92
            in_db = sql.connect(in_db_config)
93
            in_pkeys = {}
94
            for row_idx, row in enumerate(sql.rows(db_xml.get(in_db,
95
                in_root_xml, in_pkeys, limit))):
96
                row_id = str(row_idx)
97
                pkey, = row
98
                for in_, out in mappings:
99
                    value = metadata_value(in_)
100
                    if value == None:
101
                        in_ = in_.cloneNode(True) # don't modify orig value!
102
                        xml_dom.set_id(xpath.get(in_, in_root), pkey)
103
                        value = sql.value_or_none(db_xml.get(in_db, in_,
104
                            in_pkeys))
105
                    if value != None:
106
                        try: xpath.put_obj(root, out, row_id, has_types,
107
                            str(value))
108
                        except Exception: traceback.print_exc()
109
            in_db.close()
110
        elif in_is_xml:
111
            row = xpath.get(doc0.documentElement, in_root)
112
            for row_idx, row in enumerate(xml_dom.NodeElemIter(row.parentNode)):
113
                if not (limit == None or row_idx < limit): break
114
                row_id = str(row_idx)
115
                for in_, out in mappings:
116
                    value = metadata_value(in_)
117
                    if value == None:
118
                        node = xpath.get(row, in_)
119
                        if node != None: value = xml_dom.value(node)
120
                    if value != None:
121
                        try: xpath.put_obj(root, out, row_id, has_types, value)
122
                        except Exception: traceback.print_exc()
123
        else: # input is CSV
124
            map_ = dict(mappings)
125
            reader = csv.reader(sys.stdin)
126
            cols = reader.next()
127
            col_idxs = dict([(value, idx) for idx, value in enumerate(cols)])
128
            for i, mapping in enumerate(mappings):
129
                in_, out = mapping
130
                if metadata_value(in_) == None:
131
                    try: mappings[i] = (col_idxs[in_], out)
132
                    except KeyError: pass
133
            
134
            for row_idx, row in enumerate(reader):
135
                if not (limit == None or row_idx < limit): break
136
                row_id = str(row_idx)
137
                for in_, out in mappings:
138
                    value = metadata_value(in_)
139
                    if value == None:
140
                        value = row[in_]
141
                        if value == '': value = None
142
                    if value != None:
143
                        try: xpath.put_obj(root, out, row_id, has_types, value)
144
                        except Exception: traceback.print_exc()
145
        xml_func.process(root)
146
        return doc1
147
    
148
    def get_xml(use_row):
149
        '''Inputs datasource to XML tree, mapping if needed'''
150
        if map_path != None: return process_xml(use_row)
151
        else: return doc0
152
    
153
    # Output XML tree
154
    if out_is_db:
155
        from psycopg2.extensions import ISOLATION_LEVEL_SERIALIZABLE
156
        import db_xml
157
        
158
        out_db = sql.connect(out_db_config)
159
        out_db.set_isolation_level(ISOLATION_LEVEL_SERIALIZABLE)
160
        try:
161
            row_ct_ref = [0]
162
            def use_row(root): db_xml.xml2db(out_db, root, row_ct_ref)
163
            db_xml.xml2db(out_db, get_xml(use_row).documentElement, row_ct_ref)
164
            print 'Inserted '+str(row_ct_ref[0])+' rows'
165
            if commit: out_db.commit()
166
        finally:
167
            out_db.rollback()
168
            out_db.close()
169
    else:
170
        def use_row(root): pass # TODO: implement this
171
        xml_dom.writexml(sys.stdout, get_xml(use_row)) # output is XML
172

    
173
try: main()
174
except Parser.SyntaxException, e: raise SystemExit(str(e))
(7-7/14)