Browse Source

WIP data structure overhaul.

Stefano Cossu 6 years ago
parent
commit
39c060cc19
2 changed files with 13 additions and 3 deletions
  1. 1 1
      lakesuperior/store/ldp_rs/graph.pxd
  2. 12 2
      lakesuperior/store/ldp_rs/graph.pyx

+ 1 - 1
lakesuperior/store/ldp_rs/graph.pxd

@@ -13,7 +13,7 @@ cdef:
 cdef class SimpleGraph:
 cdef class SimpleGraph:
     cdef:
     cdef:
         calg.Set *_data
         calg.Set *_data
-        Triple *_trp
+        Triple *_trp # Array of triples that are pointed to by _data.
         LmdbTriplestore store
         LmdbTriplestore store
 
 
         void _data_from_lookup(
         void _data_from_lookup(

+ 12 - 2
lakesuperior/store/ldp_rs/graph.pyx

@@ -78,6 +78,10 @@ cdef class SimpleGraph:
     Most functions should mimic RDFLib's graph with less overhead. It uses
     Most functions should mimic RDFLib's graph with less overhead. It uses
     the same funny but functional slicing notation.
     the same funny but functional slicing notation.
 
 
+    Instances of this class hold a set of pointers to
+    :py:class:`~lakesuperior.store.ldp_rs.triple.Triple` structures. No data
+    are copied but care must be taken when freeing the triples pointed to.
+
     A SimpleGraph can be obtained from a
     A SimpleGraph can be obtained from a
     :py:class:`lakesuperior.store.keyset.Keyset` which is convenient bacause
     :py:class:`lakesuperior.store.keyset.Keyset` which is convenient bacause
     a Keyset can be obtained very efficiently from querying a store, then also
     a Keyset can be obtained very efficiently from querying a store, then also
@@ -85,7 +89,7 @@ cdef class SimpleGraph:
     terms.
     terms.
 
 
     An instance of this class can also be converted to and from a
     An instance of this class can also be converted to and from a
-    ``rdflib.Graph`` instance.
+    ``rdflib.Graph`` instance. TODO verify that this frees Cython pointers.
     """
     """
 
 
     def __cinit__(
     def __cinit__(
@@ -120,7 +124,7 @@ cdef class SimpleGraph:
             term.Buffer pk_t
             term.Buffer pk_t
 
 
         if cdata is not NULL:
         if cdata is not NULL:
-            # Build data from provided C set.
+            # Get data from provided C set.
             self._data = cdata
             self._data = cdata
 
 
         else:
         else:
@@ -150,7 +154,13 @@ cdef class SimpleGraph:
 
 
 
 
     def __dealloc__(self):
     def __dealloc__(self):
+        """
+        Free the triple pointer.
+        """
         PyMem_Free(self._trp)
         PyMem_Free(self._trp)
+        # TODO This should free the structs pointed to as well, unless they
+        # were provided as ``cdata`` in the constructor (i.e. they were
+        # generated.externally).
 
 
 
 
     @property
     @property