1 /* $Id: logic.c,v 1.18 2007-04-22 16:41:42 adam Exp $
2 Copyright (c) 2006-2007, Index Data.
4 This file is part of Pazpar2.
6 Pazpar2 is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 2, or (at your option) any later
11 Pazpar2 is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 You should have received a copy of the GNU General Public License
17 along with Pazpar2; see the file LICENSE. If not, write to the
18 Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
22 // This file contains the primary business logic. Several parts of it should
23 // Eventually be factored into separate modules.
30 #include <sys/socket.h>
36 #include <yaz/marcdisp.h>
37 #include <yaz/comstack.h>
38 #include <yaz/tcpip.h>
39 #include <yaz/proto.h>
40 #include <yaz/readconf.h>
41 #include <yaz/pquery.h>
42 #include <yaz/otherinfo.h>
43 #include <yaz/yaz-util.h>
45 #include <yaz/query-charset.h>
46 #include <yaz/querytowrbuf.h>
47 #if YAZ_VERSIONL >= 0x020163
48 #include <yaz/oid_db.h>
57 #include <yaz/timing.h>
60 #include <netinet/in.h>
65 #include "termlists.h"
67 #include "relevance.h"
74 static void client_fatal(struct client *cl);
75 static void connection_destroy(struct connection *co);
76 static int client_prep_connection(struct client *cl);
77 static void ingest_records(struct client *cl, Z_Records *r);
78 void session_alert_watch(struct session *s, int what);
80 static struct connection *connection_freelist = 0;
81 static struct client *client_freelist = 0;
83 static char *client_states[] = {
87 "Client_Initializing",
92 "Client_Disconnected",
96 // Note: Some things in this structure will eventually move to configuration
97 struct parameters global_parameters =
107 "Index Data PazPar2",
117 static int send_apdu(struct client *c, Z_APDU *a)
119 struct connection *co = c->connection;
123 if (!z_APDU(global_parameters.odr_out, &a, 0, 0))
125 odr_perror(global_parameters.odr_out, "Encoding APDU");
128 buf = odr_getbuf(global_parameters.odr_out, &len, 0);
129 r = cs_put(co->link, buf, len);
132 yaz_log(YLOG_WARN, "cs_put: %s", cs_errmsg(cs_errno(co->link)));
137 fprintf(stderr, "cs_put incomplete (ParaZ does not handle that)\n");
140 odr_reset(global_parameters.odr_out); /* release the APDU structure */
141 co->state = Conn_Waiting;
145 // Set authentication token in init if one is set for the client
146 // TODO: Extend this to handle other schemes than open (should be simple)
147 static void init_authentication(struct client *cl, Z_InitRequest *req)
149 struct session_database *sdb = cl->database;
150 char *auth = session_setting_oneval(sdb, PZ_AUTHENTICATION);
154 Z_IdAuthentication *idAuth = odr_malloc(global_parameters.odr_out,
156 idAuth->which = Z_IdAuthentication_open;
157 idAuth->u.open = auth;
158 req->idAuthentication = idAuth;
162 static void send_init(IOCHAN i)
165 struct connection *co = iochan_getdata(i);
166 struct client *cl = co->client;
167 Z_APDU *a = zget_APDU(global_parameters.odr_out, Z_APDU_initRequest);
169 a->u.initRequest->implementationId = global_parameters.implementationId;
170 a->u.initRequest->implementationName = global_parameters.implementationName;
171 a->u.initRequest->implementationVersion =
172 global_parameters.implementationVersion;
173 ODR_MASK_SET(a->u.initRequest->options, Z_Options_search);
174 ODR_MASK_SET(a->u.initRequest->options, Z_Options_present);
175 ODR_MASK_SET(a->u.initRequest->options, Z_Options_namedResultSets);
177 ODR_MASK_SET(a->u.initRequest->protocolVersion, Z_ProtocolVersion_1);
178 ODR_MASK_SET(a->u.initRequest->protocolVersion, Z_ProtocolVersion_2);
179 ODR_MASK_SET(a->u.initRequest->protocolVersion, Z_ProtocolVersion_3);
181 init_authentication(cl, a->u.initRequest);
183 /* add virtual host if tunneling through Z39.50 proxy */
185 if (0 < strlen(global_parameters.zproxy_override)
186 && 0 < strlen(cl->database->database->url))
188 #if YAZ_VERSIONL >= 0x020163
189 yaz_oi_set_string_oid(&a->u.initRequest->otherInfo,
190 global_parameters.odr_out,
191 yaz_oid_userinfo_proxy,
192 1, cl->database->database->url);
194 yaz_oi_set_string_oidval(&a->u.initRequest->otherInfo,
195 global_parameters.odr_out, VAL_PROXY,
196 1, cl->database->database->url);
200 if (send_apdu(cl, a) >= 0)
202 iochan_setflags(i, EVENT_INPUT);
203 cl->state = Client_Initializing;
206 cl->state = Client_Error;
207 odr_reset(global_parameters.odr_out);
210 // Recursively traverse query structure to extract terms.
211 static void pull_terms(NMEM nmem, struct ccl_rpn_node *n, char **termlist, int *num)
223 pull_terms(nmem, n->u.p[0], termlist, num);
224 pull_terms(nmem, n->u.p[1], termlist, num);
227 nmem_strsplit(nmem, " ", n->u.t.term, &words, &numwords);
228 for (i = 0; i < numwords; i++)
229 termlist[(*num)++] = words[i];
236 // Extract terms from query into null-terminated termlist
237 static void extract_terms(NMEM nmem, struct ccl_rpn_node *query, char **termlist)
241 pull_terms(nmem, query, termlist, &num);
245 static void send_search(IOCHAN i)
247 struct connection *co = iochan_getdata(i);
248 struct client *cl = co->client;
249 struct session *se = cl->session;
250 struct session_database *sdb = cl->database;
251 Z_APDU *a = zget_APDU(global_parameters.odr_out, Z_APDU_searchRequest);
255 int ssub = 0, lslb = 100000, mspn = 10;
259 yaz_iconv_t iconv = 0;
261 yaz_log(YLOG_DEBUG, "Sending search to %s", cl->database->database->url);
263 // constructing RPN query
264 a->u.searchRequest->query = zquery = odr_malloc(global_parameters.odr_out,
266 zquery->which = Z_Query_type_1;
267 zquery->u.type_1 = p_query_rpn(global_parameters.odr_out, cl->pquery);
269 // converting to target encoding
270 if ((queryenc = session_setting_oneval(sdb, PZ_QUERYENCODING))){
271 iconv = yaz_iconv_open(queryenc, "UTF-8");
273 yaz_query_charset_convert_rpnquery(zquery->u.type_1,
274 global_parameters.odr_out,
276 yaz_iconv_close(iconv);
278 yaz_log(YLOG_WARN, "Query encoding failed %s %s",
279 cl->database->database->url, queryenc);
282 for (ndb = 0; sdb->database->databases[ndb]; ndb++)
284 databaselist = odr_malloc(global_parameters.odr_out, sizeof(char*) * ndb);
285 for (ndb = 0; sdb->database->databases[ndb]; ndb++)
286 databaselist[ndb] = sdb->database->databases[ndb];
288 if (!(piggyback = session_setting_oneval(sdb, PZ_PIGGYBACK)) || *piggyback == '1')
290 if ((recsyn = session_setting_oneval(sdb, PZ_REQUESTSYNTAX)))
292 #if YAZ_VERSIONL >= 0x020163
293 a->u.searchRequest->preferredRecordSyntax =
294 yaz_string_to_oid_odr(yaz_oid_std(),
295 CLASS_RECSYN, recsyn,
296 global_parameters.odr_out);
298 a->u.searchRequest->preferredRecordSyntax =
299 yaz_str_to_z3950oid(global_parameters.odr_out,
300 CLASS_RECSYN, recsyn);
303 a->u.searchRequest->smallSetUpperBound = &ssub;
304 a->u.searchRequest->largeSetLowerBound = &lslb;
305 a->u.searchRequest->mediumSetPresentNumber = &mspn;
307 a->u.searchRequest->resultSetName = "Default";
308 a->u.searchRequest->databaseNames = databaselist;
309 a->u.searchRequest->num_databaseNames = ndb;
312 { //scope for sending and logging queries
313 WRBUF wbquery = wrbuf_alloc();
314 yaz_query_to_wrbuf(wbquery, zquery);
317 if (send_apdu(cl, a) >= 0)
319 iochan_setflags(i, EVENT_INPUT);
320 cl->state = Client_Searching;
321 cl->requestid = se->requestid;
322 yaz_log(YLOG_LOG, "SearchRequest %s %s %s",
323 cl->database->database->url,
324 queryenc ? queryenc : "UTF-8",
325 wrbuf_cstr(wbquery));
328 cl->state = Client_Error;
329 yaz_log(YLOG_WARN, "Failed SearchRequest %s %s %s",
330 cl->database->database->url,
331 queryenc ? queryenc : "UTF-8",
332 wrbuf_cstr(wbquery));
335 wrbuf_destroy(wbquery);
338 odr_reset(global_parameters.odr_out);
341 static void send_present(IOCHAN i)
343 struct connection *co = iochan_getdata(i);
344 struct client *cl = co->client;
345 struct session_database *sdb = cl->database;
346 Z_APDU *a = zget_APDU(global_parameters.odr_out, Z_APDU_presentRequest);
348 int start = cl->records + 1;
351 toget = global_parameters.chunk;
352 if (toget > global_parameters.toget - cl->records)
353 toget = global_parameters.toget - cl->records;
354 if (toget > cl->hits - cl->records)
355 toget = cl->hits - cl->records;
357 yaz_log(YLOG_DEBUG, "Trying to present %d records\n", toget);
359 a->u.presentRequest->resultSetStartPoint = &start;
360 a->u.presentRequest->numberOfRecordsRequested = &toget;
362 a->u.presentRequest->resultSetId = "Default";
364 if ((recsyn = session_setting_oneval(sdb, PZ_REQUESTSYNTAX)))
366 #if YAZ_VERSIONL >= 0x020163
367 a->u.presentRequest->preferredRecordSyntax =
368 yaz_string_to_oid_odr(yaz_oid_std(),
369 CLASS_RECSYN, recsyn,
370 global_parameters.odr_out);
372 a->u.presentRequest->preferredRecordSyntax =
373 yaz_str_to_z3950oid(global_parameters.odr_out,
374 CLASS_RECSYN, recsyn);
378 if (send_apdu(cl, a) >= 0)
380 iochan_setflags(i, EVENT_INPUT);
381 cl->state = Client_Presenting;
384 cl->state = Client_Error;
385 odr_reset(global_parameters.odr_out);
388 static void do_initResponse(IOCHAN i, Z_APDU *a)
390 struct connection *co = iochan_getdata(i);
391 struct client *cl = co->client;
392 Z_InitResponse *r = a->u.initResponse;
394 yaz_log(YLOG_DEBUG, "Init response %s", cl->database->database->url);
398 cl->state = Client_Idle;
401 cl->state = Client_Failed; // FIXME need to do something to the connection
404 static void do_searchResponse(IOCHAN i, Z_APDU *a)
406 struct connection *co = iochan_getdata(i);
407 struct client *cl = co->client;
408 struct session *se = cl->session;
409 Z_SearchResponse *r = a->u.searchResponse;
411 yaz_log(YLOG_DEBUG, "Search response %s (status=%d)",
412 cl->database->database->url, *r->searchStatus);
414 if (*r->searchStatus)
416 cl->hits = *r->resultCount;
417 se->total_hits += cl->hits;
418 if (r->presentStatus && !*r->presentStatus && r->records)
420 yaz_log(YLOG_DEBUG, "Records in search response %s",
421 cl->database->database->url);
422 ingest_records(cl, r->records);
424 cl->state = Client_Idle;
429 cl->state = Client_Error;
431 Z_Records *recs = r->records;
432 if (recs->which == Z_Records_NSD)
435 "Search response: Non-surrogate diagnostic %s",
436 cl->database->database->url);
437 cl->diagnostic = *recs->u.nonSurrogateDiagnostic->condition;
438 cl->state = Client_Error;
444 static void do_closeResponse(IOCHAN i, Z_APDU *a)
446 struct connection *co = iochan_getdata(i);
447 struct client *cl = co->client;
448 /* Z_Close *r = a->u.close; */
450 yaz_log(YLOG_WARN, "Close response %s", cl->database->database->url);
452 cl->state = Client_Failed;
453 connection_destroy(co);
457 char *normalize_mergekey(char *buf, int skiparticle)
459 char *p = buf, *pout = buf;
464 char articles[] = "the den der die des an a "; // must end in space
466 while (*p && !isalnum(*p))
469 while (*p && *p != ' ' && pout - firstword < 62)
470 *(pout++) = tolower(*(p++));
473 if (!strstr(articles, firstword))
480 while (*p && !isalnum(*p))
483 *(pout++) = tolower(*(p++));
486 while (*p && !isalnum(*p))
493 while (pout > buf && *pout == ' ');
498 static void add_facet(struct session *s, const char *type, const char *value)
504 for (i = 0; i < s->num_termlists; i++)
505 if (!strcmp(s->termlists[i].name, type))
507 if (i == s->num_termlists)
509 if (i == SESSION_MAX_TERMLISTS)
511 yaz_log(YLOG_FATAL, "Too many termlists");
514 s->termlists[i].name = nmem_strdup(s->nmem, type);
515 s->termlists[i].termlist = termlist_create(s->nmem, s->expected_maxrecs, 15);
516 s->num_termlists = i + 1;
518 termlist_insert(s->termlists[i].termlist, value);
521 static xmlDoc *normalize_record(struct client *cl, Z_External *rec)
523 struct database_retrievalmap *m;
524 struct session_database *sdb = cl->database;
525 struct database *db = sdb->database;
529 // First normalize to XML
534 if (rec->which != Z_External_octet)
536 yaz_log(YLOG_WARN, "Unexpected external branch, probably BER %s",
540 buf = (char*) rec->u.octet_aligned->buf;
541 len = rec->u.octet_aligned->len;
542 if (yaz_marc_read_iso2709(sdb->yaz_marc, buf, len) < 0)
544 yaz_log(YLOG_WARN, "Failed to decode MARC %s", db->url);
548 yaz_marc_write_using_libxml2(sdb->yaz_marc, 1);
549 if (yaz_marc_write_xml(sdb->yaz_marc, &res,
550 "http://www.loc.gov/MARC21/slim", 0, 0) < 0)
552 yaz_log(YLOG_WARN, "Failed to encode as XML %s",
556 rdoc = xmlNewDoc((xmlChar *) "1.0");
557 xmlDocSetRootElement(rdoc, res);
563 "Unknown native_syntax in normalize_record from %s",
568 if (global_parameters.dump_records){
570 "Input Record (normalized) from %s\n----------------\n",
572 #if LIBXML_VERSION >= 20600
573 xmlDocFormatDump(stderr, rdoc, 1);
575 xmlDocDump(stderr, rdoc);
579 for (m = sdb->map; m; m = m->next){
585 new = xsltApplyStylesheet(m->stylesheet, rdoc, 0);
586 root= xmlDocGetRootElement(new);
587 if (!new || !root || !(root->children))
589 yaz_log(YLOG_WARN, "XSLT transformation failed from %s",
590 cl->database->database->url);
599 // do it another way to detect transformation errors right now
600 // but does not seem to work either!
602 xsltTransformContextPtr ctxt;
603 ctxt = xsltNewTransformContext(m->stylesheet, rdoc);
604 new = xsltApplyStylesheetUser(m->stylesheet, rdoc, 0, 0, 0, ctxt);
605 if ((ctxt->state == XSLT_STATE_ERROR) ||
606 (ctxt->state == XSLT_STATE_STOPPED)){
607 yaz_log(YLOG_WARN, "XSLT transformation failed from %s",
608 cl->database->database->url);
619 if (global_parameters.dump_records)
621 fprintf(stderr, "Record from %s\n----------------\n",
622 cl->database->database->url);
623 #if LIBXML_VERSION >= 20600
624 xmlDocFormatDump(stderr, rdoc, 1);
626 xmlDocDump(stderr, rdoc);
632 // Extract what appears to be years from buf, storing highest and
634 static int extract_years(const char *buf, int *first, int *last)
643 while (*buf && !isdigit(*buf))
646 for (e = buf; *e && isdigit(*e); e++)
650 int value = atoi(buf);
651 if (*first < 0 || value < *first)
653 if (*last < 0 || value > *last)
661 static struct record *ingest_record(struct client *cl, Z_External *rec)
663 xmlDoc *xdoc = normalize_record(cl, rec);
666 struct record_cluster *cluster;
667 struct session *se = cl->session;
668 xmlChar *mergekey, *mergekey_norm;
671 struct conf_service *service = global_parameters.server->service;
676 root = xmlDocGetRootElement(xdoc);
677 if (!(mergekey = xmlGetProp(root, (xmlChar *) "mergekey")))
679 yaz_log(YLOG_WARN, "No mergekey found in record");
684 res = nmem_malloc(se->nmem, sizeof(struct record));
687 res->metadata = nmem_malloc(se->nmem,
688 sizeof(struct record_metadata*) * service->num_metadata);
689 memset(res->metadata, 0, sizeof(struct record_metadata*) * service->num_metadata);
691 mergekey_norm = (xmlChar *) nmem_strdup(se->nmem, (char*) mergekey);
693 normalize_mergekey((char *) mergekey_norm, 0);
695 cluster = reclist_insert(se->reclist,
696 global_parameters.server->service,
697 res, (char *) mergekey_norm,
699 if (global_parameters.dump_records)
700 yaz_log(YLOG_LOG, "Cluster id %d from %s (#%d)", cluster->recid,
701 cl->database->database->url, cl->records);
704 /* no room for record */
708 relevance_newrec(se->relevance, cluster);
710 for (n = root->children; n; n = n->next)
718 if (n->type != XML_ELEMENT_NODE)
720 if (!strcmp((const char *) n->name, "metadata"))
722 struct conf_metadata *md = 0;
723 struct conf_sortkey *sk = 0;
724 struct record_metadata **wheretoput, *newm;
728 type = xmlGetProp(n, (xmlChar *) "type");
729 value = xmlNodeListGetString(xdoc, n->children, 0);
734 // First, find out what field we're looking at
735 for (imeta = 0; imeta < service->num_metadata; imeta++)
736 if (!strcmp((const char *) type, service->metadata[imeta].name))
738 md = &service->metadata[imeta];
739 if (md->sortkey_offset >= 0)
740 sk = &service->sortkeys[md->sortkey_offset];
745 yaz_log(YLOG_WARN, "Ignoring unknown metadata element: %s", type);
749 // Find out where we are putting it
750 if (md->merge == Metadata_merge_no)
751 wheretoput = &res->metadata[imeta];
753 wheretoput = &cluster->metadata[imeta];
756 newm = nmem_malloc(se->nmem, sizeof(struct record_metadata));
758 if (md->type == Metadata_type_generic)
761 for (p = (char *) value; *p && isspace(*p); p++)
763 for (pe = p + strlen(p) - 1;
764 pe > p && strchr(" ,/.:([", *pe); pe--)
766 newm->data.text = nmem_strdup(se->nmem, p);
769 else if (md->type == Metadata_type_year)
771 if (extract_years((char *) value, &first, &last) < 0)
776 yaz_log(YLOG_WARN, "Unknown type in metadata element %s", type);
779 if (md->type == Metadata_type_year && md->merge != Metadata_merge_range)
781 yaz_log(YLOG_WARN, "Only range merging supported for years");
784 if (md->merge == Metadata_merge_unique)
786 struct record_metadata *mnode;
787 for (mnode = *wheretoput; mnode; mnode = mnode->next)
788 if (!strcmp((const char *) mnode->data.text, newm->data.text))
792 newm->next = *wheretoput;
796 else if (md->merge == Metadata_merge_longest)
799 strlen(newm->data.text) > strlen((*wheretoput)->data.text))
804 char *s = nmem_strdup(se->nmem, newm->data.text);
805 if (!cluster->sortkeys[md->sortkey_offset])
806 cluster->sortkeys[md->sortkey_offset] =
807 nmem_malloc(se->nmem, sizeof(union data_types));
808 normalize_mergekey(s,
809 (sk->type == Metadata_sortkey_skiparticle));
810 cluster->sortkeys[md->sortkey_offset]->text = s;
814 else if (md->merge == Metadata_merge_all || md->merge == Metadata_merge_no)
816 newm->next = *wheretoput;
819 else if (md->merge == Metadata_merge_range)
821 assert(md->type == Metadata_type_year);
825 (*wheretoput)->data.number.min = first;
826 (*wheretoput)->data.number.max = last;
828 cluster->sortkeys[md->sortkey_offset] = &newm->data;
832 if (first < (*wheretoput)->data.number.min)
833 (*wheretoput)->data.number.min = first;
834 if (last > (*wheretoput)->data.number.max)
835 (*wheretoput)->data.number.max = last;
840 union data_types *sdata = cluster->sortkeys[md->sortkey_offset];
841 yaz_log(YLOG_LOG, "SK range: %d-%d", sdata->number.min, sdata->number.max);
846 yaz_log(YLOG_WARN, "Don't know how to merge on element name %s", md->name);
849 relevance_countwords(se->relevance, cluster,
850 (char *) value, md->rank);
853 if (md->type == Metadata_type_year)
856 sprintf(year, "%d", last);
857 add_facet(se, (char *) type, year);
860 sprintf(year, "%d", first);
861 add_facet(se, (char *) type, year);
865 add_facet(se, (char *) type, (char *) value);
872 yaz_log(YLOG_WARN, "Unexpected element %s in internal record", n->name);
881 relevance_donerecord(se->relevance, cluster);
887 // Retrieve first defined value for 'name' for given database.
888 // Will be extended to take into account user associated with session
889 char *session_setting_oneval(struct session_database *db, int offset)
891 if (!db->settings[offset])
893 return db->settings[offset]->value;
896 static void ingest_records(struct client *cl, Z_Records *r)
899 yaz_timing_t t = yaz_timing_create();
902 struct session *s = cl->session;
903 Z_NamePlusRecordList *rlist;
906 if (r->which != Z_Records_DBOSD)
908 rlist = r->u.databaseOrSurDiagnostics;
909 for (i = 0; i < rlist->num_records; i++)
911 Z_NamePlusRecord *npr = rlist->records[i];
914 if (npr->which != Z_NamePlusRecord_databaseRecord)
917 "Unexpected record type, probably diagnostic %s",
918 cl->database->database->url);
922 rec = ingest_record(cl, npr->u.databaseRecord);
926 if (s->watchlist[SESSION_WATCH_RECORDS].fun && rlist->num_records)
927 session_alert_watch(s, SESSION_WATCH_RECORDS);
931 yaz_log(YLOG_LOG, "ingest_records %6.5f %3.2f %3.2f",
932 yaz_timing_get_real(t), yaz_timing_get_user(t),
933 yaz_timing_get_sys(t));
934 yaz_timing_destroy(&t);
938 static void do_presentResponse(IOCHAN i, Z_APDU *a)
940 struct connection *co = iochan_getdata(i);
941 struct client *cl = co->client;
942 Z_PresentResponse *r = a->u.presentResponse;
945 Z_Records *recs = r->records;
946 if (recs->which == Z_Records_NSD)
948 yaz_log(YLOG_WARN, "Non-surrogate diagnostic %s",
949 cl->database->database->url);
950 cl->diagnostic = *recs->u.nonSurrogateDiagnostic->condition;
951 cl->state = Client_Error;
955 if (!*r->presentStatus && cl->state != Client_Error)
957 yaz_log(YLOG_DEBUG, "Good Present response %s",
958 cl->database->database->url);
959 ingest_records(cl, r->records);
960 cl->state = Client_Idle;
962 else if (*r->presentStatus)
964 yaz_log(YLOG_WARN, "Bad Present response %s",
965 cl->database->database->url);
966 cl->state = Client_Error;
970 void connection_handler(IOCHAN i, int event)
972 struct connection *co = iochan_getdata(i);
973 struct client *cl = co->client;
974 struct session *se = 0;
980 yaz_log(YLOG_WARN, "Destroying orphan connection");
981 connection_destroy(co);
985 if (co->state == Conn_Connecting && event & EVENT_OUTPUT)
988 socklen_t errlen = sizeof(errcode);
990 if (getsockopt(cs_fileno(co->link), SOL_SOCKET, SO_ERROR, &errcode,
991 &errlen) < 0 || errcode != 0)
998 yaz_log(YLOG_DEBUG, "Connect OK");
999 co->state = Conn_Open;
1001 cl->state = Client_Connected;
1005 else if (event & EVENT_INPUT)
1007 int len = cs_get(co->link, &co->ibuf, &co->ibufsize);
1011 yaz_log(YLOG_WARN|YLOG_ERRNO, "Error reading from %s",
1012 cl->database->database->url);
1013 connection_destroy(co);
1018 yaz_log(YLOG_WARN, "EOF reading from %s", cl->database->database->url);
1019 connection_destroy(co);
1022 else if (len > 1) // We discard input if we have no connection
1024 co->state = Conn_Open;
1026 if (cl && (cl->requestid == se->requestid || cl->state == Client_Initializing))
1030 odr_reset(global_parameters.odr_in);
1031 odr_setbuf(global_parameters.odr_in, co->ibuf, len, 0);
1032 if (!z_APDU(global_parameters.odr_in, &a, 0, 0))
1039 case Z_APDU_initResponse:
1040 do_initResponse(i, a);
1042 case Z_APDU_searchResponse:
1043 do_searchResponse(i, a);
1045 case Z_APDU_presentResponse:
1046 do_presentResponse(i, a);
1049 do_closeResponse(i, a);
1053 "Unexpected Z39.50 response from %s",
1054 cl->database->database->url);
1058 // We aren't expecting staggered output from target
1059 // if (cs_more(t->link))
1060 // iochan_setevent(i, EVENT_INPUT);
1062 else // we throw away response and go to idle mode
1064 yaz_log(YLOG_DEBUG, "Ignoring result of expired operation");
1065 cl->state = Client_Idle;
1068 /* if len==1 we do nothing but wait for more input */
1071 if (cl->state == Client_Connected) {
1075 if (cl->state == Client_Idle)
1077 if (cl->requestid != se->requestid && cl->pquery) {
1080 else if (cl->hits > 0 && cl->records < global_parameters.toget &&
1081 cl->records < cl->hits) {
1087 // Disassociate connection from client
1088 static void connection_release(struct connection *co)
1090 struct client *cl = co->client;
1092 yaz_log(YLOG_DEBUG, "Connection release %s", co->host->hostport);
1099 // Close connection and recycle structure
1100 static void connection_destroy(struct connection *co)
1102 struct host *h = co->host;
1107 iochan_destroy(co->iochan);
1110 yaz_log(YLOG_DEBUG, "Connection destroy %s", co->host->hostport);
1111 if (h->connections == co)
1112 h->connections = co->next;
1115 struct connection *pco;
1116 for (pco = h->connections; pco && pco->next != co; pco = pco->next)
1119 pco->next = co->next;
1125 if (co->client->state != Client_Idle)
1126 co->client->state = Client_Disconnected;
1127 co->client->connection = 0;
1129 co->next = connection_freelist;
1130 connection_freelist = co;
1133 static int connection_connect(struct connection *con)
1136 struct client *cl = con->client;
1137 struct host *host = con->host;
1141 assert(host->ipport);
1144 if (!(link = cs_create(tcpip_type, 0, PROTO_Z3950)))
1146 yaz_log(YLOG_FATAL|YLOG_ERRNO, "Failed to create comstack");
1150 if (0 == strlen(global_parameters.zproxy_override)){
1151 /* no Z39.50 proxy needed - direct connect */
1152 yaz_log(YLOG_DEBUG, "Connection create %s", cl->database->database->url);
1154 if (!(addr = cs_straddr(link, host->ipport)))
1156 yaz_log(YLOG_WARN|YLOG_ERRNO,
1157 "Lookup of IP address %s failed", host->ipport);
1162 /* Z39.50 proxy connect */
1163 yaz_log(YLOG_DEBUG, "Connection create %s proxy %s",
1164 cl->database->database->url, global_parameters.zproxy_override);
1166 if (!(addr = cs_straddr(link, global_parameters.zproxy_override)))
1168 yaz_log(YLOG_WARN|YLOG_ERRNO,
1169 "Lookup of IP address %s failed",
1170 global_parameters.zproxy_override);
1175 res = cs_connect(link, addr);
1178 yaz_log(YLOG_WARN|YLOG_ERRNO, "cs_connect %s", cl->database->database->url);
1182 con->state = Conn_Connecting;
1183 con->iochan = iochan_create(cs_fileno(link), connection_handler, 0);
1184 iochan_setdata(con->iochan, con);
1185 pazpar2_add_channel(con->iochan);
1187 /* this fragment is bad DRY: from client_prep_connection */
1188 cl->state = Client_Connecting;
1189 iochan_setflag(con->iochan, EVENT_OUTPUT);
1193 void connect_resolver_host(struct host *host)
1195 struct connection *con = host->connections;
1199 if (con->state == Conn_Resolving)
1201 if (!host->ipport) /* unresolved */
1203 connection_destroy(con);
1204 /* start all over .. at some point it will be NULL */
1205 con = host->connections;
1207 else if (!con->client)
1209 yaz_log(YLOG_WARN, "connect_unresolved_host : ophan client");
1210 connection_destroy(con);
1211 /* start all over .. at some point it will be NULL */
1212 con = host->connections;
1216 connection_connect(con);
1224 // Creates a new connection for client, associated with the host of
1225 // client's database
1226 static struct connection *connection_create(struct client *cl)
1228 struct connection *new;
1229 struct host *host = cl->database->database->host;
1231 if ((new = connection_freelist))
1232 connection_freelist = new->next;
1235 new = xmalloc(sizeof (struct connection));
1240 new->next = new->host->connections;
1241 new->host->connections = new;
1243 cl->connection = new;
1245 new->state = Conn_Resolving;
1247 connection_connect(new);
1251 // Close connection and set state to error
1252 static void client_fatal(struct client *cl)
1254 yaz_log(YLOG_WARN, "Fatal error from %s", cl->database->database->url);
1255 connection_destroy(cl->connection);
1256 cl->state = Client_Error;
1259 // Ensure that client has a connection associated
1260 static int client_prep_connection(struct client *cl)
1262 struct connection *co;
1263 struct session *se = cl->session;
1264 struct host *host = cl->database->database->host;
1266 co = cl->connection;
1268 yaz_log(YLOG_DEBUG, "Client prep %s", cl->database->database->url);
1272 // See if someone else has an idle connection
1273 // We should look at timestamps here to select the longest-idle connection
1274 for (co = host->connections; co; co = co->next)
1275 if (co->state == Conn_Open && (!co->client || co->client->session != se))
1279 connection_release(co);
1280 cl->connection = co;
1284 co = connection_create(cl);
1288 if (co->state == Conn_Connecting)
1290 cl->state = Client_Connecting;
1291 iochan_setflag(co->iochan, EVENT_OUTPUT);
1293 else if (co->state == Conn_Open)
1295 if (cl->state == Client_Error || cl->state == Client_Disconnected)
1296 cl->state = Client_Idle;
1297 iochan_setflag(co->iochan, EVENT_OUTPUT);
1305 // Initialize YAZ Map structures for MARC-based targets
1306 static int prepare_yazmarc(struct session_database *sdb)
1312 yaz_log(YLOG_WARN, "No settings for %s", sdb->database->url);
1315 if ((s = session_setting_oneval(sdb, PZ_NATIVESYNTAX)) && !strncmp(s, "iso2709", 7))
1317 char *encoding = "marc-8s", *e;
1320 // See if a native encoding is specified
1321 if ((e = strchr(s, ';')))
1324 sdb->yaz_marc = yaz_marc_create();
1325 yaz_marc_subfield_str(sdb->yaz_marc, "\t");
1327 cm = yaz_iconv_open("utf-8", encoding);
1331 "Unable to map from %s to UTF-8 for target %s",
1332 encoding, sdb->database->url);
1335 yaz_marc_iconv(sdb->yaz_marc, cm);
1340 // Prepare XSLT stylesheets for record normalization
1341 // Structures are allocated on the session_wide nmem to avoid having
1342 // to recompute this for every search. This would lead
1343 // to leaking if a single session was to repeatedly change the PZ_XSLT
1344 // setting. However, this is not a realistic use scenario.
1345 static int prepare_map(struct session *se, struct session_database *sdb)
1351 yaz_log(YLOG_WARN, "No settings on %s", sdb->database->url);
1354 if ((s = session_setting_oneval(sdb, PZ_XSLT)))
1357 struct database_retrievalmap **m = &sdb->map;
1360 nmem_strsplit(se->session_nmem, ",", s, &stylesheets, &num);
1361 for (i = 0; i < num; i++)
1363 (*m) = nmem_malloc(se->session_nmem, sizeof(**m));
1365 if (!((*m)->stylesheet = conf_load_stylesheet(stylesheets[i])))
1367 yaz_log(YLOG_FATAL, "Unable to load stylesheet: %s",
1375 yaz_log(YLOG_WARN, "No Normalization stylesheet for target %s",
1376 sdb->database->url);
1380 // This analyzes settings and recomputes any supporting data structures
1382 static int prepare_session_database(struct session *se, struct session_database *sdb)
1386 yaz_log(YLOG_WARN, "No settings associated with %s", sdb->database->url);
1389 if (sdb->settings[PZ_NATIVESYNTAX] && !sdb->yaz_marc)
1391 if (prepare_yazmarc(sdb) < 0)
1394 if (sdb->settings[PZ_XSLT] && !sdb->map)
1396 if (prepare_map(se, sdb) < 0)
1402 // Initialize CCL map for a target
1403 static CCL_bibset prepare_cclmap(struct client *cl)
1405 struct session_database *sdb = cl->database;
1411 res = ccl_qual_mk();
1412 for (s = sdb->settings[PZ_CCLMAP]; s; s = s->next)
1414 char *p = strchr(s->name + 3, ':');
1417 yaz_log(YLOG_WARN, "Malformed cclmap name: %s", s->name);
1422 ccl_qual_fitem(res, s->value, p);
1427 // Parse the query given the settings specific to this client
1428 static int client_parse_query(struct client *cl, const char *query)
1430 struct session *se = cl->session;
1431 struct ccl_rpn_node *cn;
1433 CCL_bibset ccl_map = prepare_cclmap(cl);
1437 cn = ccl_find_str(ccl_map, query, &cerror, &cpos);
1438 ccl_qual_rm(&ccl_map);
1441 cl->state = Client_Error;
1442 yaz_log(YLOG_WARN, "Failed to parse query for %s",
1443 cl->database->database->url);
1446 wrbuf_rewind(se->wrbuf);
1447 ccl_pquery(se->wrbuf, cn);
1448 wrbuf_putc(se->wrbuf, '\0');
1451 cl->pquery = xstrdup(wrbuf_buf(se->wrbuf));
1455 // Initialize relevance structure with query terms
1457 extract_terms(se->nmem, cn, p);
1458 se->relevance = relevance_create(se->nmem, (const char **) p,
1459 se->expected_maxrecs);
1466 static struct client *client_create(void)
1469 if (client_freelist)
1471 r = client_freelist;
1472 client_freelist = client_freelist->next;
1475 r = xmalloc(sizeof(struct client));
1485 r->state = Client_Disconnected;
1490 void client_destroy(struct client *c)
1492 struct session *se = c->session;
1493 if (c == se->clients)
1494 se->clients = c->next;
1498 for (cc = se->clients; cc && cc->next != c; cc = cc->next)
1504 connection_release(c->connection);
1505 c->next = client_freelist;
1506 client_freelist = c;
1509 void session_set_watch(struct session *s, int what, session_watchfun fun, void *data)
1511 s->watchlist[what].fun = fun;
1512 s->watchlist[what].data = data;
1515 void session_alert_watch(struct session *s, int what)
1517 if (!s->watchlist[what].fun)
1519 (*s->watchlist[what].fun)(s->watchlist[what].data);
1520 s->watchlist[what].fun = 0;
1521 s->watchlist[what].data = 0;
1524 //callback for grep_databases
1525 static void select_targets_callback(void *context, struct session_database *db)
1527 struct session *se = (struct session*) context;
1528 struct client *cl = client_create();
1531 cl->next = se->clients;
1535 // Associates a set of clients with a session;
1536 // Note: Session-databases represent databases with per-session setting overrides
1537 int select_targets(struct session *se, struct database_criterion *crit)
1540 client_destroy(se->clients);
1542 return session_grep_databases(se, crit, select_targets_callback);
1545 int session_active_clients(struct session *s)
1550 for (c = s->clients; c; c = c->next)
1551 if (c->connection && (c->state == Client_Connecting ||
1552 c->state == Client_Initializing ||
1553 c->state == Client_Searching ||
1554 c->state == Client_Presenting))
1560 // parses crit1=val1,crit2=val2|val3,...
1561 static struct database_criterion *parse_filter(NMEM m, const char *buf)
1563 struct database_criterion *res = 0;
1570 nmem_strsplit(m, ",", buf, &values, &num);
1571 for (i = 0; i < num; i++)
1576 struct database_criterion *new = nmem_malloc(m, sizeof(*new));
1577 char *eq = strchr(values[i], '=');
1580 yaz_log(YLOG_WARN, "Missing equal-sign in filter");
1584 new->name = values[i];
1585 nmem_strsplit(m, "|", eq, &subvalues, &subnum);
1587 for (subi = 0; subi < subnum; subi++)
1589 struct database_criterion_value *newv = nmem_malloc(m, sizeof(*newv));
1590 newv->value = subvalues[subi];
1591 newv->next = new->values;
1600 char *search(struct session *se, char *query, char *filter)
1602 int live_channels = 0;
1604 struct database_criterion *criteria;
1606 yaz_log(YLOG_DEBUG, "Search");
1608 nmem_reset(se->nmem);
1609 criteria = parse_filter(se->nmem, filter);
1611 live_channels = select_targets(se, criteria);
1614 int maxrecs = live_channels * global_parameters.toget;
1615 se->num_termlists = 0;
1616 se->reclist = reclist_create(se->nmem, maxrecs);
1617 // This will be initialized in send_search()
1618 se->total_records = se->total_hits = se->total_merged = 0;
1619 se->expected_maxrecs = maxrecs;
1626 for (cl = se->clients; cl; cl = cl->next)
1628 if (prepare_session_database(se, cl->database) < 0)
1629 return "CONFIG_ERROR";
1630 if (client_parse_query(cl, query) < 0) // Query must parse for all targets
1634 for (cl = se->clients; cl; cl = cl->next)
1636 client_prep_connection(cl);
1642 // Creates a new session_database object for a database
1643 static void session_init_databases_fun(void *context, struct database *db)
1645 struct session *se = (struct session *) context;
1646 struct session_database *new = nmem_malloc(se->session_nmem, sizeof(*new));
1647 int num = settings_num();
1653 new->settings = nmem_malloc(se->session_nmem, sizeof(struct settings *) * num);
1654 memset(new->settings, 0, sizeof(struct settings*) * num);
1657 for (i = 0; i < num; i++)
1658 new->settings[i] = db->settings[i];
1660 new->next = se->databases;
1661 se->databases = new;
1664 // Doesn't free memory associated with sdb -- nmem takes care of that
1665 static void session_database_destroy(struct session_database *sdb)
1667 struct database_retrievalmap *m;
1669 for (m = sdb->map; m; m = m->next)
1670 xsltFreeStylesheet(m->stylesheet);
1672 yaz_marc_destroy(sdb->yaz_marc);
1675 // Initialize session_database list -- this represents this session's view
1676 // of the database list -- subject to modification by the settings ws command
1677 void session_init_databases(struct session *se)
1680 grep_databases(se, 0, session_init_databases_fun);
1683 // Probably session_init_databases_fun should be refactored instead of
1685 static struct session_database *load_session_database(struct session *se, char *id)
1687 struct database *db = find_database(id, 0);
1689 session_init_databases_fun((void*) se, db);
1690 // New sdb is head of se->databases list
1691 return se->databases;
1694 // Find an existing session database. If not found, load it
1695 static struct session_database *find_session_database(struct session *se, char *id)
1697 struct session_database *sdb;
1699 for (sdb = se->databases; sdb; sdb = sdb->next)
1700 if (!strcmp(sdb->database->url, id))
1702 return load_session_database(se, id);
1705 // Apply a session override to a database
1706 void session_apply_setting(struct session *se, char *dbname, char *setting, char *value)
1708 struct session_database *sdb = find_session_database(se, dbname);
1709 struct setting *new = nmem_malloc(se->session_nmem, sizeof(*new));
1710 int offset = settings_offset(setting);
1714 yaz_log(YLOG_WARN, "Unknown setting %s", setting);
1717 new->precedence = 0;
1718 new->target = dbname;
1719 new->name = setting;
1721 new->next = sdb->settings[offset];
1722 sdb->settings[offset] = new;
1724 // Force later recompute of settings-driven data structures
1725 // (happens when a search starts and client connections are prepared)
1728 case PZ_NATIVESYNTAX:
1731 yaz_marc_destroy(sdb->yaz_marc);
1738 struct database_retrievalmap *m;
1739 // We don't worry about the map structure -- it's in nmem
1740 for (m = sdb->map; m; m = m->next)
1741 xsltFreeStylesheet(m->stylesheet);
1748 void destroy_session(struct session *s)
1750 struct session_database *sdb;
1752 yaz_log(YLOG_LOG, "Destroying session");
1754 client_destroy(s->clients);
1755 for (sdb = s->databases; sdb; sdb = sdb->next)
1756 session_database_destroy(sdb);
1757 nmem_destroy(s->nmem);
1758 wrbuf_destroy(s->wrbuf);
1761 struct session *new_session(NMEM nmem)
1764 struct session *session = nmem_malloc(nmem, sizeof(*session));
1766 yaz_log(YLOG_DEBUG, "New Pazpar2 session");
1768 session->total_hits = 0;
1769 session->total_records = 0;
1770 session->num_termlists = 0;
1771 session->reclist = 0;
1772 session->requestid = -1;
1773 session->clients = 0;
1774 session->expected_maxrecs = 0;
1775 session->session_nmem = nmem;
1776 session->nmem = nmem_create();
1777 session->wrbuf = wrbuf_alloc();
1778 session_init_databases(session);
1779 for (i = 0; i <= SESSION_WATCH_MAX; i++)
1781 session->watchlist[i].data = 0;
1782 session->watchlist[i].fun = 0;
1788 struct hitsbytarget *hitsbytarget(struct session *se, int *count)
1790 static struct hitsbytarget res[1000]; // FIXME MM
1794 for (cl = se->clients; cl; cl = cl->next)
1796 char *name = session_setting_oneval(cl->database, PZ_NAME);
1798 res[*count].id = cl->database->database->url;
1799 res[*count].name = *name ? name : "Unknown";
1800 res[*count].hits = cl->hits;
1801 res[*count].records = cl->records;
1802 res[*count].diagnostic = cl->diagnostic;
1803 res[*count].state = client_states[cl->state];
1804 res[*count].connected = cl->connection ? 1 : 0;
1811 struct termlist_score **termlist(struct session *s, const char *name, int *num)
1815 for (i = 0; i < s->num_termlists; i++)
1816 if (!strcmp((const char *) s->termlists[i].name, name))
1817 return termlist_highscore(s->termlists[i].termlist, num);
1821 #ifdef MISSING_HEADERS
1822 void report_nmem_stats(void)
1824 size_t in_use, is_free;
1826 nmem_get_memory_in_use(&in_use);
1827 nmem_get_memory_free(&is_free);
1829 yaz_log(YLOG_LOG, "nmem stat: use=%ld free=%ld",
1830 (long) in_use, (long) is_free);
1834 struct record_cluster *show_single(struct session *s, int id)
1836 struct record_cluster *r;
1838 reclist_rewind(s->reclist);
1839 while ((r = reclist_read_record(s->reclist)))
1845 struct record_cluster **show(struct session *s, struct reclist_sortparms *sp, int start,
1846 int *num, int *total, int *sumhits, NMEM nmem_show)
1848 struct record_cluster **recs = nmem_malloc(nmem_show, *num
1849 * sizeof(struct record_cluster *));
1850 struct reclist_sortparms *spp;
1853 yaz_timing_t t = yaz_timing_create();
1856 for (spp = sp; spp; spp = spp->next)
1857 if (spp->type == Metadata_sortkey_relevance)
1859 relevance_prepare_read(s->relevance, s->reclist);
1862 reclist_sort(s->reclist, sp);
1864 *total = s->reclist->num_records;
1865 *sumhits = s->total_hits;
1867 for (i = 0; i < start; i++)
1868 if (!reclist_read_record(s->reclist))
1875 for (i = 0; i < *num; i++)
1877 struct record_cluster *r = reclist_read_record(s->reclist);
1887 yaz_log(YLOG_LOG, "show %6.5f %3.2f %3.2f",
1888 yaz_timing_get_real(t), yaz_timing_get_user(t),
1889 yaz_timing_get_sys(t));
1890 yaz_timing_destroy(&t);
1895 void statistics(struct session *se, struct statistics *stat)
1900 memset(stat, 0, sizeof(*stat));
1901 for (cl = se->clients; cl; cl = cl->next)
1903 if (!cl->connection)
1904 stat->num_no_connection++;
1907 case Client_Connecting: stat->num_connecting++; break;
1908 case Client_Initializing: stat->num_initializing++; break;
1909 case Client_Searching: stat->num_searching++; break;
1910 case Client_Presenting: stat->num_presenting++; break;
1911 case Client_Idle: stat->num_idle++; break;
1912 case Client_Failed: stat->num_failed++; break;
1913 case Client_Error: stat->num_error++; break;
1918 stat->num_hits = se->total_hits;
1919 stat->num_records = se->total_records;
1921 stat->num_clients = count;
1924 void start_http_listener(void)
1927 struct conf_server *ser = global_parameters.server;
1929 if (*global_parameters.listener_override)
1930 strcpy(hp, global_parameters.listener_override);
1933 strcpy(hp, ser->host ? ser->host : "");
1938 sprintf(hp + strlen(hp), "%d", ser->port);
1944 void start_proxy(void)
1947 struct conf_server *ser = global_parameters.server;
1949 if (*global_parameters.proxy_override)
1950 strcpy(hp, global_parameters.proxy_override);
1951 else if (ser->proxy_host || ser->proxy_port)
1953 strcpy(hp, ser->proxy_host ? ser->proxy_host : "");
1954 if (ser->proxy_port)
1958 sprintf(hp + strlen(hp), "%d", ser->proxy_port);
1964 http_set_proxyaddr(hp, ser->myurl ? ser->myurl : "");
1967 void start_zproxy(void)
1969 struct conf_server *ser = global_parameters.server;
1971 if (*global_parameters.zproxy_override){
1972 yaz_log(YLOG_LOG, "Z39.50 proxy %s",
1973 global_parameters.zproxy_override);
1977 else if (ser->zproxy_host || ser->zproxy_port)
1981 strcpy(hp, ser->zproxy_host ? ser->zproxy_host : "");
1982 if (ser->zproxy_port)
1989 sprintf(hp + strlen(hp), "%d", ser->zproxy_port);
1991 strcpy(global_parameters.zproxy_override, hp);
1992 yaz_log(YLOG_LOG, "Z39.50 proxy %s",
1993 global_parameters.zproxy_override);
2000 // Master list of connections we're handling events to
2001 static IOCHAN channel_list = 0;
2002 void pazpar2_add_channel(IOCHAN chan)
2004 chan->next = channel_list;
2005 channel_list = chan;
2008 void pazpar2_event_loop()
2010 event_loop(&channel_list);
2016 * indent-tabs-mode: nil
2018 * vim: shiftwidth=4 tabstop=8 expandtab