forked from pwin/owlready2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rdflib_store.py
299 lines (246 loc) · 10.9 KB
/
rdflib_store.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
# -*- coding: utf-8 -*-
# Owlready2
# Copyright (C) 2017-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 rdflib, rdflib.store
from rdflib import URIRef, BNode, Literal
import owlready2.triplelite, owlready2.namespace
from owlready2.base import *
class TripleLiteRDFlibStore(rdflib.store.Store):
context_aware = True
def __init__(self, world):
self.world = world
self.triplelite = world.graph
super().__init__()
self.__namespace = {}
self.__prefix = {}
self.main_graph = TripleLiteRDFlibGraph(store = self)
self.main_graph.onto = None
self.main_graph.triplelite = self.triplelite
self.context_graphs = {}
for onto, triplelite in self.triplelite.onto_2_subgraph.items():
graph = TripleLiteRDFlibGraph(store = self, identifier = URIRef(onto.base_iri))
graph.onto = onto
graph.triplelite = triplelite
self.context_graphs[onto] = graph
def _add_onto(self, onto):
graph = TripleLiteRDFlibGraph(store = self, identifier = URIRef(onto.base_iri))
graph.onto = onto
graph.triplelite = onto.graph
self.context_graphs[onto] = graph
def _2_python(self, x):
if isinstance(x, rdflib.term.URIRef ): return self.world[str(x)]
elif isinstance(x, rdflib.term.BNode ): return str(x)
elif isinstance(x, rdflib.term.Literal): return x.toPython()
def _rdflib_2_owlready(self, spo):
s,p,o = spo
if isinstance(s, rdflib.term.URIRef ): s = self.triplelite._abbreviate(str(s))
elif isinstance(s, rdflib.term.BNode ): s = -int(s)
if isinstance(p, rdflib.term.URIRef ): p = self.triplelite._abbreviate(str(p))
if isinstance(o, rdflib.term.URIRef ): o = self.triplelite._abbreviate(str(o)); d = None
elif isinstance(o, rdflib.term.BNode ): o = -int(o); d = None
elif isinstance(o, rdflib.term.Literal):
if o.language is None:
if o.datatype:
d = self.triplelite._abbreviate(str(o.datatype))
if isinstance(o.value, bool): o = str(o)
elif isinstance(o.value, (int, float)): o = o.value
else: o = str(o)
else:
d = 0
o = str(o)
else:
d = "@%s" % o.language
o = str(o)
else:
d = None
return s,p,o,d
def _owlready_2_rdflib(self, s,p,o,d = None):
if s < 0: s = BNode(-s)
else: s = URIRef(self.triplelite._unabbreviate(s))
p = URIRef(self.triplelite._unabbreviate(p))
if d is None:
if o < 0: o = BNode(-o)
else: o = URIRef(self.triplelite._unabbreviate(o))
else:
if isinstance(d, str) and d.startswith("@"): o = Literal(o, lang = d[1:])
elif (d == "") or (d == 0): o = Literal(o)
else: o = Literal(o, datatype = URIRef(self.triplelite._unabbreviate(d)))
return s,p,o
def add(self, xxx_todo_changeme, context, quoted = False):
s,p,o,d = self._rdflib_2_owlready(xxx_todo_changeme)
if isinstance(context.triplelite, owlready2.triplelite.SubGraph):
triplelite = context.triplelite
else:
l = owlready2.namespace.CURRENT_NAMESPACES.get()
if not l: raise ValueError("Cannot add triples to a graph outside a 'with' block. Please start a 'with' block to indicate in which ontology the new triple is added.")
triplelite = l[-1].ontology.graph
sub = None
if (s > 0) and (s in self.world._entities): sub = self.world._entities[s]
elif (s < 0) and (s in triplelite.onto._bnodes): sub = triplelite.onto._bnodes[s]
if not sub is None:
prop = self.world._entities.get(p)
if prop:
try: delattr(sub, prop.python_name)
except: pass
#elif isinstance(sub, owlready2.class_construct.Construct):
# self._bn_needing_update.append((triplelite.onto, s))
elif d is None:
obj = self.world._load_by_storid(o)
if not obj is None:
if (p == rdf_type) or (p == rdfs_subclassof) or (p == rdfs_subpropertyof):
sub.is_a.append(obj)
return
elif (p == owl_equivalentindividual) or (p == owl_equivalentclass) or (p == owl_equivalentproperty):
sub.equivalent_to.append(obj)
return
elif (p == owl_inverse_property):
sub.owl_inverse_property = obj
return
elif (p == rdf_domain):
sub.domain.append(obj)
return
elif (p == rdf_range):
sub.range.append(obj)
return
if d is None: triplelite._add_obj_triple_raw_spo(s,p,o)
else: triplelite._add_data_triple_raw_spod(s,p,o,d)
def remove(self, xxx_todo_changeme, context = None):
s,p,o,d = self._rdflib_2_owlready(xxx_todo_changeme)
sub = None
if (s > 0) and (s in self.world._entities):
sub = self.world._entities[s]
elif s < 0:
for ontology in self.world.ontologies.values():
if s in ontology._bnodes:
sub = ontology._bnodes[s]
break
if not sub is None:
prop = self.world._entities.get(p)
if prop:
try: delattr(sub, prop.python_name)
except: pass
elif d is None:
obj = self.world._load_by_storid(o)
if not obj is None:
if (p == rdf_type) or (p == rdfs_subclassof) or (p == rdfs_subpropertyof):
sub.is_a.remove(obj)
return
elif (p == owl_equivalentindividual) or (p == owl_equivalentclass) or (p == owl_equivalentproperty):
sub.equivalent_to.remove(obj)
return
elif (p == owl_inverse_property):
sub.owl_inverse_property = None
return
elif (p == rdf_domain):
sub.domain.remove(obj)
return
elif (p == rdf_range):
sub.range.remove(obj)
return
if d is None: context.triplelite._del_obj_triple_raw_spo(s,p,o)
else: context.triplelite._del_data_triple_raw_spod(s,p,o,d)
def triples(self, triple_pattern, context = None):
rs,rp,ro,rd = self._rdflib_2_owlready(triple_pattern)
if ro is None:
for s,p,o,d in context.triplelite._get_triples_spod_spod(rs,rp,None, None):
yield self._owlready_2_rdflib(s,p,o,d), context
if rp:
prop = self.world._entities.get(rp)
if prop and prop._inverse_storid:
for o,p,s in context.triplelite._get_obj_triples_spo_spo(None,prop._inverse_storid,rs):
yield self._owlready_2_rdflib(s,rp,o,None), context
else:
for o,p,s in context.triplelite._get_obj_triples_spo_spo(None,None,rs):
prop = self.world._entities.get(p)
if prop and prop._inverse_storid:
yield self._owlready_2_rdflib(s,prop._inverse_storid,o,None), context
elif rd is None:
for s,p,o in context.triplelite._get_obj_triples_spo_spo(rs,rp,ro):
yield self._owlready_2_rdflib(s,p,o,None), context
if rp:
prop = self.world._entities.get(rp)
if prop and prop._inverse_storid:
for o,p,s in context.triplelite._get_obj_triples_spo_spo(ro,prop._inverse_storid,rs):
yield self._owlready_2_rdflib(s,rp,o,None), context
else:
for o,p,s in context.triplelite._get_obj_triples_spo_spo(ro,None,rs):
prop = self.world._entities.get(p)
if prop and prop._inverse_storid:
yield self._owlready_2_rdflib(s,prop._inverse_storid,o,None), context
else:
for s,p,o,d in context.triplelite._get_data_triples_spod_spod(rs,rp,ro, None):
yield self._owlready_2_rdflib(s,p,o,d), context
def __len__(self, context = None):
return len(context.triplelite)
def contexts(self, triple = None):
if triple is None:
return self.context_graphs.values()
else:
triple = self._rdflib_2_owlready(triple)
for graph in self.context_graphs.values():
if graph.triplelite.has_triple(*triple): yield graph
def bind(self, prefix, namespace):
self.__prefix[namespace] = prefix
self.__namespace[prefix] = namespace
def namespace(self, prefix):
return self.__namespace.get(prefix, None)
def prefix(self, namespace):
return self.__prefix.get(namespace, None)
def namespaces(self):
for prefix, namespace in self.__namespace.items():
yield prefix, namespace
def get_context(self, identifier_or_ontology):
if isinstance(identifier_or_ontology, URIRef):
identifier_or_ontology = str(identifier_or_ontology)
for onto, graph in self.context_graphs.items():
if identifier_or_ontology == onto.base_iri:
return graph
for onto, graph in self.context_graphs.items():
if identifier_or_ontology == onto.base_iri[:-1]:
return graph
raise ValueError
else:
return self.context_graphs[identifier_or_ontology]
class TripleLiteRDFlibGraph(rdflib.Graph):
onto = None
def query_owlready(self, query, *args, **kargs):
r = self.query(query, *args, **kargs)
for line in r:
line2 = [self._rdflib_2_owlready(i) for i in line]
yield line2
# def update(self, query, *args, **kargs):
# self.store._bn_needing_update = set()
# r = rdflib.Graph.update(self, query, *args, **kargs)
# for onto, bn in self.store._bn_needing_update:
# onto._reload_bnode(bn)
# return r
def _rdflib_2_owlready(self, o):
if isinstance(o, rdflib.term.URIRef ): o = self.store.world[str(o)]
elif isinstance(o, rdflib.term.BNode ): o = (self.onto or self.store.world)._parse_bnode(o)
elif isinstance(o, rdflib.term.Literal):
if o.language is None:
if o.datatype:
d = self.triplelite._abbreviate(str(o.datatype))
o = o.value
else:
d = ""
o = str(o)
else:
d = "@%s" % o.language
o = str(o)
o = from_literal(o, d)
return o
def get_context(self, onto): return self.store.get_context(onto)
def BNode(self): return BNode(-self.store.world.new_blank_node())