Add another conversion.
[libcxml.git] / src / cxml.h
1 /*
2     Copyright (C) 2012-2019 Carl Hetherington <cth@carlh.net>
3
4     This file is part of libcxml.
5
6     libcxml is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     libcxml is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with libcxml.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 #ifndef LIBCXML_CXML_H
22 #define LIBCXML_CXML_H
23
24 #include <boost/shared_ptr.hpp>
25 #include <boost/optional.hpp>
26 #include <boost/filesystem.hpp>
27 #include <boost/algorithm/string/erase.hpp>
28 #include <stdint.h>
29 #include <string>
30 #include <list>
31
32 /* Hack for OS X compile failure; see https://bugs.launchpad.net/hugin/+bug/910160 */
33 #ifdef check
34 #undef check
35 #endif
36
37 namespace xmlpp {
38         class Node;
39         class DomParser;
40 }
41
42 namespace cxml {
43
44 /** @brief An error */
45 class Error : public std::exception
46 {
47 public:
48         /** Construct an Error exception.
49          *  @param message Error message.
50          */
51         Error (std::string const & message) : _message (message) {}
52
53         /** Error destructor */
54         ~Error () throw () {}
55
56         /** @return error message.  Caller must not free the returned
57          *  value.
58          */
59         char const * what () const throw () {
60                 return _message.c_str ();
61         }
62
63 private:
64         /** error message */
65         std::string _message;
66 };
67
68 /** A sort-of version of boost::lexical_cast that does uses the "C"
69  *  locale (i.e. no thousands separators and a . for the decimal separator).
70  */
71 template <typename P, typename Q>
72 P
73 raw_convert (Q v)
74 {
75         /* We can't write a generic version of raw_convert; all required
76            versions must be specialised.
77         */
78         BOOST_STATIC_ASSERT (sizeof(Q) == 0);
79 }
80
81 template <>
82 int
83 raw_convert (std::string v);
84
85 template <>
86 unsigned int
87 raw_convert (std::string v);
88
89 template <>
90 long int
91 raw_convert (std::string v);
92
93 template <>
94 float
95 raw_convert (std::string v);
96
97 template <>
98 double
99 raw_convert (std::string v);
100
101 /** @brief A wrapper for a xmlpp::Node which simplifies parsing */
102 class Node
103 {
104 public:
105         Node ();
106
107         /** Construct a Node from an xmlpp::Node.  This class will
108          *  not destroy the xmlpp::Node.
109          *  @param node xmlpp::Node.
110          */
111         Node (xmlpp::Node* node);
112
113         std::string name () const;
114
115         /* A set of methods which look up a child of this node by
116          * its name, and return its contents as some type or other.
117          *
118          * If, for example, this object has been created with
119          * a node named "Fred", we might have the following XML:
120          *
121          * <Fred>
122          *   <Jim>42</Jim>
123          * </Fred>
124          *
125          * string_child ("Jim") would return "42"
126          * number_child<int64_t> ("Jim") would return 42.
127          * ...and so on.
128          *
129          * The methods not marked "optional" will throw an exception
130          * if the child node is not present.  The "optional" methods
131          * will return an empty boost::optional<> in that case.
132          *
133          * All methods will also throw an exception if there is more
134          * than one of the specified child node.
135          */
136
137         std::string string_child (std::string c) const;
138         boost::optional<std::string> optional_string_child (std::string) const;
139
140         bool bool_child (std::string) const;
141         boost::optional<bool> optional_bool_child (std::string) const;
142
143         template <class T>
144         T number_child (std::string c) const
145         {
146                 std::string s = string_child (c);
147                 boost::erase_all (s, " ");
148                 return raw_convert<T> (s);
149         }
150
151         template <class T>
152         boost::optional<T> optional_number_child (std::string c) const
153         {
154                 boost::optional<std::string> s = optional_string_child (c);
155                 if (!s) {
156                         return boost::optional<T> ();
157                 }
158
159                 std::string t = s.get ();
160                 boost::erase_all (t, " ");
161                 return raw_convert<T> (t);
162         }
163
164         /** This will mark a child as to be ignored when calling done() */
165         void ignore_child (std::string) const;
166
167         /** Check whether all children of this Node have been looked up
168          *  or passed to ignore_child().  If not, an exception is thrown.
169          */
170         void done () const;
171
172         /* These methods look for an attribute of this node, in the
173          * same way as the child methods do.
174          */
175
176         std::string string_attribute (std::string) const;
177         boost::optional<std::string> optional_string_attribute (std::string) const;
178
179         bool bool_attribute (std::string) const;
180         boost::optional<bool> optional_bool_attribute (std::string) const;
181
182         template <class T>
183         T number_attribute (std::string c) const
184         {
185                 std::string s = string_attribute (c);
186                 boost::erase_all (s, " ");
187                 return raw_convert<T> (s);
188         }
189
190         template <class T>
191         boost::optional<T> optional_number_attribute (std::string c) const
192         {
193                 boost::optional<std::string> s = optional_string_attribute (c);
194                 if (!s) {
195                         return boost::optional<T> ();
196                 }
197
198                 std::string t = s.get ();
199                 boost::erase_all (t, " ");
200                 return raw_convert<T> (t);
201         }
202
203         /** @return The text content of this node (excluding comments or CDATA) */
204         std::string content () const;
205
206         /** @return namespace URI of this node */
207         std::string namespace_uri () const;
208
209         /** @return namespace prefix of this node */
210         std::string namespace_prefix () const;
211
212         boost::shared_ptr<Node> node_child (std::string) const;
213         boost::shared_ptr<Node> optional_node_child (std::string) const;
214
215         std::list<boost::shared_ptr<Node> > node_children () const;
216         std::list<boost::shared_ptr<Node> > node_children (std::string) const;
217
218         xmlpp::Node* node () const {
219                 return _node;
220         }
221
222 protected:
223         xmlpp::Node* _node;
224
225 private:
226         mutable std::list<std::string> _taken;
227 };
228
229 typedef boost::shared_ptr<cxml::Node> NodePtr;
230 typedef boost::shared_ptr<const cxml::Node> ConstNodePtr;
231
232 class Document : public Node
233 {
234 public:
235         Document ();
236         Document (std::string root_name);
237         Document (std::string root_name, boost::filesystem::path);
238
239         virtual ~Document ();
240
241         void read_file (boost::filesystem::path);
242         void read_string (std::string);
243
244         std::string root_name () const {
245                 return _root_name;
246         }
247
248 private:
249         void take_root_node ();
250
251         xmlpp::DomParser* _parser;
252         std::string _root_name;
253 };
254
255 }
256
257 #endif