소스 검색

WIP data structure overhaul.

Stefano Cossu 6 년 전
부모
커밋
39c060cc19
2개의 변경된 파일13개의 추가작업 그리고 3개의 파일을 삭제
  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:
         calg.Set *_data
-        Triple *_trp
+        Triple *_trp # Array of triples that are pointed to by _data.
         LmdbTriplestore store
 
         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
     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
     :py:class:`lakesuperior.store.keyset.Keyset` which is convenient bacause
     a Keyset can be obtained very efficiently from querying a store, then also
@@ -85,7 +89,7 @@ cdef class SimpleGraph:
     terms.
 
     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__(
@@ -120,7 +124,7 @@ cdef class SimpleGraph:
             term.Buffer pk_t
 
         if cdata is not NULL:
-            # Build data from provided C set.
+            # Get data from provided C set.
             self._data = cdata
 
         else:
@@ -150,7 +154,13 @@ cdef class SimpleGraph:
 
 
     def __dealloc__(self):
+        """
+        Free the triple pointer.
+        """
         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