123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- from libc.stdint cimport uint32_t, uint64_t
- from cymem.cymem cimport Pool
- from lakesuperior.cy_include cimport collections as cc
- from lakesuperior.model.base cimport Buffer
- from lakesuperior.model.graph.triple cimport BufferTriple
- from lakesuperior.model.structures.keyset cimport Keyset
- from lakesuperior.store.ldp_rs.lmdb_triplestore cimport LmdbTriplestore
- from lakesuperior.store.ldp_rs.lmdb_triplestore cimport TripleKey
- # 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)
- ctypedef Buffer SPOBuffer[3]
- ctypedef Buffer *BufferPtr
- cdef:
- int term_cmp_fn(const void* key1, const void* key2)
- int trp_cmp_fn(const void* key1, const void* key2)
- bint graph_eq_fn(SimpleGraph g1, SimpleGraph g2)
- size_t trp_hash_fn(const void* key, int l, uint32_t seed)
- size_t hash_ptr_passthrough(const void* key, int l, uint32_t seed)
- cdef class SimpleGraph:
- cdef:
- cc.HashSet *_terms # Set of unique serialized terms.
- cc.HashSet *_triples # Set of unique triples.
- readonly LmdbTriplestore store
- # Temp data pool. It gets managed with the object lifecycle via cymem.
- Pool _pool
- cc.key_compare_ft term_cmp_fn
- cc.key_compare_ft trp_cmp_fn
- 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, BufferTriple *trp) except *
- int _remove_triple(self, BufferTriple* trp_buf) except -1
- bint _trp_contains(self, BufferTriple* btrp)
- _get_terms(self)
- set _to_pyset(self)
- # Basic graph operations.
- void ip_union(self, SimpleGraph other) except *
- void ip_subtraction(self, SimpleGraph other) except *
- void ip_intersection(self, SimpleGraph other) except *
- void ip_xor(self, SimpleGraph other) except *
- cpdef SimpleGraph union(self, SimpleGraph other)
- cpdef SimpleGraph subtraction(self, SimpleGraph other)
- cpdef SimpleGraph intersection(self, SimpleGraph other)
- cpdef SimpleGraph xor(self, SimpleGraph other)
- 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)
|