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