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
|
7 |
|
|
import os.path
|
8 |
|
|
import sys
|
9 |
|
|
import xml.dom.minidom
|
10 |
|
|
|
11 |
|
|
sys.path.append(os.path.dirname(__file__)+"/lib")
|
12 |
|
|
|
13 |
64
|
aaronmk
|
import opts
|
14 |
86
|
aaronmk
|
import xml_func
|
15 |
53
|
aaronmk
|
|
16 |
84
|
aaronmk
|
def metadata_value(name):
|
17 |
|
|
if name.startswith(':'): return name[1:]
|
18 |
|
|
else: return None
|
19 |
|
|
|
20 |
53
|
aaronmk
|
def main():
|
21 |
|
|
# Get db config from env vars
|
22 |
|
|
db_config_names = ['host', 'user', 'password', 'database']
|
23 |
|
|
env_names = []
|
24 |
|
|
def get_db_config(prefix):
|
25 |
64
|
aaronmk
|
return opts.get_env_vars(db_config_names, prefix, env_names)
|
26 |
67
|
aaronmk
|
in_db_config = get_db_config('in')
|
27 |
|
|
out_db_config = get_db_config('out')
|
28 |
|
|
in_is_db = in_db_config != None
|
29 |
|
|
out_is_db = out_db_config != None
|
30 |
53
|
aaronmk
|
|
31 |
|
|
# Parse args
|
32 |
73
|
aaronmk
|
map_path = None
|
33 |
67
|
aaronmk
|
try: _prog_name, map_path = sys.argv
|
34 |
53
|
aaronmk
|
except ValueError:
|
35 |
73
|
aaronmk
|
if in_is_db or not out_is_db: raise SystemExit('Usage: '
|
36 |
|
|
+opts.env_usage(env_names, True)+' [commit=1] '+sys.argv[0]
|
37 |
|
|
+' [map_path] [<input] [>output]')
|
38 |
64
|
aaronmk
|
commit = opts.env_flag('commit')
|
39 |
53
|
aaronmk
|
|
40 |
57
|
aaronmk
|
# Load map header
|
41 |
|
|
in_is_xml = True
|
42 |
73
|
aaronmk
|
if map_path != None:
|
43 |
56
|
aaronmk
|
import copy
|
44 |
|
|
import csv
|
45 |
|
|
|
46 |
75
|
aaronmk
|
from Parser import SyntaxException
|
47 |
53
|
aaronmk
|
import xpath
|
48 |
|
|
|
49 |
73
|
aaronmk
|
mappings = []
|
50 |
|
|
stream = open(map_path, 'rb')
|
51 |
|
|
reader = csv.reader(stream)
|
52 |
|
|
src, dest = reader.next()[:2]
|
53 |
61
|
aaronmk
|
def split_col_name(name):
|
54 |
72
|
aaronmk
|
name, sep, root = name.partition(':')
|
55 |
|
|
return name, sep != '', root
|
56 |
67
|
aaronmk
|
src, in_is_xml, src_root = split_col_name(src)
|
57 |
|
|
dest, out_is_xml, dest_root = split_col_name(dest)
|
58 |
61
|
aaronmk
|
assert out_is_xml
|
59 |
67
|
aaronmk
|
has_types = dest_root.startswith('/*s/') # outer elements are types
|
60 |
73
|
aaronmk
|
for row in reader:
|
61 |
|
|
in_, out = row[:2]
|
62 |
|
|
if out != '':
|
63 |
84
|
aaronmk
|
try: mappings.append((in_, xpath.parse(dest_root+out)))
|
64 |
73
|
aaronmk
|
except SyntaxException, ex: raise SystemExit(str(ex))
|
65 |
|
|
stream.close()
|
66 |
56
|
aaronmk
|
|
67 |
57
|
aaronmk
|
# Input datasource to XML tree, mapping if needed
|
68 |
|
|
if in_is_xml: doc = xml.dom.minidom.parse(sys.stdin)
|
69 |
73
|
aaronmk
|
if map_path != None:
|
70 |
56
|
aaronmk
|
out_doc = xml.dom.minidom.getDOMImplementation().createDocument(None,
|
71 |
|
|
dest, None)
|
72 |
57
|
aaronmk
|
if in_is_xml: raise Exception('XML-XML mapping not supported yet')
|
73 |
73
|
aaronmk
|
elif in_is_db: raise Exception('DB-XML mapping not supported yet')
|
74 |
56
|
aaronmk
|
else: # input is CSV
|
75 |
84
|
aaronmk
|
metadata = []
|
76 |
|
|
map_ = {}
|
77 |
|
|
for in_, out in mappings:
|
78 |
|
|
value = metadata_value(in_)
|
79 |
|
|
if value != None: metadata.append((value, out))
|
80 |
|
|
else: map_[in_] = out
|
81 |
|
|
|
82 |
59
|
aaronmk
|
reader = csv.reader(sys.stdin)
|
83 |
84
|
aaronmk
|
cols = reader.next()
|
84 |
83
|
aaronmk
|
for row_idx, row in enumerate(reader):
|
85 |
56
|
aaronmk
|
row_id = str(row_idx)
|
86 |
84
|
aaronmk
|
def put_col(path, value):
|
87 |
|
|
xpath.put_obj(out_doc, path, row_id, has_types, value)
|
88 |
|
|
for value, out in metadata: put_col(out, value)
|
89 |
|
|
for i, col in enumerate(cols):
|
90 |
|
|
if row[i] != '' and col in map_: put_col(map_[col], row[i])
|
91 |
86
|
aaronmk
|
xml_func.process(out_doc)
|
92 |
56
|
aaronmk
|
doc = out_doc
|
93 |
53
|
aaronmk
|
|
94 |
|
|
# Output XML tree
|
95 |
67
|
aaronmk
|
if out_db_config != None: # output is database
|
96 |
53
|
aaronmk
|
import psycopg2
|
97 |
|
|
from psycopg2.extensions import ISOLATION_LEVEL_SERIALIZABLE
|
98 |
|
|
|
99 |
|
|
import db_xml
|
100 |
|
|
|
101 |
67
|
aaronmk
|
db = psycopg2.connect(**out_db_config)
|
102 |
53
|
aaronmk
|
db.set_isolation_level(ISOLATION_LEVEL_SERIALIZABLE)
|
103 |
|
|
try:
|
104 |
|
|
row_ct_ref = [0]
|
105 |
|
|
db_xml.xml2db(db, doc.documentElement, row_ct_ref)
|
106 |
|
|
print 'Inserted '+str(row_ct_ref[0])+' rows'
|
107 |
|
|
if commit: db.commit()
|
108 |
|
|
finally:
|
109 |
|
|
db.rollback()
|
110 |
|
|
db.close()
|
111 |
|
|
else: doc.writexml(sys.stdout, addindent=' ', newl='\n') # output is XML
|
112 |
|
|
|
113 |
|
|
main()
|