from lakesuperior.cy_include cimport calg from lakesuperior.store.ldp_rs.keyset cimport Keyset from lakesuperior.store.ldp_rs.lmdb_triplestore cimport TripleKey from lakesuperior.store.ldp_rs.term cimport Buffer from lakesuperior.store.ldp_rs.triple cimport BufferTriple from lakesuperior.store.ldp_rs.lmdb_triplestore cimport LmdbTriplestore # Lookup function that returns whether a triple contains a match pattern. ctypedef bint (*lookup_fn_t)( const BufferTriple *trp, const Buffer *t1, const Buffer *t2) cdef: unsigned int term_hash_fn(const calg.SetValue data) bint buffer_cmp_fn(const calg.SetValue v1, const calg.SetValue v2) unsigned int trp_hash_fn(const calg.SetValue btrp) bint triple_cmp_fn(const calg.SetValue v1, const calg.SetValue v2) cdef class SimpleGraph: cdef: calg.Set *_triples # Set of unique triples. calg.Set *_terms # Set of unique serialized terms. LmdbTriplestore store void _data_from_lookup(self, tuple trp_ptn, ctx=*) except * void _data_from_keyset(self, Keyset data) except * inline void _add_from_spok(self, const TripleKey spok) except * inline void _add_triple( self, const Buffer *ss, const Buffer *sp, const Buffer *so ) except * set _data_as_set(self) cpdef void set(self, tuple trp) except * cpdef void remove_triples(self, pattern) except * cpdef object as_rdflib(self) cpdef set terms(self, str type) cdef class Imr(SimpleGraph): cdef: readonly str uri cpdef as_rdflib(self)