cimport lakesuperior.cy_include.collections as cc cimport lakesuperior.cy_include.cylmdb as lmdb cimport lakesuperior.cy_include.cytpl as tpl from lakesuperior.model.base cimport ( KeyIdx, Key, DoubleKey, TripleKey, Buffer ) from lakesuperior.model.graph.graph cimport SimpleGraph from lakesuperior.model.structures.keyset cimport Keyset from lakesuperior.store.base_lmdb_store cimport BaseLmdbStore cdef: enum: IDX_OP_ADD = 1 IDX_OP_REMOVE = -1 unsigned char lookup_rank[3] unsigned char lookup_ordering[3][3] unsigned char lookup_ordering_2bound[3][3] cdef class LmdbTriplestore(BaseLmdbStore): cpdef dict stats(self) cpdef size_t _len(self, context=*) except -1 cpdef add(self, triple, context=*, quoted=*) cpdef add_graph(self, graph) cpdef void _remove(self, tuple triple_pattern, context=*) except * cpdef void _remove_graph(self, object gr_uri) except * cpdef tuple all_namespaces(self) cpdef SimpleGraph graph_lookup( self, triple_pattern, context=*, uri=*, copy=* ) cdef: void _add_graph(self, Buffer* pk_gr) except * void _index_triple(self, int op, TripleKey spok) except * Keyset triple_keys(self, tuple triple_pattern, context=*) void _all_term_keys(self, term_type, cc.HashSet** tkeys) except * void lookup_term(self, const Key tk, Buffer* data) except * Keyset _lookup(self, tuple triple_pattern) Keyset _lookup_1bound(self, unsigned char idx, Key luk) Keyset _lookup_2bound( self, unsigned char idx1, term1, unsigned char idx2, term2) object from_key(self, const Key tk) KeyIdx _to_key_idx(self, term) void all_contexts(self, KeyIdx** ctx, size_t* sz, triple=*) except * KeyIdx _append( self, Buffer *value, unsigned char *dblabel=*, lmdb.MDB_txn *txn=*, unsigned int flags=*) #KeyIdx bytes_to_idx(self, const unsigned char* bs) #unsigned char* idx_to_bytes(KeyIdx idx)