-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathXMLToCSV.py
executable file
·415 lines (371 loc) · 17.8 KB
/
XMLToCSV.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
#! /usr/bin/env python3
import argparse
import csv
import os
import re
import time
from datetime import date, datetime
from typing import Dict, Tuple, Union
from lxml import etree
__author__ = 'Thom Hurks'
class InvalidElementName(Exception):
def __init__(self, invalid_element_name, tag_name, parent_name):
self.invalid_element_name = invalid_element_name
self.tag_name = tag_name
self.parent_name = parent_name
def __str__(self):
return 'Invalid name %s found in tag %s within element %s' % (repr(self.invalid_element_name),
repr(self.tag_name),
repr(self.parent_name))
def existing_file(filename: str) -> str:
if os.path.isfile(filename):
return filename
else:
raise argparse.ArgumentTypeError('%s is not a valid input file!' % filename)
def valid_relation(relation: str) -> tuple:
parts = [part for part in relation.split(':') if len(part) > 0]
if len(parts) == 2:
return tuple(parts)
else:
raise argparse.ArgumentTypeError('%s must have the form attribute:relation' % relation)
def parse_args():
parser = argparse.ArgumentParser(description='Parse the DBLP XML file and convert it to CSV')
parser.add_argument('xml_filename', action='store', type=existing_file, help='The XML file that will be parsed',
metavar='xml_filename')
parser.add_argument('dtd_filename', action='store', type=existing_file,
help='The DTD file used to parse the XML file', metavar='dtd_filename')
parser.add_argument('outputfile', action='store', type=str, help='The output CSV file', metavar='outputfile')
parser.add_argument('--annotate', action='store_true', required=False,
help='Write a separate annotated header with type information')
parser.add_argument('--neo4j', action='store_true', required=False,
help='Headers become more Neo4J-specific and a neo4j-import shell script is generated for easy '
'importing. Implies --annotate.')
parser.add_argument('--relations', action='store', required=False, type=valid_relation, nargs='+',
help='The element attributes that will be treated as elements, and to which a relation from '
'the parent element will be created. For example, in order to turn the author attribute '
'of the article element into an element with a relation, use "author:authored_by". The '
'part after the colon is used as the name of the relation.')
parsed_args = parser.parse_args()
if parsed_args.neo4j:
if not parsed_args.annotate:
parsed_args.annotate = True
print('--neo4j implies --annotate!')
if parsed_args.relations:
attr_rel = {attribute: relation for (attribute, relation) in parsed_args.relations}
attributes = attr_rel.keys()
if len(attributes) == len(set(attr_rel.values())) == len(parsed_args.relations):
parsed_args.relations = attr_rel
print('Will create relations for attribute(s): %s' % (', '.join(sorted(attributes))))
else:
print('error: argument --relations: The element attributes and relation names must be unique.')
exit(1)
else:
parsed_args.relations = dict()
return parsed_args
def get_elements(dtd_file) -> set:
dtd = etree.DTD(dtd_file)
elements = set()
for el in dtd.iterelements():
if el.type == 'element':
elements.add(el.name)
elements.remove('dblp')
return elements
def open_outputfiles(elements: set, element_attributes: dict, output_filename: str, annotated: bool = False) -> dict:
(path, ext) = os.path.splitext(output_filename)
output_files = dict()
for element in elements:
fieldnames = element_attributes.get(element, None)
if fieldnames is not None and len(fieldnames) > 0:
fieldnames = sorted(list(fieldnames))
fieldnames.insert(0, 'id')
output_path = '%s_%s%s' % (path, element, ext)
output_file = open(output_path, mode='w', encoding='UTF-8')
output_writer = csv.DictWriter(output_file, fieldnames=fieldnames, delimiter=';',
quoting=csv.QUOTE_MINIMAL, quotechar='"', doublequote=True,
restval='', extrasaction='raise')
if not annotated:
output_writer.writeheader()
output_files[element] = output_writer
return output_files
def get_element_attributes(xml_file, elements: set) -> dict:
context = etree.iterparse(xml_file, dtd_validation=True, events=('start', 'end'), attribute_defaults=True,
load_dtd=True)
# turn it into an iterator
context = iter(context)
# get the root element
event, root = next(context)
data = dict()
for element in elements:
data[element] = set()
current_tag = None
for event, elem in context:
if current_tag is None and event == 'start' and elem.tag in elements:
current_tag = elem.tag
keys = elem.keys()
if len(keys) > 0:
keys = set(keys)
attributes = data[current_tag]
attributes.update(keys)
elif current_tag is not None and event == 'end':
if elem.tag == current_tag:
current_tag = None
elif elem.tag is not None and elem.text is not None:
if elem.tag == 'id':
raise InvalidElementName('id', elem.tag, current_tag)
attributes = data[current_tag]
attributes.add(elem.tag)
keys = elem.keys()
if len(keys) > 0:
for key in keys:
attributes.add('%s-%s' % (elem.tag, key))
root.clear()
for element in elements:
attributes = data[element]
if len(attributes) == 0:
data.pop(element)
elif 'id' in attributes:
raise InvalidElementName('id', element, 'root')
return data
def parse_xml(xml_file, elements: set, output_files: Dict[str, csv.DictWriter], relation_attributes: set,
annotate: bool = False) \
-> Union[Tuple[dict, int, dict, dict], Tuple[dict, int]]:
context = etree.iterparse(xml_file, dtd_validation=True, events=('start', 'end'))
# turn it into an iterator
context = iter(context)
# get the root element
event, root = next(context)
data = dict()
relations = dict()
current_tag = None
multiple_valued_cells = set()
unique_id = 0
if annotate:
array_elements = dict()
element_types = dict()
for event, elem in context:
if current_tag is None and event == 'start' and elem.tag in elements:
current_tag = elem.tag
data.clear()
multiple_valued_cells.clear()
data.update(elem.attrib)
if annotate:
for (key, value) in elem.attrib.items():
set_type_information(element_types, current_tag, key, value)
elif current_tag is not None and event == 'end':
if elem.tag == current_tag:
if len(data) > 0:
set_relation_values(relations, data, relation_attributes, unique_id)
for cell in multiple_valued_cells:
data[cell] = '|'.join(sorted(data[cell]))
data['id'] = unique_id
output_files[current_tag].writerow(data)
if annotate and len(multiple_valued_cells) > 0:
element_cells = array_elements.get(current_tag)
if element_cells is None:
array_elements[current_tag] = multiple_valued_cells.copy()
else:
element_cells.update(multiple_valued_cells)
unique_id += 1
current_tag = None
elif elem.tag is not None and elem.text is not None:
set_cell_value(data, elem.tag, elem.text, multiple_valued_cells)
if annotate:
set_type_information(element_types, current_tag, elem.tag, elem.text)
for (key, value) in elem.attrib.items():
column_name = '%s-%s' % (elem.tag, key)
set_cell_value(data, column_name, value, multiple_valued_cells)
if annotate:
set_type_information(element_types, current_tag, column_name, value)
root.clear()
if annotate:
return relations, unique_id, array_elements, element_types
else:
return relations, unique_id
def set_relation_values(relations: dict, data: dict, relation_attributes: set, to_id: int):
if len(relation_attributes) == 0:
return
for column_name, attributes in data.items():
if column_name in relation_attributes:
relation = relations.get(column_name, dict())
if isinstance(attributes, list):
for attribute in attributes:
rel_instance = relation.get(attribute, set())
rel_instance.add(to_id)
relation[attribute] = rel_instance
else:
rel_instance = relation.get(attributes, set())
rel_instance.add(to_id)
relation[attributes] = rel_instance
relations[column_name] = relation
def set_cell_value(data: dict, column_name: str, value: str, multiple_valued_cells: set):
entry = data.get(column_name)
if entry is None:
data[column_name] = value
else:
if isinstance(entry, list):
entry.append(value)
else:
data[column_name] = [entry, value]
multiple_valued_cells.add(column_name)
def set_type_information(element_types: dict, current_tag: str, column_name: str, value: str):
attribute_types = element_types.get(current_tag)
if attribute_types is None:
element_types[current_tag] = attribute_types = dict()
types = attribute_types.get(column_name)
if types is None:
attribute_types[column_name] = types = set()
types.add(get_type(value))
def get_type(string_value: str) -> str:
"""Attempt to handle types int, float, boolean and string, nothing more complex since output is CSV."""
if string_value is None or len(string_value) == 0:
return 'any'
if str.isdigit(string_value):
try:
int(string_value)
return 'integer'
except ValueError:
return 'string'
if get_type.re_number.fullmatch(string_value) is not None:
try:
float(string_value)
return 'float'
except ValueError:
return 'string'
if get_type.re_date.fullmatch(string_value) is not None:
try:
date.fromisoformat(string_value)
return 'date'
except ValueError:
return 'string'
if get_type.re_datetime.fullmatch(string_value) is not None:
try:
datetime.fromisoformat(string_value)
return 'datetime'
except ValueError:
return 'string'
if string_value.lower() == 'true' or string_value.lower() == 'false':
return 'boolean'
return 'string'
get_type.re_number = re.compile(r'^\d+\.\d+$')
get_type.re_date = re.compile(r'^\d{4}-\d{2}-\d{2}$')
get_type.re_datetime = re.compile(r'^\d{4}-\d{2}-\d{2} \d{2}:\d{2}(?::\d{2})?$')
def write_annotated_header(array_elements: dict, element_types: dict, output_filename: str, neo4j_style: bool = False):
(path, ext) = os.path.splitext(output_filename)
for element, column_types in element_types.items():
output_path = '%s_%s_header%s' % (path, element, ext)
header = []
array_columns = array_elements.get(element, set())
columns = sorted(list(column_types.keys()))
if neo4j_style:
header.append('%s:ID' % element)
else:
columns.insert(0, 'id')
column_types['id'] = {int}
for column in columns:
types = column_types[column]
high_level_type = get_high_level_type(types)
typename = translate_type(high_level_type, neo4j_style)
if column in array_columns:
header.append('%s:%s[]' % (column, typename))
else:
header.append('%s:%s' % (column, typename))
with open(output_path, mode='w', encoding='UTF-8') as output_file:
output_file.write(';'.join(header))
def translate_type(type_input: str, neo4j_style: bool = False) -> str:
if neo4j_style and type_input == 'integer':
return 'int'
return type_input
def get_high_level_type(types: set) -> str:
if len(types) == 0:
raise Exception('Empty type set encountered', types)
types.discard('any')
if len(types) == 0:
return 'string'
elif len(types) == 1:
(high_level_type,) = types
return high_level_type
else:
if 'string' in types:
return 'string'
elif len(types) == 2:
if 'float' in types and 'integer' in types:
return 'float'
elif 'date' in types and 'datetime' in types:
return 'datetime'
return 'string'
def generate_neo4j_import_command(elements: set, relations: set, relation_alias: dict, output_filename: str):
(path, ext) = os.path.splitext(output_filename)
command = 'neo4j-admin import --mode=csv --database=dblp.db --delimiter ";" --array-delimiter "|" ' \
'--id-type INTEGER'
for element in elements:
command += ' --nodes:%s "%s_%s_header%s,%s_%s%s"' % (element, path, element, ext, path, element, ext)
for relation in relations:
command += ' --nodes:%s "%s_%s%s"' % (relation, path, relation, ext)
predicate = relation_alias[relation]
command += ' --relationships:%s "%s_%s_%s%s"' % (predicate, path, relation, predicate, ext)
return command
def write_relation_files(output_filename: str, relations: dict, relation_alias: dict, unique_id: int):
(path, ext) = os.path.splitext(output_filename)
for column_name, relation in relations.items():
output_path_node = '%s_%s%s' % (path, column_name, ext)
output_path_relation = '%s_%s_%s%s' % (path, column_name, relation_alias[column_name], ext)
with open(output_path_relation, mode='w', encoding='UTF-8') as output_file_relation:
output_file_relation.write(':START_ID;:END_ID\n')
with open(output_path_node, mode='w', encoding='UTF-8') as output_file_node:
node_output_writer = csv.writer(output_file_node, delimiter=';', quoting=csv.QUOTE_MINIMAL,
quotechar='"', doublequote=True)
output_file_node.write(':ID;%s:string\n' % column_name)
for value, rel_instance in relation.items():
node_output_writer.writerow([unique_id, value])
for from_id in rel_instance:
output_file_relation.write('%d;%d\n' % (from_id, unique_id))
unique_id += 1
def main():
args = parse_args()
if args.xml_filename is not None and args.dtd_filename is not None and args.outputfile is not None:
start_time = time.time()
print('Start!')
with open(args.dtd_filename, mode='rb') as dtd_file:
print('Reading elements from DTD file...')
elements = get_elements(dtd_file)
with open(args.xml_filename, mode='rb') as xml_file:
print('Finding unique attributes for all elements...')
try:
element_attributes = get_element_attributes(xml_file, elements)
except InvalidElementName as e:
element_attributes = None
print(e)
exit(1)
print('Opening output files...')
output_files = open_outputfiles(elements, element_attributes, args.outputfile, args.annotate)
array_elements = None
element_types = None
with open(args.xml_filename, mode='rb') as xml_file:
print('Parsing XML and writing to CSV files...')
relation_attributes = set(args.relations.keys())
if args.annotate:
(relations, unique_id, array_elements, element_types) = parse_xml(xml_file, elements, output_files,
relation_attributes, annotate=True)
else:
relations, unique_id = parse_xml(xml_file, elements, output_files, relation_attributes)
if args.relations and relations and unique_id >= 0:
print('Writing relation files...')
write_relation_files(args.outputfile, relations, args.relations, unique_id)
if args.annotate and array_elements and element_types:
print('Writing annotated headers...')
write_annotated_header(array_elements, element_types, args.outputfile, args.neo4j)
if args.neo4j:
print('Generating neo4j-import command...')
command = generate_neo4j_import_command(set(element_types.keys()), set(relations.keys()),
args.relations, args.outputfile)
print('Writing neo4j-import command to shell script file...')
with open('neo4j_import.sh', mode='w', encoding='UTF-8') as command_file:
command_file.write('#!/bin/bash\n')
command_file.write(command)
end_time = time.time()
print('Done after %f seconds' % (end_time - start_time))
else:
print('Invalid input arguments.')
exit(1)
if __name__ == '__main__':
main()