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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
|
// *****************************************************************************
// * This file is part of the FreeFileSync project. It is distributed under *
// * GNU General Public License: https://www.gnu.org/licenses/gpl-3.0 *
// * Copyright (C) Zenju (zenju AT freefilesync DOT org) - All Rights Reserved *
// *****************************************************************************
#ifndef DOM_H_82085720723894567204564256
#define DOM_H_82085720723894567204564256
#include <string>
#include <list>
#include <unordered_map>
#include "cvrt_text.h" //"readText/writeText"
namespace zen
{
class XmlDoc;
/// An XML element
class XmlElement
{
public:
XmlElement() {}
//Construct an empty XML element
explicit XmlElement(std::string name, XmlElement* parent = nullptr) : name_(std::move(name)), parent_(parent) {}
///Retrieve the name of this XML element.
/**
\returns Name of the XML element.
*/
const std::string& getName() const { return name_; }
///Get the value of this element as a user type.
/**
\tparam T Arbitrary user data type: e.g. any string class, all built-in arithmetic numbers, STL container, ...
\returns "true" if Xml element was successfully converted to value, cannot fail for string-like types
*/
template <class T>
bool getValue(T& value) const { return readStruc(*this, value); }
///Set the value of this element.
/**
\tparam T Arbitrary user data type: e.g. any string-like type, all built-in arithmetic numbers, STL container, ...
*/
template <class T>
void setValue(const T& value) { writeStruc(value, *this); }
void setValue(std::string&& value) { value_ = std::move(value); } //perf
///Retrieve an attribute by name.
/**
\tparam T String-convertible user data type: e.g. any string class, all built-in arithmetic numbers
\param name The name of the attribute to retrieve.
\param value The value of the attribute converted to T.
\return "true" if value was retrieved successfully.
*/
template <class T>
bool getAttribute(const std::string& name, T& value) const
{
auto it = attributesByName.find(name);
return it == attributesByName.end() ? false : readText(it->second->value, value);
}
bool hasAttribute(const std::string& name) const { return attributesByName.contains(name); }
///Create or update an XML attribute.
/**
\tparam T String-convertible user data type: e.g. any string-like type, all built-in arithmetic numbers
\param name The name of the attribute to create or update.
\param value The value to set.
*/
template <class T>
void setAttribute(std::string name, const T& value)
{
std::string attrValue;
writeText(value, attrValue);
auto it = attributesByName.find(name);
if (it != attributesByName.end())
it->second->value = std::move(attrValue);
else
{
attributes_.push_back({name, std::move(attrValue)});
attributesByName.emplace(std::move(name), --attributes_.end());
}
static_assert(std::is_same_v<decltype(attributes_), std::list<Attribute>>); //must NOT invalidate references used in "attributesByName"!
}
///Remove the attribute with the given name.
void removeAttribute(const std::string& name)
{
auto it = attributesByName.find(name);
if (it != attributesByName.end())
{
attributes_.erase(it->second);
attributesByName.erase(it);
}
else assert(false);
}
///Create a new child element and return a reference to it.
/**
\param name The name of the child element to be created.
*/
XmlElement& addChild(std::string name)
{
childElements_.emplace_back(name, this);
XmlElement& newElement = childElements_.back();
childElementByName_.emplace(std::move(name), --childElements_.end());
static_assert(std::is_same_v<decltype(childElements_), std::list<XmlElement>>); //must NOT invalidate references used in "childElementByName_"!
return newElement;
}
///Retrieve a child element with the given name.
/**
\param name The name of the child element to be retrieved.
\return A pointer to the child element or nullptr if none was found.
*/
const XmlElement* getChild(const std::string& name) const
{
auto it = childElementByName_.find(name);
return it == childElementByName_.end() ? nullptr : &*(it->second);
}
///\sa getChild
XmlElement* getChild(const std::string& name)
{
return const_cast<XmlElement*>(static_cast<const XmlElement*>(this)->getChild(name));
}
using ChildIter = std::list<XmlElement>::iterator;
using ChildIterConst = std::list<XmlElement>::const_iterator;
///Access all child elements sequentially via STL iterators.
/**
\code
auto [it, itEnd] = elem.getChildren();
std::for_each(it, itEnd, [](const XmlElement& child) { ... });
\endcode
\return A pair of STL begin/end iterators to access all child elements sequentially. */
std::pair<ChildIterConst, ChildIterConst> getChildren() const { return {childElements_.begin(), childElements_.end()}; }
///\sa getChildren
std::pair<ChildIter, ChildIter> getChildren() { return {childElements_.begin(), childElements_.end()}; }
///Get parent XML element, may be nullptr for root element
XmlElement* parent() { return parent_; }
///Get parent XML element, may be nullptr for root element
const XmlElement* parent() const { return parent_; }
struct Attribute
{
std::string name;
std::string value;
};
using AttrIter = std::list<Attribute>::const_iterator;
/* -> disabled documentation extraction
\brief Get all attributes associated with the element.
\code
auto itPair = elem.getAttributes();
for (auto it = itPair.first; it != itPair.second; ++it)
std::cout << std::string("name: ") + it->name + " value: " + it->value + '\n';
\endcode
\return A pair of STL begin/end iterators to access all attributes sequentially as a list of name/value pairs of std::string. */
std::pair<AttrIter, AttrIter> getAttributes() const { return {attributes_.begin(), attributes_.end()}; }
//swap two elements while keeping references to parent. -> disabled documentation extraction
void swapSubtree(XmlElement& other) noexcept
{
name_ .swap(other.name_);
value_ .swap(other.value_);
attributes_ .swap(other.attributes_);
attributesByName .swap(other.attributesByName);
childElements_ .swap(other.childElements_);
childElementByName_.swap(other.childElementByName_);
for (XmlElement& child : childElements_)
child.parent_ = this;
for (XmlElement& child : other.childElements_)
child.parent_ = &other;
}
private:
XmlElement (const XmlElement&) = delete;
XmlElement& operator=(const XmlElement&) = delete;
std::string name_;
std::string value_;
std::list<Attribute> attributes_; //attributes in order of creation
std::unordered_map<std::string, std::list<Attribute>::iterator> attributesByName; //alternate view for lookup
std::list<XmlElement> childElements_; //child elements in order of creation
std::unordered_map<std::string, std::list<XmlElement>::iterator> childElementByName_; //alternate view for lookup of (*first*) child by name
XmlElement* parent_ = nullptr; //currently unused: YAGNI?
};
//XmlElement::setValue<T>() calls zen::writeStruc() which calls XmlElement::setValue() ... => these two specializations end the circle
template <> inline
void XmlElement::setValue(const std::string& value) { value_ = value; }
template <> inline
bool XmlElement::getValue(std::string& value) const { value = value_; return true; }
///The complete XML document
class XmlDoc
{
public:
///Default constructor setting up an empty XML document with a standard declaration: <?xml version="1.0" encoding="utf-8" ?>
XmlDoc() {}
XmlDoc(XmlDoc&& tmp) noexcept { swap(tmp); }
XmlDoc& operator=(XmlDoc&& tmp) noexcept { swap(tmp); return *this; }
//Setup an empty XML document
/**
\param rootName The name of the XML document's root element.
*/
explicit XmlDoc(std::string rootName) : root_(std::move(rootName)) {}
///Get a const reference to the document's root element.
const XmlElement& root() const { return root_; }
///Get a reference to the document's root element.
XmlElement& root() { return root_; }
///Get the version used in the XML declaration.
const std::string& getVersion() const { return version_; }
///Set the version used in the XML declaration.
void setVersion(const std::string& version) { version_ = version; }
///Get the encoding used in the XML declaration.
const std::string& getEncoding() const { return encoding_; }
///Set the encoding used in the XML declaration.
void setEncoding(const std::string& encoding) { encoding_ = encoding; }
///Get the standalone string used in the XML declaration.
const std::string& getStandalone() const { return standalone_; }
///Set the standalone string used in the XML declaration.
void setStandalone(const std::string& standalone) { standalone_ = standalone; }
//Transactionally swap two elements. -> disabled documentation extraction
void swap(XmlDoc& other) noexcept
{
version_ .swap(other.version_);
encoding_ .swap(other.encoding_);
standalone_.swap(other.standalone_);
root_.swapSubtree(other.root_);
}
private:
XmlDoc (const XmlDoc&) = delete; //not implemented, thanks to XmlElement::parent_
XmlDoc& operator=(const XmlDoc&) = delete;
std::string version_ {"1.0"}; //non-optional for valid XML
std::string encoding_{"utf-8"};
std::string standalone_;
XmlElement root_{"Root"};
};
}
#endif //DOM_H_82085720723894567204564256
|