Move methods jump_to_... and check_element_yp2 to xmlutil.
[metaproxy-moved-to-github.git] / src / xmlutil.hpp
1 /* $Id: xmlutil.hpp,v 1.3 2006-01-11 13:13:49 adam Exp $
2    Copyright (c) 2005, Index Data.
3
4 %LICENSE%
5  */
6
7 #ifndef XML_UTIL_HPP
8 #define XML_UTIL_HPP
9
10 #include <string>
11 #include <stdexcept>
12 #include <libxml/tree.h>
13
14 namespace yp2 {
15     namespace xml {
16         std::string get_text(const xmlNode *ptr);
17         bool is_element(const xmlNode *ptr, 
18                         const std::string &ns,
19                         const std::string &name);
20         bool is_element_yp2(const xmlNode *ptr, const std::string &name);
21         bool check_element_yp2(const xmlNode *ptr, 
22                                const std::string &name);
23         std::string get_route(const xmlNode *node);
24
25         const xmlNode* jump_to(const xmlNode* node, int node_type);
26
27         const xmlNode* jump_to_next(const xmlNode* node, int node_type);
28         
29         const xmlNode* jump_to_children(const xmlNode* node, int node_type);
30     }
31     class XMLError : public std::runtime_error {
32     public:
33         XMLError(const std::string msg) :
34             std::runtime_error("XMLError : " + msg) {} ;
35     };
36 }
37
38 #endif
39 /*
40  * Local variables:
41  * c-basic-offset: 4
42  * indent-tabs-mode: nil
43  * c-file-style: "stroustrup"
44  * End:
45  * vim: shiftwidth=4 tabstop=8 expandtab
46  */