Refactor wrbuf tmps for ZOOM_record_get
[yaz-moved-to-github.git] / src / zoom-p.h
1 /* This file is part of the YAZ toolkit.
2  * Copyright (C) 1995-2009 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     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     const char *diag_uri;
154     const char *diag_message;
155     const char *diag_details;
156     const char *diag_set;
157 };
158
159 struct ZOOM_record_cache_p {
160     struct ZOOM_record_p rec;
161     char *elementSetName;
162     char *syntax;
163     char *schema;
164     int pos;
165     ZOOM_record_cache next;
166 };
167
168 struct ZOOM_scanset_p {
169     int refcount;
170     ODR odr;
171     ZOOM_options options;
172     ZOOM_connection connection;
173     ZOOM_query query;
174     Z_ScanResponse *scan_response;
175     Z_SRW_scanResponse *srw_scan_response;
176
177     char **databaseNames;
178     int num_databaseNames;
179 };
180
181 struct ZOOM_package_p {
182     int refcount;
183     ODR odr_out;
184     ZOOM_options options;
185     ZOOM_connection connection;
186     char *buf_out;
187     int len_out;
188 };
189
190 struct ZOOM_task_p {
191     int running;
192     int which;
193     union {
194 #define ZOOM_TASK_SEARCH 1
195         struct {
196             int count;
197             int start;
198             ZOOM_resultset resultset;
199             char *syntax;
200             char *elementSetName;
201             int recv_search_fired;
202         } search;
203 #define ZOOM_TASK_RETRIEVE 2
204         struct {
205             int start;
206             ZOOM_resultset resultset;
207             int count;
208             char *syntax;
209             char *elementSetName;
210         } retrieve;
211 #define ZOOM_TASK_CONNECT 3
212 #define ZOOM_TASK_SCAN 4
213         struct {
214             ZOOM_scanset scan;
215         } scan;
216 #define ZOOM_TASK_PACKAGE 5
217         ZOOM_package package;
218 #define ZOOM_TASK_SORT 6
219         struct {
220             ZOOM_resultset resultset;
221             ZOOM_query q;
222         } sort;
223     } u;
224     ZOOM_task next;
225 };
226
227 struct ZOOM_Event_p {
228     int kind;
229     ZOOM_Event next;
230     ZOOM_Event prev;
231 };
232
233 void ZOOM_options_addref (ZOOM_options opt);
234
235 /*
236  * Local variables:
237  * c-basic-offset: 4
238  * c-file-style: "Stroustrup"
239  * indent-tabs-mode: nil
240  * End:
241  * vim: shiftwidth=4 tabstop=8 expandtab
242  */
243