76d0fa1e1f0f3d806b090668cedd4c2bdba6ab01
[pazpar2-moved-to-github.git] / src / pazpar2.h
1 /* This file is part of Pazpar2.
2    Copyright (C) 2006-2009 Index Data
3
4 Pazpar2 is free software; you can redistribute it and/or modify it under
5 the terms of the GNU General Public License as published by the Free
6 Software Foundation; either version 2, or (at your option) any later
7 version.
8
9 Pazpar2 is distributed in the hope that it will be useful, but WITHOUT ANY
10 WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12 for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17
18 */
19
20 #ifndef PAZPAR2_H
21 #define PAZPAR2_H
22
23 #include <yaz/comstack.h>
24 #include <yaz/pquery.h>
25 #include <yaz/ccl.h>
26 #include <yaz/yaz-ccl.h>
27
28 #include "termlists.h"
29 #include "reclists.h"
30 #include "pazpar2_config.h"
31 #include "http.h"
32
33 struct record;
34 struct client;
35
36
37 enum pazpar2_error_code {
38     PAZPAR2_NO_ERROR = 0,
39
40     PAZPAR2_NO_SESSION,
41     PAZPAR2_MISSING_PARAMETER,
42     PAZPAR2_MALFORMED_PARAMETER_VALUE,
43     PAZPAR2_MALFORMED_PARAMETER_ENCODING,
44     PAZPAR2_MALFORMED_SETTING,
45     PAZPAR2_HITCOUNTS_FAILED,
46     PAZPAR2_RECORD_MISSING,
47     PAZPAR2_NO_TARGETS,
48     PAZPAR2_CONFIG_TARGET,
49     PAZPAR2_RECORD_FAIL,
50     PAZPAR2_NOT_IMPLEMENTED,
51
52     PAZPAR2_LAST_ERROR
53 };
54
55 // Represents a (virtual) database on a host
56 struct database {
57     struct host *host;
58     char *url;
59     char **databases;
60     int errors;
61     struct zr_explain *explain;
62     struct setting **settings;
63     struct database *next;
64 };
65
66 struct database_criterion_value {
67     char *value;
68     struct database_criterion_value *next;
69 };
70
71 struct database_criterion {
72     char *name;
73     struct database_criterion_value *values;
74     struct database_criterion *next;
75 };
76
77 // Normalization filter. Turns incoming record into internal representation
78 // Simple sequence of stylesheets run in series.
79 struct database_retrievalmap {
80     xsltStylesheet *stylesheet;
81     struct marcmap *marcmap;
82     struct database_retrievalmap *next;
83 };
84
85 // Represents a database as viewed from one session, possibly with settings overriden
86 // for that session
87 struct session_database
88 {
89     struct database *database;
90     struct setting **settings;
91     struct database_retrievalmap *map;
92     struct session_database *next;
93 };
94
95
96
97 #define SESSION_WATCH_SHOW      0
98 #define SESSION_WATCH_RECORD    1
99 #define SESSION_WATCH_MAX       1
100
101 #define SESSION_MAX_TERMLISTS 10
102
103 typedef void (*session_watchfun)(void *data);
104
105 struct named_termlist
106 {
107     char *name;
108     struct termlist *termlist;
109 };
110
111 struct session_watchentry {
112     void *data;
113     http_channel_observer_t obs;
114     session_watchfun fun;
115 };
116
117 // End-user session
118 struct session {
119     struct conf_service *service; /* service in use for this session */
120     struct session_database *databases;  // All databases, settings overriden
121     struct client *clients;              // Clients connected for current search
122     NMEM session_nmem;  // Nmem for session-permanent storage
123     NMEM nmem;          // Nmem for each operation (i.e. search, result set, etc)
124     WRBUF wrbuf;        // Wrbuf for scratch(i.e. search)
125     int num_termlists;
126     struct named_termlist termlists[SESSION_MAX_TERMLISTS];
127     struct relevance *relevance;
128     struct reclist *reclist;
129     struct session_watchentry watchlist[SESSION_WATCH_MAX + 1];
130     int expected_maxrecs;
131     int total_hits;
132     int total_records;
133     int total_merged;
134     int number_of_warnings_unknown_elements;
135     int number_of_warnings_unknown_metadata;
136 };
137
138 struct statistics {
139     int num_clients;
140     int num_no_connection;
141     int num_connecting;
142     int num_working;
143     int num_idle;
144     int num_failed;
145     int num_error;
146     int num_hits;
147     int num_records;
148 };
149
150 struct hitsbytarget {
151     char *id;
152     const char *name;
153     int hits;
154     int diagnostic;
155     int records;
156     const char *state;
157     int connected;
158 };
159
160 struct hitsbytarget *hitsbytarget(struct session *s, int *count, NMEM nmem);
161 int select_targets(struct session *se, struct database_criterion *crit);
162 struct session *new_session(NMEM nmem, struct conf_service *service);
163 void destroy_session(struct session *s);
164 void session_init_databases(struct session *s);
165 int load_targets(struct session *s, const char *fn);
166 void statistics(struct session *s, struct statistics *stat);
167 enum pazpar2_error_code search(struct session *s, const char *query, 
168                                const char *filter, const char **addinfo);
169 struct record_cluster **show(struct session *s, struct reclist_sortparms *sp, int start,
170         int *num, int *total, int *sumhits, NMEM nmem_show);
171 struct record_cluster *show_single(struct session *s, const char *id,
172                                    struct record_cluster **prev_r,
173                                    struct record_cluster **next_r);
174 struct termlist_score **termlist(struct session *s, const char *name, int *num);
175 int session_set_watch(struct session *s, int what, session_watchfun fun, void *data, struct http_channel *c);
176 int session_active_clients(struct session *s);
177 void session_apply_setting(struct session *se, char *dbname, char *setting, char *value);
178 const char *session_setting_oneval(struct session_database *db, int offset);
179
180 void pazpar2_add_channel(IOCHAN c);
181 void pazpar2_event_loop(void);
182
183 int host_getaddrinfo(struct host *host);
184
185 xmlDoc *normalize_record(struct session_database *sdb, struct session *se,
186         const char *rec);
187 xmlDoc *record_to_xml(struct session_database *sdb, const char *rec);
188
189 struct record *ingest_record(struct client *cl, const char *rec,
190                              int record_no);
191 void session_alert_watch(struct session *s, int what);
192 void pull_terms(NMEM nmem, struct ccl_rpn_node *n, char **termlist, int *num);
193
194 #endif
195
196 /*
197  * Local variables:
198  * c-basic-offset: 4
199  * c-file-style: "Stroustrup"
200  * indent-tabs-mode: nil
201  * End:
202  * vim: shiftwidth=4 tabstop=8 expandtab
203  */
204