浏览代码

Merge branch 'update_doc' into development

Stefano Cossu 6 年之前
父节点
当前提交
3a6456a15e
共有 2 个文件被更改,包括 30 次插入12 次删除
  1. 23 6
      lakesuperior/model/rdf/graph.pyx
  2. 7 6
      lakesuperior/store/ldp_rs/lmdb_triplestore.pyx

+ 23 - 6
lakesuperior/model/rdf/graph.pyx

@@ -23,7 +23,7 @@ logger = logging.getLogger(__name__)
 
 
 cdef class Graph:
 cdef class Graph:
     """
     """
-    Fast and simple implementation of a graph.
+    Fast implementation of a graph.
 
 
     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.
@@ -86,9 +86,9 @@ cdef class Graph:
         :param str uri: If specified, the graph becomes a named graph and can
         :param str uri: If specified, the graph becomes a named graph and can
             utilize the :py:meth:`value()` method and special slicing notation.
             utilize the :py:meth:`value()` method and special slicing notation.
 
 
-        :param set data: If specified, ``capacity`` is ignored and an initial key
-            set is created from a set of 3-tuples of :py:class:``rdflib.Term``
-            instances.
+        :param set data: If specified, ``capacity`` is ignored and an initial
+            key set is created from a set of 3-tuples of
+            :py:class:``rdflib.Term`` instances.
         """
         """
         self.uri = rdflib.URIRef(uri) if uri else None
         self.uri = rdflib.URIRef(uri) if uri else None
 
 
@@ -132,6 +132,8 @@ cdef class Graph:
         def __get__(self):
         def __get__(self):
             """
             """
             Total capacity of the underlying Keyset, in number of triples.
             Total capacity of the underlying Keyset, in number of triples.
+
+            rtype: int
             """
             """
             return self.keys.capacity
             return self.keys.capacity
 
 
@@ -261,6 +263,8 @@ cdef class Graph:
         """
         """
         Whether the graph contains a triple.
         Whether the graph contains a triple.
 
 
+        :param tuple(rdflib.Term) trp: A tuple of 3 RDFlib terms to look for.
+
         :rtype: boolean
         :rtype: boolean
         """
         """
         cdef TripleKey spok
         cdef TripleKey spok
@@ -285,8 +289,16 @@ cdef class Graph:
         """
         """
         Slicing function.
         Slicing function.
 
 
-        It behaves similarly to `RDFLib graph slicing
+        This behaves similarly to `RDFLib graph slicing
         <https://rdflib.readthedocs.io/en/stable/utilities.html#slicing-graphs>`__
         <https://rdflib.readthedocs.io/en/stable/utilities.html#slicing-graphs>`__
+
+        One difference, however, is that if the graph has the ``uri``
+        property set and the slice is only given one element, the behavior
+        is that of theRDFlib ``Resource`` class, which returns the objects of
+        triples that match the graph URI as the subject, and the given term
+        as the predicate.
+
+        :rtype: set
         """
         """
         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
@@ -307,12 +319,13 @@ cdef class Graph:
 
 
     def value(self, p, strict=False):
     def value(self, p, strict=False):
         """
         """
-        Get an individual value.
+        Get an individual value for a given predicate.
 
 
         :param rdflib.termNode p: Predicate to search for.
         :param rdflib.termNode p: Predicate to search for.
         :param bool strict: If set to ``True`` the method raises an error if
         :param bool strict: If set to ``True`` the method raises an error if
             more than one value is found. If ``False`` (the default) only
             more than one value is found. If ``False`` (the default) only
             the first found result is returned.
             the first found result is returned.
+
         :rtype: rdflib.term.Node
         :rtype: rdflib.term.Node
         """
         """
         if not self.uri:
         if not self.uri:
@@ -609,5 +622,9 @@ cdef inline void add_trp_callback(
 ):
 ):
     """
     """
     Add a triple to a graph as a result of a lookup callback.
     Add a triple to a graph as a result of a lookup callback.
+
+    :param Graph gr: Graph to add to.
+    :param const TripleKey* spok_p: TripleKey pointer to add.
+    :param void* ctx: Not used.
     """
     """
     gr.keys.add(spok_p)
     gr.keys.add(spok_p)

+ 7 - 6
lakesuperior/store/ldp_rs/lmdb_triplestore.pyx

@@ -111,14 +111,15 @@ logger = logging.getLogger(__name__)
 
 
 cdef class LmdbTriplestore(BaseLmdbStore):
 cdef class LmdbTriplestore(BaseLmdbStore):
     """
     """
-    Low-level storage layer.
+    Low-level triplestore layer.
 
 
-    This class extends the RDFLib-compatible :py:class:`BaseLmdbStore` and maps
-    triples and contexts to key-value records in LMDB.
+    This class extends the general-purpose :py:class:`BaseLmdbStore` and maps
+    triples and contexts to key-value records in LMDB. It can be used in the
+    application context (``env.app_globals.rdf_store``), or an independent
+    instance can be spun up in an arbitrary disk location.
 
 
-    This class uses the original LMDB C API rather than the Python bindings,
-    because several data manipulations happen after retrieval from the store,
-    which are more efficiently performed at the C level.
+    This class provides the base for the RDFlib-compatible backend in the
+    :py:class:`lakesuperior.store.ldp_rs.lmdb_store.LmdbStore`.
     """
     """
 
 
     dbi_labels = [
     dbi_labels = [