8 #include <libxslt/xsltutils.h>
9 #include <libxslt/transform.h>
11 #include <yaz/comstack.h>
12 #include <yaz/pquery.h>
14 #include <yaz/yaz-ccl.h>
16 #include "termlists.h"
17 #include "relevance.h"
32 struct record_metadata {
33 union data_types data;
34 struct record_metadata *next; // next item of this name
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
46 struct record_metadata **metadata; // Array mirrors list of metadata fields in config
47 union data_types **sortkeys;
50 int *term_frequency_vec;
51 int recid; // Set-specific ID for this record
52 struct record *records;
57 // Represents a host (irrespective of databases)
61 struct connection *connections; // All connections to this
65 // Represents a (virtual) database on a host
72 struct zr_explain *explain;
73 struct conf_retrievalprofile *rprofile;
74 struct setting **settings;
75 struct database *next;
79 struct database_criterion_value {
81 struct database_criterion_value *next;
84 struct database_criterion {
86 struct database_criterion_value *values;
87 struct database_criterion *next;
90 // Represents a physical, reusable connection to a remote Z39.50 host
95 struct client *client;
103 struct connection *next;
106 // Represents client state for a connection to one search target
108 struct database *database;
109 struct connection *connection;
110 struct session *session;
114 int requestid; // ID of current outstanding request
132 #define SESSION_WATCH_RECORDS 0
133 #define SESSION_WATCH_MAX 0
135 #define SESSION_MAX_TERMLISTS 10
137 typedef void (*session_watchfun)(void *data);
139 struct named_termlist
142 struct termlist *termlist;
147 struct client *clients;
150 NMEM nmem; // Nmem for each operation (i.e. search)
151 WRBUF wrbuf; // Wrbuf for scratch(i.e. search)
153 struct named_termlist termlists[SESSION_MAX_TERMLISTS];
154 struct relevance *relevance;
155 struct reclist *reclist;
158 session_watchfun fun;
159 } watchlist[SESSION_WATCH_MAX + 1];
160 int expected_maxrecs;
168 int num_no_connection;
170 int num_initializing;
180 struct hitsbytarget {
191 char proxy_override[128];
192 char listener_override[128];
193 char zproxy_override[128];
194 char settings_path_override[128];
195 struct conf_server *server;
197 int timeout; /* operations timeout, in seconds */
198 char implementationId[128];
199 char implementationName[128];
200 char implementationVersion[128];
201 int target_timeout; // seconds
210 struct hitsbytarget *hitsbytarget(struct session *s, int *count);
211 int select_targets(struct session *se, struct database_criterion *crit);
212 struct session *new_session();
213 void destroy_session(struct session *s);
214 int load_targets(struct session *s, const char *fn);
215 void statistics(struct session *s, struct statistics *stat);
216 char *search(struct session *s, char *query, char *filter);
217 struct record_cluster **show(struct session *s, struct reclist_sortparms *sp, int start,
218 int *num, int *total, int *sumhits, NMEM nmem_show);
219 struct record_cluster *show_single(struct session *s, int id);
220 struct termlist_score **termlist(struct session *s, const char *name, int *num);
221 void session_set_watch(struct session *s, int what, session_watchfun fun, void *data);
222 int session_active_clients(struct session *s);
229 * indent-tabs-mode: nil
231 * vim: shiftwidth=4 tabstop=8 expandtab