graph.pxd 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. ctypedef Buffer *BufferPtr
  13. cdef:
  14. unsigned int term_hash_fn(const calg.SetValue data)
  15. bint buffer_cmp_fn(const calg.SetValue v1, const calg.SetValue v2)
  16. unsigned int trp_hash_fn(const calg.SetValue btrp)
  17. bint triple_cmp_fn(const calg.SetValue v1, const calg.SetValue v2)
  18. cdef class SimpleGraph:
  19. cdef:
  20. calg.Set *_triples # Set of unique triples.
  21. calg.Set *_terms # Set of unique serialized terms.
  22. LmdbTriplestore store
  23. # Temp data pool. It gets managed with the object lifecycle via cymem.
  24. Pool _pool
  25. void _data_from_lookup(self, tuple trp_ptn, ctx=*) except *
  26. void _data_from_keyset(self, Keyset data) except *
  27. inline void _add_from_spok(self, const TripleKey spok) except *
  28. inline void _add_triple(
  29. self, Buffer *ss, Buffer *sp, Buffer *so
  30. ) except *
  31. int _add_or_get_term(self, Buffer **data) except -1
  32. set _data_as_set(self)
  33. cpdef void set(self, tuple trp) except *
  34. cpdef void remove_triples(self, pattern) except *
  35. cpdef object as_rdflib(self)
  36. cpdef set terms(self, str type)
  37. cdef class Imr(SimpleGraph):
  38. cdef:
  39. readonly str uri
  40. cpdef as_rdflib(self)