|
@@ -323,7 +323,7 @@ cdef class SimpleGraph:
|
|
return graph_set
|
|
return graph_set
|
|
|
|
|
|
@property
|
|
@property
|
|
- def _all_terms(self):
|
|
|
|
|
|
+ def stored_terms(self):
|
|
"""
|
|
"""
|
|
All terms in the graph with their memory address.
|
|
All terms in the graph with their memory address.
|
|
|
|
|
|
@@ -446,7 +446,7 @@ cdef class SimpleGraph:
|
|
term.serialize_from_rdflib(p, &sp)
|
|
term.serialize_from_rdflib(p, &sp)
|
|
term.serialize_from_rdflib(o, &so)
|
|
term.serialize_from_rdflib(o, &so)
|
|
|
|
|
|
- return self._trp_contains(&btrp)
|
|
|
|
|
|
+ return self.trp_contains(&btrp)
|
|
|
|
|
|
|
|
|
|
def __iter__(self):
|
|
def __iter__(self):
|
|
@@ -618,7 +618,7 @@ cdef class SimpleGraph:
|
|
bt = <BufferTriple*>cur
|
|
bt = <BufferTriple*>cur
|
|
#print('Checking: <0x{:02x}> <0x{:02x}> <0x{:02x}>'.format(
|
|
#print('Checking: <0x{:02x}> <0x{:02x}> <0x{:02x}>'.format(
|
|
# <size_t>bt.s, <size_t>bt.p, <size_t>bt.o))
|
|
# <size_t>bt.s, <size_t>bt.p, <size_t>bt.o))
|
|
- if other._trp_contains(bt):
|
|
|
|
|
|
+ if other.trp_contains(bt):
|
|
#print('Adding.')
|
|
#print('Adding.')
|
|
new_gr.add_triple(bt)
|
|
new_gr.add_triple(bt)
|
|
|
|
|
|
@@ -643,7 +643,7 @@ cdef class SimpleGraph:
|
|
cc.hashset_iter_init(&it, self._triples)
|
|
cc.hashset_iter_init(&it, self._triples)
|
|
while cc.hashset_iter_next(&it, &cur) != cc.CC_ITER_END:
|
|
while cc.hashset_iter_next(&it, &cur) != cc.CC_ITER_END:
|
|
bt = <BufferTriple*>cur
|
|
bt = <BufferTriple*>cur
|
|
- if not other._trp_contains(bt):
|
|
|
|
|
|
+ if not other.trp_contains(bt):
|
|
self.remove_triple(bt)
|
|
self.remove_triple(bt)
|
|
|
|
|
|
|
|
|
|
@@ -670,7 +670,7 @@ cdef class SimpleGraph:
|
|
bt = <BufferTriple*>cur
|
|
bt = <BufferTriple*>cur
|
|
#print('Checking: <0x{:02x}> <0x{:02x}> <0x{:02x}>'.format(
|
|
#print('Checking: <0x{:02x}> <0x{:02x}> <0x{:02x}>'.format(
|
|
# <size_t>bt.s, <size_t>bt.p, <size_t>bt.o))
|
|
# <size_t>bt.s, <size_t>bt.p, <size_t>bt.o))
|
|
- if not other._trp_contains(bt):
|
|
|
|
|
|
+ if not other.trp_contains(bt):
|
|
#print('Adding.')
|
|
#print('Adding.')
|
|
new_gr.add_triple(bt)
|
|
new_gr.add_triple(bt)
|
|
|
|
|
|
@@ -694,7 +694,7 @@ cdef class SimpleGraph:
|
|
cc.hashset_iter_init(&it, self._triples)
|
|
cc.hashset_iter_init(&it, self._triples)
|
|
while cc.hashset_iter_next(&it, &cur) != cc.CC_ITER_END:
|
|
while cc.hashset_iter_next(&it, &cur) != cc.CC_ITER_END:
|
|
bt = <BufferTriple*>cur
|
|
bt = <BufferTriple*>cur
|
|
- if other._trp_contains(bt):
|
|
|
|
|
|
+ if other.trp_contains(bt):
|
|
self.remove_triple(bt)
|
|
self.remove_triple(bt)
|
|
|
|
|
|
|
|
|
|
@@ -718,14 +718,14 @@ cdef class SimpleGraph:
|
|
cc.hashset_iter_init(&it, self._triples)
|
|
cc.hashset_iter_init(&it, self._triples)
|
|
while cc.hashset_iter_next(&it, &cur) != cc.CC_ITER_END:
|
|
while cc.hashset_iter_next(&it, &cur) != cc.CC_ITER_END:
|
|
bt = <BufferTriple*>cur
|
|
bt = <BufferTriple*>cur
|
|
- if not other._trp_contains(bt):
|
|
|
|
|
|
+ if not other.trp_contains(bt):
|
|
new_gr.add_triple(bt)
|
|
new_gr.add_triple(bt)
|
|
|
|
|
|
# Other way around.
|
|
# Other way around.
|
|
cc.hashset_iter_init(&it, other._triples)
|
|
cc.hashset_iter_init(&it, other._triples)
|
|
while cc.hashset_iter_next(&it, &cur) != cc.CC_ITER_END:
|
|
while cc.hashset_iter_next(&it, &cur) != cc.CC_ITER_END:
|
|
bt = <BufferTriple*>cur
|
|
bt = <BufferTriple*>cur
|
|
- if not self._trp_contains(bt):
|
|
|
|
|
|
+ if not self.trp_contains(bt):
|
|
new_gr.add_triple(bt)
|
|
new_gr.add_triple(bt)
|
|
|
|
|
|
return new_gr
|
|
return new_gr
|
|
@@ -753,14 +753,14 @@ cdef class SimpleGraph:
|
|
cc.hashset_iter_init(&it, other._triples)
|
|
cc.hashset_iter_init(&it, other._triples)
|
|
while cc.hashset_iter_next(&it, &cur) != cc.CC_ITER_END:
|
|
while cc.hashset_iter_next(&it, &cur) != cc.CC_ITER_END:
|
|
bt = <BufferTriple*>cur
|
|
bt = <BufferTriple*>cur
|
|
- if not self._trp_contains(bt):
|
|
|
|
|
|
+ if not self.trp_contains(bt):
|
|
tmp.add_triple(bt)
|
|
tmp.add_triple(bt)
|
|
|
|
|
|
# Remove triples in common.
|
|
# Remove triples in common.
|
|
cc.hashset_iter_init(&it, self._triples)
|
|
cc.hashset_iter_init(&it, self._triples)
|
|
while cc.hashset_iter_next(&it, &cur) != cc.CC_ITER_END:
|
|
while cc.hashset_iter_next(&it, &cur) != cc.CC_ITER_END:
|
|
bt = <BufferTriple*>cur
|
|
bt = <BufferTriple*>cur
|
|
- if other._trp_contains(bt):
|
|
|
|
|
|
+ if other.trp_contains(bt):
|
|
print(self.remove_triple(bt))
|
|
print(self.remove_triple(bt))
|
|
|
|
|
|
self |= tmp
|
|
self |= tmp
|
|
@@ -800,7 +800,7 @@ cdef class SimpleGraph:
|
|
return cc.hashset_remove(self._triples, btrp, NULL)
|
|
return cc.hashset_remove(self._triples, btrp, NULL)
|
|
|
|
|
|
|
|
|
|
- cdef bint _trp_contains(self, BufferTriple* btrp):
|
|
|
|
|
|
+ cdef bint trp_contains(self, BufferTriple* btrp):
|
|
cdef:
|
|
cdef:
|
|
cc.HashSetIter it
|
|
cc.HashSetIter it
|
|
void* cur
|
|
void* cur
|
|
@@ -820,7 +820,7 @@ cdef class SimpleGraph:
|
|
"""
|
|
"""
|
|
if None in trp:
|
|
if None in trp:
|
|
raise ValueError(f'Invalid triple: {trp}')
|
|
raise ValueError(f'Invalid triple: {trp}')
|
|
- self.remove_triples((trp[0], trp[1], None))
|
|
|
|
|
|
+ self.remove((trp[0], trp[1], None))
|
|
self.add((trp,))
|
|
self.add((trp,))
|
|
|
|
|
|
|
|
|
|
@@ -836,7 +836,7 @@ cdef class SimpleGraph:
|
|
self.data.remove(match)
|
|
self.data.remove(match)
|
|
|
|
|
|
|
|
|
|
- cpdef object as_rdflib(self):
|
|
|
|
|
|
+ def as_rdflib(self):
|
|
"""
|
|
"""
|
|
Return the data set as an RDFLib Graph.
|
|
Return the data set as an RDFLib Graph.
|
|
|
|
|
|
@@ -979,26 +979,6 @@ cdef class Imr(SimpleGraph):
|
|
#super().__init(*args, **kwargs)
|
|
#super().__init(*args, **kwargs)
|
|
|
|
|
|
|
|
|
|
- @property
|
|
|
|
- def identifier(self):
|
|
|
|
- """
|
|
|
|
- IMR URI. For compatibility with RDFLib Resource.
|
|
|
|
-
|
|
|
|
- :rtype: string
|
|
|
|
- """
|
|
|
|
- return self.uri
|
|
|
|
-
|
|
|
|
-
|
|
|
|
- @property
|
|
|
|
- def graph(self):
|
|
|
|
- """
|
|
|
|
- Return a SimpleGraph with the same data.
|
|
|
|
-
|
|
|
|
- :rtype: SimpleGraph
|
|
|
|
- """
|
|
|
|
- raise NotImplementedError() # TODO
|
|
|
|
-
|
|
|
|
-
|
|
|
|
def __repr__(self):
|
|
def __repr__(self):
|
|
"""
|
|
"""
|
|
String representation of an Imr.
|
|
String representation of an Imr.
|