1 #ifndef RAPIDXML_HPP_INCLUDED
2 #define RAPIDXML_HPP_INCLUDED
10 #if !defined(RAPIDXML_NO_STDLIB)
20 #pragma warning(disable:4127) // Conditional expression is constant
26 #if defined(RAPIDXML_NO_EXCEPTIONS)
28 #define RAPIDXML_PARSE_ERROR(what, where) { parse_error_handler(what, where); assert(0); }
48 void parse_error_handler(
const char *what,
void *where);
55 #define RAPIDXML_PARSE_ERROR(what, where) throw parse_error(what, where)
85 virtual const char *
what()
const throw()
96 return reinterpret_cast<Ch *
>(m_where);
112 #ifndef RAPIDXML_STATIC_POOL_SIZE
116 #define RAPIDXML_STATIC_POOL_SIZE (64 * 1024)
119 #ifndef RAPIDXML_DYNAMIC_POOL_SIZE
123 #define RAPIDXML_DYNAMIC_POOL_SIZE (64 * 1024)
126 #ifndef RAPIDXML_ALIGNMENT
131 #define RAPIDXML_ALIGNMENT sizeof(void *)
294 static const unsigned char lookup_whitespace[256];
295 static const unsigned char lookup_node_name[256];
296 static const unsigned char lookup_text[256];
297 static const unsigned char lookup_text_pure_no_ws[256];
298 static const unsigned char lookup_text_pure_with_ws[256];
299 static const unsigned char lookup_attribute_name[256];
300 static const unsigned char lookup_attribute_data_1[256];
301 static const unsigned char lookup_attribute_data_1_pure[256];
302 static const unsigned char lookup_attribute_data_2[256];
303 static const unsigned char lookup_attribute_data_2_pure[256];
304 static const unsigned char lookup_digits[256];
305 static const unsigned char lookup_upcase[256];
310 inline std::size_t measure(
const Ch *p)
320 inline bool compare(
const Ch *p1, std::size_t size1,
const Ch *p2, std::size_t size2,
bool case_sensitive)
326 for (
const Ch *end = p1 + size1; p1 < end; ++p1, ++p2)
332 for (
const Ch *end = p1 + size1; p1 < end; ++p1, ++p2)
333 if (lookup_tables<0>::lookup_upcase[
static_cast<unsigned char>(*p1)] != lookup_tables<0>::lookup_upcase[
static_cast<unsigned char>(*p2)])
378 template<
class Ch =
char>
385 typedef void *(alloc_func)(std::size_t);
386 typedef void (free_func)(
void *);
416 const Ch *name = 0,
const Ch *value = 0,
417 std::size_t name_size = 0, std::size_t value_size = 0)
424 node->name(name, name_size);
431 node->value(value, value_size);
448 std::size_t name_size = 0, std::size_t value_size = 0)
455 attribute->name(name, name_size);
457 attribute->name(name);
462 attribute->value(value, value_size);
464 attribute->value(value);
478 assert(source || size);
480 size = internal::measure(source) + 1;
481 Ch *result =
static_cast<Ch *
>(allocate_aligned(size *
sizeof(Ch)));
483 for (std::size_t i = 0; i < size; ++i)
484 result[i] = source[i];
502 result->remove_all_attributes();
503 result->remove_all_nodes();
504 result->type(source->
type());
510 result->name(source->name(), source->name_size());
511 result->value(source->value(), source->value_size());
517 result->append_attribute(
allocate_attribute(attr->name(), attr->value(), attr->name_size(), attr->value_size()));
527 while (m_begin != m_static_memory)
529 char *previous_begin =
reinterpret_cast<header *
>(align(m_begin))->previous_begin;
531 m_free_func(m_begin);
534 m_begin = previous_begin;
554 assert(m_begin == m_static_memory && m_ptr == align(m_begin));
563 char *previous_begin;
568 m_begin = m_static_memory;
569 m_ptr = align(m_begin);
570 m_end = m_static_memory +
sizeof(m_static_memory);
573 char *align(
char *ptr)
576 return ptr + alignment;
579 char *allocate_raw(std::size_t size)
585 memory = m_alloc_func(size);
590 memory =
new char[size];
591 #ifdef RAPIDXML_NO_EXCEPTIONS
596 return static_cast<char *
>(memory);
599 void *allocate_aligned(std::size_t size)
602 char *result = align(m_ptr);
605 if (result + size > m_end)
609 if (pool_size < size)
614 char *raw_memory = allocate_raw(alloc_size);
617 char *pool = align(raw_memory);
618 header *new_header =
reinterpret_cast<header *
>(pool);
619 new_header->previous_begin = m_begin;
620 m_begin = raw_memory;
621 m_ptr = pool +
sizeof(header);
622 m_end = raw_memory + alloc_size;
625 result = align(m_ptr);
629 m_ptr = result + size;
637 alloc_func *m_alloc_func;
638 free_func *m_free_func;
647 template<
class Ch =
char>
732 this->
name(name, internal::measure(
name));
780 static Ch zero = Ch(
'\0');
797 template<
class Ch =
char>
823 while (node->parent())
824 node = node->parent();
841 name_size = internal::measure(name);
842 for (
xml_attribute<Ch> *attribute = m_prev_attribute; attribute; attribute = attribute->m_prev_attribute)
843 if (internal::compare(attribute->name(), attribute->name_size(), name, name_size, case_sensitive))
848 return this->m_parent ? m_prev_attribute : 0;
861 name_size = internal::measure(name);
862 for (
xml_attribute<Ch> *attribute = m_next_attribute; attribute; attribute = attribute->m_next_attribute)
863 if (internal::compare(attribute->name(), attribute->name_size(), name, name_size, case_sensitive))
868 return this->m_parent ? m_next_attribute : 0;
889 template<
class Ch =
char>
890 class xml_node:
public xml_base<Ch>
904 , m_first_attribute(0)
926 while (node->parent())
927 node = node->parent();
941 name_size = internal::measure(name);
942 for (
xml_node<Ch> *child = m_first_node; child; child = child->next_sibling())
943 if (internal::compare(child->name(), child->name_size(), name, name_size, case_sensitive))
960 assert(m_first_node);
964 name_size = internal::measure(name);
965 for (
xml_node<Ch> *child = m_last_node; child; child = child->previous_sibling())
966 if (internal::compare(child->name(), child->name_size(), name, name_size, case_sensitive))
983 assert(this->m_parent);
987 name_size = internal::measure(name);
988 for (
xml_node<Ch> *sibling = m_prev_sibling; sibling; sibling = sibling->m_prev_sibling)
989 if (internal::compare(sibling->name(), sibling->name_size(), name, name_size, case_sensitive))
994 return m_prev_sibling;
1006 assert(this->m_parent);
1010 name_size = internal::measure(name);
1011 for (
xml_node<Ch> *sibling = m_next_sibling; sibling; sibling = sibling->m_next_sibling)
1012 if (internal::compare(sibling->name(), sibling->name_size(), name, name_size, case_sensitive))
1017 return m_next_sibling;
1030 name_size = internal::measure(name);
1031 for (
xml_attribute<Ch> *attribute = m_first_attribute; attribute; attribute = attribute->m_next_attribute)
1032 if (internal::compare(attribute->name(), attribute->name_size(), name, name_size, case_sensitive))
1037 return m_first_attribute;
1050 name_size = internal::measure(name);
1051 for (
xml_attribute<Ch> *attribute = m_last_attribute; attribute; attribute = attribute->m_prev_attribute)
1052 if (internal::compare(attribute->name(), attribute->name_size(), name, name_size, case_sensitive))
1057 return m_first_attribute ? m_last_attribute : 0;
1078 assert(child && !child->parent() && child->type() !=
node_document);
1081 child->m_next_sibling = m_first_node;
1082 m_first_node->m_prev_sibling = child;
1086 child->m_next_sibling = 0;
1087 m_last_node = child;
1089 m_first_node = child;
1090 child->m_parent =
this;
1091 child->m_prev_sibling = 0;
1099 assert(child && !child->parent() && child->type() !=
node_document);
1102 child->m_prev_sibling = m_last_node;
1103 m_last_node->m_next_sibling = child;
1107 child->m_prev_sibling = 0;
1108 m_first_node = child;
1110 m_last_node = child;
1111 child->m_parent =
this;
1112 child->m_next_sibling = 0;
1121 assert(!where || where->parent() ==
this);
1122 assert(child && !child->parent() && child->type() !=
node_document);
1123 if (where == m_first_node)
1125 else if (where == 0)
1129 child->m_prev_sibling = where->m_prev_sibling;
1130 child->m_next_sibling = where;
1131 where->m_prev_sibling->m_next_sibling = child;
1132 where->m_prev_sibling = child;
1133 child->m_parent =
this;
1144 m_first_node = child->m_next_sibling;
1145 if (child->m_next_sibling)
1146 child->m_next_sibling->m_prev_sibling = 0;
1149 child->m_parent = 0;
1159 if (child->m_prev_sibling)
1161 m_last_node = child->m_prev_sibling;
1162 child->m_prev_sibling->m_next_sibling = 0;
1166 child->m_parent = 0;
1173 assert(where && where->parent() ==
this);
1175 if (where == m_first_node)
1177 else if (where == m_last_node)
1181 where->m_prev_sibling->m_next_sibling = where->m_next_sibling;
1182 where->m_next_sibling->m_prev_sibling = where->m_prev_sibling;
1183 where->m_parent = 0;
1199 assert(attribute && !attribute->parent());
1202 attribute->m_next_attribute = m_first_attribute;
1203 m_first_attribute->m_prev_attribute = attribute;
1207 attribute->m_next_attribute = 0;
1208 m_last_attribute = attribute;
1210 m_first_attribute = attribute;
1211 attribute->m_parent =
this;
1212 attribute->m_prev_attribute = 0;
1219 assert(attribute && !attribute->parent());
1222 attribute->m_prev_attribute = m_last_attribute;
1223 m_last_attribute->m_next_attribute = attribute;
1227 attribute->m_prev_attribute = 0;
1228 m_first_attribute = attribute;
1230 m_last_attribute = attribute;
1231 attribute->m_parent =
this;
1232 attribute->m_next_attribute = 0;
1241 assert(!where || where->parent() ==
this);
1242 assert(attribute && !attribute->parent());
1243 if (where == m_first_attribute)
1245 else if (where == 0)
1249 attribute->m_prev_attribute = where->m_prev_attribute;
1250 attribute->m_next_attribute = where;
1251 where->m_prev_attribute->m_next_attribute = attribute;
1252 where->m_prev_attribute = attribute;
1253 attribute->m_parent =
this;
1264 if (attribute->m_next_attribute)
1266 attribute->m_next_attribute->m_prev_attribute = 0;
1269 m_last_attribute = 0;
1270 attribute->m_parent = 0;
1271 m_first_attribute = attribute->m_next_attribute;
1281 if (attribute->m_prev_attribute)
1283 attribute->m_prev_attribute->m_next_attribute = 0;
1284 m_last_attribute = attribute->m_prev_attribute;
1287 m_first_attribute = 0;
1288 attribute->m_parent = 0;
1296 if (where == m_first_attribute)
1298 else if (where == m_last_attribute)
1302 where->m_prev_attribute->m_next_attribute = where->m_next_attribute;
1303 where->m_next_attribute->m_prev_attribute = where->m_prev_attribute;
1304 where->m_parent = 0;
1312 attribute->m_parent = 0;
1313 m_first_attribute = 0;
1357 template<
class Ch =
char>
1358 class xml_document:
public xml_node<Ch>,
public memory_pool<Ch>
1386 this->remove_all_nodes();
1387 this->remove_all_attributes();
1390 parse_bom<Flags>(text);
1396 skip<whitespace_pred, Flags>(text);
1401 if (*text == Ch(
'<'))
1405 this->append_node(node);
1417 this->remove_all_nodes();
1418 this->remove_all_attributes();
1428 struct whitespace_pred
1430 static unsigned char test(Ch ch)
1432 return internal::lookup_tables<0>::lookup_whitespace[
static_cast<unsigned char>(ch)];
1437 struct node_name_pred
1439 static unsigned char test(Ch ch)
1441 return internal::lookup_tables<0>::lookup_node_name[
static_cast<unsigned char>(ch)];
1446 struct attribute_name_pred
1448 static unsigned char test(Ch ch)
1450 return internal::lookup_tables<0>::lookup_attribute_name[
static_cast<unsigned char>(ch)];
1457 static unsigned char test(Ch ch)
1459 return internal::lookup_tables<0>::lookup_text[
static_cast<unsigned char>(ch)];
1464 struct text_pure_no_ws_pred
1466 static unsigned char test(Ch ch)
1468 return internal::lookup_tables<0>::lookup_text_pure_no_ws[
static_cast<unsigned char>(ch)];
1473 struct text_pure_with_ws_pred
1475 static unsigned char test(Ch ch)
1477 return internal::lookup_tables<0>::lookup_text_pure_with_ws[
static_cast<unsigned char>(ch)];
1483 struct attribute_value_pred
1485 static unsigned char test(Ch ch)
1487 if (Quote == Ch(
'\''))
1488 return internal::lookup_tables<0>::lookup_attribute_data_1[
static_cast<unsigned char>(ch)];
1489 if (Quote == Ch(
'\"'))
1490 return internal::lookup_tables<0>::lookup_attribute_data_2[
static_cast<unsigned char>(ch)];
1497 struct attribute_value_pure_pred
1499 static unsigned char test(Ch ch)
1501 if (Quote == Ch(
'\''))
1502 return internal::lookup_tables<0>::lookup_attribute_data_1_pure[
static_cast<unsigned char>(ch)];
1503 if (Quote == Ch(
'\"'))
1504 return internal::lookup_tables<0>::lookup_attribute_data_2_pure[
static_cast<unsigned char>(ch)];
1511 static void insert_coded_character(Ch *&text,
unsigned long code)
1517 text[0] =
static_cast<unsigned char>(code);
1525 text[0] =
static_cast<unsigned char>(code);
1528 else if (code < 0x800)
1530 text[1] =
static_cast<unsigned char>((code | 0x80) & 0xBF); code >>= 6;
1531 text[0] =
static_cast<unsigned char>(code | 0xC0);
1534 else if (code < 0x10000)
1536 text[2] =
static_cast<unsigned char>((code | 0x80) & 0xBF); code >>= 6;
1537 text[1] =
static_cast<unsigned char>((code | 0x80) & 0xBF); code >>= 6;
1538 text[0] =
static_cast<unsigned char>(code | 0xE0);
1541 else if (code < 0x110000)
1543 text[3] =
static_cast<unsigned char>((code | 0x80) & 0xBF); code >>= 6;
1544 text[2] =
static_cast<unsigned char>((code | 0x80) & 0xBF); code >>= 6;
1545 text[1] =
static_cast<unsigned char>((code | 0x80) & 0xBF); code >>= 6;
1546 text[0] =
static_cast<unsigned char>(code | 0xF0);
1557 template<
class StopPred,
int Flags>
1558 static void skip(Ch *&text)
1561 while (StopPred::test(*tmp))
1569 template<
class StopPred,
class StopPredPure,
int Flags>
1570 static Ch *skip_and_expand_character_refs(Ch *&text)
1577 skip<StopPred, Flags>(text);
1582 skip<StopPredPure, Flags>(text);
1587 while (StopPred::test(*src))
1593 if (src[0] == Ch(
'&'))
1600 if (src[2] == Ch(
'm') && src[3] == Ch(
'p') && src[4] == Ch(
';'))
1607 if (src[2] == Ch(
'p') && src[3] == Ch(
'o') && src[4] == Ch(
's') && src[5] == Ch(
';'))
1618 if (src[2] == Ch(
'u') && src[3] == Ch(
'o') && src[4] == Ch(
't') && src[5] == Ch(
';'))
1629 if (src[2] == Ch(
't') && src[3] == Ch(
';'))
1640 if (src[2] == Ch(
't') && src[3] == Ch(
';'))
1651 if (src[2] == Ch(
'x'))
1653 unsigned long code = 0;
1657 unsigned char digit = internal::lookup_tables<0>::lookup_digits[
static_cast<unsigned char>(*src)];
1660 code = code * 16 + digit;
1663 insert_coded_character<Flags>(dest, code);
1667 unsigned long code = 0;
1671 unsigned char digit = internal::lookup_tables<0>::lookup_digits[
static_cast<unsigned char>(*src)];
1674 code = code * 10 + digit;
1677 insert_coded_character<Flags>(dest, code);
1679 if (*src == Ch(
';'))
1698 if (whitespace_pred::test(*src))
1700 *dest = Ch(
' '); ++dest;
1703 while (whitespace_pred::test(*src))
1725 void parse_bom(Ch *&text)
1728 if (
static_cast<unsigned char>(text[0]) == 0xEF &&
1729 static_cast<unsigned char>(text[1]) == 0xBB &&
1730 static_cast<unsigned char>(text[2]) == 0xBF)
1738 xml_node<Ch> *parse_xml_declaration(Ch *&text)
1744 while (text[0] != Ch(
'?') || text[1] != Ch(
'>'))
1758 skip<whitespace_pred, Flags>(text);
1761 parse_node_attributes<Flags>(text, declaration);
1764 if (text[0] != Ch(
'?') || text[1] != Ch(
'>'))
1773 xml_node<Ch> *parse_comment(Ch *&text)
1779 while (text[0] != Ch(
'-') || text[1] != Ch(
'-') || text[2] != Ch(
'>'))
1793 while (text[0] != Ch(
'-') || text[1] != Ch(
'-') || text[2] != Ch(
'>'))
1801 xml_node<Ch> *comment = this->allocate_node(
node_comment);
1802 comment->value(value, text - value);
1814 xml_node<Ch> *parse_doctype(Ch *&text)
1820 while (*text != Ch(
'>'))
1836 case Ch(
'['): ++depth;
break;
1837 case Ch(
']'): --depth;
break;
1860 xml_node<Ch> *doctype = this->allocate_node(
node_doctype);
1861 doctype->value(value, text - value);
1880 xml_node<Ch> *parse_pi(Ch *&text)
1886 xml_node<Ch> *pi = this->allocate_node(
node_pi);
1890 skip<node_name_pred, Flags>(text);
1893 pi->name(name, text - name);
1896 skip<whitespace_pred, Flags>(text);
1902 while (text[0] != Ch(
'?') || text[1] != Ch(
'>'))
1904 if (*text == Ch(
'\0'))
1910 pi->value(value, text - value);
1915 pi->name()[pi->name_size()] = Ch(
'\0');
1916 pi->value()[pi->value_size()] = Ch(
'\0');
1925 while (text[0] != Ch(
'?') || text[1] != Ch(
'>'))
1927 if (*text == Ch(
'\0'))
1940 Ch parse_and_append_data(xml_node<Ch> *node, Ch *&text, Ch *contents_start)
1944 text = contents_start;
1947 Ch *value = text, *end;
1949 end = skip_and_expand_character_refs<text_pred, text_pure_with_ws_pred, Flags>(text);
1951 end = skip_and_expand_character_refs<text_pred, text_pure_no_ws_pred, Flags>(text);
1959 if (*(end - 1) == Ch(
' '))
1965 while (whitespace_pred::test(*(end - 1)))
1974 xml_node<Ch> *data = this->allocate_node(
node_data);
1975 data->value(value, end - value);
1976 node->append_node(data);
1981 if (*node->value() == Ch(
'\0'))
1982 node->value(value, end - value);
1998 xml_node<Ch> *parse_cdata(Ch *&text)
2004 while (text[0] != Ch(
']') || text[1] != Ch(
']') || text[2] != Ch(
'>'))
2016 while (text[0] != Ch(
']') || text[1] != Ch(
']') || text[2] != Ch(
'>'))
2024 xml_node<Ch> *cdata = this->allocate_node(
node_cdata);
2025 cdata->value(value, text - value);
2037 xml_node<Ch> *parse_element(Ch *&text)
2040 xml_node<Ch> *element = this->allocate_node(
node_element);
2044 skip<node_name_pred, Flags>(text);
2047 element->name(name, text - name);
2050 skip<whitespace_pred, Flags>(text);
2053 parse_node_attributes<Flags>(text, element);
2056 if (*text == Ch(
'>'))
2059 parse_node_contents<Flags>(text, element);
2061 else if (*text == Ch(
'/'))
2064 if (*text != Ch(
'>'))
2073 element->name()[element->name_size()] = Ch(
'\0');
2081 xml_node<Ch> *parse_node(Ch *&text)
2090 return parse_element<Flags>(text);
2095 if ((text[0] == Ch(
'x') || text[0] == Ch(
'X')) &&
2096 (text[1] == Ch(
'm') || text[1] == Ch(
'M')) &&
2097 (text[2] == Ch(
'l') || text[2] == Ch(
'L')) &&
2098 whitespace_pred::test(text[3]))
2102 return parse_xml_declaration<Flags>(text);
2107 return parse_pi<Flags>(text);
2119 if (text[2] == Ch(
'-'))
2123 return parse_comment<Flags>(text);
2129 if (text[2] == Ch(
'C') && text[3] == Ch(
'D') && text[4] == Ch(
'A') &&
2130 text[5] == Ch(
'T') && text[6] == Ch(
'A') && text[7] == Ch(
'['))
2134 return parse_cdata<Flags>(text);
2140 if (text[2] == Ch(
'O') && text[3] == Ch(
'C') && text[4] == Ch(
'T') &&
2141 text[5] == Ch(
'Y') && text[6] == Ch(
'P') && text[7] == Ch(
'E') &&
2142 whitespace_pred::test(text[8]))
2146 return parse_doctype<Flags>(text);
2153 while (*text != Ch(
'>'))
2167 void parse_node_contents(Ch *&text, xml_node<Ch> *node)
2173 Ch *contents_start = text;
2174 skip<whitespace_pred, Flags>(text);
2175 Ch next_char = *text;
2189 if (text[1] == Ch(
'/'))
2196 Ch *closing_name = text;
2197 skip<node_name_pred, Flags>(text);
2198 if (!internal::compare(node->name(), node->name_size(), closing_name, text - closing_name,
true))
2204 skip<node_name_pred, Flags>(text);
2207 skip<whitespace_pred, Flags>(text);
2208 if (*text != Ch(
'>'))
2217 if (xml_node<Ch> *child = parse_node<Flags>(text))
2218 node->append_node(child);
2228 next_char = parse_and_append_data<Flags>(node, text, contents_start);
2229 goto after_data_node;
2237 void parse_node_attributes(Ch *&text, xml_node<Ch> *node)
2240 while (attribute_name_pred::test(*text))
2245 skip<attribute_name_pred, Flags>(text);
2250 xml_attribute<Ch> *attribute = this->allocate_attribute();
2251 attribute->name(name, text - name);
2252 node->append_attribute(attribute);
2255 skip<whitespace_pred, Flags>(text);
2258 if (*text != Ch(
'='))
2264 attribute->name()[attribute->name_size()] = 0;
2267 skip<whitespace_pred, Flags>(text);
2271 if (quote != Ch(
'\'') && quote != Ch(
'"'))
2276 Ch *value = text, *end;
2278 if (quote == Ch(
'\''))
2279 end = skip_and_expand_character_refs<attribute_value_pred<Ch(
'\'')>, attribute_value_pure_pred<Ch(
'\'')>, AttFlags>(text);
2281 end = skip_and_expand_character_refs<attribute_value_pred<Ch(
'"')>, attribute_value_pure_pred<Ch(
'"')>, AttFlags>(text);
2284 attribute->value(value, end - value);
2293 attribute->value()[attribute->value_size()] = 0;
2296 skip<whitespace_pred, Flags>(text);
2308 const unsigned char lookup_tables<Dummy>::lookup_whitespace[256] =
2311 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0,
2312 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
2313 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
2314 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
2315 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
2316 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
2317 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
2318 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
2319 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
2320 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
2321 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
2322 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
2323 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
2324 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
2325 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
2326 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
2331 const unsigned char lookup_tables<Dummy>::lookup_node_name[256] =
2334 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 1, 1,
2335 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2336 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0,
2337 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0,
2338 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2339 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2340 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2341 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2342 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2343 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2344 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2345 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2346 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2347 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2348 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2349 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
2354 const unsigned char lookup_tables<Dummy>::lookup_text[256] =
2357 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2358 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2359 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2360 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1,
2361 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2362 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2363 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2364 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2365 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2366 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2367 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2368 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2369 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2370 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2371 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2372 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
2378 const unsigned char lookup_tables<Dummy>::lookup_text_pure_no_ws[256] =
2381 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2382 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2383 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2384 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1,
2385 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2386 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2387 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2388 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2389 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2390 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2391 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2392 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2393 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2394 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2395 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2396 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
2402 const unsigned char lookup_tables<Dummy>::lookup_text_pure_with_ws[256] =
2405 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 1, 1,
2406 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2407 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2408 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1,
2409 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2410 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2411 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2412 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2413 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2414 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2415 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2416 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2417 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2418 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2419 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2420 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
2425 const unsigned char lookup_tables<Dummy>::lookup_attribute_name[256] =
2428 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 1, 1,
2429 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2430 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0,
2431 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0,
2432 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2433 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2434 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2435 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2436 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2437 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2438 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2439 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2440 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2441 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2442 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2443 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
2448 const unsigned char lookup_tables<Dummy>::lookup_attribute_data_1[256] =
2451 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2452 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2453 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1,
2454 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2455 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2456 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2457 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2458 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2459 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2460 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2461 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2462 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2463 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2464 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2465 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2466 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
2471 const unsigned char lookup_tables<Dummy>::lookup_attribute_data_1_pure[256] =
2474 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2475 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2476 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1,
2477 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2478 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2479 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2480 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2481 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2482 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2483 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2484 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2485 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2486 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2487 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2488 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2489 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
2494 const unsigned char lookup_tables<Dummy>::lookup_attribute_data_2[256] =
2497 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2498 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2499 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2500 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2501 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2502 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2503 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2504 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2505 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2506 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2507 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2508 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2509 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2510 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2511 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2512 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
2517 const unsigned char lookup_tables<Dummy>::lookup_attribute_data_2_pure[256] =
2520 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2521 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2522 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2523 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2524 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2525 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2526 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2527 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2528 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2529 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2530 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2531 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2532 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2533 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2534 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2535 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
2540 const unsigned char lookup_tables<Dummy>::lookup_digits[256] =
2543 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,
2544 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,
2545 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,
2546 0, 1, 2, 3, 4, 5, 6, 7, 8, 9,255,255,255,255,255,255,
2547 255, 10, 11, 12, 13, 14, 15,255,255,255,255,255,255,255,255,255,
2548 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,
2549 255, 10, 11, 12, 13, 14, 15,255,255,255,255,255,255,255,255,255,
2550 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,
2551 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,
2552 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,
2553 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,
2554 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,
2555 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,
2556 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,
2557 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,
2558 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255
2563 const unsigned char lookup_tables<Dummy>::lookup_upcase[256] =
2566 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15,
2567 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31,
2568 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47,
2569 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63,
2570 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79,
2571 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95,
2572 96, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79,
2573 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 123,124,125,126,127,
2574 128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,
2575 144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,
2576 160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,
2577 176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,
2578 192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,
2579 208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,
2580 224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,
2581 240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255
2589 #undef RAPIDXML_PARSE_ERROR
2593 #pragma warning(pop)