removed Z39.50 Proxy functionality from parameters global overrides and moved into...
[pazpar2-moved-to-github.git] / src / logic.c
1 /* $Id: logic.c,v 1.36 2007-06-06 11:49:48 marc Exp $
2    Copyright (c) 2006-2007, Index Data.
3
4 This file is part of Pazpar2.
5
6 Pazpar2 is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 2, or (at your option) any later
9 version.
10
11 Pazpar2 is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14 for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with Pazpar2; see the file LICENSE.  If not, write to the
18 Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
19 02111-1307, USA.
20  */
21
22 /** \file logic.c
23     \brief high-level logic; mostly user sessions and settings
24 */
25
26 #include <stdlib.h>
27 #include <stdio.h>
28 #include <string.h>
29 #include <sys/time.h>
30 #include <unistd.h>
31 #include <sys/socket.h>
32 #include <netdb.h>
33 #include <signal.h>
34 #include <ctype.h>
35 #include <assert.h>
36
37 #include <yaz/marcdisp.h>
38 #include <yaz/comstack.h>
39 #include <yaz/tcpip.h>
40 #include <yaz/proto.h>
41 #include <yaz/readconf.h>
42 #include <yaz/pquery.h>
43 #include <yaz/otherinfo.h>
44 #include <yaz/yaz-util.h>
45 #include <yaz/nmem.h>
46 #include <yaz/query-charset.h>
47 #include <yaz/querytowrbuf.h>
48 #if YAZ_VERSIONL >= 0x020163
49 #include <yaz/oid_db.h>
50 #endif
51
52 #if HAVE_CONFIG_H
53 #include "cconfig.h"
54 #endif
55
56 #define USE_TIMING 0
57 #if USE_TIMING
58 #include <yaz/timing.h>
59 #endif
60
61 #include <netinet/in.h>
62
63 #include "pazpar2.h"
64 #include "eventl.h"
65 #include "http.h"
66 #include "termlists.h"
67 #include "reclists.h"
68 #include "relevance.h"
69 #include "config.h"
70 #include "database.h"
71 #include "client.h"
72 #include "settings.h"
73 #include "normalize7bit.h"
74
75 #define MAX_CHUNK 15
76
77 // Note: Some things in this structure will eventually move to configuration
78 struct parameters global_parameters = 
79 {
80     "",
81     "",
82     /* "", */
83     "", 
84     0,
85     0, /* dump_records */
86     0, /* debug_mode */
87     30,
88     "81",
89     "Index Data PazPar2",
90     VERSION,
91     600, // 10 minutes
92     60,
93     100,
94     MAX_CHUNK,
95     0,
96     0
97 };
98
99
100 // Recursively traverse query structure to extract terms.
101 void pull_terms(NMEM nmem, struct ccl_rpn_node *n, char **termlist, int *num)
102 {
103     char **words;
104     int numwords;
105     int i;
106
107     switch (n->kind)
108     {
109         case CCL_RPN_AND:
110         case CCL_RPN_OR:
111         case CCL_RPN_NOT:
112         case CCL_RPN_PROX:
113             pull_terms(nmem, n->u.p[0], termlist, num);
114             pull_terms(nmem, n->u.p[1], termlist, num);
115             break;
116         case CCL_RPN_TERM:
117             nmem_strsplit(nmem, " ", n->u.t.term, &words, &numwords);
118             for (i = 0; i < numwords; i++)
119                 termlist[(*num)++] = words[i];
120             break;
121         default: // NOOP
122             break;
123     }
124 }
125
126
127
128 static void add_facet(struct session *s, const char *type, const char *value)
129 {
130     int i;
131
132     if (!*value)
133         return;
134     for (i = 0; i < s->num_termlists; i++)
135         if (!strcmp(s->termlists[i].name, type))
136             break;
137     if (i == s->num_termlists)
138     {
139         if (i == SESSION_MAX_TERMLISTS)
140         {
141             yaz_log(YLOG_FATAL, "Too many termlists");
142             return;
143         }
144
145         s->termlists[i].name = nmem_strdup(s->nmem, type);
146         s->termlists[i].termlist 
147             = termlist_create(s->nmem, s->expected_maxrecs, 15);
148         s->num_termlists = i + 1;
149     }
150     termlist_insert(s->termlists[i].termlist, value);
151 }
152
153 xmlDoc *normalize_record(struct session_database *sdb, Z_External *rec)
154 {
155     struct database_retrievalmap *m;
156     struct database *db = sdb->database;
157     xmlDoc *rdoc = 0;
158     const Odr_oid *oid = rec->direct_reference;
159
160     /* convert response record to XML somehow */
161     if (rec->which == Z_External_octet && oid
162         && !oid_oidcmp(oid, yaz_oid_recsyn_xml))
163     {
164         /* xml already */
165         rdoc = xmlParseMemory((char*) rec->u.octet_aligned->buf,
166                               rec->u.octet_aligned->len);
167         if (!rdoc)
168         {
169             yaz_log(YLOG_FATAL, "Non-wellformed XML received from %s",
170                     db->url);
171             return 0;
172         }
173     }
174     else if (oid && yaz_oid_is_iso2709(oid))
175     {
176         /* ISO2709 gets converted to MARCXML */
177         if (!sdb->yaz_marc)
178         {
179             yaz_log(YLOG_FATAL, "Unable to handle ISO2709 record");
180             return 0;
181         }
182         else
183         {
184             xmlNode *res;
185             char *buf;
186             int len;
187             
188             if (rec->which != Z_External_octet)
189             {
190                 yaz_log(YLOG_WARN, "Unexpected external branch, probably BER %s",
191                         db->url);
192                 return 0;
193             }
194             buf = (char*) rec->u.octet_aligned->buf;
195             len = rec->u.octet_aligned->len;
196             if (yaz_marc_read_iso2709(sdb->yaz_marc, buf, len) < 0)
197             {
198                 yaz_log(YLOG_WARN, "Failed to decode MARC %s", db->url);
199                 return 0;
200             }
201             
202             yaz_marc_write_using_libxml2(sdb->yaz_marc, 1);
203             if (yaz_marc_write_xml(sdb->yaz_marc, &res,
204                                    "http://www.loc.gov/MARC21/slim", 0, 0) < 0)
205             {
206                 yaz_log(YLOG_WARN, "Failed to encode as XML %s",
207                         db->url);
208                 return 0;
209             }
210             rdoc = xmlNewDoc((xmlChar *) "1.0");
211             xmlDocSetRootElement(rdoc, res);
212         }
213     }
214     else
215     {
216         char oid_name_buf[OID_STR_MAX];
217         const char *oid_name = yaz_oid_to_string_buf(oid, 0, oid_name_buf);
218         yaz_log(YLOG_FATAL, 
219                 "Unable to handle record of type %s from %s", 
220                 oid_name, db->url);
221         return 0;
222     }
223     
224     if (global_parameters.dump_records){
225         fprintf(stderr, 
226                 "Input Record (normalized) from %s\n----------------\n",
227                 db->url);
228 #if LIBXML_VERSION >= 20600
229         xmlDocFormatDump(stderr, rdoc, 1);
230 #else
231         xmlDocDump(stderr, rdoc);
232 #endif
233     }
234
235     for (m = sdb->map; m; m = m->next){
236         xmlDoc *new = 0;
237
238         {
239             xmlNodePtr root = 0;
240             new = xsltApplyStylesheet(m->stylesheet, rdoc, 0);
241             root= xmlDocGetRootElement(new);
242         if (!new || !root || !(root->children))
243         {
244             yaz_log(YLOG_WARN, "XSLT transformation failed from %s",
245                     sdb->database->url);
246             xmlFreeDoc(new);
247             xmlFreeDoc(rdoc);
248             return 0;
249         }
250         }
251    
252         xmlFreeDoc(rdoc);
253         rdoc = new;
254     }
255     if (global_parameters.dump_records)
256     {
257         fprintf(stderr, "Record from %s\n----------------\n", 
258                 sdb->database->url);
259 #if LIBXML_VERSION >= 20600
260         xmlDocFormatDump(stderr, rdoc, 1);
261 #else
262         xmlDocDump(stderr, rdoc);
263 #endif
264     }
265     return rdoc;
266 }
267
268 // Retrieve first defined value for 'name' for given database.
269 // Will be extended to take into account user associated with session
270 char *session_setting_oneval(struct session_database *db, int offset)
271 {
272     if (!db->settings[offset])
273         return "";
274     return db->settings[offset]->value;
275 }
276
277
278
279 // Initialize YAZ Map structures for MARC-based targets
280 static int prepare_yazmarc(struct session_database *sdb)
281 {
282     char *s;
283
284     if (!sdb->settings)
285     {
286         yaz_log(YLOG_WARN, "No settings for %s", sdb->database->url);
287         return -1;
288     }
289     if ((s = session_setting_oneval(sdb, PZ_NATIVESYNTAX)) 
290         && !strncmp(s, "iso2709", 7))
291     {
292         char *encoding = "marc-8s", *e;
293         yaz_iconv_t cm;
294
295         // See if a native encoding is specified
296         if ((e = strchr(s, ';')))
297             encoding = e + 1;
298
299         sdb->yaz_marc = yaz_marc_create();
300         yaz_marc_subfield_str(sdb->yaz_marc, "\t");
301         
302         cm = yaz_iconv_open("utf-8", encoding);
303         if (!cm)
304         {
305             yaz_log(YLOG_FATAL, 
306                     "Unable to map from %s to UTF-8 for target %s", 
307                     encoding, sdb->database->url);
308             return -1;
309         }
310         yaz_marc_iconv(sdb->yaz_marc, cm);
311     }
312     return 0;
313 }
314
315 // Prepare XSLT stylesheets for record normalization
316 // Structures are allocated on the session_wide nmem to avoid having
317 // to recompute this for every search. This would lead
318 // to leaking if a single session was to repeatedly change the PZ_XSLT
319 // setting. However, this is not a realistic use scenario.
320 static int prepare_map(struct session *se, struct session_database *sdb)
321 {
322    char *s;
323
324     if (!sdb->settings)
325     {
326         yaz_log(YLOG_WARN, "No settings on %s", sdb->database->url);
327         return -1;
328     }
329     if ((s = session_setting_oneval(sdb, PZ_XSLT)))
330     {
331         char **stylesheets;
332         struct database_retrievalmap **m = &sdb->map;
333         int num, i;
334
335         nmem_strsplit(se->session_nmem, ",", s, &stylesheets, &num);
336         for (i = 0; i < num; i++)
337         {
338             (*m) = nmem_malloc(se->session_nmem, sizeof(**m));
339             (*m)->next = 0;
340             if (!((*m)->stylesheet = conf_load_stylesheet(stylesheets[i])))
341             {
342                 yaz_log(YLOG_FATAL, "Unable to load stylesheet: %s",
343                         stylesheets[i]);
344                 return -1;
345             }
346             m = &(*m)->next;
347         }
348     }
349     if (!sdb->map)
350         yaz_log(YLOG_WARN, "No Normalization stylesheet for target %s",
351                 sdb->database->url);
352     return 0;
353 }
354
355 // This analyzes settings and recomputes any supporting data structures
356 // if necessary.
357 static int prepare_session_database(struct session *se, 
358                                     struct session_database *sdb)
359 {
360     if (!sdb->settings)
361     {
362         yaz_log(YLOG_WARN, 
363                 "No settings associated with %s", sdb->database->url);
364         return -1;
365     }
366     if (sdb->settings[PZ_NATIVESYNTAX] && !sdb->yaz_marc)
367     {
368         if (prepare_yazmarc(sdb) < 0)
369             return -1;
370     }
371     if (sdb->settings[PZ_XSLT] && !sdb->map)
372     {
373         if (prepare_map(se, sdb) < 0)
374             return -1;
375     }
376     return 0;
377 }
378
379
380 void session_set_watch(struct session *s, int what, 
381                        session_watchfun fun, void *data)
382 {
383     s->watchlist[what].fun = fun;
384     s->watchlist[what].data = data;
385 }
386
387 void session_alert_watch(struct session *s, int what)
388 {
389     if (!s->watchlist[what].fun)
390         return;
391     (*s->watchlist[what].fun)(s->watchlist[what].data);
392     s->watchlist[what].fun = 0;
393     s->watchlist[what].data = 0;
394 }
395
396 //callback for grep_databases
397 static void select_targets_callback(void *context, struct session_database *db)
398 {
399     struct session *se = (struct session*) context;
400     struct client *cl = client_create();
401     client_set_database(cl, db);
402     client_set_session(cl, se);
403 }
404
405 // Associates a set of clients with a session;
406 // Note: Session-databases represent databases with per-session 
407 // setting overrides
408 int select_targets(struct session *se, struct database_criterion *crit)
409 {
410     while (se->clients)
411         client_destroy(se->clients);
412
413     return session_grep_databases(se, crit, select_targets_callback);
414 }
415
416 int session_active_clients(struct session *s)
417 {
418     struct client *c;
419     int res = 0;
420
421     for (c = s->clients; c; c = client_next_in_session(c))
422         if (client_is_active(c))
423             res++;
424
425     return res;
426 }
427
428 // parses crit1=val1,crit2=val2|val3,...
429 static struct database_criterion *parse_filter(NMEM m, const char *buf)
430 {
431     struct database_criterion *res = 0;
432     char **values;
433     int num;
434     int i;
435
436     if (!buf || !*buf)
437         return 0;
438     nmem_strsplit(m, ",", buf,  &values, &num);
439     for (i = 0; i < num; i++)
440     {
441         char **subvalues;
442         int subnum;
443         int subi;
444         struct database_criterion *new = nmem_malloc(m, sizeof(*new));
445         char *eq = strchr(values[i], '=');
446         if (!eq)
447         {
448             yaz_log(YLOG_WARN, "Missing equal-sign in filter");
449             return 0;
450         }
451         *(eq++) = '\0';
452         new->name = values[i];
453         nmem_strsplit(m, "|", eq, &subvalues, &subnum);
454         new->values = 0;
455         for (subi = 0; subi < subnum; subi++)
456         {
457             struct database_criterion_value *newv
458                 = nmem_malloc(m, sizeof(*newv));
459             newv->value = subvalues[subi];
460             newv->next = new->values;
461             new->values = newv;
462         }
463         new->next = res;
464         res = new;
465     }
466     return res;
467 }
468
469 char *search(struct session *se, char *query, char *filter)
470 {
471     int live_channels = 0;
472     struct client *cl;
473     struct database_criterion *criteria;
474
475     yaz_log(YLOG_DEBUG, "Search");
476
477     nmem_reset(se->nmem);
478     criteria = parse_filter(se->nmem, filter);
479     se->requestid++;
480     live_channels = select_targets(se, criteria);
481     if (live_channels)
482     {
483         int maxrecs = live_channels * global_parameters.toget;
484         se->num_termlists = 0;
485         se->reclist = reclist_create(se->nmem, maxrecs);
486         // This will be initialized in send_search()
487         se->total_records = se->total_hits = se->total_merged = 0;
488         se->expected_maxrecs = maxrecs;
489     }
490     else
491         return "NOTARGETS";
492
493     se->relevance = 0;
494
495     for (cl = se->clients; cl; cl = client_next_in_session(cl))
496     {
497         if (prepare_session_database(se, client_get_database(cl)) < 0)
498             return "CONFIG_ERROR";
499         // Query must parse for all targets
500         if (client_parse_query(cl, query) < 0)  
501             return "QUERY";
502     }
503
504     for (cl = se->clients; cl; cl = client_next_in_session(cl))
505         client_prep_connection(cl);
506
507     return 0;
508 }
509
510 // Creates a new session_database object for a database
511 static void session_init_databases_fun(void *context, struct database *db)
512 {
513     struct session *se = (struct session *) context;
514     struct session_database *new = nmem_malloc(se->session_nmem, sizeof(*new));
515     int num = settings_num();
516     int i;
517
518     new->database = db;
519     new->yaz_marc = 0;
520     
521 #ifdef HAVE_ICU
522     if (global_parameters.server && global_parameters.server->icu_chn)
523         new->pct = pp2_charset_create(global_parameters.server->icu_chn);
524     else
525         new->pct = pp2_charset_create(0);
526 #else // HAVE_ICU
527     new->pct = pp2_charset_create(0);
528 #endif // HAVE_ICU
529
530     new->map = 0;
531     new->settings 
532         = nmem_malloc(se->session_nmem, sizeof(struct settings *) * num);
533     memset(new->settings, 0, sizeof(struct settings*) * num);
534
535     if (db->settings)
536     {
537         for (i = 0; i < num; i++)
538             new->settings[i] = db->settings[i];
539     }
540     new->next = se->databases;
541     se->databases = new;
542 }
543
544 // Doesn't free memory associated with sdb -- nmem takes care of that
545 static void session_database_destroy(struct session_database *sdb)
546 {
547     struct database_retrievalmap *m;
548
549     for (m = sdb->map; m; m = m->next)
550         xsltFreeStylesheet(m->stylesheet);
551     if (sdb->yaz_marc)
552         yaz_marc_destroy(sdb->yaz_marc);
553     if (sdb->pct)
554         pp2_charset_destroy(sdb->pct);
555 }
556
557 // Initialize session_database list -- this represents this session's view
558 // of the database list -- subject to modification by the settings ws command
559 void session_init_databases(struct session *se)
560 {
561     se->databases = 0;
562     grep_databases(se, 0, session_init_databases_fun);
563 }
564
565 // Probably session_init_databases_fun should be refactored instead of
566 // called here.
567 static struct session_database *load_session_database(struct session *se, 
568                                                       char *id)
569 {
570     struct database *db = find_database(id, 0);
571
572     session_init_databases_fun((void*) se, db);
573     // New sdb is head of se->databases list
574     return se->databases;
575 }
576
577 // Find an existing session database. If not found, load it
578 static struct session_database *find_session_database(struct session *se, 
579                                                       char *id)
580 {
581     struct session_database *sdb;
582
583     for (sdb = se->databases; sdb; sdb = sdb->next)
584         if (!strcmp(sdb->database->url, id))
585             return sdb;
586     return load_session_database(se, id);
587 }
588
589 // Apply a session override to a database
590 void session_apply_setting(struct session *se, char *dbname, char *setting,
591                            char *value)
592 {
593     struct session_database *sdb = find_session_database(se, dbname);
594     struct setting *new = nmem_malloc(se->session_nmem, sizeof(*new));
595     int offset = settings_offset_cprefix(setting);
596
597     if (offset < 0)
598     {
599         yaz_log(YLOG_WARN, "Unknown setting %s", setting);
600         return;
601     }
602     // Jakub: This breaks the filter setting.
603     /*if (offset == PZ_ID)
604     {
605         yaz_log(YLOG_WARN, "No need to set pz:id setting. Ignoring");
606         return;
607     }*/
608     new->precedence = 0;
609     new->target = dbname;
610     new->name = setting;
611     new->value = value;
612     new->next = sdb->settings[offset];
613     sdb->settings[offset] = new;
614
615     // Force later recompute of settings-driven data structures
616     // (happens when a search starts and client connections are prepared)
617     switch (offset)
618     {
619         case PZ_NATIVESYNTAX:
620             if (sdb->yaz_marc)
621             {
622                 yaz_marc_destroy(sdb->yaz_marc);
623                 sdb->yaz_marc = 0;
624             }
625             break;
626         case PZ_XSLT:
627             if (sdb->map)
628             {
629                 struct database_retrievalmap *m;
630                 // We don't worry about the map structure -- it's in nmem
631                 for (m = sdb->map; m; m = m->next)
632                     xsltFreeStylesheet(m->stylesheet);
633                 sdb->map = 0;
634             }
635             break;
636     }
637 }
638
639 void destroy_session(struct session *s)
640 {
641     struct session_database *sdb;
642
643     yaz_log(YLOG_LOG, "Destroying session");
644     while (s->clients)
645         client_destroy(s->clients);
646     for (sdb = s->databases; sdb; sdb = sdb->next)
647         session_database_destroy(sdb);
648     nmem_destroy(s->nmem);
649     wrbuf_destroy(s->wrbuf);
650 }
651
652 struct session *new_session(NMEM nmem) 
653 {
654     int i;
655     struct session *session = nmem_malloc(nmem, sizeof(*session));
656
657     yaz_log(YLOG_DEBUG, "New Pazpar2 session");
658     
659     session->total_hits = 0;
660     session->total_records = 0;
661     session->num_termlists = 0;
662     session->reclist = 0;
663     session->requestid = -1;
664     session->clients = 0;
665     session->expected_maxrecs = 0;
666     session->session_nmem = nmem;
667     session->nmem = nmem_create();
668     session->wrbuf = wrbuf_alloc();
669     session_init_databases(session);
670     for (i = 0; i <= SESSION_WATCH_MAX; i++)
671     {
672         session->watchlist[i].data = 0;
673         session->watchlist[i].fun = 0;
674     }
675
676     return session;
677 }
678
679 struct hitsbytarget *hitsbytarget(struct session *se, int *count)
680 {
681     static struct hitsbytarget res[1000]; // FIXME MM
682     struct client *cl;
683
684     *count = 0;
685     for (cl = se->clients; cl; cl = client_next_in_session(cl))
686     {
687         char *name = session_setting_oneval(client_get_database(cl), PZ_NAME);
688
689         res[*count].id = client_get_database(cl)->database->url;
690         res[*count].name = *name ? name : "Unknown";
691         res[*count].hits = client_get_hits(cl);
692         res[*count].records = client_get_num_records(cl);
693         res[*count].diagnostic = client_get_diagnostic(cl);
694         res[*count].state = client_get_state_str(cl);
695         res[*count].connected  = client_get_connection(cl) ? 1 : 0;
696         (*count)++;
697     }
698
699     return res;
700 }
701
702 struct termlist_score **termlist(struct session *s, const char *name, int *num)
703 {
704     int i;
705
706     for (i = 0; i < s->num_termlists; i++)
707         if (!strcmp((const char *) s->termlists[i].name, name))
708             return termlist_highscore(s->termlists[i].termlist, num);
709     return 0;
710 }
711
712 #ifdef MISSING_HEADERS
713 void report_nmem_stats(void)
714 {
715     size_t in_use, is_free;
716
717     nmem_get_memory_in_use(&in_use);
718     nmem_get_memory_free(&is_free);
719
720     yaz_log(YLOG_LOG, "nmem stat: use=%ld free=%ld", 
721             (long) in_use, (long) is_free);
722 }
723 #endif
724
725 struct record_cluster *show_single(struct session *s, int id)
726 {
727     struct record_cluster *r;
728
729     reclist_rewind(s->reclist);
730     while ((r = reclist_read_record(s->reclist)))
731         if (r->recid == id)
732             return r;
733     return 0;
734 }
735
736 struct record_cluster **show(struct session *s, struct reclist_sortparms *sp, 
737                              int start, int *num, int *total, int *sumhits, 
738                              NMEM nmem_show)
739 {
740     struct record_cluster **recs = nmem_malloc(nmem_show, *num 
741                                        * sizeof(struct record_cluster *));
742     struct reclist_sortparms *spp;
743     int i;
744 #if USE_TIMING    
745     yaz_timing_t t = yaz_timing_create();
746 #endif
747
748     for (spp = sp; spp; spp = spp->next)
749         if (spp->type == Metadata_sortkey_relevance)
750         {
751             relevance_prepare_read(s->relevance, s->reclist);
752             break;
753         }
754     reclist_sort(s->reclist, sp);
755
756     *total = s->reclist->num_records;
757     *sumhits = s->total_hits;
758
759     for (i = 0; i < start; i++)
760         if (!reclist_read_record(s->reclist))
761         {
762             *num = 0;
763             recs = 0;
764             break;
765         }
766
767     for (i = 0; i < *num; i++)
768     {
769         struct record_cluster *r = reclist_read_record(s->reclist);
770         if (!r)
771         {
772             *num = i;
773             break;
774         }
775         recs[i] = r;
776     }
777 #if USE_TIMING
778     yaz_timing_stop(t);
779     yaz_log(YLOG_LOG, "show %6.5f %3.2f %3.2f", 
780             yaz_timing_get_real(t), yaz_timing_get_user(t),
781             yaz_timing_get_sys(t));
782     yaz_timing_destroy(&t);
783 #endif
784     return recs;
785 }
786
787 void statistics(struct session *se, struct statistics *stat)
788 {
789     struct client *cl;
790     int count = 0;
791
792     memset(stat, 0, sizeof(*stat));
793     for (cl = se->clients; cl; cl = client_next_in_session(cl))
794     {
795         if (!client_get_connection(cl))
796             stat->num_no_connection++;
797         switch (client_get_state(cl))
798         {
799             case Client_Connecting: stat->num_connecting++; break;
800             case Client_Initializing: stat->num_initializing++; break;
801             case Client_Searching: stat->num_searching++; break;
802             case Client_Presenting: stat->num_presenting++; break;
803             case Client_Idle: stat->num_idle++; break;
804             case Client_Failed: stat->num_failed++; break;
805             case Client_Error: stat->num_error++; break;
806             default: break;
807         }
808         count++;
809     }
810     stat->num_hits = se->total_hits;
811     stat->num_records = se->total_records;
812
813     stat->num_clients = count;
814 }
815
816 void start_http_listener(void)
817 {
818     char hp[128] = "";
819     struct conf_server *ser = global_parameters.server;
820
821     if (*global_parameters.listener_override)
822         strcpy(hp, global_parameters.listener_override);
823     else
824     {
825         strcpy(hp, ser->host ? ser->host : "");
826         if (ser->port)
827         {
828             if (*hp)
829                 strcat(hp, ":");
830             sprintf(hp + strlen(hp), "%d", ser->port);
831         }
832     }
833     http_init(hp);
834 }
835
836 void start_proxy(void)
837 {
838     char hp[128] = "";
839     struct conf_server *ser = global_parameters.server;
840
841     if (*global_parameters.proxy_override)
842         strcpy(hp, global_parameters.proxy_override);
843     else if (ser->proxy_host || ser->proxy_port)
844     {
845         strcpy(hp, ser->proxy_host ? ser->proxy_host : "");
846         if (ser->proxy_port)
847         {
848             if (*hp)
849                 strcat(hp, ":");
850             sprintf(hp + strlen(hp), "%d", ser->proxy_port);
851         }
852     }
853     else
854         return;
855
856     http_set_proxyaddr(hp, ser->myurl ? ser->myurl : "");
857 }
858
859 /* void start_zproxy(void) */
860 /* { */
861 /*     struct conf_server *ser = global_parameters.server; */
862
863 /*     if (*global_parameters.zproxy_override){ */
864 /*         yaz_log(YLOG_LOG, "Z39.50 proxy  %s",  */
865 /*                 global_parameters.zproxy_override); */
866 /*         return; */
867 /*     } */
868
869 /*     else if (ser->zproxy_host || ser->zproxy_port) */
870 /*     { */
871 /*         char hp[128] = ""; */
872
873 /*         strcpy(hp, ser->zproxy_host ? ser->zproxy_host : ""); */
874 /*         if (ser->zproxy_port) */
875 /*         { */
876 /*             if (*hp) */
877 /*                 strcat(hp, ":"); */
878 /*             else */
879 /*                 strcat(hp, "@:"); */
880
881 /*             sprintf(hp + strlen(hp), "%d", ser->zproxy_port); */
882 /*         } */
883 /*         strcpy(global_parameters.zproxy_override, hp); */
884 /*         yaz_log(YLOG_LOG, "Z39.50 proxy  %s",  */
885 /*                 global_parameters.zproxy_override); */
886
887 /*     } */
888 /*     else */
889 /*         return; */
890 /* } */
891
892 // Master list of connections we're handling events to
893 static IOCHAN channel_list = 0; 
894 void pazpar2_add_channel(IOCHAN chan)
895 {
896     chan->next = channel_list;
897     channel_list = chan;
898 }
899
900 void pazpar2_event_loop()
901 {
902     event_loop(&channel_list);
903 }
904
905 struct record *ingest_record(struct client *cl, Z_External *rec,
906                              int record_no)
907 {
908     xmlDoc *xdoc = normalize_record(client_get_database(cl), rec);
909     xmlNode *root, *n;
910     struct record *record;
911     struct record_cluster *cluster;
912     struct session *se = client_get_session(cl);
913     xmlChar *mergekey, *mergekey_norm;
914     xmlChar *type = 0;
915     xmlChar *value = 0;
916     struct conf_service *service = global_parameters.server->service;
917
918     if (!xdoc)
919         return 0;
920
921     root = xmlDocGetRootElement(xdoc);
922     if (!(mergekey = xmlGetProp(root, (xmlChar *) "mergekey")))
923     {
924         yaz_log(YLOG_WARN, "No mergekey found in record");
925         xmlFreeDoc(xdoc);
926         return 0;
927     }
928
929     record = record_create(se->nmem, 
930                            service->num_metadata, service->num_sortkeys);
931     record_assign_client(record, cl);
932
933     mergekey_norm = (xmlChar *) nmem_strdup(se->nmem, (char*) mergekey);
934     xmlFree(mergekey);
935     normalize7bit_mergekey((char *) mergekey_norm, 0);
936
937     cluster = reclist_insert(se->reclist, 
938                              global_parameters.server->service, 
939                              record, (char *) mergekey_norm, 
940                              &se->total_merged);
941     if (global_parameters.dump_records)
942         yaz_log(YLOG_LOG, "Cluster id %d from %s (#%d)", cluster->recid,
943                 client_get_database(cl)->database->url, record_no);
944     if (!cluster)
945     {
946         /* no room for record */
947         xmlFreeDoc(xdoc);
948         return 0;
949     }
950     relevance_newrec(se->relevance, cluster);
951
952
953     // now parsing XML record and adding data to cluster or record metadata
954     for (n = root->children; n; n = n->next)
955     {
956         if (type)
957             xmlFree(type);
958         if (value)
959             xmlFree(value);
960         type = value = 0;
961
962         if (n->type != XML_ELEMENT_NODE)
963             continue;
964         if (!strcmp((const char *) n->name, "metadata"))
965         {
966             struct conf_metadata *ser_md = 0;
967             struct conf_sortkey *ser_sk = 0;
968             struct record_metadata **wheretoput = 0;
969             struct record_metadata *rec_md = 0;
970             int md_field_id = -1;
971             int sk_field_id = -1;
972             int first, last;
973
974             type = xmlGetProp(n, (xmlChar *) "type");
975             value = xmlNodeListGetString(xdoc, n->children, 0);
976
977             if (!type || !value)
978                 continue;
979
980             md_field_id 
981                 = conf_service_metadata_field_id(service, (const char *) type);
982             if (md_field_id < 0)
983             {
984                 yaz_log(YLOG_WARN, 
985                         "Ignoring unknown metadata element: %s", type);
986                 continue;
987             }
988
989             ser_md = &service->metadata[md_field_id];
990
991             if (ser_md->sortkey_offset >= 0){
992                 sk_field_id = ser_md->sortkey_offset;
993                 ser_sk = &service->sortkeys[sk_field_id];
994             }
995
996             // Find out where we are putting it - based on merge or not
997             if (ser_md->merge == Metadata_merge_no)
998                 wheretoput = &record->metadata[md_field_id];
999             else
1000                 wheretoput = &cluster->metadata[md_field_id];
1001             
1002             // create new record_metadata
1003             rec_md = record_metadata_create(se->nmem);
1004
1005             // and polulate with data:
1006             // type based charmapping decisions follow here
1007             if (ser_md->type == Metadata_type_generic)
1008             {
1009
1010                 char * p = (char *) value;
1011                 p = normalize7bit_generic(p, " ,/.:([");
1012                 
1013                 rec_md->data.text = nmem_strdup(se->nmem, p);
1014
1015             }
1016             else if (ser_md->type == Metadata_type_year)
1017             {
1018                 if (extract7bit_years((char *) value, &first, &last) < 0)
1019                     continue;
1020             }
1021             else
1022             {
1023                 yaz_log(YLOG_WARN, 
1024                         "Unknown type in metadata element %s", type);
1025                 continue;
1026             }
1027
1028             // and polulate with data:
1029             // assign cluster or record based on merge action
1030             if (ser_md->merge == Metadata_merge_unique)
1031             {
1032                 struct record_metadata *mnode;
1033                 for (mnode = *wheretoput; mnode; mnode = mnode->next)
1034                     if (!strcmp((const char *) mnode->data.text, 
1035                                 rec_md->data.text))
1036                         break;
1037                 if (!mnode)
1038                 {
1039                     rec_md->next = *wheretoput;
1040                     *wheretoput = rec_md;
1041                 }
1042             }
1043             else if (ser_md->merge == Metadata_merge_longest)
1044             {
1045                 if (!*wheretoput 
1046                     || strlen(rec_md->data.text) 
1047                        > strlen((*wheretoput)->data.text))
1048                 {
1049                     *wheretoput = rec_md;
1050                     if (ser_sk)
1051                     {
1052                         char *s = nmem_strdup(se->nmem, rec_md->data.text);
1053                         if (!cluster->sortkeys[sk_field_id])
1054                             cluster->sortkeys[sk_field_id] = 
1055                                 nmem_malloc(se->nmem, 
1056                                             sizeof(union data_types));
1057                         normalize7bit_mergekey(s,
1058                              (ser_sk->type == Metadata_sortkey_skiparticle));
1059                         cluster->sortkeys[sk_field_id]->text = s;
1060                     }
1061                 }
1062             }
1063             else if (ser_md->merge == Metadata_merge_all 
1064                      || ser_md->merge == Metadata_merge_no)
1065             {
1066                 rec_md->next = *wheretoput;
1067                 *wheretoput = rec_md;
1068             }
1069             else if (ser_md->merge == Metadata_merge_range)
1070             {
1071                 if (!*wheretoput)
1072                 {
1073                     *wheretoput = rec_md;
1074                     (*wheretoput)->data.number.min = first;
1075                     (*wheretoput)->data.number.max = last;
1076                     if (ser_sk)
1077                         cluster->sortkeys[sk_field_id] 
1078                             = &rec_md->data;
1079                 }
1080                 else
1081                 {
1082                     if (first < (*wheretoput)->data.number.min)
1083                         (*wheretoput)->data.number.min = first;
1084                     if (last > (*wheretoput)->data.number.max)
1085                         (*wheretoput)->data.number.max = last;
1086                 }
1087 #ifdef GAGA
1088                 if (ser_sk)
1089                 {
1090                     union data_types *sdata 
1091                         = cluster->sortkeys[sk_field_id];
1092                     yaz_log(YLOG_LOG, "SK range: %d-%d",
1093                             sdata->number.min, sdata->number.max);
1094                 }
1095 #endif
1096             }
1097
1098
1099             // ranking of _all_ fields enabled ... 
1100             if (ser_md->rank)
1101                 relevance_countwords(se->relevance, cluster, 
1102                                      (char *) value, ser_md->rank);
1103
1104             // construct facets ... 
1105             if (ser_md->termlist)
1106             {
1107                 if (ser_md->type == Metadata_type_year)
1108                 {
1109                     char year[64];
1110                     sprintf(year, "%d", last);
1111                     add_facet(se, (char *) type, year);
1112                     if (first != last)
1113                     {
1114                         sprintf(year, "%d", first);
1115                         add_facet(se, (char *) type, year);
1116                     }
1117                 }
1118                 else
1119                     add_facet(se, (char *) type, (char *) value);
1120             }
1121
1122             // cleaning up
1123             xmlFree(type);
1124             xmlFree(value);
1125             type = value = 0;
1126         }
1127         else
1128             yaz_log(YLOG_WARN,
1129                     "Unexpected element %s in internal record", n->name);
1130     }
1131     if (type)
1132         xmlFree(type);
1133     if (value)
1134         xmlFree(value);
1135
1136     xmlFreeDoc(xdoc);
1137
1138     relevance_donerecord(se->relevance, cluster);
1139     se->total_records++;
1140
1141     return record;
1142 }
1143
1144
1145
1146 /*
1147  * Local variables:
1148  * c-basic-offset: 4
1149  * indent-tabs-mode: nil
1150  * End:
1151  * vim: shiftwidth=4 tabstop=8 expandtab
1152  */