Rename from yp2 to metaproxy. The namespace for all definitions
[metaproxy-moved-to-github.git] / src / xmlutil.cpp
1 /* $Id: xmlutil.cpp,v 1.5 2006-03-16 10:40:59 adam Exp $
2    Copyright (c) 2005-2006, Index Data.
3
4 %LICENSE%
5  */
6
7 #include "xmlutil.hpp"
8
9 namespace mp = metaproxy_1;
10
11 std::string mp::xml::get_text(const xmlNode *ptr)
12 {
13     std::string c;
14     for (ptr = ptr->children; ptr; ptr = ptr->next)
15         if (ptr->type == XML_TEXT_NODE)
16             c += std::string((const char *) (ptr->content));
17     return c;
18 }
19
20
21 bool mp::xml::is_element(const xmlNode *ptr, 
22                           const std::string &ns,
23                           const std::string &name)
24 {
25     if (ptr && ptr->type == XML_ELEMENT_NODE && ptr->ns && ptr->ns->href 
26         && !xmlStrcmp(BAD_CAST ns.c_str(), ptr->ns->href)
27         && !xmlStrcmp(BAD_CAST name.c_str(), ptr->name))
28         return true;
29     return false;
30 }
31
32 bool mp::xml::is_element_yp2(const xmlNode *ptr, 
33                               const std::string &name)
34 {
35     return mp::xml::is_element(ptr, "http://indexdata.dk/yp2/config/1", name);
36 }
37
38
39 bool mp::xml::check_element_yp2(const xmlNode *ptr, 
40                                  const std::string &name)
41 {
42     if (!mp::xml::is_element_yp2(ptr, name))
43         throw mp::XMLError("Expected element name " + name);
44     return true;
45 }
46
47 std::string mp::xml::get_route(const xmlNode *node)
48 {
49     std::string route_value;
50     if (node)
51     {
52         const struct _xmlAttr *attr;
53         for (attr = node->properties; attr; attr = attr->next)
54         {
55             std::string name = std::string((const char *) attr->name);
56             std::string value;
57             
58             if (attr->children && attr->children->type == XML_TEXT_NODE)
59                 value = std::string((const char *)attr->children->content);
60             
61             if (name == "route")
62                 route_value = value;
63             else
64                 throw XMLError("Only attribute route allowed"
65                                " in " + std::string((const char *)node->name)
66                                + " element. Got " + std::string(name));
67         }
68     }
69     return route_value;
70 }
71
72
73 const xmlNode* mp::xml::jump_to_children(const xmlNode* node,
74                                           int xml_node_type)
75 {
76     node = node->children;
77     for (; node && node->type != xml_node_type; node = node->next)
78         ;
79     return node;
80 }
81
82 const xmlNode* mp::xml::jump_to_next(const xmlNode* node,
83                                       int xml_node_type)
84 {
85     node = node->next;
86     for (; node && node->type != xml_node_type; node = node->next)
87         ;
88     return node;
89 }
90
91 const xmlNode* mp::xml::jump_to(const xmlNode* node,
92                                  int xml_node_type)
93 {
94     for (; node && node->type != xml_node_type; node = node->next)
95         ;
96     return node;
97 }
98
99 void mp::xml::check_empty(const xmlNode *node)
100 {
101     if (node)
102     {
103         const xmlNode *n;
104         for (n = node->children; n; n = n->next)
105             if (n->type == XML_ELEMENT_NODE)
106                 throw mp::XMLError("No child elements allowed inside element "
107                                     + std::string((const char *) node->name));
108     }
109 }
110
111 /*
112  * Local variables:
113  * c-basic-offset: 4
114  * indent-tabs-mode: nil
115  * c-file-style: "stroustrup"
116  * End:
117  * vim: shiftwidth=4 tabstop=8 expandtab
118  */