Browse Source

Add documentation for triplestore; clean up unused imports;
minor signature change.

Stefano Cossu 6 years ago
parent
commit
d5b7ce4095

+ 21 - 113
lakesuperior/store/base_lmdb_store.c

@@ -808,7 +808,6 @@ struct __pyx_opt_args_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore__d
 struct __pyx_opt_args_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_close_env;
 struct __pyx_opt_args_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_close_env;
 struct __pyx_opt_args_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_destroy;
 struct __pyx_opt_args_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_destroy;
 struct __pyx_opt_args_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_get_data;
 struct __pyx_opt_args_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_get_data;
-struct __pyx_opt_args_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_stats;
 
 
 /* "lakesuperior/store/base_lmdb_store.pxd":10
 /* "lakesuperior/store/base_lmdb_store.pxd":10
  *     lmdb.MDB_dbi dbi
  *     lmdb.MDB_dbi dbi
@@ -951,7 +950,7 @@ struct __pyx_opt_args_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_de
  *     #cpdef get_dup_data(self, unsigned char *key, db=*)
  *     #cpdef get_dup_data(self, unsigned char *key, db=*)
  *     #cpdef get_all_pairs(self, db=*)
  *     #cpdef get_all_pairs(self, db=*)
  *     cpdef bytes get_data(self, key, dblabel=*)             # <<<<<<<<<<<<<<
  *     cpdef bytes get_data(self, key, dblabel=*)             # <<<<<<<<<<<<<<
- *     cpdef dict stats(self, new_txn=*)
+ *     cpdef dict stats(self)
  *     cpdef int txn_id(self)
  *     cpdef int txn_id(self)
  */
  */
 struct __pyx_opt_args_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_get_data {
 struct __pyx_opt_args_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_get_data {
@@ -959,18 +958,6 @@ struct __pyx_opt_args_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_ge
   PyObject *dblabel;
   PyObject *dblabel;
 };
 };
 
 
-/* "lakesuperior/store/base_lmdb_store.pxd":62
- *     #cpdef get_all_pairs(self, db=*)
- *     cpdef bytes get_data(self, key, dblabel=*)
- *     cpdef dict stats(self, new_txn=*)             # <<<<<<<<<<<<<<
- *     cpdef int txn_id(self)
- *     #cpdef str reader_list(self)
- */
-struct __pyx_opt_args_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_stats {
-  int __pyx_n;
-  PyObject *new_txn;
-};
-
 /* "lakesuperior/store/base_lmdb_store.pxd":13
 /* "lakesuperior/store/base_lmdb_store.pxd":13
  * 
  * 
  * 
  * 
@@ -1036,7 +1023,7 @@ struct __pyx_vtabstruct_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore {
   void (*close_env)(struct __pyx_obj_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore *, int __pyx_skip_dispatch, struct __pyx_opt_args_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_close_env *__pyx_optional_args);
   void (*close_env)(struct __pyx_obj_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore *, int __pyx_skip_dispatch, struct __pyx_opt_args_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_close_env *__pyx_optional_args);
   void (*destroy)(struct __pyx_obj_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore *, int __pyx_skip_dispatch, struct __pyx_opt_args_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_destroy *__pyx_optional_args);
   void (*destroy)(struct __pyx_obj_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore *, int __pyx_skip_dispatch, struct __pyx_opt_args_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_destroy *__pyx_optional_args);
   PyObject *(*get_data)(struct __pyx_obj_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore *, PyObject *, int __pyx_skip_dispatch, struct __pyx_opt_args_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_get_data *__pyx_optional_args);
   PyObject *(*get_data)(struct __pyx_obj_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore *, PyObject *, int __pyx_skip_dispatch, struct __pyx_opt_args_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_get_data *__pyx_optional_args);
-  PyObject *(*stats)(struct __pyx_obj_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore *, int __pyx_skip_dispatch, struct __pyx_opt_args_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_stats *__pyx_optional_args);
+  PyObject *(*stats)(struct __pyx_obj_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore *, int __pyx_skip_dispatch);
   int (*txn_id)(struct __pyx_obj_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore *, int __pyx_skip_dispatch);
   int (*txn_id)(struct __pyx_obj_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore *, int __pyx_skip_dispatch);
 };
 };
 static struct __pyx_vtabstruct_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore *__pyx_vtabptr_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore;
 static struct __pyx_vtabstruct_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore *__pyx_vtabptr_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore;
@@ -1759,7 +1746,7 @@ static void __pyx_f_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore__put
 static PyObject *__pyx_f_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_get_data(struct __pyx_obj_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore *__pyx_v_self, PyObject *__pyx_v_key, int __pyx_skip_dispatch, struct __pyx_opt_args_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_get_data *__pyx_optional_args); /* proto*/
 static PyObject *__pyx_f_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_get_data(struct __pyx_obj_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore *__pyx_v_self, PyObject *__pyx_v_key, int __pyx_skip_dispatch, struct __pyx_opt_args_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_get_data *__pyx_optional_args); /* proto*/
 static void __pyx_f_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore__get_data(struct __pyx_obj_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore *__pyx_v_self, unsigned char *__pyx_v_key, CYTHON_UNUSED size_t __pyx_v_klen, struct MDB_val *__pyx_v_rv, struct __pyx_opt_args_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore__get_data *__pyx_optional_args); /* proto*/
 static void __pyx_f_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore__get_data(struct __pyx_obj_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore *__pyx_v_self, unsigned char *__pyx_v_key, CYTHON_UNUSED size_t __pyx_v_klen, struct MDB_val *__pyx_v_rv, struct __pyx_opt_args_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore__get_data *__pyx_optional_args); /* proto*/
 static void __pyx_f_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore__delete(struct __pyx_obj_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore *__pyx_v_self, unsigned char *__pyx_v_key, size_t __pyx_v_klen, struct __pyx_opt_args_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore__delete *__pyx_optional_args); /* proto*/
 static void __pyx_f_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore__delete(struct __pyx_obj_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore *__pyx_v_self, unsigned char *__pyx_v_key, size_t __pyx_v_klen, struct __pyx_opt_args_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore__delete *__pyx_optional_args); /* proto*/
-static PyObject *__pyx_f_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_stats(struct __pyx_obj_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore *__pyx_v_self, int __pyx_skip_dispatch, struct __pyx_opt_args_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_stats *__pyx_optional_args); /* proto*/
+static PyObject *__pyx_f_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_stats(struct __pyx_obj_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore *__pyx_v_self, int __pyx_skip_dispatch); /* proto*/
 static PyObject *__pyx_f_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore__stats(struct __pyx_obj_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore *__pyx_v_self); /* proto*/
 static PyObject *__pyx_f_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore__stats(struct __pyx_obj_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore *__pyx_v_self); /* proto*/
 static void __pyx_f_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore__txn_begin(struct __pyx_obj_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore *__pyx_v_self, struct __pyx_opt_args_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore__txn_begin *__pyx_optional_args); /* proto*/
 static void __pyx_f_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore__txn_begin(struct __pyx_obj_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore *__pyx_v_self, struct __pyx_opt_args_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore__txn_begin *__pyx_optional_args); /* proto*/
 static void __pyx_f_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore__txn_commit(struct __pyx_obj_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore *__pyx_v_self); /* proto*/
 static void __pyx_f_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore__txn_commit(struct __pyx_obj_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore *__pyx_v_self); /* proto*/
@@ -2130,7 +2117,7 @@ static PyObject *__pyx_pf_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStor
 static PyObject *__pyx_pf_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_23put(struct __pyx_obj_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore *__pyx_v_self, PyObject *__pyx_v_key, PyObject *__pyx_v_data, PyObject *__pyx_v_dblabel, PyObject *__pyx_v_flags); /* proto */
 static PyObject *__pyx_pf_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_23put(struct __pyx_obj_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore *__pyx_v_self, PyObject *__pyx_v_key, PyObject *__pyx_v_data, PyObject *__pyx_v_dblabel, PyObject *__pyx_v_flags); /* proto */
 static PyObject *__pyx_pf_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_25get_data(struct __pyx_obj_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore *__pyx_v_self, PyObject *__pyx_v_key, PyObject *__pyx_v_dblabel); /* proto */
 static PyObject *__pyx_pf_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_25get_data(struct __pyx_obj_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore *__pyx_v_self, PyObject *__pyx_v_key, PyObject *__pyx_v_dblabel); /* proto */
 static PyObject *__pyx_pf_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_27delete(struct __pyx_obj_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore *__pyx_v_self, PyObject *__pyx_v_key, PyObject *__pyx_v_dblabel); /* proto */
 static PyObject *__pyx_pf_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_27delete(struct __pyx_obj_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore *__pyx_v_self, PyObject *__pyx_v_key, PyObject *__pyx_v_dblabel); /* proto */
-static PyObject *__pyx_pf_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_29stats(struct __pyx_obj_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore *__pyx_v_self, PyObject *__pyx_v_new_txn); /* proto */
+static PyObject *__pyx_pf_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_29stats(struct __pyx_obj_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore *__pyx_v_self); /* proto */
 static PyObject *__pyx_pf_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_31txn_id(struct __pyx_obj_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore *__pyx_v_self); /* proto */
 static PyObject *__pyx_pf_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_31txn_id(struct __pyx_obj_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore *__pyx_v_self); /* proto */
 static PyObject *__pyx_pf_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_11is_txn_open___get__(struct __pyx_obj_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore *__pyx_v_self); /* proto */
 static PyObject *__pyx_pf_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_11is_txn_open___get__(struct __pyx_obj_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore *__pyx_v_self); /* proto */
 static PyObject *__pyx_pf_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_5_open___get__(struct __pyx_obj_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore *__pyx_v_self); /* proto */
 static PyObject *__pyx_pf_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_5_open___get__(struct __pyx_obj_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore *__pyx_v_self); /* proto */
@@ -8755,14 +8742,13 @@ static void __pyx_f_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore__del
 /* "lakesuperior/store/base_lmdb_store.pyx":522
 /* "lakesuperior/store/base_lmdb_store.pyx":522
  * 
  * 
  * 
  * 
- *     cpdef dict stats(self, new_txn=True):             # <<<<<<<<<<<<<<
+ *     cpdef dict stats(self):             # <<<<<<<<<<<<<<
  *         """Gather statistics about the database."""
  *         """Gather statistics about the database."""
  *         return self._stats()
  *         return self._stats()
  */
  */
 
 
-static PyObject *__pyx_pw_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_30stats(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/
-static PyObject *__pyx_f_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_stats(struct __pyx_obj_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore *__pyx_v_self, int __pyx_skip_dispatch, struct __pyx_opt_args_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_stats *__pyx_optional_args) {
-  PyObject *__pyx_v_new_txn = ((PyObject *)Py_True);
+static PyObject *__pyx_pw_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_30stats(PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *unused); /*proto*/
+static PyObject *__pyx_f_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_stats(struct __pyx_obj_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore *__pyx_v_self, int __pyx_skip_dispatch) {
   PyObject *__pyx_r = NULL;
   PyObject *__pyx_r = NULL;
   __Pyx_TraceDeclarations
   __Pyx_TraceDeclarations
   __Pyx_RefNannyDeclarations
   __Pyx_RefNannyDeclarations
@@ -8770,14 +8756,8 @@ static PyObject *__pyx_f_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore
   PyObject *__pyx_t_2 = NULL;
   PyObject *__pyx_t_2 = NULL;
   PyObject *__pyx_t_3 = NULL;
   PyObject *__pyx_t_3 = NULL;
   PyObject *__pyx_t_4 = NULL;
   PyObject *__pyx_t_4 = NULL;
-  PyObject *__pyx_t_5 = NULL;
   __Pyx_RefNannySetupContext("stats", 0);
   __Pyx_RefNannySetupContext("stats", 0);
   __Pyx_TraceCall("stats", __pyx_f[0], 522, 0, __PYX_ERR(0, 522, __pyx_L1_error));
   __Pyx_TraceCall("stats", __pyx_f[0], 522, 0, __PYX_ERR(0, 522, __pyx_L1_error));
-  if (__pyx_optional_args) {
-    if (__pyx_optional_args->__pyx_n > 0) {
-      __pyx_v_new_txn = __pyx_optional_args->new_txn;
-    }
-  }
   /* Check if called by wrapper */
   /* Check if called by wrapper */
   if (unlikely(__pyx_skip_dispatch)) ;
   if (unlikely(__pyx_skip_dispatch)) ;
   /* Check if overridden in Python */
   /* Check if overridden in Python */
@@ -8797,38 +8777,13 @@ static PyObject *__pyx_f_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore
           __Pyx_DECREF_SET(__pyx_t_3, function);
           __Pyx_DECREF_SET(__pyx_t_3, function);
         }
         }
       }
       }
-      if (!__pyx_t_4) {
-        __pyx_t_2 = __Pyx_PyObject_CallOneArg(__pyx_t_3, __pyx_v_new_txn); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 522, __pyx_L1_error)
-        __Pyx_GOTREF(__pyx_t_2);
+      if (__pyx_t_4) {
+        __pyx_t_2 = __Pyx_PyObject_CallOneArg(__pyx_t_3, __pyx_t_4); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 522, __pyx_L1_error)
+        __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
       } else {
       } else {
-        #if CYTHON_FAST_PYCALL
-        if (PyFunction_Check(__pyx_t_3)) {
-          PyObject *__pyx_temp[2] = {__pyx_t_4, __pyx_v_new_txn};
-          __pyx_t_2 = __Pyx_PyFunction_FastCall(__pyx_t_3, __pyx_temp+1-1, 1+1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 522, __pyx_L1_error)
-          __Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0;
-          __Pyx_GOTREF(__pyx_t_2);
-        } else
-        #endif
-        #if CYTHON_FAST_PYCCALL
-        if (__Pyx_PyFastCFunction_Check(__pyx_t_3)) {
-          PyObject *__pyx_temp[2] = {__pyx_t_4, __pyx_v_new_txn};
-          __pyx_t_2 = __Pyx_PyCFunction_FastCall(__pyx_t_3, __pyx_temp+1-1, 1+1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 522, __pyx_L1_error)
-          __Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0;
-          __Pyx_GOTREF(__pyx_t_2);
-        } else
-        #endif
-        {
-          __pyx_t_5 = PyTuple_New(1+1); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 522, __pyx_L1_error)
-          __Pyx_GOTREF(__pyx_t_5);
-          __Pyx_GIVEREF(__pyx_t_4); PyTuple_SET_ITEM(__pyx_t_5, 0, __pyx_t_4); __pyx_t_4 = NULL;
-          __Pyx_INCREF(__pyx_v_new_txn);
-          __Pyx_GIVEREF(__pyx_v_new_txn);
-          PyTuple_SET_ITEM(__pyx_t_5, 0+1, __pyx_v_new_txn);
-          __pyx_t_2 = __Pyx_PyObject_Call(__pyx_t_3, __pyx_t_5, NULL); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 522, __pyx_L1_error)
-          __Pyx_GOTREF(__pyx_t_2);
-          __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
-        }
+        __pyx_t_2 = __Pyx_PyObject_CallNoArg(__pyx_t_3); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 522, __pyx_L1_error)
       }
       }
+      __Pyx_GOTREF(__pyx_t_2);
       __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
       __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
       if (!(likely(PyDict_CheckExact(__pyx_t_2))||((__pyx_t_2) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected %.16s, got %.200s", "dict", Py_TYPE(__pyx_t_2)->tp_name), 0))) __PYX_ERR(0, 522, __pyx_L1_error)
       if (!(likely(PyDict_CheckExact(__pyx_t_2))||((__pyx_t_2) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected %.16s, got %.200s", "dict", Py_TYPE(__pyx_t_2)->tp_name), 0))) __PYX_ERR(0, 522, __pyx_L1_error)
       __pyx_r = ((PyObject*)__pyx_t_2);
       __pyx_r = ((PyObject*)__pyx_t_2);
@@ -8840,7 +8795,7 @@ static PyObject *__pyx_f_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore
   }
   }
 
 
   /* "lakesuperior/store/base_lmdb_store.pyx":524
   /* "lakesuperior/store/base_lmdb_store.pyx":524
- *     cpdef dict stats(self, new_txn=True):
+ *     cpdef dict stats(self):
  *         """Gather statistics about the database."""
  *         """Gather statistics about the database."""
  *         return self._stats()             # <<<<<<<<<<<<<<
  *         return self._stats()             # <<<<<<<<<<<<<<
  * 
  * 
@@ -8856,7 +8811,7 @@ static PyObject *__pyx_f_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore
   /* "lakesuperior/store/base_lmdb_store.pyx":522
   /* "lakesuperior/store/base_lmdb_store.pyx":522
  * 
  * 
  * 
  * 
- *     cpdef dict stats(self, new_txn=True):             # <<<<<<<<<<<<<<
+ *     cpdef dict stats(self):             # <<<<<<<<<<<<<<
  *         """Gather statistics about the database."""
  *         """Gather statistics about the database."""
  *         return self._stats()
  *         return self._stats()
  */
  */
@@ -8867,7 +8822,6 @@ static PyObject *__pyx_f_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore
   __Pyx_XDECREF(__pyx_t_2);
   __Pyx_XDECREF(__pyx_t_2);
   __Pyx_XDECREF(__pyx_t_3);
   __Pyx_XDECREF(__pyx_t_3);
   __Pyx_XDECREF(__pyx_t_4);
   __Pyx_XDECREF(__pyx_t_4);
-  __Pyx_XDECREF(__pyx_t_5);
   __Pyx_AddTraceback("lakesuperior.store.base_lmdb_store.BaseLmdbStore.stats", __pyx_clineno, __pyx_lineno, __pyx_filename);
   __Pyx_AddTraceback("lakesuperior.store.base_lmdb_store.BaseLmdbStore.stats", __pyx_clineno, __pyx_lineno, __pyx_filename);
   __pyx_r = 0;
   __pyx_r = 0;
   __pyx_L0:;
   __pyx_L0:;
@@ -8878,74 +8832,28 @@ static PyObject *__pyx_f_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore
 }
 }
 
 
 /* Python wrapper */
 /* Python wrapper */
-static PyObject *__pyx_pw_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_30stats(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/
+static PyObject *__pyx_pw_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_30stats(PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *unused); /*proto*/
 static char __pyx_doc_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_29stats[] = "Gather statistics about the database.";
 static char __pyx_doc_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_29stats[] = "Gather statistics about the database.";
-static PyObject *__pyx_pw_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_30stats(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds) {
-  PyObject *__pyx_v_new_txn = 0;
+static PyObject *__pyx_pw_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_30stats(PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *unused) {
   PyObject *__pyx_r = 0;
   PyObject *__pyx_r = 0;
   __Pyx_RefNannyDeclarations
   __Pyx_RefNannyDeclarations
   __Pyx_RefNannySetupContext("stats (wrapper)", 0);
   __Pyx_RefNannySetupContext("stats (wrapper)", 0);
-  {
-    static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_new_txn,0};
-    PyObject* values[1] = {0};
-    values[0] = ((PyObject *)Py_True);
-    if (unlikely(__pyx_kwds)) {
-      Py_ssize_t kw_args;
-      const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args);
-      switch (pos_args) {
-        case  1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0);
-        CYTHON_FALLTHROUGH;
-        case  0: break;
-        default: goto __pyx_L5_argtuple_error;
-      }
-      kw_args = PyDict_Size(__pyx_kwds);
-      switch (pos_args) {
-        case  0:
-        if (kw_args > 0) {
-          PyObject* value = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_new_txn);
-          if (value) { values[0] = value; kw_args--; }
-        }
-      }
-      if (unlikely(kw_args > 0)) {
-        if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "stats") < 0)) __PYX_ERR(0, 522, __pyx_L3_error)
-      }
-    } else {
-      switch (PyTuple_GET_SIZE(__pyx_args)) {
-        case  1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0);
-        CYTHON_FALLTHROUGH;
-        case  0: break;
-        default: goto __pyx_L5_argtuple_error;
-      }
-    }
-    __pyx_v_new_txn = values[0];
-  }
-  goto __pyx_L4_argument_unpacking_done;
-  __pyx_L5_argtuple_error:;
-  __Pyx_RaiseArgtupleInvalid("stats", 0, 0, 1, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(0, 522, __pyx_L3_error)
-  __pyx_L3_error:;
-  __Pyx_AddTraceback("lakesuperior.store.base_lmdb_store.BaseLmdbStore.stats", __pyx_clineno, __pyx_lineno, __pyx_filename);
-  __Pyx_RefNannyFinishContext();
-  return NULL;
-  __pyx_L4_argument_unpacking_done:;
-  __pyx_r = __pyx_pf_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_29stats(((struct __pyx_obj_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore *)__pyx_v_self), __pyx_v_new_txn);
+  __pyx_r = __pyx_pf_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_29stats(((struct __pyx_obj_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore *)__pyx_v_self));
 
 
   /* function exit code */
   /* function exit code */
   __Pyx_RefNannyFinishContext();
   __Pyx_RefNannyFinishContext();
   return __pyx_r;
   return __pyx_r;
 }
 }
 
 
-static PyObject *__pyx_pf_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_29stats(struct __pyx_obj_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore *__pyx_v_self, PyObject *__pyx_v_new_txn) {
+static PyObject *__pyx_pf_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_29stats(struct __pyx_obj_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore *__pyx_v_self) {
   PyObject *__pyx_r = NULL;
   PyObject *__pyx_r = NULL;
   __Pyx_TraceDeclarations
   __Pyx_TraceDeclarations
   __Pyx_RefNannyDeclarations
   __Pyx_RefNannyDeclarations
   PyObject *__pyx_t_1 = NULL;
   PyObject *__pyx_t_1 = NULL;
-  struct __pyx_opt_args_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_stats __pyx_t_2;
   __Pyx_RefNannySetupContext("stats", 0);
   __Pyx_RefNannySetupContext("stats", 0);
   __Pyx_TraceCall("stats (wrapper)", __pyx_f[0], 522, 0, __PYX_ERR(0, 522, __pyx_L1_error));
   __Pyx_TraceCall("stats (wrapper)", __pyx_f[0], 522, 0, __PYX_ERR(0, 522, __pyx_L1_error));
   __Pyx_XDECREF(__pyx_r);
   __Pyx_XDECREF(__pyx_r);
-  __pyx_t_2.__pyx_n = 1;
-  __pyx_t_2.new_txn = __pyx_v_new_txn;
-  __pyx_t_1 = __pyx_vtabptr_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore->stats(__pyx_v_self, 1, &__pyx_t_2); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 522, __pyx_L1_error)
+  __pyx_t_1 = __pyx_f_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_stats(__pyx_v_self, 1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 522, __pyx_L1_error)
   __Pyx_GOTREF(__pyx_t_1);
   __Pyx_GOTREF(__pyx_t_1);
   __pyx_r = __pyx_t_1;
   __pyx_r = __pyx_t_1;
   __pyx_t_1 = 0;
   __pyx_t_1 = 0;
@@ -11720,7 +11628,7 @@ static PyMethodDef __pyx_methods_12lakesuperior_5store_15base_lmdb_store_BaseLmd
   {"put", (PyCFunction)__pyx_pw_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_24put, METH_VARARGS|METH_KEYWORDS, __pyx_doc_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_23put},
   {"put", (PyCFunction)__pyx_pw_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_24put, METH_VARARGS|METH_KEYWORDS, __pyx_doc_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_23put},
   {"get_data", (PyCFunction)__pyx_pw_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_26get_data, METH_VARARGS|METH_KEYWORDS, __pyx_doc_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_25get_data},
   {"get_data", (PyCFunction)__pyx_pw_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_26get_data, METH_VARARGS|METH_KEYWORDS, __pyx_doc_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_25get_data},
   {"delete", (PyCFunction)__pyx_pw_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_28delete, METH_VARARGS|METH_KEYWORDS, __pyx_doc_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_27delete},
   {"delete", (PyCFunction)__pyx_pw_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_28delete, METH_VARARGS|METH_KEYWORDS, __pyx_doc_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_27delete},
-  {"stats", (PyCFunction)__pyx_pw_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_30stats, METH_VARARGS|METH_KEYWORDS, __pyx_doc_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_29stats},
+  {"stats", (PyCFunction)__pyx_pw_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_30stats, METH_NOARGS, __pyx_doc_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_29stats},
   {"txn_id", (PyCFunction)__pyx_pw_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_32txn_id, METH_NOARGS, 0},
   {"txn_id", (PyCFunction)__pyx_pw_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_32txn_id, METH_NOARGS, 0},
   {"__reduce_cython__", (PyCFunction)__pyx_pw_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_34__reduce_cython__, METH_NOARGS, 0},
   {"__reduce_cython__", (PyCFunction)__pyx_pw_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_34__reduce_cython__, METH_NOARGS, 0},
   {"__setstate_cython__", (PyCFunction)__pyx_pw_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_36__setstate_cython__, METH_O, 0},
   {"__setstate_cython__", (PyCFunction)__pyx_pw_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_36__setstate_cython__, METH_O, 0},
@@ -12349,7 +12257,7 @@ static int __Pyx_modinit_type_init_code(void) {
   __pyx_vtable_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore.close_env = (void (*)(struct __pyx_obj_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore *, int __pyx_skip_dispatch, struct __pyx_opt_args_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_close_env *__pyx_optional_args))__pyx_f_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_close_env;
   __pyx_vtable_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore.close_env = (void (*)(struct __pyx_obj_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore *, int __pyx_skip_dispatch, struct __pyx_opt_args_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_close_env *__pyx_optional_args))__pyx_f_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_close_env;
   __pyx_vtable_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore.destroy = (void (*)(struct __pyx_obj_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore *, int __pyx_skip_dispatch, struct __pyx_opt_args_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_destroy *__pyx_optional_args))__pyx_f_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_destroy;
   __pyx_vtable_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore.destroy = (void (*)(struct __pyx_obj_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore *, int __pyx_skip_dispatch, struct __pyx_opt_args_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_destroy *__pyx_optional_args))__pyx_f_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_destroy;
   __pyx_vtable_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore.get_data = (PyObject *(*)(struct __pyx_obj_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore *, PyObject *, int __pyx_skip_dispatch, struct __pyx_opt_args_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_get_data *__pyx_optional_args))__pyx_f_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_get_data;
   __pyx_vtable_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore.get_data = (PyObject *(*)(struct __pyx_obj_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore *, PyObject *, int __pyx_skip_dispatch, struct __pyx_opt_args_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_get_data *__pyx_optional_args))__pyx_f_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_get_data;
-  __pyx_vtable_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore.stats = (PyObject *(*)(struct __pyx_obj_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore *, int __pyx_skip_dispatch, struct __pyx_opt_args_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_stats *__pyx_optional_args))__pyx_f_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_stats;
+  __pyx_vtable_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore.stats = (PyObject *(*)(struct __pyx_obj_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore *, int __pyx_skip_dispatch))__pyx_f_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_stats;
   __pyx_vtable_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore.txn_id = (int (*)(struct __pyx_obj_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore *, int __pyx_skip_dispatch))__pyx_f_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_txn_id;
   __pyx_vtable_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore.txn_id = (int (*)(struct __pyx_obj_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore *, int __pyx_skip_dispatch))__pyx_f_12lakesuperior_5store_15base_lmdb_store_13BaseLmdbStore_txn_id;
   if (PyType_Ready(&__pyx_type_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore) < 0) __PYX_ERR(0, 49, __pyx_L1_error)
   if (PyType_Ready(&__pyx_type_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore) < 0) __PYX_ERR(0, 49, __pyx_L1_error)
   __pyx_type_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore.tp_print = 0;
   __pyx_type_12lakesuperior_5store_15base_lmdb_store_BaseLmdbStore.tp_print = 0;

+ 1 - 1
lakesuperior/store/base_lmdb_store.pxd

@@ -59,6 +59,6 @@ cdef class BaseLmdbStore:
     #cpdef get_dup_data(self, unsigned char *key, db=*)
     #cpdef get_dup_data(self, unsigned char *key, db=*)
     #cpdef get_all_pairs(self, db=*)
     #cpdef get_all_pairs(self, db=*)
     cpdef bytes get_data(self, key, dblabel=*)
     cpdef bytes get_data(self, key, dblabel=*)
-    cpdef dict stats(self, new_txn=*)
+    cpdef dict stats(self)
     cpdef int txn_id(self)
     cpdef int txn_id(self)
     #cpdef str reader_list(self)
     #cpdef str reader_list(self)

+ 1 - 1
lakesuperior/store/base_lmdb_store.pyx

@@ -519,7 +519,7 @@ cdef class BaseLmdbStore:
             pass
             pass
 
 
 
 
-    cpdef dict stats(self, new_txn=True):
+    cpdef dict stats(self):
         """Gather statistics about the database."""
         """Gather statistics about the database."""
         return self._stats()
         return self._stats()
 
 

File diff suppressed because it is too large
+ 133 - 170
lakesuperior/store/ldp_rs/lmdb_triplestore.c


+ 108 - 10
lakesuperior/store/ldp_rs/lmdb_triplestore.pyx

@@ -1,9 +1,5 @@
-import hashlib
 import logging
 import logging
-import os
-import pickle
 
 
-from collections.abc import Sequence
 from functools import wraps
 from functools import wraps
 
 
 from rdflib import Graph
 from rdflib import Graph
@@ -15,9 +11,9 @@ from lakesuperior.store.base_lmdb_store import (
 from lakesuperior.store.base_lmdb_store cimport _check
 from lakesuperior.store.base_lmdb_store cimport _check
 
 
 from cpython.mem cimport PyMem_Malloc, PyMem_Realloc, PyMem_Free
 from cpython.mem cimport PyMem_Malloc, PyMem_Realloc, PyMem_Free
-from cython.parallel import parallel, prange
+from cython.parallel import prange
 from libc.stdlib cimport free
 from libc.stdlib cimport free
-from libc.string cimport memcmp, memcpy, strchr
+from libc.string cimport memcpy
 
 
 from lakesuperior.cy_include cimport cylmdb as lmdb
 from lakesuperior.cy_include cimport cylmdb as lmdb
 from lakesuperior.store.base_lmdb_store cimport (
 from lakesuperior.store.base_lmdb_store cimport (
@@ -176,6 +172,12 @@ cdef class ResultSet:
 
 
 
 
     def __dealloc__(self):
     def __dealloc__(self):
+        """
+        Free the memory.
+
+        This is called when the Python instance is garbage collected, which
+        makes it handy to safely pass a ResultSet instance across functions.
+        """
         #logger.debug(
         #logger.debug(
         #    'Releasing {0} ({1}x{2}) bytes of ResultSet @ {3:x}...'.format(
         #    'Releasing {0} ({1}x{2}) bytes of ResultSet @ {3:x}...'.format(
         #        self.size, self.ct, self.itemsize,
         #        self.size, self.ct, self.itemsize,
@@ -185,6 +187,17 @@ cdef class ResultSet:
 
 
 
 
     cdef void resize(self, size_t ct) except *:
     cdef void resize(self, size_t ct) except *:
+        """
+        Resize the result set. Uses ``PyMem_Realloc``.
+
+        Note that resizing to a smaller size does not copy or reallocate the
+        data, resizing to a larger size does.
+
+        Also, note that only the number of items can be changed, the item size
+        cannot.
+
+        :param size_t ct: Number of items in the result set.
+        """
         cdef unsigned char *tmp
         cdef unsigned char *tmp
         self.ct = ct
         self.ct = ct
         self.size = self.itemsize * self.ct
         self.size = self.itemsize * self.ct
@@ -206,6 +219,8 @@ cdef class ResultSet:
     def to_tuple(self):
     def to_tuple(self):
         """
         """
         Return the data set as a Python tuple.
         Return the data set as a Python tuple.
+
+        :rtype: tuple
         """
         """
         return tuple(
         return tuple(
                 self.data[i: i + self.itemsize]
                 self.data[i: i + self.itemsize]
@@ -213,20 +228,32 @@ cdef class ResultSet:
 
 
 
 
     def get_item_obj(self, i):
     def get_item_obj(self, i):
+        """
+        Get an item at a given index position.
+
+        :rtype: bytes
+        """
         return self.get_item(i)[: self.itemsize]
         return self.get_item(i)[: self.itemsize]
 
 
 
 
     cdef unsigned char *get_item(self, i):
     cdef unsigned char *get_item(self, i):
         """
         """
-        Get an item at a given index position.
+        Get an item at a given index position. Cython-level method.
 
 
         The item size is known by the ``itemsize`` property of the object.
         The item size is known by the ``itemsize`` property of the object.
+
+        :rtype: unsigned char*
         """
         """
         return self.data + self.itemsize * i
         return self.data + self.itemsize * i
 
 
 
 
 
 
 def use_data(fn):
 def use_data(fn):
+    """
+    Decorator to indicate that a set operation between two SimpleGraph
+    instances should use the ``data`` property of the second term. The second
+    term can also be a simple set.
+    """
     @wraps(fn)
     @wraps(fn)
     def _wrapper(self, other):
     def _wrapper(self, other):
         if isinstance(other, SimpleGraph):
         if isinstance(other, SimpleGraph):
@@ -240,6 +267,8 @@ 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.
+
+    An instance of this class can be converted to a ``rdflib.Graph`` instance.
     """
     """
 
 
     cdef:
     cdef:
@@ -275,6 +304,13 @@ cdef class SimpleGraph:
 
 
     cdef void _data_from_lookup(
     cdef void _data_from_lookup(
             self, tuple lookup, LmdbTriplestore store) except *:
             self, tuple lookup, LmdbTriplestore store) except *:
+        """
+        Look up triples in the triplestore and load them into ``data``.
+
+        :param tuple lookup: 3-tuple of RDFlib terms or ``None``.
+        :param LmdbTriplestore store: Reference to a LMDB triplestore. This
+            is normally set to ``lakesuperior.env.app_globals.rdf_store``.
+        """
         cdef:
         cdef:
             size_t i
             size_t i
             unsigned char spok[TRP_KLEN]
             unsigned char spok[TRP_KLEN]
@@ -289,71 +325,107 @@ cdef class SimpleGraph:
     # Basic set operations.
     # Basic set operations.
 
 
     def add(self, dataset):
     def add(self, dataset):
+        """ Set union. """
         self.data.add(dataset)
         self.data.add(dataset)
 
 
     def remove(self, item):
     def remove(self, item):
+        """
+        Remove one item from the graph.
+
+        :param tuple item: A 3-tuple of RDFlib terms. Only exact terms, i.e.
+            wildcards are not accepted.
+        """
         self.data.remove(item)
         self.data.remove(item)
 
 
     def __len__(self):
     def __len__(self):
+        """ Number of triples in the graph. """
         return len(self.data)
         return len(self.data)
 
 
     @use_data
     @use_data
     def __eq__(self, other):
     def __eq__(self, other):
+        """ Equality operator between ``SimpleGraph`` instances. """
         return self.data == other
         return self.data == other
 
 
     def __repr__(self):
     def __repr__(self):
+        """
+        String representation of the graph.
+
+        It provides the number of triples in the graph and memory address of
+            the instance.
+        """
         return (f'<{self.__class__.__name__} @{hex(id(self))} '
         return (f'<{self.__class__.__name__} @{hex(id(self))} '
             f'length={len(self.data)}>')
             f'length={len(self.data)}>')
 
 
     def __str__(self):
     def __str__(self):
+        """ String dump of the graph triples. """
         return str(self.data)
         return str(self.data)
 
 
     @use_data
     @use_data
     def __sub__(self, other):
     def __sub__(self, other):
+        """ Set subtraction. """
         return self.data - other
         return self.data - other
 
 
     @use_data
     @use_data
     def __isub__(self, other):
     def __isub__(self, other):
+        """ In-place set subtraction. """
         self.data -= other
         self.data -= other
         return self
         return self
 
 
     @use_data
     @use_data
     def __and__(self, other):
     def __and__(self, other):
+        """ Set intersection. """
         return self.data & other
         return self.data & other
 
 
     @use_data
     @use_data
     def __iand__(self, other):
     def __iand__(self, other):
+        """ In-place set intersection. """
         self.data &= other
         self.data &= other
         return self
         return self
 
 
     @use_data
     @use_data
     def __or__(self, other):
     def __or__(self, other):
+        """ Set union. """
         return self.data | other
         return self.data | other
 
 
     @use_data
     @use_data
     def __ior__(self, other):
     def __ior__(self, other):
+        """ In-place set union. """
         self.data |= other
         self.data |= other
         return self
         return self
 
 
     @use_data
     @use_data
     def __xor__(self, other):
     def __xor__(self, other):
+        """ Set exclusive intersection (XOR). """
         return self.data ^ other
         return self.data ^ other
 
 
     @use_data
     @use_data
     def __ixor__(self, other):
     def __ixor__(self, other):
+        """ In-place set exclusive intersection (XOR). """
         self.data ^= other
         self.data ^= other
         return self
         return self
 
 
     def __contains__(self, item):
     def __contains__(self, item):
+        """
+        Whether the graph contains a triple.
+
+        :rtype: boolean
+        """
         return item in self.data
         return item in self.data
 
 
     def __iter__(self):
     def __iter__(self):
+        """ Graph iterator. It iterates over the set triples. """
         return self.data.__iter__()
         return self.data.__iter__()
 
 
 
 
     # Slicing.
     # Slicing.
 
 
     def __getitem__(self, item):
     def __getitem__(self, item):
+        """
+        Slicing function.
+
+        It behaves similarly to `RDFLib graph slicing
+        <https://rdflib.readthedocs.io/en/stable/utilities.html#slicing-graphs>`__
+        """
         if isinstance(item, slice):
         if isinstance(item, slice):
             s, p, o = item.start, item.stop, item.step
             s, p, o = item.start, item.stop, item.step
             return self._slice(s, p, o)
             return self._slice(s, p, o)
@@ -388,6 +460,7 @@ cdef class SimpleGraph:
     cpdef object as_rdflib(self):
     cpdef object as_rdflib(self):
         """
         """
         Return the data set as an RDFLib Graph.
         Return the data set as an RDFLib Graph.
+
         :rtype: rdflib.Graph
         :rtype: rdflib.Graph
         """
         """
         gr = Graph()
         gr = Graph()
@@ -464,6 +537,9 @@ cdef class Imr(SimpleGraph):
     This is an extension of :py:class:`~SimpleGraph` that adds a subject URI to
     This is an extension of :py:class:`~SimpleGraph` that adds a subject URI to
     the data set and some convenience methods.
     the data set and some convenience methods.
 
 
+    An instance of this class can be converted to a ``rdflib.Resource``
+    instance.
+
     Some set operations that produce a new object (``-``, ``|``, ``&``, ``^``)
     Some set operations that produce a new object (``-``, ``|``, ``&``, ``^``)
     will create a new ``Imr`` instance with the same subject URI.
     will create a new ``Imr`` instance with the same subject URI.
     """
     """
@@ -512,27 +588,49 @@ cdef class Imr(SimpleGraph):
 
 
 
 
     def __repr__(self):
     def __repr__(self):
+        """
+        String representation of an Imr.
+
+        This includes the subject URI, number of triples contained and the
+        memory address of the instance.
+        """
         return (f'<{self.__class__.__name__} @{hex(id(self))} uri={self.uri}, '
         return (f'<{self.__class__.__name__} @{hex(id(self))} uri={self.uri}, '
             f'length={len(self.data)}>')
             f'length={len(self.data)}>')
 
 
     @use_data
     @use_data
     def __sub__(self, other):
     def __sub__(self, other):
+        """
+        Set difference. This creates a new Imr with the same subject URI.
+        """
         return self.__class__(uri=self.uri, data=self.data - other)
         return self.__class__(uri=self.uri, data=self.data - other)
 
 
     @use_data
     @use_data
     def __and__(self, other):
     def __and__(self, other):
+        """
+        Set intersection. This creates a new Imr with the same subject URI.
+        """
         return self.__class__(uri=self.uri, data=self.data & other)
         return self.__class__(uri=self.uri, data=self.data & other)
 
 
     @use_data
     @use_data
     def __or__(self, other):
     def __or__(self, other):
+        """
+        Set union. This creates a new Imr with the same subject URI.
+        """
         return self.__class__(uri=self.uri, data=self.data | other)
         return self.__class__(uri=self.uri, data=self.data | other)
 
 
     @use_data
     @use_data
     def __xor__(self, other):
     def __xor__(self, other):
+        """
+        Set exclusive OR (XOR). This creates a new Imr with the same subject
+        URI.
+        """
         return self.__class__(uri=self.uri, data=self.data ^ other)
         return self.__class__(uri=self.uri, data=self.data ^ other)
 
 
 
 
     def __getitem__(self, item):
     def __getitem__(self, item):
+        """
+        Supports slicing notation.
+        """
         if isinstance(item, slice):
         if isinstance(item, slice):
             s, p, o = item.start, item.stop, item.step
             s, p, o = item.start, item.stop, item.step
             return self._slice(s, p, o)
             return self._slice(s, p, o)
@@ -583,7 +681,6 @@ cdef class Imr(SimpleGraph):
 
 
 
 
 cdef class LmdbTriplestore(BaseLmdbStore):
 cdef class LmdbTriplestore(BaseLmdbStore):
-
     """
     """
     Low-level storage layer.
     Low-level storage layer.
 
 
@@ -650,8 +747,9 @@ cdef class LmdbTriplestore(BaseLmdbStore):
 
 
     # DB management methods.
     # DB management methods.
 
 
-    cpdef dict stats(self, new_txn=True):
-        """Gather statistics about the database."""
+    cpdef dict stats(self):
+        """
+        Gather statistics about the database."""
         st = self._stats()
         st = self._stats()
         st['num_triples'] = st['db_stats']['spo:c']['ms_entries']
         st['num_triples'] = st['db_stats']['spo:c']['ms_entries']
 
 

Some files were not shown because too many files changed in this diff