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