Removed command.c (telnet-style interface)
[pazpar2-moved-to-github.git] / src / pazpar2.h
index 8de4b91..4ee4c0f 100644 (file)
@@ -5,22 +5,40 @@ struct record;
 
 #include <netdb.h>
 
+#include <libxslt/xsltutils.h>
+#include <libxslt/transform.h>
+
 #include <yaz/comstack.h>
 #include <yaz/pquery.h>
 #include <yaz/ccl.h>
 #include <yaz/yaz-ccl.h>
+
 #include "termlists.h"
 #include "relevance.h"
 #include "eventl.h"
+#include "config.h"
 
-#define MAX_DATABASES 512
+struct client;
+
+struct record_metadata
+{
+    union
+    {
+        char *text;
+        struct {
+            int first;
+            int last;
+        } year_range;
+        int year;
+    } interpretation;
+};
 
 struct record {
     struct client *client;
+    char *title;
     int target_offset;
-    char *buf;
     char *merge_key;
-    char *title;
+    struct record_metadata *md;
     int relevance;
     int *term_frequency_vec;
     struct record *next_cluster;
@@ -40,12 +58,13 @@ struct host {
 struct database {
     struct host *host;
     char *url;
-    char databases[MAX_DATABASES][128];
+    char **databases;
     int errors;
+    struct conf_queryprofile *qprofile;
+    struct conf_retrievalprofile *rprofile;
     struct database *next;
 };
 
-struct client;
 
 // Represents a physical, reusable  connection to a remote Z39.50 host
 struct connection {
@@ -92,8 +111,16 @@ struct client {
 #define SESSION_WATCH_RECORDS   0
 #define SESSION_WATCH_MAX       0
 
+#define SESSION_MAX_TERMLISTS 10
+
 typedef void (*session_watchfun)(void *data);
 
+struct named_termlist
+{
+    char *name;
+    struct termlist *termlist;
+};
+
 // End-user session
 struct session {
     struct client *clients;
@@ -101,13 +128,15 @@ struct session {
     char query[1024];
     NMEM nmem;          // Nmem for each operation (i.e. search)
     WRBUF wrbuf;        // Wrbuf for scratch(i.e. search)
-    struct termlist *termlist;
+    int num_termlists;
+    struct named_termlist termlists[SESSION_MAX_TERMLISTS];
     struct relevance *relevance;
     struct reclist *reclist;
     struct {
         void *data;
         session_watchfun fun;
     } watchlist[SESSION_WATCH_MAX + 1];
+    int expected_maxrecs;
     int total_hits;
     int total_records;
 };
@@ -136,6 +165,7 @@ struct hitsbytarget {
 };
 
 struct parameters {
+    int dump_records;
     int timeout;               /* operations timeout, in seconds */
     char implementationId[128];
     char implementationName[128];
@@ -157,9 +187,11 @@ void destroy_session(struct session *s);
 int load_targets(struct session *s, const char *fn);
 void statistics(struct session *s, struct statistics *stat);
 char *search(struct session *s, char *query);
-struct record **show(struct session *s, int start, int *num, int *total, int *sumhits);
-struct termlist_score **termlist(struct session *s, int *num);
+struct record **show(struct session *s, int start, int *num, int *total,
+                     int *sumhits, NMEM nmem_show);
+struct termlist_score **termlist(struct session *s, const char *name, int *num);
 void session_set_watch(struct session *s, int what, session_watchfun fun, void *data);
+int session_active_clients(struct session *s);
 
 #endif