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
|
7
|
import os.path
|
8
|
import sys
|
9
|
import xml.dom.minidom
|
10
|
|
11
|
sys.path.append(os.path.dirname(__file__)+"/lib")
|
12
|
|
13
|
import opts
|
14
|
import xml_func
|
15
|
|
16
|
def metadata_value(name):
|
17
|
if name.startswith(':'): return name[1:]
|
18
|
else: return None
|
19
|
|
20
|
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
|
return opts.get_env_vars(db_config_names, prefix, env_names)
|
26
|
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
|
|
31
|
# Parse args
|
32
|
map_path = None
|
33
|
try: _prog_name, map_path = sys.argv
|
34
|
except ValueError:
|
35
|
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
|
commit = opts.env_flag('commit')
|
39
|
|
40
|
# Load map header
|
41
|
in_is_xml = True
|
42
|
if map_path != None:
|
43
|
import copy
|
44
|
import csv
|
45
|
|
46
|
from Parser import SyntaxException
|
47
|
import xpath
|
48
|
|
49
|
mappings = []
|
50
|
stream = open(map_path, 'rb')
|
51
|
reader = csv.reader(stream)
|
52
|
src, dest = reader.next()[:2]
|
53
|
def split_col_name(name):
|
54
|
name, sep, root = name.partition(':')
|
55
|
return name, sep != '', root
|
56
|
src, in_is_xml, src_root = split_col_name(src)
|
57
|
dest, out_is_xml, dest_root = split_col_name(dest)
|
58
|
assert out_is_xml
|
59
|
has_types = dest_root.startswith('/*s/') # outer elements are types
|
60
|
for row in reader:
|
61
|
in_, out = row[:2]
|
62
|
if out != '':
|
63
|
try: mappings.append((in_, xpath.parse(dest_root+out)))
|
64
|
except SyntaxException, ex: raise SystemExit(str(ex))
|
65
|
stream.close()
|
66
|
|
67
|
# Input datasource to XML tree, mapping if needed
|
68
|
if in_is_xml: doc = xml.dom.minidom.parse(sys.stdin)
|
69
|
if map_path != None:
|
70
|
out_doc = xml.dom.minidom.getDOMImplementation().createDocument(None,
|
71
|
dest, None)
|
72
|
if in_is_xml: raise Exception('XML-XML mapping not supported yet')
|
73
|
elif in_is_db: raise Exception('DB-XML mapping not supported yet')
|
74
|
else: # input is CSV
|
75
|
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
|
reader = csv.reader(sys.stdin)
|
83
|
cols = reader.next()
|
84
|
for row_idx, row in enumerate(reader):
|
85
|
row_id = str(row_idx)
|
86
|
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
|
xml_func.process(out_doc)
|
92
|
doc = out_doc
|
93
|
|
94
|
# Output XML tree
|
95
|
if out_db_config != None: # output is database
|
96
|
import psycopg2
|
97
|
from psycopg2.extensions import ISOLATION_LEVEL_SERIALIZABLE
|
98
|
|
99
|
import db_xml
|
100
|
|
101
|
db = psycopg2.connect(**out_db_config)
|
102
|
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()
|