24 #ifndef TINYXML2_INCLUDED 25 #define TINYXML2_INCLUDED 27 #if defined(ANDROID_NDK) || defined(__BORLANDC__) || defined(__QNXNTO__) 56 #if defined( _DEBUG ) || defined (__DEBUG__) 57 # ifndef TINYXML2_DEBUG 58 # define TINYXML2_DEBUG 63 # pragma warning(push) 64 # pragma warning(disable: 4251) 68 # ifdef TINYXML2_EXPORT 69 # define TINYXML2_LIB __declspec(dllexport) 70 # elif defined(TINYXML2_IMPORT) 71 # define TINYXML2_LIB __declspec(dllimport) 76 # define TINYXML2_LIB __attribute__((visibility("default"))) 82 #if defined(TINYXML2_DEBUG) 83 # if defined(_MSC_VER) 84 # // "(void)0," is for suppressing C4127 warning in "assert(false)", "assert(true)" and the like 85 # define TIXMLASSERT( x ) if ( !((void)0,(x))) { __debugbreak(); } 86 # elif defined (ANDROID_NDK) 87 # include <android/log.h> 88 # define TIXMLASSERT( x ) if ( !(x)) { __android_log_assert( "assert", "grinliz", "ASSERT in '%s' at %d.", __FILE__, __LINE__ ); } 91 # define TIXMLASSERT assert 94 # define TIXMLASSERT( x ) {} 101 static const int TIXML2_MAJOR_VERSION = 7;
102 static const int TIXML2_MINOR_VERSION = 0;
103 static const int TIXML2_PATCH_VERSION = 1;
105 #define TINYXML2_MAJOR_VERSION 7 106 #define TINYXML2_MINOR_VERSION 0 107 #define TINYXML2_PATCH_VERSION 1 114 static const int TINYXML2_MAX_ELEMENT_DEPTH = 100;
123 class XMLDeclaration;
135 class TINYXML2_LIB StrPair
139 NEEDS_ENTITY_PROCESSING = 0x01,
140 NEEDS_NEWLINE_NORMALIZATION = 0x02,
141 NEEDS_WHITESPACE_COLLAPSING = 0x04,
143 TEXT_ELEMENT = NEEDS_ENTITY_PROCESSING | NEEDS_NEWLINE_NORMALIZATION,
144 TEXT_ELEMENT_LEAVE_ENTITIES = NEEDS_NEWLINE_NORMALIZATION,
146 ATTRIBUTE_VALUE = NEEDS_ENTITY_PROCESSING | NEEDS_NEWLINE_NORMALIZATION,
147 ATTRIBUTE_VALUE_LEAVE_ENTITIES = NEEDS_NEWLINE_NORMALIZATION,
148 COMMENT = NEEDS_NEWLINE_NORMALIZATION
151 StrPair() : _flags( 0 ), _start( 0 ), _end( 0 ) {}
154 void Set(
char* start,
char* end,
int flags ) {
155 TIXMLASSERT( start );
160 _flags = flags | NEEDS_FLUSH;
163 const char* GetStr();
166 return _start == _end;
169 void SetInternedStr(
const char* str ) {
171 _start = const_cast<char*>(str);
174 void SetStr(
const char* str,
int flags=0 );
176 char* ParseText(
char* in,
const char* endTag,
int strFlags,
int* curLineNumPtr );
177 char* ParseName(
char* in );
179 void TransferTo( StrPair* other );
183 void CollapseWhitespace();
194 StrPair(
const StrPair& other );
195 void operator=(
const StrPair& other );
204 template <
class T,
int INITIAL_SIZE>
210 _allocated( INITIAL_SIZE ),
216 if ( _mem != _pool ) {
226 TIXMLASSERT( _size < INT_MAX );
227 EnsureCapacity( _size+1 );
232 T* PushArr(
int count ) {
233 TIXMLASSERT( count >= 0 );
234 TIXMLASSERT( _size <= INT_MAX - count );
235 EnsureCapacity( _size+count );
236 T* ret = &_mem[_size];
242 TIXMLASSERT( _size > 0 );
247 void PopArr(
int count ) {
248 TIXMLASSERT( _size >= count );
256 T& operator[](
int i) {
257 TIXMLASSERT( i>= 0 && i < _size );
261 const T& operator[](
int i)
const {
262 TIXMLASSERT( i>= 0 && i < _size );
266 const T& PeekTop()
const {
267 TIXMLASSERT( _size > 0 );
268 return _mem[ _size - 1];
272 TIXMLASSERT( _size >= 0 );
276 int Capacity()
const {
277 TIXMLASSERT( _allocated >= INITIAL_SIZE );
281 void SwapRemove(
int i) {
282 TIXMLASSERT(i >= 0 && i < _size);
283 TIXMLASSERT(_size > 0);
284 _mem[i] = _mem[_size - 1];
288 const T* Mem()
const {
299 DynArray(
const DynArray& );
300 void operator=(
const DynArray& );
302 void EnsureCapacity(
int cap ) {
303 TIXMLASSERT( cap > 0 );
304 if ( cap > _allocated ) {
305 TIXMLASSERT( cap <= INT_MAX / 2 );
306 int newAllocated = cap * 2;
307 T* newMem =
new T[newAllocated];
308 TIXMLASSERT( newAllocated >= _size );
309 memcpy( newMem, _mem,
sizeof(T)*_size );
310 if ( _mem != _pool ) {
314 _allocated = newAllocated;
319 T _pool[INITIAL_SIZE];
333 virtual ~MemPool() {}
335 virtual int ItemSize()
const = 0;
336 virtual void* Alloc() = 0;
337 virtual void Free(
void* ) = 0;
338 virtual void SetTracked() = 0;
345 template<
int ITEM_SIZE >
346 class MemPoolT :
public MemPool
349 MemPoolT() : _blockPtrs(), _root(0), _currentAllocs(0), _nAllocs(0), _maxAllocs(0), _nUntracked(0) {}
351 MemPoolT< ITEM_SIZE >::Clear();
356 while( !_blockPtrs.Empty()) {
357 Block* lastBlock = _blockPtrs.Pop();
367 virtual int ItemSize()
const {
370 int CurrentAllocs()
const {
371 return _currentAllocs;
374 virtual void* Alloc() {
377 Block* block =
new Block();
378 _blockPtrs.Push( block );
380 Item* blockItems = block->items;
381 for(
int i = 0; i < ITEMS_PER_BLOCK - 1; ++i ) {
382 blockItems[i].next = &(blockItems[i + 1]);
384 blockItems[ITEMS_PER_BLOCK - 1].next = 0;
387 Item*
const result = _root;
388 TIXMLASSERT( result != 0 );
392 if ( _currentAllocs > _maxAllocs ) {
393 _maxAllocs = _currentAllocs;
400 virtual void Free(
void* mem ) {
405 Item* item = static_cast<Item*>( mem );
406 #ifdef TINYXML2_DEBUG 407 memset( item, 0xfe,
sizeof( *item ) );
412 void Trace(
const char* name ) {
413 printf(
"Mempool %s watermark=%d [%dk] current=%d size=%d nAlloc=%d blocks=%d\n",
414 name, _maxAllocs, _maxAllocs * ITEM_SIZE / 1024, _currentAllocs,
415 ITEM_SIZE, _nAllocs, _blockPtrs.Size() );
422 int Untracked()
const {
437 enum { ITEMS_PER_BLOCK = (4 * 1024) / ITEM_SIZE };
440 MemPoolT(
const MemPoolT& );
441 void operator=(
const MemPoolT& );
445 char itemData[ITEM_SIZE];
448 Item items[ITEMS_PER_BLOCK];
450 DynArray< Block*, 10 > _blockPtrs;
525 XML_WRONG_ATTRIBUTE_TYPE,
526 XML_ERROR_FILE_NOT_FOUND,
527 XML_ERROR_FILE_COULD_NOT_BE_OPENED,
528 XML_ERROR_FILE_READ_ERROR,
529 XML_ERROR_PARSING_ELEMENT,
530 XML_ERROR_PARSING_ATTRIBUTE,
531 XML_ERROR_PARSING_TEXT,
532 XML_ERROR_PARSING_CDATA,
533 XML_ERROR_PARSING_COMMENT,
534 XML_ERROR_PARSING_DECLARATION,
535 XML_ERROR_PARSING_UNKNOWN,
536 XML_ERROR_EMPTY_DOCUMENT,
537 XML_ERROR_MISMATCHED_ELEMENT,
539 XML_CAN_NOT_CONVERT_TEXT,
541 XML_ELEMENT_DEPTH_EXCEEDED,
550 class TINYXML2_LIB XMLUtil
553 static const char* SkipWhiteSpace(
const char* p,
int* curLineNumPtr ) {
556 while( IsWhiteSpace(*p) ) {
557 if (curLineNumPtr && *p ==
'\n') {
565 static char* SkipWhiteSpace(
char* p,
int* curLineNumPtr ) {
566 return const_cast<char*>( SkipWhiteSpace( const_cast<const char*>(p), curLineNumPtr ) );
571 static bool IsWhiteSpace(
char p ) {
572 return !IsUTF8Continuation(p) && isspace( static_cast<unsigned char>(p) );
575 inline static bool IsNameStartChar(
unsigned char ch ) {
580 if ( isalpha( ch ) ) {
583 return ch ==
':' || ch ==
'_';
586 inline static bool IsNameChar(
unsigned char ch ) {
587 return IsNameStartChar( ch )
593 inline static bool StringEqual(
const char* p,
const char* q,
int nChar=INT_MAX ) {
599 TIXMLASSERT( nChar >= 0 );
600 return strncmp( p, q, nChar ) == 0;
603 inline static bool IsUTF8Continuation(
char p ) {
604 return ( p & 0x80 ) != 0;
607 static const char* ReadBOM(
const char* p,
bool* hasBOM );
610 static const char* GetCharacterRef(
const char* p,
char* value,
int* length );
611 static void ConvertUTF32ToUTF8(
unsigned long input,
char* output,
int* length );
614 static void ToStr(
int v,
char* buffer,
int bufferSize );
615 static void ToStr(
unsigned v,
char* buffer,
int bufferSize );
616 static void ToStr(
bool v,
char* buffer,
int bufferSize );
617 static void ToStr(
float v,
char* buffer,
int bufferSize );
618 static void ToStr(
double v,
char* buffer,
int bufferSize );
619 static void ToStr(int64_t v,
char* buffer,
int bufferSize);
622 static bool ToInt(
const char* str,
int* value );
623 static bool ToUnsigned(
const char* str,
unsigned* value );
624 static bool ToBool(
const char* str,
bool* value );
625 static bool ToFloat(
const char* str,
float* value );
626 static bool ToDouble(
const char* str,
double* value );
627 static bool ToInt64(
const char* str, int64_t* value);
634 static void SetBoolSerialization(
const char* writeTrue,
const char* writeFalse);
637 static const char* writeBoolTrue;
638 static const char* writeBoolFalse;
675 TIXMLASSERT( _document );
680 TIXMLASSERT( _document );
712 virtual const XMLText* ToText()
const {
715 virtual const XMLComment* ToComment()
const {
718 virtual const XMLDocument* ToDocument()
const {
721 virtual const XMLDeclaration* ToDeclaration()
const {
724 virtual const XMLUnknown* ToUnknown()
const {
737 const char* Value()
const;
742 void SetValue(
const char* val,
bool staticMem=
false );
773 const XMLElement* FirstChildElement(
const char* name = 0 )
const;
775 XMLElement* FirstChildElement(
const char* name = 0 ) {
776 return const_cast<XMLElement*>(const_cast<const XMLNode*>(
this)->FirstChildElement( name ));
791 const XMLElement* LastChildElement(
const char* name = 0 )
const;
793 XMLElement* LastChildElement(
const char* name = 0 ) {
794 return const_cast<XMLElement*>(const_cast<const XMLNode*>(
this)->LastChildElement(name) );
807 const XMLElement* PreviousSiblingElement(
const char* name = 0 )
const ;
809 XMLElement* PreviousSiblingElement(
const char* name = 0 ) {
810 return const_cast<XMLElement*>(const_cast<const XMLNode*>(
this)->PreviousSiblingElement( name ) );
823 const XMLElement* NextSiblingElement(
const char* name = 0 )
const;
825 XMLElement* NextSiblingElement(
const char* name = 0 ) {
826 return const_cast<XMLElement*>(const_cast<const XMLNode*>(
this)->NextSiblingElement( name ) );
836 XMLNode* InsertEndChild( XMLNode* addThis );
838 XMLNode* LinkEndChild( XMLNode* addThis ) {
839 return InsertEndChild( addThis );
848 XMLNode* InsertFirstChild( XMLNode* addThis );
857 XMLNode* InsertAfterChild( XMLNode* afterThis, XMLNode* addThis );
862 void DeleteChildren();
867 void DeleteChild( XMLNode* node );
878 virtual XMLNode* ShallowClone( XMLDocument* document )
const = 0;
893 XMLNode* DeepClone( XMLDocument* target )
const;
901 virtual bool ShallowEqual(
const XMLNode* compare )
const = 0;
925 virtual bool Accept( XMLVisitor* visitor )
const = 0;
945 virtual char* ParseDeep(
char* p, StrPair* parentEndTag,
int* curLineNumPtr);
949 mutable StrPair _value;
963 static void DeleteNode(
XMLNode* node );
964 void InsertChildPreamble(
XMLNode* insertThis )
const;
965 const XMLElement* ToElementWithName(
const char* name )
const;
988 virtual bool Accept(
XMLVisitor* visitor )
const;
993 virtual const XMLText* ToText()
const {
1007 virtual bool ShallowEqual(
const XMLNode* compare )
const;
1011 virtual ~XMLText() {}
1013 char* ParseDeep(
char* p, StrPair* parentEndTag,
int* curLineNumPtr );
1018 XMLText(
const XMLText& );
1019 XMLText& operator=(
const XMLText& );
1031 virtual const XMLComment* ToComment()
const {
1035 virtual bool Accept( XMLVisitor* visitor )
const;
1037 virtual XMLNode* ShallowClone( XMLDocument* document )
const;
1038 virtual bool ShallowEqual(
const XMLNode* compare )
const;
1041 explicit XMLComment( XMLDocument* doc );
1042 virtual ~XMLComment();
1044 char* ParseDeep(
char* p, StrPair* parentEndTag,
int* curLineNumPtr);
1047 XMLComment(
const XMLComment& );
1048 XMLComment& operator=(
const XMLComment& );
1074 virtual bool Accept( XMLVisitor* visitor )
const;
1076 virtual XMLNode* ShallowClone( XMLDocument* document )
const;
1077 virtual bool ShallowEqual(
const XMLNode* compare )
const;
1080 explicit XMLDeclaration( XMLDocument* doc );
1081 virtual ~XMLDeclaration();
1083 char* ParseDeep(
char* p, StrPair* parentEndTag,
int* curLineNumPtr );
1086 XMLDeclaration(
const XMLDeclaration& );
1087 XMLDeclaration& operator=(
const XMLDeclaration& );
1105 virtual const XMLUnknown* ToUnknown()
const {
1109 virtual bool Accept( XMLVisitor* visitor )
const;
1111 virtual XMLNode* ShallowClone( XMLDocument* document )
const;
1112 virtual bool ShallowEqual(
const XMLNode* compare )
const;
1115 explicit XMLUnknown( XMLDocument* doc );
1116 virtual ~XMLUnknown();
1118 char* ParseDeep(
char* p, StrPair* parentEndTag,
int* curLineNumPtr );
1121 XMLUnknown(
const XMLUnknown& );
1122 XMLUnknown& operator=(
const XMLUnknown& );
1138 const char* Name()
const;
1141 const char* Value()
const;
1161 int64_t Int64Value()
const {
1163 QueryInt64Value(&i);
1170 QueryUnsignedValue( &i );
1176 QueryBoolValue( &b );
1182 QueryDoubleValue( &d );
1188 QueryFloatValue( &f );
1196 XMLError QueryIntValue(
int* value )
const;
1198 XMLError QueryUnsignedValue(
unsigned int* value )
const;
1200 XMLError QueryInt64Value(int64_t* value)
const;
1202 XMLError QueryBoolValue(
bool* value )
const;
1204 XMLError QueryDoubleValue(
double* value )
const;
1206 XMLError QueryFloatValue(
float* value )
const;
1209 void SetAttribute(
const char* value );
1211 void SetAttribute(
int value );
1213 void SetAttribute(
unsigned value );
1215 void SetAttribute(int64_t value);
1217 void SetAttribute(
bool value );
1219 void SetAttribute(
double value );
1221 void SetAttribute(
float value );
1224 enum { BUF_SIZE = 200 };
1226 XMLAttribute() : _name(), _value(),_parseLineNum( 0 ), _next( 0 ), _memPool( 0 ) {}
1227 virtual ~XMLAttribute() {}
1229 XMLAttribute(
const XMLAttribute& );
1230 void operator=(
const XMLAttribute& );
1231 void SetName(
const char* name );
1233 char* ParseDeep(
char* p,
bool processEntities,
int* curLineNumPtr );
1235 mutable StrPair _name;
1236 mutable StrPair _value;
1238 XMLAttribute* _next;
1256 void SetName(
const char* str,
bool staticMem=
false ) {
1257 SetValue( str, staticMem );
1263 virtual const XMLElement* ToElement()
const {
1266 virtual bool Accept( XMLVisitor* visitor )
const;
1291 const char* Attribute(
const char* name,
const char* value=0 )
const;
1299 int IntAttribute(
const char* name,
int defaultValue = 0)
const;
1301 unsigned UnsignedAttribute(
const char* name,
unsigned defaultValue = 0)
const;
1303 int64_t Int64Attribute(
const char* name, int64_t defaultValue = 0)
const;
1305 bool BoolAttribute(
const char* name,
bool defaultValue =
false)
const;
1307 double DoubleAttribute(
const char* name,
double defaultValue = 0)
const;
1309 float FloatAttribute(
const char* name,
float defaultValue = 0)
const;
1327 return XML_NO_ATTRIBUTE;
1336 return XML_NO_ATTRIBUTE;
1345 return XML_NO_ATTRIBUTE;
1354 return XML_NO_ATTRIBUTE;
1362 return XML_NO_ATTRIBUTE;
1370 return XML_NO_ATTRIBUTE;
1379 return XML_NO_ATTRIBUTE;
1381 *value = a->
Value();
1405 return QueryIntAttribute( name, value );
1408 XMLError QueryAttribute(
const char* name,
unsigned int* value )
const {
1409 return QueryUnsignedAttribute( name, value );
1412 XMLError QueryAttribute(
const char* name, int64_t* value)
const {
1413 return QueryInt64Attribute(name, value);
1416 XMLError QueryAttribute(
const char* name,
bool* value )
const {
1417 return QueryBoolAttribute( name, value );
1420 XMLError QueryAttribute(
const char* name,
double* value )
const {
1421 return QueryDoubleAttribute( name, value );
1424 XMLError QueryAttribute(
const char* name,
float* value )
const {
1425 return QueryFloatAttribute( name, value );
1469 void DeleteAttribute(
const char* name );
1473 return _rootAttribute;
1476 const XMLAttribute* FindAttribute(
const char* name )
const;
1506 const char* GetText()
const;
1542 void SetText(
const char* inText );
1544 void SetText(
int value );
1546 void SetText(
unsigned value );
1548 void SetText(int64_t value);
1550 void SetText(
bool value );
1552 void SetText(
double value );
1554 void SetText(
float value );
1582 XMLError QueryIntText(
int* ival )
const;
1584 XMLError QueryUnsignedText(
unsigned* uval )
const;
1586 XMLError QueryInt64Text(int64_t* uval)
const;
1588 XMLError QueryBoolText(
bool* bval )
const;
1590 XMLError QueryDoubleText(
double* dval )
const;
1592 XMLError QueryFloatText(
float* fval )
const;
1594 int IntText(
int defaultValue = 0)
const;
1597 unsigned UnsignedText(
unsigned defaultValue = 0)
const;
1599 int64_t Int64Text(int64_t defaultValue = 0)
const;
1601 bool BoolText(
bool defaultValue =
false)
const;
1603 double DoubleText(
double defaultValue = 0)
const;
1605 float FloatText(
float defaultValue = 0)
const;
1608 enum ElementClosingType {
1613 ElementClosingType ClosingType()
const {
1614 return _closingType;
1616 virtual XMLNode* ShallowClone( XMLDocument* document )
const;
1617 virtual bool ShallowEqual(
const XMLNode* compare )
const;
1620 char* ParseDeep(
char* p, StrPair* parentEndTag,
int* curLineNumPtr );
1623 XMLElement( XMLDocument* doc );
1624 virtual ~XMLElement();
1625 XMLElement(
const XMLElement& );
1626 void operator=(
const XMLElement& );
1628 XMLAttribute* FindOrCreateAttribute(
const char* name );
1629 char* ParseAttributes(
char* p,
int* curLineNumPtr );
1630 static void DeleteAttribute( XMLAttribute* attribute );
1631 XMLAttribute* CreateAttribute();
1633 enum { BUF_SIZE = 200 };
1634 ElementClosingType _closingType;
1638 XMLAttribute* _rootAttribute;
1643 PRESERVE_WHITESPACE,
1665 XMLDocument(
bool processEntities =
true, Whitespace whitespaceMode = PRESERVE_WHITESPACE );
1669 TIXMLASSERT(
this == _document );
1673 TIXMLASSERT(
this == _document );
1687 XMLError Parse(
const char* xml,
size_t nBytes=(
size_t)(-1) );
1694 XMLError LoadFile(
const char* filename );
1707 XMLError LoadFile( FILE* );
1714 XMLError SaveFile(
const char* filename,
bool compact =
false );
1723 XMLError SaveFile( FILE* fp,
bool compact =
false );
1725 bool ProcessEntities()
const {
1726 return _processEntities;
1728 Whitespace WhitespaceMode()
const {
1729 return _whitespaceMode;
1748 return FirstChildElement();
1751 return FirstChildElement();
1768 void Print( XMLPrinter* streamer=0 )
const;
1769 virtual bool Accept( XMLVisitor* visitor )
const;
1776 XMLElement* NewElement(
const char* name );
1782 XMLComment* NewComment(
const char* comment );
1788 XMLText* NewText(
const char* text );
1800 XMLDeclaration* NewDeclaration(
const char* text=0 );
1806 XMLUnknown* NewUnknown(
const char* text );
1812 void DeleteNode( XMLNode* node );
1815 SetError(XML_SUCCESS, 0, 0);
1820 return _errorID != XML_SUCCESS;
1826 const char* ErrorName()
const;
1827 static const char* ErrorIDToName(XMLError errorID);
1832 const char* ErrorStr()
const;
1835 void PrintError()
const;
1840 return _errorLineNum;
1856 char* Identify(
char* p,
XMLNode** node );
1873 bool _processEntities;
1875 Whitespace _whitespaceMode;
1876 mutable StrPair _errorStr;
1879 int _parseCurLineNum;
1887 DynArray<XMLNode*, 10> _unlinked;
1891 MemPoolT<
sizeof(
XMLText) > _textPool;
1894 static const char* _errorNames[XML_ERROR_COUNT];
1898 void SetError( XMLError error,
int lineNum,
const char* format, ... );
1903 class DepthTracker {
1906 this->_document = document;
1907 document->PushDepth();
1910 _document->PopDepth();
1913 XMLDocument * _document;
1918 template<
class NodeType,
int PoolElementSize>
1919 NodeType* CreateUnlinkedNode( MemPoolT<PoolElementSize>& pool );
1922 template<
class NodeType,
int PoolElementSize>
1923 inline NodeType* XMLDocument::CreateUnlinkedNode( MemPoolT<PoolElementSize>& pool )
1925 TIXMLASSERT(
sizeof( NodeType ) == PoolElementSize );
1926 TIXMLASSERT(
sizeof( NodeType ) == pool.ItemSize() );
1927 NodeType* returnNode =
new (pool.Alloc()) NodeType(
this );
1928 TIXMLASSERT( returnNode );
1929 returnNode->_memPool = &pool;
1931 _unlinked.Push(returnNode);
2010 return XMLHandle( _node ? _node->FirstChild() : 0 );
2014 return XMLHandle( _node ? _node->FirstChildElement( name ) : 0 );
2018 return XMLHandle( _node ? _node->LastChild() : 0 );
2022 return XMLHandle( _node ? _node->LastChildElement( name ) : 0 );
2026 return XMLHandle( _node ? _node->PreviousSibling() : 0 );
2030 return XMLHandle( _node ? _node->PreviousSiblingElement( name ) : 0 );
2034 return XMLHandle( _node ? _node->NextSibling() : 0 );
2038 return XMLHandle( _node ? _node->NextSiblingElement( name ) : 0 );
2047 return ( _node ? _node->ToElement() : 0 );
2051 return ( _node ? _node->ToText() : 0 );
2055 return ( _node ? _node->ToUnknown() : 0 );
2059 return ( _node ? _node->ToDeclaration() : 0 );
2089 const XMLConstHandle FirstChildElement(
const char* name = 0 )
const {
2090 return XMLConstHandle( _node ? _node->FirstChildElement( name ) : 0 );
2095 const XMLConstHandle LastChildElement(
const char* name = 0 )
const {
2096 return XMLConstHandle( _node ? _node->LastChildElement( name ) : 0 );
2101 const XMLConstHandle PreviousSiblingElement(
const char* name = 0 )
const {
2102 return XMLConstHandle( _node ? _node->PreviousSiblingElement( name ) : 0 );
2107 const XMLConstHandle NextSiblingElement(
const char* name = 0 )
const {
2108 return XMLConstHandle( _node ? _node->NextSiblingElement( name ) : 0 );
2112 const XMLNode* ToNode()
const {
2116 return ( _node ? _node->ToElement() : 0 );
2118 const XMLText* ToText()
const {
2119 return ( _node ? _node->ToText() : 0 );
2122 return ( _node ? _node->ToUnknown() : 0 );
2125 return ( _node ? _node->ToDeclaration() : 0 );
2184 XMLPrinter( FILE* file=0,
bool compact =
false,
int depth = 0 );
2188 void PushHeader(
bool writeBOM,
bool writeDeclaration );
2192 void OpenElement(
const char* name,
bool compactMode=
false );
2194 void PushAttribute(
const char* name,
const char* value );
2195 void PushAttribute(
const char* name,
int value );
2196 void PushAttribute(
const char* name,
unsigned value );
2197 void PushAttribute(
const char* name, int64_t value);
2198 void PushAttribute(
const char* name,
bool value );
2199 void PushAttribute(
const char* name,
double value );
2201 virtual void CloseElement(
bool compactMode=
false );
2204 void PushText(
const char* text,
bool cdata=
false );
2206 void PushText(
int value );
2208 void PushText(
unsigned value );
2210 void PushText(int64_t value);
2212 void PushText(
bool value );
2214 void PushText(
float value );
2216 void PushText(
double value );
2219 void PushComment(
const char* comment );
2221 void PushDeclaration(
const char* value );
2222 void PushUnknown(
const char* value );
2230 virtual bool VisitExit(
const XMLElement& element );
2232 virtual bool Visit(
const XMLText& text );
2233 virtual bool Visit(
const XMLComment& comment );
2235 virtual bool Visit(
const XMLUnknown& unknown );
2242 return _buffer.Mem();
2250 return _buffer.Size();
2259 _firstElement =
true;
2263 virtual bool CompactMode(
const XMLElement& ) {
return _compactMode; }
2268 virtual void PrintSpace(
int depth );
2269 void Print(
const char* format, ... );
2270 void Write(
const char* data,
size_t size );
2271 inline void Write(
const char* data ) { Write( data, strlen( data ) ); }
2272 void Putc(
char ch );
2274 void SealElementIfJustOpened();
2275 bool _elementJustOpened;
2276 DynArray< const char*, 10 > _stack;
2279 void PrintString(
const char*,
bool restrictedEntitySet );
2285 bool _processEntities;
2292 bool _entityFlag[ENTITY_RANGE];
2293 bool _restrictedEntityFlag[ENTITY_RANGE];
2295 DynArray< char, 20 > _buffer;
2298 XMLPrinter(
const XMLPrinter& );
2299 XMLPrinter& operator=(
const XMLPrinter& );
2305 #if defined(_MSC_VER) 2306 # pragma warning(pop) 2309 #endif // TINYXML2_INCLUDED XMLError QueryInt64Attribute(const char *name, int64_t *value) const
See QueryIntAttribute()
Definition: tinyxml2.h:1342
XMLError QueryIntValue(int *value) const
XMLError QueryBoolAttribute(const char *name, bool *value) const
See QueryIntAttribute()
Definition: tinyxml2.h:1351
virtual bool VisitExit(const XMLDocument &)
Visit a document.
Definition: tinyxml2.h:490
virtual XMLNode * ShallowClone(XMLDocument *) const
Definition: tinyxml2.h:1861
virtual bool ShallowEqual(const XMLNode *) const
Definition: tinyxml2.h:1864
XMLHandle FirstChildElement(const char *name=0)
Get the first child element of this handle.
Definition: tinyxml2.h:2013
XMLText * ToText()
Safe cast to XMLText. This can return null.
Definition: tinyxml2.h:2050
XMLError QueryFloatValue(float *value) const
See QueryIntValue.
const char * CStr() const
Definition: tinyxml2.h:2241
XMLError ErrorID() const
Return the errorID.
Definition: tinyxml2.h:1823
XMLElement * ToElement()
Safe cast to XMLElement. This can return null.
Definition: tinyxml2.h:2046
virtual XMLElement * ToElement()
Safely cast to an Element, or null.
Definition: tinyxml2.h:685
XMLError QueryStringAttribute(const char *name, const char **value) const
See QueryIntAttribute()
Definition: tinyxml2.h:1376
virtual XMLText * ToText()
Safely cast to Text, or null.
Definition: tinyxml2.h:689
XMLError QueryUnsignedAttribute(const char *name, unsigned int *value) const
See QueryIntAttribute()
Definition: tinyxml2.h:1333
int CStrSize() const
Definition: tinyxml2.h:2249
float FloatValue() const
Query as a float. See IntValue()
Definition: tinyxml2.h:1186
virtual XMLDocument * ToDocument()
Safely cast to a Document, or null.
Definition: tinyxml2.h:1668
XMLUnknown * ToUnknown()
Safe cast to XMLUnknown. This can return null.
Definition: tinyxml2.h:2054
const char * Name() const
Get the name of an element (which is the Value() of the node.)
Definition: tinyxml2.h:1252
XMLHandle(const XMLHandle &ref)
Copy constructor.
Definition: tinyxml2.h:2000
XMLHandle FirstChild()
Get the first child of this handle.
Definition: tinyxml2.h:2009
void SetCData(bool isCData)
Declare whether this should be CDATA or standard text.
Definition: tinyxml2.h:998
void SetUserData(void *userData)
Definition: tinyxml2.h:932
const XMLNode * NextSibling() const
Get the next (right) sibling node of this node.
Definition: tinyxml2.h:814
unsigned UnsignedValue() const
Query as an unsigned integer. See IntValue()
Definition: tinyxml2.h:1168
XMLHandle LastChildElement(const char *name=0)
Get the last child element of this handle.
Definition: tinyxml2.h:2021
XMLHandle LastChild()
Get the last child of this handle.
Definition: tinyxml2.h:2017
Definition: tinyxml2.h:1990
Definition: tinyxml2.h:1063
XMLElement * RootElement()
Definition: tinyxml2.h:1747
virtual XMLText * ToText()
Safely cast to Text, or null.
Definition: tinyxml2.h:990
XMLHandle(XMLNode &node)
Create a handle from a node.
Definition: tinyxml2.h:1997
void SetName(const char *str, bool staticMem=false)
Set the name of the element.
Definition: tinyxml2.h:1256
void SetBOM(bool useBOM)
Definition: tinyxml2.h:1740
XMLHandle(XMLNode *node)
Create a handle from any node (at any depth of the tree.) This can be a null pointer.
Definition: tinyxml2.h:1994
void ClearBuffer()
Definition: tinyxml2.h:2256
virtual XMLElement * ToElement()
Safely cast to an Element, or null.
Definition: tinyxml2.h:1260
bool HasBOM() const
Definition: tinyxml2.h:1735
XMLError QueryFloatAttribute(const char *name, float *value) const
See QueryIntAttribute()
Definition: tinyxml2.h:1367
XMLError QueryUnsignedValue(unsigned int *value) const
See QueryIntValue.
XMLNode * ToNode()
Safe cast to XMLNode. This can return null.
Definition: tinyxml2.h:2042
bool BoolValue() const
Query as a boolean. See IntValue()
Definition: tinyxml2.h:1174
const XMLNode * FirstChild() const
Get the first child node, or null if none exists.
Definition: tinyxml2.h:762
virtual XMLDeclaration * ToDeclaration()
Safely cast to a Declaration, or null.
Definition: tinyxml2.h:1067
virtual bool Visit(const XMLDeclaration &)
Visit a declaration.
Definition: tinyxml2.h:504
virtual bool Visit(const XMLUnknown &)
Visit an unknown node.
Definition: tinyxml2.h:516
void SetAttribute(const char *name, unsigned value)
Sets the named attribute to value.
Definition: tinyxml2.h:1439
XMLError QueryDoubleAttribute(const char *name, double *value) const
See QueryIntAttribute()
Definition: tinyxml2.h:1359
Definition: tinyxml2.h:1247
XMLError QueryInt64Value(int64_t *value) const
See QueryIntValue.
XMLHandle NextSibling()
Get the next sibling of this handle.
Definition: tinyxml2.h:2033
int GetLineNum() const
Gets the line number the attribute is in, if the document was parsed from a file.
Definition: tinyxml2.h:1144
int IntValue() const
Definition: tinyxml2.h:1155
virtual XMLUnknown * ToUnknown()
Safely cast to an Unknown, or null.
Definition: tinyxml2.h:1102
bool CData() const
Returns true if this is a CDATA text element.
Definition: tinyxml2.h:1002
XMLHandle PreviousSibling()
Get the previous sibling of this handle.
Definition: tinyxml2.h:2025
Definition: tinyxml2.h:2071
XMLHandle & operator=(const XMLHandle &ref)
Assignment.
Definition: tinyxml2.h:2003
virtual bool VisitExit(const XMLDocument &)
Visit a document.
Definition: tinyxml2.h:2225
virtual bool VisitEnter(const XMLElement &, const XMLAttribute *)
Visit an element.
Definition: tinyxml2.h:495
bool Error() const
Return true if there was an error parsing the document.
Definition: tinyxml2.h:1819
virtual bool VisitEnter(const XMLDocument &)
Visit a document.
Definition: tinyxml2.h:486
Definition: tinyxml2.h:1098
virtual XMLDocument * ToDocument()
Safely cast to a Document, or null.
Definition: tinyxml2.h:697
const XMLNode * LastChild() const
Get the last child node, or null if none exists.
Definition: tinyxml2.h:780
Definition: tinyxml2.h:1133
XMLError QueryAttribute(const char *name, int *value) const
Definition: tinyxml2.h:1404
void SetAttribute(const char *name, bool value)
Sets the named attribute to value.
Definition: tinyxml2.h:1451
XMLDeclaration * ToDeclaration()
Safe cast to XMLDeclaration. This can return null.
Definition: tinyxml2.h:2058
void SetAttribute(const char *value)
Set the attribute to a string value.
void SetAttribute(const char *name, const char *value)
Sets the named attribute to value.
Definition: tinyxml2.h:1429
virtual bool VisitExit(const XMLElement &)
Visit an element.
Definition: tinyxml2.h:499
Definition: tinyxml2.h:2175
Definition: tinyxml2.h:1653
void * GetUserData() const
Definition: tinyxml2.h:939
void SetAttribute(const char *name, int64_t value)
Sets the named attribute to value.
Definition: tinyxml2.h:1445
const char * Value() const
The value of the attribute.
void SetAttribute(const char *name, double value)
Sets the named attribute to value.
Definition: tinyxml2.h:1456
XMLError QueryDoubleValue(double *value) const
See QueryIntValue.
const XMLNode * Parent() const
Get the parent of this node on the DOM.
Definition: tinyxml2.h:748
virtual bool Visit(const XMLComment &)
Visit a comment node.
Definition: tinyxml2.h:512
XMLError QueryBoolValue(bool *value) const
See QueryIntValue.
const XMLNode * PreviousSibling() const
Get the previous (left) sibling node of this node.
Definition: tinyxml2.h:798
XMLHandle NextSiblingElement(const char *name=0)
Get the next sibling element of this handle.
Definition: tinyxml2.h:2037
Definition: tinyxml2.h:667
XMLError QueryIntAttribute(const char *name, int *value) const
Definition: tinyxml2.h:1324
int GetLineNum() const
Gets the line number the node is in, if the document was parsed from a file.
Definition: tinyxml2.h:745
virtual bool Visit(const XMLText &)
Visit a text node.
Definition: tinyxml2.h:508
Definition: tinyxml2.h:984
Definition: tinyxml2.h:480
int ErrorLineNum() const
Return the line where the error occurred, or zero if unknown.
Definition: tinyxml2.h:1838
XMLDocument * GetDocument()
Get the XMLDocument that owns this XMLNode.
Definition: tinyxml2.h:679
virtual XMLUnknown * ToUnknown()
Safely cast to an Unknown, or null.
Definition: tinyxml2.h:705
void SetAttribute(const char *name, float value)
Sets the named attribute to value.
Definition: tinyxml2.h:1461
const XMLAttribute * Next() const
The next attribute in the list.
Definition: tinyxml2.h:1147
bool NoChildren() const
Returns true if this node has no children.
Definition: tinyxml2.h:757
double DoubleValue() const
Query as a double. See IntValue()
Definition: tinyxml2.h:1180
virtual XMLDeclaration * ToDeclaration()
Safely cast to a Declaration, or null.
Definition: tinyxml2.h:701
const XMLDocument * GetDocument() const
Get the XMLDocument that owns this XMLNode.
Definition: tinyxml2.h:674
XMLHandle PreviousSiblingElement(const char *name=0)
Get the previous sibling element of this handle.
Definition: tinyxml2.h:2029
void SetAttribute(const char *name, int value)
Sets the named attribute to value.
Definition: tinyxml2.h:1434
const XMLAttribute * FirstAttribute() const
Return the first attribute in the list.
Definition: tinyxml2.h:1472
virtual XMLComment * ToComment()
Safely cast to a Comment, or null.
Definition: tinyxml2.h:693