forked from parsley72/tinyxpath2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxpath_static.cpp
136 lines (110 loc) · 5.19 KB
/
xpath_static.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
/*
www.sourceforge.net/projects/tinyxpath
Copyright (c) 2002-2004 Yves Berquin ([email protected])
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any
damages arising from the use of this software.
Permission is granted to anyone to use this software for any
purpose, including commercial applications, and to alter it and
redistribute it freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must
not claim that you wrote the original software. If you use this
software in a product, an acknowledgment in the product documentation
would be appreciated but is not required.
2. Altered source versions must be plainly marked as such, and
must not be misrepresented as being the original software.
3. This notice may not be removed or altered from any source
distribution.
*/
/**
\file xpath_static.cpp
\author Yves Berquin
*/
#include "xpath_static.h"
#include <string>
using namespace std;
using namespace tinyxml2;
namespace TinyXPath {
/// Static function to compute an integer XPath expression, without an error check
int i_xpath_int(const XMLNode* XNp_source_tree, const char* cp_xpath_expr) {
xpath_processor xp_proc(XNp_source_tree, cp_xpath_expr);
return xp_proc.i_compute_xpath();
}
/// Static function to compute a double XPath expression, without an error check
double d_xpath_double(const XMLNode* XNp_source_tree, const char* cp_xpath_expr) {
xpath_processor xp_proc(XNp_source_tree, cp_xpath_expr);
return xp_proc.d_compute_xpath();
}
/// Static function to compute a bool XPath expression, without an error check
bool o_xpath_bool(const XMLNode* XNp_source_tree, const char* cp_xpath_expr) {
xpath_processor xp_proc(XNp_source_tree, cp_xpath_expr);
return xp_proc.o_compute_xpath();
}
/// Static function to compute a string XPath expression, without an error check
string S_xpath_string(const XMLNode* XNp_source_tree, const char* cp_xpath_expr) {
xpath_processor xp_proc(XNp_source_tree, cp_xpath_expr);
return xp_proc.S_compute_xpath();
}
/// Static function to compute a node XPath expression, without an error check
const XMLNode* XNp_xpath_node(const XMLNode* XNp_source_tree, const char* cp_xpath_expr) {
unsigned u_nb;
xpath_processor xp_proc(XNp_source_tree, cp_xpath_expr);
u_nb = xp_proc.u_compute_xpath_node_set();
if (!u_nb)
return nullptr;
return xp_proc.XNp_get_xpath_node(0);
}
/// Static function to compute an attribute XPath expression, without an error check
const XMLAttribute* XAp_xpath_attribute(const XMLNode* XNp_source_tree, const char* cp_xpath_expr) {
unsigned u_nb;
xpath_processor xp_proc(XNp_source_tree, cp_xpath_expr);
u_nb = xp_proc.u_compute_xpath_node_set();
if (!u_nb)
return nullptr;
return xp_proc.XAp_get_xpath_attribute(0);
}
/// Static function to compute an integer XPath expression, with an error check
bool o_xpath_int(const XMLNode* XNp_source_tree, const char* cp_xpath_expr, int& i_res) {
xpath_processor xp_proc(XNp_source_tree, cp_xpath_expr);
i_res = xp_proc.i_compute_xpath();
return xp_proc._e_error == TinyXPath::xpath_processor::e_no_error;
}
/// Static function to compute a double XPath expression, without an error check
bool o_xpath_double(const XMLNode* XNp_source_tree, const char* cp_xpath_expr, double& d_res) {
xpath_processor xp_proc(XNp_source_tree, cp_xpath_expr);
d_res = xp_proc.d_compute_xpath();
return xp_proc._e_error == TinyXPath::xpath_processor::e_no_error;
}
/// Static function to compute a bool XPath expression, without an error check
bool o_xpath_bool(const XMLNode* XNp_source_tree, const char* cp_xpath_expr, bool& o_res) {
xpath_processor xp_proc(XNp_source_tree, cp_xpath_expr);
o_res = xp_proc.o_compute_xpath();
return xp_proc._e_error == TinyXPath::xpath_processor::e_no_error;
}
/// Static function to compute a string XPath expression, without an error check
bool o_xpath_string(const XMLNode* XNp_source_tree, const char* cp_xpath_expr, string& S_res) {
xpath_processor xp_proc(XNp_source_tree, cp_xpath_expr);
S_res = xp_proc.S_compute_xpath();
return xp_proc._e_error == TinyXPath::xpath_processor::e_no_error;
}
/// Static function to compute a node XPath expression, without an error check
bool o_xpath_node(const XMLNode* XNp_source_tree, const char* cp_xpath_expr, const XMLNode*& XNp_node) {
unsigned u_nb;
xpath_processor xp_proc(XNp_source_tree, cp_xpath_expr);
u_nb = xp_proc.u_compute_xpath_node_set();
if (!u_nb)
return false;
XNp_node = xp_proc.XNp_get_xpath_node(0);
return xp_proc._e_error == TinyXPath::xpath_processor::e_no_error;
}
/// Static function to compute an attribute XPath expression, without an error check
bool o_xpath_attribute(const XMLNode* XNp_source_tree, const char* cp_xpath_expr, const XMLAttribute*& XAp_attrib) {
unsigned u_nb;
xpath_processor xp_proc(XNp_source_tree, cp_xpath_expr);
u_nb = xp_proc.u_compute_xpath_node_set();
if (!u_nb)
return false;
XAp_attrib = xp_proc.XAp_get_xpath_attribute(0);
return xp_proc._e_error == TinyXPath::xpath_processor::e_no_error;
}
} // namespace TinyXPath