graph.pyx 24 KB

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