Added setting to specify pqf prefix, to support database subset selection, etc.
authorSebastian Hammer <quinn@indexdata.com>
Mon, 1 Dec 2008 05:10:31 +0000 (05:10 +0000)
committerSebastian Hammer <quinn@indexdata.com>
Mon, 1 Dec 2008 05:10:31 +0000 (05:10 +0000)
doc/pazpar2_conf.xml
src/client.c
src/settings.c
src/settings.h

index b75981d..f81464a 100644 (file)
        </para>
       </listitem>
     </varlistentry>
+
+    <varlistentry>
+      <term>pz:pqf_prefix</term>
+      <listitem>
+        <para>
+         Allows you to specify an arbitrary PQF query language substring. The provided
+         string is prefixed the user's query after it has been normalized to PQF
+         internally in pazpar2. This allows you to attach complex 'filters' to
+         queries for a gien target, sometimes necessary to select sub-catalogs
+         in union catalog systems, etc.
+       </para>
+      </listitem>
+    </varlistentry>
    </variablelist>
   </refsect2>
 
index 0a8860d..ad63e3c 100644 (file)
@@ -591,6 +591,7 @@ int client_parse_query(struct client *cl, const char *query)
     int cerror, cpos;
     CCL_bibset ccl_map = prepare_cclmap(cl);
     const char *sru = session_setting_oneval(sdb, PZ_SRU);
+    const char *pqf_prefix = session_setting_oneval(sdb, PZ_PQF_PREFIX);
 
     if (!ccl_map)
         return -1;
@@ -605,6 +606,11 @@ int client_parse_query(struct client *cl, const char *query)
         return -1;
     }
     wrbuf_rewind(se->wrbuf);
+    if (*pqf_prefix)
+    {
+        wrbuf_puts(se->wrbuf, pqf_prefix);
+        wrbuf_puts(se->wrbuf, " ");
+    }
     ccl_pquery(se->wrbuf, cn);
     xfree(cl->pquery);
     cl->pquery = xstrdup(wrbuf_cstr(se->wrbuf));
index 8ab368a..284ed84 100644 (file)
@@ -65,6 +65,7 @@ static char *hard_settings[] = {
     "pz:apdulog",
     "pz:sru",
     "pz:sru_version",
+    "pz:pqf_prefix",
     0
 };
 
index ca0af1f..7678ab5 100644 (file)
@@ -37,6 +37,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 #define PZ_APDULOG       14
 #define PZ_SRU           15
 #define PZ_SRU_VERSION   16
+#define PZ_PQF_PREFIX    17
 
 struct setting
 {