-
Notifications
You must be signed in to change notification settings - Fork 88
/
rapidxml_iterators.hpp
402 lines (333 loc) · 10.9 KB
/
rapidxml_iterators.hpp
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
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
#ifndef RAPIDXML_ITERATORS_HPP_INCLUDED
#define RAPIDXML_ITERATORS_HPP_INCLUDED
// Copyright (C) 2006, 2009 Marcin Kalicinski
// Version 1.13
// Revision $DateTime: 2009/05/13 01:46:17 $
//! \file rapidxml_iterators.hpp This file contains rapidxml iterators
#include "rapidxml.hpp"
namespace rapidxml
{
//! Iterator of child nodes of xml_node
template<typename Ch>
class node_iterator
{
public:
using value_type = xml_node<Ch>;
using reference = xml_node<Ch> &;
using pointer = xml_node<Ch> *;
using iterator_category = std::bidirectional_iterator_tag;
using difference_type = long;
node_iterator()
: m_node()
{
}
explicit node_iterator(xml_node<Ch> const &node)
: m_node(node.first_node())
{
}
node_iterator(node_iterator && other) noexcept : m_node(other.m_node) {}
node_iterator(node_iterator const & other) : m_node(other.m_node) {}
reference operator *() const
{
return const_cast<reference>(*m_node);
}
pointer operator->() const
{
return const_cast<pointer>(m_node.get());
}
node_iterator& operator++()
{
m_node = m_node->next_sibling();
return *this;
}
node_iterator operator++(int)
{
node_iterator tmp = *this;
++(*this);
return tmp;
}
node_iterator& operator--()
{
m_node = m_node->previous_sibling();
return *this;
}
node_iterator operator--(int)
{
node_iterator tmp = *this;
--(*this);
return tmp;
}
bool operator == (const node_iterator<Ch>& rhs) const
{
return m_node == rhs.m_node;
}
bool operator != (const node_iterator<Ch>& rhs) const
{
return m_node != rhs.m_node;
}
node_iterator & operator = (node_iterator && other) noexcept {
m_node = other.m_node;
return *this;
}
node_iterator & operator = (node_iterator const & other) {
m_node = other.m_node;
return *this;
}
bool valid()
{
return m_node.has_value();
}
private:
optional_ptr<xml_node<Ch>> m_node;
};
//! Iterator of child nodes of xml_node
template<typename Ch=char>
class descendant_iterator
{
public:
using value_type = xml_node<Ch>;
using reference = xml_node<Ch> &;
using pointer = xml_node<Ch> *;
using iterator_category = std::bidirectional_iterator_tag;
using difference_type = long;
descendant_iterator()
: m_parent(), m_node()
{
}
explicit descendant_iterator(xml_node<Ch>::ptr node)
: m_parent(node), m_node(node->first_node())
{
}
descendant_iterator(descendant_iterator && other) noexcept : m_parent(other.m_parent), m_node(other.m_node) {}
descendant_iterator(descendant_iterator const & other) : m_parent(other.m_parent), m_node(other.m_node) {}
reference operator *() const
{
return const_cast<reference>(*m_node);
}
pointer operator->() const
{
return const_cast<pointer>(m_node.get());
}
descendant_iterator& operator++()
{
if (m_node->first_node()) {
m_node = m_node->first_node();
} else if (m_node->next_sibling()) {
m_node = m_node->next_sibling();
} else {
// Run out of children, so move upward until we can find a sibling.
while (true) {
m_node = m_node->parent();
if (m_node == m_parent) {
m_node = nullptr;
break;
}
if (m_node->next_sibling()) {
m_node = m_node->next_sibling();
break;
}
}
}
return *this;
}
descendant_iterator operator++(int)
{
node_iterator tmp = *this;
++(*this);
return tmp;
}
descendant_iterator& operator--()
{
if (!m_node->previous_sibling()) {
m_node = m_node->parent();
if (m_node == m_parent) {
m_node = nullptr;
}
} else {
m_node = m_node->previous_sibling();
while (m_node->last_node()) {
m_node = m_node->last_node();
}
}
return *this;
}
descendant_iterator operator--(int)
{
node_iterator tmp = *this;
--(*this);
return tmp;
}
bool operator == (const descendant_iterator<Ch>& rhs) const
{
return m_node == rhs.m_node;
}
bool operator != (const descendant_iterator<Ch>& rhs) const
{
return m_node != rhs.m_node;
}
descendant_iterator & operator = (descendant_iterator && other) noexcept {
m_parent = other.m_parent;
m_node = other.m_node;
return *this;
}
descendant_iterator & operator = (descendant_iterator const & other) {
m_parent = other.m_parent;
m_node = other.m_node;
return *this;
}
bool valid()
{
return m_node.has_value();
}
private:
optional_ptr<xml_node<Ch>> m_parent;
optional_ptr<xml_node<Ch>> m_node;
};
//! Iterator of child attributes of xml_node
template<class Ch>
class attribute_iterator
{
public:
using value_type = xml_attribute<Ch>;
using reference = xml_attribute<Ch> &;
using pointer = xml_attribute<Ch> *;
using iterator_category = std::bidirectional_iterator_tag;
using difference_type = long;
attribute_iterator()
: m_attribute()
{
}
explicit attribute_iterator(xml_node<Ch> const &node)
: m_attribute(node.first_attribute())
{
}
attribute_iterator(attribute_iterator && other) noexcept : m_attribute(other.m_attribute) {}
attribute_iterator(attribute_iterator const & other) : m_attribute(other.m_attribute) {}
reference operator *() const
{
return const_cast<reference>(*m_attribute);
}
pointer operator->() const
{
return const_cast<pointer>(m_attribute.get());
}
attribute_iterator& operator++()
{
m_attribute = m_attribute->next_attribute();
return *this;
}
attribute_iterator operator++(int)
{
attribute_iterator tmp = *this;
++*this;
return tmp;
}
attribute_iterator& operator--()
{
m_attribute = m_attribute->previous_attribute();
return *this;
}
attribute_iterator operator--(int)
{
attribute_iterator tmp = *this;
--*this;
return tmp;
}
bool operator ==(const attribute_iterator<Ch> &rhs) const
{
return m_attribute == rhs.m_attribute;
}
bool operator !=(const attribute_iterator<Ch> &rhs) const
{
return m_attribute != rhs.m_attribute;
}
attribute_iterator & operator = (attribute_iterator && other) noexcept {
m_attribute = other.m_attribute;
return *this;
}
attribute_iterator & operator = (attribute_iterator const & other) {
m_attribute = other.m_attribute;
return *this;
}
private:
optional_ptr<xml_attribute<Ch>> m_attribute;
};
//! Container adaptor for child nodes
template<typename Ch>
class children
{
xml_node<Ch> const & m_node;
public:
explicit children(xml_node<Ch> const & node) : m_node(node) {}
explicit children(optional_ptr<xml_node<Ch>> const ptr) : m_node(ptr.value()) {}
children(children && other) noexcept : m_node(other.m_node) {}
children(children const & other) : m_node(other.m_node) {}
using const_iterator = node_iterator<Ch>;
using iterator = node_iterator<Ch>;
iterator begin() {
return iterator(m_node);
}
iterator end() {
return {};
}
const_iterator begin() const {
return const_iterator(m_node);
}
const_iterator end() const {
return {};
}
};
//! Container adaptor for child nodes
template<typename Ch>
class descendants
{
xml_node<Ch> & m_node;
public:
explicit descendants(xml_node<Ch> & node) : m_node(node) {}
explicit descendants(optional_ptr<xml_node<Ch>> ptr) : m_node(ptr.value()) {}
descendants(descendants && other) noexcept : m_node(other.m_node) {}
descendants(descendants const & other) : m_node(other.m_node) {}
using const_iterator = descendant_iterator<Ch>;
using iterator = descendant_iterator<Ch>;
iterator begin() {
return iterator(&m_node);
}
iterator end() {
return {};
}
const_iterator begin() const {
return const_iterator(&m_node);
}
const_iterator end() const {
return {};
}
};
//! Container adaptor for attributes
template<typename Ch>
class attributes
{
xml_node<Ch> const & m_node;
public:
explicit attributes(xml_node<Ch> const & node) : m_node(node) {}
explicit attributes(optional_ptr<xml_node<Ch>> ptr) : m_node(ptr.value()) {}
using const_iterator = attribute_iterator<Ch>;
using iterator = attribute_iterator<Ch>;
iterator begin() {
return iterator{m_node};
}
iterator end() {
return {};
}
const_iterator begin() const {
return const_iterator{m_node};
}
const_iterator end() const {
return {};
}
};
}
template<typename Ch>
inline constexpr bool std::ranges::enable_borrowed_range<rapidxml::children<Ch>> = true;
template<typename Ch>
inline constexpr bool std::ranges::enable_borrowed_range<rapidxml::attributes<Ch>> = true;
#endif