1 /* $Id: xmlutil.cpp,v 1.9 2006-06-21 09:16:54 adam Exp $
2 Copyright (c) 2005-2006, Index Data.
4 See the LICENSE file for details
10 namespace mp = metaproxy_1;
11 // Doxygen doesn't like mp::xml, so we use this instead
12 namespace mp_xml = metaproxy_1::xml;
14 std::string mp_xml::get_text(const xmlNode *ptr)
17 for (ptr = ptr->children; ptr; ptr = ptr->next)
18 if (ptr->type == XML_TEXT_NODE)
19 c += std::string((const char *) (ptr->content));
23 bool mp_xml::get_bool(const xmlNode *ptr, bool default_value)
25 if (ptr && ptr->type == XML_TEXT_NODE && ptr->content)
27 if (!strcmp((const char *) ptr->content, "true"))
35 int mp_xml::get_int(const xmlNode *ptr, int default_value)
37 if (ptr && ptr->type == XML_TEXT_NODE && ptr->content)
39 return atoi((const char *) ptr->content);
44 bool mp_xml::is_element(const xmlNode *ptr,
45 const std::string &ns,
46 const std::string &name)
48 if (ptr && ptr->type == XML_ELEMENT_NODE && ptr->ns && ptr->ns->href
49 && !xmlStrcmp(BAD_CAST ns.c_str(), ptr->ns->href)
50 && !xmlStrcmp(BAD_CAST name.c_str(), ptr->name))
55 bool mp_xml::is_element_yp2(const xmlNode *ptr,
56 const std::string &name)
58 return mp::xml::is_element(ptr, "http://indexdata.dk/yp2/config/1", name);
62 bool mp_xml::check_element_yp2(const xmlNode *ptr,
63 const std::string &name)
65 if (!mp::xml::is_element_yp2(ptr, name))
66 throw mp::XMLError("Expected element name " + name);
70 std::string mp_xml::get_route(const xmlNode *node)
72 std::string route_value;
75 const struct _xmlAttr *attr;
76 for (attr = node->properties; attr; attr = attr->next)
78 std::string name = std::string((const char *) attr->name);
81 if (attr->children && attr->children->type == XML_TEXT_NODE)
82 value = std::string((const char *)attr->children->content);
87 throw XMLError("Only attribute route allowed"
88 " in " + std::string((const char *)node->name)
89 + " element. Got " + std::string(name));
96 const xmlNode* mp_xml::jump_to_children(const xmlNode* node,
99 node = node->children;
100 for (; node && node->type != xml_node_type; node = node->next)
105 const xmlNode* mp_xml::jump_to_next(const xmlNode* node,
109 for (; node && node->type != xml_node_type; node = node->next)
114 const xmlNode* mp_xml::jump_to(const xmlNode* node,
117 for (; node && node->type != xml_node_type; node = node->next)
122 void mp_xml::check_empty(const xmlNode *node)
127 for (n = node->children; n; n = n->next)
128 if (n->type == XML_ELEMENT_NODE)
129 throw mp::XMLError("No child elements allowed inside element "
130 + std::string((const char *) node->name));
137 * indent-tabs-mode: nil
138 * c-file-style: "stroustrup"
140 * vim: shiftwidth=4 tabstop=8 expandtab