graph.pxd 971 B

1234567891011121314151617181920212223242526272829303132333435
  1. from lakesuperior.cy_include cimport calg
  2. from lakesuperior.store.ldp_rs.triple cimport Triple
  3. from lakesuperior.store.ldp_rs.lmdb_triplestore cimport LmdbTriplestore
  4. ctypedef struct SetItem:
  5. unsigned char *data
  6. size_t size
  7. cdef:
  8. unsigned int set_item_hash_fn(calg.SetValue data)
  9. bint set_item_cmp_fn(calg.SetValue v1, calg.SetValue v2)
  10. cdef class SimpleGraph:
  11. cdef:
  12. calg.Set *_data
  13. Triple *_trp # Array of triples that are pointed to by _data.
  14. LmdbTriplestore store
  15. void _data_from_lookup(
  16. self, LmdbTriplestore store, tuple trp_ptn, ctx=*) except *
  17. _data_as_set(self)
  18. cpdef void set(self, tuple trp) except *
  19. cpdef void remove_triples(self, pattern) except *
  20. cpdef object as_rdflib(self)
  21. cdef _slice(self, s, p, o)
  22. cpdef lookup(self, s, p, o)
  23. cpdef set terms(self, str type)
  24. cdef class Imr(SimpleGraph):
  25. cdef:
  26. readonly str uri
  27. cpdef as_rdflib(self)