removed some old #ifdeffed-out code
[pazpar2-moved-to-github.git] / src / pazpar2.c
1 /* $Id: pazpar2.c,v 1.61 2007-04-03 04:05:01 quinn Exp $ */
2
3 #include <stdlib.h>
4 #include <stdio.h>
5 #include <string.h>
6 #include <sys/time.h>
7 #include <unistd.h>
8 #include <sys/socket.h>
9 #include <netdb.h>
10 #include <signal.h>
11 #include <ctype.h>
12 #include <assert.h>
13
14 #include <yaz/marcdisp.h>
15 #include <yaz/comstack.h>
16 #include <yaz/tcpip.h>
17 #include <yaz/proto.h>
18 #include <yaz/readconf.h>
19 #include <yaz/pquery.h>
20 #include <yaz/otherinfo.h>
21 #include <yaz/yaz-util.h>
22 #include <yaz/nmem.h>
23
24 #if HAVE_CONFIG_H
25 #include "cconfig.h"
26 #endif
27
28 #define USE_TIMING 0
29 #if USE_TIMING
30 #include <yaz/timing.h>
31 #endif
32
33 #include <netinet/in.h>
34
35 #include "pazpar2.h"
36 #include "eventl.h"
37 #include "http.h"
38 #include "termlists.h"
39 #include "reclists.h"
40 #include "relevance.h"
41 #include "config.h"
42 #include "database.h"
43 #include "settings.h"
44
45 #define MAX_CHUNK 15
46
47 static void client_fatal(struct client *cl);
48 static void connection_destroy(struct connection *co);
49 static int client_prep_connection(struct client *cl);
50 static void ingest_records(struct client *cl, Z_Records *r);
51 //static struct conf_retrievalprofile *database_retrieval_profile(struct database *db);
52 void session_alert_watch(struct session *s, int what);
53 char *session_setting_oneval(struct session *s, struct database *db, const char *name);
54
55 IOCHAN channel_list = 0;  // Master list of connections we're handling events to
56
57 static struct connection *connection_freelist = 0;
58 static struct client *client_freelist = 0;
59
60 static char *client_states[] = {
61     "Client_Connecting",
62     "Client_Connected",
63     "Client_Idle",
64     "Client_Initializing",
65     "Client_Searching",
66     "Client_Presenting",
67     "Client_Error",
68     "Client_Failed",
69     "Client_Disconnected",
70     "Client_Stopped"
71 };
72
73 // Note: Some things in this structure will eventually move to configuration
74 struct parameters global_parameters = 
75 {
76     "",
77     "",
78     "",
79     "",
80     0,
81     0,
82     30,
83     "81",
84     "Index Data PazPar2 (MasterKey)",
85     VERSION,
86     600, // 10 minutes
87     60,
88     100,
89     MAX_CHUNK,
90     0,
91     0,
92     0
93 };
94
95 static int send_apdu(struct client *c, Z_APDU *a)
96 {
97     struct connection *co = c->connection;
98     char *buf;
99     int len, r;
100
101     if (!z_APDU(global_parameters.odr_out, &a, 0, 0))
102     {
103         odr_perror(global_parameters.odr_out, "Encoding APDU");
104         abort();
105     }
106     buf = odr_getbuf(global_parameters.odr_out, &len, 0);
107     r = cs_put(co->link, buf, len);
108     if (r < 0)
109     {
110         yaz_log(YLOG_WARN, "cs_put: %s", cs_errmsg(cs_errno(co->link)));
111         return -1;
112     }
113     else if (r == 1)
114     {
115         fprintf(stderr, "cs_put incomplete (ParaZ does not handle that)\n");
116         exit(1);
117     }
118     odr_reset(global_parameters.odr_out); /* release the APDU structure  */
119     co->state = Conn_Waiting;
120     return 0;
121 }
122
123
124 static void send_init(IOCHAN i)
125 {
126
127     struct connection *co = iochan_getdata(i);
128     struct client *cl = co->client;
129     Z_APDU *a = zget_APDU(global_parameters.odr_out, Z_APDU_initRequest);
130
131     a->u.initRequest->implementationId = global_parameters.implementationId;
132     a->u.initRequest->implementationName = global_parameters.implementationName;
133     a->u.initRequest->implementationVersion =
134         global_parameters.implementationVersion;
135     ODR_MASK_SET(a->u.initRequest->options, Z_Options_search);
136     ODR_MASK_SET(a->u.initRequest->options, Z_Options_present);
137     ODR_MASK_SET(a->u.initRequest->options, Z_Options_namedResultSets);
138
139     ODR_MASK_SET(a->u.initRequest->protocolVersion, Z_ProtocolVersion_1);
140     ODR_MASK_SET(a->u.initRequest->protocolVersion, Z_ProtocolVersion_2);
141     ODR_MASK_SET(a->u.initRequest->protocolVersion, Z_ProtocolVersion_3);
142
143
144     /* add virtual host if tunneling through Z39.50 proxy */
145     
146     if (0 < strlen(global_parameters.zproxy_override) 
147         && 0 < strlen(cl->database->url))
148         yaz_oi_set_string_oidval(&a->u.initRequest->otherInfo, 
149                                  global_parameters.odr_out, VAL_PROXY,
150                                  1, cl->database->url);
151     
152
153
154     if (send_apdu(cl, a) >= 0)
155     {
156         iochan_setflags(i, EVENT_INPUT);
157         cl->state = Client_Initializing;
158     }
159     else
160         cl->state = Client_Error;
161     odr_reset(global_parameters.odr_out);
162 }
163
164 static void pull_terms(NMEM nmem, struct ccl_rpn_node *n, char **termlist, int *num)
165 {
166     switch (n->kind)
167     {
168         case CCL_RPN_AND:
169         case CCL_RPN_OR:
170         case CCL_RPN_NOT:
171         case CCL_RPN_PROX:
172             pull_terms(nmem, n->u.p[0], termlist, num);
173             pull_terms(nmem, n->u.p[1], termlist, num);
174             break;
175         case CCL_RPN_TERM:
176             termlist[(*num)++] = nmem_strdup(nmem, n->u.t.term);
177             break;
178         default: // NOOP
179             break;
180     }
181 }
182
183 // Extract terms from query into null-terminated termlist
184 static void extract_terms(NMEM nmem, struct ccl_rpn_node *query, char **termlist)
185 {
186     int num = 0;
187
188     pull_terms(nmem, query, termlist, &num);
189     termlist[num] = 0;
190 }
191
192 static void send_search(IOCHAN i)
193 {
194     struct connection *co = iochan_getdata(i);
195     struct client *cl = co->client; 
196     struct session *se = cl->session;
197     struct database *db = cl->database;
198     Z_APDU *a = zget_APDU(global_parameters.odr_out, Z_APDU_searchRequest);
199     int ndb, cerror, cpos;
200     char **databaselist;
201     Z_Query *zquery;
202     struct ccl_rpn_node *cn;
203     int ssub = 0, lslb = 100000, mspn = 10;
204     char *recsyn;
205     char *piggyback;
206
207     yaz_log(YLOG_DEBUG, "Sending search");
208
209     cn = ccl_find_str(db->ccl_map, se->query, &cerror, &cpos);
210     if (!cn)
211         return;
212
213     if (!se->relevance)
214     {
215         // Initialize relevance structure with query terms
216         char *p[512];
217         extract_terms(se->nmem, cn, p);
218         se->relevance = relevance_create(se->nmem, (const char **) p,
219                 se->expected_maxrecs);
220     }
221
222     a->u.searchRequest->query = zquery = odr_malloc(global_parameters.odr_out,
223             sizeof(Z_Query));
224     zquery->which = Z_Query_type_1;
225     zquery->u.type_1 = ccl_rpn_query(global_parameters.odr_out, cn);
226     ccl_rpn_delete(cn);
227
228     for (ndb = 0; db->databases[ndb]; ndb++)
229         ;
230     databaselist = odr_malloc(global_parameters.odr_out, sizeof(char*) * ndb);
231     for (ndb = 0; db->databases[ndb]; ndb++)
232         databaselist[ndb] = db->databases[ndb];
233
234     if (!(piggyback = session_setting_oneval(se, db, "pz:piggyback")) || *piggyback == '1')
235     {
236         if ((recsyn = session_setting_oneval(se, db, "pz:syntax")))
237             a->u.searchRequest->preferredRecordSyntax =
238                     yaz_str_to_z3950oid(global_parameters.odr_out,
239                     CLASS_RECSYN, recsyn);
240         a->u.searchRequest->smallSetUpperBound = &ssub;
241         a->u.searchRequest->largeSetLowerBound = &lslb;
242         a->u.searchRequest->mediumSetPresentNumber = &mspn;
243     }
244     a->u.searchRequest->resultSetName = "Default";
245     a->u.searchRequest->databaseNames = databaselist;
246     a->u.searchRequest->num_databaseNames = ndb;
247
248     if (send_apdu(cl, a) >= 0)
249     {
250         iochan_setflags(i, EVENT_INPUT);
251         cl->state = Client_Searching;
252         cl->requestid = se->requestid;
253     }
254     else
255         cl->state = Client_Error;
256
257     odr_reset(global_parameters.odr_out);
258 }
259
260 static void send_present(IOCHAN i)
261 {
262     struct connection *co = iochan_getdata(i);
263     struct client *cl = co->client; 
264     struct session *se = cl->session;
265     struct database *db = cl->database;
266     Z_APDU *a = zget_APDU(global_parameters.odr_out, Z_APDU_presentRequest);
267     int toget;
268     int start = cl->records + 1;
269     char *recsyn;
270
271     toget = global_parameters.chunk;
272     if (toget > global_parameters.toget - cl->records)
273         toget = global_parameters.toget - cl->records;
274     if (toget > cl->hits - cl->records)
275         toget = cl->hits - cl->records;
276
277     yaz_log(YLOG_DEBUG, "Trying to present %d records\n", toget);
278
279     a->u.presentRequest->resultSetStartPoint = &start;
280     a->u.presentRequest->numberOfRecordsRequested = &toget;
281
282     a->u.presentRequest->resultSetId = "Default";
283
284     if ((recsyn = session_setting_oneval(se, db, "pz:syntax")))
285         a->u.presentRequest->preferredRecordSyntax =
286                 yaz_str_to_z3950oid(global_parameters.odr_out,
287                 CLASS_RECSYN, recsyn);
288
289     if (send_apdu(cl, a) >= 0)
290     {
291         iochan_setflags(i, EVENT_INPUT);
292         cl->state = Client_Presenting;
293     }
294     else
295         cl->state = Client_Error;
296     odr_reset(global_parameters.odr_out);
297 }
298
299 static void do_initResponse(IOCHAN i, Z_APDU *a)
300 {
301     struct connection *co = iochan_getdata(i);
302     struct client *cl = co->client;
303     Z_InitResponse *r = a->u.initResponse;
304
305     yaz_log(YLOG_DEBUG, "Received init response");
306
307     if (*r->result)
308     {
309         cl->state = Client_Idle;
310     }
311     else
312         cl->state = Client_Failed; // FIXME need to do something to the connection
313 }
314
315 static void do_searchResponse(IOCHAN i, Z_APDU *a)
316 {
317     struct connection *co = iochan_getdata(i);
318     struct client *cl = co->client;
319     struct session *se = cl->session;
320     Z_SearchResponse *r = a->u.searchResponse;
321
322     yaz_log(YLOG_DEBUG, "Searchresponse (status=%d)", *r->searchStatus);
323
324     if (*r->searchStatus)
325     {
326         cl->hits = *r->resultCount;
327         se->total_hits += cl->hits;
328         if (r->presentStatus && !*r->presentStatus && r->records)
329         {
330             yaz_log(YLOG_DEBUG, "Records in search response");
331             ingest_records(cl, r->records);
332         }
333         cl->state = Client_Idle;
334     }
335     else
336     {          /*"FAILED"*/
337         cl->hits = 0;
338         cl->state = Client_Error;
339         if (r->records) {
340             Z_Records *recs = r->records;
341             if (recs->which == Z_Records_NSD)
342             {
343                 yaz_log(YLOG_WARN, "Non-surrogate diagnostic");
344                 cl->diagnostic = *recs->u.nonSurrogateDiagnostic->condition;
345                 cl->state = Client_Error;
346             }
347         }
348     }
349 }
350
351 char *normalize_mergekey(char *buf, int skiparticle)
352 {
353     char *p = buf, *pout = buf;
354
355     if (skiparticle)
356     {
357         char firstword[64];
358         char articles[] = "the den der die des an a "; // must end in space
359
360         while (*p && !isalnum(*p))
361             p++;
362         pout = firstword;
363         while (*p && *p != ' ' && pout - firstword < 62)
364             *(pout++) = tolower(*(p++));
365         *(pout++) = ' ';
366         *(pout++) = '\0';
367         if (!strstr(articles, firstword))
368             p = buf;
369         pout = buf;
370     }
371
372     while (*p)
373     {
374         while (*p && !isalnum(*p))
375             p++;
376         while (isalnum(*p))
377             *(pout++) = tolower(*(p++));
378         if (*p)
379             *(pout++) = ' ';
380         while (*p && !isalnum(*p))
381             p++;
382     }
383     if (buf != pout)
384         do {
385             *(pout--) = '\0';
386         }
387         while (pout > buf && *pout == ' ');
388
389     return buf;
390 }
391
392 static void add_facet(struct session *s, const char *type, const char *value)
393 {
394     int i;
395
396     if (!*value)
397         return;
398     for (i = 0; i < s->num_termlists; i++)
399         if (!strcmp(s->termlists[i].name, type))
400             break;
401     if (i == s->num_termlists)
402     {
403         if (i == SESSION_MAX_TERMLISTS)
404         {
405             yaz_log(YLOG_FATAL, "Too many termlists");
406             exit(1);
407         }
408         s->termlists[i].name = nmem_strdup(s->nmem, type);
409         s->termlists[i].termlist = termlist_create(s->nmem, s->expected_maxrecs, 15);
410         s->num_termlists = i + 1;
411     }
412     termlist_insert(s->termlists[i].termlist, value);
413 }
414
415 static xmlDoc *normalize_record(struct client *cl, Z_External *rec)
416 {
417     struct conf_retrievalprofile *rprofile = cl->database->rprofile;
418     struct conf_retrievalmap *m;
419     xmlNode *res;
420     xmlDoc *rdoc;
421
422     // First normalize to XML
423     if (rprofile->native_syntax == Nativesyn_iso2709)
424     {
425         char *buf;
426         int len;
427         if (rec->which != Z_External_octet)
428         {
429             yaz_log(YLOG_WARN, "Unexpected external branch, probably BER");
430             return 0;
431         }
432         buf = (char*) rec->u.octet_aligned->buf;
433         len = rec->u.octet_aligned->len;
434         if (yaz_marc_read_iso2709(rprofile->yaz_marc, buf, len) < 0)
435         {
436             yaz_log(YLOG_WARN, "Failed to decode MARC");
437             return 0;
438         }
439         if (yaz_marc_write_xml(rprofile->yaz_marc, &res,
440                     "http://www.loc.gov/MARC21/slim", 0, 0) < 0)
441         {
442             yaz_log(YLOG_WARN, "Failed to encode as XML");
443             return 0;
444         }
445         rdoc = xmlNewDoc((xmlChar *) "1.0");
446         xmlDocSetRootElement(rdoc, res);
447     }
448     else
449     {
450         yaz_log(YLOG_FATAL, "Unknown native_syntax in normalize_record");
451         exit(1);
452     }
453
454     if (global_parameters.dump_records)
455     {
456         fprintf(stderr, "Input Record (normalized):\n----------------\n");
457 #if LIBXML_VERSION >= 20600
458         xmlDocFormatDump(stderr, rdoc, 1);
459 #else
460         xmlDocDump(stderr, rdoc);
461 #endif
462     }
463
464     for (m = rprofile->maplist; m; m = m->next)
465     {
466         xmlDoc *new;
467         if (m->type != Map_xslt)
468         {
469             yaz_log(YLOG_WARN, "Unknown map type");
470             return 0;
471         }
472         if (!(new = xsltApplyStylesheet(m->stylesheet, rdoc, 0)))
473         {
474             yaz_log(YLOG_WARN, "XSLT transformation failed");
475             return 0;
476         }
477         xmlFreeDoc(rdoc);
478         rdoc = new;
479     }
480     if (global_parameters.dump_records)
481     {
482         fprintf(stderr, "Record:\n----------------\n");
483 #if LIBXML_VERSION >= 20600
484         xmlDocFormatDump(stderr, rdoc, 1);
485 #else
486         xmlDocDump(stderr, rdoc);
487 #endif
488     }
489     return rdoc;
490 }
491
492 // Extract what appears to be years from buf, storing highest and
493 // lowest values.
494 static int extract_years(const char *buf, int *first, int *last)
495 {
496     *first = -1;
497     *last = -1;
498     while (*buf)
499     {
500         const char *e;
501         int len;
502
503         while (*buf && !isdigit(*buf))
504             buf++;
505         len = 0;
506         for (e = buf; *e && isdigit(*e); e++)
507             len++;
508         if (len == 4)
509         {
510             int value = atoi(buf);
511             if (*first < 0 || value < *first)
512                 *first = value;
513             if (*last < 0 || value > *last)
514                 *last = value;
515         }
516         buf = e;
517     }
518     return *first;
519 }
520
521 static struct record *ingest_record(struct client *cl, Z_External *rec)
522 {
523     xmlDoc *xdoc = normalize_record(cl, rec);
524     xmlNode *root, *n;
525     struct record *res;
526     struct record_cluster *cluster;
527     struct session *se = cl->session;
528     xmlChar *mergekey, *mergekey_norm;
529     xmlChar *type = 0;
530     xmlChar *value = 0;
531     struct conf_service *service = global_parameters.server->service;
532
533     if (!xdoc)
534         return 0;
535
536     root = xmlDocGetRootElement(xdoc);
537     if (!(mergekey = xmlGetProp(root, (xmlChar *) "mergekey")))
538     {
539         yaz_log(YLOG_WARN, "No mergekey found in record");
540         xmlFreeDoc(xdoc);
541         return 0;
542     }
543
544     res = nmem_malloc(se->nmem, sizeof(struct record));
545     res->next = 0;
546     res->client = cl;
547     res->metadata = nmem_malloc(se->nmem,
548             sizeof(struct record_metadata*) * service->num_metadata);
549     memset(res->metadata, 0, sizeof(struct record_metadata*) * service->num_metadata);
550
551     mergekey_norm = (xmlChar *) nmem_strdup(se->nmem, (char*) mergekey);
552     xmlFree(mergekey);
553     normalize_mergekey((char *) mergekey_norm, 0);
554
555     cluster = reclist_insert(se->reclist, res, (char *) mergekey_norm, 
556                              &se->total_merged);
557     if (global_parameters.dump_records)
558         yaz_log(YLOG_LOG, "Cluster id %d from %s (#%d)", cluster->recid,
559                 cl->database->url, cl->records);
560     if (!cluster)
561     {
562         /* no room for record */
563         xmlFreeDoc(xdoc);
564         return 0;
565     }
566     relevance_newrec(se->relevance, cluster);
567
568     for (n = root->children; n; n = n->next)
569     {
570         if (type)
571             xmlFree(type);
572         if (value)
573             xmlFree(value);
574         type = value = 0;
575
576         if (n->type != XML_ELEMENT_NODE)
577             continue;
578         if (!strcmp((const char *) n->name, "metadata"))
579         {
580             struct conf_metadata *md = 0;
581             struct conf_sortkey *sk = 0;
582             struct record_metadata **wheretoput, *newm;
583             int imeta;
584             int first, last;
585
586             type = xmlGetProp(n, (xmlChar *) "type");
587             value = xmlNodeListGetString(xdoc, n->children, 0);
588
589             if (!type || !value)
590                 continue;
591
592             // First, find out what field we're looking at
593             for (imeta = 0; imeta < service->num_metadata; imeta++)
594                 if (!strcmp((const char *) type, service->metadata[imeta].name))
595                 {
596                     md = &service->metadata[imeta];
597                     if (md->sortkey_offset >= 0)
598                         sk = &service->sortkeys[md->sortkey_offset];
599                     break;
600                 }
601             if (!md)
602             {
603                 yaz_log(YLOG_WARN, "Ignoring unknown metadata element: %s", type);
604                 continue;
605             }
606
607             // Find out where we are putting it
608             if (md->merge == Metadata_merge_no)
609                 wheretoput = &res->metadata[imeta];
610             else
611                 wheretoput = &cluster->metadata[imeta];
612             
613             // Put it there
614             newm = nmem_malloc(se->nmem, sizeof(struct record_metadata));
615             newm->next = 0;
616             if (md->type == Metadata_type_generic)
617             {
618                 char *p, *pe;
619                 for (p = (char *) value; *p && isspace(*p); p++)
620                     ;
621                 for (pe = p + strlen(p) - 1;
622                         pe > p && strchr(" ,/.:([", *pe); pe--)
623                     *pe = '\0';
624                 newm->data.text = nmem_strdup(se->nmem, p);
625
626             }
627             else if (md->type == Metadata_type_year)
628             {
629                 if (extract_years((char *) value, &first, &last) < 0)
630                     continue;
631             }
632             else
633             {
634                 yaz_log(YLOG_WARN, "Unknown type in metadata element %s", type);
635                 continue;
636             }
637             if (md->type == Metadata_type_year && md->merge != Metadata_merge_range)
638             {
639                 yaz_log(YLOG_WARN, "Only range merging supported for years");
640                 continue;
641             }
642             if (md->merge == Metadata_merge_unique)
643             {
644                 struct record_metadata *mnode;
645                 for (mnode = *wheretoput; mnode; mnode = mnode->next)
646                     if (!strcmp((const char *) mnode->data.text, newm->data.text))
647                         break;
648                 if (!mnode)
649                 {
650                     newm->next = *wheretoput;
651                     *wheretoput = newm;
652                 }
653             }
654             else if (md->merge == Metadata_merge_longest)
655             {
656                 if (!*wheretoput ||
657                         strlen(newm->data.text) > strlen((*wheretoput)->data.text))
658                 {
659                     *wheretoput = newm;
660                     if (sk)
661                     {
662                         char *s = nmem_strdup(se->nmem, newm->data.text);
663                         if (!cluster->sortkeys[md->sortkey_offset])
664                             cluster->sortkeys[md->sortkey_offset] = 
665                                 nmem_malloc(se->nmem, sizeof(union data_types));
666                         normalize_mergekey(s,
667                                 (sk->type == Metadata_sortkey_skiparticle));
668                         cluster->sortkeys[md->sortkey_offset]->text = s;
669                     }
670                 }
671             }
672             else if (md->merge == Metadata_merge_all || md->merge == Metadata_merge_no)
673             {
674                 newm->next = *wheretoput;
675                 *wheretoput = newm;
676             }
677             else if (md->merge == Metadata_merge_range)
678             {
679                 assert(md->type == Metadata_type_year);
680                 if (!*wheretoput)
681                 {
682                     *wheretoput = newm;
683                     (*wheretoput)->data.number.min = first;
684                     (*wheretoput)->data.number.max = last;
685                     if (sk)
686                         cluster->sortkeys[md->sortkey_offset] = &newm->data;
687                 }
688                 else
689                 {
690                     if (first < (*wheretoput)->data.number.min)
691                         (*wheretoput)->data.number.min = first;
692                     if (last > (*wheretoput)->data.number.max)
693                         (*wheretoput)->data.number.max = last;
694                 }
695 #ifdef GAGA
696                 if (sk)
697                 {
698                     union data_types *sdata = cluster->sortkeys[md->sortkey_offset];
699                     yaz_log(YLOG_LOG, "SK range: %d-%d", sdata->number.min, sdata->number.max);
700                 }
701 #endif
702             }
703             else
704                 yaz_log(YLOG_WARN, "Don't know how to merge on element name %s", md->name);
705
706             if (md->rank)
707                 relevance_countwords(se->relevance, cluster, 
708                                      (char *) value, md->rank);
709             if (md->termlist)
710             {
711                 if (md->type == Metadata_type_year)
712                 {
713                     char year[64];
714                     sprintf(year, "%d", last);
715                     add_facet(se, (char *) type, year);
716                     if (first != last)
717                     {
718                         sprintf(year, "%d", first);
719                         add_facet(se, (char *) type, year);
720                     }
721                 }
722                 else
723                     add_facet(se, (char *) type, (char *) value);
724             }
725             xmlFree(type);
726             xmlFree(value);
727             type = value = 0;
728         }
729         else
730             yaz_log(YLOG_WARN, "Unexpected element %s in internal record", n->name);
731     }
732     if (type)
733         xmlFree(type);
734     if (value)
735         xmlFree(value);
736
737     xmlFreeDoc(xdoc);
738
739     relevance_donerecord(se->relevance, cluster);
740     se->total_records++;
741
742     return res;
743 }
744
745 // Retrieve first defined value for 'name' for given database.
746 // Will be extended to take into account user associated with session
747 char *session_setting_oneval(struct session *s, struct database *db, const char *name)
748 {
749     int offset = settings_offset(name);
750
751     if (offset < 0)
752         return 0;
753     if (!db->settings[offset])
754         return 0;
755     return db->settings[offset]->value;
756 }
757
758 static void ingest_records(struct client *cl, Z_Records *r)
759 {
760 #if USE_TIMING
761     yaz_timing_t t = yaz_timing_create();
762 #endif
763     struct record *rec;
764     struct session *s = cl->session;
765     Z_NamePlusRecordList *rlist;
766     int i;
767
768     if (r->which != Z_Records_DBOSD)
769         return;
770     rlist = r->u.databaseOrSurDiagnostics;
771     for (i = 0; i < rlist->num_records; i++)
772     {
773         Z_NamePlusRecord *npr = rlist->records[i];
774
775         cl->records++;
776         if (npr->which != Z_NamePlusRecord_databaseRecord)
777         {
778             yaz_log(YLOG_WARN, "Unexpected record type, probably diagnostic");
779             continue;
780         }
781
782         rec = ingest_record(cl, npr->u.databaseRecord);
783         if (!rec)
784             continue;
785     }
786     if (s->watchlist[SESSION_WATCH_RECORDS].fun && rlist->num_records)
787         session_alert_watch(s, SESSION_WATCH_RECORDS);
788
789 #if USE_TIMING
790     yaz_timing_stop(t);
791     yaz_log(YLOG_LOG, "ingest_records %6.5f %3.2f %3.2f", 
792             yaz_timing_get_real(t), yaz_timing_get_user(t),
793             yaz_timing_get_sys(t));
794     yaz_timing_destroy(&t);
795 #endif
796 }
797
798 static void do_presentResponse(IOCHAN i, Z_APDU *a)
799 {
800     struct connection *co = iochan_getdata(i);
801     struct client *cl = co->client;
802     Z_PresentResponse *r = a->u.presentResponse;
803
804     if (r->records) {
805         Z_Records *recs = r->records;
806         if (recs->which == Z_Records_NSD)
807         {
808             yaz_log(YLOG_WARN, "Non-surrogate diagnostic");
809             cl->diagnostic = *recs->u.nonSurrogateDiagnostic->condition;
810             cl->state = Client_Error;
811         }
812     }
813
814     if (!*r->presentStatus && cl->state != Client_Error)
815     {
816         yaz_log(YLOG_DEBUG, "Good Present response");
817         ingest_records(cl, r->records);
818         cl->state = Client_Idle;
819     }
820     else if (*r->presentStatus) 
821     {
822         yaz_log(YLOG_WARN, "Bad Present response");
823         cl->state = Client_Error;
824     }
825 }
826
827 static void handler(IOCHAN i, int event)
828 {
829     struct connection *co = iochan_getdata(i);
830     struct client *cl = co->client;
831     struct session *se = 0;
832
833     if (cl)
834         se = cl->session;
835     else
836     {
837         yaz_log(YLOG_WARN, "Destroying orphan connection");
838         connection_destroy(co);
839         return;
840     }
841
842     if (co->state == Conn_Connecting && event & EVENT_OUTPUT)
843     {
844         int errcode;
845         socklen_t errlen = sizeof(errcode);
846
847         if (getsockopt(cs_fileno(co->link), SOL_SOCKET, SO_ERROR, &errcode,
848             &errlen) < 0 || errcode != 0)
849         {
850             client_fatal(cl);
851             return;
852         }
853         else
854         {
855             yaz_log(YLOG_DEBUG, "Connect OK");
856             co->state = Conn_Open;
857             if (cl)
858                 cl->state = Client_Connected;
859         }
860     }
861
862     else if (event & EVENT_INPUT)
863     {
864         int len = cs_get(co->link, &co->ibuf, &co->ibufsize);
865
866         if (len < 0)
867         {
868             yaz_log(YLOG_WARN|YLOG_ERRNO, "Error reading from Z server");
869             connection_destroy(co);
870             return;
871         }
872         else if (len == 0)
873         {
874             yaz_log(YLOG_WARN, "EOF reading from Z server");
875             connection_destroy(co);
876             return;
877         }
878         else if (len > 1) // We discard input if we have no connection
879         {
880             co->state = Conn_Open;
881
882             if (cl && (cl->requestid == se->requestid || cl->state == Client_Initializing))
883             {
884                 Z_APDU *a;
885
886                 odr_reset(global_parameters.odr_in);
887                 odr_setbuf(global_parameters.odr_in, co->ibuf, len, 0);
888                 if (!z_APDU(global_parameters.odr_in, &a, 0, 0))
889                 {
890                     client_fatal(cl);
891                     return;
892                 }
893                 switch (a->which)
894                 {
895                     case Z_APDU_initResponse:
896                         do_initResponse(i, a);
897                         break;
898                     case Z_APDU_searchResponse:
899                         do_searchResponse(i, a);
900                         break;
901                     case Z_APDU_presentResponse:
902                         do_presentResponse(i, a);
903                         break;
904                     default:
905                         yaz_log(YLOG_WARN, "Unexpected result from server");
906                         client_fatal(cl);
907                         return;
908                 }
909                 // We aren't expecting staggered output from target
910                 // if (cs_more(t->link))
911                 //    iochan_setevent(i, EVENT_INPUT);
912             }
913             else  // we throw away response and go to idle mode
914             {
915                 yaz_log(YLOG_DEBUG, "Ignoring result of expired operation");
916                 cl->state = Client_Idle;
917             }
918         }
919         /* if len==1 we do nothing but wait for more input */
920     }
921
922     if (cl->state == Client_Connected) {
923         send_init(i);
924     }
925
926     if (cl->state == Client_Idle)
927     {
928         if (cl->requestid != se->requestid && *se->query) {
929             send_search(i);
930         }
931         else if (cl->hits > 0 && cl->records < global_parameters.toget &&
932             cl->records < cl->hits) {
933             send_present(i);
934         }
935     }
936 }
937
938 // Disassociate connection from client
939 static void connection_release(struct connection *co)
940 {
941     struct client *cl = co->client;
942
943     yaz_log(YLOG_DEBUG, "Connection release %s", co->host->hostport);
944     if (!cl)
945         return;
946     cl->connection = 0;
947     co->client = 0;
948 }
949
950 // Close connection and recycle structure
951 static void connection_destroy(struct connection *co)
952 {
953     struct host *h = co->host;
954     cs_close(co->link);
955     iochan_destroy(co->iochan);
956
957     yaz_log(YLOG_DEBUG, "Connection destroy %s", co->host->hostport);
958     if (h->connections == co)
959         h->connections = co->next;
960     else
961     {
962         struct connection *pco;
963         for (pco = h->connections; pco && pco->next != co; pco = pco->next)
964             ;
965         if (pco)
966             pco->next = co->next;
967         else
968             abort();
969     }
970     if (co->client)
971     {
972         if (co->client->state != Client_Idle)
973             co->client->state = Client_Disconnected;
974         co->client->connection = 0;
975     }
976     co->next = connection_freelist;
977     connection_freelist = co;
978 }
979
980 // Creates a new connection for client, associated with the host of 
981 // client's database
982 static struct connection *connection_create(struct client *cl)
983 {
984     struct connection *new;
985     COMSTACK link; 
986     int res;
987     void *addr;
988
989
990     if (!(link = cs_create(tcpip_type, 0, PROTO_Z3950)))
991         {
992             yaz_log(YLOG_FATAL|YLOG_ERRNO, "Failed to create comstack");
993             exit(1);
994         }
995     
996     if (0 == strlen(global_parameters.zproxy_override)){
997         /* no Z39.50 proxy needed - direct connect */
998         yaz_log(YLOG_DEBUG, "Connection create %s", cl->database->url);
999         
1000         if (!(addr = cs_straddr(link, cl->database->host->ipport)))
1001             {
1002                 yaz_log(YLOG_WARN|YLOG_ERRNO, 
1003                         "Lookup of IP address %s failed", 
1004                         cl->database->host->ipport);
1005                 return 0;
1006             }
1007     
1008     } else {
1009         /* Z39.50 proxy connect */
1010         yaz_log(YLOG_DEBUG, "Connection create %s proxy %s", 
1011                 cl->database->url, global_parameters.zproxy_override);
1012
1013         yaz_log(YLOG_LOG, "Connection cs_create_host %s proxy %s", 
1014                 cl->database->url, global_parameters.zproxy_override);
1015         
1016         if (!(addr = cs_straddr(link, global_parameters.zproxy_override)))
1017             {
1018                 yaz_log(YLOG_WARN|YLOG_ERRNO, 
1019                         "Lookup of IP address %s failed", 
1020                         global_parameters.zproxy_override);
1021                 return 0;
1022             }
1023     }
1024
1025     res = cs_connect(link, addr);
1026     if (res < 0)
1027     {
1028         yaz_log(YLOG_WARN|YLOG_ERRNO, "cs_connect %s", cl->database->url);
1029         return 0;
1030     }
1031
1032     if ((new = connection_freelist))
1033         connection_freelist = new->next;
1034     else
1035     {
1036         new = xmalloc(sizeof (struct connection));
1037         new->ibuf = 0;
1038         new->ibufsize = 0;
1039     }
1040     new->state = Conn_Connecting;
1041     new->host = cl->database->host;
1042     new->next = new->host->connections;
1043     new->host->connections = new;
1044     new->client = cl;
1045     cl->connection = new;
1046     new->link = link;
1047
1048     new->iochan = iochan_create(cs_fileno(link), 0, handler, 0);
1049     iochan_setdata(new->iochan, new);
1050     new->iochan->next = channel_list;
1051     channel_list = new->iochan;
1052     return new;
1053 }
1054
1055 // Close connection and set state to error
1056 static void client_fatal(struct client *cl)
1057 {
1058     yaz_log(YLOG_WARN, "Fatal error from %s", cl->database->url);
1059     connection_destroy(cl->connection);
1060     cl->state = Client_Error;
1061 }
1062
1063 // Ensure that client has a connection associated
1064 static int client_prep_connection(struct client *cl)
1065 {
1066     struct connection *co;
1067     struct session *se = cl->session;
1068     struct host *host = cl->database->host;
1069
1070     co = cl->connection;
1071
1072     yaz_log(YLOG_DEBUG, "Client prep %s", cl->database->url);
1073
1074     if (!co)
1075     {
1076         // See if someone else has an idle connection
1077         // We should look at timestamps here to select the longest-idle connection
1078         for (co = host->connections; co; co = co->next)
1079             if (co->state == Conn_Open && (!co->client || co->client->session != se))
1080                 break;
1081         if (co)
1082         {
1083             connection_release(co);
1084             cl->connection = co;
1085             co->client = cl;
1086         }
1087         else
1088             co = connection_create(cl);
1089     }
1090     if (co)
1091     {
1092         if (co->state == Conn_Connecting)
1093         {
1094             cl->state = Client_Connecting;
1095             iochan_setflag(co->iochan, EVENT_OUTPUT);
1096         }
1097         else if (co->state == Conn_Open)
1098         {
1099             if (cl->state == Client_Error || cl->state == Client_Disconnected)
1100                 cl->state = Client_Idle;
1101             iochan_setflag(co->iochan, EVENT_OUTPUT);
1102         }
1103         return 1;
1104     }
1105     else
1106         return 0;
1107 }
1108
1109 #ifdef GAGA // Moved to database.c
1110
1111 // This function will most likely vanish when a proper target profile mechanism is
1112 // introduced.
1113 void load_simpletargets(const char *fn)
1114 {
1115     FILE *f = fopen(fn, "r");
1116     char line[256];
1117
1118     if (!f)
1119     {
1120         yaz_log(YLOG_WARN|YLOG_ERRNO, "open %s", fn);
1121         exit(1);
1122     }
1123
1124     while (fgets(line, 255, f))
1125     {
1126         char *url, *db;
1127         char *name;
1128         struct host *host;
1129         struct database *database;
1130
1131         if (strncmp(line, "target ", 7))
1132             continue;
1133         line[strlen(line) - 1] = '\0';
1134
1135         if ((name = strchr(line, ';')))
1136             *(name++) = '\0';
1137
1138         url = line + 7;
1139         if ((db = strchr(url, '/')))
1140             *(db++) = '\0';
1141         else
1142             db = "Default";
1143
1144         yaz_log(YLOG_LOG, "Target: %s, '%s'", url, db);
1145         for (host = hosts; host; host = host->next)
1146             if (!strcmp((const char *) url, host->hostport))
1147                 break;
1148         if (!host)
1149         {
1150             struct addrinfo *addrinfo, hints;
1151             char *port;
1152             char ipport[128];
1153             unsigned char addrbuf[4];
1154             int res;
1155
1156             host = xmalloc(sizeof(struct host));
1157             host->hostport = xstrdup(url);
1158             host->connections = 0;
1159
1160             if ((port = strchr(url, ':')))
1161                 *(port++) = '\0';
1162             else
1163                 port = "210";
1164
1165             hints.ai_flags = 0;
1166             hints.ai_family = PF_INET;
1167             hints.ai_socktype = SOCK_STREAM;
1168             hints.ai_protocol = IPPROTO_TCP;
1169             hints.ai_addrlen = 0;
1170             hints.ai_addr = 0;
1171             hints.ai_canonname = 0;
1172             hints.ai_next = 0;
1173             // This is not robust code. It assumes that getaddrinfo returns AF_INET
1174             // address.
1175             if ((res = getaddrinfo(url, port, &hints, &addrinfo)))
1176             {
1177                 yaz_log(YLOG_WARN, "Failed to resolve %s: %s", url, gai_strerror(res));
1178                 xfree(host->hostport);
1179                 xfree(host);
1180                 continue;
1181             }
1182             assert(addrinfo->ai_family == PF_INET);
1183             memcpy(addrbuf, &((struct sockaddr_in*)addrinfo->ai_addr)->sin_addr.s_addr, 4);
1184             sprintf(ipport, "%u.%u.%u.%u:%s",
1185                     addrbuf[0], addrbuf[1], addrbuf[2], addrbuf[3], port);
1186             host->ipport = xstrdup(ipport);
1187             freeaddrinfo(addrinfo);
1188             host->next = hosts;
1189             hosts = host;
1190         }
1191         database = xmalloc(sizeof(struct database));
1192         database->host = host;
1193         database->url = xmalloc(strlen(url) + strlen(db) + 2);
1194         strcpy(database->url, url);
1195         strcat(database->url, "/");
1196         strcat(database->url, db);
1197         if (name)
1198             database->name = xstrdup(name);
1199         else
1200             database->name = 0;
1201         
1202         database->databases = xmalloc(2 * sizeof(char *));
1203         database->databases[0] = xstrdup(db);
1204         database->databases[1] = 0;
1205         database->errors = 0;
1206         database->qprofile = 0;
1207         database->rprofile = database_retrieval_profile(database);
1208         database->next = databases;
1209         databases = database;
1210
1211     }
1212     fclose(f);
1213 }
1214
1215 #endif
1216
1217 static struct client *client_create(void)
1218 {
1219     struct client *r;
1220     if (client_freelist)
1221     {
1222         r = client_freelist;
1223         client_freelist = client_freelist->next;
1224     }
1225     else
1226         r = xmalloc(sizeof(struct client));
1227     r->database = 0;
1228     r->connection = 0;
1229     r->session = 0;
1230     r->hits = 0;
1231     r->records = 0;
1232     r->setno = 0;
1233     r->requestid = -1;
1234     r->diagnostic = 0;
1235     r->state = Client_Disconnected;
1236     r->next = 0;
1237     return r;
1238 }
1239
1240 void client_destroy(struct client *c)
1241 {
1242     struct session *se = c->session;
1243     if (c == se->clients)
1244         se->clients = c->next;
1245     else
1246     {
1247         struct client *cc;
1248         for (cc = se->clients; cc && cc->next != c; cc = cc->next)
1249             ;
1250         if (cc)
1251             cc->next = c->next;
1252     }
1253     if (c->connection)
1254         connection_release(c->connection);
1255     c->next = client_freelist;
1256     client_freelist = c;
1257 }
1258
1259 void session_set_watch(struct session *s, int what, session_watchfun fun, void *data)
1260 {
1261     s->watchlist[what].fun = fun;
1262     s->watchlist[what].data = data;
1263 }
1264
1265 void session_alert_watch(struct session *s, int what)
1266 {
1267     if (!s->watchlist[what].fun)
1268         return;
1269     (*s->watchlist[what].fun)(s->watchlist[what].data);
1270     s->watchlist[what].fun = 0;
1271     s->watchlist[what].data = 0;
1272 }
1273
1274 //callback for grep_databases
1275 static void select_targets_callback(void *context, struct database *db)
1276 {
1277     struct session *se = (struct session*) context;
1278     struct client *cl = client_create();
1279     cl->database = db;
1280     cl->session = se;
1281     cl->next = se->clients;
1282     se->clients = cl;
1283 }
1284
1285 // This should be extended with parameters to control selection criteria
1286 // Associates a set of clients with a session;
1287 int select_targets(struct session *se, struct database_criterion *crit)
1288 {
1289     while (se->clients)
1290         client_destroy(se->clients);
1291
1292     return grep_databases(se, crit, select_targets_callback);
1293 }
1294
1295 int session_active_clients(struct session *s)
1296 {
1297     struct client *c;
1298     int res = 0;
1299
1300     for (c = s->clients; c; c = c->next)
1301         if (c->connection && (c->state == Client_Connecting ||
1302                     c->state == Client_Initializing ||
1303                     c->state == Client_Searching ||
1304                     c->state == Client_Presenting))
1305             res++;
1306
1307     return res;
1308 }
1309
1310 // parses crit1=val1,crit2=val2|val3,...
1311 static struct database_criterion *parse_filter(NMEM m, const char *buf)
1312 {
1313     struct database_criterion *res = 0;
1314     char **values;
1315     int num;
1316     int i;
1317
1318     if (!buf || !*buf)
1319         return 0;
1320     nmem_strsplit(m, ",", buf,  &values, &num);
1321     for (i = 0; i < num; i++)
1322     {
1323         char **subvalues;
1324         int subnum;
1325         int subi;
1326         struct database_criterion *new = nmem_malloc(m, sizeof(*new));
1327         char *eq = strchr(values[i], '=');
1328         if (!eq)
1329         {
1330             yaz_log(YLOG_WARN, "Missing equal-sign in filter");
1331             return 0;
1332         }
1333         *(eq++) = '\0';
1334         new->name = values[i];
1335         nmem_strsplit(m, "|", eq, &subvalues, &subnum);
1336         new->values = 0;
1337         for (subi = 0; subi < subnum; subi++)
1338         {
1339             struct database_criterion_value *newv = nmem_malloc(m, sizeof(*newv));
1340             newv->value = subvalues[subi];
1341             newv->next = new->values;
1342             new->values = newv;
1343         }
1344         new->next = res;
1345         res = new;
1346     }
1347     return res;
1348 }
1349
1350 char *search(struct session *se, char *query, char *filter)
1351 {
1352     int live_channels = 0;
1353     struct client *cl;
1354     struct database_criterion *criteria;
1355
1356     yaz_log(YLOG_DEBUG, "Search");
1357
1358     nmem_reset(se->nmem);
1359     criteria = parse_filter(se->nmem, filter);
1360     strcpy(se->query, query);
1361     se->requestid++;
1362     // Release any existing clients
1363     select_targets(se, criteria);
1364     for (cl = se->clients; cl; cl = cl->next)
1365     {
1366         if (client_prep_connection(cl))
1367             live_channels++;
1368     }
1369     if (live_channels)
1370     {
1371         int maxrecs = live_channels * global_parameters.toget;
1372         se->num_termlists = 0;
1373         se->reclist = reclist_create(se->nmem, maxrecs);
1374         // This will be initialized in send_search()
1375         se->relevance = 0;
1376         se->total_records = se->total_hits = se->total_merged = 0;
1377         se->expected_maxrecs = maxrecs;
1378     }
1379     else
1380         return "NOTARGETS";
1381
1382     return 0;
1383 }
1384
1385 void destroy_session(struct session *s)
1386 {
1387     yaz_log(YLOG_LOG, "Destroying session");
1388     while (s->clients)
1389         client_destroy(s->clients);
1390     nmem_destroy(s->nmem);
1391     wrbuf_destroy(s->wrbuf);
1392 }
1393
1394 struct session *new_session() 
1395 {
1396     int i;
1397     struct session *session = xmalloc(sizeof(*session));
1398
1399     yaz_log(YLOG_DEBUG, "New pazpar2 session");
1400     
1401     session->total_hits = 0;
1402     session->total_records = 0;
1403     session->num_termlists = 0;
1404     session->reclist = 0;
1405     session->requestid = -1;
1406     session->clients = 0;
1407     session->expected_maxrecs = 0;
1408     session->query[0] = '\0';
1409     session->nmem = nmem_create();
1410     session->wrbuf = wrbuf_alloc();
1411     for (i = 0; i <= SESSION_WATCH_MAX; i++)
1412     {
1413         session->watchlist[i].data = 0;
1414         session->watchlist[i].fun = 0;
1415     }
1416
1417     return session;
1418 }
1419
1420 struct hitsbytarget *hitsbytarget(struct session *se, int *count)
1421 {
1422     static struct hitsbytarget res[1000]; // FIXME MM
1423     struct client *cl;
1424
1425     *count = 0;
1426     for (cl = se->clients; cl; cl = cl->next)
1427     {
1428         res[*count].id = cl->database->url;
1429         res[*count].name = cl->database->name;
1430         res[*count].hits = cl->hits;
1431         res[*count].records = cl->records;
1432         res[*count].diagnostic = cl->diagnostic;
1433         res[*count].state = client_states[cl->state];
1434         res[*count].connected  = cl->connection ? 1 : 0;
1435         (*count)++;
1436     }
1437
1438     return res;
1439 }
1440
1441 struct termlist_score **termlist(struct session *s, const char *name, int *num)
1442 {
1443     int i;
1444
1445     for (i = 0; i < s->num_termlists; i++)
1446         if (!strcmp((const char *) s->termlists[i].name, name))
1447             return termlist_highscore(s->termlists[i].termlist, num);
1448     return 0;
1449 }
1450
1451 #ifdef MISSING_HEADERS
1452 void report_nmem_stats(void)
1453 {
1454     size_t in_use, is_free;
1455
1456     nmem_get_memory_in_use(&in_use);
1457     nmem_get_memory_free(&is_free);
1458
1459     yaz_log(YLOG_LOG, "nmem stat: use=%ld free=%ld", 
1460             (long) in_use, (long) is_free);
1461 }
1462 #endif
1463
1464 struct record_cluster *show_single(struct session *s, int id)
1465 {
1466     struct record_cluster *r;
1467
1468     reclist_rewind(s->reclist);
1469     while ((r = reclist_read_record(s->reclist)))
1470         if (r->recid == id)
1471             return r;
1472     return 0;
1473 }
1474
1475 struct record_cluster **show(struct session *s, struct reclist_sortparms *sp, int start,
1476         int *num, int *total, int *sumhits, NMEM nmem_show)
1477 {
1478     struct record_cluster **recs = nmem_malloc(nmem_show, *num 
1479                                        * sizeof(struct record_cluster *));
1480     struct reclist_sortparms *spp;
1481     int i;
1482 #if USE_TIMING    
1483     yaz_timing_t t = yaz_timing_create();
1484 #endif
1485
1486     for (spp = sp; spp; spp = spp->next)
1487         if (spp->type == Metadata_sortkey_relevance)
1488         {
1489             relevance_prepare_read(s->relevance, s->reclist);
1490             break;
1491         }
1492     reclist_sort(s->reclist, sp);
1493
1494     *total = s->reclist->num_records;
1495     *sumhits = s->total_hits;
1496
1497     for (i = 0; i < start; i++)
1498         if (!reclist_read_record(s->reclist))
1499         {
1500             *num = 0;
1501             recs = 0;
1502             break;
1503         }
1504
1505     for (i = 0; i < *num; i++)
1506     {
1507         struct record_cluster *r = reclist_read_record(s->reclist);
1508         if (!r)
1509         {
1510             *num = i;
1511             break;
1512         }
1513         recs[i] = r;
1514     }
1515 #if USE_TIMING
1516     yaz_timing_stop(t);
1517     yaz_log(YLOG_LOG, "show %6.5f %3.2f %3.2f", 
1518             yaz_timing_get_real(t), yaz_timing_get_user(t),
1519             yaz_timing_get_sys(t));
1520     yaz_timing_destroy(&t);
1521 #endif
1522     return recs;
1523 }
1524
1525 void statistics(struct session *se, struct statistics *stat)
1526 {
1527     struct client *cl;
1528     int count = 0;
1529
1530     memset(stat, 0, sizeof(*stat));
1531     for (cl = se->clients; cl; cl = cl->next)
1532     {
1533         if (!cl->connection)
1534             stat->num_no_connection++;
1535         switch (cl->state)
1536         {
1537             case Client_Connecting: stat->num_connecting++; break;
1538             case Client_Initializing: stat->num_initializing++; break;
1539             case Client_Searching: stat->num_searching++; break;
1540             case Client_Presenting: stat->num_presenting++; break;
1541             case Client_Idle: stat->num_idle++; break;
1542             case Client_Failed: stat->num_failed++; break;
1543             case Client_Error: stat->num_error++; break;
1544             default: break;
1545         }
1546         count++;
1547     }
1548     stat->num_hits = se->total_hits;
1549     stat->num_records = se->total_records;
1550
1551     stat->num_clients = count;
1552 }
1553
1554 static void start_http_listener(void)
1555 {
1556     char hp[128] = "";
1557     struct conf_server *ser = global_parameters.server;
1558
1559     if (*global_parameters.listener_override)
1560         strcpy(hp, global_parameters.listener_override);
1561     else
1562     {
1563         strcpy(hp, ser->host ? ser->host : "");
1564         if (ser->port)
1565         {
1566             if (*hp)
1567                 strcat(hp, ":");
1568             sprintf(hp + strlen(hp), "%d", ser->port);
1569         }
1570     }
1571     http_init(hp);
1572 }
1573
1574 // Initialize CCL map for a target
1575 // Note: This approach ignores user-specific CCL maps, for which I
1576 // don't presently see any application.
1577 static void prepare_cclmap(void *context, struct database *db)
1578 {
1579     struct setting *s;
1580
1581     if (!db->settings)
1582         return;
1583     db->ccl_map = ccl_qual_mk();
1584     for (s = db->settings[PZ_CCLMAP]; s; s = s->next)
1585         if (!*s->user)
1586         {
1587             char *p = strchr(s->name + 3, ':');
1588             if (!p)
1589             {
1590                 yaz_log(YLOG_FATAL, "Malformed cclmap name: %s", s->name);
1591                 exit(1);
1592             }
1593             p++;
1594             ccl_qual_fitem(db->ccl_map, s->value, p);
1595         }
1596 }
1597
1598 // Read settings for each database, and prepare a CCL map for that database
1599 static void prepare_cclmaps(void)
1600 {
1601     grep_databases(0, 0, prepare_cclmap);
1602 }
1603
1604 static void start_proxy(void)
1605 {
1606     char hp[128] = "";
1607     struct conf_server *ser = global_parameters.server;
1608
1609     if (*global_parameters.proxy_override)
1610         strcpy(hp, global_parameters.proxy_override);
1611     else if (ser->proxy_host || ser->proxy_port)
1612     {
1613         strcpy(hp, ser->proxy_host ? ser->proxy_host : "");
1614         if (ser->proxy_port)
1615         {
1616             if (*hp)
1617                 strcat(hp, ":");
1618             sprintf(hp + strlen(hp), "%d", ser->proxy_port);
1619         }
1620     }
1621     else
1622         return;
1623
1624     http_set_proxyaddr(hp, ser->myurl ? ser->myurl : "");
1625 }
1626
1627 static void start_zproxy(void)
1628 {
1629     struct conf_server *ser = global_parameters.server;
1630
1631     if (*global_parameters.zproxy_override){
1632         yaz_log(YLOG_LOG, "Z39.50 proxy  %s", 
1633                 global_parameters.zproxy_override);
1634         return;
1635     }
1636
1637     else if (ser->zproxy_host || ser->zproxy_port)
1638     {
1639         char hp[128] = "";
1640
1641         strcpy(hp, ser->zproxy_host ? ser->zproxy_host : "");
1642         if (ser->zproxy_port)
1643         {
1644             if (*hp)
1645                 strcat(hp, ":");
1646             else
1647                 strcat(hp, "@:");
1648
1649             sprintf(hp + strlen(hp), "%d", ser->zproxy_port);
1650         }
1651         strcpy(global_parameters.zproxy_override, hp);
1652         yaz_log(YLOG_LOG, "Z39.50 proxy  %s", 
1653                 global_parameters.zproxy_override);
1654
1655     }
1656     else
1657         return;
1658 }
1659
1660
1661
1662 int main(int argc, char **argv)
1663 {
1664     int ret;
1665     char *arg;
1666
1667     if (signal(SIGPIPE, SIG_IGN) == SIG_ERR)
1668         yaz_log(YLOG_WARN|YLOG_ERRNO, "signal");
1669
1670     yaz_log_init(YLOG_DEFAULT_LEVEL, "pazpar2", 0);
1671
1672     while ((ret = options("t:f:x:h:p:z:s:d", argv, argc, &arg)) != -2)
1673     {
1674         switch (ret) {
1675             case 'f':
1676                 if (!read_config(arg))
1677                     exit(1);
1678                 break;
1679             case 'h':
1680                 strcpy(global_parameters.listener_override, arg);
1681                 break;
1682             case 'p':
1683                 strcpy(global_parameters.proxy_override, arg);
1684                 break;
1685             case 'z':
1686                 strcpy(global_parameters.zproxy_override, arg);
1687                 break;
1688             case 't':
1689                 strcpy(global_parameters.settings_path_override, arg);
1690                 break;
1691             case 's':
1692                 load_simpletargets(arg);
1693                 break;
1694             case 'd':
1695                 global_parameters.dump_records = 1;
1696                 break;
1697             default:
1698                 fprintf(stderr, "Usage: pazpar2\n"
1699                         "    -f configfile\n"
1700                         "    -h [host:]port          (REST protocol listener)\n"
1701                         "    -C cclconfig\n"
1702                         "    -s simpletargetfile\n"
1703                         "    -p hostname[:portno]    (HTTP proxy)\n"
1704                         "    -z hostname[:portno]    (Z39.50 proxy)\n"
1705                         "    -d                      (show internal records)\n");
1706                 exit(1);
1707         }
1708     }
1709
1710     if (!config)
1711     {
1712         yaz_log(YLOG_FATAL, "Load config with -f");
1713         exit(1);
1714     }
1715     global_parameters.server = config->servers;
1716
1717     start_http_listener();
1718     start_proxy();
1719     start_zproxy();
1720
1721     if (*global_parameters.settings_path_override)
1722         settings_read(global_parameters.settings_path_override);
1723     else if (global_parameters.server->settings)
1724         settings_read(global_parameters.server->settings);
1725     else
1726         yaz_log(YLOG_WARN, "No settings-directory specified. Problems may ensue!");
1727     prepare_cclmaps();
1728     global_parameters.yaz_marc = yaz_marc_create();
1729     yaz_marc_subfield_str(global_parameters.yaz_marc, "\t");
1730     global_parameters.odr_in = odr_createmem(ODR_DECODE);
1731     global_parameters.odr_out = odr_createmem(ODR_ENCODE);
1732
1733     event_loop(&channel_list);
1734
1735     return 0;
1736 }
1737
1738 /*
1739  * Local variables:
1740  * c-basic-offset: 4
1741  * indent-tabs-mode: nil
1742  * End:
1743  * vim: shiftwidth=4 tabstop=8 expandtab
1744  */