Fixed serious bug regarding timeouts. Improved logging for proxy.
[yazpp-moved-to-github.git] / src / yaz-z-assoc.cpp
1 /*
2  * Copyright (c) 1998-1999, Index Data.
3  * See the file LICENSE for details.
4  * Sebastian Hammer, Adam Dickmeiss
5  * 
6  * $Log: yaz-z-assoc.cpp,v $
7  * Revision 1.8  2000-08-07 14:19:59  adam
8  * Fixed serious bug regarding timeouts. Improved logging for proxy.
9  *
10  * Revision 1.7  2000/05/10 11:36:58  ian
11  * Added default parameters for refid to request functions.
12  * Added default parameter for result set name to search and present request.
13  * Commented out forced logging of PDU contents.
14  * Added send_deleteResultSetRequest
15  *
16  * Revision 1.6  1999/12/06 13:52:45  adam
17  * Modified for new location of YAZ header files. Experimental threaded
18  * operation.
19  *
20  * Revision 1.5  1999/11/10 10:02:34  adam
21  * Work on proxy.
22  *
23  * Revision 1.4  1999/09/13 12:53:44  adam
24  * Proxy removes OtherInfo Proxy Address and Session ID. Other
25  * Otherinfo remains untouched.
26  *
27  * Revision 1.3  1999/04/21 12:09:01  adam
28  * Many improvements. Modified to proxy server to work with "sessions"
29  * based on cookies.
30  *
31  * Revision 1.2  1999/04/20 10:30:05  adam
32  * Implemented various stuff for client and proxy. Updated calls
33  * to ODR to reflect new name parameter.
34  *
35  * Revision 1.1  1999/04/09 11:46:57  adam
36  * Added object Yaz_Z_Assoc. Much more functional client.
37  *
38  */
39
40 #include <assert.h>
41
42 #include <yaz/log.h>
43 #include <yaz-z-assoc.h>
44 #include <yaz/otherinfo.h>
45
46 int Yaz_Z_Assoc::yaz_init_func()
47 {
48     nmem_init();
49     return 1;
50 }
51
52 int Yaz_Z_Assoc::yaz_init_flag = Yaz_Z_Assoc::yaz_init_func();
53
54 Yaz_Z_Assoc::Yaz_Z_Assoc(IYaz_PDU_Observable *the_PDU_Observable)
55 {
56     m_PDU_Observable = the_PDU_Observable;
57     m_odr_in = odr_createmem (ODR_DECODE);
58     m_odr_out = odr_createmem (ODR_ENCODE);
59     m_odr_print = odr_createmem (ODR_PRINT);
60     m_log = LOG_DEBUG;
61     m_APDU_file = 0;
62     m_APDU_fname = 0;
63     m_hostname = 0;
64 }
65
66 void Yaz_Z_Assoc::set_APDU_log(const char *fname)
67 {
68     if (m_APDU_file && m_APDU_file != stderr)
69         fclose (m_APDU_file);
70     m_APDU_file = 0;
71     delete [] m_APDU_fname;
72     m_APDU_fname = 0;
73
74     if (fname)
75     {
76         m_APDU_fname = new char[strlen(fname)+1];
77         strcpy (m_APDU_fname, fname);
78     }
79     if (fname)
80     {
81         if (*fname)
82             m_APDU_file = fopen (fname, "a");
83         else
84             m_APDU_file = stderr;
85         odr_setprint(m_odr_print, m_APDU_file);
86     }
87 }
88
89 const char *Yaz_Z_Assoc::get_APDU_log()
90 {
91     return m_APDU_fname;
92 }
93
94 Yaz_Z_Assoc::~Yaz_Z_Assoc()
95 {
96     m_PDU_Observable->destroy();
97     delete m_PDU_Observable;
98     odr_destroy (m_odr_print);
99     odr_destroy (m_odr_out);
100     odr_destroy (m_odr_in);
101     delete [] m_APDU_fname;
102     if (m_APDU_file && m_APDU_file != stderr)
103         fclose (m_APDU_file);
104     delete [] m_hostname;
105 }
106
107 void Yaz_Z_Assoc::recv_PDU(const char *buf, int len)
108 {
109     logf (m_log, "recv_PDU len=%d", len);
110     Z_APDU *apdu = decode_Z_PDU (buf, len);
111     if (apdu)
112     {
113         recv_Z_PDU (apdu);
114     }
115 }
116
117 Z_APDU *Yaz_Z_Assoc::create_Z_PDU(int type)
118 {
119     Z_APDU *apdu = zget_APDU(m_odr_out, type);
120     if (apdu->which == Z_APDU_initRequest)
121     {
122         Z_InitRequest * p = apdu->u.initRequest;
123         char *newName = (char*) odr_malloc(m_odr_out, 50);
124         strcpy (newName, p->implementationName);
125         strcat (newName, " YAZ++");
126         p->implementationName = newName;
127     }
128     return apdu;
129 }
130
131 int Yaz_Z_Assoc::send_Z_PDU(Z_APDU *apdu)
132 {
133     char *buf;
134     int len;
135     if (encode_Z_PDU(apdu, &buf, &len) > 0)
136         return m_PDU_Observable->send_PDU(buf, len);
137     return -1;
138 }
139
140 Z_APDU *Yaz_Z_Assoc::decode_Z_PDU(const char *buf, int len)
141 {
142     Z_APDU *apdu;
143
144     odr_reset (m_odr_in);
145     odr_setbuf (m_odr_in, (char*) buf, len, 0);
146
147     if (!z_APDU(m_odr_in, &apdu, 0, 0))
148     {
149         logf(LOG_LOG, "ODR error on incoming PDU: %s [near byte %d] ",
150              odr_errmsg(odr_geterror(m_odr_in)),
151              odr_offset(m_odr_in));
152         logf(LOG_LOG, "PDU dump:");
153         odr_dumpBER(log_file(), buf, len);
154         return 0;
155     }
156     else
157     {
158         if (m_APDU_file)
159             z_APDU(m_odr_print, &apdu, 0, "decode");
160         return apdu;
161     }
162 }
163
164 int Yaz_Z_Assoc::encode_Z_PDU(Z_APDU *apdu, char **buf, int *len)
165 {
166     if (!z_APDU(m_odr_out, &apdu, 0, 0))
167     {
168         logf (LOG_LOG, "yaz_Z_Assoc::encode_Z_PDU failed");
169         return -1;
170     }
171     if (m_APDU_file)
172         z_APDU(m_odr_print, &apdu, 0, "encode");
173     *buf = odr_getbuf (m_odr_out, len, 0);
174     odr_reset (m_odr_out);
175     return *len;
176 }
177
178 const char *Yaz_Z_Assoc::get_hostname()
179 {
180     return m_hostname;
181 }
182
183 void Yaz_Z_Assoc::client(const char *addr)
184 {
185     delete [] m_hostname;
186     m_hostname = new char[strlen(addr)+1];
187     strcpy (m_hostname, addr);
188     m_PDU_Observable->connect (this, addr);
189 }
190
191 void Yaz_Z_Assoc::close()
192 {
193     m_PDU_Observable->close ();
194 }
195
196 void Yaz_Z_Assoc::server(const char *addr)
197 {
198     delete [] m_hostname;
199     m_hostname = new char[strlen(addr)+1];
200     strcpy (m_hostname, addr);
201     m_PDU_Observable->listen (this, addr);
202 }
203
204 ODR Yaz_Z_Assoc::odr_encode()
205 {
206     return m_odr_out;
207 }
208
209 ODR Yaz_Z_Assoc::odr_decode()
210 {
211     return m_odr_in;
212 }
213 ODR Yaz_Z_Assoc::odr_print()
214 {
215     return m_odr_print;
216 }
217
218 void Yaz_Z_Assoc::timeout(int timeout)
219 {
220     m_PDU_Observable->idleTime(timeout);
221 }
222
223 void Yaz_Z_Assoc::get_otherInfoAPDU(Z_APDU *apdu, Z_OtherInformation ***oip)
224 {
225     switch (apdu->which)
226     {
227     case Z_APDU_initRequest:
228         *oip = &apdu->u.initRequest->otherInfo;
229         break;
230     case Z_APDU_searchRequest:
231         *oip = &apdu->u.searchRequest->otherInfo;
232         break;
233     case Z_APDU_presentRequest:
234         *oip = &apdu->u.presentRequest->otherInfo;
235         break;
236     case Z_APDU_sortRequest:
237         *oip = &apdu->u.sortRequest->otherInfo;
238         break;
239     case Z_APDU_scanRequest:
240         *oip = &apdu->u.scanRequest->otherInfo;
241         break;
242     case Z_APDU_initResponse:
243         *oip = &apdu->u.initResponse->otherInfo;
244         break;
245     case Z_APDU_searchResponse:
246         *oip = &apdu->u.searchResponse->otherInfo;
247         break;
248     case Z_APDU_presentResponse:
249         *oip = &apdu->u.presentResponse->otherInfo;
250         break;
251     case Z_APDU_sortResponse:
252         *oip = &apdu->u.sortResponse->otherInfo;
253         break;
254     case Z_APDU_scanResponse:
255         *oip = &apdu->u.scanResponse->otherInfo;
256         break;
257     default:
258         *oip = 0;
259         break;
260     }
261 }
262
263 void Yaz_Z_Assoc::set_otherInformationString (
264     Z_APDU *apdu,
265     int oidval, int categoryValue,
266     const char *str)
267 {
268     Z_OtherInformation **otherInformation;
269     get_otherInfoAPDU(apdu, &otherInformation);
270     if (!otherInformation)
271         return;
272     set_otherInformationString(otherInformation, oidval, categoryValue, str);
273 }
274
275 void Yaz_Z_Assoc::set_otherInformationString (
276     Z_OtherInformation **otherInformation,
277     int oidval, int categoryValue,
278     const char *str)
279 {
280     int oid[OID_SIZE];
281     struct oident ent;
282     ent.proto = PROTO_Z3950;
283     ent.oclass = CLASS_USERINFO;
284     ent.value = (oid_value) oidval;
285     if (!oid_ent_to_oid (&ent, oid))
286         return ;
287     set_otherInformationString(otherInformation, oid, categoryValue, str);
288 }
289
290 void Yaz_Z_Assoc::set_otherInformationString (
291     Z_OtherInformation **otherInformation,
292     int *oid, int categoryValue, const char *str)
293 {
294     Z_OtherInformationUnit *oi =
295         update_otherInformation(otherInformation, 1, oid, categoryValue, 0);
296     if (!oi)
297         return;
298     oi->information.characterInfo = odr_strdup (odr_encode(), str);
299 }
300
301 Z_OtherInformationUnit *Yaz_Z_Assoc::update_otherInformation (
302     Z_OtherInformation **otherInformationP, int createFlag,
303     int *oid, int categoryValue, int deleteFlag)
304 {
305     return yaz_oi_update (otherInformationP,
306                           (createFlag ? odr_encode() : 0),
307                           oid, categoryValue, deleteFlag);
308 }
309
310 Z_ReferenceId* Yaz_Z_Assoc::getRefID(char* str)
311 {
312     Z_ReferenceId* id = NULL;
313
314     if ( str )
315     {
316         id = (Z_ReferenceId*) odr_malloc (m_odr_out, sizeof(*id));
317         id->size = id->len = strlen(str);
318         id->buf = (unsigned char *) str;
319     }
320
321     return id;
322 }
323