graph.pxd 1.5 KB

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