24 #ifndef TINYXML2_INCLUDED 25 #define TINYXML2_INCLUDED 27 #if defined(ANDROID_NDK) || defined(__BORLANDC__) || defined(__QNXNTO__) 54 #if defined( _DEBUG ) || defined( DEBUG ) || defined (__DEBUG__) 61 # pragma warning(push) 62 # pragma warning(disable: 4251) 66 # ifdef TINYXML2_EXPORT 67 # define TINYXML2_LIB __declspec(dllexport) 68 # elif defined(TINYXML2_IMPORT) 69 # define TINYXML2_LIB __declspec(dllimport) 79 # if defined(_MSC_VER) 80 # // "(void)0," is for suppressing C4127 warning in "assert(false)", "assert(true)" and the like 81 # define TIXMLASSERT( x ) if ( !((void)0,(x))) { __debugbreak(); } //if ( !(x)) WinDebugBreak() 82 # elif defined (ANDROID_NDK) 83 # include <android/log.h> 84 # define TIXMLASSERT( x ) if ( !(x)) { __android_log_assert( "assert", "grinliz", "ASSERT in '%s' at %d.", __FILE__, __LINE__ ); } 87 # define TIXMLASSERT assert 90 # define TIXMLASSERT( x ) {} 94 #if defined(_MSC_VER) && (_MSC_VER >= 1400 ) && (!defined WINCE) 103 inline int TIXML_SNPRINTF(
char* buffer,
size_t size,
const char* format, ... )
106 va_start( va, format );
107 int result = vsnprintf_s( buffer, size, _TRUNCATE, format, va );
111 #define TIXML_SSCANF sscanf_s 113 #define TIXML_SNPRINTF _snprintf 114 #define TIXML_SSCANF sscanf 118 #define TIXML_SNPRINTF snprintf 119 #define TIXML_SSCANF sscanf 165 void Set(
char* start,
char* end,
int flags ) {
180 _start =
const_cast<char*
>(str);
183 void SetStr(
const char* str,
int flags=0 );
185 char*
ParseText(
char* in,
const char* endTag,
int strFlags );
214 template <
class T,
int INIT>
225 if ( _mem != _pool ) {
236 EnsureCapacity( _size+1 );
243 EnsureCapacity( _size+count );
244 T* ret = &_mem[_size];
251 return _mem[--_size];
275 return _mem[ _size - 1];
301 if ( cap > _allocated ) {
303 int newAllocated = cap * 2;
304 T* newMem =
new T[newAllocated];
305 memcpy( newMem, _mem,
sizeof(T)*_size );
306 if ( _mem != _pool ) {
310 _allocated = newAllocated;
331 virtual int ItemSize()
const = 0;
332 virtual void* Alloc() = 0;
333 virtual void Free(
void* ) = 0;
334 virtual void SetTracked() = 0;
335 virtual void Clear() = 0;
346 MemPoolT() : _root(0), _currentAllocs(0), _nAllocs(0), _maxAllocs(0), _nUntracked(0) {}
353 while( !_blockPtrs.Empty()) {
354 Block* b = _blockPtrs.Pop();
368 return _currentAllocs;
374 Block* block =
new Block();
375 _blockPtrs.Push( block );
377 for(
int i=0; i<COUNT-1; ++i ) {
378 block->chunk[i].next = &block->chunk[i+1];
380 block->chunk[COUNT-1].next = 0;
381 _root = block->chunk;
383 void* result = _root;
387 if ( _currentAllocs > _maxAllocs ) {
388 _maxAllocs = _currentAllocs;
395 virtual void Free(
void* mem ) {
400 Chunk* chunk =
static_cast<Chunk*
>( mem );
402 memset( chunk, 0xfe,
sizeof(Chunk) );
408 printf(
"Mempool %s watermark=%d [%dk] current=%d size=%d nAlloc=%d blocks=%d\n",
409 name, _maxAllocs, _maxAllocs*SIZE/1024, _currentAllocs, SIZE, _nAllocs, _blockPtrs.Size() );
429 enum { COUNT = (4*1024)/SIZE };
549 while( IsWhiteSpace(*p) ) {
556 return const_cast<char*
>( SkipWhiteSpace( const_cast<const char*>(p) ) );
562 return !IsUTF8Continuation(p) && isspace( static_cast<unsigned char>(p) );
570 if ( isalpha( ch ) ) {
573 return ch ==
':' || ch ==
'_';
577 return IsNameStartChar( ch )
583 inline static bool StringEqual(
const char* p,
const char* q,
int nChar=INT_MAX ) {
588 while( *p && *q && *p == *q && n<nChar ) {
593 if ( (n == nChar) || ( *p == 0 && *q == 0 ) ) {
600 return ( p & 0x80 ) != 0;
603 static const char* ReadBOM(
const char* p,
bool* hasBOM );
606 static const char* GetCharacterRef(
const char* p,
char* value,
int* length );
607 static void ConvertUTF32ToUTF8(
unsigned long input,
char* output,
int* length );
610 static void ToStr(
int v,
char* buffer,
int bufferSize );
611 static void ToStr(
unsigned v,
char* buffer,
int bufferSize );
612 static void ToStr(
bool v,
char* buffer,
int bufferSize );
613 static void ToStr(
float v,
char* buffer,
int bufferSize );
614 static void ToStr(
double v,
char* buffer,
int bufferSize );
617 static bool ToInt(
const char* str,
int* value );
618 static bool ToUnsigned(
const char* str,
unsigned* value );
619 static bool ToBool(
const char* str,
bool* value );
620 static bool ToFloat(
const char* str,
float* value );
621 static bool ToDouble(
const char* str,
double* value );
718 const char* Value()
const;
723 void SetValue(
const char* val,
bool staticMem=
false );
751 const XMLElement* FirstChildElement(
const char* value=0 )
const;
754 return const_cast<XMLElement*
>(
const_cast<const XMLNode*
>(
this)->FirstChildElement( value ));
763 return const_cast<XMLNode*
>(
const_cast<const XMLNode*
>(
this)->LastChild() );
769 const XMLElement* LastChildElement(
const char* value=0 )
const;
772 return const_cast<XMLElement*
>(
const_cast<const XMLNode*
>(
this)->LastChildElement(value) );
785 const XMLElement* PreviousSiblingElement(
const char* value=0 )
const ;
788 return const_cast<XMLElement*
>(
const_cast<const XMLNode*
>(
this)->PreviousSiblingElement( value ) );
801 const XMLElement* NextSiblingElement(
const char* value=0 )
const;
804 return const_cast<XMLElement*
>(
const_cast<const XMLNode*
>(
this)->NextSiblingElement( value ) );
817 return InsertEndChild( addThis );
840 void DeleteChildren();
845 void DeleteChild(
XMLNode* node );
864 virtual bool ShallowEqual(
const XMLNode* compare )
const = 0;
888 virtual bool Accept(
XMLVisitor* visitor )
const = 0;
891 virtual char* ParseDeep(
char*,
StrPair* );
910 static void DeleteNode(
XMLNode* node );
911 void InsertChildPreamble(
XMLNode* insertThis )
const;
932 friend class XMLBase;
935 virtual bool Accept(
XMLVisitor* visitor )
const;
953 char* ParseDeep(
char*,
StrPair* endTag );
955 virtual bool ShallowEqual(
const XMLNode* compare )
const;
981 virtual bool Accept(
XMLVisitor* visitor )
const;
983 char* ParseDeep(
char*,
StrPair* endTag );
985 virtual bool ShallowEqual(
const XMLNode* compare )
const;
1019 virtual bool Accept(
XMLVisitor* visitor )
const;
1021 char* ParseDeep(
char*,
StrPair* endTag );
1023 virtual bool ShallowEqual(
const XMLNode* compare )
const;
1053 virtual bool Accept(
XMLVisitor* visitor )
const;
1055 char* ParseDeep(
char*,
StrPair* endTag );
1057 virtual bool ShallowEqual(
const XMLNode* compare )
const;
1081 const char* Name()
const;
1084 const char* Value()
const;
1097 QueryIntValue( &i );
1103 QueryUnsignedValue( &i );
1109 QueryBoolValue( &b );
1115 QueryDoubleValue( &d );
1121 QueryFloatValue( &f );
1129 XMLError QueryIntValue(
int* value )
const;
1131 XMLError QueryUnsignedValue(
unsigned int* value )
const;
1133 XMLError QueryBoolValue(
bool* value )
const;
1135 XMLError QueryDoubleValue(
double* value )
const;
1137 XMLError QueryFloatValue(
float* value )
const;
1140 void SetAttribute(
const char* value );
1142 void SetAttribute(
int value );
1144 void SetAttribute(
unsigned value );
1146 void SetAttribute(
bool value );
1148 void SetAttribute(
double value );
1150 void SetAttribute(
float value );
1153 enum { BUF_SIZE = 200 };
1160 void SetName(
const char* name );
1162 char* ParseDeep(
char* p,
bool processEntities );
1177 friend class XMLBase;
1185 void SetName(
const char* str,
bool staticMem=
false ) {
1186 SetValue( str, staticMem );
1195 virtual bool Accept(
XMLVisitor* visitor )
const;
1220 const char* Attribute(
const char* name,
const char* value=0 )
const;
1229 QueryIntAttribute( name, &i );
1235 QueryUnsignedAttribute( name, &i );
1241 QueryBoolAttribute( name, &b );
1247 QueryDoubleAttribute( name, &d );
1253 QueryFloatAttribute( name, &f );
1329 return QueryIntAttribute( name, value );
1333 return QueryUnsignedAttribute( name, value );
1337 return QueryBoolAttribute( name, value );
1341 return QueryDoubleAttribute( name, value );
1345 return QueryFloatAttribute( name, value );
1382 void DeleteAttribute(
const char* name );
1386 return _rootAttribute;
1389 const XMLAttribute* FindAttribute(
const char* name )
const;
1419 const char* GetText()
const;
1455 void SetText(
const char* inText );
1457 void SetText(
int value );
1459 void SetText(
unsigned value );
1461 void SetText(
bool value );
1463 void SetText(
double value );
1465 void SetText(
float value );
1493 XMLError QueryIntText(
int* ival )
const;
1495 XMLError QueryUnsignedText(
unsigned* uval )
const;
1497 XMLError QueryBoolText(
bool* bval )
const;
1499 XMLError QueryDoubleText(
double* dval )
const;
1501 XMLError QueryFloatText(
float* fval )
const;
1510 return _closingType;
1512 char* ParseDeep(
char* p,
StrPair* endTag );
1514 virtual bool ShallowEqual(
const XMLNode* compare )
const;
1525 XMLAttribute* FindOrCreateAttribute(
const char* name );
1527 char* ParseAttributes(
char* p );
1528 static void DeleteAttribute(
XMLAttribute* attribute );
1530 enum { BUF_SIZE = 200 };
1575 XMLError Parse(
const char* xml,
size_t nBytes=(
size_t)(-1) );
1602 XMLError SaveFile(
const char* filename,
bool compact =
false );
1611 XMLError SaveFile( FILE* fp,
bool compact =
false );
1614 return _processEntities;
1636 return FirstChildElement();
1639 return FirstChildElement();
1657 virtual bool Accept(
XMLVisitor* visitor )
const;
1670 XMLComment* NewComment(
const char* comment );
1676 XMLText* NewText(
const char* text );
1700 void DeleteNode(
XMLNode* node );
1702 void SetError(
XMLError error,
const char* str1,
const char* str2 );
1712 const char* ErrorName()
const;
1723 void PrintError()
const;
1729 char* Identify(
char* p,
XMLNode** node );
1839 return XMLHandle( _node ? _node->FirstChild() : 0 );
1843 return XMLHandle( _node ? _node->FirstChildElement( value ) : 0 );
1847 return XMLHandle( _node ? _node->LastChild() : 0 );
1851 return XMLHandle( _node ? _node->LastChildElement( _value ) : 0 );
1855 return XMLHandle( _node ? _node->PreviousSibling() : 0 );
1859 return XMLHandle( _node ? _node->PreviousSiblingElement( _value ) : 0 );
1863 return XMLHandle( _node ? _node->NextSibling() : 0 );
1867 return XMLHandle( _node ? _node->NextSiblingElement( _value ) : 0 );
1876 return ( ( _node == 0 ) ? 0 : _node->ToElement() );
1880 return ( ( _node == 0 ) ? 0 : _node->ToText() );
1884 return ( ( _node == 0 ) ? 0 : _node->ToUnknown() );
1888 return ( ( _node == 0 ) ? 0 : _node->ToDeclaration() );
1922 return XMLConstHandle( _node ? _node->FirstChildElement( value ) : 0 );
1928 return XMLConstHandle( _node ? _node->LastChildElement( _value ) : 0 );
1934 return XMLConstHandle( _node ? _node->PreviousSiblingElement( _value ) : 0 );
1940 return XMLConstHandle( _node ? _node->NextSiblingElement( _value ) : 0 );
1948 return ( ( _node == 0 ) ? 0 : _node->ToElement() );
1951 return ( ( _node == 0 ) ? 0 : _node->ToText() );
1954 return ( ( _node == 0 ) ? 0 : _node->ToUnknown() );
1957 return ( ( _node == 0 ) ? 0 : _node->ToDeclaration() );
2016 XMLPrinter( FILE* file=0,
bool compact =
false,
int depth = 0 );
2020 void PushHeader(
bool writeBOM,
bool writeDeclaration );
2024 void OpenElement(
const char* name,
bool compactMode=
false );
2026 void PushAttribute(
const char* name,
const char* value );
2027 void PushAttribute(
const char* name,
int value );
2028 void PushAttribute(
const char* name,
unsigned value );
2029 void PushAttribute(
const char* name,
bool value );
2030 void PushAttribute(
const char* name,
double value );
2032 virtual void CloseElement(
bool compactMode=
false );
2035 void PushText(
const char* text,
bool cdata=
false );
2037 void PushText(
int value );
2039 void PushText(
unsigned value );
2041 void PushText(
bool value );
2043 void PushText(
float value );
2045 void PushText(
double value );
2048 void PushComment(
const char* comment );
2050 void PushDeclaration(
const char* value );
2051 void PushUnknown(
const char* value );
2059 virtual bool VisitExit(
const XMLElement& element );
2061 virtual bool Visit(
const XMLText& text );
2062 virtual bool Visit(
const XMLComment& comment );
2064 virtual bool Visit(
const XMLUnknown& unknown );
2071 return _buffer.Mem();
2079 return _buffer.Size();
2096 virtual void PrintSpace(
int depth );
2097 void Print(
const char* format, ... );
2099 void SealElementIfJustOpened();
2104 void PrintString(
const char*,
bool restrictedEntitySet );
2117 bool _entityFlag[ENTITY_RANGE];
2118 bool _restrictedEntityFlag[ENTITY_RANGE];
2126 #if defined(_MSC_VER) 2127 # pragma warning(pop) 2130 #endif // TINYXML2_INCLUDED virtual XMLElement * ToElement()
Safely cast to an Element, or null.
XMLError QueryDoubleValue(double *value) const
See QueryIntValue.
void CollapseWhitespace()
const XMLConstHandle NextSibling() const
virtual void Free(void *mem)
static const int TIXML2_PATCH_VERSION
const char * Name() const
Get the name of an element (which is the Value() of the node.)
virtual XMLDocument * ToDocument()
Safely cast to a Document, or null.
XMLHandle(XMLNode *node)
Create a handle from any node (at any depth of the tree.) This can be a null pointer.
virtual const XMLElement * ToElement() const
const XMLNode * ToNode() const
XMLError QueryFloatAttribute(const char *name, float *value) const
See QueryIntAttribute()
XMLAttribute * _rootAttribute
MemPoolT< sizeof(XMLAttribute) > _attributePool
static const char * SkipWhiteSpace(const char *p)
double DoubleValue() const
Query as a double. See IntValue()
void SetAttribute(const char *name, unsigned value)
Sets the named attribute to value.
const XMLAttribute * FirstAttribute() const
Return the first attribute in the list.
virtual XMLComment * ToComment()
Safely cast to a Comment, or null.
unsigned UnsignedValue() const
Query as an unsigned integer. See IntValue()
const char * GetErrorStr1() const
Return a possibly helpful diagnostic location or string.
XMLConstHandle & operator=(const XMLConstHandle &ref)
virtual const XMLDeclaration * ToDeclaration() const
virtual bool VisitEnter(const XMLElement &, const XMLAttribute *)
Visit an element.
void Set(char *start, char *end, int flags)
bool Error() const
Return true if there was an error parsing the document.
DynArray< Block *, 10 > _blockPtrs
Whitespace WhitespaceMode() const
const XMLConstHandle LastChild() const
const XMLDocument * GetDocument() const
Get the XMLDocument that owns this XMLNode.
XMLError QueryDoubleAttribute(const char *name, double *value) const
See QueryIntAttribute()
static bool IsNameChar(unsigned char ch)
static bool IsWhiteSpace(char p)
const XMLConstHandle FirstChild() const
XMLHandle LastChildElement(const char *_value=0)
Get the last child element of this handle.
void TransferTo(StrPair *other)
virtual const XMLComment * ToComment() const
XMLError QueryFloatValue(float *value) const
See QueryIntValue.
virtual XMLUnknown * ToUnknown()
Safely cast to an Unknown, or null.
virtual bool Visit(const XMLText &)
Visit a text node.
const XMLUnknown * ToUnknown() const
static char * SkipWhiteSpace(char *p)
XMLError ErrorID() const
Return the errorID.
XMLConstHandle(const XMLNode *node)
XMLNode * PreviousSibling()
virtual bool VisitExit(const XMLDocument &)
Visit a document.
char * ParseName(char *in)
virtual bool ShallowEqual(const XMLNode *) const
bool BoolAttribute(const char *name) const
See IntAttribute()
const XMLConstHandle NextSiblingElement(const char *_value=0) const
XMLConstHandle(const XMLNode &node)
const char * CStr() const
void SetAttribute(const char *value)
Set the attribute to a string value.
bool BoolValue() const
Query as a boolean. See IntValue()
virtual XMLText * ToText()
Safely cast to Text, or null.
virtual bool Visit(const XMLComment &)
Visit a comment node.
XMLHandle LastChild()
Get the last child of this handle.
double DoubleAttribute(const char *name) const
See IntAttribute()
int QueryAttribute(const char *name, unsigned int *value) const
const T & operator[](int i) const
const XMLText * ToText() const
virtual const XMLDocument * ToDocument() const
void SetAttribute(const char *name, const char *value)
Sets the named attribute to value.
const XMLNode * LastChild() const
Get the last child node, or null if none exists.
const XMLNode * Parent() const
Get the parent of this node on the DOM.
static const int TIXML2_MINOR_VERSION
XMLHandle & operator=(const XMLHandle &ref)
Assignment.
DynArray< char, 20 > _buffer
virtual const XMLText * ToText() const
XMLElement * RootElement()
const XMLElement * RootElement() const
const XMLConstHandle LastChildElement(const char *_value=0) const
const XMLNode * FirstChild() const
Get the first child node, or null if none exists.
virtual const XMLUnknown * ToUnknown() const
int QueryAttribute(const char *name, double *value) const
virtual const XMLText * ToText() const
void SetName(const char *str, bool staticMem=false)
Set the name of the element.
static bool IsUTF8Continuation(const char p)
const XMLConstHandle PreviousSibling() const
void SetAttribute(const char *name, double value)
Sets the named attribute to value.
static const int TIXML2_MAJOR_VERSION
const XMLNode * NextSibling() const
Get the next (right) sibling node of this node.
const T & PeekTop() const
MemPoolT< sizeof(XMLComment) > _commentPool
XMLHandle NextSiblingElement(const char *_value=0)
Get the next sibling element of this handle.
virtual XMLNode * ShallowClone(XMLDocument *) const
virtual bool VisitExit(const XMLDocument &)
Visit a document.
float FloatAttribute(const char *name) const
See IntAttribute()
const char * GetErrorStr2() const
Return a possibly helpful secondary diagnostic location or string.
void SetStr(const char *str, int flags=0)
XMLHandle(XMLNode &node)
Create a handle from a node.
void SetCData(bool isCData)
Declare whether this should be CDATA or standard text.
XMLDocument * GetDocument()
Get the XMLDocument that owns this XMLNode.
XMLError QueryIntValue(int *value) const
XMLError QueryUnsignedValue(unsigned int *value) const
See QueryIntValue.
virtual XMLDeclaration * ToDeclaration()
Safely cast to a Declaration, or null.
virtual XMLUnknown * ToUnknown()
Safely cast to an Unknown, or null.
static bool StringEqual(const char *p, const char *q, int nChar=INT_MAX)
const XMLConstHandle FirstChildElement(const char *value=0) const
virtual bool VisitExit(const XMLElement &)
Visit an element.
virtual bool Visit(const XMLUnknown &)
Visit an unknown node.
virtual int ItemSize() const
XMLConstHandle(const XMLConstHandle &ref)
XMLError QueryIntAttribute(const char *name, int *value) const
int QueryAttribute(const char *name, float *value) const
unsigned UnsignedAttribute(const char *name) const
See IntAttribute()
XMLNode * LinkEndChild(XMLNode *addThis)
const XMLAttribute * Next() const
The next attribute in the list.
XMLAttribute * FindAttribute(const char *name)
void SetAttribute(const char *name, bool value)
Sets the named attribute to value.
int IntAttribute(const char *name) const
void SetAttribute(const char *name, float value)
Sets the named attribute to value.
DynArray< const char *, 10 > _stack
XMLNode * ToNode()
Safe cast to XMLNode. This can return null.
void Trace(const char *name)
XMLHandle NextSibling()
Get the next sibling of this handle.
const XMLConstHandle PreviousSiblingElement(const char *_value=0) const
float FloatValue() const
Query as a float. See IntValue()
XMLText(XMLDocument *doc)
static bool IsNameStartChar(unsigned char ch)
virtual XMLText * ToText()
Safely cast to Text, or null.
void SetAttribute(const char *name, int value)
Sets the named attribute to value.
bool CData() const
Returns true if this is a CDATA text element.
void EnsureCapacity(int cap)
XMLText * ToText()
Safe cast to XMLText. This can return null.
void operator=(StrPair &other)
XMLError QueryBoolValue(bool *value) const
See QueryIntValue.
virtual const XMLDeclaration * ToDeclaration() const
XMLError QueryBoolAttribute(const char *name, bool *value) const
See QueryIntAttribute()
virtual bool CompactMode(const XMLElement &)
XMLHandle PreviousSibling()
Get the previous sibling of this handle.
MemPoolT< sizeof(XMLText) > _textPool
XMLDeclaration * ToDeclaration()
Safe cast to XMLDeclaration. This can return null.
MemPoolT< sizeof(XMLElement) > _elementPool
XMLUnknown * ToUnknown()
Safe cast to XMLUnknown. This can return null.
int QueryAttribute(const char *name, int *value) const
int QueryAttribute(const char *name, bool *value) const
bool NoChildren() const
Returns true if this node has no children.
XMLHandle FirstChild()
Get the first child of this handle.
XMLElement * FirstChildElement(const char *value=0)
XMLElement * ToElement()
Safe cast to XMLElement. This can return null.
const XMLNode * PreviousSibling() const
Get the previous (left) sibling node of this node.
virtual bool Visit(const XMLDeclaration &)
Visit a declaration.
XMLError QueryUnsignedAttribute(const char *name, unsigned int *value) const
See QueryIntAttribute()
virtual bool VisitEnter(const XMLDocument &)
Visit a document.
XMLElement * NextSiblingElement(const char *value=0)
XMLElement * LastChildElement(const char *value=0)
char * ParseText(char *in, const char *endTag, int strFlags)
bool ProcessEntities() const
virtual XMLDocument * ToDocument()
Safely cast to a Document, or null.
virtual const XMLUnknown * ToUnknown() const
virtual XMLDeclaration * ToDeclaration()
Safely cast to a Declaration, or null.
XMLHandle PreviousSiblingElement(const char *_value=0)
Get the previous sibling element of this handle.
virtual XMLElement * ToElement()
Safely cast to an Element, or null.
virtual const XMLElement * ToElement() const
virtual const XMLDocument * ToDocument() const
XMLHandle(const XMLHandle &ref)
Copy constructor.
int CurrentAllocs() const
XMLElement * PreviousSiblingElement(const char *value=0)
const XMLElement * ToElement() const
XMLHandle FirstChildElement(const char *value=0)
Get the first child element of this handle.
void SetInternedStr(const char *str)
const XMLDeclaration * ToDeclaration() const