Removed duplicate variable for turbo marcxml (using_turbo_format). Now works in zooms...
[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
39 typedef struct ZOOM_Event_p *ZOOM_Event;
40
41 struct ZOOM_query_p {
42     Z_Query *z_query;
43     Z_SortKeySpecList *sort_spec;
44     int refcount;
45     ODR odr;
46     char *query_string;
47 };
48
49 typedef enum {
50     zoom_sru_error,
51     zoom_sru_soap,
52     zoom_sru_get,
53     zoom_sru_post
54 } zoom_sru_mode;
55     
56
57 typedef struct ZOOM_task_p *ZOOM_task;
58
59 #define STATE_IDLE 0
60 #define STATE_CONNECTING 1
61 #define STATE_ESTABLISHED 2
62
63 struct ZOOM_connection_p {
64     enum oid_proto proto;
65     COMSTACK cs;
66     char *host_port;
67     char *path;
68     int error;
69     char *addinfo;
70     char *diagset;
71     int state;
72     int mask;
73     int reconnect_ok;
74     ODR odr_in;
75     ODR odr_out;
76     ODR odr_print;
77     char *buf_in;
78     int len_in;
79     char *buf_out;
80     int len_out;
81     char *proxy;
82     char *charset;
83     char *lang;
84     char *cookie_out;
85     char *cookie_in;
86     char *client_IP;
87     char *sru_version;
88
89     char *user;
90     char *group;
91     char *password;
92
93     int async;
94     int support_named_resultsets;
95     int last_event;
96
97     int maximum_record_size;
98     int preferred_message_size;
99
100     ZOOM_task tasks;
101     ZOOM_options options;
102     ZOOM_resultset resultsets;
103     ZOOM_Event m_queue_front;
104     ZOOM_Event m_queue_back;
105     zoom_sru_mode sru_mode;
106 };
107
108 struct ZOOM_options_entry {
109     char *name;
110     char *value;
111     int len;                  /* of `value', which may contain NULs */
112     struct ZOOM_options_entry *next;
113 };
114
115 struct ZOOM_options_p {
116     int refcount;
117     void *callback_handle;
118     ZOOM_options_callback callback_func;
119     struct ZOOM_options_entry *entries;
120     ZOOM_options parent1;
121     ZOOM_options parent2;
122 };
123
124
125 typedef struct ZOOM_record_cache_p *ZOOM_record_cache;
126
127 #define RECORD_HASH_SIZE  131
128
129 struct ZOOM_resultset_p {
130     Z_SortKeySpecList *r_sort_spec;
131     ZOOM_query query;
132     int refcount;
133     Odr_int size;
134     int step;
135     int piggyback;
136     char *setname;
137     char *schema;
138     ODR odr;
139     ZOOM_record_cache record_hash[RECORD_HASH_SIZE];
140     ZOOM_options options;
141     ZOOM_connection connection;
142     ZOOM_resultset next;
143     char **databaseNames;
144     int num_databaseNames;
145 };
146
147 struct ZOOM_record_p {
148     ODR odr;
149     WRBUF wrbuf;
150     Z_NamePlusRecord *npr;
151     const char *schema;
152
153 #if YAZ_HAVE_XML2
154     xmlChar *xml_mem;
155     int xml_size;
156 #endif
157
158     const char *diag_uri;
159     const char *diag_message;
160     const char *diag_details;
161     const char *diag_set;
162 };
163
164 struct ZOOM_record_cache_p {
165     struct ZOOM_record_p rec;
166     char *elementSetName;
167     char *syntax;
168     char *schema;
169     int pos;
170     ZOOM_record_cache next;
171 };
172
173 struct ZOOM_scanset_p {
174     int refcount;
175     ODR odr;
176     ZOOM_options options;
177     ZOOM_connection connection;
178     ZOOM_query query;
179     Z_ScanResponse *scan_response;
180     Z_SRW_scanResponse *srw_scan_response;
181
182     char **databaseNames;
183     int num_databaseNames;
184 };
185
186 struct ZOOM_package_p {
187     int refcount;
188     ODR odr_out;
189     ZOOM_options options;
190     ZOOM_connection connection;
191     char *buf_out;
192     int len_out;
193 };
194
195 struct ZOOM_task_p {
196     int running;
197     int which;
198     union {
199 #define ZOOM_TASK_SEARCH 1
200         struct {
201             int count;
202             int start;
203             ZOOM_resultset resultset;
204             char *syntax;
205             char *elementSetName;
206             int recv_search_fired;
207         } search;
208 #define ZOOM_TASK_RETRIEVE 2
209         struct {
210             int start;
211             ZOOM_resultset resultset;
212             int count;
213             char *syntax;
214             char *elementSetName;
215         } retrieve;
216 #define ZOOM_TASK_CONNECT 3
217 #define ZOOM_TASK_SCAN 4
218         struct {
219             ZOOM_scanset scan;
220         } scan;
221 #define ZOOM_TASK_PACKAGE 5
222         ZOOM_package package;
223 #define ZOOM_TASK_SORT 6
224         struct {
225             ZOOM_resultset resultset;
226             ZOOM_query q;
227         } sort;
228     } u;
229     ZOOM_task next;
230 };
231
232 struct ZOOM_Event_p {
233     int kind;
234     ZOOM_Event next;
235     ZOOM_Event prev;
236 };
237
238 void ZOOM_options_addref (ZOOM_options opt);
239
240 /*
241  * Local variables:
242  * c-basic-offset: 4
243  * c-file-style: "Stroustrup"
244  * indent-tabs-mode: nil
245  * End:
246  * vim: shiftwidth=4 tabstop=8 expandtab
247  */
248