1 /* $Id: xmlutil.cpp,v 1.3 2006-01-11 13:13:49 adam Exp $
2 Copyright (c) 2005, Index Data.
9 std::string yp2::xml::get_text(const xmlNode *ptr)
12 for (ptr = ptr->children; ptr; ptr = ptr->next)
13 if (ptr->type == XML_TEXT_NODE)
14 c += std::string((const char *) (ptr->content));
19 bool yp2::xml::is_element(const xmlNode *ptr,
20 const std::string &ns,
21 const std::string &name)
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))
30 bool yp2::xml::is_element_yp2(const xmlNode *ptr,
31 const std::string &name)
33 return yp2::xml::is_element(ptr, "http://indexdata.dk/yp2/config/1", name);
37 bool yp2::xml::check_element_yp2(const xmlNode *ptr,
38 const std::string &name)
40 if (!yp2::xml::is_element_yp2(ptr, name))
41 throw yp2::XMLError("Expected element name " + name);
45 std::string yp2::xml::get_route(const xmlNode *node)
47 std::string route_value;
50 const struct _xmlAttr *attr;
51 for (attr = node->properties; attr; attr = attr->next)
53 std::string name = std::string((const char *) attr->name);
56 if (attr->children && attr->children->type == XML_TEXT_NODE)
57 value = std::string((const char *)attr->children->content);
62 throw XMLError("Only attribute route allowed"
63 " in " + std::string((const char *)node->name)
64 + " element. Got " + std::string(name));
71 const xmlNode* yp2::xml::jump_to_children(const xmlNode* node,
74 node = node->children;
75 for (; node && node->type != xml_node_type; node = node->next)
80 const xmlNode* yp2::xml::jump_to_next(const xmlNode* node,
84 for (; node && node->type != xml_node_type; node = node->next)
89 const xmlNode* yp2::xml::jump_to(const xmlNode* node,
92 for (; node && node->type != xml_node_type; node = node->next)
101 * indent-tabs-mode: nil
102 * c-file-style: "stroustrup"
104 * vim: shiftwidth=4 tabstop=8 expandtab