Towards LOC-7: Using the include system for all small bases
[mp-sparql-moved-to-github.git] / bibframe / triplestore.xml
index f5fd644..5904c59 100644 (file)
+<?xml version="1.0"?>
+<!DOCTYPE html [
+<!-- Entity definitions for commonly used idioms -->
+<!-- TODO - Now it accepts these, but will not expand them in place! -->
+<!-- Seems we can not use many special characters in these: <> % etc -->
+  <!ENTITY workfull "FOOBAR">
+  <!ENTITY workfullX "
+          OPTIONAL {
+              ?wobj ?wrel1 ?wobj1
+              MINUS { ?wobj a bf:Work }
+              MINUS { ?wobj a bf:Instance }
+          }
+          OPTIONAL {
+              ?wobj1 ?wrel2 ?wobj2
+              MINUS { ?wobj1 a bf:Work }
+              MINUS { ?wobj1 a bf:Instance }
+          }
+          OPTIONAL {
+              ?wobj2 ?wrel3 ?wobj3
+              MINUS { ?wobj2 a bf:Work }
+              MINUS { ?wobj2 a bf:Instance }
+          }
+  ">
+  <!ENTITY instfull "
+          OPTIONAL {
+            ?inst ?irel1 ?iobj1
+          }
+          OPTIONAL {
+            ?iobj1 ?irel2 ?iobj2
+          }
+          OPTIONAL {
+            ?iobj2 ?irel3 ?iobj3
+          }
+  ">
+]>
+
 <filters  xmlns="http://indexdata.com/metaproxy">
   <filter type="sparql">
-    <defaults uri="http://bibframe.indexdata.com:21/sparql/"/>
+      <!-- Which sparql server to use, our demo, or your local installation -->
+    <defaults uri="http://bibframe.indexdata.com/sparql/"/>
+    <!--defaults uri="http://localhost:8890/sparql/"/-->
+
+    <!-- Any search in work returns just a list of records.
+         Present will make another request for each record to get the level
+         of details we want, depending on the schema.  -->
     <db path="work" schema="sparql-results">
       <prefix>rdf: http://www.w3.org/1999/02/22-rdf-syntax-ns</prefix>
       <prefix>bf: http://bibframe.org/vocab/</prefix>
-      <form>SELECT
-              ?work
-              MAX(?wtitle) AS ?title
-              MAX(?creatorlabel) AS ?creator
-              MAX(?subjectlabel) AS ?subject
+      <form>SELECT DISTINCT ?work
       </form>
       <criteria>?work a bf:Work</criteria>
-
-      <criteria> OPTIONAL {
-          ?work bf:workTitle ?wt .
-          ?wt bf:titleValue ?wtitle }
-      </criteria>
-      <criteria> OPTIONAL {
-          ?work bf:creator ?creator .
-          ?creator bf:label ?creatorlabel }
-      </criteria>
-      <criteria>OPTIONAL {
-          ?work bf:subject ?subject .
-          ?subject bf:label ?subjectlabel }
-      </criteria>
-      <index type="4">?wt bf:titleValue %v FILTER(contains(%v, %s))</index>
-      <index type="1003">?creator bf:label %v FILTER(contains(%v, %s))</index>
-      <index type="21">?subject bf:label %v FILTER(contains(%v, %s))</index>
-      <index type="1016"> {
-            ?work ?op1 ?child .
-            ?child ?op2 ?val FILTER(contains(STR(?val), %s))
-          }
+      <!-- TODO: Many more indexes like the ones below-->
+      <index type="bf.title">?work bf:workTitle ?wt .
+          ?wt bf:titleValue %v FILTER(contains(%v, %s))</index>
+      <index type="bf.creator">?work bf:creator ?c .
+          ?c bf:label %v FILTER(contains(%v, %s))</index>
+      <index type="bf.subject">?work bf:subject ?subject .
+          ?subject bf:label %v FILTER(contains(%v, %s))
       </index>
-      <modifier>GROUP BY $work</modifier>
-    </db>
-    <db path="works" schema="rdf">
-      <prefix>rdf: http://www.w3.org/1999/02/22-rdf-syntax-ns</prefix>
-      <prefix>bf: http://bibframe.org/vocab/</prefix>
-      <form>CONSTRUCT {  ?work bf:title ?title . ?work bf:author ?creator . ?work bf:instanceTitle ?it }</form>
-      <criteria>?work a bf:Work</criteria>
+      <present type="BF-L">
+        CONSTRUCT { ?work ?rel ?subj }
+         WHERE {
+         ?work a bf:Work .
+         ?work ?rel ?subj .
+         ?work ?rel ?obj FILTER( str(?work) = %s )
+        }
+      </present>
+      <present type="BF-F">
+        CONSTRUCT { ?work ?rel ?obj .
+                    ?obj ?rel1 ?obj1 .
+                    ?obj1 ?rel2 ?obj2 .
+                    ?obj2 ?rel3 ?obj3 }
+         WHERE {
+         ?work a bf:Work .
+         ?work ?rel ?obj .
+        OPTIONAL { 
+          ?obj ?rel1 ?obj1  
+            MINUS { ?obj a bf:Work } 
+          }
+        OPTIONAL {
+          ?obj1 ?rel2 ?obj2 
+            MINUS { ?obj1 a bf:Work } 
+          } 
+        OPTIONAL { 
+          ?obj2 ?rel3 ?obj3 
+            MINUS { ?obj2 a bf:Work } 
+          }
+         ?work ?rel ?obj FILTER( str(?work) = %s )
+        }
+      </present>
+      <present type="BF-FI">  <!-- full, with instances. Experimental! -->
+        CONSTRUCT { %u ?rel ?wobj1 .
+                    ?wobj1 ?wrel1 ?wobj2 .
+                    ?wobj2 ?wrel2 ?wobj3 .
+                    ?inst ?irel1 ?iobj1 .
+                    ?iobj1 ?irel2 ?iobj2 .
+                    ?iobj2 ?irel3 ?iobj3 }
+         WHERE {
+          %u a bf:Work .
+          %u ?rel ?wobj1 .
+          OPTIONAL { <!-- note, this is not in the final construct
+          the linking triplet will get included like any others -->
+            ?inst bf:instanceOf %u
+          } 
+          &workfull; <!-- This does not seem to get expanded!! -->
+          OPTIONAL {
+              ?wobj ?wrel1 ?wobj1
+              MINUS { ?wobj a bf:Work }
+              MINUS { ?wobj a bf:Instance }
+          }
+          OPTIONAL {
+              ?wobj1 ?wrel2 ?wobj2
+              MINUS { ?wobj1 a bf:Work }
+              MINUS { ?wobj1 a bf:Instance }
+          }
+          OPTIONAL {
+              ?wobj2 ?wrel3 ?wobj3
+              MINUS { ?wobj2 a bf:Work }
+              MINUS { ?wobj2 a bf:Instance }
+          }
+          <!--&instfull; -->
+          OPTIONAL {
+            ?inst ?irel1 ?iobj1
+          }
+          OPTIONAL {
+            ?iobj1 ?irel2 ?iobj2
+          }
+          OPTIONAL {
+            ?iobj2 ?irel3 ?iobj3
+          }
 
-      <criteria>?work bf:workTitle ?wt</criteria>
-      <criteria>?wt bf:titleValue ?wtitle</criteria>
-      <index type="4">?wt bf:titleValue %v FILTER(contains(%v, %s))</index>
-      <criteria>?work bf:creator ?creator</criteria>
-      <criteria>?creator bf:label ?creatorlabel</criteria>
-      <index type="1003">?creator bf:label %v FILTER(contains(%v, %s))</index>
-      <criteria>?work bf:subject ?subject</criteria>
-      <criteria>?subject bf:label ?subjectlabel</criteria>
-      <index type="21">?subject bf:label %v FILTER(contains(%v, %s))</index>
+        }
+      </present>
     </db>
+    <!-- Instance searches, need to be refined later. TODO -->
     <db path="instance" schema="sparql-results">
       <prefix>rdf: http://www.w3.org/1999/02/22-rdf-syntax-ns</prefix>
       <prefix>bf: http://bibframe.org/vocab/</prefix>
-      <form>SELECT DISTINCT ?instance ?title ?format</form>
+      <form>SELECT ?instance ?title ?format</form>
       <criteria>?instance a bf:Instance</criteria>
-
       <criteria>?instance bf:title ?title</criteria>
       <index type="4">?instance bf:title %v FILTER(contains(%v, %s))</index>
       <criteria>?instance bf:format ?format</criteria>
       <index type="1013">?instance bf:format %s</index>
+    </db>
+
+    <!-- Small databases -->
+   
+    <!-- "small" contains all the things common to all small databases -->
+    <!-- It is only to be used as an include, it is not searchable, since -->
+    <!-- it has no schema atribute -->
+    <!-- It is divided into "smallindex", "smallbody", and a "small" that includes
+    both, so that title searches can include the body, but have different indexes -->
+    
+    <db path="smallindex">
+      <index type="any">?thing bf:label %v FILTER(contains(%v, %s))</index>
+      <index type="1016">?thing bf:label %v FILTER(contains(%v, %s))</index>
+    </db>
 
+    <db path="smallbody">
+      <prefix>rdf: http://www.w3.org/1999/02/22-rdf-syntax-ns</prefix>
+      <prefix>bf: http://bibframe.org/vocab/</prefix>
+      <form>SELECT DISTINCT ?thing </form>
+      <criteria>?thing ?rel ?obj</criteria>
+      <present type="BF-L">
+        CONSTRUCT { %u ?rel ?obj }
+         WHERE {
+           %u ?rel ?obj .
+         }
+      </present>
+      <!-- Experimental, to get just the URIs out, in proper rdf. Probably not useful 
+      <uri type="BF-U">
+        CONSTRUCT { %u bf:uri %u }
+         WHERE {
+           %u bf:label ?lbl .
+         }
+      </uri>
+      -->
+      <present type="BF-F">
+          <!-- I don't think we need more than one level for these simple 
+          databases -->
+        CONSTRUCT { %u ?rel ?obj . 
+                    ?obj ?rel1 ?obj1 .
+                  }
+         WHERE {
+           %u ?rel ?obj .
+           OPTIONAL { ?obj ?rel1 ?obj1 }
+         }
+      </present>
+    </db>
+    <db path="small" include="smallindex smallbody"/>
+    
+    <db path="place" schema="sparql-results" include="small" >
+      <criteria>?thing a bf:Place</criteria>
+      <index type="bf.place">?thing bf:label %v FILTER(contains(%v, %s))</index>
+    </db>
+    <db path="person" schema="sparql-results" include="small" >
+      <criteria>?thing a bf:Person</criteria>
+      <index type="bf.person">?thing bf:label %v FILTER(contains(%v, %s))</index>
+    </db>
+    <db path="meeting" schema="sparql-results" include="small" >
+      <criteria>?thing a bf:Meeting</criteria>
+      <index type="bf.meeting">?thing bf:label %v FILTER(contains(%v, %s))</index>
+    </db>
+    <db path="agent" schema="sparql-results" include="small" >
+      <criteria>?thing a bf:Agent</criteria>
+      <index type="bf.agent">?thing bf:label %v FILTER(contains(%v, %s))</index>
+    </db>
+    <db path="event" schema="sparql-results" include="small" >
+      <criteria>?thing a bf:Event</criteria>
+      <index type="bf.event">?thing bf:label %v FILTER(contains(%v, %s))</index>
+    </db>
+    <db path="organization" schema="sparql-results" include="small" >
+      <criteria>?thing a bf:Organization</criteria>
+      <index type="bf.organization">?thing bf:label %v FILTER(contains(%v, %s))</index>
+    </db>
+    <db path="topic" schema="sparql-results" include="small" >
+      <criteria>?thing a bf:Topic</criteria>
+      <index type="bf.topic">?thing bf:label %v FILTER(contains(%v, %s))</index>
+    </db>
+
+    <!-- Title search, probably not needed. -->
+    <db path="title" schema="sparql-results" include="smallbody" >
+      <criteria>?thing a bf:Title</criteria>
+      <index type="any">
+           { ?thing bf:titleValue %v FILTER(contains(%v, %s)) } UNION
+           { ?thing bf:subtitle %v FILTER(contains(%v, %s)) } UNION
+           { ?thing bf:partTitle %v FILTER(contains(%v, %s)) } 
+      </index>
+      <index type="1016">
+           { ?thing bf:titleValue %v FILTER(contains(%v, %s)) } UNION
+           { ?thing bf:subtitle %v FILTER(contains(%v, %s)) } UNION
+           { ?thing bf:partTitle %v FILTER(contains(%v, %s)) } 
+      </index>
+      <index type="bf.title">?thing bf:titleValue %v FILTER(contains(%v, %s))</index>
+      <index type="bf.subtitle">?thing bf:subtitle %v FILTER(contains(%v, %s))</index>
+      <index type="bf.parttitle">?thing bf:partTitle %v FILTER(contains(%v, %s))</index>
+    </db>
+
+    <!-- A hack to be able to look at any triplet in the base -->
+    <!-- TODO - Switch to the new system, probably using "small" -->
+    <db path="node" schema="sparql-results">
+      <prefix>rdf: http://www.w3.org/1999/02/22-rdf-syntax-ns</prefix>
+      <prefix>bf: http://bibframe.org/vocab/</prefix>
+      <form>SELECT ?node ?rel ?obj</form>
+      <index type="any">?node ?rel ?obj FILTER( str(?node) = %s )</index>
+    </db>
+    <!-- A way to see which triplets refers to a given uri. -->
+    <!-- TODO - Switch to the new system, probably using "small" -->
+    <db path="ref" schema="sparql-results">
+      <prefix>rdf: http://www.w3.org/1999/02/22-rdf-syntax-ns</prefix>
+      <prefix>bf: http://bibframe.org/vocab/</prefix>
+      <form>SELECT ?node ?rel ?obj</form>
+      <index type="any">?node ?rel ?obj FILTER( str(?obj) = %s )</index>
     </db>
   </filter>
   <filter type="log">