Fixed bug #1507: Command record=..&id=.. should block if it does not exist.
[pazpar2-moved-to-github.git] / src / logic.c
1 /* $Id: logic.c,v 1.64 2007-09-05 08:40:12 adam 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 #include <yaz/oid_db.h>
49 #include <yaz/snprintf.h>
50
51 #if HAVE_CONFIG_H
52 #include "cconfig.h"
53 #endif
54
55 #define USE_TIMING 0
56 #if USE_TIMING
57 #include <yaz/timing.h>
58 #endif
59
60 #include <netinet/in.h>
61
62 #include "pazpar2.h"
63 #include "eventl.h"
64 #include "http.h"
65 #include "termlists.h"
66 #include "reclists.h"
67 #include "relevance.h"
68 #include "config.h"
69 #include "database.h"
70 #include "client.h"
71 #include "settings.h"
72 #include "normalize7bit.h"
73
74 #define TERMLIST_HIGH_SCORE 25
75
76 #define MAX_CHUNK 15
77
78 // Note: Some things in this structure will eventually move to configuration
79 struct parameters global_parameters = 
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     180,
98     30
99 };
100
101 // Recursively traverse query structure to extract terms.
102 void pull_terms(NMEM nmem, struct ccl_rpn_node *n, char **termlist, int *num)
103 {
104     char **words;
105     int numwords;
106     int i;
107
108     switch (n->kind)
109     {
110         case CCL_RPN_AND:
111         case CCL_RPN_OR:
112         case CCL_RPN_NOT:
113         case CCL_RPN_PROX:
114             pull_terms(nmem, n->u.p[0], termlist, num);
115             pull_terms(nmem, n->u.p[1], termlist, num);
116             break;
117         case CCL_RPN_TERM:
118             nmem_strsplit(nmem, " ", n->u.t.term, &words, &numwords);
119             for (i = 0; i < numwords; i++)
120                 termlist[(*num)++] = words[i];
121             break;
122         default: // NOOP
123             break;
124     }
125 }
126
127
128
129 static void add_facet(struct session *s, const char *type, const char *value)
130 {
131     int i;
132
133     if (!*value)
134         return;
135     for (i = 0; i < s->num_termlists; i++)
136         if (!strcmp(s->termlists[i].name, type))
137             break;
138     if (i == s->num_termlists)
139     {
140         if (i == SESSION_MAX_TERMLISTS)
141         {
142             yaz_log(YLOG_FATAL, "Too many termlists");
143             return;
144         }
145
146         s->termlists[i].name = nmem_strdup(s->nmem, type);
147         s->termlists[i].termlist 
148             = termlist_create(s->nmem, s->expected_maxrecs,
149                               TERMLIST_HIGH_SCORE);
150         s->num_termlists = i + 1;
151     }
152     termlist_insert(s->termlists[i].termlist, value);
153 }
154
155 xmlDoc *record_to_xml(struct session_database *sdb, Z_External *rec)
156 {
157     struct database *db = sdb->database;
158     xmlDoc *rdoc = 0;
159     const Odr_oid *oid = rec->direct_reference;
160
161     /* convert response record to XML somehow */
162     if (rec->which == Z_External_octet && oid
163         && !oid_oidcmp(oid, yaz_oid_recsyn_xml))
164     {
165         /* xml already */
166         rdoc = xmlParseMemory((char*) rec->u.octet_aligned->buf,
167                               rec->u.octet_aligned->len);
168         if (!rdoc)
169         {
170             yaz_log(YLOG_FATAL, "Non-wellformed XML received from %s",
171                     db->url);
172             return 0;
173         }
174     }
175     else if (rec->which == Z_External_OPAC)
176     {
177         if (!sdb->yaz_marc)
178         {
179             yaz_log(YLOG_WARN, "MARC decoding not configured");
180             return 0;
181         }
182         else
183         {
184             /* OPAC gets converted to XML too */
185             WRBUF wrbuf_opac = wrbuf_alloc();
186             /* MARCXML inside the OPAC XML. Charset is in effect because we
187                use the yaz_marc handle */
188             yaz_marc_xml(sdb->yaz_marc, YAZ_MARC_MARCXML);
189             yaz_opac_decode_wrbuf(sdb->yaz_marc, rec->u.opac, wrbuf_opac);
190             
191             rdoc = xmlParseMemory((char*) wrbuf_buf(wrbuf_opac),
192                                   wrbuf_len(wrbuf_opac));
193             if (!rdoc)
194             {
195                 yaz_log(YLOG_WARN, "Unable to parse OPAC XML");
196                 /* Was used to debug bug #1348 */
197 #if 0
198                 FILE *f = fopen("/tmp/opac.xml.txt", "wb");
199                 if (f)
200                 {
201                     fwrite(wrbuf_buf(wrbuf_opac), 1, wrbuf_len(wrbuf_opac), f);
202                     fclose(f);
203                 }
204 #endif
205             }
206             wrbuf_destroy(wrbuf_opac);
207         }
208     }
209     else if (oid && yaz_oid_is_iso2709(oid))
210     {
211         /* ISO2709 gets converted to MARCXML */
212         if (!sdb->yaz_marc)
213         {
214             yaz_log(YLOG_WARN, "MARC decoding not configured");
215             return 0;
216         }
217         else
218         {
219             xmlNode *res;
220             char *buf;
221             int len;
222             
223             if (rec->which != Z_External_octet)
224             {
225                 yaz_log(YLOG_WARN, "Unexpected external branch, probably BER %s",
226                         db->url);
227                 return 0;
228             }
229             buf = (char*) rec->u.octet_aligned->buf;
230             len = rec->u.octet_aligned->len;
231             if (yaz_marc_read_iso2709(sdb->yaz_marc, buf, len) < 0)
232             {
233                 yaz_log(YLOG_WARN, "Failed to decode MARC %s", db->url);
234                 return 0;
235             }
236             
237             if (yaz_marc_write_xml(sdb->yaz_marc, &res,
238                                    "http://www.loc.gov/MARC21/slim", 0, 0) < 0)
239             {
240                 yaz_log(YLOG_WARN, "Failed to encode as XML %s",
241                         db->url);
242                 return 0;
243             }
244             rdoc = xmlNewDoc((xmlChar *) "1.0");
245             xmlDocSetRootElement(rdoc, res);
246         }
247     }
248     else
249     {
250         char oid_name_buf[OID_STR_MAX];
251         const char *oid_name = yaz_oid_to_string_buf(oid, 0, oid_name_buf);
252         yaz_log(YLOG_FATAL, 
253                 "Unable to handle record of type %s from %s", 
254                 oid_name, db->url);
255         return 0;
256     }
257     
258     if (global_parameters.dump_records)
259     {
260         FILE *lf = yaz_log_file();
261         if (lf)
262         {
263             yaz_log(YLOG_LOG, "Un-normalized record from %s", db->url);
264 #if LIBXML_VERSION >= 20600
265             xmlDocFormatDump(lf, rdoc, 1);
266 #else
267             xmlDocDump(lf, rdoc);
268 #endif
269             fprintf(lf, "\n");
270         }
271     }
272     return rdoc;
273 }
274
275 #define MAX_XSLT_ARGS 16
276
277 // Add static values from session database settings if applicable
278 static void insert_settings_parameters(struct session_database *sdb,
279         struct session *se, char **parms)
280 {
281     struct conf_service *service = global_parameters.server->service;
282     int i;
283     int nparms = 0;
284     int offset = 0;
285
286     for (i = 0; i < service->num_metadata; i++)
287     {
288         struct conf_metadata *md = &service->metadata[i];
289         int setting;
290
291         if (md->setting == Metadata_setting_parameter &&
292                 (setting = settings_offset(md->name)) > 0)
293         {
294             const char *val = session_setting_oneval(sdb, setting);
295             if (val && nparms < MAX_XSLT_ARGS)
296             {
297                 char *buf;
298                 int len = strlen(val);
299                 buf = nmem_malloc(se->nmem, len + 3);
300                 buf[0] = '\'';
301                 strcpy(buf + 1, val);
302                 buf[len+1] = '\'';
303                 buf[len+2] = '\0';
304                 parms[offset++] = md->name;
305                 parms[offset++] = buf;
306                 nparms++;
307             }
308         }
309     }
310     parms[offset] = 0;
311 }
312
313 // Add static values from session database settings if applicable
314 static void insert_settings_values(struct session_database *sdb, xmlDoc *doc)
315 {
316     struct conf_service *service = global_parameters.server->service;
317     int i;
318
319     for (i = 0; i < service->num_metadata; i++)
320     {
321         struct conf_metadata *md = &service->metadata[i];
322         int offset;
323
324         if (md->setting == Metadata_setting_postproc &&
325                 (offset = settings_offset(md->name)) > 0)
326         {
327             const char *val = session_setting_oneval(sdb, offset);
328             if (val)
329             {
330                 xmlNode *r = xmlDocGetRootElement(doc);
331                 xmlNode *n = xmlNewTextChild(r, 0, (xmlChar *) "metadata",
332                         (xmlChar *) val);
333                 xmlSetProp(n, (xmlChar *) "type", (xmlChar *) md->name);
334             }
335         }
336     }
337 }
338
339 xmlDoc *normalize_record(struct session_database *sdb, struct session *se,
340         Z_External *rec)
341 {
342     struct database_retrievalmap *m;
343     xmlDoc *rdoc = record_to_xml(sdb, rec);
344     if (rdoc)
345     {
346         for (m = sdb->map; m; m = m->next)
347         {
348             xmlDoc *new = 0;
349             
350             {
351                 xmlNodePtr root = 0;
352                 char *parms[MAX_XSLT_ARGS*2+1];
353
354                 insert_settings_parameters(sdb, se, parms);
355
356                 new = xsltApplyStylesheet(m->stylesheet, rdoc, (const char **) parms);
357                 root= xmlDocGetRootElement(new);
358                 if (!new || !root || !(root->children))
359                 {
360                     yaz_log(YLOG_WARN, "XSLT transformation failed from %s",
361                             sdb->database->url);
362                     xmlFreeDoc(new);
363                     xmlFreeDoc(rdoc);
364                     return 0;
365                 }
366             }
367             
368             xmlFreeDoc(rdoc);
369             rdoc = new;
370         }
371
372         insert_settings_values(sdb, rdoc);
373
374         if (global_parameters.dump_records)
375         {
376             FILE *lf = yaz_log_file();
377             
378             if (lf)
379             {
380                 yaz_log(YLOG_LOG, "Normalized record from %s", 
381                         sdb->database->url);
382 #if LIBXML_VERSION >= 20600
383                 xmlDocFormatDump(lf, rdoc, 1);
384 #else
385                 xmlDocDump(lf, rdoc);
386 #endif
387                 fprintf(lf, "\n");
388             }
389         }
390     }
391     return rdoc;
392 }
393
394 // Retrieve first defined value for 'name' for given database.
395 // Will be extended to take into account user associated with session
396 const char *session_setting_oneval(struct session_database *db, int offset)
397 {
398     if (!db->settings[offset])
399         return "";
400     return db->settings[offset]->value;
401 }
402
403
404
405 // Initialize YAZ Map structures for MARC-based targets
406 static int prepare_yazmarc(struct session_database *sdb)
407 {
408     const char *s;
409
410     if (!sdb->settings)
411     {
412         yaz_log(YLOG_WARN, "No settings for %s", sdb->database->url);
413         return -1;
414     }
415     if ((s = session_setting_oneval(sdb, PZ_NATIVESYNTAX)) 
416         && !strncmp(s, "iso2709", 7))
417     {
418         char *encoding = "marc-8s", *e;
419         yaz_iconv_t cm;
420
421         // See if a native encoding is specified
422         if ((e = strchr(s, ';')))
423             encoding = e + 1;
424
425         sdb->yaz_marc = yaz_marc_create();
426         yaz_marc_subfield_str(sdb->yaz_marc, "\t");
427         
428         cm = yaz_iconv_open("utf-8", encoding);
429         if (!cm)
430         {
431             yaz_log(YLOG_FATAL, 
432                     "Unable to map from %s to UTF-8 for target %s", 
433                     encoding, sdb->database->url);
434             return -1;
435         }
436         yaz_marc_iconv(sdb->yaz_marc, cm);
437     }
438     return 0;
439 }
440
441 // Prepare XSLT stylesheets for record normalization
442 // Structures are allocated on the session_wide nmem to avoid having
443 // to recompute this for every search. This would lead
444 // to leaking if a single session was to repeatedly change the PZ_XSLT
445 // setting. However, this is not a realistic use scenario.
446 static int prepare_map(struct session *se, struct session_database *sdb)
447 {
448     const char *s;
449
450     if (!sdb->settings)
451     {
452         yaz_log(YLOG_WARN, "No settings on %s", sdb->database->url);
453         return -1;
454     }
455     if ((s = session_setting_oneval(sdb, PZ_XSLT)))
456     {
457         char **stylesheets;
458         struct database_retrievalmap **m = &sdb->map;
459         int num, i;
460         char auto_stylesheet[256];
461
462         if (!strcmp(s, "auto"))
463         {
464             const char *request_syntax = session_setting_oneval(
465                 sdb, PZ_REQUESTSYNTAX);
466             if (request_syntax)
467             {
468                 char *cp;
469                 yaz_snprintf(auto_stylesheet, sizeof(auto_stylesheet),
470                              "%s.xsl", request_syntax);
471                 for (cp = auto_stylesheet; *cp; cp++)
472                 {
473                     /* deliberately only consider ASCII */
474                     if (*cp > 32 && *cp < 127)
475                         *cp = tolower(*cp);
476                 }
477                 s = auto_stylesheet;
478             }
479             else
480             {
481                 yaz_log(YLOG_WARN, "No pz:requestsyntax for auto stylesheet");
482             }
483         }
484         nmem_strsplit(se->session_nmem, ",", s, &stylesheets, &num);
485         for (i = 0; i < num; i++)
486         {
487             (*m) = nmem_malloc(se->session_nmem, sizeof(**m));
488             (*m)->next = 0;
489             if (!((*m)->stylesheet = conf_load_stylesheet(stylesheets[i])))
490             {
491                 yaz_log(YLOG_FATAL|YLOG_ERRNO, "Unable to load stylesheet: %s",
492                         stylesheets[i]);
493                 return -1;
494             }
495             m = &(*m)->next;
496         }
497     }
498     if (!sdb->map)
499         yaz_log(YLOG_WARN, "No Normalization stylesheet for target %s",
500                 sdb->database->url);
501     return 0;
502 }
503
504 // This analyzes settings and recomputes any supporting data structures
505 // if necessary.
506 static int prepare_session_database(struct session *se, 
507                                     struct session_database *sdb)
508 {
509     if (!sdb->settings)
510     {
511         yaz_log(YLOG_WARN, 
512                 "No settings associated with %s", sdb->database->url);
513         return -1;
514     }
515     if (sdb->settings[PZ_NATIVESYNTAX] && !sdb->yaz_marc)
516     {
517         if (prepare_yazmarc(sdb) < 0)
518             return -1;
519     }
520     if (sdb->settings[PZ_XSLT] && !sdb->map)
521     {
522         if (prepare_map(se, sdb) < 0)
523             return -1;
524     }
525     return 0;
526 }
527
528 // called if watch should be removed because http_channel is to be destroyed
529 static void session_watch_cancel(void *data, struct http_channel *c)
530 {
531     struct session_watchentry *ent = data;
532
533     ent->fun = 0;
534     ent->data = 0;
535     ent->obs = 0;
536 }
537
538 // set watch. Returns 0=OK, -1 if watch is already set
539 int session_set_watch(struct session *s, int what, 
540                       session_watchfun fun, void *data,
541                       struct http_channel *chan)
542 {
543     if (s->watchlist[what].fun)
544         return -1;
545     s->watchlist[what].fun = fun;
546     s->watchlist[what].data = data;
547     s->watchlist[what].obs = http_add_observer(chan, &s->watchlist[what],
548                                                session_watch_cancel);
549     return 0;
550 }
551
552 void session_alert_watch(struct session *s, int what)
553 {
554     if (s->watchlist[what].fun)
555     {
556         /* our watch is no longer associated with http_channel */
557         http_remove_observer(s->watchlist[what].obs);
558         session_watchfun fun = s->watchlist[what].fun;
559         void *data = s->watchlist[what].data;
560
561         /* reset watch before fun is invoked - in case fun wants to set
562            it again */
563         s->watchlist[what].fun = 0;
564         s->watchlist[what].data = 0;
565         s->watchlist[what].obs = 0;
566
567         fun(data);
568     }
569 }
570
571 //callback for grep_databases
572 static void select_targets_callback(void *context, struct session_database *db)
573 {
574     struct session *se = (struct session*) context;
575     struct client *cl = client_create();
576     client_set_database(cl, db);
577     client_set_session(cl, se);
578 }
579
580 // Associates a set of clients with a session;
581 // Note: Session-databases represent databases with per-session 
582 // setting overrides
583 int select_targets(struct session *se, struct database_criterion *crit)
584 {
585     while (se->clients)
586         client_destroy(se->clients);
587
588     return session_grep_databases(se, crit, select_targets_callback);
589 }
590
591 int session_active_clients(struct session *s)
592 {
593     struct client *c;
594     int res = 0;
595
596     for (c = s->clients; c; c = client_next_in_session(c))
597         if (client_is_active(c))
598             res++;
599
600     return res;
601 }
602
603 // parses crit1=val1,crit2=val2|val3,...
604 static struct database_criterion *parse_filter(NMEM m, const char *buf)
605 {
606     struct database_criterion *res = 0;
607     char **values;
608     int num;
609     int i;
610
611     if (!buf || !*buf)
612         return 0;
613     nmem_strsplit(m, ",", buf,  &values, &num);
614     for (i = 0; i < num; i++)
615     {
616         char **subvalues;
617         int subnum;
618         int subi;
619         struct database_criterion *new = nmem_malloc(m, sizeof(*new));
620         char *eq = strchr(values[i], '=');
621         if (!eq)
622         {
623             yaz_log(YLOG_WARN, "Missing equal-sign in filter");
624             return 0;
625         }
626         *(eq++) = '\0';
627         new->name = values[i];
628         nmem_strsplit(m, "|", eq, &subvalues, &subnum);
629         new->values = 0;
630         for (subi = 0; subi < subnum; subi++)
631         {
632             struct database_criterion_value *newv
633                 = nmem_malloc(m, sizeof(*newv));
634             newv->value = subvalues[subi];
635             newv->next = new->values;
636             new->values = newv;
637         }
638         new->next = res;
639         res = new;
640     }
641     return res;
642 }
643
644 enum pazpar2_error_code search(struct session *se,
645                                char *query, char *filter,
646                                const char **addinfo)
647 {
648     int live_channels = 0;
649     int no_working = 0;
650     int no_failed = 0;
651     struct client *cl;
652     struct database_criterion *criteria;
653
654     yaz_log(YLOG_DEBUG, "Search");
655
656     *addinfo = 0;
657     nmem_reset(se->nmem);
658     se->relevance = 0;
659     se->total_records = se->total_hits = se->total_merged = 0;
660     se->reclist = 0;
661     se->num_termlists = 0;
662     criteria = parse_filter(se->nmem, filter);
663     se->requestid++;
664     live_channels = select_targets(se, criteria);
665     if (live_channels)
666     {
667         int maxrecs = live_channels * global_parameters.toget;
668         se->reclist = reclist_create(se->nmem, maxrecs);
669         se->expected_maxrecs = maxrecs;
670     }
671     else
672         return PAZPAR2_NO_TARGETS;
673
674     for (cl = se->clients; cl; cl = client_next_in_session(cl))
675     {
676         if (prepare_session_database(se, client_get_database(cl)) < 0)
677         {
678             *addinfo = client_get_database(cl)->database->url;
679             return PAZPAR2_CONFIG_TARGET;
680         }
681         // Parse query for target
682         if (client_parse_query(cl, query) < 0)
683             no_failed++;
684         else
685         {
686             no_working++;
687             client_prep_connection(cl);
688         }
689     }
690
691     // If no queries could be mapped, we signal an error
692     if (no_working == 0)
693     {
694         *addinfo = "query";
695         return PAZPAR2_MALFORMED_PARAMETER_VALUE;
696     }
697     return PAZPAR2_NO_ERROR;
698 }
699
700 // Creates a new session_database object for a database
701 static void session_init_databases_fun(void *context, struct database *db)
702 {
703     struct session *se = (struct session *) context;
704     struct session_database *new = nmem_malloc(se->session_nmem, sizeof(*new));
705     int num = settings_num();
706     int i;
707
708     new->database = db;
709     new->yaz_marc = 0;
710     
711 #ifdef HAVE_ICU
712     if (global_parameters.server && global_parameters.server->icu_chn)
713         new->pct = pp2_charset_create(global_parameters.server->icu_chn);
714     else
715         new->pct = pp2_charset_create(0);
716 #else // HAVE_ICU
717     new->pct = pp2_charset_create(0);
718 #endif // HAVE_ICU
719
720     new->map = 0;
721     new->settings 
722         = nmem_malloc(se->session_nmem, sizeof(struct settings *) * num);
723     memset(new->settings, 0, sizeof(struct settings*) * num);
724
725     if (db->settings)
726     {
727         for (i = 0; i < num; i++)
728             new->settings[i] = db->settings[i];
729     }
730     new->next = se->databases;
731     se->databases = new;
732 }
733
734 // Doesn't free memory associated with sdb -- nmem takes care of that
735 static void session_database_destroy(struct session_database *sdb)
736 {
737     struct database_retrievalmap *m;
738
739     for (m = sdb->map; m; m = m->next)
740         xsltFreeStylesheet(m->stylesheet);
741     if (sdb->yaz_marc)
742         yaz_marc_destroy(sdb->yaz_marc);
743     if (sdb->pct)
744         pp2_charset_destroy(sdb->pct);
745 }
746
747 // Initialize session_database list -- this represents this session's view
748 // of the database list -- subject to modification by the settings ws command
749 void session_init_databases(struct session *se)
750 {
751     se->databases = 0;
752     predef_grep_databases(se, 0, session_init_databases_fun);
753 }
754
755 // Probably session_init_databases_fun should be refactored instead of
756 // called here.
757 static struct session_database *load_session_database(struct session *se, 
758                                                       char *id)
759 {
760     struct database *db = find_database(id, 0);
761
762     session_init_databases_fun((void*) se, db);
763     // New sdb is head of se->databases list
764     return se->databases;
765 }
766
767 // Find an existing session database. If not found, load it
768 static struct session_database *find_session_database(struct session *se, 
769                                                       char *id)
770 {
771     struct session_database *sdb;
772
773     for (sdb = se->databases; sdb; sdb = sdb->next)
774         if (!strcmp(sdb->database->url, id))
775             return sdb;
776     return load_session_database(se, id);
777 }
778
779 // Apply a session override to a database
780 void session_apply_setting(struct session *se, char *dbname, char *setting,
781                            char *value)
782 {
783     struct session_database *sdb = find_session_database(se, dbname);
784     struct setting *new = nmem_malloc(se->session_nmem, sizeof(*new));
785     int offset = settings_offset_cprefix(setting);
786
787     if (offset < 0)
788     {
789         yaz_log(YLOG_WARN, "Unknown setting %s", setting);
790         return;
791     }
792     // Jakub: This breaks the filter setting.
793     /*if (offset == PZ_ID)
794     {
795         yaz_log(YLOG_WARN, "No need to set pz:id setting. Ignoring");
796         return;
797     }*/
798     new->precedence = 0;
799     new->target = dbname;
800     new->name = setting;
801     new->value = value;
802     new->next = sdb->settings[offset];
803     sdb->settings[offset] = new;
804
805     // Force later recompute of settings-driven data structures
806     // (happens when a search starts and client connections are prepared)
807     switch (offset)
808     {
809         case PZ_NATIVESYNTAX:
810             if (sdb->yaz_marc)
811             {
812                 yaz_marc_destroy(sdb->yaz_marc);
813                 sdb->yaz_marc = 0;
814             }
815             break;
816         case PZ_XSLT:
817             if (sdb->map)
818             {
819                 struct database_retrievalmap *m;
820                 // We don't worry about the map structure -- it's in nmem
821                 for (m = sdb->map; m; m = m->next)
822                     xsltFreeStylesheet(m->stylesheet);
823                 sdb->map = 0;
824             }
825             break;
826     }
827 }
828
829 void destroy_session(struct session *s)
830 {
831     struct session_database *sdb;
832
833     while (s->clients)
834         client_destroy(s->clients);
835     for (sdb = s->databases; sdb; sdb = sdb->next)
836         session_database_destroy(sdb);
837     nmem_destroy(s->nmem);
838     wrbuf_destroy(s->wrbuf);
839 }
840
841 struct session *new_session(NMEM nmem) 
842 {
843     int i;
844     struct session *session = nmem_malloc(nmem, sizeof(*session));
845
846     yaz_log(YLOG_DEBUG, "New Pazpar2 session");
847     
848     session->relevance = 0;
849     session->total_hits = 0;
850     session->total_records = 0;
851     session->num_termlists = 0;
852     session->reclist = 0;
853     session->requestid = -1;
854     session->clients = 0;
855     session->expected_maxrecs = 0;
856     session->session_nmem = nmem;
857     session->nmem = nmem_create();
858     session->wrbuf = wrbuf_alloc();
859     session->databases = 0;
860     for (i = 0; i <= SESSION_WATCH_MAX; i++)
861     {
862         session->watchlist[i].data = 0;
863         session->watchlist[i].fun = 0;
864     }
865
866     return session;
867 }
868
869 struct hitsbytarget *hitsbytarget(struct session *se, int *count, NMEM nmem)
870 {
871     struct hitsbytarget *res = 0;
872     struct client *cl;
873     size_t sz = 0;
874
875     for (cl = se->clients; cl; cl = client_next_in_session(cl))
876         sz++;
877
878     res = nmem_malloc(nmem, sizeof(*res) * sz);
879     *count = 0;
880     for (cl = se->clients; cl; cl = client_next_in_session(cl))
881     {
882         const char *name = session_setting_oneval(client_get_database(cl),
883                                                   PZ_NAME);
884
885         res[*count].id = client_get_database(cl)->database->url;
886         res[*count].name = *name ? name : "Unknown";
887         res[*count].hits = client_get_hits(cl);
888         res[*count].records = client_get_num_records(cl);
889         res[*count].diagnostic = client_get_diagnostic(cl);
890         res[*count].state = client_get_state_str(cl);
891         res[*count].connected  = client_get_connection(cl) ? 1 : 0;
892         (*count)++;
893     }
894     return res;
895 }
896
897 struct termlist_score **termlist(struct session *s, const char *name, int *num)
898 {
899     int i;
900
901     for (i = 0; i < s->num_termlists; i++)
902         if (!strcmp((const char *) s->termlists[i].name, name))
903             return termlist_highscore(s->termlists[i].termlist, num);
904     return 0;
905 }
906
907 #ifdef MISSING_HEADERS
908 void report_nmem_stats(void)
909 {
910     size_t in_use, is_free;
911
912     nmem_get_memory_in_use(&in_use);
913     nmem_get_memory_free(&is_free);
914
915     yaz_log(YLOG_LOG, "nmem stat: use=%ld free=%ld", 
916             (long) in_use, (long) is_free);
917 }
918 #endif
919
920 struct record_cluster *show_single(struct session *s, const char *id)
921 {
922     struct record_cluster *r;
923
924     reclist_rewind(s->reclist);
925     while ((r = reclist_read_record(s->reclist)))
926         if (!strcmp(r->recid, id))
927             return r;
928     return 0;
929 }
930
931 struct record_cluster **show(struct session *s, struct reclist_sortparms *sp, 
932                              int start, int *num, int *total, int *sumhits, 
933                              NMEM nmem_show)
934 {
935     struct record_cluster **recs = nmem_malloc(nmem_show, *num 
936                                        * sizeof(struct record_cluster *));
937     struct reclist_sortparms *spp;
938     int i;
939 #if USE_TIMING    
940     yaz_timing_t t = yaz_timing_create();
941 #endif
942
943     if (!s->relevance)
944     {
945         *num = 0;
946         *total = 0;
947         *sumhits = 0;
948         recs = 0;
949     }
950     else
951     {
952         for (spp = sp; spp; spp = spp->next)
953             if (spp->type == Metadata_sortkey_relevance)
954             {
955                 relevance_prepare_read(s->relevance, s->reclist);
956                 break;
957             }
958         reclist_sort(s->reclist, sp);
959         
960         *total = s->reclist->num_records;
961         *sumhits = s->total_hits;
962         
963         for (i = 0; i < start; i++)
964             if (!reclist_read_record(s->reclist))
965             {
966                 *num = 0;
967                 recs = 0;
968                 break;
969             }
970         
971         for (i = 0; i < *num; i++)
972         {
973             struct record_cluster *r = reclist_read_record(s->reclist);
974             if (!r)
975             {
976                 *num = i;
977                 break;
978             }
979             recs[i] = r;
980         }
981     }
982 #if USE_TIMING
983     yaz_timing_stop(t);
984     yaz_log(YLOG_LOG, "show %6.5f %3.2f %3.2f", 
985             yaz_timing_get_real(t), yaz_timing_get_user(t),
986             yaz_timing_get_sys(t));
987     yaz_timing_destroy(&t);
988 #endif
989     return recs;
990 }
991
992 void statistics(struct session *se, struct statistics *stat)
993 {
994     struct client *cl;
995     int count = 0;
996
997     memset(stat, 0, sizeof(*stat));
998     for (cl = se->clients; cl; cl = client_next_in_session(cl))
999     {
1000         if (!client_get_connection(cl))
1001             stat->num_no_connection++;
1002         switch (client_get_state(cl))
1003         {
1004             case Client_Connecting: stat->num_connecting++; break;
1005             case Client_Initializing: stat->num_initializing++; break;
1006             case Client_Searching: stat->num_searching++; break;
1007             case Client_Presenting: stat->num_presenting++; break;
1008             case Client_Idle: stat->num_idle++; break;
1009             case Client_Failed: stat->num_failed++; break;
1010             case Client_Error: stat->num_error++; break;
1011             default: break;
1012         }
1013         count++;
1014     }
1015     stat->num_hits = se->total_hits;
1016     stat->num_records = se->total_records;
1017
1018     stat->num_clients = count;
1019 }
1020
1021 void start_http_listener(void)
1022 {
1023     char hp[128] = "";
1024     struct conf_server *ser = global_parameters.server;
1025
1026     if (*global_parameters.listener_override)
1027         strcpy(hp, global_parameters.listener_override);
1028     else
1029     {
1030         strcpy(hp, ser->host ? ser->host : "");
1031         if (ser->port)
1032         {
1033             if (*hp)
1034                 strcat(hp, ":");
1035             sprintf(hp + strlen(hp), "%d", ser->port);
1036         }
1037     }
1038     http_init(hp);
1039 }
1040
1041 void start_proxy(void)
1042 {
1043     char hp[128] = "";
1044     struct conf_server *ser = global_parameters.server;
1045
1046     if (*global_parameters.proxy_override)
1047         strcpy(hp, global_parameters.proxy_override);
1048     else if (ser->proxy_host || ser->proxy_port)
1049     {
1050         strcpy(hp, ser->proxy_host ? ser->proxy_host : "");
1051         if (ser->proxy_port)
1052         {
1053             if (*hp)
1054                 strcat(hp, ":");
1055             sprintf(hp + strlen(hp), "%d", ser->proxy_port);
1056         }
1057     }
1058     else
1059         return;
1060
1061     http_set_proxyaddr(hp, ser->myurl ? ser->myurl : "");
1062 }
1063
1064
1065 // Master list of connections we're handling events to
1066 static IOCHAN channel_list = 0; 
1067 void pazpar2_add_channel(IOCHAN chan)
1068 {
1069     chan->next = channel_list;
1070     channel_list = chan;
1071 }
1072
1073 void pazpar2_event_loop()
1074 {
1075     event_loop(&channel_list);
1076 }
1077
1078 static struct record_metadata *record_metadata_init(
1079     NMEM nmem, char *value, enum conf_metadata_type type)
1080 {
1081     struct record_metadata *rec_md = record_metadata_create(nmem);
1082     if (type == Metadata_type_generic)
1083     {
1084         char * p = value;
1085         p = normalize7bit_generic(p, " ,/.:([");
1086         
1087         rec_md->data.text = nmem_strdup(nmem, p);
1088     }
1089     else if (type == Metadata_type_year)
1090     {
1091         int first, last;
1092         if (extract7bit_years((char *) value, &first, &last) < 0)
1093             return 0;
1094         rec_md->data.number.min = first;
1095         rec_md->data.number.max = last;
1096     }
1097     else
1098         return 0;
1099     return rec_md;
1100 }
1101
1102 struct record *ingest_record(struct client *cl, Z_External *rec,
1103                              int record_no)
1104 {
1105     xmlDoc *xdoc = normalize_record(client_get_database(cl),
1106         client_get_session(cl), rec);
1107     xmlNode *root, *n;
1108     struct record *record;
1109     struct record_cluster *cluster;
1110     struct session *se = client_get_session(cl);
1111     xmlChar *mergekey, *mergekey_norm;
1112     xmlChar *type = 0;
1113     xmlChar *value = 0;
1114     struct conf_service *service = global_parameters.server->service;
1115
1116     if (!xdoc)
1117         return 0;
1118
1119     root = xmlDocGetRootElement(xdoc);
1120     if (!(mergekey = xmlGetProp(root, (xmlChar *) "mergekey")))
1121     {
1122         yaz_log(YLOG_WARN, "No mergekey found in record");
1123         xmlFreeDoc(xdoc);
1124         return 0;
1125     }
1126
1127     record = record_create(se->nmem, 
1128                            service->num_metadata, service->num_sortkeys, cl,
1129                            record_no);
1130
1131     mergekey_norm = (xmlChar *) nmem_strdup(se->nmem, (char*) mergekey);
1132     xmlFree(mergekey);
1133     normalize7bit_mergekey((char *) mergekey_norm, 0);
1134
1135     cluster = reclist_insert(se->reclist, 
1136                              global_parameters.server->service, 
1137                              record, (char *) mergekey_norm, 
1138                              &se->total_merged);
1139     if (global_parameters.dump_records)
1140         yaz_log(YLOG_LOG, "Cluster id %s from %s (#%d)", cluster->recid,
1141                 client_get_database(cl)->database->url, record_no);
1142     if (!cluster)
1143     {
1144         /* no room for record */
1145         xmlFreeDoc(xdoc);
1146         return 0;
1147     }
1148     relevance_newrec(se->relevance, cluster);
1149
1150
1151     // now parsing XML record and adding data to cluster or record metadata
1152     for (n = root->children; n; n = n->next)
1153     {
1154         if (type)
1155             xmlFree(type);
1156         if (value)
1157             xmlFree(value);
1158         type = value = 0;
1159
1160         if (n->type != XML_ELEMENT_NODE)
1161             continue;
1162         if (!strcmp((const char *) n->name, "metadata"))
1163         {
1164             struct conf_metadata *ser_md = 0;
1165             struct conf_sortkey *ser_sk = 0;
1166             struct record_metadata **wheretoput = 0;
1167             struct record_metadata *rec_md = 0;
1168             int md_field_id = -1;
1169             int sk_field_id = -1;
1170
1171             type = xmlGetProp(n, (xmlChar *) "type");
1172             value = xmlNodeListGetString(xdoc, n->children, 1);
1173
1174             if (!type || !value || !*value)
1175                 continue;
1176
1177             md_field_id 
1178                 = conf_service_metadata_field_id(service, (const char *) type);
1179             if (md_field_id < 0)
1180             {
1181                 yaz_log(YLOG_WARN, 
1182                         "Ignoring unknown metadata element: %s", type);
1183                 continue;
1184             }
1185
1186             ser_md = &service->metadata[md_field_id];
1187
1188             if (ser_md->sortkey_offset >= 0){
1189                 sk_field_id = ser_md->sortkey_offset;
1190                 ser_sk = &service->sortkeys[sk_field_id];
1191             }
1192
1193             // non-merged metadata
1194             rec_md = record_metadata_init(se->nmem, (char *) value,
1195                                           ser_md->type);
1196             if (!rec_md)
1197             {
1198                 yaz_log(YLOG_WARN, "bad metadata data '%s' for element '%s'",
1199                         value, type);
1200                 continue;
1201             }
1202             rec_md->next = record->metadata[md_field_id];
1203             record->metadata[md_field_id] = rec_md;
1204
1205             // merged metadata
1206             rec_md = record_metadata_init(se->nmem, (char *) value,
1207                                           ser_md->type);
1208             wheretoput = &cluster->metadata[md_field_id];
1209
1210             // and polulate with data:
1211             // assign cluster or record based on merge action
1212             if (ser_md->merge == Metadata_merge_unique)
1213             {
1214                 struct record_metadata *mnode;
1215                 for (mnode = *wheretoput; mnode; mnode = mnode->next)
1216                     if (!strcmp((const char *) mnode->data.text, 
1217                                 rec_md->data.text))
1218                         break;
1219                 if (!mnode)
1220                 {
1221                     rec_md->next = *wheretoput;
1222                     *wheretoput = rec_md;
1223                 }
1224             }
1225             else if (ser_md->merge == Metadata_merge_longest)
1226             {
1227                 if (!*wheretoput 
1228                     || strlen(rec_md->data.text) 
1229                        > strlen((*wheretoput)->data.text))
1230                 {
1231                     *wheretoput = rec_md;
1232                     if (ser_sk)
1233                     {
1234                         char *s = nmem_strdup(se->nmem, rec_md->data.text);
1235                         if (!cluster->sortkeys[sk_field_id])
1236                             cluster->sortkeys[sk_field_id] = 
1237                                 nmem_malloc(se->nmem, 
1238                                             sizeof(union data_types));
1239                         normalize7bit_mergekey(s,
1240                              (ser_sk->type == Metadata_sortkey_skiparticle));
1241                         cluster->sortkeys[sk_field_id]->text = s;
1242                     }
1243                 }
1244             }
1245             else if (ser_md->merge == Metadata_merge_all)
1246             {
1247                 rec_md->next = *wheretoput;
1248                 *wheretoput = rec_md;
1249             }
1250             else if (ser_md->merge == Metadata_merge_range)
1251             {
1252                 if (!*wheretoput)
1253                 {
1254                     *wheretoput = rec_md;
1255                     if (ser_sk)
1256                         cluster->sortkeys[sk_field_id] 
1257                             = &rec_md->data;
1258                 }
1259                 else
1260                 {
1261                     int this_min = rec_md->data.number.min;
1262                     int this_max = rec_md->data.number.max;
1263                     if (this_min < (*wheretoput)->data.number.min)
1264                         (*wheretoput)->data.number.min = this_min;
1265                     if (this_max > (*wheretoput)->data.number.max)
1266                         (*wheretoput)->data.number.max = this_max;
1267                 }
1268 #ifdef GAGA
1269                 if (ser_sk)
1270                 {
1271                     union data_types *sdata 
1272                         = cluster->sortkeys[sk_field_id];
1273                     yaz_log(YLOG_LOG, "SK range: %d-%d",
1274                             sdata->number.min, sdata->number.max);
1275                 }
1276 #endif
1277             }
1278
1279
1280             // ranking of _all_ fields enabled ... 
1281             if (ser_md->rank)
1282                 relevance_countwords(se->relevance, cluster, 
1283                                      (char *) value, ser_md->rank);
1284
1285             // construct facets ... 
1286             if (ser_md->termlist)
1287             {
1288                 if (ser_md->type == Metadata_type_year)
1289                 {
1290                     char year[64];
1291                     sprintf(year, "%d", rec_md->data.number.max);
1292                     add_facet(se, (char *) type, year);
1293                     if (rec_md->data.number.max != rec_md->data.number.min)
1294                     {
1295                         sprintf(year, "%d", rec_md->data.number.min);
1296                         add_facet(se, (char *) type, year);
1297                     }
1298                 }
1299                 else
1300                     add_facet(se, (char *) type, (char *) value);
1301             }
1302
1303             // cleaning up
1304             xmlFree(type);
1305             xmlFree(value);
1306             type = value = 0;
1307         }
1308         else
1309             yaz_log(YLOG_WARN,
1310                     "Unexpected element %s in internal record", n->name);
1311     }
1312     if (type)
1313         xmlFree(type);
1314     if (value)
1315         xmlFree(value);
1316
1317     xmlFreeDoc(xdoc);
1318
1319     relevance_donerecord(se->relevance, cluster);
1320     se->total_records++;
1321
1322     return record;
1323 }
1324
1325
1326
1327 /*
1328  * Local variables:
1329  * c-basic-offset: 4
1330  * indent-tabs-mode: nil
1331  * End:
1332  * vim: shiftwidth=4 tabstop=8 expandtab
1333  */