Named routes for filter virt_db. Example in etc/config2.xml
[metaproxy-moved-to-github.git] / src / xmlutil.cpp
1 /* $Id: xmlutil.cpp,v 1.2 2006-01-11 11:51:50 adam Exp $
2    Copyright (c) 2005, Index Data.
3
4 %LICENSE%
5  */
6
7 #include "xmlutil.hpp"
8
9 std::string yp2::xml::get_text(const xmlNode *ptr)
10 {
11     std::string c;
12     for (ptr = ptr->children; ptr; ptr = ptr->next)
13         if (ptr->type == XML_TEXT_NODE)
14             c += std::string((const char *) (ptr->content));
15     return c;
16 }
17
18
19 bool yp2::xml::is_element(const xmlNode *ptr, 
20                           const std::string &ns,
21                           const std::string &name)
22 {
23     if (ptr && ptr->type == XML_ELEMENT_NODE && ptr->ns && ptr->ns->href 
24         && !xmlStrcmp(BAD_CAST ns.c_str(), ptr->ns->href)
25         && !xmlStrcmp(BAD_CAST name.c_str(), ptr->name))
26         return true;
27     return false;
28 }
29
30 bool yp2::xml::is_element_yp2(const xmlNode *ptr, 
31                               const std::string &name)
32 {
33     return yp2::xml::is_element(ptr, "http://indexdata.dk/yp2/config/1", name);
34 }
35
36 std::string yp2::xml::get_route(const xmlNode *node)
37 {
38     std::string route_value;
39     if (node)
40     {
41         const struct _xmlAttr *attr;
42         for (attr = node->properties; attr; attr = attr->next)
43         {
44             std::string name = std::string((const char *) attr->name);
45             std::string value;
46             
47             if (attr->children && attr->children->type == XML_TEXT_NODE)
48                 value = std::string((const char *)attr->children->content);
49             
50             if (name == "route")
51                 route_value = value;
52             else
53                 throw XMLError("Only attribute route allowed"
54                                " in " + std::string((const char *)node->name)
55                                + " element. Got " + std::string(name));
56         }
57     }
58     return route_value;
59 }
60
61 /*
62  * Local variables:
63  * c-basic-offset: 4
64  * indent-tabs-mode: nil
65  * c-file-style: "stroustrup"
66  * End:
67  * vim: shiftwidth=4 tabstop=8 expandtab
68  */