graph.pxd 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. from cymem.cymem cimport Pool
  2. from lakesuperior.cy_include cimport calg
  3. from lakesuperior.model.base cimport Buffer
  4. from lakesuperior.model.graph.triple cimport BufferTriple
  5. from lakesuperior.model.structures.keyset cimport Keyset
  6. from lakesuperior.store.ldp_rs.lmdb_triplestore cimport LmdbTriplestore
  7. from lakesuperior.store.ldp_rs.lmdb_triplestore cimport TripleKey
  8. # Lookup function that returns whether a triple contains a match pattern.
  9. ctypedef bint (*lookup_fn_t)(
  10. const BufferTriple *trp, const Buffer *t1, const Buffer *t2)
  11. ctypedef Buffer SPOBuffer[3]
  12. cdef:
  13. unsigned int term_hash_fn(const calg.SetValue data)
  14. bint buffer_cmp_fn(const calg.SetValue v1, const calg.SetValue v2)
  15. unsigned int trp_hash_fn(const calg.SetValue btrp)
  16. bint triple_cmp_fn(const calg.SetValue v1, const calg.SetValue v2)
  17. cdef class SimpleGraph:
  18. cdef:
  19. calg.Set *_triples # Set of unique triples.
  20. calg.Set *_terms # Set of unique serialized terms.
  21. LmdbTriplestore store
  22. # Temp data pool. It gets managed with the object lifecycle via cymem.
  23. Pool _pool
  24. void _data_from_lookup(self, tuple trp_ptn, ctx=*) except *
  25. void _data_from_keyset(self, Keyset data) except *
  26. inline void _add_from_spok(self, const TripleKey spok) except *
  27. inline void _add_triple(
  28. self, const Buffer *ss, const Buffer *sp, const Buffer *so
  29. ) except *
  30. set _data_as_set(self)
  31. cpdef void set(self, tuple trp) except *
  32. cpdef void remove_triples(self, pattern) except *
  33. cpdef object as_rdflib(self)
  34. cpdef set terms(self, str type)
  35. cdef class Imr(SimpleGraph):
  36. cdef:
  37. readonly str uri
  38. cpdef as_rdflib(self)