Fix leak WRT server@id attr
[pazpar2-moved-to-github.git] / src / pazpar2_config.c
1 /* This file is part of Pazpar2.
2    Copyright (C) 2006-2010 Index Data
3
4 Pazpar2 is free software; you can redistribute it and/or modify it under
5 the terms of the GNU General Public License as published by the Free
6 Software Foundation; either version 2, or (at your option) any later
7 version.
8
9 Pazpar2 is distributed in the hope that it will be useful, but WITHOUT ANY
10 WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12 for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17
18 */
19
20 #if HAVE_CONFIG_H
21 #include <config.h>
22 #endif
23
24 #include <string.h>
25 #include <assert.h>
26
27 #include <libxml/parser.h>
28 #include <libxml/tree.h>
29
30 #include <yaz/yaz-util.h>
31 #include <yaz/nmem.h>
32 #include <yaz/snprintf.h>
33 #include <yaz/tpath.h>
34
35 #if HAVE_GLOB_H
36 #define USE_POSIX_GLOB 1
37 #else
38 #define USE_POSIX_GLOB 0
39 #endif
40
41
42 #if USE_POSIX_GLOB
43 #include <glob.h>
44 #endif
45 #include <sys/types.h>
46 #include <sys/stat.h>
47 #if HAVE_UNISTD_H
48 #include <unistd.h>
49 #endif
50 #include "pazpar2_config.h"
51 #include "settings.h"
52 #include "eventl.h"
53 #include "http.h"
54
55 struct conf_config
56 {
57     NMEM nmem; /* for conf_config and servers memory */
58     struct conf_server *servers;
59     WRBUF confdir;
60 };
61
62
63 static char *parse_settings(struct conf_config *config,
64                             NMEM nmem, xmlNode *node);
65
66 static struct conf_targetprofiles *parse_targetprofiles(NMEM nmem,
67                                                         xmlNode *node);
68
69 static void conf_metadata_assign(NMEM nmem, 
70                                  struct conf_metadata * metadata,
71                                  const char *name,
72                                  enum conf_metadata_type type,
73                                  enum conf_metadata_merge merge,
74                                  enum conf_setting_type setting,
75                                  int brief,
76                                  int termlist,
77                                  int rank,
78                                  int sortkey_offset,
79                                  enum conf_metadata_mergekey mt)
80 {
81     assert(nmem && metadata && name);
82     
83     metadata->name = nmem_strdup(nmem, name);
84
85     metadata->type = type;
86
87     // enforcing that type_year is always range_merge
88     if (metadata->type == Metadata_type_year)
89         metadata->merge = Metadata_merge_range;
90     else
91         metadata->merge = merge;    
92
93     metadata->setting = setting;
94     metadata->brief = brief;   
95     metadata->termlist = termlist;
96     metadata->rank = rank;    
97     metadata->sortkey_offset = sortkey_offset;
98     metadata->mergekey = mt;
99 }
100
101
102 static void conf_sortkey_assign(NMEM nmem, 
103                                 struct conf_sortkey * sortkey,
104                                 const char *name,
105                                 enum conf_sortkey_type type)
106 {
107     assert(nmem && sortkey && name);
108     
109     sortkey->name = nmem_strdup(nmem, name);
110     sortkey->type = type;
111 }
112
113
114 static struct conf_service *service_init(struct conf_server *server,
115                                          int num_metadata, int num_sortkeys,
116                                          const char *service_id)
117 {
118     struct conf_service * service = 0;
119     NMEM nmem = nmem_create();
120
121     service = nmem_malloc(nmem, sizeof(struct conf_service));
122     service->ref_count = 1;
123     service->nmem = nmem;
124     service->next = 0;
125     service->settings = 0;
126     service->databases = 0;
127     service->targetprofiles = 0;
128     service->server = server;
129     service->session_timeout = 60; /* default session timeout */
130     service->z3950_session_timeout = 180;
131     service->z3950_operation_timeout = 30;
132
133     service->relevance_pct = 0;
134     service->sort_pct = 0;
135     service->mergekey_pct = 0;
136
137     service->id = service_id ? nmem_strdup(nmem, service_id) : 0;
138     service->num_metadata = num_metadata;
139     service->metadata = 0;
140     if (service->num_metadata)
141       service->metadata 
142           = nmem_malloc(nmem, 
143                         sizeof(struct conf_metadata) * service->num_metadata);
144     service->num_sortkeys = num_sortkeys;
145     service->sortkeys = 0;
146     if (service->num_sortkeys)
147         service->sortkeys 
148             = nmem_malloc(nmem, 
149                           sizeof(struct conf_sortkey) * service->num_sortkeys);
150     service->dictionary = 0;
151     return service; 
152 }
153
154 static struct conf_metadata* conf_service_add_metadata(
155     struct conf_service *service,
156     int field_id,
157     const char *name,
158     enum conf_metadata_type type,
159     enum conf_metadata_merge merge,
160     enum conf_setting_type setting,
161     int brief,
162     int termlist,
163     int rank,
164     int sortkey_offset,
165     enum conf_metadata_mergekey mt)
166 {
167     struct conf_metadata * md = 0;
168
169     if (!service || !service->metadata || !service->num_metadata
170         || field_id < 0  || !(field_id < service->num_metadata))
171         return 0;
172
173     md = service->metadata + field_id;
174     conf_metadata_assign(service->nmem, md, name, type, merge, setting,
175                          brief, termlist, rank, sortkey_offset,
176                          mt);
177     return md;
178 }
179
180
181 static struct conf_sortkey * conf_service_add_sortkey(
182     struct conf_service *service,
183     int field_id,
184     const char *name,
185     enum conf_sortkey_type type)
186 {
187     struct conf_sortkey * sk = 0;
188
189     if (!service || !service->sortkeys || !service->num_sortkeys
190         || field_id < 0  || !(field_id < service->num_sortkeys))
191         return 0;
192
193     //sk = &((service->sortkeys)[field_id]);
194     sk = service->sortkeys + field_id;
195     conf_sortkey_assign(service->nmem, sk, name, type);
196
197     return sk;
198 }
199
200
201 int conf_service_metadata_field_id(struct conf_service *service,
202                                    const char * name)
203 {
204     int i = 0;
205
206     if (!service || !service->metadata || !service->num_metadata)
207         return -1;
208
209     for(i = 0; i < service->num_metadata; i++) {
210         if (!strcmp(name, (service->metadata[i]).name))
211             return i;
212     }
213    
214     return -1;
215 }
216
217
218 int conf_service_sortkey_field_id(struct conf_service *service,
219                                   const char * name)
220 {
221     int i = 0;
222
223     if (!service || !service->sortkeys || !service->num_sortkeys)
224         return -1;
225
226     for(i = 0; i < service->num_sortkeys; i++) {
227         if (!strcmp(name, (service->sortkeys[i]).name))
228             return i;
229     }
230    
231     return -1;
232 }
233
234 static void conf_dir_path(struct conf_config *config, WRBUF w, const char *src)
235 {
236     if (config->confdir && wrbuf_len(config->confdir) > 0 &&
237         !yaz_is_abspath(src))
238     {
239         wrbuf_printf(w, "%s/%s", wrbuf_cstr(config->confdir), src);
240     }
241     else
242         wrbuf_puts(w, src);
243 }
244
245 void service_destroy(struct conf_service *service)
246 {
247     if (service)
248     {
249         assert(service->ref_count > 0);
250         service->ref_count--;
251         if (service->ref_count == 0)
252         {
253             pp2_charset_destroy(service->relevance_pct);
254             pp2_charset_destroy(service->sort_pct);
255             pp2_charset_destroy(service->mergekey_pct);
256             nmem_destroy(service->nmem);
257         }
258     }
259 }
260
261 void service_incref(struct conf_service *service)
262 {
263     service->ref_count++;
264 }
265
266 static int parse_metadata(struct conf_service *service, xmlNode *n,
267                           int *md_node, int *sk_node)
268 {
269     xmlChar *xml_name = xmlGetProp(n, (xmlChar *) "name");
270     xmlChar *xml_brief = xmlGetProp(n, (xmlChar *) "brief");
271     xmlChar *xml_sortkey = xmlGetProp(n, (xmlChar *) "sortkey");
272     xmlChar *xml_merge = xmlGetProp(n, (xmlChar *) "merge");
273     xmlChar *xml_type = xmlGetProp(n, (xmlChar *) "type");
274     xmlChar *xml_termlist = xmlGetProp(n, (xmlChar *) "termlist");
275     xmlChar *xml_rank = xmlGetProp(n, (xmlChar *) "rank");
276     xmlChar *xml_setting = xmlGetProp(n, (xmlChar *) "setting");
277     xmlChar *xml_mergekey = xmlGetProp(n, (xmlChar *) "mergekey");
278     
279     enum conf_metadata_type type = Metadata_type_generic;
280     enum conf_metadata_merge merge = Metadata_merge_no;
281     enum conf_setting_type setting = Metadata_setting_no;
282     enum conf_sortkey_type sk_type = Metadata_sortkey_relevance;
283     enum conf_metadata_mergekey mergekey_type = Metadata_mergekey_no;
284     int brief = 0;
285     int termlist = 0;
286     int rank = 0;
287     int sortkey_offset = 0;
288     
289     // now do the parsing logic
290     if (!xml_name)
291     {
292         yaz_log(YLOG_FATAL, "Must specify name in metadata element");
293         return -1;
294     }
295     if (xml_brief)
296     {
297         if (!strcmp((const char *) xml_brief, "yes"))
298             brief = 1;
299         else if (strcmp((const char *) xml_brief, "no"))
300         {
301             yaz_log(YLOG_FATAL, "metadata/brief must be yes or no");
302             return -1;
303         }
304     }
305     else
306         brief = 0;
307     
308     if (xml_termlist)
309     {
310         if (!strcmp((const char *) xml_termlist, "yes"))
311             termlist = 1;
312         else if (strcmp((const char *) xml_termlist, "no"))
313         {
314             yaz_log(YLOG_FATAL, "metadata/termlist must be yes or no");
315             return -1;
316         }
317     }
318     else
319         termlist = 0;
320     
321     if (xml_rank)
322         rank = atoi((const char *) xml_rank);
323     else
324         rank = 0;
325     
326     if (xml_type)
327     {
328         if (!strcmp((const char *) xml_type, "generic"))
329             type = Metadata_type_generic;
330         else if (!strcmp((const char *) xml_type, "year"))
331             type = Metadata_type_year;
332         else if (!strcmp((const char *) xml_type, "date"))
333             type = Metadata_type_date;
334         else
335         {
336             yaz_log(YLOG_FATAL, 
337                     "Unknown value for metadata/type: %s", xml_type);
338             return -1;
339         }
340     }
341     else
342         type = Metadata_type_generic;
343     
344     if (xml_merge)
345     {
346         if (!strcmp((const char *) xml_merge, "no"))
347             merge = Metadata_merge_no;
348         else if (!strcmp((const char *) xml_merge, "unique"))
349             merge = Metadata_merge_unique;
350         else if (!strcmp((const char *) xml_merge, "longest"))
351             merge = Metadata_merge_longest;
352         else if (!strcmp((const char *) xml_merge, "range"))
353             merge = Metadata_merge_range;
354         else if (!strcmp((const char *) xml_merge, "all"))
355             merge = Metadata_merge_all;
356         else
357         {
358             yaz_log(YLOG_FATAL, 
359                     "Unknown value for metadata/merge: %s", xml_merge);
360             return -1;
361         }
362     }
363     else
364         merge = Metadata_merge_no;
365     
366     if (xml_setting)
367     {
368         if (!strcmp((const char *) xml_setting, "no"))
369             setting = Metadata_setting_no;
370         else if (!strcmp((const char *) xml_setting, "postproc"))
371             setting = Metadata_setting_postproc;
372         else if (!strcmp((const char *) xml_setting, "parameter"))
373             setting = Metadata_setting_parameter;
374         else
375         {
376             yaz_log(YLOG_FATAL,
377                     "Unknown value for medadata/setting: %s", xml_setting);
378             return -1;
379         }
380     }
381     
382     // add a sortkey if so specified
383     if (xml_sortkey && strcmp((const char *) xml_sortkey, "no"))
384     {
385         if (merge == Metadata_merge_no)
386         {
387             yaz_log(YLOG_FATAL, 
388                     "Can't specify sortkey on a non-merged field");
389             return -1;
390         }
391         if (!strcmp((const char *) xml_sortkey, "numeric"))
392             sk_type = Metadata_sortkey_numeric;
393         else if (!strcmp((const char *) xml_sortkey, "skiparticle"))
394             sk_type = Metadata_sortkey_skiparticle;
395         else
396         {
397             yaz_log(YLOG_FATAL,
398                     "Unknown sortkey in metadata element: %s", 
399                     xml_sortkey);
400             return -1;
401         }
402         sortkey_offset = *sk_node;
403         
404         conf_service_add_sortkey(service, *sk_node,
405                                  (const char *) xml_name, sk_type);
406         
407         (*sk_node)++;
408     }
409     else
410         sortkey_offset = -1;
411     
412     if (xml_mergekey)
413     {
414         if (!strcmp((const char *) xml_mergekey, "required"))
415             mergekey_type = Metadata_mergekey_required;
416         else if (!strcmp((const char *) xml_mergekey, "optional"))
417             mergekey_type = Metadata_mergekey_optional;
418         else if (!strcmp((const char *) xml_mergekey, "no"))
419             mergekey_type = Metadata_mergekey_no;
420         else
421         {
422             yaz_log(YLOG_FATAL, "Unknown value for mergekey: %s", xml_mergekey);
423             return -1;
424         }
425     }
426     
427     
428     // metadata known, assign values
429     conf_service_add_metadata(service, *md_node,
430                               (const char *) xml_name,
431                               type, merge, setting,
432                               brief, termlist, rank, sortkey_offset,
433                               mergekey_type);
434     
435     xmlFree(xml_name);
436     xmlFree(xml_brief);
437     xmlFree(xml_sortkey);
438     xmlFree(xml_merge);
439     xmlFree(xml_type);
440     xmlFree(xml_termlist);
441     xmlFree(xml_rank);
442     xmlFree(xml_setting);
443     xmlFree(xml_mergekey);
444     (*md_node)++;
445     return 0;
446 }
447
448 static struct conf_service *service_create_static(struct conf_server *server,
449                                                   xmlNode *node,
450                                                   const char *service_id)
451 {
452     xmlNode *n;
453     int md_node = 0;
454     int sk_node = 0;
455
456     struct conf_service *service = 0;
457     int num_metadata = 0;
458     int num_sortkeys = 0;
459     int got_settings = 0;
460     
461     // count num_metadata and num_sortkeys
462     for (n = node->children; n; n = n->next)
463         if (n->type == XML_ELEMENT_NODE && !strcmp((const char *)
464                                                    n->name, "metadata"))
465         {
466             xmlChar *sortkey = xmlGetProp(n, (xmlChar *) "sortkey");
467             num_metadata++;
468             if (sortkey && strcmp((const char *) sortkey, "no"))
469                 num_sortkeys++;
470             xmlFree(sortkey);
471         }
472
473     service = service_init(server, num_metadata, num_sortkeys, service_id);
474
475     for (n = node->children; n; n = n->next)
476     {
477         if (n->type != XML_ELEMENT_NODE)
478             continue;
479         if (!strcmp((const char *) n->name, "timeout"))
480         {
481             xmlChar *src = xmlGetProp(n, (xmlChar *) "session");
482             if (src)
483             {
484                 service->session_timeout = atoi((const char *) src);
485                 xmlFree(src);
486                 if (service->session_timeout < 9)
487                 {
488                     yaz_log(YLOG_FATAL, "session timeout out of range");
489                     return 0;
490                 }
491             }
492             src = xmlGetProp(n, (xmlChar *) "z3950_operation");
493             if (src)
494             {
495                 service->z3950_operation_timeout = atoi((const char *) src);
496                 xmlFree(src);
497                 if (service->z3950_session_timeout < 9)
498                 {
499                     yaz_log(YLOG_FATAL, "Z39.50 operation timeout out of range");
500                     return 0;
501                 }
502             }
503             src = xmlGetProp(n, (xmlChar *) "z3950_session");
504             if (src)
505             {
506                 service->z3950_session_timeout = atoi((const char *) src);
507                 xmlFree(src);
508                 if (service->z3950_session_timeout < 9)
509                 {
510                     yaz_log(YLOG_FATAL, "Z39.50 session timeout out of range");
511                     return 0;
512                 }
513             }
514         }
515         else if (!strcmp((const char *) n->name, "settings"))
516             got_settings++;
517         else if (!strcmp((const char *) n->name, (const char *) "targetprofiles"))
518         {
519             if (service->targetprofiles)
520             {
521                 yaz_log(YLOG_FATAL, "Can't repeat targetprofiles");
522                 return 0;
523             }
524             if (!(service->targetprofiles = 
525                   parse_targetprofiles(service->nmem, n)))
526                 return 0;
527         }
528         else if (!strcmp((const char *) n->name, "relevance"))
529         {
530             if (service->relevance_pct)
531             {
532                 yaz_log(YLOG_LOG, "relevance may not repeat in service");
533                 return 0;
534             }
535             else
536             {
537                 service->relevance_pct = pp2_charset_create_xml(n);
538                 if (!service->relevance_pct)
539                     return 0;
540             }
541         }
542         else if (!strcmp((const char *) n->name, "sort"))
543         {
544             if (service->sort_pct)
545             {
546                 yaz_log(YLOG_LOG, "sort may not repeat in service");
547                 return 0;
548             }
549             else
550             {
551                 service->sort_pct = pp2_charset_create_xml(n);
552                 if (!service->sort_pct)
553                     return 0;
554             }
555         }
556         else if (!strcmp((const char *) n->name, "mergekey"))
557         {
558             if (service->mergekey_pct)
559             {
560                 yaz_log(YLOG_LOG, "mergekey may not repeat in service");
561                 return 0;
562             }
563             else
564             {
565                 service->mergekey_pct = pp2_charset_create_xml(n);
566                 if (!service->mergekey_pct)
567                     return 0;
568             }
569         }
570         else if (!strcmp((const char *) n->name, (const char *) "metadata"))
571         {
572             if (parse_metadata(service, n, &md_node, &sk_node))
573                 return 0;
574         }
575         else
576         {
577             yaz_log(YLOG_FATAL, "Bad element: %s", n->name);
578             return 0;
579         }
580     }
581     if (got_settings)
582     {
583         int pass;
584         /* metadata has been read.. Consider now settings */
585         init_settings(service);
586         for (pass = 1; pass <= 2; pass++)
587         {
588             for (n = node->children; n; n = n->next)
589             {
590                 if (n->type != XML_ELEMENT_NODE)
591                     continue;
592                 if (!strcmp((const char *) n->name, "settings"))
593                 {
594                     xmlChar *src = xmlGetProp(n, (xmlChar *) "src");
595                     if (src)
596                     {
597                         WRBUF w = wrbuf_alloc();
598                         conf_dir_path(server->config, w, (const char *) src);
599                         settings_read_file(service, wrbuf_cstr(w), pass);
600                         wrbuf_destroy(w);
601                         xmlFree(src);
602                     }
603                     else
604                     {
605                         settings_read_node(service, n, pass);
606                     }
607                 }
608             }
609         }
610     }
611     return service;
612 }
613
614 static char *parse_settings(struct conf_config *config,
615                             NMEM nmem, xmlNode *node)
616 {
617     xmlChar *src = xmlGetProp(node, (xmlChar *) "src");
618     char *r;
619
620     if (src)
621     {
622         WRBUF w = wrbuf_alloc();
623         conf_dir_path(config, w, (const char *) src);
624         r = nmem_strdup(nmem, wrbuf_cstr(w));
625         wrbuf_destroy(w);
626     }
627     else
628     {
629         yaz_log(YLOG_FATAL, "Must specify src in targetprofile");
630         return 0;
631     }
632     xmlFree(src);
633     return r;
634 }
635
636 static void inherit_server_settings(struct conf_service *s)
637 {
638     struct conf_server *server = s->server;
639     if (!s->dictionary) /* service has no config settings ? */
640     {
641         if (server->server_settings)
642         {
643             /* inherit settings from server */
644             init_settings(s);
645             settings_read_file(s, server->server_settings, 1);
646             settings_read_file(s, server->server_settings, 2);
647         }
648         else
649         {
650             yaz_log(YLOG_WARN, "service '%s' has no settings",
651                     s->id ? s->id : "unnamed");
652             init_settings(s);
653         }
654     }
655     
656     /* use relevance/sort/mergekey from server if not defined
657        for this service.. */
658     if (!s->relevance_pct)
659     {
660         if (server->relevance_pct)
661         {
662             s->relevance_pct = server->relevance_pct;
663             pp2_charset_incref(s->relevance_pct);
664         }
665         else
666             s->relevance_pct = pp2_charset_create(0);
667     }
668     
669     if (!s->sort_pct)
670     {
671         if (server->sort_pct)
672         {
673             s->sort_pct = server->sort_pct;
674             pp2_charset_incref(s->sort_pct);
675         }
676         else
677             s->sort_pct = pp2_charset_create(0);
678     }
679     
680     if (!s->mergekey_pct)
681     {
682         if (server->mergekey_pct)
683         {
684             s->mergekey_pct = server->mergekey_pct;
685             pp2_charset_incref(s->mergekey_pct);
686         }
687         else
688             s->mergekey_pct = pp2_charset_create(0);
689     }
690 }
691
692 struct conf_service *service_create(struct conf_server *server,
693                                     xmlNode *node)
694 {
695     struct conf_service *service = service_create_static(server,
696                                                          node, 0);
697     if (service)
698     {
699         inherit_server_settings(service);
700         resolve_databases(service);
701     }
702     return service;
703 }
704
705 static struct conf_server *server_create(struct conf_config *config,
706                                          NMEM nmem, xmlNode *node)
707 {
708     xmlNode *n;
709     struct conf_server *server = nmem_malloc(nmem, sizeof(struct conf_server));
710     xmlChar *server_id = xmlGetProp(node, (xmlChar *) "id");
711
712     server->host = 0;
713     server->port = 0;
714     server->proxy_host = 0;
715     server->proxy_port = 0;
716     server->myurl = 0;
717     server->proxy_addr = 0;
718     server->service = 0;
719     server->config = config;
720     server->next = 0;
721     server->relevance_pct = 0;
722     server->sort_pct = 0;
723     server->mergekey_pct = 0;
724     server->server_settings = 0;
725
726     if (server_id)
727     {
728         server->server_id = nmem_strdup(nmem, (const char *)server_id);
729         xmlFree(server_id);
730     }
731     else
732         server->server_id = 0;
733     for (n = node->children; n; n = n->next)
734     {
735         if (n->type != XML_ELEMENT_NODE)
736             continue;
737         if (!strcmp((const char *) n->name, "listen"))
738         {
739             xmlChar *port = xmlGetProp(n, (xmlChar *) "port");
740             xmlChar *host = xmlGetProp(n, (xmlChar *) "host");
741             if (port)
742                 server->port = atoi((const char *) port);
743             if (host)
744                 server->host = nmem_strdup(nmem, (const char *) host);
745             xmlFree(port);
746             xmlFree(host);
747         }
748         else if (!strcmp((const char *) n->name, "proxy"))
749         {
750             xmlChar *port = xmlGetProp(n, (xmlChar *) "port");
751             xmlChar *host = xmlGetProp(n, (xmlChar *) "host");
752             xmlChar *myurl = xmlGetProp(n, (xmlChar *) "myurl");
753             if (port)
754                 server->proxy_port = atoi((const char *) port);
755             if (host)
756                 server->proxy_host = nmem_strdup(nmem, (const char *) host);
757             if (myurl)
758                 server->myurl = nmem_strdup(nmem, (const char *) myurl);
759             xmlFree(port);
760             xmlFree(host);
761             xmlFree(myurl);
762         }
763         else if (!strcmp((const char *) n->name, "settings"))
764         {
765             if (server->server_settings)
766             {
767                 yaz_log(YLOG_FATAL, "Can't repeat 'settings'");
768                 return 0;
769             }
770             if (!(server->server_settings = parse_settings(config, nmem, n)))
771                 return 0;
772         }
773         else if (!strcmp((const char *) n->name, "relevance"))
774         {
775             server->relevance_pct = pp2_charset_create_xml(n);
776             if (!server->relevance_pct)
777                 return 0;
778         }
779         else if (!strcmp((const char *) n->name, "sort"))
780         {
781             server->sort_pct = pp2_charset_create_xml(n);
782             if (!server->sort_pct)
783                 return 0;
784         }
785         else if (!strcmp((const char *) n->name, "mergekey"))
786         {
787             server->mergekey_pct = pp2_charset_create_xml(n);
788             if (!server->mergekey_pct)
789                 return 0;
790         }
791         else if (!strcmp((const char *) n->name, "service"))
792         {
793             char *service_id = (char *)
794                 xmlGetProp(n, (xmlChar *) "id");
795
796             struct conf_service **sp = &server->service;
797             for (; *sp; sp = &(*sp)->next)
798                 if ((*sp)->id && service_id &&
799                     0 == strcmp((*sp)->id, service_id))
800                 {
801                     yaz_log(YLOG_FATAL, "Duplicate service: %s", service_id);
802                     break;
803                 }
804                 else if (!(*sp)->id && !service_id)
805                 {
806                     yaz_log(YLOG_FATAL, "Duplicate unnamed service");
807                     break;
808                 }
809
810             if (*sp)  /* service already exist */
811             {
812                 xmlFree(service_id);
813                 return 0;
814             }
815             else
816             {
817                 struct conf_service *s = service_create_static(server, n,
818                                                                service_id);
819                 xmlFree(service_id);
820                 if (!s)
821                     return 0;
822                 *sp = s;
823             }
824         }
825         else
826         {
827             yaz_log(YLOG_FATAL, "Bad element: %s", n->name);
828             return 0;
829         }
830     }
831     if (server->service)
832     {
833         struct conf_service *s;
834         for (s = server->service; s; s = s->next)
835             inherit_server_settings(s);
836     }
837     return server;
838 }
839
840 WRBUF conf_get_fname(struct conf_service *service, const char *fname)
841 {
842     struct conf_config *config = service->server->config;
843     WRBUF w = wrbuf_alloc();
844
845     conf_dir_path(config, w, fname);
846     return w;
847 }
848
849 static struct conf_targetprofiles *parse_targetprofiles(NMEM nmem,
850                                                         xmlNode *node)
851 {
852     struct conf_targetprofiles *r = nmem_malloc(nmem, sizeof(*r));
853     xmlChar *type = xmlGetProp(node, (xmlChar *) "type");
854     xmlChar *src = xmlGetProp(node, (xmlChar *) "src");
855
856     memset(r, 0, sizeof(*r));
857
858     if (type)
859     {
860         if (!strcmp((const char *) type, "local"))
861             r->type = Targetprofiles_local;
862         else
863         {
864             yaz_log(YLOG_FATAL, "Unknown targetprofile type");
865             return 0;
866         }
867     }
868     else
869     {
870         yaz_log(YLOG_FATAL, "Must specify type for targetprofile");
871         return 0;
872     }
873
874     if (src)
875         r->src = nmem_strdup(nmem, (const char *) src);
876     else
877     {
878         yaz_log(YLOG_FATAL, "Must specify src in targetprofile");
879         return 0;
880     }
881     xmlFree(type);
882     xmlFree(src);
883     return r;
884 }
885
886 struct conf_service *locate_service(struct conf_server *server,
887                                     const char *service_id)
888 {
889     struct conf_service *s = server->service;
890     for (; s; s = s->next)
891         if (s->id && service_id && 0 == strcmp(s->id, service_id))
892             return s;
893         else if (!s->id && !service_id)
894             return s;
895     return 0;
896 }
897
898
899 static int parse_config(struct conf_config *config, xmlNode *root)
900 {
901     xmlNode *n;
902
903     for (n = root->children; n; n = n->next)
904     {
905         if (n->type != XML_ELEMENT_NODE)
906             continue;
907         if (!strcmp((const char *) n->name, "server"))
908         {
909             struct conf_server *tmp = server_create(config, config->nmem, n);
910             if (!tmp)
911                 return -1;
912             tmp->next = config->servers;
913             config->servers = tmp;
914         }
915         else if (!strcmp((const char *) n->name, "targetprofiles"))
916         {
917             yaz_log(YLOG_FATAL, "targetprofiles unsupported here. Must be part of service");
918             return -1;
919
920         }
921         else
922         {
923             yaz_log(YLOG_FATAL, "Bad element: %s", n->name);
924             return -1;
925         }
926     }
927     return 0;
928 }
929
930 static int process_config_includes(struct conf_config *config, xmlNode *n);
931
932 static int config_include_one(struct conf_config *config, xmlNode **sib,
933     const char *path)
934 {
935     struct stat st;
936     if (stat(path, &st) < 0)
937     {
938         yaz_log(YLOG_FATAL|YLOG_ERRNO, "stat %s", path);
939         return -1;
940     }
941     else
942     {
943         if ((st.st_mode & S_IFMT) == S_IFREG)
944         {
945             xmlDoc *doc = xmlParseFile(path);
946             if (doc)
947             {
948                 xmlNodePtr t = xmlDocGetRootElement(doc);
949                 int ret = process_config_includes(config, t);
950                 *sib = xmlAddNextSibling(*sib, xmlCopyNode(t, 1));
951                 xmlFreeDoc(doc);
952                 if (ret)
953                     return -1;
954             }
955             else
956             {
957                 yaz_log(YLOG_FATAL, "Could not parse %s", path);
958                 return -1;
959             }
960         }
961     }
962     return 0;
963 }
964
965 static int config_include_src(struct conf_config *config, xmlNode **np,
966                               const char *src)
967 {
968     int ret = 0; /* return code. OK so far */
969     WRBUF w = wrbuf_alloc();
970     xmlNodePtr sib; /* our sibling that we append */
971     xmlNodePtr c; /* tmp node */
972
973     wrbuf_printf(w, " begin include src=\"%s\" ", src);
974
975     /* replace include element with a 'begin' comment */
976     sib = xmlNewComment((const xmlChar *) wrbuf_cstr(w));
977     xmlReplaceNode(*np, sib);
978
979     xmlFreeNode(*np);
980
981     wrbuf_rewind(w);
982     conf_dir_path(config, w, src);
983 #if USE_POSIX_GLOB
984     {
985         size_t i;
986         glob_t glob_res;
987         glob(wrbuf_cstr(w), 0 /* flags */, 0 /* errfunc */, &glob_res);
988         
989         for (i = 0; ret == 0 && i < glob_res.gl_pathc; i++)
990         {
991             const char *path = glob_res.gl_pathv[i];
992             ret = config_include_one(config, &sib, path);
993         }
994         globfree(&glob_res);
995     }
996 #else
997     ret = config_include_one(config, &sib, wrbuf_cstr(w));
998 #endif
999     wrbuf_rewind(w);
1000     wrbuf_printf(w, " end include src=\"%s\" ", src);
1001     c = xmlNewComment((const xmlChar *) wrbuf_cstr(w));
1002     sib = xmlAddNextSibling(sib, c);
1003     
1004     *np = sib;
1005     wrbuf_destroy(w);
1006     return ret;
1007 }
1008
1009 static int process_config_includes(struct conf_config *config, xmlNode *n)
1010 {
1011     for (; n; n = n->next)
1012     {
1013         if (n->type == XML_ELEMENT_NODE)
1014         {
1015             if (!strcmp((const char *) n->name, "include"))
1016             {
1017                 xmlChar *src = xmlGetProp(n, (xmlChar *) "src");
1018                 if (src)
1019                 {
1020                     int ret = config_include_src(config, &n,
1021                                                  (const char *) src);
1022                     xmlFree(src);
1023                     if (ret)
1024                         return ret;
1025                         
1026                 }
1027             }
1028             else
1029             {
1030                 if (process_config_includes(config, n->children))
1031                     return -1;
1032             }
1033         }
1034     }
1035     return 0;
1036 }
1037
1038 struct conf_config *config_create(const char *fname, int verbose)
1039 {
1040     xmlDoc *doc = xmlParseFile(fname);
1041     xmlNode *n;
1042     const char *p;
1043     int r;
1044     NMEM nmem = nmem_create();
1045     struct conf_config *config = nmem_malloc(nmem, sizeof(struct conf_config));
1046
1047     xmlSubstituteEntitiesDefault(1);
1048     xmlLoadExtDtdDefaultValue = 1;
1049     if (!doc)
1050     {
1051         yaz_log(YLOG_FATAL, "Failed to read %s", fname);
1052         nmem_destroy(nmem);
1053         return 0;
1054     }
1055
1056     config->nmem = nmem;
1057     config->servers = 0;
1058
1059     config->confdir = wrbuf_alloc();
1060     if ((p = strrchr(fname, 
1061 #ifdef WIN32
1062                      '\\'
1063 #else
1064                      '/'
1065 #endif
1066              )))
1067     {
1068         int len = p - fname;
1069         wrbuf_write(config->confdir, fname, len);
1070     }
1071     wrbuf_puts(config->confdir, "");
1072     
1073     n = xmlDocGetRootElement(doc);
1074     r = process_config_includes(config, n);
1075     if (r == 0) /* OK */
1076     {
1077         if (verbose)
1078         {
1079             yaz_log(YLOG_LOG, "Configuration %s after include processing",
1080                     fname);
1081 #if LIBXML_VERSION >= 20600
1082             xmlDocFormatDump(yaz_log_file(), doc, 0);
1083 #else
1084             xmlDocDump(yaz_log_file(), doc);
1085 #endif
1086         }
1087         r = parse_config(config, n);
1088     }
1089     xmlFreeDoc(doc);
1090
1091     if (r)
1092     {
1093         config_destroy(config);
1094         return 0;
1095     }
1096     return config;
1097 }
1098
1099 void server_destroy(struct conf_server *server)
1100 {
1101     struct conf_service *s = server->service;
1102     while (s)
1103     {
1104         struct conf_service *s_next = s->next;
1105         service_destroy(s);
1106         s = s_next;
1107     }
1108     pp2_charset_destroy(server->relevance_pct);
1109     pp2_charset_destroy(server->sort_pct);
1110     pp2_charset_destroy(server->mergekey_pct);
1111 }
1112
1113 void config_destroy(struct conf_config *config)
1114 {
1115     if (config)
1116     {
1117         struct conf_server *server = config->servers;
1118         while (server)
1119         {
1120             struct conf_server *s_next = server->next;
1121             server_destroy(server);
1122             server = s_next;
1123         }
1124         wrbuf_destroy(config->confdir);
1125         nmem_destroy(config->nmem);
1126     }
1127 }
1128
1129 void config_stop_listeners(struct conf_config *conf)
1130 {
1131     struct conf_server *ser;
1132     for (ser = conf->servers; ser; ser = ser->next)
1133         http_close_server(ser);
1134 }
1135
1136 void config_start_databases(struct conf_config *conf)
1137 {
1138     struct conf_server *ser;
1139     for (ser = conf->servers; ser; ser = ser->next)
1140     {
1141         struct conf_service *s = ser->service;
1142         for (;s ; s = s->next)
1143             resolve_databases(s);
1144     }
1145 }
1146
1147 int config_start_listeners(struct conf_config *conf,
1148                            const char *listener_override)
1149 {
1150     struct conf_server *ser;
1151     for (ser = conf->servers; ser; ser = ser->next)
1152     {
1153         WRBUF w = wrbuf_alloc();
1154         int r;
1155         if (listener_override)
1156         {
1157             wrbuf_puts(w, listener_override);
1158             listener_override = 0; /* only first server is overriden */
1159         }
1160         else
1161         {
1162             if (ser->host)
1163                 wrbuf_puts(w, ser->host);
1164             if (ser->port)
1165             {
1166                 if (wrbuf_len(w))
1167                     wrbuf_puts(w, ":");
1168                 wrbuf_printf(w, "%d", ser->port);
1169             }
1170         }
1171         r = http_init(wrbuf_cstr(w), ser);
1172         wrbuf_destroy(w);
1173         if (r)
1174             return -1;
1175
1176         w = wrbuf_alloc();
1177         if (ser->proxy_host || ser->proxy_port)
1178         {
1179             if (ser->proxy_host)
1180                 wrbuf_puts(w, ser->proxy_host);
1181             if (ser->proxy_port)
1182             {
1183                 if (wrbuf_len(w))
1184                     wrbuf_puts(w, ":");
1185                 wrbuf_printf(w, "%d", ser->proxy_port);
1186             }
1187         }
1188         if (wrbuf_len(w))
1189             http_set_proxyaddr(wrbuf_cstr(w), ser);
1190         wrbuf_destroy(w);
1191     }
1192     return 0;
1193 }
1194
1195 /*
1196  * Local variables:
1197  * c-basic-offset: 4
1198  * c-file-style: "Stroustrup"
1199  * indent-tabs-mode: nil
1200  * End:
1201  * vim: shiftwidth=4 tabstop=8 expandtab
1202  */
1203