graph.pyx 32 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127
  1. import logging
  2. from functools import wraps
  3. from rdflib import Graph
  4. from rdflib.term import Node
  5. from lakesuperior import env
  6. from libc.stdint cimport uint32_t, uint64_t
  7. from libc.string cimport memcmp, memcpy
  8. from libc.stdlib cimport free
  9. from cymem.cymem cimport Pool
  10. from lakesuperior.cy_include cimport cylmdb as lmdb
  11. from lakesuperior.cy_include cimport collections as cc
  12. from lakesuperior.cy_include cimport spookyhash as sph
  13. from lakesuperior.model.graph cimport term
  14. from lakesuperior.store.ldp_rs.lmdb_triplestore cimport (
  15. KLEN, DBL_KLEN, TRP_KLEN, TripleKey)
  16. from lakesuperior.model.structures.hash cimport term_hash_seed32
  17. from lakesuperior.model.structures.keyset cimport Keyset
  18. from lakesuperior.model.base cimport Buffer
  19. from lakesuperior.model.graph.triple cimport BufferTriple
  20. from lakesuperior.model.structures.hash cimport hash64
  21. cdef extern from 'spookyhash_api.h':
  22. uint64_t spookyhash_64(const void *input, size_t input_size, uint64_t seed)
  23. logger = logging.getLogger(__name__)
  24. cdef int term_cmp_fn(const void* key1, const void* key2):
  25. """
  26. Compare function for two Buffer objects.
  27. :rtype: int
  28. :return: 0 if the byte streams are the same, another integer otherwise.
  29. """
  30. b1 = <Buffer *>key1
  31. b2 = <Buffer *>key2
  32. if b1.sz != b2.sz:
  33. logger.info(f'Sizes differ: {b1.sz} != {b2.sz}. Return 1.')
  34. return 1
  35. cdef int cmp = memcmp(b1.addr, b2.addr, b1.sz)
  36. logger.info(f'term memcmp: {cmp}')
  37. return cmp
  38. cdef int trp_lit_cmp_fn(const void* key1, const void* key2):
  39. """
  40. Compare function for two triples in a set.
  41. s, p, o byte data are compared literally.
  42. :rtype: int
  43. :return: 0 if all three terms point to byte-wise identical data in both
  44. triples.
  45. """
  46. t1 = <BufferTriple *>key1
  47. t2 = <BufferTriple *>key2
  48. #print('Comparing terms: {} {} {}'.format(
  49. # (<unsigned char*>t1.s.addr)[:t1.s.sz],
  50. # (<unsigned char*>t1.p.addr)[:t1.p.sz],
  51. # (<unsigned char*>t1.o.addr)[:t1.o.sz]
  52. #))
  53. #print('With: {} {} {}'.format(
  54. # (<unsigned char*>t2.s.addr)[:t2.s.sz],
  55. # (<unsigned char*>t2.p.addr)[:t2.p.sz],
  56. # (<unsigned char*>t2.o.addr)[:t2.o.sz]
  57. #))
  58. diff = (
  59. term_cmp_fn(t1.o, t2.o) or
  60. term_cmp_fn(t1.s, t2.s) or
  61. term_cmp_fn(t1.p, t2.p)
  62. )
  63. logger.info(f'Triples match: {not(diff)}')
  64. return diff
  65. cdef int trp_cmp_fn(const void* key1, const void* key2):
  66. """
  67. Compare function for two triples in a set.
  68. Here, pointers to terms are compared for s, p, o. The pointers should be
  69. guaranteed to point to unique values (i.e. no two pointers have the same
  70. term value within a graph).
  71. :rtype: int
  72. :return: 0 if the addresses of all terms are the same, 1 otherwise.
  73. """
  74. t1 = <BufferTriple *>key1
  75. t2 = <BufferTriple *>key2
  76. #print('Comparing terms: {} {} {}'.format(
  77. # (<unsigned char*>t1.s.addr)[:t1.s.sz],
  78. # (<unsigned char*>t1.p.addr)[:t1.p.sz],
  79. # (<unsigned char*>t1.o.addr)[:t1.o.sz]
  80. #))
  81. #print('With: {} {} {}'.format(
  82. # (<unsigned char*>t2.s.addr)[:t2.s.sz],
  83. # (<unsigned char*>t2.p.addr)[:t2.p.sz],
  84. # (<unsigned char*>t2.o.addr)[:t2.o.sz]
  85. #))
  86. #print('Comparing addresses: <0x{:02x}> <0x{:02x}> <0x{:02x}>'.format(
  87. # <size_t>t1.s, <size_t>t1.p, <size_t>t1.o))
  88. #print('With: <0x{:02x}> <0x{:02x}> <0x{:02x}>'.format(
  89. # <size_t>t2.s, <size_t>t2.p, <size_t>t2.o))
  90. cdef int is_not_equal = (
  91. t1.s.addr != t2.s.addr or
  92. t1.p.addr != t2.p.addr or
  93. t1.o.addr != t2.o.addr
  94. )
  95. logger.info(f'Triples match: {not(is_not_equal)}')
  96. return is_not_equal
  97. cdef bint graph_eq_fn(SimpleGraph g1, SimpleGraph g2):
  98. """
  99. Compare 2 graphs for equality.
  100. Note that this returns the opposite value than the triple and term
  101. compare functions: 1 (True) if equal, 0 (False) if not.
  102. """
  103. cdef:
  104. void* el
  105. cc.HashSetIter it
  106. cc.hashset_iter_init(&it, g1._triples)
  107. while cc.hashset_iter_next(&it, &el) != cc.CC_ITER_END:
  108. if cc.hashset_contains(g2._triples, el):
  109. return False
  110. return True
  111. cdef size_t term_hash_fn(const void* key, int l, uint32_t seed):
  112. """
  113. Hash function for serialized terms (:py:class:`Buffer` objects)
  114. """
  115. return <size_t>spookyhash_64((<Buffer*>key).addr, (<Buffer*>key).sz, seed)
  116. cdef size_t trp_lit_hash_fn(const void* key, int l, uint32_t seed):
  117. """
  118. Hash function for sets of (serialized) triples.
  119. This function concatenates the literal terms of the triple as bytes
  120. and computes their hash.
  121. """
  122. trp = <BufferTriple*>key
  123. seed64 = <uint64_t>seed
  124. seed_dummy = seed64
  125. cdef sph.spookyhash_context ctx
  126. sph.spookyhash_context_init(&ctx, seed64, seed_dummy)
  127. sph.spookyhash_update(&ctx, trp.s.addr, trp.s.sz)
  128. sph.spookyhash_update(&ctx, trp.s.addr, trp.p.sz)
  129. sph.spookyhash_update(&ctx, trp.s.addr, trp.o.sz)
  130. sph.spookyhash_final(&ctx, &seed64, &seed_dummy)
  131. return <size_t>seed64
  132. cdef size_t trp_hash_fn(const void* key, int l, uint32_t seed):
  133. """
  134. Hash function for sets of (serialized) triples.
  135. This function computes the hash of the concatenated pointer values in the
  136. s, p, o members of the triple. The triple structure is treated as a byte
  137. string. This is safe in spite of byte-wise struct evaluation being a
  138. frowned-upon practice (due to padding issues), because it is assumed that
  139. the input value is always the same type of structure.
  140. """
  141. return <size_t>spookyhash_64(key, l, seed)
  142. cdef size_t hash_ptr_passthrough(const void* key, int l, uint32_t seed):
  143. """
  144. No-op function that takes a pointer and does *not* hash it.
  145. The pointer value is used as the "hash".
  146. """
  147. return <size_t>key
  148. cdef inline bint lookup_none_cmp_fn(
  149. const BufferTriple *trp, const Buffer *t1, const Buffer *t2
  150. ):
  151. """
  152. Dummy callback for queries with all parameters unbound.
  153. This function always returns ``True``
  154. """
  155. return True
  156. cdef inline bint lookup_s_cmp_fn(
  157. const BufferTriple *trp, const Buffer *t1, const Buffer *t2
  158. ):
  159. """
  160. Lookup callback compare function for a given s in a triple.
  161. The function returns ``True`` if ``t1`` matches the first term.
  162. ``t2`` is not used and is declared only for compatibility with the
  163. other interchangeable functions.
  164. """
  165. return term_cmp_fn(t1, trp[0].s)
  166. cdef inline bint lookup_p_cmp_fn(
  167. const BufferTriple *trp, const Buffer *t1, const Buffer *t2
  168. ):
  169. return term_cmp_fn(t1, trp[0].p)
  170. cdef inline bint lookup_o_cmp_fn(
  171. const BufferTriple *trp, const Buffer *t1, const Buffer *t2
  172. ):
  173. return term_cmp_fn(t1, trp[0].o)
  174. cdef inline bint lookup_sp_cmp_fn(
  175. const BufferTriple *trp, const Buffer *t1, const Buffer *t2
  176. ):
  177. return (
  178. term_cmp_fn(t1, trp[0].s)
  179. and term_cmp_fn(t2, trp[0].p))
  180. cdef inline bint lookup_so_cmp_fn(
  181. const BufferTriple *trp, const Buffer *t1, const Buffer *t2
  182. ):
  183. return (
  184. term_cmp_fn(t1, trp[0].s)
  185. and term_cmp_fn(t2, trp[0].o))
  186. cdef inline bint lookup_po_cmp_fn(
  187. const BufferTriple *trp, const Buffer *t1, const Buffer *t2
  188. ):
  189. return (
  190. term_cmp_fn(t1, trp[0].p)
  191. and term_cmp_fn(t2, trp[0].o))
  192. cdef class SimpleGraph:
  193. """
  194. Fast and simple implementation of a graph.
  195. Most functions should mimic RDFLib's graph with less overhead. It uses
  196. the same funny but functional slicing notation. No lookup functions within
  197. the graph are available at this time.
  198. Instances of this class hold a set of
  199. :py:class:`~lakesuperior.store.ldp_rs.term.Term` structures that stores
  200. unique terms within the graph, and a set of
  201. :py:class:`~lakesuperior.store.ldp_rs.triple.Triple` structures referencing
  202. those terms. Therefore, no data duplication occurs and the storage is quite
  203. sparse.
  204. A graph can be instantiated from a store lookup.
  205. A SimpleGraph can also be obtained from a
  206. :py:class:`lakesuperior.store.keyset.Keyset` which is convenient bacause
  207. a Keyset can be obtained very efficiently from querying a store, then also
  208. very efficiently filtered and eventually converted into a set of meaningful
  209. terms.
  210. An instance of this class can also be converted to and from a
  211. ``rdflib.Graph`` instance. TODO verify that this frees Cython pointers.
  212. """
  213. def __cinit__(
  214. self, Keyset keyset=None, store=None, set data=set(), *args, **kwargs):
  215. """
  216. Initialize the graph with pre-existing data or by looking up a store.
  217. One of ``keyset``, or ``data`` can be provided. If more than
  218. one of these is provided, precedence is given in the mentioned order.
  219. If none of them is specified, an empty graph is initialized.
  220. :param rdflib.URIRef uri: The graph URI.
  221. This will serve as the subject for some queries.
  222. :param Keyset keyset: Keyset to create the graph from. Keys will be
  223. converted to set elements.
  224. :param lakesuperior.store.ldp_rs.LmdbTripleStore store: store to
  225. look up the keyset. Only used if ``keyset`` is specified. If not
  226. set, the environment store is used.
  227. :param set data: Initial data as a set of 3-tuples of RDFLib terms.
  228. :param tuple lookup: tuple of a 3-tuple of lookup terms, and a context.
  229. E.g. ``((URIRef('urn:ns:a'), None, None), URIRef('urn:ns:ctx'))``.
  230. Any and all elements may be ``None``.
  231. :param lmdbStore store: the store to look data up.
  232. """
  233. cdef:
  234. cc.HashSetConf terms_conf, trp_conf
  235. self.term_cmp_fn = &term_cmp_fn
  236. self.trp_cmp_fn = &trp_lit_cmp_fn
  237. cc.hashset_conf_init(&terms_conf)
  238. terms_conf.load_factor = 0.85
  239. terms_conf.hash = &term_hash_fn
  240. terms_conf.hash_seed = term_hash_seed32
  241. terms_conf.key_compare = self.term_cmp_fn
  242. terms_conf.key_length = sizeof(Buffer*)
  243. cc.hashset_conf_init(&trp_conf)
  244. trp_conf.load_factor = 0.75
  245. trp_conf.hash = &trp_lit_hash_fn
  246. trp_conf.hash_seed = term_hash_seed32
  247. trp_conf.key_compare = self.trp_cmp_fn
  248. trp_conf.key_length = sizeof(BufferTriple)
  249. cc.hashset_new_conf(&terms_conf, &self._terms)
  250. cc.hashset_new_conf(&trp_conf, &self._triples)
  251. self.store = store or env.app_globals.rdf_store
  252. self._pool = Pool()
  253. # Initialize empty data set.
  254. if keyset:
  255. # Populate with triples extracted from provided key set.
  256. self._data_from_keyset(keyset)
  257. elif data:
  258. # Populate with provided Python set.
  259. self.add(data)
  260. def __dealloc__(self):
  261. """
  262. Free the triple pointers. TODO use a Cymem pool
  263. """
  264. free(self._triples)
  265. free(self._terms)
  266. @property
  267. def data(self):
  268. """
  269. Triple data as a Python set.
  270. :rtype: set
  271. """
  272. return self._to_pyset()
  273. @property
  274. def terms(self):
  275. return self._get_terms()
  276. # # # BASIC SET OPERATIONS # # #
  277. cpdef SimpleGraph union(self, SimpleGraph other):
  278. """
  279. Perform set union resulting in a new SimpleGraph instance.
  280. TODO Allow union of multiple graphs at a time.
  281. :param SimpleGraph other: The other graph to merge.
  282. :rtype: SimpleGraph
  283. :return: A new SimpleGraph instance.
  284. """
  285. cdef:
  286. void *cur
  287. cc.HashSetIter it
  288. SimpleGraph new_gr = SimpleGraph()
  289. BufferTriple *trp
  290. new_gr.store = self.store
  291. for gr in (self, other):
  292. cc.hashset_iter_init(&it, gr._triples)
  293. while cc.hashset_iter_next(&it, &cur) != cc.CC_ITER_END:
  294. bt = <BufferTriple*>cur
  295. new_gr._add_triple(bt)
  296. return new_gr
  297. cdef void ip_union(self, SimpleGraph other) except *:
  298. """
  299. Perform an in-place set union that adds triples to this instance
  300. TODO Allow union of multiple graphs at a time.
  301. :param SimpleGraph other: The other graph to merge.
  302. :rtype: void
  303. """
  304. cdef:
  305. void *cur
  306. cc.HashSetIter it
  307. cc.hashset_iter_init(&it, other._triples)
  308. while cc.hashset_iter_next(&it, &cur) != cc.CC_ITER_END:
  309. bt = <BufferTriple*>cur
  310. self._add_triple(bt)
  311. cpdef SimpleGraph intersection(self, SimpleGraph other):
  312. """
  313. Graph intersection.
  314. :param SimpleGraph other: The other graph to intersect.
  315. :rtype: SimpleGraph
  316. :return: A new SimpleGraph instance.
  317. """
  318. cdef:
  319. void *cur
  320. cc.HashSetIter it
  321. SimpleGraph new_gr = SimpleGraph()
  322. cc.hashset_iter_init(&it, self._triples)
  323. while cc.hashset_iter_next(&it, &cur) != cc.CC_ITER_END:
  324. bt = <BufferTriple*>cur
  325. #print('Checking: <0x{:02x}> <0x{:02x}> <0x{:02x}>'.format(
  326. # <size_t>bt.s, <size_t>bt.p, <size_t>bt.o))
  327. if other._trp_contains(bt):
  328. #print('Adding.')
  329. new_gr._add_triple(bt)
  330. return new_gr
  331. cdef void ip_intersection(self, SimpleGraph other) except *:
  332. """
  333. In-place graph intersection.
  334. Triples in common with another graph are removed from the current one.
  335. :param SimpleGraph other: The other graph to intersect.
  336. :rtype: void
  337. """
  338. cdef:
  339. void *cur
  340. cc.HashSetIter it
  341. cc.hashset_iter_init(&it, self._triples)
  342. while cc.hashset_iter_next(&it, &cur) != cc.CC_ITER_END:
  343. bt = <BufferTriple*>cur
  344. if not other._trp_contains(bt):
  345. self._remove_triple(bt)
  346. cpdef SimpleGraph xor(self, SimpleGraph other):
  347. """
  348. Graph Exclusive disjunction (XOR).
  349. :param SimpleGraph other: The other graph to perform XOR with.
  350. :rtype: SimpleGraph
  351. :return: A new SimpleGraph instance.
  352. """
  353. cdef:
  354. void *cur
  355. cc.HashSetIter it
  356. SimpleGraph new_gr = SimpleGraph()
  357. BufferTriple* bt
  358. # Add triples in this and not in other.
  359. cc.hashset_iter_init(&it, self._triples)
  360. while cc.hashset_iter_next(&it, &cur) != cc.CC_ITER_END:
  361. bt = <BufferTriple*>cur
  362. if not other._trp_contains(bt):
  363. new_gr._add_triple(bt)
  364. # Other way around.
  365. cc.hashset_iter_init(&it, other._triples)
  366. while cc.hashset_iter_next(&it, &cur) != cc.CC_ITER_END:
  367. bt = <BufferTriple*>cur
  368. if not self._trp_contains(bt):
  369. new_gr._add_triple(bt)
  370. return new_gr
  371. cdef void ip_xor(self, SimpleGraph other) except *:
  372. """
  373. In-place graph XOR.
  374. Triples in common with another graph are removed from the current one,
  375. and triples not in common will be added from the other one.
  376. :param SimpleGraph other: The other graph to perform XOR with.
  377. :rtype: void
  378. """
  379. cdef:
  380. void *cur
  381. cc.HashSetIter it
  382. # TODO This could be more efficient to stash values in a simple
  383. # array, but how urgent is it to improve an in-place XOR?
  384. SimpleGraph tmp = SimpleGraph()
  385. # Add *to the tmp graph* triples in other graph and not in this graph.
  386. cc.hashset_iter_init(&it, other._triples)
  387. while cc.hashset_iter_next(&it, &cur) != cc.CC_ITER_END:
  388. bt = <BufferTriple*>cur
  389. if not self._trp_contains(bt):
  390. tmp._add_triple(bt)
  391. # Remove triples in common.
  392. cc.hashset_iter_init(&it, self._triples)
  393. while cc.hashset_iter_next(&it, &cur) != cc.CC_ITER_END:
  394. bt = <BufferTriple*>cur
  395. if other._trp_contains(bt):
  396. print(self._remove_triple(bt))
  397. self |= tmp
  398. cdef void _data_from_lookup(self, tuple trp_ptn, ctx=None) except *:
  399. """
  400. Look up triples in the triplestore and load them into ``data``.
  401. :param tuple lookup: 3-tuple of RDFlib terms or ``None``.
  402. :param LmdbTriplestore store: Reference to a LMDB triplestore. This
  403. is normally set to ``lakesuperior.env.app_globals.rdf_store``.
  404. """
  405. cdef:
  406. size_t i
  407. unsigned char spok[TRP_KLEN]
  408. with self.store.txn_ctx():
  409. keyset = self.store.triple_keys(trp_ptn, ctx)
  410. self.data_from_keyset(keyset)
  411. cdef void _data_from_keyset(self, Keyset data) except *:
  412. """Populate a graph from a Keyset."""
  413. cdef TripleKey spok
  414. while data.next(spok):
  415. self._add_from_spok(spok)
  416. cdef inline void _add_from_spok(self, TripleKey spok) except *:
  417. """
  418. Add a triple from a TripleKey of term keys.
  419. """
  420. s_spo = <SPOBuffer>self._pool.alloc(3, sizeof(Buffer))
  421. self.store.lookup_term(spok, s_spo)
  422. self.store.lookup_term(spok + KLEN, s_spo + 1)
  423. self.store.lookup_term(spok + DBL_KLEN, s_spo + 2)
  424. trp = <BufferTriple *>self._pool.alloc(1, sizeof(BufferTriple))
  425. trp.s = s_spo
  426. trp.p = s_spo + 1
  427. trp.o = s_spo + 2
  428. self._add_triple(trp)
  429. cdef inline void _add_triple(self, BufferTriple* trp) except *:
  430. """
  431. Add a triple from 3 (TPL) serialized terms.
  432. Each of the terms is added to the term set if not existing. The triple
  433. also is only added if not existing.
  434. """
  435. logger.info('Inserting terms.')
  436. cc.hashset_add(self._terms, trp.s)
  437. cc.hashset_add(self._terms, trp.p)
  438. cc.hashset_add(self._terms, trp.o)
  439. logger.info('inserted terms.')
  440. logger.info(f'Terms set size: {cc.hashset_size(self._terms)}')
  441. cdef size_t trp_sz = cc.hashset_size(self._triples)
  442. logger.info(f'Triples set size before adding: {trp_sz}')
  443. r = cc.hashset_add(self._triples, trp)
  444. #print('Insert triple result:')
  445. #print(r)
  446. trp_sz = cc.hashset_size(self._triples)
  447. logger.info(f'Triples set size after adding: {trp_sz}')
  448. cdef:
  449. cc.HashSetIter ti
  450. void *cur
  451. cdef int _remove_triple(self, BufferTriple* btrp) except -1:
  452. """
  453. Remove one triple from the graph.
  454. """
  455. return cc.hashset_remove(self._triples, btrp, NULL)
  456. cdef bint _trp_contains(self, BufferTriple* btrp):
  457. cdef:
  458. cc.HashSetIter it
  459. void* cur
  460. cc.hashset_iter_init(&it, self._triples)
  461. while cc.hashset_iter_next(&it, &cur) != cc.CC_ITER_END:
  462. if self.trp_cmp_fn(cur, btrp) == 0:
  463. return True
  464. return False
  465. cdef _get_terms(self):
  466. """
  467. Get all terms in the graph.
  468. """
  469. cdef:
  470. cc.HashSetIter it
  471. void *cur
  472. terms = [] # This is intentionally a list to spot issues with the set.
  473. cc.hashset_iter_init(&it, self._terms)
  474. while cc.hashset_iter_next(&it, &cur) != cc.CC_ITER_END:
  475. s_term = <Buffer*>cur
  476. terms.append((f'0x{<size_t>cur:02x}', term.deserialize_to_rdflib(s_term)))
  477. return terms
  478. cdef set _to_pyset(self):
  479. """
  480. Convert triple data to a Python set.
  481. :rtype: set
  482. """
  483. cdef:
  484. void *void_p
  485. cc.HashSetIter ti
  486. term.Term s, p, o
  487. graph_set = set()
  488. # Looping over an empty HashSet results in a segfault. Exit early in
  489. # that case.
  490. #if not cc.hashset_size(self._triples):
  491. # return graph_set
  492. cc.hashset_iter_init(&ti, self._triples)
  493. while cc.hashset_iter_next(&ti, &void_p) != cc.CC_ITER_END:
  494. if void_p == NULL:
  495. logger.warn('Triple is NULL!')
  496. break
  497. trp = <BufferTriple *>void_p
  498. graph_set.add((
  499. term.deserialize_to_rdflib(trp.s),
  500. term.deserialize_to_rdflib(trp.p),
  501. term.deserialize_to_rdflib(trp.o),
  502. ))
  503. return graph_set
  504. # Basic set operations.
  505. def add(self, trp):
  506. """
  507. Add triples to the graph.
  508. :param iterable triples: Set, list or tuple of 3-tuple triples.
  509. """
  510. cdef size_t cur = 0, trp_cur = 0
  511. trp_ct = len(trp)
  512. term_buf = <Buffer*>self._pool.alloc(3 * trp_ct, sizeof(Buffer))
  513. trp_buf = <BufferTriple*>self._pool.alloc(trp_ct, sizeof(BufferTriple))
  514. for s, p, o in trp:
  515. term.serialize_from_rdflib(s, term_buf + cur, self._pool)
  516. term.serialize_from_rdflib(p, term_buf + cur + 1, self._pool)
  517. term.serialize_from_rdflib(o, term_buf + cur + 2, self._pool)
  518. (trp_buf + trp_cur).s = term_buf + cur
  519. (trp_buf + trp_cur).p = term_buf + cur + 1
  520. (trp_buf + trp_cur).o = term_buf + cur + 2
  521. self._add_triple(trp_buf + trp_cur)
  522. trp_cur += 1
  523. cur += 3
  524. def len_terms(self):
  525. """ Number of triples in the graph. """
  526. return cc.hashset_size(self._terms)
  527. def remove(self, trp):
  528. """
  529. Remove one item from the graph.
  530. :param tuple item: A 3-tuple of RDFlib terms. Only exact terms, i.e.
  531. wildcards are not accepted.
  532. """
  533. cdef:
  534. Buffer ss, sp, so
  535. BufferTriple trp_buf
  536. term.serialize_from_rdflib(trp[0], &ss, self._pool)
  537. term.serialize_from_rdflib(trp[1], &sp, self._pool)
  538. term.serialize_from_rdflib(trp[2], &so, self._pool)
  539. trp_buf.s = &ss
  540. trp_buf.p = &sp
  541. trp_buf.o = &so
  542. self._remove_triple(&trp_buf)
  543. def __len__(self):
  544. """ Number of triples in the graph. """
  545. return cc.hashset_size(self._triples)
  546. def __eq__(self, other):
  547. """ Equality operator between ``SimpleGraph`` instances. """
  548. return graph_eq_fn(self, other)
  549. def __repr__(self):
  550. """
  551. String representation of the graph.
  552. It provides the number of triples in the graph and memory address of
  553. the instance.
  554. """
  555. return (
  556. f'<{self.__class__.__name__} @{hex(id(self))} '
  557. f'length={len(self.data)}>'
  558. )
  559. def __str__(self):
  560. """ String dump of the graph triples. """
  561. return str(self.data)
  562. def __sub__(self, other):
  563. """ Set subtraction. """
  564. return self.subtract(other)
  565. def __isub__(self, other):
  566. """ In-place set subtraction. """
  567. self.ip_subtract(other)
  568. return self
  569. def __and__(self, other):
  570. """ Set intersection. """
  571. return self.intersection(other)
  572. def __iand__(self, other):
  573. """ In-place set intersection. """
  574. self.ip_intersection(other)
  575. return self
  576. def __or__(self, other):
  577. """ Set union. """
  578. return self.union(other)
  579. def __ior__(self, other):
  580. """ In-place set union. """
  581. self.ip_union(other)
  582. return self
  583. def __xor__(self, other):
  584. """ Set exclusive disjunction (XOR). """
  585. return self.xor(other)
  586. def __ixor__(self, other):
  587. """ In-place set exclusive disjunction (XOR). """
  588. self.ip_xor(other)
  589. return self
  590. def __contains__(self, trp):
  591. """
  592. Whether the graph contains a triple.
  593. :rtype: boolean
  594. """
  595. cdef:
  596. Buffer ss, sp, so
  597. BufferTriple btrp
  598. btrp.s = &ss
  599. btrp.p = &sp
  600. btrp.o = &so
  601. s, p, o = trp
  602. term.serialize_from_rdflib(s, &ss)
  603. term.serialize_from_rdflib(p, &sp)
  604. term.serialize_from_rdflib(o, &so)
  605. return self._trp_contains(&btrp)
  606. def __iter__(self):
  607. """ Graph iterator. It iterates over the set triples. """
  608. raise NotImplementedError()
  609. # Slicing.
  610. def __getitem__(self, item):
  611. """
  612. Slicing function.
  613. It behaves similarly to `RDFLib graph slicing
  614. <https://rdflib.readthedocs.io/en/stable/utilities.html#slicing-graphs>`__
  615. """
  616. if isinstance(item, slice):
  617. s, p, o = item.start, item.stop, item.step
  618. return self._slice(s, p, o)
  619. else:
  620. raise TypeError(f'Wrong slice format: {item}.')
  621. cpdef void set(self, tuple trp) except *:
  622. """
  623. Set a single value for subject and predicate.
  624. Remove all triples matching ``s`` and ``p`` before adding ``s p o``.
  625. """
  626. if None in trp:
  627. raise ValueError(f'Invalid triple: {trp}')
  628. self.remove_triples((trp[0], trp[1], None))
  629. self.add((trp,))
  630. cpdef void remove_triples(self, pattern) except *:
  631. """
  632. Remove triples by pattern.
  633. The pattern used is similar to :py:meth:`LmdbTripleStore.delete`.
  634. """
  635. s, p, o = pattern
  636. for match in self.lookup(s, p, o):
  637. logger.debug(f'Removing from graph: {match}.')
  638. self.data.remove(match)
  639. cpdef object as_rdflib(self):
  640. """
  641. Return the data set as an RDFLib Graph.
  642. :rtype: rdflib.Graph
  643. """
  644. gr = Graph()
  645. for trp in self.data:
  646. gr.add(trp)
  647. return gr
  648. def _slice(self, s, p, o):
  649. """
  650. Return terms filtered by other terms.
  651. This behaves like the rdflib.Graph slicing policy.
  652. """
  653. _data = self.data
  654. logger.debug(f'Slicing graph by: {s}, {p}, {o}.')
  655. if s is None and p is None and o is None:
  656. return _data
  657. elif s is None and p is None:
  658. return {(r[0], r[1]) for r in _data if r[2] == o}
  659. elif s is None and o is None:
  660. return {(r[0], r[2]) for r in _data if r[1] == p}
  661. elif p is None and o is None:
  662. return {(r[1], r[2]) for r in _data if r[0] == s}
  663. elif s is None:
  664. return {r[0] for r in _data if r[1] == p and r[2] == o}
  665. elif p is None:
  666. return {r[1] for r in _data if r[0] == s and r[2] == o}
  667. elif o is None:
  668. return {r[2] for r in _data if r[0] == s and r[1] == p}
  669. else:
  670. # all given
  671. return (s,p,o) in _data
  672. def lookup(self, s, p, o):
  673. """
  674. Look up triples by a pattern.
  675. This function converts RDFLib terms into the serialized format stored
  676. in the graph's internal structure and compares them bytewise.
  677. Any and all of the lookup terms can be ``None``.
  678. """
  679. cdef:
  680. void *void_p
  681. BufferTriple trp
  682. BufferTriple *trp_p
  683. cc.HashSetIter ti
  684. Buffer t1
  685. Buffer t2
  686. lookup_fn_t fn
  687. res = set()
  688. # Decide comparison logic outside the loop.
  689. if s is not None and p is not None and o is not None:
  690. # Return immediately if 3-term match is requested.
  691. term.serialize_from_rdflib(s, trp.s, self._pool)
  692. term.serialize_from_rdflib(p, trp.p, self._pool)
  693. term.serialize_from_rdflib(o, trp.o, self._pool)
  694. if cc.hashset_contains(self._triples, &trp):
  695. res.add((s, p, o))
  696. return res
  697. elif s is not None:
  698. term.serialize_from_rdflib(s, &t1)
  699. if p is not None:
  700. fn = lookup_sp_cmp_fn
  701. term.serialize_from_rdflib(p, &t2)
  702. elif o is not None:
  703. fn = lookup_so_cmp_fn
  704. term.serialize_from_rdflib(o, &t2)
  705. else:
  706. fn = lookup_s_cmp_fn
  707. elif p is not None:
  708. term.serialize_from_rdflib(p, &t1)
  709. if o is not None:
  710. fn = lookup_po_cmp_fn
  711. term.serialize_from_rdflib(o, &t2)
  712. else:
  713. fn = lookup_p_cmp_fn
  714. elif o is not None:
  715. fn = lookup_o_cmp_fn
  716. term.serialize_from_rdflib(o, &t1)
  717. else:
  718. fn = lookup_none_cmp_fn
  719. # Iterate over serialized triples.
  720. cc.hashset_iter_init(&ti, self._triples)
  721. while cc.hashset_iter_next(&ti, &void_p) != cc.CC_ITER_END:
  722. if void_p == NULL:
  723. trp_p = <BufferTriple *>void_p
  724. res.add((
  725. term.deserialize_to_rdflib(trp_p[0].s),
  726. term.deserialize_to_rdflib(trp_p[0].p),
  727. term.deserialize_to_rdflib(trp_p[0].o),
  728. ))
  729. return res
  730. #cpdef set terms(self, str type):
  731. # """
  732. # Get all terms of a type: subject, predicate or object.
  733. # :param str type: One of ``s``, ``p`` or ``o``.
  734. # """
  735. # i = 'spo'.index(type)
  736. # return {r[i] for r in self.data}
  737. cdef class Imr(SimpleGraph):
  738. """
  739. In-memory resource data container.
  740. This is an extension of :py:class:`~SimpleGraph` that adds a subject URI to
  741. the data set and some convenience methods.
  742. An instance of this class can be converted to a ``rdflib.Resource``
  743. instance.
  744. Some set operations that produce a new object (``-``, ``|``, ``&``, ``^``)
  745. will create a new ``Imr`` instance with the same subject URI.
  746. """
  747. def __init__(self, uri, *args, **kwargs):
  748. """
  749. Initialize the graph with pre-existing data or by looking up a store.
  750. Either ``data``, or ``lookup`` *and* ``store``, can be provide.
  751. ``lookup`` and ``store`` have precedence. If none of them is specified,
  752. an empty graph is initialized.
  753. :param rdflib.URIRef uri: The graph URI.
  754. This will serve as the subject for some queries.
  755. :param set data: Initial data as a set of 3-tuples of RDFLib terms.
  756. :param tuple lookup: tuple of a 3-tuple of lookup terms, and a context.
  757. E.g. ``((URIRef('urn:ns:a'), None, None), URIRef('urn:ns:ctx'))``.
  758. Any and all elements may be ``None``.
  759. :param lmdbStore store: the store to look data up.
  760. """
  761. self.uri = str(uri)
  762. @property
  763. def identifier(self):
  764. """
  765. IMR URI. For compatibility with RDFLib Resource.
  766. :rtype: string
  767. """
  768. return self.uri
  769. @property
  770. def graph(self):
  771. """
  772. Return a SimpleGraph with the same data.
  773. :rtype: SimpleGraph
  774. """
  775. return SimpleGraph(self.data)
  776. def __repr__(self):
  777. """
  778. String representation of an Imr.
  779. This includes the subject URI, number of triples contained and the
  780. memory address of the instance.
  781. """
  782. return (f'<{self.__class__.__name__} @{hex(id(self))} uri={self.uri}, '
  783. f'length={len(self.data)}>')
  784. def __sub__(self, other):
  785. """
  786. Set difference. This creates a new Imr with the same subject URI.
  787. """
  788. return self.__class__(uri=self.uri, data=self.data - other)
  789. def __and__(self, other):
  790. """
  791. Set intersection. This creates a new Imr with the same subject URI.
  792. """
  793. return self.__class__(uri=self.uri, data=self.data & other)
  794. def __or__(self, other):
  795. """
  796. Set union. This creates a new Imr with the same subject URI.
  797. """
  798. return self.__class__(uri=self.uri, data=self.data | other)
  799. def __xor__(self, other):
  800. """
  801. Set exclusive OR (XOR). This creates a new Imr with the same subject
  802. URI.
  803. """
  804. return self.__class__(uri=self.uri, data=self.data ^ other)
  805. def __getitem__(self, item):
  806. """
  807. Supports slicing notation.
  808. """
  809. if isinstance(item, slice):
  810. s, p, o = item.start, item.stop, item.step
  811. return self._slice(s, p, o)
  812. elif isinstance(item, Node):
  813. # If a Node is given, return all values for that predicate.
  814. return {
  815. r[2] for r in self.data
  816. if r[0] == self.uri and r[1] == item}
  817. else:
  818. raise TypeError(f'Wrong slice format: {item}.')
  819. def value(self, p, strict=False):
  820. """
  821. Get an individual value.
  822. :param rdflib.termNode p: Predicate to search for.
  823. :param bool strict: If set to ``True`` the method raises an error if
  824. more than one value is found. If ``False`` (the default) only
  825. the first found result is returned.
  826. :rtype: rdflib.term.Node
  827. """
  828. values = self[p]
  829. if strict and len(values) > 1:
  830. raise RuntimeError('More than one value found for {}, {}.'.format(
  831. self.uri, p))
  832. for ret in values:
  833. return ret
  834. return None
  835. cpdef as_rdflib(self):
  836. """
  837. Return the IMR as a RDFLib Resource.
  838. :rtype: rdflib.Resource
  839. """
  840. gr = Graph()
  841. for trp in self.data:
  842. gr.add(trp)
  843. return gr.resource(identifier=self.uri)