-
Notifications
You must be signed in to change notification settings - Fork 23
/
owlready2_optimized.pyx
894 lines (725 loc) · 41.8 KB
/
owlready2_optimized.pyx
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
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
# -*- coding: utf-8 -*-
# Owlready2
# Copyright (C) 2013-2019 Jean-Baptiste LAMY
# LIMICS (Laboratoire d'informatique médicale et d'ingénierie des connaissances en santé), UMR_S 1142
# University Paris 13, Sorbonne paris-Cité, Bobigny, France
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
# You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import sys, xml, xml.parsers.expat
from urllib.parse import urljoin
from collections import defaultdict
from owlready2.base import OwlReadyOntologyParsingError
INT_DATATYPES = { "http://www.w3.org/2001/XMLSchema#integer", "http://www.w3.org/2001/XMLSchema#byte", "http://www.w3.org/2001/XMLSchema#short", "http://www.w3.org/2001/XMLSchema#int", "http://www.w3.org/2001/XMLSchema#long", "http://www.w3.org/2001/XMLSchema#unsignedByte", "http://www.w3.org/2001/XMLSchema#unsignedShort", "http://www.w3.org/2001/XMLSchema#unsignedInt", "http://www.w3.org/2001/XMLSchema#unsignedLong", "http://www.w3.org/2001/XMLSchema#negativeInteger", "http://www.w3.org/2001/XMLSchema#nonNegativeInteger", "http://www.w3.org/2001/XMLSchema#positiveInteger" }
FLOAT_DATATYPES = { "http://www.w3.org/2001/XMLSchema#decimal", "http://www.w3.org/2001/XMLSchema#double", "http://www.w3.org/2001/XMLSchema#float", "http://www.w3.org/2002/07/owl#real" }
cdef int new_list(list l, list objs, object _abbreviate, object new_blank):
cdef int bn
cdef int bn0
cdef int bn_next
cdef int i
cdef int first = _abbreviate("http://www.w3.org/1999/02/22-rdf-syntax-ns#first")
cdef int rest = _abbreviate("http://www.w3.org/1999/02/22-rdf-syntax-ns#rest")
bn = bn0 = new_blank()
if l:
for i in range(len(l) - 1):
objs.append((bn, first, l[i]))
bn_next = new_blank()
objs.append((bn, rest, bn_next))
bn = bn_next
objs.append((bn, first, l[-1]))
objs.append((bn, rest , _abbreviate("http://www.w3.org/1999/02/22-rdf-syntax-ns#nil")))
else:
objs.append((bn, first, _abbreviate("http://www.w3.org/1999/02/22-rdf-syntax-ns#nil")))
objs.append((bn, rest , _abbreviate("http://www.w3.org/1999/02/22-rdf-syntax-ns#nil")))
return bn0
cdef int new_data_list(list l, list objs, list datas, object _abbreviate, object new_blank):
cdef int bn
cdef int bn0
cdef int bn_next
cdef int i
cdef int first = _abbreviate("http://www.w3.org/1999/02/22-rdf-syntax-ns#first")
cdef int rest = _abbreviate("http://www.w3.org/1999/02/22-rdf-syntax-ns#rest")
bn = bn0 = new_blank()
if l:
for i in range(len(l) - 1):
datas.append((bn, first, l[i][0], l[i][1]))
bn_next = new_blank()
objs.append((bn, rest, bn_next))
bn = bn_next
datas.append((bn, first, l[-1][0], l[-1][1]))
objs .append((bn, rest , _abbreviate("http://www.w3.org/1999/02/22-rdf-syntax-ns#nil")))
else:
objs.append((bn, first, _abbreviate("http://www.w3.org/1999/02/22-rdf-syntax-ns#nil")))
objs.append((bn, rest , _abbreviate("http://www.w3.org/1999/02/22-rdf-syntax-ns#nil")))
return bn0
def parse_ntriples(object f, list objs, list datas, object insert_objs, object insert_datas, object _abbreviate, object new_blank, str default_base = ""):
import re
cdef object splitter = re.compile("\s")
cdef dict bn_src_2_sql = {}
cdef str line = f.readline().decode("utf8")
cdef str s, p, o
cdef int s2, p2, o2
while line:
if (not line.startswith("#")) and (not line.startswith("\n")):
if not line.endswith("\n"): line = "%s\n" % line
s,p,o = splitter.split(line[:-3], 2)
if s.startswith("<"): s2 = _abbreviate(s[1:-1])
else: #if s.startswith("_"):
s2 = bn_src_2_sql.get(s, 0)
if s2 == 0: s2 = bn_src_2_sql[s] = new_blank()
p2 = _abbreviate(p[1:-1])
if o.startswith("<"):
objs.append((s2, p2, _abbreviate(o[1:-1])))
if len(objs ) > 800000: insert_objs()
elif o.startswith("_"):
o2 = bn_src_2_sql.get(o, 0)
if o2 == 0: o2 = bn_src_2_sql[o] = new_blank()
objs.append((s2, p2, o2))
elif o.startswith('"'):
o, d = o.rsplit('"', 1)
if d.startswith("^"):
d = d[3:-1]
if d in INT_DATATYPES: datas.append((s2, p2, int (o[1:]), _abbreviate(d)))
elif d in FLOAT_DATATYPES: datas.append((s2, p2, float(o[1:]), _abbreviate(d)))
else: datas.append((s2, p2, o[1:].encode("raw-unicode-escape").decode("unicode-escape"), _abbreviate(d)))
elif d.startswith("@"): datas.append((s2, p2, o[1:].encode("raw-unicode-escape").decode("unicode-escape"), d))
else: datas.append((s2, p2, o[1:].encode("raw-unicode-escape").decode("unicode-escape"), 0))
if len(datas) > 800000: insert_datas()
line = f.readline().decode("utf8")
cdef void add_to_bn(object bns, set known_nodes, int bn, str type, int rel, object value, object d = None):
if type == "COL":
value = tuple(frozenset(bns[v])
if (v < 0) and (not v in known_nodes)
else v
for v in value)
bns[bn].add((type, rel) + value)
else:
if type == "DAT":
bns[bn].add((type, rel, value, d))
else:
if (value < 0) and (not value in known_nodes): value = frozenset(bns[value])
bns[bn].add((type, rel, value))
def parse_rdfxml(object f, list objs, list datas, object insert_objs, object insert_datas, object _abbreviate, object new_blank, str default_base = ""):
cdef object parser = xml.parsers.expat.ParserCreate(None, "")
try:
parser.buffer_text = True
parser.specified_attributes = True
except: pass
cdef list stack = [[0, 0]] # List of [parse type, value] pairs
cdef dict prefixes = {}
cdef list prefixess = [prefixes]
cdef bint tag_is_predicate = False
cdef str current_content = ""
cdef dict current_attrs = None
cdef int nb_triple = 0
cdef object bns = defaultdict(set)
cdef bint dont_create_unnamed_bn = False
cdef dict axiom_annotation_sources = {}
cdef dict axiom_annotation_props = {}
cdef dict axiom_annotation_targets = {}
cdef object triples_with_unnamed_bn= defaultdict(list)
cdef str xml_base
cdef str xml_dir
if default_base:
xml_base = default_base
if xml_base.endswith("#") or xml_base.endswith("/"): xml_base = xml_base[:-1]
xml_dir = xml_base.rsplit("/", 1)[0] + "/"
else:
xml_base = ""
xml_dir = ""
cdef object node_2_blanks = defaultdict(new_blank)
cdef set known_nodes = set()
cdef set fake_blanks = set()
def startNamespace(str prefix, str uri):
nonlocal prefixess, prefixes
prefixes = prefixes.copy()
prefixess.append(prefixes)
if prefix: prefixes[prefix ] = uri
else: prefixes["" ] = uri
def endNamespace(str prefix):
nonlocal prefixess, prefixes
prefixess.pop()
prefixes = prefixess[-1]
def startElement(str tag, dict attrs):
nonlocal tag_is_predicate, stack, current_content, current_attrs, dont_create_unnamed_bn, xml_base, xml_dir, known_nodes, node_2_blanks
cdef str iri
cdef int iri2 = 0
cdef str namespace_base
tag_is_predicate = not tag_is_predicate
if tag_is_predicate:
if attrs.get("http://www.w3.org/1999/02/22-rdf-syntax-ns#parseType") == "Collection":
stack.append(["Collection", []])
elif tag == "http://www.w3.org/1999/02/22-rdf-syntax-ns#RDF":
stack.append(["RDF", 0])
namespace_base = attrs.get("http://www.w3.org/XML/1998/namespacebase")
if namespace_base:
xml_base = namespace_base
if "/" in namespace_base:
xml_dir = namespace_base.rsplit("/", 1)[0] + "/"
else:
iri = attrs.get("http://www.w3.org/1999/02/22-rdf-syntax-ns#resource")
if not iri is None:
if not ":" in iri:
if not iri: iri = xml_base
elif iri.startswith("#"): iri = xml_base + iri
elif iri.startswith("/"): iri = xml_dir + iri[1:]
else: iri = urljoin(xml_dir, iri)
if iri.endswith("/"): iri = iri[:-1]
stack.append(["Resource", _abbreviate(iri)])
else:
iri = attrs.get("http://www.w3.org/1999/02/22-rdf-syntax-ns#nodeID")
if iri:
iri2 = node_2_blanks[iri]
known_nodes.add(iri2)
stack.append(["Resource", iri2])
else:
stack.append(["Literal", ""])
current_content = ""
current_attrs = attrs
if (tag == "http://www.w3.org/2002/07/owl#annotatedSource") or (tag == "http://www.w3.org/2002/07/owl#annotatedTarget"):
dont_create_unnamed_bn = True
else:
iri = attrs.get("http://www.w3.org/1999/02/22-rdf-syntax-ns#about", None)
if iri is None:
iri = attrs.get("http://www.w3.org/1999/02/22-rdf-syntax-ns#ID", None)
if iri: iri = "#%s" % iri
if iri is None:
iri = attrs.get("http://www.w3.org/1999/02/22-rdf-syntax-ns#nodeID")
if iri:
iri2 = node_2_blanks[iri]
known_nodes.add(iri2)
else:
iri2 = new_blank()
if dont_create_unnamed_bn: fake_blanks.add(iri2)
else:
if not ":" in iri:
if not iri: iri = xml_base
elif iri.startswith("#"): iri = xml_base + iri
elif iri.startswith("/"): iri = xml_dir + iri[1:]
else: iri = urljoin(xml_dir, iri)
if iri.endswith("/"): iri = iri[:-1]
iri2 = _abbreviate(iri)
if tag != "http://www.w3.org/1999/02/22-rdf-syntax-ns#Description":
if not iri2 in fake_blanks:
objs.append((iri2, _abbreviate("http://www.w3.org/1999/02/22-rdf-syntax-ns#type"), _abbreviate(tag)))
if iri2 < 0:
add_to_bn(bns, known_nodes, iri2, "REL", _abbreviate("http://www.w3.org/1999/02/22-rdf-syntax-ns#type"), _abbreviate(tag))
if stack[-1][0] == "Collection":
stack[-1][1].append(iri2)
else:
if stack[-1][0] == "Literal": stack[-1][0] = "Resource"
stack[-1][1] = iri2
def endElement(str tag):
nonlocal tag_is_predicate, dont_create_unnamed_bn, stack, axiom_annotation_sources, axiom_annotation_props, axiom_annotation_targets, triples_with_unnamed_bn
cdef int iri2
cdef str parse_type
cdef object value
cdef object o, d
cdef list triples
if tag_is_predicate:
parse_type, value = stack.pop()
if stack[-1][0] == "Collection": iri2 = stack[-1][1][-1]
else: iri2 = stack[-1][1]
if tag == "http://www.w3.org/2002/07/owl#annotatedSource":
dont_create_unnamed_bn = False
axiom_annotation_sources[iri2] = value
if isinstance(value, int) and (value in fake_blanks):
triples_with_unnamed_bn[iri2].insert(0, (_abbreviate(tag), value, parser.CurrentLineNumber, parser.CurrentColumnNumber))
tag_is_predicate = not tag_is_predicate
return
elif tag == "http://www.w3.org/2002/07/owl#annotatedProperty":
axiom_annotation_props[iri2] = value
elif tag == "http://www.w3.org/2002/07/owl#annotatedTarget":
dont_create_unnamed_bn = False
axiom_annotation_targets[iri2] = value
if isinstance(value, int) and (value in fake_blanks):
triples_with_unnamed_bn[iri2].append((_abbreviate(tag), value, parser.CurrentLineNumber, parser.CurrentColumnNumber))
tag_is_predicate = not tag_is_predicate
return
if parse_type == "Resource":
if not iri2 in fake_blanks:
objs.append((iri2, _abbreviate(tag), value))
if iri2 < 0:
add_to_bn(bns, known_nodes, iri2, "REL", _abbreviate(tag), value)
if value < 0:
add_to_bn(bns, known_nodes, value, "INV", _abbreviate(tag), iri2)
elif parse_type == "Literal":
o = current_content
d = current_attrs.get("http://www.w3.org/XML/1998/namespacelang")
if d is None:
d = current_attrs.get("http://www.w3.org/1999/02/22-rdf-syntax-ns#datatype", 0)
if d in INT_DATATYPES: o = int (o)
elif d in FLOAT_DATATYPES: o = float(o)
if d != 0: d = _abbreviate(d)
else:
d = "@%s" % d
if not iri2 in fake_blanks:
datas.append((iri2, _abbreviate(tag), o, d))
if iri2 < 0:
add_to_bn(bns, known_nodes, iri2, "DAT", _abbreviate(tag), o, d)
elif parse_type == "Collection":
if not iri2 in fake_blanks:
objs.append((iri2, _abbreviate(tag), new_list(value, objs, _abbreviate, new_blank)))
if iri2 < 0:
add_to_bn(bns, known_nodes, iri2, "COL", _abbreviate(tag), value)
tag_is_predicate = not tag_is_predicate
if len(objs ) > 800000: insert_objs()
if len(datas) > 800000: insert_datas()
def characters(str content):
nonlocal current_content, stack
if stack[-1][0] == "Literal": current_content += content
parser.StartNamespaceDeclHandler = startNamespace
parser.EndNamespaceDeclHandler = endNamespace
parser.StartElementHandler = startElement
parser.EndElementHandler = endElement
parser.CharacterDataHandler = characters
try:
if isinstance(f, str):
f = open(f, "rb")
parser.ParseFile(f)
f.close()
else:
parser.ParseFile(f)
except Exception as e:
raise OwlReadyOntologyParsingError("RDF/XML parsing error in file %s, line %s, column %s." % (getattr(f, "name", getattr(f, "url", "???")), parser.CurrentLineNumber, parser.CurrentColumnNumber)) from e
cdef object content_2_bns
cdef int bn
cdef set content
cdef int axiom_iri
if triples_with_unnamed_bn:
content_2_bns = defaultdict(list)
for bn, content in bns.items():
if not bn in fake_blanks:
content_2_bns[frozenset(content)].append(bn)
def rebuild_bn(object content):
nonlocal content_2_bns
cdef int bn = new_blank()
content_2_bns[frozenset(content)].append(bn)
cdef tuple i
cdef object drop
cdef int p
cdef object d
cdef object o
cdef list l
for i in content:
if i[0] == "REL":
drop, p, o = i
if not isinstance(o, int): o = rebuild_bn(o)
objs.append((bn, p, o))
elif i[0] == "DAT":
drop, p, o, d = i
if not isinstance(o, int): o = rebuild_bn(o)
datas.append((bn, p, o, d))
elif i[0] == "INV":
drop, p, o = i
if not isinstance(o, int): o = rebuild_bn(o)
objs.append((o, p, bn))
elif i[0] == "COL":
drop, p, *l = i
l = [(isinstance(x, int) and x) or rebuild_bn(x) for x in l]
objs.append((bn, p, new_list(l, objs, _abbreviate, new_blank)))
else:
print(i)
raise ValueError
return bn
for axiom_iri, triples in triples_with_unnamed_bn.items():
for p, o, line, column in triples:
try:
content = bns[o]
if p == _abbreviate("http://www.w3.org/2002/07/owl#annotatedSource"):
target = axiom_annotation_targets[axiom_iri]
if target < 0: target = frozenset(bns[target])
candidates_bn = content_2_bns[frozenset(content | { ("REL", axiom_annotation_props[axiom_iri], target) })]
else:
source = axiom_annotation_sources[axiom_iri]
if source < 0:
source = frozenset(bns[source] | { ("REL", axiom_annotation_props[axiom_iri], target) })
candidates_bn = (content_2_bns[frozenset(content | { ("INV", axiom_annotation_props[axiom_iri], source) })] or
content_2_bns[frozenset(content)])
if candidates_bn: o = candidates_bn[-1]
else: o = rebuild_bn(content)
objs.append((axiom_iri, p, o))
except Exception as e:
raise OwlReadyOntologyParsingError("RDF/XML parsing error in file %s, line %s, column %s." % (getattr(f, "name", getattr(f, "url", "???")), line, column)) from e
return nb_triple
cdef str rdf_type = "http://www.w3.org/1999/02/22-rdf-syntax-ns#type"
cdef dict types = {
"http://www.w3.org/2002/07/owl#Class" : "http://www.w3.org/2002/07/owl#Class",
"http://www.w3.org/2002/07/owl#NamedIndividual" : "http://www.w3.org/2002/07/owl#NamedIndividual",
"http://www.w3.org/2002/07/owl#ObjectProperty" : "http://www.w3.org/2002/07/owl#ObjectProperty",
"http://www.w3.org/2002/07/owl#DataProperty" : "http://www.w3.org/2002/07/owl#DatatypeProperty",
"http://www.w3.org/2002/07/owl#AnnotationProperty" : "http://www.w3.org/2002/07/owl#AnnotationProperty",
}
cdef dict prop_types = {
"http://www.w3.org/2002/07/owl#FunctionalObjectProperty" : "http://www.w3.org/2002/07/owl#FunctionalProperty",
"http://www.w3.org/2002/07/owl#FunctionalDataProperty" : "http://www.w3.org/2002/07/owl#FunctionalProperty",
"http://www.w3.org/2002/07/owl#InverseFunctionalObjectProperty" : "http://www.w3.org/2002/07/owl#InverseFunctionalProperty",
"http://www.w3.org/2002/07/owl#InverseFunctionalDataProperty" : "http://www.w3.org/2002/07/owl#InverseFunctionalProperty",
"http://www.w3.org/2002/07/owl#IrreflexiveObjectProperty" : "http://www.w3.org/2002/07/owl#IrreflexiveProperty",
"http://www.w3.org/2002/07/owl#IrreflexiveDataProperty" : "http://www.w3.org/2002/07/owl#IrreflexiveProperty",
"http://www.w3.org/2002/07/owl#ReflexiveObjectProperty" : "http://www.w3.org/2002/07/owl#ReflexiveProperty",
"http://www.w3.org/2002/07/owl#ReflexiveDataProperty" : "http://www.w3.org/2002/07/owl#ReflexiveProperty",
"http://www.w3.org/2002/07/owl#SymmetricObjectProperty" : "http://www.w3.org/2002/07/owl#SymmetricProperty",
"http://www.w3.org/2002/07/owl#SymmetricDataProperty" : "http://www.w3.org/2002/07/owl#SymmetricProperty",
"http://www.w3.org/2002/07/owl#AsymmetricObjectProperty" : "http://www.w3.org/2002/07/owl#AsymmetricProperty",
"http://www.w3.org/2002/07/owl#AsymmetricDataProperty" : "http://www.w3.org/2002/07/owl#AsymmetricProperty",
"http://www.w3.org/2002/07/owl#TransitiveObjectProperty" : "http://www.w3.org/2002/07/owl#TransitiveProperty",
"http://www.w3.org/2002/07/owl#TransitiveDataProperty" : "http://www.w3.org/2002/07/owl#TransitiveProperty",
}
cdef dict sub_ofs = {
"http://www.w3.org/2002/07/owl#SubClassOf" : "http://www.w3.org/2000/01/rdf-schema#subClassOf",
"http://www.w3.org/2002/07/owl#SubPropertyOf" : "http://www.w3.org/2000/01/rdf-schema#subPropertyOf",
"http://www.w3.org/2002/07/owl#SubObjectPropertyOf" : "http://www.w3.org/2000/01/rdf-schema#subPropertyOf",
"http://www.w3.org/2002/07/owl#SubDataPropertyOf" : "http://www.w3.org/2000/01/rdf-schema#subPropertyOf",
"http://www.w3.org/2002/07/owl#SubAnnotationPropertyOf" : "http://www.w3.org/2000/01/rdf-schema#subPropertyOf",
}
cdef dict equivs = {
"http://www.w3.org/2002/07/owl#EquivalentClasses" : "http://www.w3.org/2002/07/owl#equivalentClass",
"http://www.w3.org/2002/07/owl#EquivalentProperties" : "http://www.w3.org/2002/07/owl#equivalentProperty",
"http://www.w3.org/2002/07/owl#EquivalentObjectProperties" : "http://www.w3.org/2002/07/owl#equivalentProperty",
"http://www.w3.org/2002/07/owl#EquivalentDataProperties" : "http://www.w3.org/2002/07/owl#equivalentProperty",
"http://www.w3.org/2002/07/owl#EquivalentAnnotationProperties" : "http://www.w3.org/2002/07/owl#equivalentProperty",
"http://www.w3.org/2002/07/owl#SameIndividual" : "http://www.w3.org/2002/07/owl#sameAs",
}
cdef dict restrs = {
"http://www.w3.org/2002/07/owl#ObjectSomeValuesFrom" : "http://www.w3.org/2002/07/owl#someValuesFrom",
"http://www.w3.org/2002/07/owl#ObjectAllValuesFrom" : "http://www.w3.org/2002/07/owl#allValuesFrom",
"http://www.w3.org/2002/07/owl#DataSomeValuesFrom" : "http://www.w3.org/2002/07/owl#someValuesFrom",
"http://www.w3.org/2002/07/owl#DataAllValuesFrom" : "http://www.w3.org/2002/07/owl#allValuesFrom",
"http://www.w3.org/2002/07/owl#ObjectHasValue" : "http://www.w3.org/2002/07/owl#hasValue",
"http://www.w3.org/2002/07/owl#DataHasValue" : "http://www.w3.org/2002/07/owl#hasValue",
}
cdef dict qual_card_restrs = {
"http://www.w3.org/2002/07/owl#ObjectExactCardinality" : "http://www.w3.org/2002/07/owl#qualifiedCardinality",
"http://www.w3.org/2002/07/owl#ObjectMinCardinality" : "http://www.w3.org/2002/07/owl#minQualifiedCardinality",
"http://www.w3.org/2002/07/owl#ObjectMaxCardinality" : "http://www.w3.org/2002/07/owl#maxQualifiedCardinality",
"http://www.w3.org/2002/07/owl#DataExactCardinality" : "http://www.w3.org/2002/07/owl#qualifiedCardinality",
"http://www.w3.org/2002/07/owl#DataMinCardinality" : "http://www.w3.org/2002/07/owl#minQualifiedCardinality",
"http://www.w3.org/2002/07/owl#DataMaxCardinality" : "http://www.w3.org/2002/07/owl#maxQualifiedCardinality",
}
cdef dict card_restrs = {
"http://www.w3.org/2002/07/owl#ObjectExactCardinality" : "http://www.w3.org/2002/07/owl#cardinality",
"http://www.w3.org/2002/07/owl#ObjectMinCardinality" : "http://www.w3.org/2002/07/owl#minCardinality",
"http://www.w3.org/2002/07/owl#ObjectMaxCardinality" : "http://www.w3.org/2002/07/owl#maxCardinality",
"http://www.w3.org/2002/07/owl#DataExactCardinality" : "http://www.w3.org/2002/07/owl#cardinality",
"http://www.w3.org/2002/07/owl#DataMinCardinality" : "http://www.w3.org/2002/07/owl#minCardinality",
"http://www.w3.org/2002/07/owl#DataMaxCardinality" : "http://www.w3.org/2002/07/owl#maxCardinality",
}
cdef dict disjoints = {
"http://www.w3.org/2002/07/owl#DisjointClasses" : ("http://www.w3.org/2002/07/owl#AllDisjointClasses" , "http://www.w3.org/2002/07/owl#disjointWith", "http://www.w3.org/2002/07/owl#members"),
"http://www.w3.org/2002/07/owl#DisjointObjectProperties" : ("http://www.w3.org/2002/07/owl#AllDisjointProperties", "http://www.w3.org/2002/07/owl#propertyDisjointWith", "http://www.w3.org/2002/07/owl#members"),
"http://www.w3.org/2002/07/owl#DisjointDataProperties" : ("http://www.w3.org/2002/07/owl#AllDisjointProperties", "http://www.w3.org/2002/07/owl#propertyDisjointWith", "http://www.w3.org/2002/07/owl#members"),
"http://www.w3.org/2002/07/owl#DisjointAnnotationProperties" : ("http://www.w3.org/2002/07/owl#AllDisjointProperties", "http://www.w3.org/2002/07/owl#propertyDisjointWith", "http://www.w3.org/2002/07/owl#members"),
"http://www.w3.org/2002/07/owl#DifferentIndividuals" : ("http://www.w3.org/2002/07/owl#AllDifferent" , None, "http://www.w3.org/2002/07/owl#distinctMembers"),
}
cdef int _rindex(list l):
i = len(l) - 1
while l[i] != "(": i -= 1
return i
def parse_owlxml(object f, list objs, list datas, object insert_objs, object insert_datas, object _abbreviate, object new_blank, str default_base = ""):
cdef object parser = xml.parsers.expat.ParserCreate(None, "")
try:
parser.buffer_text = True
parser.specified_attributes = True
except: pass
cdef str ontology_iri_str = ""
cdef int ontology_iri = 0
cdef list stack = []
cdef list annots = []
cdef dict prefixes = {}
cdef str current_content = ""
cdef dict current_attrs = None
cdef bint in_declaration = False
cdef bint in_prop_chain = False
cdef bint before_declaration = True
cdef int last_cardinality = 0
cdef int nb_triple = 0
cdef set datatypes = INT_DATATYPES | FLOAT_DATATYPES
cdef str lang
def _unabbreviate_IRI(str _abbreviated_iri):
cdef str prefix, name
prefix, name = _abbreviated_iri.split(":", 1)
return prefixes[prefix] + name
def get_IRI(dict attrs):
nonlocal ontology_iri, ontology_iri_str
cdef str iri
if "IRI" in attrs:
iri = attrs["IRI"]
if not iri: return ontology_iri
if iri.startswith("#") or iri.startswith("/"): iri = ontology_iri_str + iri
if iri.endswith("/"): iri = iri[:-1]
if not "//" in iri: iri = urljoin(prefixes[""], iri)
return _abbreviate(iri)
return _abbreviate(_unabbreviate_IRI(attrs["abbreviatedIRI"]))
def startElement(str tag, dict attrs):
nonlocal current_content, current_attrs, in_declaration, before_declaration, last_cardinality, in_prop_chain, ontology_iri, ontology_iri_str
cdef int iri
cdef str version_iri
current_content = ""
if (tag == "http://www.w3.org/2002/07/owl#Prefix"):
prefixes[attrs["name"]] = attrs["IRI"]
elif (tag == "http://www.w3.org/2002/07/owl#Declaration"):
in_declaration = True
before_declaration = False
elif (tag in types):
iri = get_IRI(attrs)
if in_declaration: objs.append((iri, _abbreviate(rdf_type), _abbreviate(types[tag])))
stack.append(iri)
elif (tag == "http://www.w3.org/2002/07/owl#Datatype"): stack.append(get_IRI(attrs))
elif (tag == "http://www.w3.org/2002/07/owl#Literal"): current_attrs = attrs
elif((tag == "http://www.w3.org/2002/07/owl#ObjectIntersectionOf") or (tag == "http://www.w3.org/2002/07/owl#ObjectUnionOf") or
(tag == "http://www.w3.org/2002/07/owl#ObjectOneOf") or (tag == "http://www.w3.org/2002/07/owl#DataOneOf") or
(tag == "http://www.w3.org/2002/07/owl#DataIntersectionOf") or (tag == "http://www.w3.org/2002/07/owl#DataUnionOf") or
(tag == "http://www.w3.org/2002/07/owl#DisjointClasses") or (tag == "http://www.w3.org/2002/07/owl#DisjointObjectProperties") or (tag == "http://www.w3.org/2002/07/owl#DisjointDataProperties") or (tag == "http://www.w3.org/2002/07/owl#DifferentIndividuals")):
stack.append("(")
elif((tag == "http://www.w3.org/2002/07/owl#ObjectExactCardinality") or (tag == "http://www.w3.org/2002/07/owl#ObjectMinCardinality") or (tag == "http://www.w3.org/2002/07/owl#ObjectMaxCardinality") or
(tag == "http://www.w3.org/2002/07/owl#DataExactCardinality" ) or (tag == "http://www.w3.org/2002/07/owl#DataMinCardinality" ) or (tag == "http://www.w3.org/2002/07/owl#DataMaxCardinality" )):
stack.append("(")
last_cardinality = int(attrs["cardinality"])
elif (tag == "http://www.w3.org/2002/07/owl#AnonymousIndividual"): stack.append(new_blank())
elif (tag == "http://www.w3.org/2002/07/owl#SubObjectPropertyOf"): in_prop_chain = False
elif (tag == "http://www.w3.org/2002/07/owl#ObjectInverseOf") or (tag == "http://www.w3.org/2002/07/owl#DataInverseOf") or (tag == "http://www.w3.org/2002/07/owl#inverseOf"): stack.append(new_blank())
elif (tag == "http://www.w3.org/2002/07/owl#ObjectPropertyChain"): stack.append("(")
elif (tag == "http://www.w3.org/2002/07/owl#DatatypeRestriction"): stack.append("(")
elif (tag == "http://www.w3.org/2002/07/owl#FacetRestriction"): stack.append(_abbreviate(attrs["facet"]))
elif (tag == "http://www.w3.org/2002/07/owl#DisjointUnion"): stack.append("(")
elif (tag == "http://www.w3.org/2002/07/owl#Ontology"):
ontology_iri_str = attrs["ontologyIRI"]
if ontology_iri_str.endswith("/"): ontology_iri = _abbreviate(ontology_iri_str[:-1])
else: ontology_iri = _abbreviate(ontology_iri_str)
objs.append((ontology_iri, _abbreviate(rdf_type), _abbreviate("http://www.w3.org/2002/07/owl#Ontology")))
version_iri = attrs.get("versionIRI")
if version_iri:
objs.append((ontology_iri, _abbreviate("http://www.w3.org/2002/07/owl#versionIRI"), _abbreviate(version_iri)))
elif (tag == "RDF") or (tag == "rdf:RDF"): raise ValueError("Not an OWL/XML file! (It seems to be an OWL/RDF file)")
def endElement(str tag):
nonlocal in_declaration, stack, in_prop_chain, current_content
cdef int iri
if (tag == "http://www.w3.org/2002/07/owl#Declaration"):
in_declaration = False
stack = [] # Purge stack
elif (tag == "http://www.w3.org/2002/07/owl#Literal"):
lang = current_attrs.get("http://www.w3.org/XML/1998/namespacelang", "")
if lang != "": stack.append((current_content, "@%s" % lang))
else:
d = current_attrs.get("datatypeIRI", "")
if d in INT_DATATYPES: stack.append((int (current_content), _abbreviate(d)))
elif d in FLOAT_DATATYPES: stack.append((float(current_content), _abbreviate(d)))
elif d:
iri = _abbreviate(d)
stack.append((current_content, iri))
datatypes.add(iri)
else:
stack.append((current_content, 0))
elif (tag == "http://www.w3.org/2002/07/owl#SubClassOf") or (tag == "http://www.w3.org/2002/07/owl#SubObjectPropertyOf") or (tag == "http://www.w3.org/2002/07/owl#SubDataPropertyOf") or (tag == "http://www.w3.org/2002/07/owl#SubAnnotationPropertyOf"):
parent = stack.pop()
child = stack.pop()
if (tag == "http://www.w3.org/2002/07/owl#SubObjectPropertyOf") and in_prop_chain:
relation = _abbreviate("http://www.w3.org/2002/07/owl#propertyChainAxiom")
parent, child = child, parent
else:
relation = _abbreviate(sub_ofs[tag])
objs.append((child, relation, parent))
if annots: purge_annotations((child, relation, parent))
elif (tag == "http://www.w3.org/2002/07/owl#ClassAssertion"):
child = stack.pop() # Order is reversed compared to SubClassOf!
parent = stack.pop()
objs.append((child, _abbreviate(rdf_type), parent))
if annots: purge_annotations((child, _abbreviate(rdf_type), parent))
elif (tag == "http://www.w3.org/2002/07/owl#EquivalentClasses") or (tag == "http://www.w3.org/2002/07/owl#EquivalentObjectProperties") or (tag == "http://www.w3.org/2002/07/owl#EquivalentDataProperties"):
o1 = stack.pop()
o2 = stack.pop()
if o1 < 0: o1, o2 = o2, o1 # Swap in order to have blank node at third position -- rapper seems to do that
objs.append((o1, _abbreviate(equivs[tag]), o2))
if annots: purge_annotations((o1, _abbreviate(equivs[tag]), o2))
elif (tag == "http://www.w3.org/2002/07/owl#ObjectPropertyDomain") or (tag == "http://www.w3.org/2002/07/owl#DataPropertyDomain") or (tag == "http://www.w3.org/2002/07/owl#AnnotationPropertyDomain"):
val = stack.pop(); obj = stack.pop();
objs.append((obj, _abbreviate("http://www.w3.org/2000/01/rdf-schema#domain"), val))
if annots: purge_annotations((obj, _abbreviate("http://www.w3.org/2000/01/rdf-schema#domain"), val))
elif (tag == "http://www.w3.org/2002/07/owl#ObjectPropertyRange") or (tag == "http://www.w3.org/2002/07/owl#DataPropertyRange") or (tag == "http://www.w3.org/2002/07/owl#AnnotationPropertyRange"):
val = stack.pop(); obj = stack.pop();
objs.append((obj, _abbreviate("http://www.w3.org/2000/01/rdf-schema#range"), val))
if annots: purge_annotations((obj, _abbreviate("http://www.w3.org/2000/01/rdf-schema#range"), val))
elif (tag in prop_types):
obj = stack.pop()
objs.append((obj, _abbreviate(rdf_type), _abbreviate(prop_types[tag])))
elif (tag == "http://www.w3.org/2002/07/owl#InverseObjectProperties") or (tag == "http://www.w3.org/2002/07/owl#InverseDataProperties"):
a, b = stack.pop(), stack.pop()
objs.append((b, _abbreviate("http://www.w3.org/2002/07/owl#inverseOf"), a))
elif (tag == "http://www.w3.org/2002/07/owl#ObjectPropertyChain"):
start = _rindex(stack)
in_prop_chain = True
stack[start :] = [new_list(stack[start + 1 : ], objs, _abbreviate, new_blank)]
elif (tag in disjoints):
start = _rindex(stack)
list_obj = stack[start + 1 : ]
tag, rel, member = disjoints[tag]
if rel and (len(list_obj) == 2):
objs.append((list_obj[0], _abbreviate(rel), list_obj[1]))
if annots: purge_annotations((list_obj[0], _abbreviate(rel), list_obj[1]))
else:
list_iri = new_list(list_obj, objs, _abbreviate, new_blank)
iri = new_blank()
objs.append((iri, _abbreviate(rdf_type), _abbreviate(tag)))
objs.append((iri, _abbreviate(member), list_iri))
if annots: purge_annotations((iri, _abbreviate(rdf_type), _abbreviate(tag)))
del stack[start :]
elif (tag == "http://www.w3.org/2002/07/owl#ObjectPropertyAssertion"):
p,s,o = stack[-3 :]
objs.append((s, p, o))
if annots: purge_annotations((s,p,o))
del stack[-3 :]
elif (tag == "http://www.w3.org/2002/07/owl#DataPropertyAssertion"):
p,s,o = stack[-3 :]
datas.append((s, p, o[0], o[1]))
if annots: purge_annotations((s,p,o))
del stack[-3 :]
elif (tag == "http://www.w3.org/2002/07/owl#ObjectComplementOf") or (tag == "http://www.w3.org/2002/07/owl#DataComplementOf"):
iri = new_blank()
objs.append((iri, _abbreviate(rdf_type), _abbreviate("http://www.w3.org/2002/07/owl#Class")))
objs.append((iri, _abbreviate("http://www.w3.org/2002/07/owl#complementOf"), stack[-1]))
stack[-1] = iri
elif (tag in restrs):
iri = new_blank()
objs.append((iri, _abbreviate(rdf_type), _abbreviate("http://www.w3.org/2002/07/owl#Restriction")))
objs.append((iri, _abbreviate("http://www.w3.org/2002/07/owl#onProperty"), stack.pop(-2)))
if isinstance(stack[-1], tuple): datas.append((iri, _abbreviate(restrs[tag]), stack[-1][0], stack[-1][1]))
else: objs.append ((iri, _abbreviate(restrs[tag]), stack[-1]))
stack[-1] = iri
elif (tag in card_restrs):
iri = new_blank()
objs.append((iri, _abbreviate(rdf_type), _abbreviate("http://www.w3.org/2002/07/owl#Restriction")))
start = _rindex(stack)
values = stack[start + 1 : ]
del stack[start :]
if len(values) == 2: # Qualified
tag = qual_card_restrs[tag]
objs.append((iri, _abbreviate("http://www.w3.org/2002/07/owl#onProperty"), values[-2]))
if stack[-1] in datatypes:
objs.append((iri, _abbreviate("http://www.w3.org/2002/07/owl#onDataRange"), values[-1]))
else:
objs.append((iri, _abbreviate("http://www.w3.org/2002/07/owl#onClass"), values[-1]))
else: # Non qualified
tag = card_restrs[tag]
objs.append((iri, _abbreviate("http://www.w3.org/2002/07/owl#onProperty"), values[-1]))
datas.append((iri, _abbreviate(tag), last_cardinality, _abbreviate("http://www.w3.org/2001/XMLSchema#nonNegativeInteger")))
stack.append(iri)
elif (tag == "http://www.w3.org/2002/07/owl#ObjectOneOf"):
start = _rindex(stack)
list_iri = new_list(stack[start + 1 : ], objs, _abbreviate, new_blank)
iri = new_blank()
objs.append((iri, _abbreviate(rdf_type), _abbreviate("http://www.w3.org/2002/07/owl#Class")))
objs.append((iri, _abbreviate("http://www.w3.org/2002/07/owl#oneOf"), list_iri))
stack[start :] = [iri]
elif (tag == "http://www.w3.org/2002/07/owl#DataOneOf"):
start = _rindex(stack)
list_iri = new_data_list(stack[start + 1 : ], objs, datas, _abbreviate, new_blank)
iri = new_blank()
objs.append((iri, _abbreviate(rdf_type), _abbreviate("http://www.w3.org/2000/01/rdf-schema#Datatype")))
objs.append((iri, _abbreviate("http://www.w3.org/2002/07/owl#oneOf"), list_iri))
stack[start :] = [iri]
elif (tag == "http://www.w3.org/2002/07/owl#ObjectIntersectionOf") or (tag == "http://www.w3.org/2002/07/owl#ObjectUnionOf") or (tag == "http://www.w3.org/2002/07/owl#DataIntersectionOf") or (tag == "http://www.w3.org/2002/07/owl#DataUnionOf"):
start = _rindex(stack)
list_iri = new_list(stack[start + 1 : ], objs, _abbreviate, new_blank)
iri = new_blank()
if stack[start + 1 : ][0] in datatypes:
objs.append((iri, _abbreviate(rdf_type), _abbreviate("http://www.w3.org/2000/01/rdf-schema#Datatype")))
else:
objs.append((iri, _abbreviate(rdf_type), _abbreviate("http://www.w3.org/2002/07/owl#Class")))
if (tag == "http://www.w3.org/2002/07/owl#ObjectIntersectionOf") or (tag == "http://www.w3.org/2002/07/owl#DataIntersectionOf"):
objs.append((iri, _abbreviate("http://www.w3.org/2002/07/owl#intersectionOf"), list_iri))
else:
objs.append((iri, _abbreviate("http://www.w3.org/2002/07/owl#unionOf"), list_iri))
stack[start :] = [iri]
elif (tag == "http://www.w3.org/2002/07/owl#Import"):
objs.append((ontology_iri, _abbreviate("http://www.w3.org/2002/07/owl#imports"), _abbreviate(current_content)))
elif (tag == "http://www.w3.org/2002/07/owl#IRI"):
#current_content is IRI !
if not current_content: current_content = ontology_iri_str
else:
if current_content.startswith("#") or current_content.startswith("/"): current_content = ontology_iri_str + current_content
stack.append(_abbreviate(current_content))
elif (tag == "http://www.w3.org/2002/07/owl#AbbreviatedIRI"):
stack.append(_abbreviate(_unabbreviate_IRI(current_content)))
elif (tag == "http://www.w3.org/2002/07/owl#AnnotationAssertion"):
if isinstance(stack[-1], tuple): datas.append((stack[-2], stack[-3], stack[-1][0], stack[-1][1]))
else: objs .append((stack[-2], stack[-3], stack[-1]))
if annots: purge_annotations((stack[-2], stack[-3], stack[-1]))
elif (tag == "http://www.w3.org/2002/07/owl#Annotation"):
if before_declaration: # On ontology
if isinstance(stack[-1], tuple): datas.append((ontology_iri, stack[-2], stack[-1][0], stack[-1][1]))
else: objs .append((ontology_iri, stack[-2], stack[-1]))
else:
annots.append((stack[-2], stack[-1]))
del stack[-2:]
elif (tag == "http://www.w3.org/2002/07/owl#DatatypeRestriction"):
start = _rindex(stack)
datatype, *list_bns = stack[start + 1 : ]
list_bns = new_list(list_bns, objs, _abbreviate, new_blank)
bn = new_blank()
stack[start :] = [bn]
objs.append((bn, _abbreviate(rdf_type), _abbreviate("http://www.w3.org/2000/01/rdf-schema#Datatype")))
objs.append((bn, _abbreviate("http://www.w3.org/2002/07/owl#onDatatype"), datatype))
objs.append((bn, _abbreviate("http://www.w3.org/2002/07/owl#withRestrictions"), list_bns))
elif (tag == "http://www.w3.org/2002/07/owl#FacetRestriction"):
facet, literal = stack[-2:]
bn = new_blank()
if isinstance(literal, tuple): datas.append((bn, facet, literal[0], literal[1]))
else: objs .append((bn, facet, literal))
stack[-2:] = [bn]
elif (tag == "http://www.w3.org/2002/07/owl#ObjectInverseOf") or (tag == "http://www.w3.org/2002/07/owl#DataInverseOf") or (tag == "http://www.w3.org/2002/07/owl#inverseOf"):
bn, prop = stack[-2:]
objs.append((bn, _abbreviate("http://www.w3.org/2002/07/owl#inverseOf"), prop))
stack[-2:] = [bn]
elif (tag == "http://www.w3.org/2002/07/owl#SameIndividual"):
objs.append((stack[-2], _abbreviate("http://www.w3.org/2002/07/owl#sameAs"), stack[-1]))
del stack[-2:]
elif (tag == "http://www.w3.org/2002/07/owl#DisjointUnion"):
start = _rindex(stack)
list_obj = stack[start + 1 : ]
list_iri = new_list(list_obj[1:], objs, _abbreviate, new_blank)
objs.append((list_obj[0], _abbreviate("http://www.w3.org/2002/07/owl#disjointUnionOf"), list_iri))
del stack[start:]
if len(objs ) > 800000: insert_objs()
if len(datas) > 800000: insert_datas()
def characters(str content):
nonlocal current_content
current_content += content
def purge_annotations(on_iri):
nonlocal annots
cdef int s, p, prop_iri, bn
cdef object value, o
if isinstance(on_iri, tuple):
s,p,o = on_iri
bn = new_blank()
objs.append((bn, _abbreviate(rdf_type), _abbreviate("http://www.w3.org/2002/07/owl#Axiom")))
objs.append((bn, _abbreviate("http://www.w3.org/2002/07/owl#annotatedSource"), s))
objs.append((bn, _abbreviate("http://www.w3.org/2002/07/owl#annotatedProperty"), p))
if isinstance(o, tuple): datas.append((bn, _abbreviate("http://www.w3.org/2002/07/owl#annotatedTarget"), o[0], o[1]))
else: objs .append((bn, _abbreviate("http://www.w3.org/2002/07/owl#annotatedTarget"), o))
else:
bn = on_iri
for prop_iri, value in annots:
if isinstance(value, tuple): datas.append((bn, prop_iri, value[0], value[1]))
else: objs .append((bn, prop_iri, value))
annots = []
parser.StartElementHandler = startElement
parser.EndElementHandler = endElement
parser.CharacterDataHandler = characters
try:
if isinstance(f, str):
f = open(f, "rb")
parser.ParseFile(f)
f.close()
else:
parser.ParseFile(f)
except Exception as e:
raise OwlReadyOntologyParsingError("OWL/XML parsing error in file %s, line %s, column %s." % (getattr(f, "name", getattr(f, "url", "???")), parser.CurrentLineNumber, parser.CurrentColumnNumber)) from e
return nb_triple