ソースを参照

Rename simple_layout to default_layout; use main graph in default_layout.

Stefano Cossu 7 年 前
コミット
296c0820dd

+ 6 - 6
data/bootstrap/simple_layout.nq → data/bootstrap/default_layout.nq

@@ -3,9 +3,9 @@
 # This needs to be in N-Quads format because of
 # https://github.com/RDFLib/rdflib/issues/436
 
-<urn:fcsystem:root> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/ldp#RDFSource> .
-<urn:fcsystem:root> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/ldp#Container> .
-<urn:fcsystem:root> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/ldp#BasicContainer> .
-<urn:fcsystem:root> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://fedora.info/definitions/v4/repository#RepositoryRoot> .
-<urn:fcsystem:root> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://fedora.info/definitions/v4/repository#Resource> .
-<urn:fcsystem:root> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://fedora.info/definitions/v4/repository#Container> .
+<urn:fcsystem:root> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/ldp#RDFSource> <urn:fcgraph:main> .
+<urn:fcsystem:root> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/ldp#Container> <urn:fcgraph:main> .
+<urn:fcsystem:root> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/ldp#BasicContainer> <urn:fcgraph:main> .
+<urn:fcsystem:root> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://fedora.info/definitions/v4/repository#RepositoryRoot> <urn:fcgraph:main> .
+<urn:fcsystem:root> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://fedora.info/definitions/v4/repository#Resource> <urn:fcgraph:main> .
+<urn:fcsystem:root> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://fedora.info/definitions/v4/repository#Container> <urn:fcgraph:main> .

+ 1 - 1
data/bootstrap/simple_layout.trig → data/bootstrap/default_layout.trig

@@ -3,7 +3,7 @@
 @prefix ldp: <http://www.w3.org/ns/ldp#> .
 @prefix fcrepo: <http://fedora.info/definitions/v4/repository#> .
 
-{
+<urn:fcgraph:main> {
   <urn:fcsystem:root>
     a ldp:RDFSource , ldp:Container , ldp:BasicContainer ,
       fcrepo:RepositoryRoot , fcrepo:Resource , fcrepo:Container ;

+ 1 - 1
etc.skeleton/application.yml

@@ -24,7 +24,7 @@ store:
     ldp_rs:
         # Store layout. This corresponds to a sub-class of the
         # `lakesuperior.store_layouts.rdf.base_rdf_layout/BaseRdfLayout`.
-        layout: simple_layout
+        layout: default_layout
         # Whether to check if the object of a client-provided triple is the URI
         # of a repository-managed resource and veify if that exists.
         # If set to false, properties are allowed to point to resources in the

+ 20 - 15
lakesuperior/store_layouts/ldp_rs/simple_layout.py → lakesuperior/store_layouts/ldp_rs/default_layout.py

@@ -17,17 +17,18 @@ from lakesuperior.exceptions import (InvalidResourceError, InvalidTripleError,
 from lakesuperior.store_layouts.ldp_rs.base_rdf_layout import BaseRdfLayout
 
 
-class SimpleLayout(BaseRdfLayout):
+class DefaultLayout(BaseRdfLayout):
     '''
-    This is the simplest layout.
+    This is the default layout.
 
-    It uses a flat triple structure without named graphs aimed at performance.
+    Main triples are stored in a `main` graph; metadata in the `meta` graph;
+    and historic snapshots (versions) in `historic`.
+    '''
 
-    Changes are destructive.
+    HIST_GRAPH_URI = nsc['fcg'].historic
+    MAIN_GRAPH_URI = nsc['fcg'].main
+    META_GRAPH_URI = nsc['fcg'].metadata
 
-    In theory it could be used on top of a triplestore instead of a quad-store
-    for (possible) improved speed and reduced storage.
-    '''
 
     def extract_imr(self, uri, strict=False, incl_inbound=False,
                 incl_children=True, embed_children=False, incl_srv_mgd=True):
@@ -61,9 +62,11 @@ class SimpleLayout(BaseRdfLayout):
             ?s fcrepo:writable true ;
               fcrepo:hasParent ?parent .
         }} WHERE {{
-            ?s ?p ?o .{inb_qry}{incl_chld}{embed_chld}
-            OPTIONAL {{
-              ?parent ldp:contains ?s .
+            GRAPH ?main_graph {{
+              ?s ?p ?o .{inb_qry}{incl_chld}{embed_chld}
+              OPTIONAL {{
+                ?parent ldp:contains ?s .
+              }}
             }}
         }}
         '''.format(inb_cnst=inbound_construct,
@@ -71,7 +74,8 @@ class SimpleLayout(BaseRdfLayout):
                 embed_chld_t=embed_children_trp, embed_chld=embed_children_qry)
 
         try:
-            qres = self._conn.query(q, initBindings={'s' : uri})
+            qres = self._conn.query(q, initBindings={
+                's': uri, 'main_graph': self.MAIN_GRAPH_URI})
         except ResultException:
             # RDFlib bug: https://github.com/RDFLib/rdflib/issues/775
             gr = Graph()
@@ -105,8 +109,9 @@ class SimpleLayout(BaseRdfLayout):
         '''
         self._logger.info('Checking if resource exists: {}'.format(urn))
 
-        return bool(self._conn.query('ASK { ?s ?p ?o . }', initBindings={
-            's' : urn}))
+        return bool(self._conn.query(
+                'ASK { GRAPH ?g { ?s ?p ?o . }}', initBindings={
+                    's': urn, 'g': self.MAIN_GRAPH_URI}))
 
 
     def modify_dataset(self, remove_trp=Graph(), add_trp=Graph(),
@@ -120,9 +125,9 @@ class SimpleLayout(BaseRdfLayout):
                 set(add_trp))))
 
         for t in remove_trp:
-            self.ds.remove(t)
+            self.ds.graph(self.MAIN_GRAPH_URI).remove(t)
         for t in add_trp:
-            self.ds.add(t)
+            self.ds.graph(self.MAIN_GRAPH_URI).add(t)
 
         if current_app.config.get('messaging') and metadata:
             request.changelog.append((set(remove_trp), set(add_trp), metadata))

+ 1 - 1
util/bootstrap.py

@@ -37,7 +37,7 @@ def bootstrap_db(app):
 
     # @TODO Make configurable.
     print('Populating graph store with base dataset.')
-    db.ds.default_context.parse(source='data/bootstrap/simple_layout.nq',
+    db.ds.default_context.parse(source='data/bootstrap/default_layout.nq',
             format='nquads')
 
     return db