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