-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathXMLParser.cpp
644 lines (600 loc) · 25.4 KB
/
XMLParser.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
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
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
/*
XMLParser.cpp
Implementation file for XML parsing class.
*/
#include "XMLParser.hpp"
#include "refillContent.hpp"
#include "XMLParserHandler.hpp"
#include <bitset>
#include <cassert>
#include <iostream>
#include <iomanip>
// trace parsing
#ifdef TRACE
#undef TRACE
#define HEADER(m) std::clog << "\033[1m" << std::setw(10) << std::left << m << "\u001b[0m" << '\t'
#define TRACE0() ""
#define TRACE1(l1, n1) "\033[1m" << l1 << "\u001b[0m" << "|" << "\u001b[31;1m" << n1 << "\u001b[0m" << "| "
#define TRACE2(l1, n1, l2, n2) TRACE1(l1,n1) << TRACE1(l2,n2)
#define TRACE3(l1, n1, l2, n2, l3, n3) TRACE2(l1,n1,l2,n2) << TRACE1(l3,n3)
#define TRACE4(l1, n1, l2, n2, l3, n3, l4, n4) TRACE3(l1,n1,l2,n2,l3,n3) << TRACE1(l4,n4)
#define GET_TRACE(_2,_3,_4,_5,_6,_7,_8,_9,NAME,...) NAME
#define TRACE(m,...) HEADER(m) << GET_TRACE(__VA_ARGS__, TRACE4, _UNUSED, TRACE3, _UNUSED, TRACE2, _UNUSED, TRACE1, TRACE0, TRACE0)(__VA_ARGS__) << '\n';
#else
#define TRACE(...)
#endif
// provides literal string operator""sv
using namespace std::literals::string_view_literals;
constexpr auto WHITESPACE = " \n\t\r"sv;
constexpr auto NAMEEND = "> /\":=\n\t\r"sv;
const int BLOCK_SIZE = 4096;
const std::bitset<128> xmlNameMask("00000111111111111111111111111110100001111111111111111111111111100000001111111111011000000000000000000000000000000000000000000000");
// constructor
XMLParser::XMLParser(std::string_view content, XMLParserHandler& handler)
: content(content), totalBytes(0), handler(handler)
{}
// parse XML
void XMLParser::parse() {
// parse file from the start
parseBegin();
handler.handleStartDocument();
std::string_view version;
std::optional<std::string_view> encoding;
std::optional<std::string_view> standalone;
content.remove_prefix(content.find_first_not_of(WHITESPACE));
if (isXML()) {
// parse XML Declaration
parseXMLDeclaration(version, encoding, standalone);
handler.handleXMLDeclaration(version, encoding, standalone);
}
if (isDOCTYPE()) {
// parse DOCTYPE
parseDOCTYPE();
}
int depth = 0;
bool doneReading = false;
std::string_view qName;
std::string_view prefix;
std::string_view localName;
std::string_view value;
std::string_view characters;
while (true) {
if (doneReading) {
if (content.size() == 0)
break;
} else if (content.size() < BLOCK_SIZE) {
// refill content preserving unprocessed
refillPreserve(doneReading);
}
if (isCharacter(0, '&')) {
// parse character entity references
characters = parseCharacterEntityReference();
handler.handleCharacter(characters);
} else if (!isCharacter(0 ,'<')) {
// parse character non-entity references
characters = parseCharacterNotEntityReference();
handler.handleCharacter(characters);
} else if (isComment()) {
// parse XML comment
value = parseComment(doneReading);
content.remove_prefix("-->"sv.size());
handler.handleXMLComment(value);
} else if (isCDATA()) {
// parse CDATA
parseCDATA(doneReading, characters);
handler.handleCDATA(characters);
} else if (isCharacter(1, '?') /* && isCharacter(0, '<') */) {
// parse processing instruction
auto result = parseProcessing();
auto target = result.first;
auto data = result.second;
handler.handleProcessingInstruction(target, data);
} else if (isCharacter(1, '/') /* && isCharacter(0, '<') */) {
// parse end tag
parseEndTag(qName, prefix, localName);
handler.handleEndTag(qName, prefix, localName);
--depth;
if (depth == 0)
break;
} else if (isCharacter(0, '<')) {
// parse start tag
parseStartTag(qName, prefix, localName);
handler.handleStartTag(qName, prefix, localName);
content.remove_prefix(content.find_first_not_of(WHITESPACE));
while (xmlNameMask[content[0]]) {
if (isNamespace()) {
// parse XML namespace
auto result = parseNamespace();
auto prefix = result.first;
auto uri = result.second;
handler.handleXMLNamespace(prefix, uri);
} else {
// parse attribute
value = parseAttribute(qName, prefix, localName);
handler.handleAttribute(qName, prefix, localName, value);
TRACE("ATTRIBUTE", "qName", qName, "prefix", prefix , "localName", localName, "value", value);
// convert special srcML escaped element to characters
if (localName == "escape"sv && localName == "char"sv /* && inUnit */) {
// use strtol() instead of atoi() since strtol() understands hex encoding of '0x0?'
[[maybe_unused]] const auto escapeValue = (char)strtol(value.data(), NULL, 0);
}
content.remove_prefix("\""sv.size());
content.remove_prefix(content.find_first_not_of(WHITESPACE));
}
}
if (isCharacter(0, '>')) {
content.remove_prefix(">"sv.size());
++depth;
} else if (isCharacter(0, '/') && isCharacter(1, '>')) {
assert(content.compare(0, "/>"sv.size(), "/>") == 0);
content.remove_prefix("/>"sv.size());
TRACE("END TAG", "qName", qName , "prefix", prefix , "localName", localName);
if (depth == 0)
break;
}
} else {
std::cerr << "parser error : invalid XML document\n";
exit(1);
}
}
content.remove_prefix(content.find_first_not_of(WHITESPACE) == content.npos ? content.size() : content.find_first_not_of(WHITESPACE));
while (isComment()) {
// parse XML comment
value = parseComment(doneReading);
handler.handleXMLComment(value);
}
if (content.size() != 0) {
std::cerr << "parser error : extra content at end of document\n";
exit(1);
}
TRACE("END DOCUMENT");
handler.handleEndDocument();
}
// get totalBytes
long XMLParser::getTotalBytes() {
return totalBytes;
}
// parse file from the start
void XMLParser::parseBegin() {
TRACE("START DOCUMENT");
const int bytesRead = refillContent(content);
if (bytesRead < 0) {
std::cerr << "parser error : File input error\n";
exit(1);
}
if (bytesRead == 0) {
std::cerr << "parser error : Empty file\n";
exit(1);
}
totalBytes += bytesRead;
}
// parse XML declaration
void XMLParser::parseXMLDeclaration(std::string_view& version, std::optional<std::string_view>& encoding, std::optional<std::string_view>& standalone) {
content.remove_prefix("<?xml"sv.size());
content.remove_prefix(content.find_first_not_of(WHITESPACE));
// parse required version
parseVersion(version);
// parse optional encoding attribute
parseEncoding(encoding);
// parse optional standalone attribute
parseStandalone(standalone);
TRACE("XML DECLARATION", "version", version, "encoding", (encoding ? *encoding : ""), "standalone", (standalone ? *standalone : ""));
assert(content.compare(0, "?>"sv.size(), "?>"sv) == 0);
content.remove_prefix("?>"sv.size());
content.remove_prefix(content.find_first_not_of(WHITESPACE));
}
// parse required version
void XMLParser::parseVersion(std::string_view& version) {
const auto nameEndPosition = content.find_first_of("= ");
const auto attr(content.substr(0, nameEndPosition));
content.remove_prefix(nameEndPosition);
content.remove_prefix(content.find_first_not_of(WHITESPACE));
content.remove_prefix("="sv.size());
content.remove_prefix(content.find_first_not_of(WHITESPACE));
const auto delimiter = content[0];
if (delimiter != '"' && delimiter != '\'') {
std::cerr << "parser error: Invalid start delimiter for version in XML declaration\n";
exit(1);
}
content.remove_prefix("\""sv.size());
const auto valueEndPosition = content.find(delimiter);
if (valueEndPosition == content.npos) {
std::cerr << "parser error: Invalid end delimiter for version in XML declaration\n";
exit(1);
}
if (attr != "version"sv) {
std::cerr << "parser error: Missing required first attribute version in XML declaration\n";
exit(1);
}
version = (content.substr(0, valueEndPosition));
content.remove_prefix(valueEndPosition);
content.remove_prefix("\""sv.size());
content.remove_prefix(content.find_first_not_of(WHITESPACE));
}
// parse optional encoding attribute
void XMLParser::parseEncoding(std::optional<std::string_view>& encoding) {
if (content[0] != '?') {
const auto nameEndPosition = content.find_first_of("= ");
if (nameEndPosition == content.npos) {
std::cerr << "parser error: Incomplete attribute in XML declaration\n";
exit(1);
}
const auto attr2(content.substr(0, nameEndPosition));
content.remove_prefix(nameEndPosition);
content.remove_prefix(content.find_first_not_of(WHITESPACE));
assert(content.compare(0, "="sv.size(), "="sv) == 0);
content.remove_prefix("="sv.size());
content.remove_prefix(content.find_first_not_of(WHITESPACE));
const auto delimiter2 = content[0];
if (delimiter2 != '"' && delimiter2 != '\'') {
std::cerr << "parser error: Invalid end delimiter for attribute " << attr2 << " in XML declaration\n";
exit(1);
}
content.remove_prefix("\""sv.size());
const auto valueEndPosition = content.find(delimiter2);
if (valueEndPosition == content.npos) {
std::cerr << "parser error: Incomplete attribute " << attr2 << " in XML declaration\n";
exit(1);
}
if (attr2 == "encoding"sv) {
encoding = content.substr(0, valueEndPosition);
} else {
std::cerr << "parser error: Invalid attribute " << attr2 << " in XML declaration\n";
exit(1);
}
content.remove_prefix(valueEndPosition + 1);
content.remove_prefix(content.find_first_not_of(WHITESPACE));
}
}
// parse optional standalone attribute
void XMLParser::parseStandalone(std::optional<std::string_view>& standalone) {
if (content[0] != '?') {
const auto nameEndPosition = content.find_first_of("= ");
if (nameEndPosition == content.npos) {
std::cerr << "parser error: Incomplete attribute in XML declaration\n";
exit(1);
}
const auto attr2(content.substr(0, nameEndPosition));
content.remove_prefix(nameEndPosition);
content.remove_prefix(content.find_first_not_of(WHITESPACE));
content.remove_prefix("="sv.size());
content.remove_prefix(content.find_first_not_of(WHITESPACE));
const auto delimiter2 = content[0];
if (delimiter2 != '"' && delimiter2 != '\'') {
std::cerr << "parser error: Invalid end delimiter for attribute " << attr2 << " in XML declaration\n";
exit(1);
}
content.remove_prefix("\""sv.size());
const auto valueEndPosition = content.find(delimiter2);
if (valueEndPosition == content.npos) {
std::cerr << "parser error: Incomplete attribute " << attr2 << " in XML declaration\n";
exit(1);
}
if (!standalone && attr2 == "standalone"sv) {
standalone = content.substr(0, valueEndPosition);
} else {
std::cerr << "parser error: Invalid attribute " << attr2 << " in XML declaration\n";
exit(1);
}
// assert(content[valueEndPosition + 1] == '"');
content.remove_prefix(valueEndPosition + 1);
content.remove_prefix(content.find_first_not_of(WHITESPACE));
}
}
//parse DOCTYPE
void XMLParser::parseDOCTYPE() {
assert(content.compare(0, "<!DOCTYPE "sv.size(), "<!DOCTYPE "sv) == 0);
content.remove_prefix("<!DOCTYPE"sv.size());
int depthAngleBrackets = 1;
bool inSingleQuote = false;
bool inDoubleQuote = false;
bool inComment = false;
std::size_t p = 0;
while ((p = content.find_first_of("<>'\"-"sv, p)) != content.npos) {
if (content.compare(p, "<!--"sv.size(), "<!--"sv) == 0) {
inComment = true;
p += "<!--"sv.size();
continue;
} else if (content.compare(p, "-->"sv.size(), "-->"sv) == 0) {
inComment = false;
p += "-->"sv.size();
continue;
}
if (inComment) {
++p;
continue;
}
if (content[p] == '<' && !inSingleQuote && !inDoubleQuote) {
++depthAngleBrackets;
} else if (content[p] == '>' && !inSingleQuote && !inDoubleQuote) {
--depthAngleBrackets;
} else if (content[p] == '\'') {
inSingleQuote = !inSingleQuote;
} else if (content[p] == '"') {
inDoubleQuote = !inDoubleQuote;
}
if (depthAngleBrackets == 0)
break;
++p;
}
[[maybe_unused]] const auto contents(content.substr(0, p));
TRACE("DOCTYPE", "contents", contents);
content.remove_prefix(p);
assert(content[0] == '>');
content.remove_prefix(">"sv.size());
content.remove_prefix(content.find_first_not_of(WHITESPACE));
}
// refill content preserving unprocessed
void XMLParser::refillPreserve(bool& doneReading) {
int bytesRead = refillContent(content);
if (bytesRead < 0) {
std::cerr << "parser error : File input error\n";
exit(1);
}
if (bytesRead == 0) {
doneReading = true;
}
totalBytes += bytesRead;
}
// parse character entity references
std::string_view XMLParser::parseCharacterEntityReference() {
std::string_view unescapedCharacter;
std::string_view escapedCharacter;
if (content[1] == 'l' && content[2] == 't' && content[3] == ';') {
unescapedCharacter = "<";
escapedCharacter = "<"sv;
} else if (content[1] == 'g' && content[2] == 't' && content[3] == ';') {
unescapedCharacter = ">";
escapedCharacter = ">"sv;
} else if (content[1] == 'a' && content[2] == 'm' && content[3] == 'p' && content[4] == ';') {
unescapedCharacter = "&";
escapedCharacter = "&"sv;
} else {
unescapedCharacter = "&";
escapedCharacter = "&"sv;
}
assert(content.compare(0, escapedCharacter.size(), escapedCharacter) == 0);
content.remove_prefix(escapedCharacter.size());
[[maybe_unused]] const auto characters(unescapedCharacter);
TRACE("CHARACTERS", "characters", characters);
return characters;
}
// parse character non-entity references
std::string_view XMLParser::parseCharacterNotEntityReference() {
assert(content[0] != '<' && content[0] != '&');
const auto characterEndPosition = content.find_first_of("<&");
const auto characters = (content.substr(0, characterEndPosition));\
TRACE("CHARACTERS", "characters", characters);
content.remove_prefix(characters.size());
return characters;
}
// parse XML comment
std::string_view XMLParser::parseComment(bool& doneReading) {
assert(content.compare(0, "<!--"sv.size(), "<!--"sv) == 0);
content.remove_prefix("<!--"sv.size());
auto tagEndPosition = content.find("-->"sv);
if (tagEndPosition == content.npos) {
// refill content preserving unprocessed
refillPreserve(doneReading);
tagEndPosition = content.find("-->"sv);
if (tagEndPosition == content.npos) {
std::cerr << "parser error : Unterminated XML comment\n";
exit(1);
}
}
[[maybe_unused]] const auto comment(content.substr(0, tagEndPosition));
TRACE("COMMENT", "content", comment);
content.remove_prefix(tagEndPosition);
assert(content.compare(0, "-->"sv.size(), "-->"sv) == 0);
content.remove_prefix("-->"sv.size());
content.remove_prefix(content.find_first_not_of(WHITESPACE) == content.npos ? content.size() : content.find_first_not_of(WHITESPACE));
return comment;
}
// parse CDATA
void XMLParser::parseCDATA(bool& doneReading, std::string_view& characters) {
content.remove_prefix("<![CDATA["sv.size());
auto tagEndPosition = content.find("]]>"sv);
if (tagEndPosition == content.npos) {
// refill content preserving unprocessed
refillPreserve(doneReading);
tagEndPosition = content.find("]]>"sv);
if (tagEndPosition == content.npos) {
std::cerr << "parser error : Unterminated CDATA\n";
exit(1);
}
}
characters = (content.substr(0, tagEndPosition));
content.remove_prefix(tagEndPosition);
content.remove_prefix("]]>"sv.size());
TRACE("CDATA", "characters", characters);
}
// parse processing instruction
std::pair<std::string_view, std::string_view> XMLParser::parseProcessing() {
assert(content.compare(0, "<?"sv.size(), "<?"sv) == 0);
content.remove_prefix("<?"sv.size());
const auto tagEndPosition = content.find("?>"sv);
if (tagEndPosition == content.npos) {
std::cerr << "parser error: Incomplete XML declaration\n";
exit(1);
}
auto nameEndPosition = content.find_first_of(NAMEEND);
if (nameEndPosition == content.npos) {
std::cerr << "parser error : Unterminated processing instruction\n";
exit(1);
}
[[maybe_unused]] const auto target(content.substr(0, nameEndPosition));
[[maybe_unused]] const auto data(content.substr(nameEndPosition, tagEndPosition - nameEndPosition));
TRACE("PI", "target", target, "data", data);
content.remove_prefix(tagEndPosition);
assert(content.compare(0, "?>"sv.size(), "?>"sv) == 0);
content.remove_prefix("?>"sv.size());
return std::pair(target, data);
}
// parse end tag
void XMLParser::parseEndTag(std::string_view& qName, std::string_view& prefix, std::string_view& localName) {
assert(content.compare(0, "</"sv.size(), "</"sv) == 0);
content.remove_prefix("</"sv.size());
if (content[0] == ':') {
std::cerr << "parser error : Invalid end tag name\n";
exit(1);
}
auto nameEndPosition = content.find_first_of(NAMEEND);
if (nameEndPosition == content.size()) {
std::cerr << "parser error : Unterminated end tag '" << content.substr(0, nameEndPosition) << "'\n";
exit(1);
}
std::size_t colonPosition = 0;
if (content[nameEndPosition] == ':') {
colonPosition = nameEndPosition;
nameEndPosition = content.find_first_of(NAMEEND, nameEndPosition + 1);
}
qName = content.substr(0, nameEndPosition);
if (qName.empty()) {
std::cerr << "parser error: EndTag: invalid element name\n";
exit(1);
}
prefix = qName.substr(0, colonPosition);
localName = qName.substr(colonPosition ? colonPosition + 1 : 0);
TRACE("END TAG", "qName", qName, "prefix", prefix, "localName", localName);
content.remove_prefix(nameEndPosition);
content.remove_prefix(content.find_first_not_of(WHITESPACE));
assert(content.compare(0, ">"sv.size(), ">"sv) == 0);
content.remove_prefix(">"sv.size());
}
// parse start tag
void XMLParser::parseStartTag(std::string_view& qName, std::string_view& prefix, std::string_view& localName) {
assert(content.compare(0, "<"sv.size(), "<"sv) == 0);
content.remove_prefix("<"sv.size());
if (content[0] == ':') {
std::cerr << "parser error : Invalid start tag name\n";
exit(1);
}
auto nameEndPosition = content.find_first_of(NAMEEND);
if (nameEndPosition == content.size()) {
std::cerr << "parser error : Unterminated start tag '" << content.substr(0, nameEndPosition) << "'\n";
exit(1);
}
std::size_t colonPosition = 0;
if (content[nameEndPosition] == ':') {
colonPosition = nameEndPosition;
nameEndPosition = content.find_first_of(NAMEEND, nameEndPosition + 1);
}
qName = content.substr(0, nameEndPosition);
if (qName.empty()) {
std::cerr << "parser error: StartTag: invalid element name\n";
exit(1);
}
prefix = qName.substr(0, colonPosition);
localName = qName.substr(colonPosition ? colonPosition + 1 : 0, nameEndPosition);
TRACE("START TAG", "qName", qName, "prefix", prefix, "localName", localName);
content.remove_prefix(nameEndPosition);
}
// parse XML namespace
std::pair<std::string_view, std::string_view> XMLParser::parseNamespace() {
assert(content.compare(0, "xmlns"sv.size(), "xmlns"sv) == 0);
content.remove_prefix("xmlns"sv.size());
auto nameEndPosition = content.find('=');
if (nameEndPosition == content.npos) {
std::cerr << "parser error : incomplete namespace\n";
exit(1);
}
std::size_t prefixSize = 0;
if (content[0] == ':') {
content.remove_prefix(":"sv.size());
--nameEndPosition;
prefixSize = nameEndPosition;
}
[[maybe_unused]] const auto prefix(content.substr(0, prefixSize));
content.remove_prefix(nameEndPosition);
content.remove_prefix("="sv.size());
content.remove_prefix(content.find_first_not_of(WHITESPACE));
if (content.empty()) {
std::cerr << "parser error : incomplete namespace\n";
exit(1);
}
const auto delimiter = content[0];
if (delimiter != '"' && delimiter != '\'') {
std::cerr << "parser error : incomplete namespace\n";
exit(1);
}
content.remove_prefix("\""sv.size());
const auto valueEndPosition = content.find(delimiter);
if (valueEndPosition == content.npos) {
std::cerr << "parser error : incomplete namespace\n";
exit(1);
}
[[maybe_unused]] const auto uri(content.substr(0, valueEndPosition));
TRACE("NAMESPACE", "prefix", prefix, "uri", uri);
content.remove_prefix(valueEndPosition);
assert(content.compare(0, "\""sv.size(), "\""sv) == 0);
content.remove_prefix("\""sv.size());
content.remove_prefix(content.find_first_not_of(WHITESPACE));
return std::make_pair(prefix, uri);
}
// parse attribute
std::string_view XMLParser::parseAttribute(std::string_view& qName, [[maybe_unused]] std::string_view& prefix, std::string_view& localName) {
auto nameEndPosition = content.find_first_of(NAMEEND);
if (nameEndPosition == content.size()) {
std::cerr << "parser error : Empty attribute name" << '\n';
exit(1);
}
std::size_t colonPosition = 0;
if (content[nameEndPosition] == ':') {
colonPosition = nameEndPosition;
nameEndPosition = content.find_first_of(NAMEEND, nameEndPosition + 1);
}
qName = content.substr(0, nameEndPosition);
prefix = qName.substr(0, colonPosition);
localName = qName.substr(colonPosition ? colonPosition + 1 : 0);
content.remove_prefix(nameEndPosition);
content.remove_prefix(content.find_first_not_of(WHITESPACE));
if (content.empty()) {
std::cerr << "parser error : attribute " << qName << " incomplete attribute\n";
exit(1);
}
if (content[0] != '=') {
std::cerr << "parser error : attribute " << qName << " missing =\n";
exit(1);
}
content.remove_prefix("="sv.size());
content.remove_prefix(content.find_first_not_of(WHITESPACE));
const auto delimiter = content[0];
if (delimiter != '"' && delimiter != '\'') {
std::cerr << "parser error : attribute " << qName << " missing delimiter\n";
exit(1);
}
content.remove_prefix("\""sv.size());
const auto valueEndPosition = content.find(delimiter);
if (valueEndPosition == content.npos) {
std::cerr << "parser error : attribute " << qName << " missing delimiter\n";
exit(1);
}
const std::string_view value(content.substr(0, valueEndPosition));
content.remove_prefix(valueEndPosition);
TRACE("ATTRIBUTE", "qname", qName, "prefix", prefix, "localName", localName, "value", value);
return value;
}
// Accessor::predicate to test if the tag is a XML declaration
bool XMLParser::isXML() {
return content[0] == '<' && content[1] == '?' && content[2] == 'x' && content[3] == 'm' && content[4] == 'l' && content[5] == ' ';
}
// Accessor::predicate to test if the tag is DOCTYPE
bool XMLParser::isDOCTYPE() {
return content[1] == '!' && content[0] == '<' && content[2] == 'D' && content[3] == 'O' && content[4] == 'C' && content[5] == 'T' && content[6] == 'Y' && content[7] == 'P' && content[8] == 'E' && content[9] == ' ';
}
// Accessor::predicate to test if the tag is CDATA
bool XMLParser::isCDATA() {
return content[1] == '!' /* && content[0] == '<' */ && content[2] == '[' && content[3] == 'C' && content[4] == 'D' && content[5] == 'A' && content[6] == 'T' && content[7] == 'A' && content[8] == '[';
}
// Accessor::predicate to test if the tag is a comment tag
bool XMLParser::isComment() {
return (!content.empty() && content[0] == '<' && content[1] == '!' && content[2] == '-' && content[3] == '-') || (content[1] == '!' /* && content[0] == '<' */ && content[2] == '-' && content[3] == '-');
}
// Accessor::predicate to test if the tag is an XML namespace
bool XMLParser::isNamespace() {
return content[0] == 'x' && content[1] == 'm' && content[2] == 'l' && content[3] == 'n' && content[4] == 's' && (content[5] == ':' || content[5] == '=');
}
// Accessor::predicate to check if content has a specific character at a specific index
bool XMLParser::isCharacter(int index, char character) {
return content[index] == character;
}