ZOOM: resultsets not ref counted by connections
[yaz-moved-to-github.git] / src / zoom-p.h
1 /* This file is part of the YAZ toolkit.
2  * Copyright (C) 1995-2010 Index Data.
3  * All rights reserved.
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are met:
6  *
7  *     * Redistributions of source code must retain the above copyright
8  *       notice, this list of conditions and the following disclaimer.
9  *     * Redistributions in binary form must reproduce the above copyright
10  *       notice, this list of conditions and the following disclaimer in the
11  *       documentation and/or other materials provided with the distribution.
12  *     * Neither the name of Index Data nor the names of its contributors
13  *       may be used to endorse or promote products derived from this
14  *       software without specific prior written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY
17  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19  * DISCLAIMED. IN NO EVENT SHALL THE REGENTS AND CONTRIBUTORS BE LIABLE FOR ANY
20  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
21  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
22  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
23  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26  */
27 /**
28  * \file zoom-p.h
29  * \brief Internal header for ZOOM implementation
30  */
31 #include <yaz/proto.h>
32 #include <yaz/oid_db.h>
33 #include <yaz/comstack.h>
34 #include <yaz/wrbuf.h>
35 #include <yaz/zoom.h>
36 #include <yaz/sortspec.h>
37 #include <yaz/srw.h>
38 #include <yaz/mutex.h>
39
40 #define SHPTR 1
41 #define ZOOM_RESULT_LISTS 0
42
43 typedef struct ZOOM_Event_p *ZOOM_Event;
44
45 struct ZOOM_query_p {
46     Z_Query *z_query;
47     Z_SortKeySpecList *sort_spec;
48     int refcount;
49     ODR odr;
50     char *query_string;
51 };
52
53 typedef enum {
54     zoom_sru_error,
55     zoom_sru_soap,
56     zoom_sru_get,
57     zoom_sru_post
58 } zoom_sru_mode;
59     
60
61 typedef struct ZOOM_task_p *ZOOM_task;
62
63 #define STATE_IDLE 0
64 #define STATE_CONNECTING 1
65 #define STATE_ESTABLISHED 2
66
67 #if ZOOM_RESULT_LISTS
68 typedef struct ZOOM_resultsets_p *ZOOM_resultsets;
69 #endif
70
71 struct ZOOM_connection_p {
72     enum oid_proto proto;
73     COMSTACK cs;
74     char *host_port;
75     char *path;
76     int error;
77     char *addinfo;
78     char *diagset;
79     int state;
80     int mask;
81     int reconnect_ok;
82     ODR odr_in;
83     ODR odr_out;
84     ODR odr_print;
85     char *buf_in;
86     int len_in;
87     char *buf_out;
88     int len_out;
89     char *proxy;
90     char *charset;
91     char *lang;
92     char *cookie_out;
93     char *cookie_in;
94     char *client_IP;
95     char *sru_version;
96
97     char *user;
98     char *group;
99     char *password;
100
101     int async;
102     int support_named_resultsets;
103     int last_event;
104
105     int maximum_record_size;
106     int preferred_message_size;
107
108     ZOOM_task tasks;
109     ZOOM_options options;
110 #if ZOOM_RESULT_LISTS
111     ZOOM_resultsets resultsets;
112 #else
113     ZOOM_resultset resultsets;
114 #endif
115     ZOOM_Event m_queue_front;
116     ZOOM_Event m_queue_back;
117     zoom_sru_mode sru_mode;
118     int no_redirects; /* 0 for no redirects. >0 for number of redirects */
119 };
120
121 #if ZOOM_RESULT_LISTS
122 struct ZOOM_resultsets_p {
123     ZOOM_resultset resultset;
124     ZOOM_resultsets next;
125 };
126 #endif
127
128 struct ZOOM_options_entry {
129     char *name;
130     char *value;
131     int len;                  /* of `value', which may contain NULs */
132     struct ZOOM_options_entry *next;
133 };
134
135 struct ZOOM_options_p {
136     int refcount;
137     void *callback_handle;
138     ZOOM_options_callback callback_func;
139     struct ZOOM_options_entry *entries;
140     ZOOM_options parent1;
141     ZOOM_options parent2;
142 };
143
144
145 typedef struct ZOOM_record_cache_p *ZOOM_record_cache;
146
147 #define RECORD_HASH_SIZE  131
148
149 struct ZOOM_resultset_p {
150     Z_SortKeySpecList *r_sort_spec;
151     ZOOM_query query;
152     int refcount;
153     Odr_int size;
154     int step;
155     int piggyback;
156     char *setname;
157     char *schema;
158     ODR odr;
159     ZOOM_record_cache record_hash[RECORD_HASH_SIZE];
160     ZOOM_options options;
161     ZOOM_connection connection;
162     char **databaseNames;
163     int num_databaseNames;
164     YAZ_MUTEX mutex;
165 #if SHPTR
166     struct WRBUF_shptr *record_wrbuf;
167 #endif
168 #if ZOOM_RESULT_LISTS
169 #else
170     ZOOM_resultset next;
171 #endif
172 };
173
174 struct ZOOM_record_p {
175     ODR odr;
176 #if SHPTR
177     struct WRBUF_shptr *record_wrbuf;
178 #else
179     WRBUF wrbuf;
180 #endif
181
182     Z_NamePlusRecord *npr;
183     const char *schema;
184
185 #if YAZ_HAVE_XML2
186     xmlChar *xml_mem;
187     int xml_size;
188 #endif
189
190     const char *diag_uri;
191     const char *diag_message;
192     const char *diag_details;
193     const char *diag_set;
194 };
195
196 struct ZOOM_record_cache_p {
197     struct ZOOM_record_p rec;
198     char *elementSetName;
199     char *syntax;
200     char *schema;
201     int pos;
202     ZOOM_record_cache next;
203 };
204
205 struct ZOOM_scanset_p {
206     int refcount;
207     ODR odr;
208     ZOOM_options options;
209     ZOOM_connection connection;
210     ZOOM_query query;
211     Z_ScanResponse *scan_response;
212     Z_SRW_scanResponse *srw_scan_response;
213
214     char **databaseNames;
215     int num_databaseNames;
216 };
217
218 struct ZOOM_package_p {
219     int refcount;
220     ODR odr_out;
221     ZOOM_options options;
222     ZOOM_connection connection;
223     char *buf_out;
224     int len_out;
225 };
226
227 struct ZOOM_task_p {
228     int running;
229     int which;
230     union {
231 #define ZOOM_TASK_SEARCH 1
232         struct {
233             int count;
234             int start;
235             ZOOM_resultset resultset;
236             char *syntax;
237             char *elementSetName;
238             int recv_search_fired;
239         } search;
240 #define ZOOM_TASK_RETRIEVE 2
241         struct {
242             int start;
243             ZOOM_resultset resultset;
244             int count;
245             char *syntax;
246             char *elementSetName;
247         } retrieve;
248 #define ZOOM_TASK_CONNECT 3
249 #define ZOOM_TASK_SCAN 4
250         struct {
251             ZOOM_scanset scan;
252         } scan;
253 #define ZOOM_TASK_PACKAGE 5
254         ZOOM_package package;
255 #define ZOOM_TASK_SORT 6
256         struct {
257             ZOOM_resultset resultset;
258             ZOOM_query q;
259         } sort;
260     } u;
261     ZOOM_task next;
262 };
263
264 struct ZOOM_Event_p {
265     int kind;
266     ZOOM_Event next;
267     ZOOM_Event prev;
268 };
269
270 void ZOOM_options_addref (ZOOM_options opt);
271
272 /*
273  * Local variables:
274  * c-basic-offset: 4
275  * c-file-style: "Stroustrup"
276  * indent-tabs-mode: nil
277  * End:
278  * vim: shiftwidth=4 tabstop=8 expandtab
279  */
280