graph.pyx 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800
  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.string cimport memcmp, memcpy
  7. from libc.stdlib cimport free
  8. from lakesuperior.cy_include cimport calg
  9. from lakesuperior.cy_include cimport cylmdb as lmdb
  10. from lakesuperior.store.ldp_rs cimport term
  11. from lakesuperior.store.ldp_rs.lmdb_triplestore cimport (
  12. KLEN, DBL_KLEN, TRP_KLEN, TripleKey, LmdbTriplestore)
  13. from lakesuperior.store.ldp_rs.keyset cimport Keyset
  14. from lakesuperior.store.ldp_rs.triple cimport BufferTriple
  15. from lakesuperior.util.hash cimport Hash32, hash32
  16. #BUF_PTR_SZ = sizeof(Buffer *)
  17. logger = logging.getLogger(__name__)
  18. def use_data(fn):
  19. """
  20. Decorator to indicate that a set operation between two SimpleGraph
  21. instances should use the ``data`` property of the second term. The second
  22. term can also be a simple set.
  23. """
  24. @wraps(fn)
  25. def _wrapper(self, other):
  26. if isinstance(other, SimpleGraph):
  27. other = other.data
  28. return _wrapper
  29. cdef unsigned int term_hash_fn(const calg.SetValue data):
  30. """
  31. Hash function for sets of terms.
  32. https://fragglet.github.io/c-algorithms/doc/set_8h.html#6c7986a2a80d7a3cb7b9d74e1c6fef97
  33. :param SetValue *data: Pointer to a Buffer structure.
  34. """
  35. cdef:
  36. Hash32 hash
  37. hash32(<const Buffer *>&data, &hash)
  38. return hash
  39. cdef unsigned int trp_hash_fn(calg.SetValue btrp):
  40. """
  41. Hash function for sets of (serialized) triples.
  42. https://fragglet.github.io/c-algorithms/doc/set_8h.html#6c7986a2a80d7a3cb7b9d74e1c6fef97
  43. This function computes the hash of the concatenated pointer values in the
  44. s, p, o members of the triple. The triple structure is treated as a byte
  45. string. This is safe in spite of byte-wise struct evaluation being a
  46. frowned-upon practice (due to padding issues), because it is assumed that
  47. the input value is always the same type of structure.
  48. :param SetItem *data: Pointer to a BufferTriple structure.
  49. """
  50. cdef:
  51. Buffer data
  52. Hash32 hash
  53. data.addr = &btrp
  54. data.sz = sizeof(btrp)
  55. hash32(&data, &hash)
  56. return hash
  57. cdef bint buffer_cmp_fn(const calg.SetValue v1, const calg.SetValue v2):
  58. """
  59. Compare function for two Buffer objects.
  60. https://fragglet.github.io/c-algorithms/doc/set_8h.html#40fa2c86d5b003c1b0b0e8dd1e4df9f4
  61. """
  62. # No-cast option.
  63. #if v1[0].sz != v2[0].sz:
  64. # return False
  65. #return memcmp(v1[0].addr, v2[0].addr, v1[0].sz) == 0
  66. cdef:
  67. Buffer b1 = (<Buffer *>v1)[0]
  68. Buffer b2 = (<Buffer *>v2)[0]
  69. if b1.sz != b2.sz:
  70. return False
  71. return memcmp(b1.addr, b2.addr, b1.sz) == 0
  72. cdef bint triple_cmp_fn(const calg.SetValue v1, const calg.SetValue v2):
  73. """
  74. Compare function for two triples in a CAlg set.
  75. Here, pointers to terms are compared for s, p, o. The pointers should be
  76. guaranteed to point to unique values (i.e. no two pointers have the same
  77. term value within a graph).
  78. https://fragglet.github.io/c-algorithms/doc/set_8h.html#40fa2c86d5b003c1b0b0e8dd1e4df9f4
  79. """
  80. cdef:
  81. BufferTriple t1 = (<BufferTriple *>v1)[0]
  82. BufferTriple t2 = (<BufferTriple *>v2)[0]
  83. return(
  84. t1.s == t2.s and
  85. t1.p == t2.p and
  86. t1.o == t2.o)
  87. cdef inline bint lookup_none_cmp_fn(
  88. const BufferTriple *trp, const Buffer *t1, const Buffer *t2):
  89. return True
  90. cdef inline bint lookup_s_cmp_fn(
  91. const BufferTriple *trp, const Buffer *t1, const Buffer *t2):
  92. """
  93. Lookup callback compare function for a given s in a triple.
  94. The function returns ``True`` if ``t1`` matches the first term.
  95. ``t2`` is not used and is declared only for compatibility with the
  96. other interchangeable functions.
  97. """
  98. return buffer_cmp_fn(t1, trp[0].s)
  99. cdef inline bint lookup_p_cmp_fn(
  100. const BufferTriple *trp, const Buffer *t1, const Buffer *t2):
  101. return buffer_cmp_fn(t1, trp[0].p)
  102. cdef inline bint lookup_o_cmp_fn(
  103. const BufferTriple *trp, const Buffer *t1, const Buffer *t2):
  104. return buffer_cmp_fn(t1, trp[0].o)
  105. cdef inline bint lookup_sp_cmp_fn(
  106. const BufferTriple *trp, const Buffer *t1, const Buffer *t2):
  107. return (
  108. buffer_cmp_fn(t1, trp[0].s)
  109. and buffer_cmp_fn(t2, trp[0].p))
  110. cdef inline bint lookup_so_cmp_fn(
  111. const BufferTriple *trp, const Buffer *t1, const Buffer *t2):
  112. return (
  113. buffer_cmp_fn(t1, trp[0].s)
  114. and buffer_cmp_fn(t2, trp[0].o))
  115. cdef inline bint lookup_po_cmp_fn(
  116. const BufferTriple *trp, const Buffer *t1, const Buffer *t2):
  117. return (
  118. buffer_cmp_fn(t1, trp[0].p)
  119. and buffer_cmp_fn(t2, trp[0].o))
  120. cdef class SimpleGraph:
  121. """
  122. Fast and simple implementation of a graph.
  123. Most functions should mimic RDFLib's graph with less overhead. It uses
  124. the same funny but functional slicing notation. No lookup functions within
  125. the graph are available at this time.
  126. Instances of this class hold a set of
  127. :py:class:`~lakesuperior.store.ldp_rs.term.Term` structures that stores
  128. unique terms within the graph, and a set of
  129. :py:class:`~lakesuperior.store.ldp_rs.triple.Triple` structures referencing
  130. those terms. Therefore, no data duplication occurs and the storage is quite
  131. sparse.
  132. A graph can be instantiated from a store lookup.
  133. A SimpleGraph can also be obtained from a
  134. :py:class:`lakesuperior.store.keyset.Keyset` which is convenient bacause
  135. a Keyset can be obtained very efficiently from querying a store, then also
  136. very efficiently filtered and eventually converted into a set of meaningful
  137. terms.
  138. An instance of this class can also be converted to and from a
  139. ``rdflib.Graph`` instance. TODO verify that this frees Cython pointers.
  140. """
  141. def __cinit__(
  142. self, Keyset keyset=None, store=None, set data=set()):
  143. """
  144. Initialize the graph with pre-existing data or by looking up a store.
  145. One of ``keyset``, or ``data`` can be provided. If more than
  146. one of these is provided, precedence is given in the mentioned order.
  147. If none of them is specified, an empty graph is initialized.
  148. :param rdflib.URIRef uri: The graph URI.
  149. This will serve as the subject for some queries.
  150. :param Keyset keyset: Keyset to create the graph from. Keys will be
  151. converted to set elements.
  152. :param lakesuperior.store.ldp_rs.LmdbTripleStore store: store to
  153. look up the keyset. Only used if ``keyset`` is specified. If not
  154. set, the environment store is used.
  155. :param set data: Initial data as a set of 3-tuples of RDFLib terms.
  156. :param tuple lookup: tuple of a 3-tuple of lookup terms, and a context.
  157. E.g. ``((URIRef('urn:ns:a'), None, None), URIRef('urn:ns:ctx'))``.
  158. Any and all elements may be ``None``.
  159. :param lmdbStore store: the store to look data up.
  160. """
  161. self.store = store or env.app_globals.rdf_store
  162. self._terms = calg.set_new(term_hash_fn, buffer_cmp_fn)
  163. self._triples = calg.set_new(trp_hash_fn, triple_cmp_fn)
  164. cdef:
  165. size_t i = 0
  166. TripleKey spok
  167. term.Buffer pk_t
  168. # Initialize empty data set.
  169. if keyset:
  170. # Populate with triples extracted from provided key set.
  171. self._data_from_keyset(keyset)
  172. elif data is not None:
  173. # Populate with provided Python set.
  174. for s, p, o in data:
  175. self._add_from_rdflib(s, p, o)
  176. def __dealloc__(self):
  177. """
  178. Free the triple pointers. TODO use a Cymem pool
  179. """
  180. free(self._triples)
  181. free(self._terms)
  182. @property
  183. def data(self):
  184. """
  185. Triple data as a Python set.
  186. :rtype: set
  187. """
  188. return self._data_as_set()
  189. cdef void _data_from_lookup(self, tuple trp_ptn, ctx=None) except *:
  190. """
  191. Look up triples in the triplestore and load them into ``data``.
  192. :param tuple lookup: 3-tuple of RDFlib terms or ``None``.
  193. :param LmdbTriplestore store: Reference to a LMDB triplestore. This
  194. is normally set to ``lakesuperior.env.app_globals.rdf_store``.
  195. """
  196. cdef:
  197. size_t i
  198. unsigned char spok[TRP_KLEN]
  199. with self.store.txn_ctx():
  200. keyset = self.store.triple_keys(trp_ptn, ctx)
  201. self.data_from_keyset(keyset)
  202. cdef void _data_from_keyset(self, Keyset data) except *:
  203. """Populate a graph from a Keyset."""
  204. cdef TripleKey spok
  205. while data.next(spok):
  206. self._add_from_spok(spok)
  207. cdef inline void _add_from_spok(self, const TripleKey spok) except *:
  208. """
  209. Add a triple from a TripleKey of term keys.
  210. """
  211. cdef:
  212. Buffer *ss = NULL
  213. Buffer *sp = NULL
  214. Buffer *so = NULL
  215. BufferTriple trp
  216. self.store.lookup_term(spok, ss)
  217. self.store.lookup_term(spok + KLEN, sp)
  218. self.store.lookup_term(spok + DBL_KLEN, so)
  219. self._add_triple(ss, sp, so, &trp)
  220. cdef inline void _add_triple(
  221. self, const Buffer *ss, const Buffer *sp, const Buffer *so,
  222. BufferTriple *trp
  223. ) except *:
  224. """
  225. Add a triple from 3 (TPL) serialized terms.
  226. Each of the terms is added to the term set if not existing. The triple
  227. also is only added if not existing.
  228. """
  229. print('Adding terms.')
  230. print('ss: ')
  231. print((<unsigned char *>ss[0].addr)[:ss[0].sz])
  232. calg.set_insert(self._terms, ss)
  233. print('sp: ')
  234. print((<unsigned char *>sp[0].addr)[:sp[0].sz])
  235. calg.set_insert(self._terms, sp)
  236. print('so: ')
  237. print((<unsigned char *>so[0].addr)[:so[0].sz])
  238. calg.set_insert(self._terms, so)
  239. print('Added terms.')
  240. cdef calg.SetIterator ti
  241. cdef Buffer *t
  242. calg.set_iterate(self._terms, &ti)
  243. while calg.set_iter_has_more(&ti):
  244. t = <Buffer *>calg.set_iter_next(&ti)
  245. print('term: ')
  246. print((<unsigned char *>t.addr)[:t.sz])
  247. trp[0].s = ss
  248. trp[0].p = sp
  249. trp[0].o = so
  250. print('Adding triple.')
  251. calg.set_insert(self._triples, trp)
  252. print('Added triple.')
  253. cdef BufferTriple *tt
  254. calg.set_iterate(self._triples, &ti)
  255. while calg.set_iter_has_more(&ti):
  256. tt = <BufferTriple *>calg.set_iter_next(&ti)
  257. print('Triple pointer address: {}'.format(<unsigned long>tt))
  258. print('Triple s address: {}'.format(<unsigned long>tt[0].s))
  259. print('triple s: ')
  260. print((<unsigned char *>trp[0].s.addr)[:trp[0].s.sz])
  261. print((<unsigned char *>tt[0].s.addr)[:tt[0].s.sz])
  262. cdef set _data_as_set(self):
  263. """
  264. Convert triple data to a Python set.
  265. :rtype: set
  266. """
  267. cdef:
  268. calg.SetIterator ti
  269. BufferTriple *trp
  270. term.Term s, p, o
  271. graph_set = set()
  272. print('Initialize iterator.')
  273. calg.set_iterate(self._triples, &ti)
  274. print('start loop.')
  275. while calg.set_iter_has_more(&ti):
  276. print('Set up triple.')
  277. trp = <BufferTriple *>calg.set_iter_next(&ti)
  278. if trp == NULL:
  279. print('Triple is NULL!')
  280. return graph_set
  281. print('Triple pointer address: {}'.format(<unsigned long>trp))
  282. print('Triple s address: {}'.format(<unsigned long>trp[0].s))
  283. print('Triple s:')
  284. print((<unsigned char *>trp[0].s.addr)[trp[0].s.sz])
  285. print('Add triple.')
  286. graph_set.add((
  287. term.deserialize_to_rdflib(trp[0].s),
  288. term.deserialize_to_rdflib(trp[0].p),
  289. term.deserialize_to_rdflib(trp[0].o)))
  290. return graph_set
  291. # Basic set operations.
  292. def add(self, triple):
  293. """ Add one triple to the graph. """
  294. cdef Buffer ss, sp, so
  295. s, p, o = triple
  296. #print('Serializing s.')
  297. term.serialize_from_rdflib(s, &ss)
  298. #print('Serializing p.')
  299. term.serialize_from_rdflib(p, &sp)
  300. #print('Serializing o.')
  301. term.serialize_from_rdflib(o, &so)
  302. print('Adding triple from rdflib.')
  303. self._add_triple(&ss, &sp, &so)
  304. print('Added triple from rdflib.')
  305. def remove(self, item):
  306. """
  307. Remove one item from the graph.
  308. :param tuple item: A 3-tuple of RDFlib terms. Only exact terms, i.e.
  309. wildcards are not accepted.
  310. """
  311. self.data.remove(item)
  312. def __len__(self):
  313. """ Number of triples in the graph. """
  314. return len(self.data)
  315. @use_data
  316. def __eq__(self, other):
  317. """ Equality operator between ``SimpleGraph`` instances. """
  318. return self.data == other
  319. def __repr__(self):
  320. """
  321. String representation of the graph.
  322. It provides the number of triples in the graph and memory address of
  323. the instance.
  324. """
  325. return (f'<{self.__class__.__name__} @{hex(id(self))} '
  326. f'length={len(self.data)}>')
  327. def __str__(self):
  328. """ String dump of the graph triples. """
  329. return str(self.data)
  330. @use_data
  331. def __sub__(self, other):
  332. """ Set subtraction. """
  333. return self.data - other
  334. @use_data
  335. def __isub__(self, other):
  336. """ In-place set subtraction. """
  337. self.data -= other
  338. return self
  339. @use_data
  340. def __and__(self, other):
  341. """ Set intersection. """
  342. return self.data & other
  343. @use_data
  344. def __iand__(self, other):
  345. """ In-place set intersection. """
  346. self.data &= other
  347. return self
  348. @use_data
  349. def __or__(self, other):
  350. """ Set union. """
  351. return self.data | other
  352. @use_data
  353. def __ior__(self, other):
  354. """ In-place set union. """
  355. self.data |= other
  356. return self
  357. @use_data
  358. def __xor__(self, other):
  359. """ Set exclusive intersection (XOR). """
  360. return self.data ^ other
  361. @use_data
  362. def __ixor__(self, other):
  363. """ In-place set exclusive intersection (XOR). """
  364. self.data ^= other
  365. return self
  366. def __contains__(self, item):
  367. """
  368. Whether the graph contains a triple.
  369. :rtype: boolean
  370. """
  371. return item in self.data
  372. def __iter__(self):
  373. """ Graph iterator. It iterates over the set triples. """
  374. return self.data.__iter__()
  375. # Slicing.
  376. def __getitem__(self, item):
  377. """
  378. Slicing function.
  379. It behaves similarly to `RDFLib graph slicing
  380. <https://rdflib.readthedocs.io/en/stable/utilities.html#slicing-graphs>`__
  381. """
  382. if isinstance(item, slice):
  383. s, p, o = item.start, item.stop, item.step
  384. return self._slice(s, p, o)
  385. else:
  386. raise TypeError(f'Wrong slice format: {item}.')
  387. cpdef void set(self, tuple trp) except *:
  388. """
  389. Set a single value for subject and predicate.
  390. Remove all triples matching ``s`` and ``p`` before adding ``s p o``.
  391. """
  392. if None in trp:
  393. raise ValueError(f'Invalid triple: {trp}')
  394. self.remove_triples((trp[0], trp[1], None))
  395. self.add(trp)
  396. cpdef void remove_triples(self, pattern) except *:
  397. """
  398. Remove triples by pattern.
  399. The pattern used is similar to :py:meth:`LmdbTripleStore.delete`.
  400. """
  401. s, p, o = pattern
  402. for match in self.lookup(s, p, o):
  403. logger.debug(f'Removing from graph: {match}.')
  404. self.data.remove(match)
  405. cpdef object as_rdflib(self):
  406. """
  407. Return the data set as an RDFLib Graph.
  408. :rtype: rdflib.Graph
  409. """
  410. gr = Graph()
  411. for trp in self.data:
  412. gr.add(trp)
  413. return gr
  414. def _slice(self, s, p, o):
  415. """
  416. Return terms filtered by other terms.
  417. This behaves like the rdflib.Graph slicing policy.
  418. """
  419. _data = self.data
  420. logger.debug(f'Slicing graph by: {s}, {p}, {o}.')
  421. if s is None and p is None and o is None:
  422. return _data
  423. elif s is None and p is None:
  424. return {(r[0], r[1]) for r in _data if r[2] == o}
  425. elif s is None and o is None:
  426. return {(r[0], r[2]) for r in _data if r[1] == p}
  427. elif p is None and o is None:
  428. return {(r[1], r[2]) for r in _data if r[0] == s}
  429. elif s is None:
  430. return {r[0] for r in _data if r[1] == p and r[2] == o}
  431. elif p is None:
  432. return {r[1] for r in _data if r[0] == s and r[2] == o}
  433. elif o is None:
  434. return {r[2] for r in _data if r[0] == s and r[1] == p}
  435. else:
  436. # all given
  437. return (s,p,o) in _data
  438. def lookup(self, s, p, o):
  439. """
  440. Look up triples by a pattern.
  441. This function converts RDFLib terms into the serialized format stored
  442. in the graph's internal structure and compares them bytewise.
  443. Any and all of the lookup terms can be ``None``.
  444. """
  445. cdef:
  446. BufferTriple trp
  447. BufferTriple *trp_p
  448. calg.SetIterator ti
  449. const Buffer t1
  450. const Buffer t2
  451. lookup_fn_t fn
  452. res = set()
  453. # Decide comparison logic outside the loop.
  454. if s is not None and p is not None and o is not None:
  455. # Return immediately if 3-term match is requested.
  456. term.serialize_from_rdflib(s, trp.s)
  457. term.serialize_from_rdflib(p, trp.p)
  458. term.serialize_from_rdflib(o, trp.o)
  459. if calg.set_query(self._triples, &trp):
  460. res.add((s, p, o))
  461. return res
  462. elif s is not None:
  463. term.serialize_from_rdflib(s, &t1)
  464. if p is not None:
  465. fn = lookup_sp_cmp_fn
  466. term.serialize_from_rdflib(p, &t2)
  467. elif o is not None:
  468. fn = lookup_so_cmp_fn
  469. term.serialize_from_rdflib(o, &t2)
  470. else:
  471. fn = lookup_s_cmp_fn
  472. elif p is not None:
  473. term.serialize_from_rdflib(p, &t1)
  474. if o is not None:
  475. fn = lookup_po_cmp_fn
  476. term.serialize_from_rdflib(o, &t2)
  477. else:
  478. fn = lookup_p_cmp_fn
  479. elif o is not None:
  480. fn = lookup_o_cmp_fn
  481. term.serialize_from_rdflib(o, &t1)
  482. else:
  483. fn = lookup_none_cmp_fn
  484. # Iterate over serialized triples.
  485. calg.set_iterate(self._triples, &ti)
  486. while calg.set_iter_has_more(&ti):
  487. trp_p = <BufferTriple *>calg.set_iter_next(&ti)
  488. if fn(trp_p, &t1, &t2):
  489. res.add((
  490. term.deserialize_to_rdflib(trp_p[0].s),
  491. term.deserialize_to_rdflib(trp_p[0].p),
  492. term.deserialize_to_rdflib(trp_p[0].o),
  493. ))
  494. return res
  495. cpdef set terms(self, str type):
  496. """
  497. Get all terms of a type: subject, predicate or object.
  498. :param str type: One of ``s``, ``p`` or ``o``.
  499. """
  500. i = 'spo'.index(type)
  501. return {r[i] for r in self.data}
  502. cdef class Imr(SimpleGraph):
  503. """
  504. In-memory resource data container.
  505. This is an extension of :py:class:`~SimpleGraph` that adds a subject URI to
  506. the data set and some convenience methods.
  507. An instance of this class can be converted to a ``rdflib.Resource``
  508. instance.
  509. Some set operations that produce a new object (``-``, ``|``, ``&``, ``^``)
  510. will create a new ``Imr`` instance with the same subject URI.
  511. """
  512. def __init__(self, str uri, *args, **kwargs):
  513. """
  514. Initialize the graph with pre-existing data or by looking up a store.
  515. Either ``data``, or ``lookup`` *and* ``store``, can be provide.
  516. ``lookup`` and ``store`` have precedence. If none of them is specified,
  517. an empty graph is initialized.
  518. :param rdflib.URIRef uri: The graph URI.
  519. This will serve as the subject for some queries.
  520. :param set data: Initial data as a set of 3-tuples of RDFLib terms.
  521. :param tuple lookup: tuple of a 3-tuple of lookup terms, and a context.
  522. E.g. ``((URIRef('urn:ns:a'), None, None), URIRef('urn:ns:ctx'))``.
  523. Any and all elements may be ``None``.
  524. :param lmdbStore store: the store to look data up.
  525. """
  526. super().__init__(*args, **kwargs)
  527. self.uri = uri
  528. @property
  529. def identifier(self):
  530. """
  531. IMR URI. For compatibility with RDFLib Resource.
  532. :rtype: string
  533. """
  534. return self.uri
  535. @property
  536. def graph(self):
  537. """
  538. Return a SimpleGraph with the same data.
  539. :rtype: SimpleGraph
  540. """
  541. return SimpleGraph(self.data)
  542. def __repr__(self):
  543. """
  544. String representation of an Imr.
  545. This includes the subject URI, number of triples contained and the
  546. memory address of the instance.
  547. """
  548. return (f'<{self.__class__.__name__} @{hex(id(self))} uri={self.uri}, '
  549. f'length={len(self.data)}>')
  550. @use_data
  551. def __sub__(self, other):
  552. """
  553. Set difference. This creates a new Imr with the same subject URI.
  554. """
  555. return self.__class__(uri=self.uri, data=self.data - other)
  556. @use_data
  557. def __and__(self, other):
  558. """
  559. Set intersection. This creates a new Imr with the same subject URI.
  560. """
  561. return self.__class__(uri=self.uri, data=self.data & other)
  562. @use_data
  563. def __or__(self, other):
  564. """
  565. Set union. This creates a new Imr with the same subject URI.
  566. """
  567. return self.__class__(uri=self.uri, data=self.data | other)
  568. @use_data
  569. def __xor__(self, other):
  570. """
  571. Set exclusive OR (XOR). This creates a new Imr with the same subject
  572. URI.
  573. """
  574. return self.__class__(uri=self.uri, data=self.data ^ other)
  575. def __getitem__(self, item):
  576. """
  577. Supports slicing notation.
  578. """
  579. if isinstance(item, slice):
  580. s, p, o = item.start, item.stop, item.step
  581. return self._slice(s, p, o)
  582. elif isinstance(item, Node):
  583. # If a Node is given, return all values for that predicate.
  584. return {
  585. r[2] for r in self.data
  586. if r[0] == self.uri and r[1] == item}
  587. else:
  588. raise TypeError(f'Wrong slice format: {item}.')
  589. def value(self, p, strict=False):
  590. """
  591. Get an individual value.
  592. :param rdflib.termNode p: Predicate to search for.
  593. :param bool strict: If set to ``True`` the method raises an error if
  594. more than one value is found. If ``False`` (the default) only
  595. the first found result is returned.
  596. :rtype: rdflib.term.Node
  597. """
  598. values = self[p]
  599. if strict and len(values) > 1:
  600. raise RuntimeError('More than one value found for {}, {}.'.format(
  601. self.uri, p))
  602. for ret in values:
  603. return ret
  604. return None
  605. cpdef as_rdflib(self):
  606. """
  607. Return the IMR as a RDFLib Resource.
  608. :rtype: rdflib.Resource
  609. """
  610. gr = Graph()
  611. for trp in self.data:
  612. gr.add(trp)
  613. return gr.resource(identifier=self.uri)