graph.pyx 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537
  1. import logging
  2. import rdflib
  3. from lakesuperior import env
  4. from libc.string cimport memcpy
  5. from libc.stdlib cimport free
  6. cimport lakesuperior.cy_include.collections as cc
  7. cimport lakesuperior.model.structures.callbacks as cb
  8. cimport lakesuperior.model.structures.keyset as kset
  9. from lakesuperior.model.base cimport Key, TripleKey
  10. from lakesuperior.model.graph cimport term
  11. from lakesuperior.model.graph.triple cimport BufferTriple
  12. from lakesuperior.model.structures.hash cimport term_hash_seed32
  13. from lakesuperior.model.structures.keyset cimport Keyset
  14. logger = logging.getLogger(__name__)
  15. cdef class Graph:
  16. """
  17. Fast and simple implementation of a graph.
  18. Most functions should mimic RDFLib's graph with less overhead. It uses
  19. the same funny but functional slicing notation.
  20. A Graph contains a :py:class:`lakesuperior.model.structures.keyset.Keyset`
  21. at its core and is bound to a
  22. :py:class:`~lakesuperior.store.ldp_rs.lmdb_triplestore.LmdbTriplestore`.
  23. This makes lookups and boolean operations very efficient because all these
  24. operations are performed on an array of integers.
  25. In order to retrieve RDF values from a ``Graph``, the underlying store
  26. must be looked up. This can be done in a different transaction than the
  27. one used to create or otherwise manipulate the graph.
  28. Every time a term is looked up or added to even a temporary graph, that
  29. term is added to the store and creates a key. This is because in the
  30. majority of cases that term is bound to be stored permanently anyway, and
  31. it's more efficient to hash it and allocate it immediately. A cleanup
  32. function to remove all orphaned terms (not in any triple or context index)
  33. can be later devised to compact the database.
  34. An instance of this class can also be converted to a ``rdflib.Graph``
  35. instance.
  36. """
  37. def __cinit__(
  38. self, store=None, size_t capacity=0, uri=None, set data=set()
  39. ):
  40. """
  41. Initialize the graph, optionally from Python/RDFlib data.
  42. :type store: lakesuperior.store.ldp_rs.lmdb_triplestore.LmdbTriplestore
  43. :param store: Triplestore where keys are mapped to terms. By default
  44. this is the default application store
  45. (``env.app_globals.rdf_store``).
  46. :param size_t capacity: Initial number of allocated triples.
  47. :param str uri: If specified, the graph becomes a named graph and can
  48. utilize the :py:meth:`value()` method and special slicing notation.
  49. :param set data: If specified, ``capacity`` is ignored and an initial key
  50. set is created from a set of 3-tuples of :py:class:``rdflib.Term``
  51. instances.
  52. """
  53. self.uri = rdflib.URIRef(uri) if uri else None
  54. self.store = store or env.app_globals.rdf_store
  55. # Initialize empty data set.
  56. if data:
  57. # Populate with provided Python set.
  58. self.keys = Keyset(len(data))
  59. self.add_triples(data)
  60. else:
  61. self.keys = Keyset(capacity)
  62. ## PROPERTIES ##
  63. property data:
  64. def __get__(self):
  65. """
  66. Triple data as a Python/RDFlib set.
  67. :rtype: set
  68. """
  69. cdef TripleKey spok
  70. ret = set()
  71. self.keys.seek()
  72. while self.keys.get_next(&spok):
  73. ret.add((
  74. self.store.from_key(spok[0]),
  75. self.store.from_key(spok[1]),
  76. self.store.from_key(spok[2])
  77. ))
  78. return ret
  79. property capacity:
  80. def __get__(self):
  81. """
  82. Total capacity of the underlying Keyset, in number of triples.
  83. """
  84. return self.keys.capacity
  85. ## MAGIC METHODS ##
  86. def __len__(self):
  87. """ Number of triples in the graph. """
  88. return self.keys.size()
  89. def __eq__(self, other):
  90. """ Equality operator between ``Graph`` instances. """
  91. return len(self & other) == 0
  92. def __repr__(self):
  93. """
  94. String representation of the graph.
  95. This includes the subject URI, number of triples contained and the
  96. memory address of the instance.
  97. """
  98. id_repr = f' uri={self.uri},' if self.uri else ''
  99. return (
  100. f'<{self.__class__.__name__} @0x{id(self):02x}{id_repr} '
  101. f'length={len(self)}>'
  102. )
  103. def __str__(self):
  104. """ String dump of the graph triples. """
  105. return str(self.data)
  106. def __add__(self, other):
  107. """ Alias for set-theoretical union. """
  108. return self.__or__(other)
  109. def __iadd__(self, other):
  110. """ Alias for in-place set-theoretical union. """
  111. return self.__ior__(other)
  112. def __sub__(self, other):
  113. """ Set-theoretical subtraction. """
  114. cdef Graph gr3 = self.empty_copy()
  115. gr3.keys = kset.subtract(self.keys, other.keys)
  116. return gr3
  117. def __isub__(self, other):
  118. """ In-place set-theoretical subtraction. """
  119. self.keys = kset.subtract(self.keys, other.keys)
  120. return self
  121. def __and__(self, other):
  122. """ Set-theoretical intersection. """
  123. cdef Graph gr3 = self.empty_copy()
  124. gr3.keys = kset.intersect(self.keys, other.keys)
  125. return gr3
  126. def __iand__(self, other):
  127. """ In-place set-theoretical intersection. """
  128. self.keys = kset.intersect(self.keys, other.keys)
  129. return self
  130. def __or__(self, other):
  131. """ Set-theoretical union. """
  132. cdef Graph gr3 = self.copy()
  133. gr3.keys = kset.merge(self.keys, other.keys)
  134. return gr3
  135. def __ior__(self, other):
  136. """ In-place set-theoretical union. """
  137. self.keys = kset.merge(self.keys, other.keys)
  138. return self
  139. def __xor__(self, other):
  140. """ Set-theoretical exclusive disjunction (XOR). """
  141. cdef Graph gr3 = self.empty_copy()
  142. gr3.keys = kset.xor(self.keys, other.keys)
  143. return gr3
  144. def __ixor__(self, other):
  145. """ In-place set-theoretical exclusive disjunction (XOR). """
  146. self.keys = kset.xor(self.keys, other.keys)
  147. return self
  148. def __contains__(self, trp):
  149. """
  150. Whether the graph contains a triple.
  151. :rtype: boolean
  152. """
  153. cdef TripleKey spok
  154. spok = [
  155. self.store.to_key(trp[0]),
  156. self.store.to_key(trp[1]),
  157. self.store.to_key(trp[2]),
  158. ]
  159. return self.keys.contains(&spok)
  160. def __iter__(self):
  161. """ Graph iterator. It iterates over the set triples. """
  162. yield from self.data
  163. # Slicing.
  164. def __getitem__(self, item):
  165. """
  166. Slicing function.
  167. It behaves similarly to `RDFLib graph slicing
  168. <https://rdflib.readthedocs.io/en/stable/utilities.html#slicing-graphs>`__
  169. """
  170. if isinstance(item, slice):
  171. s, p, o = item.start, item.stop, item.step
  172. return self._slice(s, p, o)
  173. elif self.uri and isinstance(item, rdflib.Node):
  174. # If a Node is given, return all values for that predicate.
  175. return self._slice(self.uri, item, None)
  176. else:
  177. raise TypeError(f'Wrong slice format: {item}.')
  178. def __hash__(self):
  179. """ TODO Bogus """
  180. return self.uri
  181. ## BASIC PYTHON-ACCESSIBLE SET OPERATIONS ##
  182. def value(self, p, strict=False):
  183. """
  184. Get an individual value.
  185. :param rdflib.termNode p: Predicate to search for.
  186. :param bool strict: If set to ``True`` the method raises an error if
  187. more than one value is found. If ``False`` (the default) only
  188. the first found result is returned.
  189. :rtype: rdflib.term.Node
  190. """
  191. if not self.uri:
  192. raise ValueError('Cannot use `value` on a non-named graph.')
  193. # TODO use slice.
  194. values = {trp[2] for trp in self.lookup((self.uri, p, None))}
  195. if strict and len(values) > 1:
  196. raise RuntimeError('More than one value found for {}, {}.'.format(
  197. self.uri, p))
  198. for ret in values:
  199. return ret
  200. return None
  201. def terms_by_type(self, type):
  202. """
  203. Get all terms of a type: subject, predicate or object.
  204. :param str type: One of ``s``, ``p`` or ``o``.
  205. """
  206. i = 'spo'.index(type)
  207. return {r[i] for r in self.data}
  208. def add_triples(self, triples):
  209. """
  210. Add triples to the graph.
  211. This method checks for duplicates.
  212. :param iterable triples: iterable of 3-tuple triples.
  213. """
  214. cdef:
  215. Key sk, pk, ok
  216. TripleKey spok = [sk, pk, ok]
  217. for s, p, o in triples:
  218. logger.info(f'Adding {s} {p} {o} to store: {self.store}')
  219. sk = self.store.to_key(s)
  220. logger.info(f'sk: {sk}')
  221. pk = self.store.to_key(p)
  222. logger.info(f'pk: {pk}')
  223. ok = self.store.to_key(o)
  224. logger.info(f'ok: {ok}')
  225. logger.info(f'spok: {sk} {pk} {ok}')
  226. self.keys.add(&spok, True)
  227. def remove(self, pattern):
  228. """
  229. Remove triples by pattern.
  230. The pattern used is similar to :py:meth:`LmdbTripleStore.delete`.
  231. """
  232. self._match_ptn_callback(
  233. pattern, self, del_trp_callback, NULL
  234. )
  235. ## CYTHON-ACCESSIBLE BASIC METHODS ##
  236. cdef Graph copy(self, str uri=None):
  237. """
  238. Create copy of the graph with a different (or no) URI.
  239. :param str uri: URI of the new graph. This should be different from
  240. the original.
  241. """
  242. cdef Graph new_gr = Graph(self.store, self.capacity, uri=uri)
  243. new_gr.keys = self.keys.copy()
  244. cdef Graph empty_copy(self, str uri=None):
  245. """
  246. Create an empty copy with same capacity and store binding.
  247. :param str uri: URI of the new graph. This should be different from
  248. the original.
  249. """
  250. return Graph(self.store, self.capacity, uri=uri)
  251. cpdef void set(self, tuple trp) except *:
  252. """
  253. Set a single value for subject and predicate.
  254. Remove all triples matching ``s`` and ``p`` before adding ``s p o``.
  255. """
  256. if None in trp:
  257. raise ValueError(f'Invalid triple: {trp}')
  258. self.remove((trp[0], trp[1], None))
  259. self.add((trp,))
  260. def as_rdflib(self):
  261. """
  262. Return the data set as an RDFLib Graph.
  263. :rtype: rdflib.Graph
  264. """
  265. gr = Graph(identifier=self.uri)
  266. for trp in self.data:
  267. gr.add(trp)
  268. return gr
  269. def _slice(self, s, p, o):
  270. """
  271. Return terms filtered by other terms.
  272. This behaves like the rdflib.Graph slicing policy.
  273. """
  274. logger.info(f'Slicing: {s} {p} {o}')
  275. # If no terms are unbound, check for containment.
  276. if s is not None and p is not None and o is not None: # s p o
  277. return (s, p, o) in self
  278. # If some terms are unbound, do a lookup.
  279. res = self.lookup((s, p, o))
  280. logger.info(f'Slicing results: {res}')
  281. if s is not None:
  282. if p is not None: # s p ?
  283. return {r[2] for r in res}
  284. if o is not None: # s ? o
  285. return {r[1] for r in res}
  286. # s ? ?
  287. return {(r[1], r[2]) for r in res}
  288. if p is not None:
  289. if o is not None: # ? p o
  290. return {r[0] for r in res}
  291. # ? p ?
  292. return {(r[0], r[2]) for r in res}
  293. if o is not None: # ? ? o
  294. return {(r[0], r[1]) for r in res}
  295. # ? ? ?
  296. return res
  297. def lookup(self, pattern):
  298. """
  299. Look up triples by a pattern.
  300. This function converts RDFLib terms into the serialized format stored
  301. in the graph's internal structure and compares them bytewise.
  302. Any and all of the lookup terms msy be ``None``.
  303. :rtype: Graph
  304. "return: New Graph instance with matching triples.
  305. """
  306. cdef:
  307. Graph res_gr = self.empty_copy()
  308. self._match_ptn_callback(pattern, res_gr, add_trp_callback, NULL)
  309. res_gr.keys.resize()
  310. return res_gr
  311. cdef void _match_ptn_callback(
  312. self, pattern, Graph gr,
  313. lookup_callback_fn_t callback_fn, void* ctx=NULL
  314. ) except *:
  315. """
  316. Execute an arbitrary function on a list of triples matching a pattern.
  317. The arbitrary function is appied to each triple found in the current
  318. graph, and to a discrete graph that can be the current graph itself
  319. or a different one.
  320. """
  321. cdef:
  322. kset.key_cmp_fn_t cmp_fn
  323. Key k1, k2, sk, pk, ok
  324. TripleKey spok
  325. s, p, o = pattern
  326. logger.info(f'Match Callback pattern: {pattern}')
  327. # Decide comparison logic outside the loop.
  328. if s is not None and p is not None and o is not None:
  329. # Shortcut for 3-term match.
  330. spok = [
  331. self.store.to_key(s),
  332. self.store.to_key(p),
  333. self.store.to_key(o),
  334. ]
  335. if self.keys.contains(&spok):
  336. callback_fn(gr, &spok, ctx)
  337. return
  338. if s is not None:
  339. k1 = self.store.to_key(s)
  340. if p is not None:
  341. k2 = self.store.to_key(p)
  342. cmp_fn = cb.lookup_skpk_cmp_fn
  343. logger.info('SKPK')
  344. elif o is not None:
  345. k2 = self.store.to_key(o)
  346. cmp_fn = cb.lookup_skok_cmp_fn
  347. logger.info('SKOK')
  348. else:
  349. cmp_fn = cb.lookup_sk_cmp_fn
  350. elif p is not None:
  351. k1 = self.store.to_key(p)
  352. if o is not None:
  353. k2 = self.store.to_key(o)
  354. cmp_fn = cb.lookup_pkok_cmp_fn
  355. else:
  356. cmp_fn = cb.lookup_pk_cmp_fn
  357. elif o is not None:
  358. k1 = self.store.to_key(o)
  359. cmp_fn = cb.lookup_ok_cmp_fn
  360. else:
  361. cmp_fn = cb.lookup_none_cmp_fn
  362. logger.info(f'k1: {k1} k2: {k2}')
  363. # Iterate over serialized triples.
  364. self.keys.seek()
  365. while self.keys.get_next(&spok):
  366. logger.info('Verifying spok: {spok}')
  367. if cmp_fn(&spok, k1, k2):
  368. callback_fn(gr, &spok, ctx)
  369. ## LOOKUP CALLBACK FUNCTIONS
  370. cdef inline void add_trp_callback(
  371. Graph gr, const TripleKey* spok_p, void* ctx
  372. ):
  373. """
  374. Add a triple to a graph as a result of a lookup callback.
  375. """
  376. gr.keys.add(spok_p)
  377. cdef inline void del_trp_callback(
  378. Graph gr, const TripleKey* spok_p, void* ctx
  379. ):
  380. """
  381. Remove a triple from a graph as a result of a lookup callback.
  382. """
  383. #logger.info('removing triple: {} {} {}'.format(
  384. # buffer_dump(trp.s), buffer_dump(trp.p), buffer_dump(trp.o)
  385. #))
  386. gr.keys.remove(spok_p)