X-Git-Url: http://lists.indexdata.com/cgi-bin?a=blobdiff_plain;ds=sidebyside;f=src%2Fpazpar2.h;h=7677d9d5907496ded47bcde245a6b30dcc9b3242;hb=dde4a5914bbb5511a91e73d8ab45210b48637596;hp=8de4b9191cf3c31527d322101b6db378c7388cf0;hpb=fe3383c0559a453df1e5076fc6faac6d1a11685c;p=pazpar2-moved-to-github.git diff --git a/src/pazpar2.h b/src/pazpar2.h index 8de4b91..7677d9d 100644 --- a/src/pazpar2.h +++ b/src/pazpar2.h @@ -5,20 +5,24 @@ struct record; #include +#include +#include + #include #include #include #include + #include "termlists.h" #include "relevance.h" #include "eventl.h" +#include "config.h" -#define MAX_DATABASES 512 +struct client; struct record { struct client *client; int target_offset; - char *buf; char *merge_key; char *title; int relevance; @@ -40,12 +44,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 +97,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 +114,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 +151,7 @@ struct hitsbytarget { }; struct parameters { + int dump_records; int timeout; /* operations timeout, in seconds */ char implementationId[128]; char implementationName[128]; @@ -157,8 +173,8 @@ 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); #endif