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 xml.dom.minidom
9

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

    
12
import opts
13
from Parser import SyntaxException
14
import sql
15
import xml_dom
16
import xml_func
17

    
18
def metadata_value(name):
19
    if name.startswith(':'): return name[1:]
20
    else: return None
21

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

    
143
try: main()
144
except SyntaxException, ex: raise SystemExit(str(ex))
(3-3/4)