2 * Copyright (C) 1995-2005, Index Data ApS
3 * See the file LICENSE for details.
5 * $Id: seshigh.c,v 1.58 2005-06-25 15:46:05 adam Exp $
9 * \brief Implements GFS session logic.
11 * Frontend server logic.
13 * This code receives incoming APDUs, and handles client requests by means
16 * Some of the code is getting quite involved, compared to simpler servers -
17 * primarily because it is asynchronous both in the communication with
18 * the user and the backend. We think the complexity will pay off in
19 * the form of greater flexibility when more asynchronous facilities
22 * Memory management has become somewhat involved. In the simple case, where
23 * only one PDU is pending at a time, it will simply reuse the same memory,
24 * once it has found its working size. When we enable multiple concurrent
25 * operations, perhaps even with multiple parallel calls to the backend, it
26 * will maintain a pool of buffers for encoding and decoding, trying to
27 * minimize memory allocation/deallocation during normal operation.
37 #include <sys/types.h>
45 #define S_ISREG(x) (x & _S_IFREG)
54 #include <libxml/parser.h>
55 #include <libxml/tree.h>
58 #include <yaz/yconfig.h>
59 #include <yaz/xmalloc.h>
60 #include <yaz/comstack.h>
63 #include <yaz/proto.h>
66 #include <yaz/logrpn.h>
67 #include <yaz/statserv.h>
68 #include <yaz/diagbib1.h>
69 #include <yaz/charneg.h>
70 #include <yaz/otherinfo.h>
71 #include <yaz/yaz-util.h>
72 #include <yaz/pquery.h>
75 #include <yaz/backend.h>
77 static void process_gdu_request(association *assoc, request *req);
78 static int process_z_request(association *assoc, request *req, char **msg);
79 void backend_response(IOCHAN i, int event);
80 static int process_gdu_response(association *assoc, request *req, Z_GDU *res);
81 static int process_z_response(association *assoc, request *req, Z_APDU *res);
82 static Z_APDU *process_initRequest(association *assoc, request *reqb);
83 static Z_External *init_diagnostics(ODR odr, int errcode,
84 const char *errstring);
85 static Z_APDU *process_searchRequest(association *assoc, request *reqb,
87 static Z_APDU *response_searchRequest(association *assoc, request *reqb,
88 bend_search_rr *bsrr, int *fd);
89 static Z_APDU *process_presentRequest(association *assoc, request *reqb,
91 static Z_APDU *process_scanRequest(association *assoc, request *reqb, int *fd);
92 static Z_APDU *process_sortRequest(association *assoc, request *reqb, int *fd);
93 static void process_close(association *assoc, request *reqb);
94 void save_referenceId (request *reqb, Z_ReferenceId *refid);
95 static Z_APDU *process_deleteRequest(association *assoc, request *reqb,
97 static Z_APDU *process_segmentRequest (association *assoc, request *reqb);
99 static Z_APDU *process_ESRequest(association *assoc, request *reqb, int *fd);
101 /* dynamic logging levels */
102 static int logbits_set = 0;
103 static int log_session = 0;
104 static int log_request = 0; /* one-line logs for requests */
105 static int log_requestdetail = 0; /* more detailed stuff */
107 /** get_logbits sets global loglevel bits */
108 static void get_logbits()
109 { /* needs to be called after parsing cmd-line args that can set loglevels!*/
113 log_session = yaz_log_module_level("session");
114 log_request = yaz_log_module_level("request");
115 log_requestdetail = yaz_log_module_level("requestdetail");
119 static void wr_diag(WRBUF w, int error, const char *addinfo)
121 wrbuf_printf(w, "ERROR [%d] %s%s%s",
122 error, diagbib1_str(error),
123 addinfo ? "--" : "", addinfo ? addinfo : "");
128 * Create and initialize a new association-handle.
129 * channel : iochannel for the current line.
130 * link : communications channel.
131 * Returns: 0 or a new association handle.
133 association *create_association(IOCHAN channel, COMSTACK link,
134 const char *apdufile)
140 if (!(anew = (association *)xmalloc(sizeof(*anew))))
144 anew->last_control = 0;
145 anew->client_chan = channel;
146 anew->client_link = link;
147 anew->cs_get_mask = 0;
148 anew->cs_put_mask = 0;
149 anew->cs_accept_mask = 0;
150 if (!(anew->decode = odr_createmem(ODR_DECODE)) ||
151 !(anew->encode = odr_createmem(ODR_ENCODE)))
153 if (apdufile && *apdufile)
157 if (!(anew->print = odr_createmem(ODR_PRINT)))
159 if (*apdufile == '@')
161 odr_setprint(anew->print, yaz_log_file());
163 else if (*apdufile != '-')
166 sprintf(filename, "%.200s.%ld", apdufile, (long)getpid());
167 if (!(f = fopen(filename, "w")))
169 yaz_log(YLOG_WARN|YLOG_ERRNO, "%s", filename);
172 setvbuf(f, 0, _IONBF, 0);
173 odr_setprint(anew->print, f);
178 anew->input_buffer = 0;
179 anew->input_buffer_len = 0;
181 anew->state = ASSOC_NEW;
182 request_initq(&anew->incoming);
183 request_initq(&anew->outgoing);
184 anew->proto = cs_getproto(link);
185 anew->cql_transform = 0;
186 anew->server_node_ptr = 0;
191 * Free association and release resources.
193 void destroy_association(association *h)
195 statserv_options_block *cb = statserv_getcontrol();
199 odr_destroy(h->decode);
200 odr_destroy(h->encode);
202 odr_destroy(h->print);
204 xfree(h->input_buffer);
206 (*cb->bend_close)(h->backend);
207 while ((req = request_deq(&h->incoming)))
208 request_release(req);
209 while ((req = request_deq(&h->outgoing)))
210 request_release(req);
211 request_delq(&h->incoming);
212 request_delq(&h->outgoing);
214 xmalloc_trav("session closed");
215 if (cb && cb->one_shot)
221 static void do_close_req(association *a, int reason, char *message,
225 Z_Close *cls = zget_Close(a->encode);
227 /* Purge request queue */
228 while (request_deq(&a->incoming));
229 while (request_deq(&a->outgoing));
232 yaz_log(log_requestdetail, "Sending Close PDU, reason=%d, message=%s",
233 reason, message ? message : "none");
234 apdu.which = Z_APDU_close;
236 *cls->closeReason = reason;
237 cls->diagnosticInformation = message;
238 process_z_response(a, req, &apdu);
239 iochan_settimeout(a->client_chan, 20);
243 request_release(req);
244 yaz_log(log_requestdetail, "v2 client. No Close PDU");
245 iochan_setevent(a->client_chan, EVENT_TIMEOUT); /* force imm close */
247 a->state = ASSOC_DEAD;
250 static void do_close(association *a, int reason, char *message)
252 request *req = request_get(&a->outgoing);
253 do_close_req (a, reason, message, req);
257 * This is where PDUs from the client are read and the further
258 * processing is initiated. Flow of control moves down through the
259 * various process_* functions below, until the encoded result comes back up
260 * to the output handler in here.
262 * h : the I/O channel that has an outstanding event.
263 * event : the current outstanding event.
265 void ir_session(IOCHAN h, int event)
268 association *assoc = (association *)iochan_getdata(h);
269 COMSTACK conn = assoc->client_link;
272 assert(h && conn && assoc);
273 if (event == EVENT_TIMEOUT)
275 if (assoc->state != ASSOC_UP)
277 yaz_log(YLOG_DEBUG, "Final timeout - closing connection.");
278 /* do we need to lod this at all */
280 destroy_association(assoc);
285 yaz_log(log_session, "Session idle too long. Sending close.");
286 do_close(assoc, Z_Close_lackOfActivity, 0);
290 if (event & assoc->cs_accept_mask)
292 if (!cs_accept (conn))
294 yaz_log (YLOG_WARN, "accept failed");
295 destroy_association(assoc);
298 iochan_clearflag (h, EVENT_OUTPUT);
299 if (conn->io_pending)
300 { /* cs_accept didn't complete */
301 assoc->cs_accept_mask =
302 ((conn->io_pending & CS_WANT_WRITE) ? EVENT_OUTPUT : 0) |
303 ((conn->io_pending & CS_WANT_READ) ? EVENT_INPUT : 0);
305 iochan_setflag (h, assoc->cs_accept_mask);
308 { /* cs_accept completed. Prepare for reading (cs_get) */
309 assoc->cs_accept_mask = 0;
310 assoc->cs_get_mask = EVENT_INPUT;
311 iochan_setflag (h, assoc->cs_get_mask);
315 if ((event & assoc->cs_get_mask) || (event & EVENT_WORK)) /* input */
317 if ((assoc->cs_put_mask & EVENT_INPUT) == 0 && (event & assoc->cs_get_mask))
319 yaz_log(YLOG_DEBUG, "ir_session (input)");
320 /* We aren't speaking to this fellow */
321 if (assoc->state == ASSOC_DEAD)
323 yaz_log(log_session, "Connection closed - end of session");
325 destroy_association(assoc);
329 assoc->cs_get_mask = EVENT_INPUT;
330 if ((res = cs_get(conn, &assoc->input_buffer,
331 &assoc->input_buffer_len)) <= 0)
333 yaz_log(log_session, "Connection closed by client");
335 destroy_association(assoc);
339 else if (res == 1) /* incomplete read - wait for more */
341 if (conn->io_pending & CS_WANT_WRITE)
342 assoc->cs_get_mask |= EVENT_OUTPUT;
343 iochan_setflag(h, assoc->cs_get_mask);
346 if (cs_more(conn)) /* more stuff - call us again later, please */
347 iochan_setevent(h, EVENT_INPUT);
349 /* we got a complete PDU. Let's decode it */
350 yaz_log(YLOG_DEBUG, "Got PDU, %d bytes: lead=%02X %02X %02X", res,
351 assoc->input_buffer[0] & 0xff,
352 assoc->input_buffer[1] & 0xff,
353 assoc->input_buffer[2] & 0xff);
354 req = request_get(&assoc->incoming); /* get a new request */
355 odr_reset(assoc->decode);
356 odr_setbuf(assoc->decode, assoc->input_buffer, res, 0);
357 if (!z_GDU(assoc->decode, &req->gdu_request, 0, 0))
359 yaz_log(YLOG_WARN, "ODR error on incoming PDU: %s [element %s] "
361 odr_errmsg(odr_geterror(assoc->decode)),
362 odr_getelement(assoc->decode),
363 odr_offset(assoc->decode));
364 if (assoc->decode->error != OHTTP)
366 yaz_log(YLOG_WARN, "PDU dump:");
367 odr_dumpBER(yaz_log_file(), assoc->input_buffer, res);
368 request_release(req);
369 do_close(assoc, Z_Close_protocolError,"Malformed package");
373 Z_GDU *p = z_get_HTTP_Response(assoc->encode, 400);
374 assoc->state = ASSOC_DEAD;
375 process_gdu_response(assoc, req, p);
379 req->request_mem = odr_extract_mem(assoc->decode);
382 if (!z_GDU(assoc->print, &req->gdu_request, 0, 0))
383 yaz_log(YLOG_WARN, "ODR print error: %s",
384 odr_errmsg(odr_geterror(assoc->print)));
385 odr_reset(assoc->print);
387 request_enq(&assoc->incoming, req);
390 /* can we do something yet? */
391 req = request_head(&assoc->incoming);
392 if (req->state == REQUEST_IDLE)
394 request_deq(&assoc->incoming);
395 process_gdu_request(assoc, req);
398 if (event & assoc->cs_put_mask)
400 request *req = request_head(&assoc->outgoing);
402 assoc->cs_put_mask = 0;
403 yaz_log(YLOG_DEBUG, "ir_session (output)");
404 req->state = REQUEST_PENDING;
405 switch (res = cs_put(conn, req->response, req->len_response))
408 yaz_log(log_session, "Connection closed by client");
410 destroy_association(assoc);
413 case 0: /* all sent - release the request structure */
414 yaz_log(YLOG_DEBUG, "Wrote PDU, %d bytes", req->len_response);
416 yaz_log(YLOG_DEBUG, "HTTP out:\n%.*s", req->len_response,
419 nmem_destroy(req->request_mem);
420 request_deq(&assoc->outgoing);
421 request_release(req);
422 if (!request_head(&assoc->outgoing))
423 { /* restore mask for cs_get operation ... */
424 iochan_clearflag(h, EVENT_OUTPUT|EVENT_INPUT);
425 iochan_setflag(h, assoc->cs_get_mask);
426 if (assoc->state == ASSOC_DEAD)
427 iochan_setevent(assoc->client_chan, EVENT_TIMEOUT);
431 assoc->cs_put_mask = EVENT_OUTPUT;
435 if (conn->io_pending & CS_WANT_WRITE)
436 assoc->cs_put_mask |= EVENT_OUTPUT;
437 if (conn->io_pending & CS_WANT_READ)
438 assoc->cs_put_mask |= EVENT_INPUT;
439 iochan_setflag(h, assoc->cs_put_mask);
442 if (event & EVENT_EXCEPT)
444 yaz_log(YLOG_WARN, "ir_session (exception)");
446 destroy_association(assoc);
451 static int process_z_request(association *assoc, request *req, char **msg);
454 static void assoc_init_reset(association *assoc)
457 assoc->init = (bend_initrequest *) xmalloc (sizeof(*assoc->init));
459 assoc->init->stream = assoc->encode;
460 assoc->init->print = assoc->print;
461 assoc->init->auth = 0;
462 assoc->init->referenceId = 0;
463 assoc->init->implementation_version = 0;
464 assoc->init->implementation_id = 0;
465 assoc->init->implementation_name = 0;
466 assoc->init->bend_sort = NULL;
467 assoc->init->bend_search = NULL;
468 assoc->init->bend_present = NULL;
469 assoc->init->bend_esrequest = NULL;
470 assoc->init->bend_delete = NULL;
471 assoc->init->bend_scan = NULL;
472 assoc->init->bend_segment = NULL;
473 assoc->init->bend_fetch = NULL;
474 assoc->init->bend_explain = NULL;
475 assoc->init->bend_srw_scan = NULL;
477 assoc->init->charneg_request = NULL;
478 assoc->init->charneg_response = NULL;
480 assoc->init->decode = assoc->decode;
481 assoc->init->peer_name =
482 odr_strdup (assoc->encode, cs_addrstr(assoc->client_link));
484 yaz_log(log_requestdetail, "peer %s", assoc->init->peer_name);
487 static int srw_bend_init(association *assoc, Z_SRW_diagnostic **d, int *num)
489 statserv_options_block *cb = statserv_getcontrol();
492 const char *encoding = "UTF-8";
494 bend_initresult *binitres;
496 yaz_log(YLOG_LOG, "srw_bend_init config=%s", cb->configname);
497 assoc_init_reset(assoc);
499 assoc->maximumRecordSize = 3000000;
500 assoc->preferredMessageSize = 3000000;
502 ce = yaz_set_proposal_charneg(assoc->decode, &encoding, 1, 0, 0, 1);
503 assoc->init->charneg_request = ce->u.charNeg3;
506 if (!(binitres = (*cb->bend_init)(assoc->init)))
508 assoc->state = ASSOC_DEAD;
509 yaz_add_srw_diagnostic(assoc->encode, d, num,
510 YAZ_SRW_AUTHENTICATION_ERROR, 0);
513 assoc->backend = binitres->handle;
514 if (binitres->errcode)
516 assoc->state = ASSOC_DEAD;
517 yaz_add_srw_diagnostic(assoc->encode, d, num, binitres->errcode,
518 binitres->errstring);
526 static int srw_bend_fetch(association *assoc, int pos,
527 Z_SRW_searchRetrieveRequest *srw_req,
528 Z_SRW_record *record)
531 ODR o = assoc->encode;
533 rr.setname = "default";
536 rr.request_format = VAL_TEXT_XML;
537 rr.request_format_raw = yaz_oidval_to_z3950oid(assoc->decode,
540 rr.comp = (Z_RecordComposition *)
541 odr_malloc(assoc->decode, sizeof(*rr.comp));
542 rr.comp->which = Z_RecordComp_complex;
543 rr.comp->u.complex = (Z_CompSpec *)
544 odr_malloc(assoc->decode, sizeof(Z_CompSpec));
545 rr.comp->u.complex->selectAlternativeSyntax = (bool_t *)
546 odr_malloc(assoc->encode, sizeof(bool_t));
547 *rr.comp->u.complex->selectAlternativeSyntax = 0;
548 rr.comp->u.complex->num_dbSpecific = 0;
549 rr.comp->u.complex->dbSpecific = 0;
550 rr.comp->u.complex->num_recordSyntax = 0;
551 rr.comp->u.complex->recordSyntax = 0;
553 rr.comp->u.complex->generic = (Z_Specification *)
554 odr_malloc(assoc->decode, sizeof(Z_Specification));
556 /* schema uri = recordSchema (or NULL if recordSchema is not given) */
557 rr.comp->u.complex->generic->which = Z_Schema_uri;
558 rr.comp->u.complex->generic->schema.uri = srw_req->recordSchema;
560 /* ESN = recordSchema if recordSchema is present */
561 rr.comp->u.complex->generic->elementSpec = 0;
562 if (srw_req->recordSchema)
564 rr.comp->u.complex->generic->elementSpec =
565 (Z_ElementSpec *) odr_malloc(assoc->encode, sizeof(Z_ElementSpec));
566 rr.comp->u.complex->generic->elementSpec->which =
567 Z_ElementSpec_elementSetName;
568 rr.comp->u.complex->generic->elementSpec->u.elementSetName =
569 srw_req->recordSchema;
572 rr.stream = assoc->encode;
573 rr.print = assoc->print;
579 rr.output_format = VAL_TEXT_XML;
580 rr.output_format_raw = 0;
583 rr.surrogate_flag = 0;
584 rr.schema = srw_req->recordSchema;
586 if (!assoc->init->bend_fetch)
589 (*assoc->init->bend_fetch)(assoc->backend, &rr);
591 if (rr.errcode && rr.surrogate_flag)
593 int code = yaz_diag_bib1_to_srw(rr.errcode);
594 const char *message = yaz_diag_srw_str(code);
597 len += strlen(message);
599 len += strlen(rr.errstring);
601 record->recordData_buf = odr_malloc(o, len);
603 sprintf(record->recordData_buf, "<diagnostic "
604 "xmlns=\"http://www.loc.gov/zing/srw/diagnostic/\">\n"
605 " <uri>info:srw/diagnostic/1/%d</uri>\n", code);
607 sprintf(record->recordData_buf + strlen(record->recordData_buf),
608 " <details>%s</details>\n", rr.errstring);
610 sprintf(record->recordData_buf + strlen(record->recordData_buf),
611 " <message>%s</message>\n", message);
612 sprintf(record->recordData_buf + strlen(record->recordData_buf),
614 record->recordData_len = strlen(record->recordData_buf);
615 record->recordPosition = odr_intdup(o, pos);
616 record->recordSchema = "info:srw/schema/1/diagnostics-v1.1";
619 else if (rr.len >= 0)
621 record->recordData_buf = rr.record;
622 record->recordData_len = rr.len;
623 record->recordPosition = odr_intdup(o, pos);
625 record->recordSchema = odr_strdup(o, rr.schema);
627 record->recordSchema = 0;
632 static int cql2pqf(ODR odr, const char *cql, cql_transform_t ct,
633 Z_Query *query_result)
635 /* have a CQL query and CQL to PQF transform .. */
636 CQL_parser cp = cql_parser_create();
642 r = cql_parser_string(cp, cql);
645 /* CQL syntax error */
651 r = cql_transform_buf(ct,
652 cql_parser_result(cp),
653 rpn_buf, sizeof(rpn_buf)-1);
655 srw_errcode = cql_transform_error(ct, &add);
659 /* Syntax & transform OK. */
660 /* Convert PQF string to Z39.50 to RPN query struct */
661 YAZ_PQF_Parser pp = yaz_pqf_create();
662 Z_RPNQuery *rpnquery = yaz_pqf_parse(pp, odr, rpn_buf);
667 int code = yaz_pqf_error(pp, &pqf_msg, &off);
668 yaz_log(YLOG_WARN, "PQF Parser Error %s (code %d)",
674 query_result->which = Z_Query_type_1;
675 query_result->u.type_1 = rpnquery;
679 cql_parser_destroy(cp);
683 static int cql2pqf_scan(ODR odr, const char *cql, cql_transform_t ct,
684 Z_AttributesPlusTerm *result)
688 int srw_error = cql2pqf(odr, cql, ct, &query);
691 if (query.which != Z_Query_type_1 && query.which != Z_Query_type_101)
692 return 10; /* bad query type */
693 rpn = query.u.type_1;
694 if (!rpn->RPNStructure)
695 return 10; /* must be structure */
696 if (rpn->RPNStructure->which != Z_RPNStructure_simple)
697 return 10; /* must be simple */
698 if (rpn->RPNStructure->u.simple->which != Z_Operand_APT)
699 return 10; /* must be attributes plus term node .. */
700 memcpy(result, rpn->RPNStructure->u.simple->u.attributesPlusTerm,
705 static void srw_bend_search(association *assoc, request *req,
706 Z_SRW_searchRetrieveRequest *srw_req,
707 Z_SRW_searchRetrieveResponse *srw_res,
714 yaz_log(log_requestdetail, "Got SRW SearchRetrieveRequest");
715 srw_bend_init(assoc, &srw_res->diagnostics, &srw_res->num_diagnostics);
716 if (srw_res->num_diagnostics == 0 && assoc->init)
719 rr.setname = "default";
722 rr.basenames = &srw_req->database;
726 rr.query = (Z_Query *) odr_malloc (assoc->decode, sizeof(*rr.query));
727 rr.query->u.type_1 = 0;
729 if (srw_req->query_type == Z_SRW_query_type_cql)
731 if (assoc->cql_transform)
733 int srw_errcode = cql2pqf(assoc->encode, srw_req->query.cql,
734 assoc->cql_transform, rr.query);
737 yaz_add_srw_diagnostic(assoc->encode,
738 &srw_res->diagnostics,
739 &srw_res->num_diagnostics,
745 /* CQL query to backend. Wrap it - Z39.50 style */
746 ext = (Z_External *) odr_malloc(assoc->decode, sizeof(*ext));
747 ext->direct_reference = odr_getoidbystr(assoc->decode,
748 "1.2.840.10003.16.2");
749 ext->indirect_reference = 0;
751 ext->which = Z_External_CQL;
752 ext->u.cql = srw_req->query.cql;
754 rr.query->which = Z_Query_type_104;
755 rr.query->u.type_104 = ext;
758 else if (srw_req->query_type == Z_SRW_query_type_pqf)
760 Z_RPNQuery *RPNquery;
761 YAZ_PQF_Parser pqf_parser;
763 pqf_parser = yaz_pqf_create ();
765 RPNquery = yaz_pqf_parse (pqf_parser, assoc->decode,
771 int code = yaz_pqf_error (pqf_parser, &pqf_msg, &off);
772 yaz_log(log_requestdetail, "Parse error %d %s near offset %d",
774 srw_error = YAZ_SRW_QUERY_SYNTAX_ERROR;
777 rr.query->which = Z_Query_type_1;
778 rr.query->u.type_1 = RPNquery;
780 yaz_pqf_destroy (pqf_parser);
784 yaz_add_srw_diagnostic(assoc->encode, &srw_res->diagnostics,
785 &srw_res->num_diagnostics,
786 YAZ_SRW_UNSUPP_QUERY_TYPE, 0);
788 if (rr.query->u.type_1)
790 rr.stream = assoc->encode;
791 rr.decode = assoc->decode;
792 rr.print = assoc->print;
794 if ( srw_req->sort.sortKeys )
795 rr.srw_sortKeys = odr_strdup(assoc->encode,
796 srw_req->sort.sortKeys );
797 rr.association = assoc;
803 yaz_log_zquery_level(log_requestdetail,rr.query);
805 (assoc->init->bend_search)(assoc->backend, &rr);
808 if (rr.errcode == YAZ_BIB1_DATABASE_UNAVAILABLE)
814 srw_error = yaz_diag_bib1_to_srw (rr.errcode);
815 yaz_add_srw_diagnostic(assoc->encode,
816 &srw_res->diagnostics,
817 &srw_res->num_diagnostics,
818 srw_error, rr.errstring);
823 int number = srw_req->maximumRecords ? *srw_req->maximumRecords : 0;
824 int start = srw_req->startRecord ? *srw_req->startRecord : 1;
826 yaz_log(log_requestdetail, "Request to pack %d+%d out of %d",
827 start, number, rr.hits);
829 srw_res->numberOfRecords = odr_intdup(assoc->encode, rr.hits);
836 yaz_add_srw_diagnostic(assoc->encode, &srw_res->diagnostics,
837 &srw_res->num_diagnostics,
838 YAZ_SRW_FIRST_RECORD_POSITION_OUT_OF_RANGE, 0);
843 int packing = Z_SRW_recordPacking_string;
844 if (start + number > rr.hits)
845 number = rr.hits - start + 1;
846 if (srw_req->recordPacking &&
847 !strcmp(srw_req->recordPacking, "xml"))
848 packing = Z_SRW_recordPacking_XML;
849 srw_res->records = (Z_SRW_record *)
850 odr_malloc(assoc->encode,
851 number * sizeof(*srw_res->records));
852 for (i = 0; i<number; i++)
856 srw_res->records[j].recordPacking = packing;
857 srw_res->records[j].recordData_buf = 0;
858 yaz_log(YLOG_DEBUG, "srw_bend_fetch %d", i+start);
859 errcode = srw_bend_fetch(assoc, i+start, srw_req,
860 srw_res->records + j);
863 yaz_add_srw_diagnostic(assoc->encode,
864 &srw_res->diagnostics,
865 &srw_res->num_diagnostics,
866 yaz_diag_bib1_to_srw (errcode),
871 if (srw_res->records[j].recordData_buf)
874 srw_res->num_records = j;
876 srw_res->records = 0;
884 const char *querystr = "?";
885 const char *querytype = "?";
886 WRBUF wr = wrbuf_alloc();
888 switch (srw_req->query_type)
890 case Z_SRW_query_type_cql:
892 querystr = srw_req->query.cql;
894 case Z_SRW_query_type_pqf:
896 querystr = srw_req->query.pqf;
899 wrbuf_printf(wr, "SRWSearch ");
900 if (srw_res->num_diagnostics)
901 wrbuf_printf(wr, "ERROR %s", srw_res->diagnostics[0].uri);
902 else if (*http_code != 200)
903 wrbuf_printf(wr, "ERROR info:http/%d", *http_code);
904 else if (srw_res->numberOfRecords)
906 wrbuf_printf(wr, "OK %d",
907 (srw_res->numberOfRecords ?
908 *srw_res->numberOfRecords : 0));
910 wrbuf_printf(wr, " %s %d+%d",
911 (srw_res->resultSetId ?
912 srw_res->resultSetId : "-"),
913 (srw_req->startRecord ? *srw_req->startRecord : 1),
914 srw_res->num_records);
915 yaz_log(log_request, "%s %s: %s", wrbuf_buf(wr), querytype, querystr);
920 static char *srw_bend_explain_default(void *handle, bend_explain_rr *rr)
923 xmlNodePtr ptr = rr->server_node_ptr;
926 for (ptr = ptr->children; ptr; ptr = ptr->next)
928 if (ptr->type != XML_ELEMENT_NODE)
930 if (!strcmp((const char *) ptr->name, "explain"))
933 xmlDocPtr doc = xmlNewDoc("1.0");
937 ptr = xmlCopyNode(ptr, 1);
939 xmlDocSetRootElement(doc, ptr);
941 xmlDocDumpMemory(doc, &buf_out, &len);
942 content = (char*) odr_malloc(rr->stream, 1+len);
943 memcpy(content, buf_out, len);
948 rr->explain_buf = content;
956 static void srw_bend_explain(association *assoc, request *req,
957 Z_SRW_explainRequest *srw_req,
958 Z_SRW_explainResponse *srw_res,
961 yaz_log(log_requestdetail, "Got SRW ExplainRequest");
963 srw_bend_init(assoc, &srw_res->diagnostics, &srw_res->num_diagnostics);
968 rr.stream = assoc->encode;
969 rr.decode = assoc->decode;
970 rr.print = assoc->print;
972 rr.database = srw_req->database;
973 rr.server_node_ptr = assoc->server_node_ptr;
974 rr.schema = "http://explain.z3950.org/dtd/2.0/";
975 if (assoc->init->bend_explain)
976 (*assoc->init->bend_explain)(assoc->backend, &rr);
978 srw_bend_explain_default(assoc->backend, &rr);
982 int packing = Z_SRW_recordPacking_string;
983 if (srw_req->recordPacking &&
984 !strcmp(srw_req->recordPacking, "xml"))
985 packing = Z_SRW_recordPacking_XML;
986 srw_res->record.recordSchema = rr.schema;
987 srw_res->record.recordPacking = packing;
988 srw_res->record.recordData_buf = rr.explain_buf;
989 srw_res->record.recordData_len = strlen(rr.explain_buf);
990 srw_res->record.recordPosition = 0;
996 static void srw_bend_scan(association *assoc, request *req,
997 Z_SRW_scanRequest *srw_req,
998 Z_SRW_scanResponse *srw_res,
1001 yaz_log(log_requestdetail, "Got SRW ScanRequest");
1004 srw_bend_init(assoc, &srw_res->diagnostics, &srw_res->num_diagnostics);
1005 if (srw_res->num_diagnostics == 0 && assoc->init)
1007 struct scan_entry *save_entries;
1009 bend_scan_rr *bsrr = (bend_scan_rr *)
1010 odr_malloc (assoc->encode, sizeof(*bsrr));
1011 bsrr->num_bases = 1;
1012 bsrr->basenames = &srw_req->database;
1014 bsrr->num_entries = srw_req->maximumTerms ?
1015 *srw_req->maximumTerms : 10;
1016 bsrr->term_position = srw_req->responsePosition ?
1017 *srw_req->responsePosition : 1;
1020 bsrr->errstring = 0;
1021 bsrr->referenceId = 0;
1022 bsrr->stream = assoc->encode;
1023 bsrr->print = assoc->print;
1024 bsrr->step_size = odr_intdup(assoc->decode, 0);
1027 if (bsrr->num_entries > 0)
1030 bsrr->entries = odr_malloc(assoc->decode, sizeof(*bsrr->entries) *
1032 for (i = 0; i<bsrr->num_entries; i++)
1034 bsrr->entries[i].term = 0;
1035 bsrr->entries[i].occurrences = 0;
1036 bsrr->entries[i].errcode = 0;
1037 bsrr->entries[i].errstring = 0;
1038 bsrr->entries[i].display_term = 0;
1041 save_entries = bsrr->entries; /* save it so we can compare later */
1043 if (srw_req->query_type == Z_SRW_query_type_pqf &&
1044 assoc->init->bend_scan)
1046 Odr_oid *scan_attributeSet = 0;
1048 YAZ_PQF_Parser pqf_parser = yaz_pqf_create();
1050 bsrr->term = yaz_pqf_scan(pqf_parser, assoc->decode,
1052 srw_req->scanClause.pqf);
1053 if (scan_attributeSet &&
1054 (attset = oid_getentbyoid(scan_attributeSet)) &&
1055 (attset->oclass == CLASS_ATTSET ||
1056 attset->oclass == CLASS_GENERAL))
1057 bsrr->attributeset = attset->value;
1059 bsrr->attributeset = VAL_NONE;
1060 yaz_pqf_destroy(pqf_parser);
1061 bsrr->scanClause = 0;
1062 ((int (*)(void *, bend_scan_rr *))
1063 (*assoc->init->bend_scan))(assoc->backend, bsrr);
1065 else if (srw_req->query_type == Z_SRW_query_type_cql
1066 && assoc->init->bend_srw_scan)
1068 if (assoc->cql_transform)
1071 bsrr->scanClause = 0;
1072 bsrr->attributeset = VAL_NONE;
1073 bsrr->term = odr_malloc(assoc->decode, sizeof(*bsrr->term));
1074 srw_error = cql2pqf_scan(assoc->encode,
1075 srw_req->scanClause.cql,
1076 assoc->cql_transform,
1079 yaz_add_srw_diagnostic(assoc->encode, &srw_res->diagnostics,
1080 &srw_res->num_diagnostics,
1084 ((int (*)(void *, bend_scan_rr *))
1085 (*assoc->init->bend_scan))(assoc->backend, bsrr);
1091 bsrr->attributeset = VAL_NONE;
1092 bsrr->scanClause = srw_req->scanClause.cql;
1093 ((int (*)(void *, bend_scan_rr *))
1094 (*assoc->init->bend_srw_scan))(assoc->backend, bsrr);
1099 yaz_add_srw_diagnostic(assoc->encode, &srw_res->diagnostics,
1100 &srw_res->num_diagnostics,
1101 YAZ_SRW_UNSUPP_OPERATION, "scan");
1106 if (bsrr->errcode == YAZ_BIB1_DATABASE_UNAVAILABLE)
1111 srw_error = yaz_diag_bib1_to_srw (bsrr->errcode);
1113 yaz_add_srw_diagnostic(assoc->encode, &srw_res->diagnostics,
1114 &srw_res->num_diagnostics,
1115 srw_error, bsrr->errstring);
1117 else if (srw_res->num_diagnostics == 0 && bsrr->num_entries)
1120 srw_res->terms = (Z_SRW_scanTerm*)
1121 odr_malloc(assoc->encode, sizeof(*srw_res->terms) *
1124 srw_res->num_terms = bsrr->num_entries;
1125 for (i = 0; i<bsrr->num_entries; i++)
1127 Z_SRW_scanTerm *t = srw_res->terms + i;
1128 t->value = odr_strdup(assoc->encode, bsrr->entries[i].term);
1129 t->numberOfRecords =
1130 odr_intdup(assoc->encode, bsrr->entries[i].occurrences);
1132 if (save_entries == bsrr->entries &&
1133 bsrr->entries[i].display_term)
1135 /* the entries was _not_ set by the handler. So it's
1136 safe to test for new member display_term. It is
1139 t->displayTerm = odr_strdup(assoc->encode,
1140 bsrr->entries[i].display_term);
1148 WRBUF wr = wrbuf_alloc();
1149 const char *querytype = 0;
1150 const char *querystr = 0;
1152 switch(srw_req->query_type)
1154 case Z_SRW_query_type_pqf:
1156 querystr = srw_req->scanClause.pqf;
1158 case Z_SRW_query_type_cql:
1160 querystr = srw_req->scanClause.cql;
1163 querytype = "Unknown";
1166 wrbuf_printf(wr, "SRWScan %d+%d",
1167 (srw_req->responsePosition ?
1168 *srw_req->responsePosition : 1),
1169 (srw_req->maximumTerms ?
1170 *srw_req->maximumTerms : 1));
1171 if (srw_res->num_diagnostics)
1172 wrbuf_printf(wr, " ERROR %s", srw_res->diagnostics[0].uri);
1174 wrbuf_printf(wr, " OK -");
1175 wrbuf_printf(wr, " %s: %s", querytype, querystr);
1176 yaz_log(log_request, "%s", wrbuf_buf(wr) );
1183 static void process_http_request(association *assoc, request *req)
1185 Z_HTTP_Request *hreq = req->gdu_request->u.HTTP_Request;
1186 ODR o = assoc->encode;
1187 int r = 2; /* 2=NOT TAKEN, 1=TAKEN, 0=SOAP TAKEN */
1189 Z_SOAP *soap_package = 0;
1192 Z_HTTP_Response *hres = 0;
1194 char *stylesheet = 0;
1195 Z_SRW_diagnostic *diagnostic = 0;
1196 int num_diagnostic = 0;
1197 const char *host = z_HTTP_header_lookup(hreq->headers, "Host");
1199 if (!control_association(assoc, host, 0))
1201 p = z_get_HTTP_Response(o, 404);
1204 if (r == 2 && !strcmp(hreq->path, "/test"))
1206 p = z_get_HTTP_Response(o, 200);
1207 hres = p->u.HTTP_Response;
1208 hres->content_buf = "1234567890\n";
1209 hres->content_len = strlen(hres->content_buf);
1214 r = yaz_srw_decode(hreq, &sr, &soap_package, assoc->decode, &charset);
1215 yaz_log(YLOG_DEBUG, "yaz_srw_decode returned %d", r);
1217 if (r == 2) /* not taken */
1219 r = yaz_sru_decode(hreq, &sr, &soap_package, assoc->decode, &charset,
1220 &diagnostic, &num_diagnostic);
1221 yaz_log(YLOG_DEBUG, "yaz_sru_decode returned %d", r);
1223 if (r == 0) /* decode SRW/SRU OK .. */
1225 int http_code = 200;
1226 if (sr->which == Z_SRW_searchRetrieve_request)
1229 yaz_srw_get(assoc->encode, Z_SRW_searchRetrieve_response);
1231 stylesheet = sr->u.request->stylesheet;
1234 res->u.response->diagnostics = diagnostic;
1235 res->u.response->num_diagnostics = num_diagnostic;
1239 srw_bend_search(assoc, req, sr->u.request, res->u.response,
1242 if (http_code == 200)
1243 soap_package->u.generic->p = res;
1245 else if (sr->which == Z_SRW_explain_request)
1247 Z_SRW_PDU *res = yaz_srw_get(o, Z_SRW_explain_response);
1248 stylesheet = sr->u.explain_request->stylesheet;
1251 res->u.explain_response->diagnostics = diagnostic;
1252 res->u.explain_response->num_diagnostics = num_diagnostic;
1254 srw_bend_explain(assoc, req, sr->u.explain_request,
1255 res->u.explain_response, &http_code);
1256 if (http_code == 200)
1257 soap_package->u.generic->p = res;
1259 else if (sr->which == Z_SRW_scan_request)
1261 Z_SRW_PDU *res = yaz_srw_get(o, Z_SRW_scan_response);
1262 stylesheet = sr->u.scan_request->stylesheet;
1265 res->u.scan_response->diagnostics = diagnostic;
1266 res->u.scan_response->num_diagnostics = num_diagnostic;
1268 srw_bend_scan(assoc, req, sr->u.scan_request,
1269 res->u.scan_response, &http_code);
1270 if (http_code == 200)
1271 soap_package->u.generic->p = res;
1275 yaz_log(log_request, "SOAP ERROR");
1276 /* FIXME - what error, what query */
1278 z_soap_error(assoc->encode, soap_package,
1279 "SOAP-ENV:Client", "Bad method", 0);
1281 if (http_code == 200 || http_code == 500)
1283 static Z_SOAP_Handler soap_handlers[3] = {
1285 {"http://www.loc.gov/zing/srw/", 0,
1286 (Z_SOAP_fun) yaz_srw_codec},
1287 {"http://www.loc.gov/zing/srw/v1.0/", 0,
1288 (Z_SOAP_fun) yaz_srw_codec},
1294 p = z_get_HTTP_Response(o, 200);
1295 hres = p->u.HTTP_Response;
1296 ret = z_soap_codec_enc_xsl(assoc->encode, &soap_package,
1297 &hres->content_buf, &hres->content_len,
1298 soap_handlers, charset, stylesheet);
1299 hres->code = http_code;
1301 strcpy(ctype, "text/xml");
1304 strcat(ctype, "; charset=");
1305 strcat(ctype, charset);
1307 z_HTTP_header_add(o, &hres->headers, "Content-Type", ctype);
1310 p = z_get_HTTP_Response(o, http_code);
1314 p = z_get_HTTP_Response(o, 500);
1315 hres = p->u.HTTP_Response;
1316 if (!strcmp(hreq->version, "1.0"))
1318 const char *v = z_HTTP_header_lookup(hreq->headers, "Connection");
1319 if (v && !strcmp(v, "Keep-Alive"))
1323 hres->version = "1.0";
1327 const char *v = z_HTTP_header_lookup(hreq->headers, "Connection");
1328 if (v && !strcmp(v, "close"))
1332 hres->version = "1.1";
1336 z_HTTP_header_add(o, &hres->headers, "Connection", "close");
1337 assoc->state = ASSOC_DEAD;
1338 assoc->cs_get_mask = 0;
1343 const char *alive = z_HTTP_header_lookup(hreq->headers, "Keep-Alive");
1345 if (alive && isdigit(*(const unsigned char *) alive))
1349 if (t < 0 || t > 3600)
1351 iochan_settimeout(assoc->client_chan,t);
1352 z_HTTP_header_add(o, &hres->headers, "Connection", "Keep-Alive");
1354 process_gdu_response(assoc, req, p);
1357 static void process_gdu_request(association *assoc, request *req)
1359 if (req->gdu_request->which == Z_GDU_Z3950)
1362 req->apdu_request = req->gdu_request->u.z3950;
1363 if (process_z_request(assoc, req, &msg) < 0)
1364 do_close_req(assoc, Z_Close_systemProblem, msg, req);
1366 else if (req->gdu_request->which == Z_GDU_HTTP_Request)
1367 process_http_request(assoc, req);
1370 do_close_req(assoc, Z_Close_systemProblem, "bad protocol packet", req);
1375 * Initiate request processing.
1377 static int process_z_request(association *assoc, request *req, char **msg)
1383 *msg = "Unknown Error";
1384 assert(req && req->state == REQUEST_IDLE);
1385 if (req->apdu_request->which != Z_APDU_initRequest && !assoc->init)
1387 *msg = "Missing InitRequest";
1390 switch (req->apdu_request->which)
1392 case Z_APDU_initRequest:
1393 res = process_initRequest(assoc, req); break;
1394 case Z_APDU_searchRequest:
1395 res = process_searchRequest(assoc, req, &fd); break;
1396 case Z_APDU_presentRequest:
1397 res = process_presentRequest(assoc, req, &fd); break;
1398 case Z_APDU_scanRequest:
1399 if (assoc->init->bend_scan)
1400 res = process_scanRequest(assoc, req, &fd);
1403 *msg = "Cannot handle Scan APDU";
1407 case Z_APDU_extendedServicesRequest:
1408 if (assoc->init->bend_esrequest)
1409 res = process_ESRequest(assoc, req, &fd);
1412 *msg = "Cannot handle Extended Services APDU";
1416 case Z_APDU_sortRequest:
1417 if (assoc->init->bend_sort)
1418 res = process_sortRequest(assoc, req, &fd);
1421 *msg = "Cannot handle Sort APDU";
1426 process_close(assoc, req);
1428 case Z_APDU_deleteResultSetRequest:
1429 if (assoc->init->bend_delete)
1430 res = process_deleteRequest(assoc, req, &fd);
1433 *msg = "Cannot handle Delete APDU";
1437 case Z_APDU_segmentRequest:
1438 if (assoc->init->bend_segment)
1440 res = process_segmentRequest (assoc, req);
1444 *msg = "Cannot handle Segment APDU";
1448 case Z_APDU_triggerResourceControlRequest:
1451 *msg = "Bad APDU received";
1456 yaz_log(YLOG_DEBUG, " result immediately available");
1457 retval = process_z_response(assoc, req, res);
1461 yaz_log(YLOG_DEBUG, " result unavailble");
1464 else /* no result yet - one will be provided later */
1468 /* Set up an I/O handler for the fd supplied by the backend */
1470 yaz_log(YLOG_DEBUG, " establishing handler for result");
1471 req->state = REQUEST_PENDING;
1472 if (!(chan = iochan_create(fd, backend_response, EVENT_INPUT, 0)))
1474 iochan_setdata(chan, assoc);
1481 * Handle message from the backend.
1483 void backend_response(IOCHAN i, int event)
1485 association *assoc = (association *)iochan_getdata(i);
1486 request *req = request_head(&assoc->incoming);
1490 yaz_log(YLOG_DEBUG, "backend_response");
1491 assert(assoc && req && req->state != REQUEST_IDLE);
1492 /* determine what it is we're waiting for */
1493 switch (req->apdu_request->which)
1495 case Z_APDU_searchRequest:
1496 res = response_searchRequest(assoc, req, 0, &fd); break;
1498 case Z_APDU_presentRequest:
1499 res = response_presentRequest(assoc, req, 0, &fd); break;
1500 case Z_APDU_scanRequest:
1501 res = response_scanRequest(assoc, req, 0, &fd); break;
1504 yaz_log(YLOG_FATAL, "Serious programmer's lapse or bug");
1507 if ((res && process_z_response(assoc, req, res) < 0) || fd < 0)
1509 yaz_log(YLOG_WARN, "Fatal error when talking to backend");
1510 do_close(assoc, Z_Close_systemProblem, 0);
1514 else if (!res) /* no result yet - try again later */
1516 yaz_log(YLOG_DEBUG, " no result yet");
1517 iochan_setfd(i, fd); /* in case fd has changed */
1522 * Encode response, and transfer the request structure to the outgoing queue.
1524 static int process_gdu_response(association *assoc, request *req, Z_GDU *res)
1526 odr_setbuf(assoc->encode, req->response, req->size_response, 1);
1530 if (!z_GDU(assoc->print, &res, 0, 0))
1531 yaz_log(YLOG_WARN, "ODR print error: %s",
1532 odr_errmsg(odr_geterror(assoc->print)));
1533 odr_reset(assoc->print);
1535 if (!z_GDU(assoc->encode, &res, 0, 0))
1537 yaz_log(YLOG_WARN, "ODR error when encoding PDU: %s [element %s]",
1538 odr_errmsg(odr_geterror(assoc->decode)),
1539 odr_getelement(assoc->decode));
1542 req->response = odr_getbuf(assoc->encode, &req->len_response,
1543 &req->size_response);
1544 odr_setbuf(assoc->encode, 0, 0, 0); /* don'txfree if we abort later */
1545 odr_reset(assoc->encode);
1546 req->state = REQUEST_IDLE;
1547 request_enq(&assoc->outgoing, req);
1548 /* turn the work over to the ir_session handler */
1549 iochan_setflag(assoc->client_chan, EVENT_OUTPUT);
1550 assoc->cs_put_mask = EVENT_OUTPUT;
1551 /* Is there more work to be done? give that to the input handler too */
1553 if (request_head(&assoc->incoming))
1555 yaz_log (YLOG_DEBUG, "more work to be done");
1556 iochan_setevent(assoc->client_chan, EVENT_WORK);
1563 * Encode response, and transfer the request structure to the outgoing queue.
1565 static int process_z_response(association *assoc, request *req, Z_APDU *res)
1567 Z_GDU *gres = (Z_GDU *) odr_malloc(assoc->encode, sizeof(*res));
1568 gres->which = Z_GDU_Z3950;
1569 gres->u.z3950 = res;
1571 return process_gdu_response(assoc, req, gres);
1574 static char *get_vhost(Z_OtherInformation *otherInfo)
1576 return yaz_oi_get_string_oidval(&otherInfo, VAL_PROXY, 1, 0);
1580 * Handle init request.
1581 * At the moment, we don't check the options
1582 * anywhere else in the code - we just try not to do anything that would
1583 * break a naive client. We'll toss 'em into the association block when
1584 * we need them there.
1586 static Z_APDU *process_initRequest(association *assoc, request *reqb)
1588 Z_InitRequest *req = reqb->apdu_request->u.initRequest;
1589 Z_APDU *apdu = zget_APDU(assoc->encode, Z_APDU_initResponse);
1590 Z_InitResponse *resp = apdu->u.initResponse;
1591 bend_initresult *binitres;
1594 statserv_options_block *cb = 0; /* by default no control for backend */
1596 if (control_association(assoc, get_vhost(req->otherInfo), 1))
1597 cb = statserv_getcontrol(); /* got control block for backend */
1599 yaz_log(log_requestdetail, "Got initRequest");
1600 if (req->implementationId)
1601 yaz_log(log_requestdetail, "Id: %s",
1602 req->implementationId);
1603 if (req->implementationName)
1604 yaz_log(log_requestdetail, "Name: %s",
1605 req->implementationName);
1606 if (req->implementationVersion)
1607 yaz_log(log_requestdetail, "Version: %s",
1608 req->implementationVersion);
1610 assoc_init_reset(assoc);
1612 assoc->init->auth = req->idAuthentication;
1613 assoc->init->referenceId = req->referenceId;
1615 if (ODR_MASK_GET(req->options, Z_Options_negotiationModel))
1617 Z_CharSetandLanguageNegotiation *negotiation =
1618 yaz_get_charneg_record (req->otherInfo);
1620 negotiation->which == Z_CharSetandLanguageNegotiation_proposal)
1621 assoc->init->charneg_request = negotiation;
1627 if (req->implementationVersion)
1628 yaz_log(log_requestdetail, "Config: %s",
1631 iochan_settimeout(assoc->client_chan, cb->idle_timeout * 60);
1633 /* we have a backend control block, so call that init function */
1634 if (!(binitres = (*cb->bend_init)(assoc->init)))
1636 yaz_log(YLOG_WARN, "Bad response from backend.");
1639 assoc->backend = binitres->handle;
1643 /* no backend. return error */
1644 binitres = odr_malloc(assoc->encode, sizeof(*binitres));
1645 binitres->errstring = 0;
1646 binitres->errcode = YAZ_BIB1_PERMANENT_SYSTEM_ERROR;
1647 iochan_settimeout(assoc->client_chan, 10);
1649 if ((assoc->init->bend_sort))
1650 yaz_log (YLOG_DEBUG, "Sort handler installed");
1651 if ((assoc->init->bend_search))
1652 yaz_log (YLOG_DEBUG, "Search handler installed");
1653 if ((assoc->init->bend_present))
1654 yaz_log (YLOG_DEBUG, "Present handler installed");
1655 if ((assoc->init->bend_esrequest))
1656 yaz_log (YLOG_DEBUG, "ESRequest handler installed");
1657 if ((assoc->init->bend_delete))
1658 yaz_log (YLOG_DEBUG, "Delete handler installed");
1659 if ((assoc->init->bend_scan))
1660 yaz_log (YLOG_DEBUG, "Scan handler installed");
1661 if ((assoc->init->bend_segment))
1662 yaz_log (YLOG_DEBUG, "Segment handler installed");
1664 resp->referenceId = req->referenceId;
1666 /* let's tell the client what we can do */
1667 if (ODR_MASK_GET(req->options, Z_Options_search))
1669 ODR_MASK_SET(resp->options, Z_Options_search);
1670 strcat(options, "srch");
1672 if (ODR_MASK_GET(req->options, Z_Options_present))
1674 ODR_MASK_SET(resp->options, Z_Options_present);
1675 strcat(options, " prst");
1677 if (ODR_MASK_GET(req->options, Z_Options_delSet) &&
1678 assoc->init->bend_delete)
1680 ODR_MASK_SET(resp->options, Z_Options_delSet);
1681 strcat(options, " del");
1683 if (ODR_MASK_GET(req->options, Z_Options_extendedServices) &&
1684 assoc->init->bend_esrequest)
1686 ODR_MASK_SET(resp->options, Z_Options_extendedServices);
1687 strcat (options, " extendedServices");
1689 if (ODR_MASK_GET(req->options, Z_Options_namedResultSets))
1691 ODR_MASK_SET(resp->options, Z_Options_namedResultSets);
1692 strcat(options, " namedresults");
1694 if (ODR_MASK_GET(req->options, Z_Options_scan) && assoc->init->bend_scan)
1696 ODR_MASK_SET(resp->options, Z_Options_scan);
1697 strcat(options, " scan");
1699 if (ODR_MASK_GET(req->options, Z_Options_concurrentOperations))
1701 ODR_MASK_SET(resp->options, Z_Options_concurrentOperations);
1702 strcat(options, " concurrop");
1704 if (ODR_MASK_GET(req->options, Z_Options_sort) && assoc->init->bend_sort)
1706 ODR_MASK_SET(resp->options, Z_Options_sort);
1707 strcat(options, " sort");
1710 if (ODR_MASK_GET(req->options, Z_Options_negotiationModel)
1711 && assoc->init->charneg_response)
1713 Z_OtherInformation **p;
1714 Z_OtherInformationUnit *p0;
1716 yaz_oi_APDU(apdu, &p);
1718 if ((p0=yaz_oi_update(p, assoc->encode, NULL, 0, 0))) {
1719 ODR_MASK_SET(resp->options, Z_Options_negotiationModel);
1721 p0->which = Z_OtherInfo_externallyDefinedInfo;
1722 p0->information.externallyDefinedInfo =
1723 assoc->init->charneg_response;
1725 ODR_MASK_SET(resp->options, Z_Options_negotiationModel);
1726 strcat(options, " negotiation");
1729 ODR_MASK_SET(resp->options, Z_Options_triggerResourceCtrl);
1731 if (ODR_MASK_GET(req->protocolVersion, Z_ProtocolVersion_1))
1733 ODR_MASK_SET(resp->protocolVersion, Z_ProtocolVersion_1);
1734 assoc->version = 1; /* 1 & 2 are equivalent */
1736 if (ODR_MASK_GET(req->protocolVersion, Z_ProtocolVersion_2))
1738 ODR_MASK_SET(resp->protocolVersion, Z_ProtocolVersion_2);
1741 if (ODR_MASK_GET(req->protocolVersion, Z_ProtocolVersion_3))
1743 ODR_MASK_SET(resp->protocolVersion, Z_ProtocolVersion_3);
1747 yaz_log(log_requestdetail, "Negotiated to v%d: %s", assoc->version, options);
1748 assoc->maximumRecordSize = *req->maximumRecordSize;
1750 if (cb && assoc->maximumRecordSize > cb->maxrecordsize)
1751 assoc->maximumRecordSize = cb->maxrecordsize;
1752 assoc->preferredMessageSize = *req->preferredMessageSize;
1753 if (assoc->preferredMessageSize > assoc->maximumRecordSize)
1754 assoc->preferredMessageSize = assoc->maximumRecordSize;
1756 resp->preferredMessageSize = &assoc->preferredMessageSize;
1757 resp->maximumRecordSize = &assoc->maximumRecordSize;
1759 resp->implementationId = odr_prepend(assoc->encode,
1760 assoc->init->implementation_id,
1761 resp->implementationId);
1763 resp->implementationName = odr_prepend(assoc->encode,
1764 assoc->init->implementation_name,
1765 odr_prepend(assoc->encode, "GFS", resp->implementationName));
1767 version = odr_strdup(assoc->encode, "$Revision: 1.58 $");
1768 if (strlen(version) > 10) /* check for unexpanded CVS strings */
1769 version[strlen(version)-2] = '\0';
1770 resp->implementationVersion = odr_prepend(assoc->encode,
1771 assoc->init->implementation_version,
1772 odr_prepend(assoc->encode, &version[11],
1773 resp->implementationVersion));
1775 if (binitres->errcode)
1777 assoc->state = ASSOC_DEAD;
1778 resp->userInformationField =
1779 init_diagnostics(assoc->encode, binitres->errcode,
1780 binitres->errstring);
1785 WRBUF wr = wrbuf_alloc();
1786 wrbuf_printf(wr, "Init ");
1787 if (binitres->errcode)
1788 wrbuf_printf(wr, "ERROR %d", binitres->errcode);
1790 wrbuf_printf(wr, "OK -");
1791 wrbuf_printf(wr, " ID:%s Name:%s Version:%s",
1792 (req->implementationId ? req->implementationId :"-"),
1793 (req->implementationName ?
1794 req->implementationName : "-"),
1795 (req->implementationVersion ?
1796 req->implementationVersion : "-")
1798 yaz_log(log_request, "%s", wrbuf_buf(wr));
1805 * Set the specified `errcode' and `errstring' into a UserInfo-1
1806 * external to be returned to the client in accordance with Z35.90
1807 * Implementor Agreement 5 (Returning diagnostics in an InitResponse):
1808 * http://lcweb.loc.gov/z3950/agency/agree/initdiag.html
1810 static Z_External *init_diagnostics(ODR odr, int error, const char *addinfo)
1812 yaz_log(log_requestdetail, "[%d] %s%s%s", error, diagbib1_str(error),
1813 addinfo ? " -- " : "", addinfo ? addinfo : "");
1814 return zget_init_diagnostics(odr, error, addinfo);
1818 * nonsurrogate diagnostic record.
1820 static Z_Records *diagrec(association *assoc, int error, char *addinfo)
1822 Z_Records *rec = (Z_Records *) odr_malloc (assoc->encode, sizeof(*rec));
1824 yaz_log(log_requestdetail, "[%d] %s%s%s", error, diagbib1_str(error),
1825 addinfo ? " -- " : "", addinfo ? addinfo : "");
1827 rec->which = Z_Records_NSD;
1828 rec->u.nonSurrogateDiagnostic = zget_DefaultDiagFormat(assoc->encode,
1834 * surrogate diagnostic.
1836 static Z_NamePlusRecord *surrogatediagrec(association *assoc,
1838 int error, const char *addinfo)
1840 yaz_log(log_requestdetail, "[%d] %s%s%s", error, diagbib1_str(error),
1841 addinfo ? " -- " : "", addinfo ? addinfo : "");
1842 return zget_surrogateDiagRec(assoc->encode, dbname, error, addinfo);
1845 static Z_Records *pack_records(association *a, char *setname, int start,
1846 int *num, Z_RecordComposition *comp,
1847 int *next, int *pres, oid_value format,
1848 Z_ReferenceId *referenceId,
1849 int *oid, int *errcode)
1851 int recno, total_length = 0, toget = *num, dumped_records = 0;
1852 Z_Records *records =
1853 (Z_Records *) odr_malloc (a->encode, sizeof(*records));
1854 Z_NamePlusRecordList *reclist =
1855 (Z_NamePlusRecordList *) odr_malloc (a->encode, sizeof(*reclist));
1856 Z_NamePlusRecord **list =
1857 (Z_NamePlusRecord **) odr_malloc (a->encode, sizeof(*list) * toget);
1859 records->which = Z_Records_DBOSD;
1860 records->u.databaseOrSurDiagnostics = reclist;
1861 reclist->num_records = 0;
1862 reclist->records = list;
1863 *pres = Z_PresentStatus_success;
1867 yaz_log(log_requestdetail, "Request to pack %d+%d %s", start, toget, setname);
1868 yaz_log(log_requestdetail, "pms=%d, mrs=%d", a->preferredMessageSize,
1869 a->maximumRecordSize);
1870 for (recno = start; reclist->num_records < toget; recno++)
1873 Z_NamePlusRecord *thisrec;
1874 int this_length = 0;
1876 * we get the number of bytes allocated on the stream before any
1877 * allocation done by the backend - this should give us a reasonable
1878 * idea of the total size of the data so far.
1880 total_length = odr_total(a->encode) - dumped_records;
1886 freq.last_in_set = 0;
1887 freq.setname = setname;
1888 freq.surrogate_flag = 0;
1889 freq.number = recno;
1891 freq.request_format = format;
1892 freq.request_format_raw = oid;
1893 freq.output_format = format;
1894 freq.output_format_raw = 0;
1895 freq.stream = a->encode;
1896 freq.print = a->print;
1897 freq.referenceId = referenceId;
1899 (*a->init->bend_fetch)(a->backend, &freq);
1901 *next = freq.last_in_set ? 0 : recno + 1;
1903 /* backend should be able to signal whether error is system-wide
1904 or only pertaining to current record */
1907 if (!freq.surrogate_flag)
1910 *pres = Z_PresentStatus_failure;
1911 /* for 'present request out of range',
1912 set addinfo to record position if not set */
1913 if (freq.errcode == YAZ_BIB1_PRESENT_REQUEST_OUT_OF_RANGE &&
1914 freq.errstring == 0)
1916 sprintf (s, "%d", recno);
1920 *errcode = freq.errcode;
1921 return diagrec(a, freq.errcode, freq.errstring);
1923 reclist->records[reclist->num_records] =
1924 surrogatediagrec(a, freq.basename, freq.errcode,
1926 reclist->num_records++;
1929 if (freq.record == 0) /* no error and no record ? */
1931 *next = 0; /* signal end-of-set and stop */
1935 this_length = freq.len;
1937 this_length = odr_total(a->encode) - total_length - dumped_records;
1938 yaz_log(YLOG_DEBUG, " fetched record, len=%d, total=%d dumped=%d",
1939 this_length, total_length, dumped_records);
1940 if (a->preferredMessageSize > 0 &&
1941 this_length + total_length > a->preferredMessageSize)
1943 /* record is small enough, really */
1944 if (this_length <= a->preferredMessageSize && recno > start)
1946 yaz_log(log_requestdetail, " Dropped last normal-sized record");
1947 *pres = Z_PresentStatus_partial_2;
1950 /* record can only be fetched by itself */
1951 if (this_length < a->maximumRecordSize)
1953 yaz_log(log_requestdetail, " Record > prefmsgsz");
1956 yaz_log(YLOG_DEBUG, " Dropped it");
1957 reclist->records[reclist->num_records] =
1958 surrogatediagrec(a, freq.basename, 16, 0);
1959 reclist->num_records++;
1960 dumped_records += this_length;
1964 else /* too big entirely */
1966 yaz_log(log_requestdetail, "Record > maxrcdsz this=%d max=%d",
1967 this_length, a->maximumRecordSize);
1968 reclist->records[reclist->num_records] =
1969 surrogatediagrec(a, freq.basename, 17, 0);
1970 reclist->num_records++;
1971 dumped_records += this_length;
1976 if (!(thisrec = (Z_NamePlusRecord *)
1977 odr_malloc(a->encode, sizeof(*thisrec))))
1980 thisrec->databaseName = odr_strdup(a->encode, freq.basename);
1982 thisrec->databaseName = 0;
1983 thisrec->which = Z_NamePlusRecord_databaseRecord;
1985 if (freq.output_format_raw)
1987 struct oident *ident = oid_getentbyoid(freq.output_format_raw);
1988 freq.output_format = ident->value;
1990 thisrec->u.databaseRecord = z_ext_record(a->encode, freq.output_format,
1991 freq.record, freq.len);
1992 if (!thisrec->u.databaseRecord)
1994 reclist->records[reclist->num_records] = thisrec;
1995 reclist->num_records++;
1997 *num = reclist->num_records;
2001 static Z_APDU *process_searchRequest(association *assoc, request *reqb,
2004 Z_SearchRequest *req = reqb->apdu_request->u.searchRequest;
2005 bend_search_rr *bsrr =
2006 (bend_search_rr *)nmem_malloc (reqb->request_mem, sizeof(*bsrr));
2008 yaz_log(log_requestdetail, "Got SearchRequest.");
2010 bsrr->request = reqb;
2011 bsrr->association = assoc;
2012 bsrr->referenceId = req->referenceId;
2013 save_referenceId (reqb, bsrr->referenceId);
2014 bsrr->srw_sortKeys = 0;
2016 yaz_log (log_requestdetail, "ResultSet '%s'", req->resultSetName);
2017 if (req->databaseNames)
2020 for (i = 0; i < req->num_databaseNames; i++)
2021 yaz_log (log_requestdetail, "Database '%s'", req->databaseNames[i]);
2024 yaz_log_zquery_level(log_requestdetail,req->query);
2026 if (assoc->init->bend_search)
2028 bsrr->setname = req->resultSetName;
2029 bsrr->replace_set = *req->replaceIndicator;
2030 bsrr->num_bases = req->num_databaseNames;
2031 bsrr->basenames = req->databaseNames;
2032 bsrr->query = req->query;
2033 bsrr->stream = assoc->encode;
2034 nmem_transfer(bsrr->stream->mem, reqb->request_mem);
2035 bsrr->decode = assoc->decode;
2036 bsrr->print = assoc->print;
2039 bsrr->errstring = NULL;
2040 bsrr->search_info = NULL;
2042 if (assoc->cql_transform &&
2043 req->query->which == Z_Query_type_104 &&
2044 req->query->u.type_104->which == Z_External_CQL)
2046 /* have a CQL query and a CQL to PQF transform .. */
2048 cql2pqf(bsrr->stream, req->query->u.type_104->u.cql,
2049 assoc->cql_transform, bsrr->query);
2051 bsrr->errcode = yaz_diag_srw_to_bib1(srw_errcode);
2054 (assoc->init->bend_search)(assoc->backend, bsrr);
2055 if (!bsrr->request) /* backend not ready with the search response */
2056 return 0; /* should not be used any more */
2060 /* FIXME - make a diagnostic for it */
2061 yaz_log(YLOG_WARN,"Search not supported ?!?!");
2063 return response_searchRequest(assoc, reqb, bsrr, fd);
2066 int bend_searchresponse(void *handle, bend_search_rr *bsrr) {return 0;}
2069 * Prepare a searchresponse based on the backend results. We probably want
2070 * to look at making the fetching of records nonblocking as well, but
2071 * so far, we'll keep things simple.
2072 * If bsrt is null, that means we're called in response to a communications
2073 * event, and we'll have to get the response for ourselves.
2075 static Z_APDU *response_searchRequest(association *assoc, request *reqb,
2076 bend_search_rr *bsrt, int *fd)
2078 Z_SearchRequest *req = reqb->apdu_request->u.searchRequest;
2079 Z_APDU *apdu = (Z_APDU *)odr_malloc (assoc->encode, sizeof(*apdu));
2080 Z_SearchResponse *resp = (Z_SearchResponse *)
2081 odr_malloc (assoc->encode, sizeof(*resp));
2082 int *nulint = odr_intdup (assoc->encode, 0);
2083 bool_t *sr = odr_intdup(assoc->encode, 1);
2084 int *next = odr_intdup(assoc->encode, 0);
2085 int *none = odr_intdup(assoc->encode, Z_SearchResponse_none);
2088 apdu->which = Z_APDU_searchResponse;
2089 apdu->u.searchResponse = resp;
2090 resp->referenceId = req->referenceId;
2091 resp->additionalSearchInfo = 0;
2092 resp->otherInfo = 0;
2094 if (!bsrt && !bend_searchresponse(assoc->backend, bsrt))
2096 yaz_log(YLOG_FATAL, "Bad result from backend");
2099 else if (bsrt->errcode)
2101 resp->records = diagrec(assoc, bsrt->errcode, bsrt->errstring);
2102 resp->resultCount = nulint;
2103 resp->numberOfRecordsReturned = nulint;
2104 resp->nextResultSetPosition = nulint;
2105 resp->searchStatus = nulint;
2106 resp->resultSetStatus = none;
2107 resp->presentStatus = 0;
2111 int *toget = odr_intdup(assoc->encode, 0);
2112 int *presst = odr_intdup(assoc->encode, 0);
2113 Z_RecordComposition comp, *compp = 0;
2115 yaz_log (log_requestdetail, "resultCount: %d", bsrt->hits);
2118 resp->resultCount = &bsrt->hits;
2120 comp.which = Z_RecordComp_simple;
2121 /* how many records does the user agent want, then? */
2122 if (bsrt->hits <= *req->smallSetUpperBound)
2124 *toget = bsrt->hits;
2125 if ((comp.u.simple = req->smallSetElementSetNames))
2128 else if (bsrt->hits < *req->largeSetLowerBound)
2130 *toget = *req->mediumSetPresentNumber;
2131 if (*toget > bsrt->hits)
2132 *toget = bsrt->hits;
2133 if ((comp.u.simple = req->mediumSetElementSetNames))
2139 if (*toget && !resp->records)
2144 if (!(prefformat = oid_getentbyoid(req->preferredRecordSyntax)))
2147 form = prefformat->value;
2148 resp->records = pack_records(assoc, req->resultSetName, 1,
2149 toget, compp, next, presst, form, req->referenceId,
2150 req->preferredRecordSyntax, NULL);
2153 resp->numberOfRecordsReturned = toget;
2154 returnedrecs = *toget;
2155 resp->nextResultSetPosition = next;
2156 resp->searchStatus = sr;
2157 resp->resultSetStatus = 0;
2158 resp->presentStatus = presst;
2162 if (*resp->resultCount)
2164 resp->numberOfRecordsReturned = nulint;
2165 resp->nextResultSetPosition = next;
2166 resp->searchStatus = sr;
2167 resp->resultSetStatus = 0;
2168 resp->presentStatus = 0;
2171 resp->additionalSearchInfo = bsrt->search_info;
2175 WRBUF wr = wrbuf_alloc();
2177 wrbuf_printf(wr, "ERROR %d", bsrt->errcode);
2179 wrbuf_printf(wr, "OK %d", bsrt->hits);
2180 wrbuf_printf(wr, " %s 1+%d ",
2181 req->resultSetName, returnedrecs);
2182 wrbuf_put_zquery(wr, req->query);
2184 yaz_log(log_request, "Search %s", wrbuf_buf(wr));
2191 * Maybe we got a little over-friendly when we designed bend_fetch to
2192 * get only one record at a time. Some backends can optimise multiple-record
2193 * fetches, and at any rate, there is some overhead involved in
2194 * all that selecting and hopping around. Problem is, of course, that the
2195 * frontend can't know ahead of time how many records it'll need to
2196 * fill the negotiated PDU size. Annoying. Segmentation or not, Z/SR
2197 * is downright lousy as a bulk data transfer protocol.
2199 * To start with, we'll do the fetching of records from the backend
2200 * in one operation: To save some trips in and out of the event-handler,
2201 * and to simplify the interface to pack_records. At any rate, asynch
2202 * operation is more fun in operations that have an unpredictable execution
2203 * speed - which is normally more true for search than for present.
2205 static Z_APDU *process_presentRequest(association *assoc, request *reqb,
2208 Z_PresentRequest *req = reqb->apdu_request->u.presentRequest;
2212 Z_PresentResponse *resp;
2216 const char *errstring = 0;
2218 yaz_log(log_requestdetail, "Got PresentRequest.");
2220 if (!(prefformat = oid_getentbyoid(req->preferredRecordSyntax)))
2223 form = prefformat->value;
2224 resp = (Z_PresentResponse *)odr_malloc (assoc->encode, sizeof(*resp));
2226 resp->presentStatus = odr_intdup(assoc->encode, 0);
2227 if (assoc->init->bend_present)
2229 bend_present_rr *bprr = (bend_present_rr *)
2230 nmem_malloc (reqb->request_mem, sizeof(*bprr));
2231 bprr->setname = req->resultSetId;
2232 bprr->start = *req->resultSetStartPoint;
2233 bprr->number = *req->numberOfRecordsRequested;
2234 bprr->format = form;
2235 bprr->comp = req->recordComposition;
2236 bprr->referenceId = req->referenceId;
2237 bprr->stream = assoc->encode;
2238 bprr->print = assoc->print;
2239 bprr->request = reqb;
2240 bprr->association = assoc;
2242 bprr->errstring = NULL;
2243 (*assoc->init->bend_present)(assoc->backend, bprr);
2246 return 0; /* should not happen */
2249 resp->records = diagrec(assoc, bprr->errcode, bprr->errstring);
2250 *resp->presentStatus = Z_PresentStatus_failure;
2251 errcode = bprr->errcode;
2252 errstring = bprr->errstring;
2255 apdu = (Z_APDU *)odr_malloc (assoc->encode, sizeof(*apdu));
2256 next = odr_intdup(assoc->encode, 0);
2257 num = odr_intdup(assoc->encode, 0);
2259 apdu->which = Z_APDU_presentResponse;
2260 apdu->u.presentResponse = resp;
2261 resp->referenceId = req->referenceId;
2262 resp->otherInfo = 0;
2266 *num = *req->numberOfRecordsRequested;
2268 pack_records(assoc, req->resultSetId, *req->resultSetStartPoint,
2269 num, req->recordComposition, next,
2270 resp->presentStatus,
2271 form, req->referenceId, req->preferredRecordSyntax,
2276 WRBUF wr = wrbuf_alloc();
2277 wrbuf_printf(wr, "Present ");
2279 if (*resp->presentStatus == Z_PresentStatus_failure)
2280 wrbuf_printf(wr, "ERROR %d", errcode);
2281 else if (*resp->presentStatus == Z_PresentStatus_success)
2282 wrbuf_printf(wr, "OK -");
2284 wrbuf_printf(wr, "Partial %d", *resp->presentStatus);
2286 wrbuf_printf(wr, " %s %d+%d ",
2287 req->resultSetId, *req->resultSetStartPoint,
2288 *req->numberOfRecordsRequested);
2289 yaz_log(log_request, "%s", wrbuf_buf(wr) );
2294 resp->numberOfRecordsReturned = num;
2295 resp->nextResultSetPosition = next;
2301 * Scan was implemented rather in a hurry, and with support for only the basic
2302 * elements of the service in the backend API. Suggestions are welcome.
2304 static Z_APDU *process_scanRequest(association *assoc, request *reqb, int *fd)
2306 Z_ScanRequest *req = reqb->apdu_request->u.scanRequest;
2307 Z_APDU *apdu = (Z_APDU *)odr_malloc (assoc->encode, sizeof(*apdu));
2308 Z_ScanResponse *res = (Z_ScanResponse *)
2309 odr_malloc (assoc->encode, sizeof(*res));
2310 int *scanStatus = odr_intdup(assoc->encode, Z_Scan_failure);
2311 int *numberOfEntriesReturned = odr_intdup(assoc->encode, 0);
2312 Z_ListEntries *ents = (Z_ListEntries *)
2313 odr_malloc (assoc->encode, sizeof(*ents));
2314 Z_DiagRecs *diagrecs_p = NULL;
2316 bend_scan_rr *bsrr = (bend_scan_rr *)
2317 odr_malloc (assoc->encode, sizeof(*bsrr));
2318 struct scan_entry *save_entries;
2320 yaz_log(log_requestdetail, "Got ScanRequest");
2322 apdu->which = Z_APDU_scanResponse;
2323 apdu->u.scanResponse = res;
2324 res->referenceId = req->referenceId;
2326 /* if step is absent, set it to 0 */
2327 res->stepSize = odr_intdup(assoc->encode, 0);
2329 *res->stepSize = *req->stepSize;
2331 res->scanStatus = scanStatus;
2332 res->numberOfEntriesReturned = numberOfEntriesReturned;
2333 res->positionOfTerm = 0;
2334 res->entries = ents;
2335 ents->num_entries = 0;
2336 ents->entries = NULL;
2337 ents->num_nonsurrogateDiagnostics = 0;
2338 ents->nonsurrogateDiagnostics = NULL;
2339 res->attributeSet = 0;
2342 if (req->databaseNames)
2345 for (i = 0; i < req->num_databaseNames; i++)
2346 yaz_log (log_requestdetail, "Database '%s'", req->databaseNames[i]);
2348 bsrr->scanClause = 0;
2350 bsrr->errstring = 0;
2351 bsrr->num_bases = req->num_databaseNames;
2352 bsrr->basenames = req->databaseNames;
2353 bsrr->num_entries = *req->numberOfTermsRequested;
2354 bsrr->term = req->termListAndStartPoint;
2355 bsrr->referenceId = req->referenceId;
2356 bsrr->stream = assoc->encode;
2357 bsrr->print = assoc->print;
2358 bsrr->step_size = res->stepSize;
2360 /* For YAZ 2.0 and earlier it was the backend handler that
2361 initialized entries (member display_term did not exist)
2362 YAZ 2.0 and later sets 'entries' and initialize all members
2363 including 'display_term'. If YAZ 2.0 or later sees that
2364 entries was modified - we assume that it is an old handler and
2365 that 'display_term' is _not_ set.
2367 if (bsrr->num_entries > 0)
2370 bsrr->entries = odr_malloc(assoc->decode, sizeof(*bsrr->entries) *
2372 for (i = 0; i<bsrr->num_entries; i++)
2374 bsrr->entries[i].term = 0;
2375 bsrr->entries[i].occurrences = 0;
2376 bsrr->entries[i].errcode = 0;
2377 bsrr->entries[i].errstring = 0;
2378 bsrr->entries[i].display_term = 0;
2381 save_entries = bsrr->entries; /* save it so we can compare later */
2383 if (req->attributeSet &&
2384 (attset = oid_getentbyoid(req->attributeSet)) &&
2385 (attset->oclass == CLASS_ATTSET || attset->oclass == CLASS_GENERAL))
2386 bsrr->attributeset = attset->value;
2388 bsrr->attributeset = VAL_NONE;
2389 log_scan_term_level (log_requestdetail, req->termListAndStartPoint,
2390 bsrr->attributeset);
2391 bsrr->term_position = req->preferredPositionInResponse ?
2392 *req->preferredPositionInResponse : 1;
2394 ((int (*)(void *, bend_scan_rr *))
2395 (*assoc->init->bend_scan))(assoc->backend, bsrr);
2398 diagrecs_p = zget_DiagRecs(assoc->encode,
2399 bsrr->errcode, bsrr->errstring);
2403 Z_Entry **tab = (Z_Entry **)
2404 odr_malloc (assoc->encode, sizeof(*tab) * bsrr->num_entries);
2406 if (bsrr->status == BEND_SCAN_PARTIAL)
2407 *scanStatus = Z_Scan_partial_5;
2409 *scanStatus = Z_Scan_success;
2410 ents->entries = tab;
2411 ents->num_entries = bsrr->num_entries;
2412 res->numberOfEntriesReturned = &ents->num_entries;
2413 res->positionOfTerm = &bsrr->term_position;
2414 for (i = 0; i < bsrr->num_entries; i++)
2420 tab[i] = e = (Z_Entry *)odr_malloc(assoc->encode, sizeof(*e));
2421 if (bsrr->entries[i].occurrences >= 0)
2423 e->which = Z_Entry_termInfo;
2424 e->u.termInfo = t = (Z_TermInfo *)
2425 odr_malloc(assoc->encode, sizeof(*t));
2426 t->suggestedAttributes = 0;
2428 if (save_entries == bsrr->entries &&
2429 bsrr->entries[i].display_term)
2431 /* the entries was _not_ set by the handler. So it's
2432 safe to test for new member display_term. It is
2435 t->displayTerm = odr_strdup(assoc->encode,
2436 bsrr->entries[i].display_term);
2438 t->alternativeTerm = 0;
2439 t->byAttributes = 0;
2440 t->otherTermInfo = 0;
2441 t->globalOccurrences = &bsrr->entries[i].occurrences;
2442 t->term = (Z_Term *)
2443 odr_malloc(assoc->encode, sizeof(*t->term));
2444 t->term->which = Z_Term_general;
2445 t->term->u.general = o =
2446 (Odr_oct *)odr_malloc(assoc->encode, sizeof(Odr_oct));
2447 o->buf = (unsigned char *)
2448 odr_malloc(assoc->encode, o->len = o->size =
2449 strlen(bsrr->entries[i].term));
2450 memcpy(o->buf, bsrr->entries[i].term, o->len);
2451 yaz_log(YLOG_DEBUG, " term #%d: '%s' (%d)", i,
2452 bsrr->entries[i].term, bsrr->entries[i].occurrences);
2456 Z_DiagRecs *drecs = zget_DiagRecs(assoc->encode,
2457 bsrr->entries[i].errcode,
2458 bsrr->entries[i].errstring);
2459 assert (drecs->num_diagRecs == 1);
2460 e->which = Z_Entry_surrogateDiagnostic;
2461 assert (drecs->diagRecs[0]);
2462 e->u.surrogateDiagnostic = drecs->diagRecs[0];
2468 ents->num_nonsurrogateDiagnostics = diagrecs_p->num_diagRecs;
2469 ents->nonsurrogateDiagnostics = diagrecs_p->diagRecs;
2473 WRBUF wr = wrbuf_alloc();
2475 wr_diag(wr, bsrr->errcode, bsrr->errstring);
2476 else if (*res->scanStatus == Z_Scan_success)
2477 wrbuf_printf(wr, "OK");
2479 wrbuf_printf(wr, "Partial");
2481 wrbuf_printf(wr, " %d+%d %d ",
2482 (req->preferredPositionInResponse ?
2483 *req->preferredPositionInResponse : 1),
2484 *req->numberOfTermsRequested,
2485 (res->stepSize ? *res->stepSize : 0));
2486 wrbuf_scan_term(wr, req->termListAndStartPoint,
2487 bsrr->attributeset);
2489 yaz_log(log_request, "Scan %s", wrbuf_buf(wr) );
2495 static Z_APDU *process_sortRequest(association *assoc, request *reqb,
2499 Z_SortRequest *req = reqb->apdu_request->u.sortRequest;
2500 Z_SortResponse *res = (Z_SortResponse *)
2501 odr_malloc (assoc->encode, sizeof(*res));
2502 bend_sort_rr *bsrr = (bend_sort_rr *)
2503 odr_malloc (assoc->encode, sizeof(*bsrr));
2505 Z_APDU *apdu = (Z_APDU *)odr_malloc (assoc->encode, sizeof(*apdu));
2507 yaz_log(log_requestdetail, "Got SortRequest.");
2509 bsrr->num_input_setnames = req->num_inputResultSetNames;
2510 for (i=0;i<req->num_inputResultSetNames;i++)
2511 yaz_log(log_requestdetail, "Input resultset: '%s'",
2512 req->inputResultSetNames[i]);
2513 bsrr->input_setnames = req->inputResultSetNames;
2514 bsrr->referenceId = req->referenceId;
2515 bsrr->output_setname = req->sortedResultSetName;
2516 yaz_log(log_requestdetail, "Output resultset: '%s'",
2517 req->sortedResultSetName);
2518 bsrr->sort_sequence = req->sortSequence;
2519 /*FIXME - dump those sequences too */
2520 bsrr->stream = assoc->encode;
2521 bsrr->print = assoc->print;
2523 bsrr->sort_status = Z_SortResponse_failure;
2525 bsrr->errstring = 0;
2527 (*assoc->init->bend_sort)(assoc->backend, bsrr);
2529 res->referenceId = bsrr->referenceId;
2530 res->sortStatus = odr_intdup(assoc->encode, bsrr->sort_status);
2531 res->resultSetStatus = 0;
2534 Z_DiagRecs *dr = zget_DiagRecs(assoc->encode,
2535 bsrr->errcode, bsrr->errstring);
2536 res->diagnostics = dr->diagRecs;
2537 res->num_diagnostics = dr->num_diagRecs;
2541 res->num_diagnostics = 0;
2542 res->diagnostics = 0;
2544 res->resultCount = 0;
2547 apdu->which = Z_APDU_sortResponse;
2548 apdu->u.sortResponse = res;
2551 WRBUF wr = wrbuf_alloc();
2552 wrbuf_printf(wr, "Sort ");
2554 wrbuf_printf(wr, " ERROR %d", bsrr->errcode);
2556 wrbuf_printf(wr, "OK -");
2557 wrbuf_printf(wr, " (");
2558 for (i = 0; i<req->num_inputResultSetNames; i++)
2561 wrbuf_printf(wr, ",");
2562 wrbuf_printf(wr, req->inputResultSetNames[i]);
2564 wrbuf_printf(wr, ")->%s ",req->sortedResultSetName);
2566 yaz_log(log_request, "%s", wrbuf_buf(wr) );
2572 static Z_APDU *process_deleteRequest(association *assoc, request *reqb,
2576 Z_DeleteResultSetRequest *req =
2577 reqb->apdu_request->u.deleteResultSetRequest;
2578 Z_DeleteResultSetResponse *res = (Z_DeleteResultSetResponse *)
2579 odr_malloc (assoc->encode, sizeof(*res));
2580 bend_delete_rr *bdrr = (bend_delete_rr *)
2581 odr_malloc (assoc->encode, sizeof(*bdrr));
2582 Z_APDU *apdu = (Z_APDU *)odr_malloc (assoc->encode, sizeof(*apdu));
2584 yaz_log(log_requestdetail, "Got DeleteRequest.");
2586 bdrr->num_setnames = req->num_resultSetList;
2587 bdrr->setnames = req->resultSetList;
2588 for (i = 0; i<req->num_resultSetList; i++)
2589 yaz_log(log_requestdetail, "resultset: '%s'",
2590 req->resultSetList[i]);
2591 bdrr->stream = assoc->encode;
2592 bdrr->print = assoc->print;
2593 bdrr->function = *req->deleteFunction;
2594 bdrr->referenceId = req->referenceId;
2596 if (bdrr->num_setnames > 0)
2598 bdrr->statuses = (int*)
2599 odr_malloc(assoc->encode, sizeof(*bdrr->statuses) *
2600 bdrr->num_setnames);
2601 for (i = 0; i < bdrr->num_setnames; i++)
2602 bdrr->statuses[i] = 0;
2604 (*assoc->init->bend_delete)(assoc->backend, bdrr);
2606 res->referenceId = req->referenceId;
2608 res->deleteOperationStatus = odr_intdup(assoc->encode,bdrr->delete_status);
2610 res->deleteListStatuses = 0;
2611 if (bdrr->num_setnames > 0)
2614 res->deleteListStatuses = (Z_ListStatuses *)
2615 odr_malloc(assoc->encode, sizeof(*res->deleteListStatuses));
2616 res->deleteListStatuses->num = bdrr->num_setnames;
2617 res->deleteListStatuses->elements =
2619 odr_malloc (assoc->encode,
2620 sizeof(*res->deleteListStatuses->elements) *
2621 bdrr->num_setnames);
2622 for (i = 0; i<bdrr->num_setnames; i++)
2624 res->deleteListStatuses->elements[i] =
2626 odr_malloc (assoc->encode,
2627 sizeof(**res->deleteListStatuses->elements));
2628 res->deleteListStatuses->elements[i]->status = bdrr->statuses+i;
2629 res->deleteListStatuses->elements[i]->id =
2630 odr_strdup (assoc->encode, bdrr->setnames[i]);
2633 res->numberNotDeleted = 0;
2634 res->bulkStatuses = 0;
2635 res->deleteMessage = 0;
2638 apdu->which = Z_APDU_deleteResultSetResponse;
2639 apdu->u.deleteResultSetResponse = res;
2642 WRBUF wr = wrbuf_alloc();
2643 wrbuf_printf(wr, "Delete ");
2644 if (bdrr->delete_status)
2645 wrbuf_printf(wr, "ERROR %d", bdrr->delete_status);
2647 wrbuf_printf(wr, "OK -");
2648 for (i = 0; i<req->num_resultSetList; i++)
2649 wrbuf_printf(wr, " %s ", req->resultSetList[i]);
2650 yaz_log(log_request, "%s", wrbuf_buf(wr) );
2656 static void process_close(association *assoc, request *reqb)
2658 Z_Close *req = reqb->apdu_request->u.close;
2659 static char *reasons[] =
2666 "securityViolation",
2673 yaz_log(log_requestdetail, "Got Close, reason %s, message %s",
2674 reasons[*req->closeReason], req->diagnosticInformation ?
2675 req->diagnosticInformation : "NULL");
2676 if (assoc->version < 3) /* to make do_force respond with close */
2678 do_close_req(assoc, Z_Close_finished,
2679 "Association terminated by client", reqb);
2680 yaz_log(log_request,"Close OK");
2683 void save_referenceId (request *reqb, Z_ReferenceId *refid)
2687 reqb->len_refid = refid->len;
2688 reqb->refid = (char *)nmem_malloc (reqb->request_mem, refid->len);
2689 memcpy (reqb->refid, refid->buf, refid->len);
2693 reqb->len_refid = 0;
2698 void bend_request_send (bend_association a, bend_request req, Z_APDU *res)
2700 process_z_response (a, req, res);
2703 bend_request bend_request_mk (bend_association a)
2705 request *nreq = request_get (&a->outgoing);
2706 nreq->request_mem = nmem_create ();
2710 Z_ReferenceId *bend_request_getid (ODR odr, bend_request req)
2715 id = (Odr_oct *)odr_malloc (odr, sizeof(*odr));
2716 id->buf = (unsigned char *)odr_malloc (odr, req->len_refid);
2717 id->len = id->size = req->len_refid;
2718 memcpy (id->buf, req->refid, req->len_refid);
2722 void bend_request_destroy (bend_request *req)
2724 nmem_destroy((*req)->request_mem);
2725 request_release(*req);
2729 int bend_backend_respond (bend_association a, bend_request req)
2733 r = process_z_request (a, req, &msg);
2735 yaz_log (YLOG_WARN, "%s", msg);
2739 void bend_request_setdata(bend_request r, void *p)
2744 void *bend_request_getdata(bend_request r)
2746 return r->clientData;
2749 static Z_APDU *process_segmentRequest (association *assoc, request *reqb)
2751 bend_segment_rr req;
2753 req.segment = reqb->apdu_request->u.segmentRequest;
2754 req.stream = assoc->encode;
2755 req.decode = assoc->decode;
2756 req.print = assoc->print;
2757 req.association = assoc;
2759 (*assoc->init->bend_segment)(assoc->backend, &req);
2764 static Z_APDU *process_ESRequest(association *assoc, request *reqb, int *fd)
2766 bend_esrequest_rr esrequest;
2768 Z_ExtendedServicesRequest *req =
2769 reqb->apdu_request->u.extendedServicesRequest;
2770 Z_APDU *apdu = zget_APDU(assoc->encode, Z_APDU_extendedServicesResponse);
2772 Z_ExtendedServicesResponse *resp = apdu->u.extendedServicesResponse;
2774 yaz_log(log_requestdetail,"Got EsRequest");
2776 esrequest.esr = reqb->apdu_request->u.extendedServicesRequest;
2777 esrequest.stream = assoc->encode;
2778 esrequest.decode = assoc->decode;
2779 esrequest.print = assoc->print;
2780 esrequest.errcode = 0;
2781 esrequest.errstring = NULL;
2782 esrequest.request = reqb;
2783 esrequest.association = assoc;
2784 esrequest.taskPackage = 0;
2785 esrequest.referenceId = req->referenceId;
2787 (*assoc->init->bend_esrequest)(assoc->backend, &esrequest);
2789 /* If the response is being delayed, return NULL */
2790 if (esrequest.request == NULL)
2793 resp->referenceId = req->referenceId;
2795 if (esrequest.errcode == -1)
2797 /* Backend service indicates request will be processed */
2798 yaz_log(log_request,"EsRequest OK: Accepted !");
2799 *resp->operationStatus = Z_ExtendedServicesResponse_accepted;
2801 else if (esrequest.errcode == 0)
2803 /* Backend service indicates request will be processed */
2804 yaz_log(log_request,"EsRequest OK: Done !");
2805 *resp->operationStatus = Z_ExtendedServicesResponse_done;
2809 Z_DiagRecs *diagRecs =
2810 zget_DiagRecs(assoc->encode, esrequest.errcode,
2811 esrequest.errstring);
2812 /* Backend indicates error, request will not be processed */
2813 yaz_log(YLOG_DEBUG,"Request could not be processed...failure !");
2814 *resp->operationStatus = Z_ExtendedServicesResponse_failure;
2815 resp->num_diagnostics = diagRecs->num_diagRecs;
2816 resp->diagnostics = diagRecs->diagRecs;
2819 WRBUF wr = wrbuf_alloc();
2820 wrbuf_diags(wr, resp->num_diagnostics, resp->diagnostics);
2821 yaz_log(log_request, "EsRequest %s", wrbuf_buf(wr) );
2826 /* Do something with the members of bend_extendedservice */
2827 if (esrequest.taskPackage)
2828 resp->taskPackage = z_ext_record (assoc->encode, VAL_EXTENDED,
2829 (const char *) esrequest.taskPackage,
2831 yaz_log(YLOG_DEBUG,"Send the result apdu");
2838 * indent-tabs-mode: nil
2840 * vim: shiftwidth=4 tabstop=8 expandtab