graph.pxd 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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(calg.SetValue data)
  12. bint buffer_cmp_fn(calg.SetValue v1, calg.SetValue v2)
  13. unsigned int trp_hash_fn(calg.SetValue btrp)
  14. bint triple_cmp_fn(calg.SetValue v1, 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. void _add_from_rdflib(self, s, p, o) except *
  24. inline void _add_triple(
  25. self, const Buffer *ss, const Buffer *sp, const Buffer *so
  26. ) except *
  27. set _data_as_set(self)
  28. cpdef void set(self, tuple trp) except *
  29. cpdef void remove_triples(self, pattern) except *
  30. cpdef object as_rdflib(self)
  31. cpdef set terms(self, str type)
  32. cdef class Imr(SimpleGraph):
  33. cdef:
  34. readonly str uri
  35. cpdef as_rdflib(self)