2 * Copyright (c) 1998-2003, Index Data.
3 * See the file LICENSE for details.
5 * $Id: yaz-z-assoc.cpp,v 1.29 2003-10-20 18:31:44 adam Exp $
12 #include <yaz++/z-assoc.h>
13 #include <yaz/otherinfo.h>
15 int Yaz_Z_Assoc::yaz_init_func()
18 signal (SIGPIPE, SIG_IGN);
23 int Yaz_Z_Assoc::yaz_init_flag = Yaz_Z_Assoc::yaz_init_func();
25 Yaz_Z_Assoc::Yaz_Z_Assoc(IYaz_PDU_Observable *the_PDU_Observable)
27 m_PDU_Observable = the_PDU_Observable;
28 m_odr_in = odr_createmem (ODR_DECODE);
29 m_odr_out = odr_createmem (ODR_ENCODE);
30 m_odr_print = odr_createmem (ODR_PRINT);
38 void Yaz_Z_Assoc::set_APDU_log(const char *fname)
40 if (m_APDU_file && m_APDU_file != stderr)
45 delete [] m_APDU_fname;
50 m_APDU_fname = new char[strlen(fname)+1];
51 strcpy (m_APDU_fname, fname);
52 if (!strcmp(fname, "-"))
54 else if (*fname == '\0')
57 m_APDU_file = fopen (fname, "a");
58 odr_setprint(m_odr_print, m_APDU_file);
62 int Yaz_Z_Assoc::set_APDU_yazlog(int v)
64 int old = m_APDU_yazlog;
69 const char *Yaz_Z_Assoc::get_APDU_log()
74 Yaz_Z_Assoc::~Yaz_Z_Assoc()
76 m_PDU_Observable->destroy();
77 delete m_PDU_Observable;
78 odr_destroy (m_odr_print); // note: also runs fclose on m_APDU_file ..
79 odr_destroy (m_odr_out);
80 odr_destroy (m_odr_in);
81 delete [] m_APDU_fname;
85 void Yaz_Z_Assoc::recv_PDU(const char *buf, int len)
87 yaz_log (m_log, "recv_PDU len=%d", len);
88 Z_APDU *apdu = decode_Z_PDU (buf, len);
91 recv_Z_PDU (apdu, len);
100 Z_APDU *Yaz_Z_Assoc::create_Z_PDU(int type)
102 Z_APDU *apdu = zget_APDU(m_odr_out, type);
103 if (apdu->which == Z_APDU_initRequest)
105 Z_InitRequest * p = apdu->u.initRequest;
106 char *newName = (char*) odr_malloc(m_odr_out, 50);
107 strcpy (newName, p->implementationName);
108 strcat (newName, " YAZ++");
109 p->implementationName = newName;
114 Z_ReferenceId **Yaz_Z_Assoc::get_referenceIdP(Z_APDU *apdu)
118 case Z_APDU_initRequest:
119 return &apdu->u.initRequest->referenceId;
120 case Z_APDU_initResponse:
121 return &apdu->u.initResponse->referenceId;
122 case Z_APDU_searchRequest:
123 return &apdu->u.searchRequest->referenceId;
124 case Z_APDU_searchResponse:
125 return &apdu->u.searchResponse->referenceId;
126 case Z_APDU_presentRequest:
127 return &apdu->u.presentRequest->referenceId;
128 case Z_APDU_presentResponse:
129 return &apdu->u.presentResponse->referenceId;
130 case Z_APDU_deleteResultSetRequest:
131 return &apdu->u.deleteResultSetRequest->referenceId;
132 case Z_APDU_deleteResultSetResponse:
133 return &apdu->u.deleteResultSetResponse->referenceId;
134 case Z_APDU_accessControlRequest:
135 return &apdu->u.accessControlRequest->referenceId;
136 case Z_APDU_accessControlResponse:
137 return &apdu->u.accessControlResponse->referenceId;
138 case Z_APDU_resourceControlRequest:
139 return &apdu->u.resourceControlRequest->referenceId;
140 case Z_APDU_resourceControlResponse:
141 return &apdu->u.resourceControlResponse->referenceId;
142 case Z_APDU_triggerResourceControlRequest:
143 return &apdu->u.triggerResourceControlRequest->referenceId;
144 case Z_APDU_resourceReportRequest:
145 return &apdu->u.resourceReportRequest->referenceId;
146 case Z_APDU_resourceReportResponse:
147 return &apdu->u.resourceReportResponse->referenceId;
148 case Z_APDU_scanRequest:
149 return &apdu->u.scanRequest->referenceId;
150 case Z_APDU_scanResponse:
151 return &apdu->u.scanResponse->referenceId;
152 case Z_APDU_sortRequest:
153 return &apdu->u.sortRequest->referenceId;
154 case Z_APDU_sortResponse:
155 return &apdu->u.sortResponse->referenceId;
156 case Z_APDU_segmentRequest:
157 return &apdu->u.segmentRequest->referenceId;
158 case Z_APDU_extendedServicesRequest:
159 return &apdu->u.extendedServicesRequest->referenceId;
160 case Z_APDU_extendedServicesResponse:
161 return &apdu->u.extendedServicesResponse->referenceId;
163 return &apdu->u.close->referenceId;
168 void Yaz_Z_Assoc::transfer_referenceId(Z_APDU *from, Z_APDU *to)
170 Z_ReferenceId **id_from = get_referenceIdP(from);
171 Z_ReferenceId **id_to = get_referenceIdP(to);
172 if (id_from && *id_from && id_to)
174 *id_to = (Z_ReferenceId*) odr_malloc (m_odr_out, sizeof(**id_to));
175 (*id_to)->size = (*id_to)->len = (*id_from)->len;
176 (*id_to)->buf = (unsigned char*) odr_malloc (m_odr_out, (*id_to)->len);
177 memcpy ((*id_to)->buf, (*id_from)->buf, (*id_to)->len);
183 int Yaz_Z_Assoc::send_Z_PDU(Z_APDU *apdu, int *plen)
187 if (encode_Z_PDU(apdu, &buf, &len) > 0)
191 return m_PDU_Observable->send_PDU(buf, len);
196 Z_APDU *Yaz_Z_Assoc::decode_Z_PDU(const char *buf, int len)
200 odr_reset (m_odr_in);
201 odr_setbuf (m_odr_in, (char*) buf, len, 0);
203 if (!z_APDU(m_odr_in, &apdu, 0, 0))
205 yaz_log(LOG_LOG, "ODR error on incoming PDU: %s [near byte %d] ",
206 odr_errmsg(odr_geterror(m_odr_in)),
207 odr_offset(m_odr_in));
208 yaz_log(LOG_LOG, "PDU dump:");
209 odr_dumpBER(yaz_log_file(), buf, len);
215 { // use YAZ log FILE
216 FILE *save = m_APDU_file;
218 odr_setprint(m_odr_print, yaz_log_file());
219 z_APDU(m_odr_print, &apdu, 0, "decode");
224 z_APDU(m_odr_print, &apdu, 0, "decode");
231 int Yaz_Z_Assoc::encode_Z_PDU(Z_APDU *apdu, char **buf, int *len)
235 FILE *save = m_APDU_file;
236 odr_setprint(m_odr_print, yaz_log_file()); // use YAZ log FILE
237 z_APDU(m_odr_print, &apdu, 0, "encode");
242 z_APDU(m_odr_print, &apdu, 0, "encode");
245 if (!z_APDU(m_odr_out, &apdu, 0, 0))
248 fprintf (m_APDU_file, "PDU encode failed (above)");
249 yaz_log (LOG_LOG, "yaz_Z_Assoc::encode_Z_PDU failed");
252 *buf = odr_getbuf (m_odr_out, len, 0);
253 odr_reset (m_odr_out);
257 const char *Yaz_Z_Assoc::get_hostname()
262 int Yaz_Z_Assoc::client(const char *addr)
264 delete [] m_hostname;
265 m_hostname = new char[strlen(addr)+1];
266 strcpy (m_hostname, addr);
267 return m_PDU_Observable->connect (this, addr);
270 void Yaz_Z_Assoc::close()
272 m_PDU_Observable->close ();
275 void Yaz_Z_Assoc::server(const char *addr)
277 delete [] m_hostname;
278 m_hostname = new char[strlen(addr)+1];
279 strcpy (m_hostname, addr);
280 m_PDU_Observable->listen (this, addr);
283 ODR Yaz_Z_Assoc::odr_encode()
288 ODR Yaz_Z_Assoc::odr_decode()
292 ODR Yaz_Z_Assoc::odr_print()
297 void Yaz_Z_Assoc::timeout(int timeout)
299 m_PDU_Observable->idleTime(timeout);
302 void Yaz_Z_Assoc::get_otherInfoAPDU(Z_APDU *apdu, Z_OtherInformation ***oip)
306 case Z_APDU_initRequest:
307 *oip = &apdu->u.initRequest->otherInfo;
309 case Z_APDU_searchRequest:
310 *oip = &apdu->u.searchRequest->otherInfo;
312 case Z_APDU_presentRequest:
313 *oip = &apdu->u.presentRequest->otherInfo;
315 case Z_APDU_sortRequest:
316 *oip = &apdu->u.sortRequest->otherInfo;
318 case Z_APDU_scanRequest:
319 *oip = &apdu->u.scanRequest->otherInfo;
321 case Z_APDU_extendedServicesRequest:
322 *oip = &apdu->u.extendedServicesRequest->otherInfo;
324 case Z_APDU_deleteResultSetRequest:
325 *oip = &apdu->u.deleteResultSetRequest->otherInfo;
327 case Z_APDU_initResponse:
328 *oip = &apdu->u.initResponse->otherInfo;
330 case Z_APDU_searchResponse:
331 *oip = &apdu->u.searchResponse->otherInfo;
333 case Z_APDU_presentResponse:
334 *oip = &apdu->u.presentResponse->otherInfo;
336 case Z_APDU_sortResponse:
337 *oip = &apdu->u.sortResponse->otherInfo;
339 case Z_APDU_scanResponse:
340 *oip = &apdu->u.scanResponse->otherInfo;
342 case Z_APDU_extendedServicesResponse:
343 *oip = &apdu->u.extendedServicesResponse->otherInfo;
345 case Z_APDU_deleteResultSetResponse:
346 *oip = &apdu->u.deleteResultSetResponse->otherInfo;
354 void Yaz_Z_Assoc::set_otherInformationString (
356 int oidval, int categoryValue,
359 Z_OtherInformation **otherInformation;
360 get_otherInfoAPDU(apdu, &otherInformation);
361 if (!otherInformation)
363 set_otherInformationString(otherInformation, oidval, categoryValue, str);
366 void Yaz_Z_Assoc::set_otherInformationString (
367 Z_OtherInformation **otherInformation,
368 int oidval, int categoryValue,
373 ent.proto = PROTO_Z3950;
374 ent.oclass = CLASS_USERINFO;
375 ent.value = (oid_value) oidval;
376 if (!oid_ent_to_oid (&ent, oid))
378 set_otherInformationString(otherInformation, oid, categoryValue, str);
381 void Yaz_Z_Assoc::set_otherInformationString (
382 Z_OtherInformation **otherInformation,
383 int *oid, int categoryValue, const char *str)
385 Z_OtherInformationUnit *oi =
386 update_otherInformation(otherInformation, 1, oid, categoryValue, 0);
389 oi->information.characterInfo = odr_strdup (odr_encode(), str);
392 Z_OtherInformationUnit *Yaz_Z_Assoc::update_otherInformation (
393 Z_OtherInformation **otherInformationP, int createFlag,
394 int *oid, int categoryValue, int deleteFlag)
396 return yaz_oi_update (otherInformationP,
397 (createFlag ? odr_encode() : 0),
398 oid, categoryValue, deleteFlag);
401 Z_ReferenceId* Yaz_Z_Assoc::getRefID(char* str)
403 Z_ReferenceId* id = NULL;
407 id = (Z_ReferenceId*) odr_malloc (m_odr_out, sizeof(*id));
408 id->size = id->len = strlen(str);
409 id->buf = (unsigned char *) str;