New attribute "backendtype" for syntax section which specifies record
[yazproxy-moved-to-github.git] / src / yaz-proxy-config.cpp
1 /* $Id: yaz-proxy-config.cpp,v 1.5 2004-08-10 09:02:16 adam Exp $
2    Copyright (c) 1998-2004, Index Data.
3
4 This file is part of the yaz-proxy.
5
6 YAZ proxy 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 YAZ proxy 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 YAZ proxy; 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 #include <ctype.h>
23 #include <yaz/log.h>
24 #include <yazproxy/proxy.h>
25
26 #if HAVE_XSLT
27 #include <libxml/parser.h>
28 #include <libxml/tree.h>
29 #include <libxslt/xsltutils.h>
30 #include <libxslt/transform.h>
31 #endif
32
33 class Yaz_ProxyConfigP {
34     friend class Yaz_ProxyConfig;
35
36     int m_copy;
37
38     int mycmp(const char *hay, const char *item, size_t len);
39     int match_list(int v, const char *m);
40     int atoi_l(const char **cp);
41 #if HAVE_XSLT
42     int check_schema(xmlNodePtr ptr, Z_RecordComposition *comp,
43                      const char *schema_identifier);
44     xmlDocPtr m_docPtr;
45     xmlNodePtr m_proxyPtr;
46     void return_target_info(xmlNodePtr ptr, const char **url,
47                             int *limit_bw, int *limit_pdu, int *limit_req,
48                             int *target_idletime, int *client_idletime,
49                             int *keepalive_limit_bw, int *keepalive_limit_pdu,
50                             int *pre_init, const char **cql2rpn);
51     void return_limit(xmlNodePtr ptr,
52                       int *limit_bw, int *limit_pdu, int *limit_req);
53     int check_type_1(ODR odr, xmlNodePtr ptr, Z_RPNQuery *query,
54                      char **addinfo);
55     xmlNodePtr find_target_node(const char *name, const char *db);
56     xmlNodePtr find_target_db(xmlNodePtr ptr, const char *db);
57     const char *get_text(xmlNodePtr ptr);
58     int check_type_1_attributes(ODR odr, xmlNodePtr ptr,
59                                 Z_AttributeList *attrs,
60                                 char **addinfo);
61     int check_type_1_structure(ODR odr, xmlNodePtr ptr, Z_RPNStructure *q,
62                                char **addinfo);
63 #endif
64 };
65
66 Yaz_ProxyConfig::Yaz_ProxyConfig()
67 {
68     m_cp = new Yaz_ProxyConfigP;
69     m_cp->m_copy = 0;
70 #if HAVE_XSLT
71     m_cp->m_docPtr = 0;
72     m_cp->m_proxyPtr = 0;
73 #endif
74 }
75
76 Yaz_ProxyConfig::~Yaz_ProxyConfig()
77 {
78 #if HAVE_XSLT
79     if (!m_cp->m_copy && m_cp->m_docPtr)
80         xmlFreeDoc(m_cp->m_docPtr);
81 #endif
82     delete m_cp;
83 }
84
85 int Yaz_ProxyConfig::read_xml(const char *fname)
86 {
87 #if HAVE_XSLT
88     xmlDocPtr ndoc = xmlParseFile(fname);
89
90     if (!ndoc)
91     {
92         yaz_log(LOG_WARN, "Config file %s not found or parse error", fname);
93         return -1;  // no good
94     }
95     xmlNodePtr proxyPtr = xmlDocGetRootElement(ndoc);
96     if (!proxyPtr || proxyPtr->type != XML_ELEMENT_NODE ||
97         strcmp((const char *) proxyPtr->name, "proxy"))
98     {
99         yaz_log(LOG_WARN, "No proxy element in %s", fname);
100         xmlFreeDoc(ndoc);
101         return -1;
102     }
103     m_cp->m_proxyPtr = proxyPtr;
104
105     // OK: release previous and make it the current one.
106     if (m_cp->m_docPtr)
107         xmlFreeDoc(m_cp->m_docPtr);
108     m_cp->m_docPtr = ndoc;
109     return 0;
110 #else
111     return -2;
112 #endif
113 }
114
115 #if HAVE_XSLT
116 const char *Yaz_ProxyConfigP::get_text(xmlNodePtr ptr)
117 {
118     for(ptr = ptr->children; ptr; ptr = ptr->next)
119         if (ptr->type == XML_TEXT_NODE)
120         {
121             xmlChar *t = ptr->content;
122             if (t)
123             {
124                 while (*t == ' ')
125                     t++;
126                 return (const char *) t;
127             }
128         }
129     return 0;
130 }
131 #endif
132
133 #if HAVE_XSLT
134 void Yaz_ProxyConfigP::return_limit(xmlNodePtr ptr,
135                                    int *limit_bw,
136                                    int *limit_pdu,
137                                    int *limit_req)
138 {
139     for (ptr = ptr->children; ptr; ptr = ptr->next)
140     {
141         if (ptr->type == XML_ELEMENT_NODE 
142             && !strcmp((const char *) ptr->name, "bandwidth"))
143         {
144             const char *t = get_text(ptr);
145             if (t)
146                 *limit_bw = atoi(t);
147         }
148         if (ptr->type == XML_ELEMENT_NODE 
149             && !strcmp((const char *) ptr->name, "retrieve"))
150         {
151             const char *t = get_text(ptr);
152             if (t)
153                 *limit_req = atoi(t);
154         }
155         if (ptr->type == XML_ELEMENT_NODE 
156             && !strcmp((const char *) ptr->name, "pdu"))
157         {
158             const char *t = get_text(ptr);
159             if (t)
160                 *limit_pdu = atoi(t);
161         }
162     }
163 }
164 #endif
165
166 #if HAVE_XSLT
167 void Yaz_ProxyConfigP::return_target_info(xmlNodePtr ptr,
168                                           const char **url,
169                                           int *limit_bw,
170                                           int *limit_pdu,
171                                           int *limit_req,
172                                           int *target_idletime,
173                                           int *client_idletime,
174                                           int *keepalive_limit_bw,
175                                           int *keepalive_limit_pdu,
176                                           int *pre_init,
177                                           const char **cql2rpn)
178 {
179     *pre_init = 0;
180     int no_url = 0;
181     ptr = ptr->children;
182     for (; ptr; ptr = ptr->next)
183     {
184         if (ptr->type == XML_ELEMENT_NODE 
185             && !strcmp((const char *) ptr->name, "preinit"))
186         {
187             const char *v = get_text(ptr);
188             *pre_init = v ? atoi(v) : 1;
189         }
190         if (ptr->type == XML_ELEMENT_NODE 
191             && !strcmp((const char *) ptr->name, "url"))
192         {
193             const char *t = get_text(ptr);
194             if (t && no_url < MAX_ZURL_PLEX)
195             {
196                 url[no_url++] = t;
197                 url[no_url] = 0;
198             }
199         }
200         if (ptr->type == XML_ELEMENT_NODE 
201             && !strcmp((const char *) ptr->name, "keepalive"))
202         {
203             int dummy;
204             *keepalive_limit_bw = 500000;
205             *keepalive_limit_pdu = 1000;
206             return_limit(ptr, keepalive_limit_bw, keepalive_limit_pdu,
207                          &dummy);
208         }
209         if (ptr->type == XML_ELEMENT_NODE 
210             && !strcmp((const char *) ptr->name, "limit"))
211             return_limit(ptr, limit_bw, limit_pdu, limit_req);
212         if (ptr->type == XML_ELEMENT_NODE 
213             && !strcmp((const char *) ptr->name, "target-timeout"))
214         {
215             const char *t = get_text(ptr);
216             if (t)
217             {
218                 *target_idletime = atoi(t);
219                 if (*target_idletime < 0)
220                     *target_idletime = 0;
221             }
222         }
223         if (ptr->type == XML_ELEMENT_NODE 
224             && !strcmp((const char *) ptr->name, "client-timeout"))
225         {
226             const char *t = get_text(ptr);
227             if (t)
228             {
229                 *client_idletime = atoi(t);
230                 if (*client_idletime < 0)
231                     *client_idletime = 0;
232             }
233         }
234         if (ptr->type == XML_ELEMENT_NODE 
235             && !strcmp((const char *) ptr->name, "cql2rpn"))
236         {
237             const char *t = get_text(ptr);
238             if (t)
239                 *cql2rpn = t;
240         }
241     }
242 }
243 #endif
244
245 int Yaz_ProxyConfigP::atoi_l(const char **cp)
246 {
247     int v = 0;
248     while (**cp && isdigit(**cp))
249     {
250         v = v*10 + (**cp - '0');
251         (*cp)++;
252     }
253     return v;
254 }
255
256 int Yaz_ProxyConfigP::match_list(int v, const char *m)
257 {
258     while(m && *m)
259     {
260         while(*m && isspace(*m))
261             m++;
262         if (*m == '*')
263             return 1;
264         int l = atoi_l(&m);
265         int h = l;
266         if (*m == '-')
267         {
268             ++m;
269             h = atoi_l(&m);
270         }
271         if (v >= l && v <= h)
272           return 1;
273         if (*m == ',')
274             m++;
275     }
276     return 0;
277 }
278
279 #if HAVE_XSLT
280 int Yaz_ProxyConfigP::check_type_1_attributes(ODR odr, xmlNodePtr ptrl,
281                                               Z_AttributeList *attrs,
282                                               char **addinfo)
283 {
284     int i;
285     for (i = 0; i<attrs->num_attributes; i++)
286     {
287         Z_AttributeElement *el = attrs->attributes[i];
288         
289         if (!el->attributeType)
290             continue;
291         int type = *el->attributeType;
292         int *value = 0;
293         
294         if (el->which == Z_AttributeValue_numeric && el->value.numeric)
295             value = el->value.numeric;
296         
297         xmlNodePtr ptr;
298         for(ptr = ptrl->children; ptr; ptr = ptr->next)
299         {
300             if (ptr->type == XML_ELEMENT_NODE &&
301                 !strcmp((const char *) ptr->name, "attribute"))
302             {
303                 const char *match_type = 0;
304                 const char *match_value = 0;
305                 const char *match_error = 0;
306                 struct _xmlAttr *attr;
307                 for (attr = ptr->properties; attr; attr = attr->next)
308                 {
309                     if (!strcmp((const char *) attr->name, "type") &&
310                         attr->children && attr->children->type == XML_TEXT_NODE)
311                         match_type = (const char *) attr->children->content;
312                     if (!strcmp((const char *) attr->name, "value") &&
313                         attr->children && attr->children->type == XML_TEXT_NODE)
314                         match_value = (const char *) attr->children->content;
315                     if (!strcmp((const char *) attr->name, "error") &&
316                         attr->children && attr->children->type == XML_TEXT_NODE)
317                         match_error = (const char *) attr->children->content;
318                 }
319                 if (match_type && match_value)
320                 {
321                     char addinfo_str[20];
322                     if (!match_list(type, match_type))
323                         continue;
324                     
325                     *addinfo_str = '\0';
326                     if (!strcmp(match_type, "*"))
327                         sprintf (addinfo_str, "%d", type);
328                     else if (value)
329                     {
330                         if (!match_list(*value, match_value))
331                             continue;
332                         sprintf (addinfo_str, "%d", *value);
333                     }
334                     else
335                         continue;
336                     
337                     if (match_error)
338                     {
339                         if (*addinfo_str)
340                             *addinfo = odr_strdup(odr, addinfo_str);
341                         return atoi(match_error);
342                     }
343                     break;
344                 }
345             }
346         }
347     }
348     return 0;
349 }
350 #endif
351
352 #if HAVE_XSLT
353 int Yaz_ProxyConfigP::check_type_1_structure(ODR odr, xmlNodePtr ptr,
354                                             Z_RPNStructure *q,
355                                             char **addinfo)
356 {
357     if (q->which == Z_RPNStructure_complex)
358     {
359         int e = check_type_1_structure(odr, ptr, q->u.complex->s1, addinfo);
360         if (e)
361             return e;
362         e = check_type_1_structure(odr, ptr, q->u.complex->s2, addinfo);
363         return e;
364     }
365     else if (q->which == Z_RPNStructure_simple)
366     {
367         if (q->u.simple->which == Z_Operand_APT)
368         {
369             return check_type_1_attributes(
370                 odr, ptr, q->u.simple->u.attributesPlusTerm->attributes,
371                 addinfo);
372         }
373     }
374     return 0;
375 }
376 #endif
377
378 #if HAVE_XSLT
379 int Yaz_ProxyConfigP::check_type_1(ODR odr, xmlNodePtr ptr, Z_RPNQuery *query,
380                                    char **addinfo)
381 {
382     // possibly check for Bib-1
383     return check_type_1_structure(odr, ptr, query->RPNStructure, addinfo);
384 }
385 #endif
386
387 int Yaz_ProxyConfig::check_query(ODR odr, const char *name, Z_Query *query,
388                                  char **addinfo)
389 {
390 #if HAVE_XSLT
391     xmlNodePtr ptr;
392     
393     ptr = m_cp->find_target_node(name, 0);
394     if (ptr)
395     {
396         if (query->which == Z_Query_type_1 || query->which == Z_Query_type_101)
397             return m_cp->check_type_1(odr, ptr, query->u.type_1, addinfo);
398     }
399 #endif
400     return 0;
401 }
402
403 #if HAVE_XSLT
404 int Yaz_ProxyConfigP::check_schema(xmlNodePtr ptr, Z_RecordComposition *comp,
405                                    const char *schema_identifier)
406 {
407     char *esn = 0;
408     int default_match = 1;
409     if (comp && comp->which == Z_RecordComp_simple &&
410         comp->u.simple && comp->u.simple->which == Z_ElementSetNames_generic)
411     {
412         esn = comp->u.simple->u.generic;
413     }
414     // if no ESN/schema was given accept..
415     if (!esn)
416         return 1;
417     // check if schema identifier match
418     if (schema_identifier && !strcmp(esn, schema_identifier))
419         return 1;
420     // Check each name element
421     for (; ptr; ptr = ptr->next)
422     {
423         if (ptr->type == XML_ELEMENT_NODE 
424             && !strcmp((const char *) ptr->name, "name"))
425         {
426             xmlNodePtr tptr = ptr->children;
427             default_match = 0;
428             for (; tptr; tptr = tptr->next)
429                 if (tptr->type == XML_TEXT_NODE && tptr->content)
430                 {
431                     xmlChar *t = tptr->content;
432                     while (*t && isspace(*t))
433                         t++;
434                     int i = 0;
435                     while (esn[i] && esn[i] == t[i])
436                         i++;
437                     if (!esn[i] && (!t[i] || isspace(t[i])))
438                         return 1;
439                 }
440         }
441     }
442     return default_match;
443 }
444 #endif
445
446 int Yaz_ProxyConfig::check_syntax(ODR odr, const char *name,
447                                   Odr_oid *syntax, Z_RecordComposition *comp,
448                                   char **addinfo,
449                                   char **stylesheet, char **schema,
450                                   char **backend_type)
451 {
452     if (stylesheet)
453     {
454         xfree (*stylesheet);
455         *stylesheet = 0;
456     }
457     if (schema)
458     {
459         xfree (*schema);
460         *schema = 0;
461     }
462     if (backend_type)
463     {
464         xfree (*backend_type);
465         *backend_type = 0;
466     }
467 #if HAVE_XSLT
468     int syntax_has_matched = 0;
469     xmlNodePtr ptr;
470     
471     ptr = m_cp->find_target_node(name, 0);
472     if (!ptr)
473         return 0;
474     for(ptr = ptr->children; ptr; ptr = ptr->next)
475     {
476         if (ptr->type == XML_ELEMENT_NODE &&
477             !strcmp((const char *) ptr->name, "syntax"))
478         {
479             int match = 0;  // if we match record syntax
480             const char *match_type = 0;
481             const char *match_error = 0;
482             const char *match_marcxml = 0;
483             const char *match_stylesheet = 0;
484             const char *match_identifier = 0;
485             const char *match_backend_type = 0;
486             struct _xmlAttr *attr;
487             for (attr = ptr->properties; attr; attr = attr->next)
488             {
489                 if (!strcmp((const char *) attr->name, "type") &&
490                     attr->children && attr->children->type == XML_TEXT_NODE)
491                     match_type = (const char *) attr->children->content;
492                 if (!strcmp((const char *) attr->name, "error") &&
493                     attr->children && attr->children->type == XML_TEXT_NODE)
494                     match_error = (const char *) attr->children->content;
495                 if (!strcmp((const char *) attr->name, "marcxml") &&
496                     attr->children && attr->children->type == XML_TEXT_NODE)
497                     match_marcxml = (const char *) attr->children->content;
498                 if (!strcmp((const char *) attr->name, "stylesheet") &&
499                     attr->children && attr->children->type == XML_TEXT_NODE)
500                     match_stylesheet = (const char *) attr->children->content;
501                 if (!strcmp((const char *) attr->name, "identifier") &&
502                     attr->children && attr->children->type == XML_TEXT_NODE)
503                     match_identifier = (const char *) attr->children->content;
504                 if (!strcmp((const char *) attr->name, "backendtype") &&
505                     attr->children && attr->children->type == XML_TEXT_NODE)
506                     match_backend_type = (const char *)
507                         attr->children->content;
508             }
509             if (match_type)
510             {
511                 if (!strcmp(match_type, "*"))
512                     match = 1;
513                 else if (!strcmp(match_type, "none"))
514                 {
515                     if (syntax == 0)
516                         match = 1;
517                 }
518                 else if (syntax)
519                 {
520                     int match_oid[OID_SIZE];
521                     oid_name_to_oid(CLASS_RECSYN, match_type, match_oid);
522                     if (oid_oidcmp(match_oid, syntax) == 0)
523                         match = 1;
524                 }
525             }
526             if (match)
527             {
528                 if (!match_error)
529                     syntax_has_matched = 1;
530                 match = m_cp->check_schema(ptr->children, comp,
531                                            match_identifier);
532             }
533             if (match)
534             {
535                 if (stylesheet && match_stylesheet)
536                 {
537                     xfree(*stylesheet);
538                     *stylesheet = xstrdup(match_stylesheet);
539                 }
540                 if (schema && match_identifier)
541                 {
542                     xfree(*schema);
543                     *schema = xstrdup(match_identifier);
544                 }
545                 if (backend_type && match_backend_type)
546                 {
547                     xfree(*backend_type);
548                     *backend_type = xstrdup(match_backend_type);
549                 }
550                 if (match_marcxml)
551                 {
552                     return -1;
553                 }
554                 if (match_error)
555                 {
556                     if (syntax_has_matched)  // if syntax OK, bad schema/ESN
557                         return 25;
558                     if (syntax)
559                     {
560                         char dotoid_str[100];
561                         oid_to_dotstring(syntax, dotoid_str);
562                         *addinfo = odr_strdup(odr, dotoid_str);
563                     }
564                     return atoi(match_error);
565                 }
566                 return 0;
567             }
568         }
569     }
570 #endif
571     return 0;
572 }
573
574 #if HAVE_XSLT
575 xmlNodePtr Yaz_ProxyConfigP::find_target_db(xmlNodePtr ptr, const char *db)
576 {
577     xmlNodePtr dptr;
578     if (!db)
579         return ptr;
580     if (!ptr)
581         return 0;
582     for (dptr = ptr->children; dptr; dptr = dptr->next)
583         if (dptr->type == XML_ELEMENT_NODE &&
584             !strcmp((const char *) dptr->name, "database"))
585         {
586             struct _xmlAttr *attr;
587             for (attr = dptr->properties; attr; attr = attr->next)
588                 if (!strcmp((const char *) attr->name, "name"))
589                 {
590                     if (attr->children
591                         && attr->children->type==XML_TEXT_NODE
592                         && attr->children->content 
593                         && (!strcmp((const char *) attr->children->content, db)
594                             || !strcmp((const char *) attr->children->content,
595                                        "*")))
596                         return dptr;
597                 }
598         }
599     return ptr;
600 }
601     
602 xmlNodePtr Yaz_ProxyConfigP::find_target_node(const char *name, const char *db)
603 {
604     xmlNodePtr ptr;
605     if (!m_proxyPtr)
606         return 0;
607     for (ptr = m_proxyPtr->children; ptr; ptr = ptr->next)
608     {
609         if (ptr->type == XML_ELEMENT_NODE &&
610             !strcmp((const char *) ptr->name, "target"))
611         {
612             // default one ? 
613             if (!name)
614             {
615                 // <target default="1"> ?
616                 struct _xmlAttr *attr;
617                 for (attr = ptr->properties; attr; attr = attr->next)
618                     if (!strcmp((const char *) attr->name, "default") &&
619                         attr->children && attr->children->type == XML_TEXT_NODE)
620                     {
621                         xmlChar *t = attr->children->content;
622                         if (!t || *t == '1')
623                         {
624                             return find_target_db(ptr, db);
625                         }
626                     }
627             }
628             else
629             {
630                 // <target name="name"> ?
631                 struct _xmlAttr *attr;
632                 for (attr = ptr->properties; attr; attr = attr->next)
633                     if (!strcmp((const char *) attr->name, "name"))
634                     {
635                         if (attr->children
636                             && attr->children->type==XML_TEXT_NODE
637                             && attr->children->content 
638                             && (!strcmp((const char *) attr->children->content,
639                                         name)
640                                 || !strcmp((const char *) attr->children->content,
641                                            "*")))
642                         {
643                             return find_target_db(ptr, db);
644                         }
645                     }
646             }
647         }
648     }
649     return 0;
650 }
651 #endif
652
653 int Yaz_ProxyConfig::get_target_no(int no,
654                                    const char **name,
655                                    const char **url,
656                                    int *limit_bw,
657                                    int *limit_pdu,
658                                    int *limit_req,
659                                    int *target_idletime,
660                                    int *client_idletime,
661                                    int *max_clients,
662                                    int *keepalive_limit_bw,
663                                    int *keepalive_limit_pdu,
664                                    int *pre_init,
665                                    const char **cql2rpn)
666 {
667 #if HAVE_XSLT
668     xmlNodePtr ptr;
669     if (!m_cp->m_proxyPtr)
670         return 0;
671     int i = 0;
672     for (ptr = m_cp->m_proxyPtr->children; ptr; ptr = ptr->next)
673         if (ptr->type == XML_ELEMENT_NODE &&
674             !strcmp((const char *) ptr->name, "target"))
675         {
676             if (i == no)
677             {
678                 struct _xmlAttr *attr;
679                 for (attr = ptr->properties; attr; attr = attr->next)
680                     if (!strcmp((const char *) attr->name, "name"))
681                     {
682                         if (attr->children
683                             && attr->children->type==XML_TEXT_NODE
684                             && attr->children->content)
685                             *name = (const char *) attr->children->content;
686                     }
687                 m_cp->return_target_info(
688                     ptr, url,
689                     limit_bw, limit_pdu, limit_req,
690                     target_idletime, client_idletime,
691                     keepalive_limit_bw, keepalive_limit_pdu,
692                     pre_init, cql2rpn);
693                 return 1;
694             }
695             i++;
696         }
697 #endif
698     return 0;
699 }
700
701 int Yaz_ProxyConfigP::mycmp(const char *hay, const char *item, size_t len)
702 {
703     if (len == strlen(item) && memcmp(hay, item, len) == 0)
704         return 1;
705     return 0;
706 }
707
708 void Yaz_ProxyConfig::get_generic_info(int *log_mask,
709                                        int *max_clients)
710 {
711 #if HAVE_XSLT
712     xmlNodePtr ptr;
713     if (!m_cp->m_proxyPtr)
714         return;
715     for (ptr = m_cp->m_proxyPtr->children; ptr; ptr = ptr->next)
716     {
717         if (ptr->type == XML_ELEMENT_NODE 
718             && !strcmp((const char *) ptr->name, "log"))
719         {
720             const char *v = m_cp->get_text(ptr);
721             *log_mask = 0;
722             while (v && *v)
723             {
724                 const char *cp = v;
725                 while (*cp && *cp != ',' && !isspace(*cp))
726                     cp++;
727                 size_t len = cp - v;
728                 if (m_cp->mycmp(v, "client-apdu", len))
729                     *log_mask |= PROXY_LOG_APDU_CLIENT;
730                 if (m_cp->mycmp(v, "server-apdu", len))
731                     *log_mask |= PROXY_LOG_APDU_SERVER;
732                 if (m_cp->mycmp(v, "client-requests", len))
733                     *log_mask |= PROXY_LOG_REQ_CLIENT;
734                 if (m_cp->mycmp(v, "server-requests", len))
735                     *log_mask |= PROXY_LOG_REQ_SERVER;
736                 if (isdigit(*v))
737                     *log_mask |= atoi(v);
738                 if (*cp == ',')
739                     cp++;
740                 while (*cp && isspace(*cp))
741                     cp++;
742                 v = cp;
743             }
744         }
745         if (ptr->type == XML_ELEMENT_NODE &&
746             !strcmp((const char *) ptr->name, "max-clients"))
747         {
748             const char *t = m_cp->get_text(ptr);
749             if (t)
750             {
751                 *max_clients = atoi(t);
752                 if (*max_clients  < 1)
753                     *max_clients = 1;
754             }
755         }
756     }
757 #endif
758 }
759
760 char *Yaz_ProxyConfig::get_explain(ODR odr, const char *name, const char *db,
761                                    int *len)
762 {
763 #if HAVE_XSLT
764     xmlNodePtr ptr = m_cp->find_target_node(name, db);
765     if (ptr)
766     {
767         ptr = ptr->children;
768         for (; ptr; ptr = ptr->next)
769             if (ptr->type == XML_ELEMENT_NODE &&
770                 !strcmp((const char *) ptr->name, "explain"))
771             {
772                 xmlNodePtr ptr1 = ptr->children;
773                 if (db)
774                 {
775                     for (; ptr1; ptr1 = ptr1->next)
776                         if (ptr1->type == XML_ELEMENT_NODE &&
777                             !strcmp((const char *) ptr1->name, "serverInfo"))
778                             break;
779                     if (!ptr1)
780                         continue;
781                     for (ptr1 = ptr1->children; ptr1; ptr1 = ptr1->next)
782                         if (ptr1->type == XML_ELEMENT_NODE &&
783                             !strcmp((const char *) ptr1->name, "database"))
784                             break;
785                     
786                     if (!ptr1)
787                         continue;
788                     for (ptr1 = ptr1->children; ptr1; ptr1 = ptr1->next)
789                         if (ptr1->type == XML_TEXT_NODE &&
790                             ptr1->content &&
791                             !strcmp((const char *) ptr1->content, db))
792                             break;
793                     if (!ptr1)
794                         continue;
795                 }
796                 xmlNodePtr ptr2 = xmlCopyNode(ptr, 1);
797
798                 xmlDocPtr doc = xmlNewDoc((const xmlChar *) "1.0");
799                 
800                 xmlDocSetRootElement(doc, ptr2);
801                 
802                 xmlChar *buf_out;
803                 xmlDocDumpMemory(doc, &buf_out, len);
804                 char *content = (char*) odr_malloc(odr, *len);
805                 memcpy(content, buf_out, *len);
806                 
807                 xmlFree(buf_out);
808                 xmlFreeDoc(doc);
809                 return content;
810             }
811     }
812 #endif
813     return 0;
814 }
815
816 void Yaz_ProxyConfig::get_target_info(const char *name,
817                                       const char **url,
818                                       int *limit_bw,
819                                       int *limit_pdu,
820                                       int *limit_req,
821                                       int *target_idletime,
822                                       int *client_idletime,
823                                       int *max_clients,
824                                       int *keepalive_limit_bw,
825                                       int *keepalive_limit_pdu,
826                                       int *pre_init,
827                                       const char **cql2rpn)
828 {
829 #if HAVE_XSLT
830     xmlNodePtr ptr;
831     if (!m_cp->m_proxyPtr)
832     {
833         url[0] = name;
834         url[1] = 0;
835         return;
836     }
837     url[0] = 0;
838     for (ptr = m_cp->m_proxyPtr->children; ptr; ptr = ptr->next)
839     {
840         if (ptr->type == XML_ELEMENT_NODE &&
841             !strcmp((const char *) ptr->name, "max-clients"))
842         {
843             const char *t = m_cp->get_text(ptr);
844             if (t)
845             {
846                 *max_clients = atoi(t);
847                 if (*max_clients  < 1)
848                     *max_clients = 1;
849             }
850         }
851     }
852     ptr = m_cp->find_target_node(name, 0);
853     if (ptr)
854     {
855         if (name)
856         {
857             url[0] = name;
858             url[1] = 0;
859         }
860         m_cp->return_target_info(ptr, url, limit_bw, limit_pdu, limit_req,
861                                  target_idletime, client_idletime,
862                                  keepalive_limit_bw, keepalive_limit_pdu,
863                                  pre_init, cql2rpn);
864     }
865 #else
866     *url = name;
867     return;
868 #endif
869 }
870
871