Remove HAVE_.. from public headers (no Public header must depend on
[yazproxy-moved-to-github.git] / src / yaz-proxy-config.cpp
1 /* $Id: yaz-proxy-config.cpp,v 1.4 2004-04-22 07:46:21 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 {
451     if (stylesheet)
452     {
453         xfree (*stylesheet);
454         *stylesheet = 0;
455     }
456     if (schema)
457     {
458         xfree (*schema);
459         *schema = 0;
460     }
461 #if HAVE_XSLT
462     int syntax_has_matched = 0;
463     xmlNodePtr ptr;
464     
465     ptr = m_cp->find_target_node(name, 0);
466     if (!ptr)
467         return 0;
468     for(ptr = ptr->children; ptr; ptr = ptr->next)
469     {
470         if (ptr->type == XML_ELEMENT_NODE &&
471             !strcmp((const char *) ptr->name, "syntax"))
472         {
473             int match = 0;  // if we match record syntax
474             const char *match_type = 0;
475             const char *match_error = 0;
476             const char *match_marcxml = 0;
477             const char *match_stylesheet = 0;
478             const char *match_identifier = 0;
479             struct _xmlAttr *attr;
480             for (attr = ptr->properties; attr; attr = attr->next)
481             {
482                 if (!strcmp((const char *) attr->name, "type") &&
483                     attr->children && attr->children->type == XML_TEXT_NODE)
484                     match_type = (const char *) attr->children->content;
485                 if (!strcmp((const char *) attr->name, "error") &&
486                     attr->children && attr->children->type == XML_TEXT_NODE)
487                     match_error = (const char *) attr->children->content;
488                 if (!strcmp((const char *) attr->name, "marcxml") &&
489                     attr->children && attr->children->type == XML_TEXT_NODE)
490                     match_marcxml = (const char *) attr->children->content;
491                 if (!strcmp((const char *) attr->name, "stylesheet") &&
492                     attr->children && attr->children->type == XML_TEXT_NODE)
493                     match_stylesheet = (const char *) attr->children->content;
494                 if (!strcmp((const char *) attr->name, "identifier") &&
495                     attr->children && attr->children->type == XML_TEXT_NODE)
496                     match_identifier = (const char *) attr->children->content;
497             }
498             if (match_type)
499             {
500                 if (!strcmp(match_type, "*"))
501                     match = 1;
502                 else if (!strcmp(match_type, "none"))
503                 {
504                     if (syntax == 0)
505                         match = 1;
506                 }
507                 else if (syntax)
508                 {
509                     int match_oid[OID_SIZE];
510                     oid_name_to_oid(CLASS_RECSYN, match_type, match_oid);
511                     if (oid_oidcmp(match_oid, syntax) == 0)
512                         match = 1;
513                 }
514             }
515             if (match)
516             {
517                 if (!match_error)
518                     syntax_has_matched = 1;
519                 match = m_cp->check_schema(ptr->children, comp,
520                                            match_identifier);
521             }
522             if (match)
523             {
524                 if (stylesheet && match_stylesheet)
525                 {
526                     xfree(*stylesheet);
527                     *stylesheet = xstrdup(match_stylesheet);
528                 }
529                 if (schema && match_identifier)
530                 {
531                     xfree(*schema);
532                     *schema = xstrdup(match_identifier);
533                 }
534                 if (match_marcxml)
535                 {
536                     return -1;
537                 }
538                 if (match_error)
539                 {
540                     if (syntax_has_matched)  // if syntax OK, bad schema/ESN
541                         return 25;
542                     if (syntax)
543                     {
544                         char dotoid_str[100];
545                         oid_to_dotstring(syntax, dotoid_str);
546                         *addinfo = odr_strdup(odr, dotoid_str);
547                     }
548                     return atoi(match_error);
549                 }
550                 return 0;
551             }
552         }
553     }
554 #endif
555     return 0;
556 }
557
558 #if HAVE_XSLT
559 xmlNodePtr Yaz_ProxyConfigP::find_target_db(xmlNodePtr ptr, const char *db)
560 {
561     xmlNodePtr dptr;
562     if (!db)
563         return ptr;
564     if (!ptr)
565         return 0;
566     for (dptr = ptr->children; dptr; dptr = dptr->next)
567         if (dptr->type == XML_ELEMENT_NODE &&
568             !strcmp((const char *) dptr->name, "database"))
569         {
570             struct _xmlAttr *attr;
571             for (attr = dptr->properties; attr; attr = attr->next)
572                 if (!strcmp((const char *) attr->name, "name"))
573                 {
574                     if (attr->children
575                         && attr->children->type==XML_TEXT_NODE
576                         && attr->children->content 
577                         && (!strcmp((const char *) attr->children->content, db)
578                             || !strcmp((const char *) attr->children->content,
579                                        "*")))
580                         return dptr;
581                 }
582         }
583     return ptr;
584 }
585     
586 xmlNodePtr Yaz_ProxyConfigP::find_target_node(const char *name, const char *db)
587 {
588     xmlNodePtr ptr;
589     if (!m_proxyPtr)
590         return 0;
591     for (ptr = m_proxyPtr->children; ptr; ptr = ptr->next)
592     {
593         if (ptr->type == XML_ELEMENT_NODE &&
594             !strcmp((const char *) ptr->name, "target"))
595         {
596             // default one ? 
597             if (!name)
598             {
599                 // <target default="1"> ?
600                 struct _xmlAttr *attr;
601                 for (attr = ptr->properties; attr; attr = attr->next)
602                     if (!strcmp((const char *) attr->name, "default") &&
603                         attr->children && attr->children->type == XML_TEXT_NODE)
604                     {
605                         xmlChar *t = attr->children->content;
606                         if (!t || *t == '1')
607                         {
608                             return find_target_db(ptr, db);
609                         }
610                     }
611             }
612             else
613             {
614                 // <target name="name"> ?
615                 struct _xmlAttr *attr;
616                 for (attr = ptr->properties; attr; attr = attr->next)
617                     if (!strcmp((const char *) attr->name, "name"))
618                     {
619                         if (attr->children
620                             && attr->children->type==XML_TEXT_NODE
621                             && attr->children->content 
622                             && (!strcmp((const char *) attr->children->content,
623                                         name)
624                                 || !strcmp((const char *) attr->children->content,
625                                            "*")))
626                         {
627                             return find_target_db(ptr, db);
628                         }
629                     }
630             }
631         }
632     }
633     return 0;
634 }
635 #endif
636
637 int Yaz_ProxyConfig::get_target_no(int no,
638                                    const char **name,
639                                    const char **url,
640                                    int *limit_bw,
641                                    int *limit_pdu,
642                                    int *limit_req,
643                                    int *target_idletime,
644                                    int *client_idletime,
645                                    int *max_clients,
646                                    int *keepalive_limit_bw,
647                                    int *keepalive_limit_pdu,
648                                    int *pre_init,
649                                    const char **cql2rpn)
650 {
651 #if HAVE_XSLT
652     xmlNodePtr ptr;
653     if (!m_cp->m_proxyPtr)
654         return 0;
655     int i = 0;
656     for (ptr = m_cp->m_proxyPtr->children; ptr; ptr = ptr->next)
657         if (ptr->type == XML_ELEMENT_NODE &&
658             !strcmp((const char *) ptr->name, "target"))
659         {
660             if (i == no)
661             {
662                 struct _xmlAttr *attr;
663                 for (attr = ptr->properties; attr; attr = attr->next)
664                     if (!strcmp((const char *) attr->name, "name"))
665                     {
666                         if (attr->children
667                             && attr->children->type==XML_TEXT_NODE
668                             && attr->children->content)
669                             *name = (const char *) attr->children->content;
670                     }
671                 m_cp->return_target_info(
672                     ptr, url,
673                     limit_bw, limit_pdu, limit_req,
674                     target_idletime, client_idletime,
675                     keepalive_limit_bw, keepalive_limit_pdu,
676                     pre_init, cql2rpn);
677                 return 1;
678             }
679             i++;
680         }
681 #endif
682     return 0;
683 }
684
685 int Yaz_ProxyConfigP::mycmp(const char *hay, const char *item, size_t len)
686 {
687     if (len == strlen(item) && memcmp(hay, item, len) == 0)
688         return 1;
689     return 0;
690 }
691
692 void Yaz_ProxyConfig::get_generic_info(int *log_mask,
693                                        int *max_clients)
694 {
695 #if HAVE_XSLT
696     xmlNodePtr ptr;
697     if (!m_cp->m_proxyPtr)
698         return;
699     for (ptr = m_cp->m_proxyPtr->children; ptr; ptr = ptr->next)
700     {
701         if (ptr->type == XML_ELEMENT_NODE 
702             && !strcmp((const char *) ptr->name, "log"))
703         {
704             const char *v = m_cp->get_text(ptr);
705             *log_mask = 0;
706             while (v && *v)
707             {
708                 const char *cp = v;
709                 while (*cp && *cp != ',' && !isspace(*cp))
710                     cp++;
711                 size_t len = cp - v;
712                 if (m_cp->mycmp(v, "client-apdu", len))
713                     *log_mask |= PROXY_LOG_APDU_CLIENT;
714                 if (m_cp->mycmp(v, "server-apdu", len))
715                     *log_mask |= PROXY_LOG_APDU_SERVER;
716                 if (m_cp->mycmp(v, "client-requests", len))
717                     *log_mask |= PROXY_LOG_REQ_CLIENT;
718                 if (m_cp->mycmp(v, "server-requests", len))
719                     *log_mask |= PROXY_LOG_REQ_SERVER;
720                 if (isdigit(*v))
721                     *log_mask |= atoi(v);
722                 if (*cp == ',')
723                     cp++;
724                 while (*cp && isspace(*cp))
725                     cp++;
726                 v = cp;
727             }
728         }
729         if (ptr->type == XML_ELEMENT_NODE &&
730             !strcmp((const char *) ptr->name, "max-clients"))
731         {
732             const char *t = m_cp->get_text(ptr);
733             if (t)
734             {
735                 *max_clients = atoi(t);
736                 if (*max_clients  < 1)
737                     *max_clients = 1;
738             }
739         }
740     }
741 #endif
742 }
743
744 char *Yaz_ProxyConfig::get_explain(ODR odr, const char *name, const char *db,
745                                    int *len)
746 {
747 #if HAVE_XSLT
748     xmlNodePtr ptr = m_cp->find_target_node(name, db);
749     if (ptr)
750     {
751         ptr = ptr->children;
752         for (; ptr; ptr = ptr->next)
753             if (ptr->type == XML_ELEMENT_NODE &&
754                 !strcmp((const char *) ptr->name, "explain"))
755             {
756                 xmlNodePtr ptr1 = ptr->children;
757                 if (db)
758                 {
759                     for (; ptr1; ptr1 = ptr1->next)
760                         if (ptr1->type == XML_ELEMENT_NODE &&
761                             !strcmp((const char *) ptr1->name, "serverInfo"))
762                             break;
763                     if (!ptr1)
764                         continue;
765                     for (ptr1 = ptr1->children; ptr1; ptr1 = ptr1->next)
766                         if (ptr1->type == XML_ELEMENT_NODE &&
767                             !strcmp((const char *) ptr1->name, "database"))
768                             break;
769                     
770                     if (!ptr1)
771                         continue;
772                     for (ptr1 = ptr1->children; ptr1; ptr1 = ptr1->next)
773                         if (ptr1->type == XML_TEXT_NODE &&
774                             ptr1->content &&
775                             !strcmp((const char *) ptr1->content, db))
776                             break;
777                     if (!ptr1)
778                         continue;
779                 }
780                 xmlNodePtr ptr2 = xmlCopyNode(ptr, 1);
781
782                 xmlDocPtr doc = xmlNewDoc((const xmlChar *) "1.0");
783                 
784                 xmlDocSetRootElement(doc, ptr2);
785                 
786                 xmlChar *buf_out;
787                 xmlDocDumpMemory(doc, &buf_out, len);
788                 char *content = (char*) odr_malloc(odr, *len);
789                 memcpy(content, buf_out, *len);
790                 
791                 xmlFree(buf_out);
792                 xmlFreeDoc(doc);
793                 return content;
794             }
795     }
796 #endif
797     return 0;
798 }
799
800 void Yaz_ProxyConfig::get_target_info(const char *name,
801                                       const char **url,
802                                       int *limit_bw,
803                                       int *limit_pdu,
804                                       int *limit_req,
805                                       int *target_idletime,
806                                       int *client_idletime,
807                                       int *max_clients,
808                                       int *keepalive_limit_bw,
809                                       int *keepalive_limit_pdu,
810                                       int *pre_init,
811                                       const char **cql2rpn)
812 {
813 #if HAVE_XSLT
814     xmlNodePtr ptr;
815     if (!m_cp->m_proxyPtr)
816     {
817         url[0] = name;
818         url[1] = 0;
819         return;
820     }
821     url[0] = 0;
822     for (ptr = m_cp->m_proxyPtr->children; ptr; ptr = ptr->next)
823     {
824         if (ptr->type == XML_ELEMENT_NODE &&
825             !strcmp((const char *) ptr->name, "max-clients"))
826         {
827             const char *t = m_cp->get_text(ptr);
828             if (t)
829             {
830                 *max_clients = atoi(t);
831                 if (*max_clients  < 1)
832                     *max_clients = 1;
833             }
834         }
835     }
836     ptr = m_cp->find_target_node(name, 0);
837     if (ptr)
838     {
839         if (name)
840         {
841             url[0] = name;
842             url[1] = 0;
843         }
844         m_cp->return_target_info(ptr, url, limit_bw, limit_pdu, limit_req,
845                                  target_idletime, client_idletime,
846                                  keepalive_limit_bw, keepalive_limit_pdu,
847                                  pre_init, cql2rpn);
848     }
849 #else
850     *url = name;
851     return;
852 #endif
853 }
854
855