1 /* $Id: xmlutil.cpp,v 1.6 2006-06-09 14:12:13 adam Exp $
2 Copyright (c) 2005-2006, Index Data.
9 namespace mp = metaproxy_1;
10 // Doxygen doesn't like mp::xml, so we use this instead
11 namespace mp_xml = metaproxy_1::xml;
13 std::string mp_xml::get_text(const xmlNode *ptr)
16 for (ptr = ptr->children; ptr; ptr = ptr->next)
17 if (ptr->type == XML_TEXT_NODE)
18 c += std::string((const char *) (ptr->content));
23 bool mp_xml::is_element(const xmlNode *ptr,
24 const std::string &ns,
25 const std::string &name)
27 if (ptr && ptr->type == XML_ELEMENT_NODE && ptr->ns && ptr->ns->href
28 && !xmlStrcmp(BAD_CAST ns.c_str(), ptr->ns->href)
29 && !xmlStrcmp(BAD_CAST name.c_str(), ptr->name))
34 bool mp_xml::is_element_yp2(const xmlNode *ptr,
35 const std::string &name)
37 return mp::xml::is_element(ptr, "http://indexdata.dk/yp2/config/1", name);
41 bool mp_xml::check_element_yp2(const xmlNode *ptr,
42 const std::string &name)
44 if (!mp::xml::is_element_yp2(ptr, name))
45 throw mp::XMLError("Expected element name " + name);
49 std::string mp_xml::get_route(const xmlNode *node)
51 std::string route_value;
54 const struct _xmlAttr *attr;
55 for (attr = node->properties; attr; attr = attr->next)
57 std::string name = std::string((const char *) attr->name);
60 if (attr->children && attr->children->type == XML_TEXT_NODE)
61 value = std::string((const char *)attr->children->content);
66 throw XMLError("Only attribute route allowed"
67 " in " + std::string((const char *)node->name)
68 + " element. Got " + std::string(name));
75 const xmlNode* mp_xml::jump_to_children(const xmlNode* node,
78 node = node->children;
79 for (; node && node->type != xml_node_type; node = node->next)
84 const xmlNode* mp_xml::jump_to_next(const xmlNode* node,
88 for (; node && node->type != xml_node_type; node = node->next)
93 const xmlNode* mp_xml::jump_to(const xmlNode* node,
96 for (; node && node->type != xml_node_type; node = node->next)
101 void mp_xml::check_empty(const xmlNode *node)
106 for (n = node->children; n; n = n->next)
107 if (n->type == XML_ELEMENT_NODE)
108 throw mp::XMLError("No child elements allowed inside element "
109 + std::string((const char *) node->name));
116 * indent-tabs-mode: nil
117 * c-file-style: "stroustrup"
119 * vim: shiftwidth=4 tabstop=8 expandtab