2 #ifndef __RAPIDXML_H_INCLUDE__
3 #define __RAPIDXML_H_INCLUDE__
11 #if !defined(RAPIDXML_NO_STDLIB)
21 #pragma warning(disable : 4127) // Conditional expression is constant
27 #if defined(RAPIDXML_NO_EXCEPTIONS)
29 #define RAPIDXML_PARSE_ERROR(what, where) \
31 parse_error_handler(what, where); \
53 void parse_error_handler(
const char* what,
void* where);
60 #define RAPIDXML_PARSE_ERROR(what, where) throw parse_error(what, where)
88 what() const noexcept
override
100 return reinterpret_cast<Ch*
>(m_where);
114 #ifndef RAPIDXML_STATIC_POOL_SIZE
118 #define RAPIDXML_STATIC_POOL_SIZE (64 * 1024)
121 #ifndef RAPIDXML_DYNAMIC_POOL_SIZE
125 #define RAPIDXML_DYNAMIC_POOL_SIZE (64 * 1024)
128 #ifndef RAPIDXML_ALIGNMENT
133 #define RAPIDXML_ALIGNMENT sizeof(void*)
300 static const unsigned char lookup_whitespace[256];
301 static const unsigned char lookup_node_name[256];
302 static const unsigned char lookup_text[256];
303 static const unsigned char lookup_text_pure_no_ws[256];
304 static const unsigned char lookup_text_pure_with_ws[256];
305 static const unsigned char lookup_attribute_name[256];
306 static const unsigned char
307 lookup_attribute_data_1[256];
308 static const unsigned char
309 lookup_attribute_data_1_pure[256];
310 static const unsigned char
311 lookup_attribute_data_2[256];
312 static const unsigned char
313 lookup_attribute_data_2_pure[256];
314 static const unsigned char lookup_digits[256];
315 static const unsigned char
350 for (
const Ch* end = p1 + size1; p1 < end; ++p1, ++p2)
358 for (
const Ch* end = p1 + size1; p1 < end; ++p1, ++p2)
359 if (lookup_tables<0>::lookup_upcase[
static_cast<unsigned char>(*p1)] !=
360 lookup_tables<0>::lookup_upcase[
static_cast<unsigned char>(*p2)])
409 template <
class Ch =
char>
416 alloc_func)(std::size_t);
417 typedef void(free_func)(
void*);
447 const Ch* name =
nullptr,
448 const Ch*
value =
nullptr,
449 std::size_t name_size = 0,
450 std::size_t value_size = 0)
459 node->name(name, name_size);
471 node->value(
value, value_size);
493 const Ch*
value =
nullptr,
494 std::size_t name_size = 0,
495 std::size_t value_size = 0)
504 attribute->name(name, name_size);
508 attribute->name(name);
516 attribute->value(
value, value_size);
520 attribute->value(
value);
541 size = internal::measure(
source) + 1;
544 Ch* result =
static_cast<Ch*
>(allocate_aligned(size *
sizeof(Ch)));
547 for (std::size_t i = 0; i < size; ++i)
570 result->remove_all_attributes();
571 result->remove_all_nodes();
572 result->type(
source->type());
584 for (
xml_node<Ch>* child =
source->first_node(); child; child = child->next_sibling())
590 attr = attr->next_attribute())
593 attr->name(), attr->value(), attr->name_size(), attr->value_size()));
605 while (m_begin != m_static_memory)
607 char* previous_begin =
reinterpret_cast<header*
>(align(m_begin))->previous_begin;
611 m_free_func(m_begin);
618 m_begin = previous_begin;
640 assert(m_begin == m_static_memory &&
641 m_ptr == align(m_begin));
649 char* previous_begin;
655 m_begin = m_static_memory;
656 m_ptr = align(m_begin);
657 m_end = m_static_memory +
sizeof(m_static_memory);
663 std::size_t alignment =
666 return ptr + alignment;
670 allocate_raw(std::size_t size)
677 memory = m_alloc_func(size);
683 memory =
new char[size];
684 #ifdef RAPIDXML_NO_EXCEPTIONS
694 return static_cast<char*
>(memory);
698 allocate_aligned(std::size_t size)
701 char* result = align(m_ptr);
704 if (result + size > m_end)
709 if (pool_size < size)
715 std::size_t alloc_size =
718 char* raw_memory = allocate_raw(alloc_size);
721 char* pool = align(raw_memory);
722 header* new_header =
reinterpret_cast<header*
>(pool);
723 new_header->previous_begin = m_begin;
724 m_begin = raw_memory;
725 m_ptr = pool +
sizeof(header);
726 m_end = raw_memory + alloc_size;
729 result = align(m_ptr);
733 m_ptr = result + size;
741 alloc_func* m_alloc_func;
742 free_func* m_free_func;
751 template <
class Ch =
char>
838 this->
name(name, internal::measure(
name));
889 static Ch zero = Ch(
'\0');
905 template <
class Ch =
char>
931 while (node->parent())
933 node = node->parent();
951 std::size_t name_size = 0,
952 bool case_sensitive =
true)
const
958 name_size = internal::measure(name);
962 attribute = attribute->m_prev_attribute)
964 attribute->name_size(),
976 return this->m_parent ? m_prev_attribute : 0;
987 std::size_t name_size = 0,
988 bool case_sensitive =
true)
const
994 name_size = internal::measure(name);
998 attribute = attribute->m_next_attribute)
1000 attribute->name_size(),
1012 return this->m_parent ? m_next_attribute :
nullptr;
1034 template <
class Ch =
char>
1035 class xml_node :
public xml_base<Ch>
1070 while (node->parent())
1072 node = node->parent();
1085 std::size_t name_size = 0,
1086 bool case_sensitive =
true)
const
1092 name_size = internal::measure(name);
1095 for (
xml_node<Ch>* child = m_first_node; child; child = child->next_sibling())
1097 child->name(), child->name_size(), name, name_size, case_sensitive))
1106 return m_first_node;
1118 last_node(
const Ch* name = 0, std::size_t name_size = 0,
bool case_sensitive =
true)
const
1120 assert(m_first_node);
1126 name_size = internal::measure(name);
1129 for (
xml_node<Ch>* child = m_last_node; child; child = child->previous_sibling())
1131 child->name(), child->name_size(), name, name_size, case_sensitive))
1153 std::size_t name_size = 0,
1154 bool case_sensitive =
true)
const
1156 assert(this->m_parent);
1162 name_size = internal::measure(name);
1166 sibling = sibling->m_prev_sibling)
1168 sibling->name(), sibling->name_size(), name, name_size, case_sensitive))
1177 return m_prev_sibling;
1190 std::size_t name_size = 0,
1191 bool case_sensitive =
true)
const
1193 assert(this->m_parent);
1199 name_size = internal::measure(name);
1203 sibling = sibling->m_next_sibling)
1205 sibling->name(), sibling->name_size(), name, name_size, case_sensitive))
1214 return m_next_sibling;
1225 std::size_t name_size = 0,
1226 bool case_sensitive =
true)
const
1232 name_size = internal::measure(name);
1236 attribute = attribute->m_next_attribute)
1238 attribute->name_size(),
1250 return m_first_attribute;
1261 std::size_t name_size = 0,
1262 bool case_sensitive =
true)
const
1268 name_size = internal::measure(name);
1272 attribute = attribute->m_prev_attribute)
1274 attribute->name_size(),
1286 return m_first_attribute ? m_last_attribute : 0;
1310 assert(child && !child->parent() && child->type() !=
node_document);
1314 child->m_next_sibling = m_first_node;
1315 m_first_node->m_prev_sibling = child;
1319 child->m_next_sibling = 0;
1320 m_last_node = child;
1323 m_first_node = child;
1324 child->m_parent =
this;
1325 child->m_prev_sibling = 0;
1334 assert(child && !child->parent() && child->type() !=
node_document);
1338 child->m_prev_sibling = m_last_node;
1339 m_last_node->m_next_sibling = child;
1343 child->m_prev_sibling =
nullptr;
1344 m_first_node = child;
1347 m_last_node = child;
1348 child->m_parent =
this;
1349 child->m_next_sibling =
nullptr;
1359 assert(!where || where->parent() ==
this);
1360 assert(child && !child->parent() && child->type() !=
node_document);
1362 if (where == m_first_node)
1366 else if (where == 0)
1372 child->m_prev_sibling = where->m_prev_sibling;
1373 child->m_next_sibling = where;
1374 where->m_prev_sibling->m_next_sibling = child;
1375 where->m_prev_sibling = child;
1376 child->m_parent =
this;
1388 m_first_node = child->m_next_sibling;
1390 if (child->m_next_sibling)
1392 child->m_next_sibling->m_prev_sibling = 0;
1399 child->m_parent = 0;
1411 if (child->m_prev_sibling)
1413 m_last_node = child->m_prev_sibling;
1414 child->m_prev_sibling->m_next_sibling = 0;
1421 child->m_parent = 0;
1429 assert(where && where->parent() ==
this);
1432 if (where == m_first_node)
1436 else if (where == m_last_node)
1442 where->m_prev_sibling->m_next_sibling = where->m_next_sibling;
1443 where->m_next_sibling->m_prev_sibling = where->m_prev_sibling;
1444 where->m_parent = 0;
1454 node->m_parent =
nullptr;
1457 m_first_node =
nullptr;
1465 assert(attribute && !attribute->parent());
1469 attribute->m_next_attribute = m_first_attribute;
1470 m_first_attribute->m_prev_attribute = attribute;
1474 attribute->m_next_attribute = 0;
1475 m_last_attribute = attribute;
1478 m_first_attribute = attribute;
1479 attribute->m_parent =
this;
1480 attribute->m_prev_attribute = 0;
1488 assert(attribute && !attribute->parent());
1492 attribute->m_prev_attribute = m_last_attribute;
1493 m_last_attribute->m_next_attribute = attribute;
1497 attribute->m_prev_attribute =
nullptr;
1498 m_first_attribute = attribute;
1501 m_last_attribute = attribute;
1502 attribute->m_parent =
this;
1503 attribute->m_next_attribute =
nullptr;
1513 assert(!where || where->parent() ==
this);
1514 assert(attribute && !attribute->parent());
1516 if (where == m_first_attribute)
1520 else if (where == 0)
1526 attribute->m_prev_attribute = where->m_prev_attribute;
1527 attribute->m_next_attribute = where;
1528 where->m_prev_attribute->m_next_attribute = attribute;
1529 where->m_prev_attribute = attribute;
1530 attribute->m_parent =
this;
1543 if (attribute->m_next_attribute)
1545 attribute->m_next_attribute->m_prev_attribute = 0;
1549 m_last_attribute = 0;
1552 attribute->m_parent = 0;
1553 m_first_attribute = attribute->m_next_attribute;
1565 if (attribute->m_prev_attribute)
1567 attribute->m_prev_attribute->m_next_attribute = 0;
1568 m_last_attribute = attribute->m_prev_attribute;
1572 m_first_attribute = 0;
1575 attribute->m_parent = 0;
1585 if (where == m_first_attribute)
1589 else if (where == m_last_attribute)
1595 where->m_prev_attribute->m_next_attribute = where->m_next_attribute;
1596 where->m_next_attribute->m_prev_attribute = where->m_prev_attribute;
1597 where->m_parent = 0;
1606 attribute = attribute->m_next_attribute)
1608 attribute->m_parent =
nullptr;
1611 m_first_attribute =
nullptr;
1658 template <
class Ch =
char>
1659 class xml_document :
public xml_node<Ch>,
public memory_pool<Ch>
1679 template <
int Flags>
1686 this->remove_all_nodes();
1687 this->remove_all_attributes();
1690 parse_bom<Flags>(text);
1696 skip<whitespace_pred, Flags>(text);
1704 if (*text == Ch(
'<'))
1710 this->append_node(node);
1725 this->remove_all_nodes();
1726 this->remove_all_attributes();
1735 struct whitespace_pred
1737 static unsigned char
1740 return internal::lookup_tables<0>::lookup_whitespace[
static_cast<unsigned char>(
1746 struct node_name_pred
1748 static unsigned char
1751 return internal::lookup_tables<0>::lookup_node_name[
static_cast<unsigned char>(ch)];
1756 struct attribute_name_pred
1758 static unsigned char
1761 return internal::lookup_tables<0>::lookup_attribute_name[
static_cast<unsigned char>(
1769 static unsigned char
1772 return internal::lookup_tables<0>::lookup_text[
static_cast<unsigned char>(ch)];
1777 struct text_pure_no_ws_pred
1779 static unsigned char
1782 return internal::lookup_tables<
1783 0>::lookup_text_pure_no_ws[
static_cast<unsigned char>(ch)];
1788 struct text_pure_with_ws_pred
1790 static unsigned char
1793 return internal::lookup_tables<
1794 0>::lookup_text_pure_with_ws[
static_cast<unsigned char>(ch)];
1800 struct attribute_value_pred
1802 static unsigned char
1805 if (Quote == Ch(
'\''))
1807 return internal::lookup_tables<
1808 0>::lookup_attribute_data_1[
static_cast<unsigned char>(ch)];
1811 if (Quote == Ch(
'\"'))
1813 return internal::lookup_tables<
1814 0>::lookup_attribute_data_2[
static_cast<unsigned char>(ch)];
1823 struct attribute_value_pure_pred
1825 static unsigned char
1828 if (Quote == Ch(
'\''))
1830 return internal::lookup_tables<
1831 0>::lookup_attribute_data_1_pure[
static_cast<unsigned char>(ch)];
1834 if (Quote == Ch(
'\"'))
1836 return internal::lookup_tables<
1837 0>::lookup_attribute_data_2_pure[
static_cast<unsigned char>(ch)];
1845 template <
int Flags>
1847 insert_coded_character(Ch*& text,
unsigned long code)
1853 text[0] =
static_cast<unsigned char>(code);
1861 text[0] =
static_cast<unsigned char>(code);
1864 else if (code < 0x800)
1866 text[1] =
static_cast<unsigned char>((code | 0x80) & 0xBF);
1868 text[0] =
static_cast<unsigned char>(code | 0xC0);
1871 else if (code < 0x10000)
1873 text[2] =
static_cast<unsigned char>((code | 0x80) & 0xBF);
1875 text[1] =
static_cast<unsigned char>((code | 0x80) & 0xBF);
1877 text[0] =
static_cast<unsigned char>(code | 0xE0);
1880 else if (code < 0x110000)
1882 text[3] =
static_cast<unsigned char>((code | 0x80) & 0xBF);
1884 text[2] =
static_cast<unsigned char>((code | 0x80) & 0xBF);
1886 text[1] =
static_cast<unsigned char>((code | 0x80) & 0xBF);
1888 text[0] =
static_cast<unsigned char>(code | 0xF0);
1899 template <
class StopPred,
int Flags>
1905 while (StopPred::test(*tmp))
1916 template <
class StopPred,
class StopPredPure,
int Flags>
1918 skip_and_expand_character_refs(Ch*& text)
1924 skip<StopPred, Flags>(text);
1929 skip<StopPredPure, Flags>(text);
1935 while (StopPred::test(*src))
1941 if (src[0] == Ch(
'&'))
1948 if (src[2] == Ch(
'm') && src[3] == Ch(
'p') && src[4] == Ch(
';'))
1956 if (src[2] == Ch(
'p') && src[3] == Ch(
'o') && src[4] == Ch(
's') &&
1969 if (src[2] == Ch(
'u') && src[3] == Ch(
'o') && src[4] == Ch(
't') &&
1982 if (src[2] == Ch(
't') && src[3] == Ch(
';'))
1994 if (src[2] == Ch(
't') && src[3] == Ch(
';'))
2006 if (src[2] == Ch(
'x'))
2008 unsigned long code = 0;
2013 unsigned char digit = internal::lookup_tables<
2014 0>::lookup_digits[
static_cast<unsigned char>(*src)];
2021 code = code * 16 + digit;
2025 insert_coded_character<Flags>(dest,
2030 unsigned long code = 0;
2035 unsigned char digit = internal::lookup_tables<
2036 0>::lookup_digits[
static_cast<unsigned char>(*src)];
2043 code = code * 10 + digit;
2047 insert_coded_character<Flags>(dest,
2051 if (*src == Ch(
';'))
2074 if (whitespace_pred::test(*src))
2081 while (whitespace_pred::test(*src))
2103 template <
int Flags>
2105 parse_bom(Ch*& text)
2108 if (
static_cast<unsigned char>(text[0]) == 0xEF &&
2109 static_cast<unsigned char>(text[1]) == 0xBB &&
2110 static_cast<unsigned char>(text[2]) == 0xBF)
2117 template <
int Flags>
2119 parse_xml_declaration(Ch*& text)
2125 while (text[0] != Ch(
'?') || text[1] != Ch(
'>'))
2143 skip<whitespace_pred, Flags>(text);
2146 parse_node_attributes<Flags>(text, declaration);
2149 if (text[0] != Ch(
'?') || text[1] != Ch(
'>'))
2160 template <
int Flags>
2162 parse_comment(Ch*& text)
2168 while (text[0] != Ch(
'-') || text[1] != Ch(
'-') || text[2] != Ch(
'>'))
2186 while (text[0] != Ch(
'-') || text[1] != Ch(
'-') || text[2] != Ch(
'>'))
2197 xml_node<Ch>* comment = this->allocate_node(
node_comment);
2211 template <
int Flags>
2213 parse_doctype(Ch*& text)
2219 while (*text != Ch(
'>'))
2268 xml_node<Ch>* doctype = this->allocate_node(
node_doctype);
2288 template <
int Flags>
2296 xml_node<Ch>*
pi = this->allocate_node(
node_pi);
2300 skip<node_name_pred, Flags>(text);
2307 pi->name(name, text - name);
2310 skip<whitespace_pred, Flags>(text);
2316 while (text[0] != Ch(
'?') || text[1] != Ch(
'>'))
2318 if (*text == Ch(
'\0'))
2332 pi->name()[
pi->name_size()] = Ch(
'\0');
2333 pi->value()[
pi->value_size()] = Ch(
'\0');
2342 while (text[0] != Ch(
'?') || text[1] != Ch(
'>'))
2344 if (*text == Ch(
'\0'))
2360 template <
int Flags>
2362 parse_and_append_data(xml_node<Ch>* node, Ch*& text, Ch* contents_start)
2367 text = contents_start;
2371 Ch *
value = text, *end;
2376 skip_and_expand_character_refs<text_pred, text_pure_with_ws_pred, Flags>(text);
2380 end = skip_and_expand_character_refs<text_pred, text_pure_no_ws_pred, Flags>(text);
2389 if (*(end - 1) == Ch(
' '))
2397 while (whitespace_pred::test(*(end - 1)))
2410 node->append_node(
data);
2415 if (*node->value() == Ch(
'\0'))
2433 template <
int Flags>
2435 parse_cdata(Ch*& text)
2441 while (text[0] != Ch(
']') || text[1] != Ch(
']') || text[2] != Ch(
'>'))
2458 while (text[0] != Ch(
']') || text[1] != Ch(
']') || text[2] != Ch(
'>'))
2469 xml_node<Ch>* cdata = this->allocate_node(
node_cdata);
2483 template <
int Flags>
2485 parse_element(Ch*& text)
2488 xml_node<Ch>* element = this->allocate_node(
node_element);
2492 skip<node_name_pred, Flags>(text);
2499 element->name(name, text - name);
2502 skip<whitespace_pred, Flags>(text);
2505 parse_node_attributes<Flags>(text, element);
2508 if (*text == Ch(
'>'))
2511 parse_node_contents<Flags>(text, element);
2513 else if (*text == Ch(
'/'))
2517 if (*text != Ch(
'>'))
2532 element->name()[element->name_size()] = Ch(
'\0');
2540 template <
int Flags>
2542 parse_node(Ch*& text)
2551 return parse_element<Flags>(text);
2557 if ((text[0] == Ch(
'x') || text[0] == Ch(
'X')) &&
2558 (text[1] == Ch(
'm') || text[1] == Ch(
'M')) &&
2559 (text[2] == Ch(
'l') || text[2] == Ch(
'L')) &&
2560 whitespace_pred::test(text[3]))
2564 return parse_xml_declaration<Flags>(text);
2569 return parse_pi<Flags>(text);
2581 if (text[2] == Ch(
'-'))
2585 return parse_comment<Flags>(text);
2592 if (text[2] == Ch(
'C') && text[3] == Ch(
'D') && text[4] == Ch(
'A') &&
2593 text[5] == Ch(
'T') && text[6] == Ch(
'A') && text[7] == Ch(
'['))
2597 return parse_cdata<Flags>(text);
2604 if (text[2] == Ch(
'O') && text[3] == Ch(
'C') && text[4] == Ch(
'T') &&
2605 text[5] == Ch(
'Y') && text[6] == Ch(
'P') && text[7] == Ch(
'E') &&
2606 whitespace_pred::test(text[8]))
2610 return parse_doctype<Flags>(text);
2618 while (*text != Ch(
'>'))
2634 template <
int Flags>
2636 parse_node_contents(Ch*& text, xml_node<Ch>* node)
2642 Ch* contents_start =
2644 skip<whitespace_pred, Flags>(text);
2645 Ch next_char = *text;
2659 if (text[1] == Ch(
'/'))
2667 Ch* closing_name = text;
2668 skip<node_name_pred, Flags>(text);
2673 text - closing_name,
2682 skip<node_name_pred, Flags>(text);
2686 skip<whitespace_pred, Flags>(text);
2688 if (*text != Ch(
'>'))
2701 if (xml_node<Ch>* child = parse_node<Flags>(text))
2703 node->append_node(child);
2715 next_char = parse_and_append_data<Flags>(node, text, contents_start);
2716 goto after_data_node;
2722 template <
int Flags>
2724 parse_node_attributes(Ch*& text, xml_node<Ch>* node)
2727 while (attribute_name_pred::test(*text))
2732 skip<attribute_name_pred, Flags>(text);
2740 xml_attribute<Ch>* attribute = this->allocate_attribute();
2741 attribute->name(name, text - name);
2742 node->append_attribute(attribute);
2745 skip<whitespace_pred, Flags>(text);
2748 if (*text != Ch(
'='))
2758 attribute->name()[attribute->name_size()] = 0;
2762 skip<whitespace_pred, Flags>(text);
2767 if (quote != Ch(
'\'') && quote != Ch(
'"'))
2775 Ch *
value = text, *end;
2776 const int AttFlags =
2780 if (quote == Ch(
'\''))
2782 end = skip_and_expand_character_refs<attribute_value_pred<Ch(
'\'')>,
2783 attribute_value_pure_pred<Ch(
'\'')>,
2788 end = skip_and_expand_character_refs<attribute_value_pred<Ch(
'"')>,
2789 attribute_value_pure_pred<Ch(
'"')>,
2807 attribute->value()[attribute->value_size()] = 0;
2811 skip<whitespace_pred, Flags>(text);
2821 template <
int Dummy>
2822 const unsigned char lookup_tables<Dummy>::lookup_whitespace[256] = {
2824 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0,
2825 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
2826 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
2827 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
2828 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
2829 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
2830 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
2831 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
2832 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
2833 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
2834 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
2835 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
2836 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
2837 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
2838 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
2839 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
2843 template <
int Dummy>
2844 const unsigned char lookup_tables<Dummy>::lookup_node_name[256] = {
2846 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 1, 1,
2847 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2848 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0,
2849 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0,
2850 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2851 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2852 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2853 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2854 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2855 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2856 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2857 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2858 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2859 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2860 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2861 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
2865 template <
int Dummy>
2866 const unsigned char lookup_tables<Dummy>::lookup_text[256] = {
2868 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2869 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2870 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2871 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1,
2872 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2873 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2874 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2875 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2876 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2877 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2878 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2879 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2880 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2881 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2882 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2883 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
2888 template <
int Dummy>
2889 const unsigned char lookup_tables<Dummy>::lookup_text_pure_no_ws[256] = {
2891 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2892 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2893 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2894 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1,
2895 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2896 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2897 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2898 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2899 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2900 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2901 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2902 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2903 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2904 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2905 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2906 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
2911 template <
int Dummy>
2912 const unsigned char lookup_tables<Dummy>::lookup_text_pure_with_ws[256] = {
2914 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 1, 1,
2915 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2916 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2917 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1,
2918 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2919 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2920 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2921 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2922 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2923 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2924 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2925 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2926 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2927 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2928 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2929 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
2933 template <
int Dummy>
2934 const unsigned char lookup_tables<Dummy>::lookup_attribute_name[256] = {
2936 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 1, 1,
2937 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2938 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0,
2939 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0,
2940 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2941 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2942 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2943 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2944 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2945 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2946 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2947 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2948 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2949 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2950 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2951 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
2955 template <
int Dummy>
2956 const unsigned char lookup_tables<Dummy>::lookup_attribute_data_1[256] = {
2958 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2959 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2960 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1,
2961 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2962 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2963 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2964 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2965 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2966 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2967 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2968 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2969 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2970 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2971 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2972 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2973 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
2977 template <
int Dummy>
2978 const unsigned char lookup_tables<Dummy>::lookup_attribute_data_1_pure[256] = {
2980 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2981 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2982 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1,
2983 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2984 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2985 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2986 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2987 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2988 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2989 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2990 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2991 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2992 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2993 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2994 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2995 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
2999 template <
int Dummy>
3000 const unsigned char lookup_tables<Dummy>::lookup_attribute_data_2[256] = {
3002 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
3003 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
3004 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
3005 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
3006 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
3007 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
3008 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
3009 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
3010 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
3011 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
3012 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
3013 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
3014 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
3015 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
3016 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
3017 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
3021 template <
int Dummy>
3022 const unsigned char lookup_tables<Dummy>::lookup_attribute_data_2_pure[256] = {
3024 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
3025 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
3026 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1,
3027 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
3028 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
3029 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
3030 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
3031 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
3032 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
3033 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
3034 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
3035 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
3036 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
3037 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
3038 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
3039 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
3043 template <
int Dummy>
3044 const unsigned char lookup_tables<Dummy>::lookup_digits[256] = {
3046 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
3047 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
3048 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
3049 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 255, 255, 255, 255, 255, 255,
3050 255, 10, 11, 12, 13, 14, 15, 255, 255, 255, 255, 255, 255, 255, 255, 255,
3051 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
3052 255, 10, 11, 12, 13, 14, 15, 255, 255, 255, 255, 255, 255, 255, 255, 255,
3053 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
3054 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
3055 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
3056 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
3057 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
3058 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
3059 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
3060 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
3061 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
3065 template <
int Dummy>
3066 const unsigned char lookup_tables<Dummy>::lookup_upcase[256] = {
3068 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15,
3069 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31,
3070 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47,
3071 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63,
3072 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79,
3073 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95,
3074 96, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79,
3075 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 123, 124, 125, 126, 127,
3076 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143,
3077 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159,
3078 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175,
3079 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191,
3080 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207,
3081 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223,
3082 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239,
3083 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255
3092 #undef RAPIDXML_PARSE_ERROR
3096 #pragma warning(pop)