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