This update completes the factoring out of database management into database.c,
[pazpar2-moved-to-github.git] / src / pazpar2.h
1 #ifndef PAZPAR2_H
2 #define PAZPAR2_H
3
4 struct record;
5
6 #include <netdb.h>
7
8 #include <libxslt/xsltutils.h>
9 #include <libxslt/transform.h>
10
11 #include <yaz/comstack.h>
12 #include <yaz/pquery.h>
13 #include <yaz/ccl.h>
14 #include <yaz/yaz-ccl.h>
15
16 #include "termlists.h"
17 #include "relevance.h"
18 #include "reclists.h"
19 #include "eventl.h"
20 #include "config.h"
21
22 struct client;
23
24 union data_types {
25     char *text;
26     struct {
27         int min;
28         int max;
29     } number;
30 };
31
32 struct record_metadata {
33     union data_types data;
34     struct record_metadata *next; // next item of this name
35 };
36
37 struct record {
38     struct client *client;
39     struct record_metadata **metadata; // Array mirrors list of metadata fields in config
40     union data_types **sortkeys;       // Array mirrors list of sortkey fields in config
41     struct record *next;  // Next in cluster of merged records
42 };
43
44 struct record_cluster
45 {
46     struct record_metadata **metadata; // Array mirrors list of metadata fields in config
47     union data_types **sortkeys;
48     char *merge_key;
49     int relevance;
50     int *term_frequency_vec;
51     int recid; // Set-specific ID for this record
52     struct record *records;
53 };
54
55 struct connection;
56
57 // Represents a host (irrespective of databases)
58 struct host {
59     char *hostport;
60     char *ipport;
61     struct connection *connections; // All connections to this
62     struct host *next;
63 };
64
65 // Represents a (virtual) database on a host
66 struct database {
67     struct host *host;
68     char *url;
69     char *name;
70     char **databases;
71     int errors;
72     struct zr_explain *explain;
73     struct conf_queryprofile *qprofile;
74     struct conf_retrievalprofile *rprofile;
75     struct database *next;
76 };
77
78 // Represents a physical, reusable  connection to a remote Z39.50 host
79 struct connection {
80     IOCHAN iochan;
81     COMSTACK link;
82     struct host *host;
83     struct client *client;
84     char *ibuf;
85     int ibufsize;
86     enum {
87         Conn_Connecting,
88         Conn_Open,
89         Conn_Waiting,
90     } state;
91     struct connection *next;
92 };
93
94 // Represents client state for a connection to one search target
95 struct client {
96     struct database *database;
97     struct connection *connection;
98     struct session *session;
99     int hits;
100     int records;
101     int setno;
102     int requestid;                              // ID of current outstanding request
103     int diagnostic;
104     enum client_state
105     {
106         Client_Connecting,
107         Client_Connected,
108         Client_Idle,
109         Client_Initializing,
110         Client_Searching,
111         Client_Presenting,
112         Client_Error,
113         Client_Failed,
114         Client_Disconnected,
115         Client_Stopped
116     } state;
117     struct client *next;
118 };
119
120 #define SESSION_WATCH_RECORDS   0
121 #define SESSION_WATCH_MAX       0
122
123 #define SESSION_MAX_TERMLISTS 10
124
125 typedef void (*session_watchfun)(void *data);
126
127 struct named_termlist
128 {
129     char *name;
130     struct termlist *termlist;
131 };
132
133 // End-user session
134 struct session {
135     struct client *clients;
136     int requestid; 
137     char query[1024];
138     NMEM nmem;          // Nmem for each operation (i.e. search)
139     WRBUF wrbuf;        // Wrbuf for scratch(i.e. search)
140     int num_termlists;
141     struct named_termlist termlists[SESSION_MAX_TERMLISTS];
142     struct relevance *relevance;
143     struct reclist *reclist;
144     struct {
145         void *data;
146         session_watchfun fun;
147     } watchlist[SESSION_WATCH_MAX + 1];
148     int expected_maxrecs;
149     int total_hits;
150     int total_records;
151     int total_merged;
152 };
153
154 struct statistics {
155     int num_clients;
156     int num_no_connection;
157     int num_connecting;
158     int num_initializing;
159     int num_searching;
160     int num_presenting;
161     int num_idle;
162     int num_failed;
163     int num_error;
164     int num_hits;
165     int num_records;
166 };
167
168 struct hitsbytarget {
169     char *id;
170     char *name;
171     int hits;
172     int diagnostic;
173     int records;
174     char* state;
175     int connected;
176 };
177
178 struct parameters {
179     char proxy_override[128];
180     char listener_override[128];
181     struct conf_server *server;
182     int dump_records;
183     int timeout;                /* operations timeout, in seconds */
184     char implementationId[128];
185     char implementationName[128];
186     char implementationVersion[128];
187     int target_timeout; // seconds
188     int session_timeout;
189     int toget;
190     int chunk;
191     CCL_bibset ccl_filter;
192     yaz_marc_t yaz_marc;
193     ODR odr_out;
194     ODR odr_in;
195 };
196
197 struct hitsbytarget *hitsbytarget(struct session *s, int *count);
198 int select_targets(struct session *se);
199 struct session *new_session();
200 void destroy_session(struct session *s);
201 int load_targets(struct session *s, const char *fn);
202 void statistics(struct session *s, struct statistics *stat);
203 char *search(struct session *s, char *query);
204 struct record_cluster **show(struct session *s, struct reclist_sortparms *sp, int start,
205         int *num, int *total, int *sumhits, NMEM nmem_show);
206 struct record_cluster *show_single(struct session *s, int id);
207 struct termlist_score **termlist(struct session *s, const char *name, int *num);
208 void session_set_watch(struct session *s, int what, session_watchfun fun, void *data);
209 int session_active_clients(struct session *s);
210
211 #endif
212
213 /*
214  * Local variables:
215  * c-basic-offset: 4
216  * indent-tabs-mode: nil
217  * End:
218  * vim: shiftwidth=4 tabstop=8 expandtab
219  */