#include "tinyxml2.h" #include #include #include #include #include //#pragma warning ( disable : 4291 ) using namespace tinyxml2; static const char LINE_FEED = (char)0x0a; // all line endings are normalized to LF static const char LF = LINE_FEED; static const char CARRIAGE_RETURN = (char)0x0d; // CR gets filtered out static const char CR = CARRIAGE_RETURN; static const char SINGLE_QUOTE = '\''; static const char DOUBLE_QUOTE = '\"'; #define DELETE_NODE( node ) { MemPool* pool = node->memPool; node->~XMLNode(); pool->Free( node ); } #define DELETE_ATTRIBUTE( attrib ) { MemPool* pool = attrib->memPool; attrib->~XMLAttribute(); pool->Free( attrib ); } struct Entity { const char* pattern; int length; char value; }; static const int NUM_ENTITIES = 5; static const Entity entities[NUM_ENTITIES] = { { "quot", 4, DOUBLE_QUOTE }, { "amp", 3, '&' }, { "apos", 4, SINGLE_QUOTE }, { "lt", 2, '<' }, { "gt", 2, '>' } }; const char* StrPair::GetStr() { if ( flags & NEEDS_FLUSH ) { *end = 0; flags ^= NEEDS_FLUSH; if ( flags ) { char* p = start; char* q = start; while( p < end ) { if ( (flags & NEEDS_NEWLINE_NORMALIZATION) && *p == CR ) { // CR-LF pair becomes LF // CR alone becomes LF // LF-CR becomes LF if ( *(p+1) == LF ) { p += 2; } else { ++p; } *q++ = LF; } else if ( (flags & NEEDS_NEWLINE_NORMALIZATION) && *p == LF ) { if ( *(p+1) == CR ) { p += 2; } else { ++p; } *q++ = LF; } else if ( (flags & NEEDS_ENTITY_PROCESSING) && *p == '&' ) { int i=0; for( i=0; i pool.Size()*3/4 ) { DynArray< const char*, 20 > store; for( int i=0; i start ) { Set( start, p, 0 ); return p; } return 0; } char* XMLDocument::Identify( char* p, XMLNode** node ) { XMLNode* returnNode = 0; char* start = p; p = XMLUtil::SkipWhiteSpace( p ); if( !p || !*p ) { return 0; } // What is this thing? // - Elements start with a letter or underscore, but xml is reserved. // - Comments: ", StrPair::COMMENT ); } bool XMLComment::Accept( XMLVisitor* visitor ) const { return visitor->Visit( *this ); } // --------- XMLDeclaration ---------- // XMLDeclaration::XMLDeclaration( XMLDocument* doc ) : XMLNode( doc ) { } XMLDeclaration::~XMLDeclaration() { //printf( "~XMLDeclaration\n" ); } char* XMLDeclaration::ParseDeep( char* p ) { // Declaration parses as text. return value.ParseText( p, ">", StrPair::NEEDS_NEWLINE_NORMALIZATION ); } bool XMLDeclaration::Accept( XMLVisitor* visitor ) const { return visitor->Visit( *this ); } // --------- XMLUnknown ---------- // XMLUnknown::XMLUnknown( XMLDocument* doc ) : XMLNode( doc ) { } XMLUnknown::~XMLUnknown() { } char* XMLUnknown::ParseDeep( char* p ) { // Unknown parses as text. return value.ParseText( p, ">", StrPair::NEEDS_NEWLINE_NORMALIZATION ); } bool XMLUnknown::Accept( XMLVisitor* visitor ) const { return visitor->Visit( *this ); } // --------- XMLAttribute ---------- // char* XMLAttribute::ParseDeep( char* p ) { p = name.ParseText( p, "=", StrPair::ATTRIBUTE_NAME ); if ( !p || !*p ) return 0; char endTag[2] = { *p, 0 }; ++p; p = value.ParseText( p, endTag, StrPair::ATTRIBUTE_VALUE ); if ( value.Empty() ) return 0; return p; } // --------- XMLElement ---------- // XMLElement::XMLElement( XMLDocument* doc ) : XMLNode( doc ), closing( false ), rootAttribute( 0 ), lastAttribute( 0 ) { } XMLElement::~XMLElement() { XMLAttribute* attribute = rootAttribute; while( attribute ) { XMLAttribute* next = attribute->next; DELETE_ATTRIBUTE( attribute ); attribute = next; } } char* XMLElement::ParseAttributes( char* p, bool* closedElement ) { const char* start = p; *closedElement = false; // Read the attributes. while( p ) { p = XMLUtil::SkipWhiteSpace( p ); if ( !p || !(*p) ) { document->SetError( XMLDocument::ERROR_PARSING_ELEMENT, start, Name() ); return 0; } // attribute. if ( XMLUtil::IsAlpha( *p ) ) { XMLAttribute* attrib = new (document->attributePool.Alloc() ) XMLAttribute( this ); attrib->memPool = &document->attributePool; p = attrib->ParseDeep( p ); if ( !p ) { DELETE_ATTRIBUTE( attrib ); document->SetError( XMLDocument::ERROR_PARSING_ATTRIBUTE, start, p ); return 0; } if ( rootAttribute ) { TIXMLASSERT( lastAttribute ); lastAttribute->next = attrib; lastAttribute = attrib; } else { rootAttribute = lastAttribute = attrib; } } // end of the tag else if ( *p == '/' && *(p+1) == '>' ) { if ( closing ) { document->SetError( XMLDocument::ERROR_PARSING_ELEMENT, start, p ); return 0; } *closedElement = true; return p+2; // done; sealed element. } // end of the tag else if ( *p == '>' ) { ++p; break; } else { document->SetError( XMLDocument::ERROR_PARSING_ELEMENT, start, p ); return 0; } } return p; } // // // foobar // char* XMLElement::ParseDeep( char* p ) { // Read the element name. p = XMLUtil::SkipWhiteSpace( p ); if ( !p ) return 0; const char* start = p; // The closing element is the form. It is // parsed just like a regular element then deleted from // the DOM. if ( *p == '/' ) { closing = true; ++p; } p = value.ParseName( p ); if ( value.Empty() ) return 0; bool elementClosed=false; p = ParseAttributes( p, &elementClosed ); if ( !p || !*p || elementClosed || closing ) return p; p = XMLNode::ParseDeep( p ); return p; } bool XMLElement::Accept( XMLVisitor* visitor ) const { if ( visitor->VisitEnter( *this, rootAttribute ) ) { for ( const XMLNode* node=FirstChild(); node; node=node->NextSibling() ) { if ( !node->Accept( visitor ) ) break; } } return visitor->VisitExit( *this ); } // --------- XMLDocument ----------- // XMLDocument::XMLDocument() : XMLNode( 0 ), charBuffer( 0 ) { document = this; // avoid warning about 'this' in initializer list } XMLDocument::~XMLDocument() { ClearChildren(); delete [] charBuffer; #if 1 textPool.Trace( "text" ); elementPool.Trace( "element" ); commentPool.Trace( "comment" ); attributePool.Trace( "attribute" ); #endif TIXMLASSERT( textPool.CurrentAllocs() == 0 ); TIXMLASSERT( elementPool.CurrentAllocs() == 0 ); TIXMLASSERT( commentPool.CurrentAllocs() == 0 ); TIXMLASSERT( attributePool.CurrentAllocs() == 0 ); } void XMLDocument::InitDocument() { errorID = NO_ERROR; errorStr1 = 0; errorStr2 = 0; delete [] charBuffer; charBuffer = 0; } XMLElement* XMLDocument::NewElement( const char* name ) { XMLElement* ele = new (elementPool.Alloc()) XMLElement( this ); ele->memPool = &elementPool; ele->SetName( name ); return ele; } int XMLDocument::Parse( const char* p ) { ClearChildren(); InitDocument(); if ( !p || !*p ) { return true; // correctly parse an empty string? } size_t len = strlen( p ); charBuffer = new char[ len+1 ]; memcpy( charBuffer, p, len+1 ); XMLNode* node = 0; char* q = ParseDeep( charBuffer ); return errorID; } void XMLDocument::Print( XMLStreamer* streamer ) { XMLStreamer stdStreamer( stdout ); if ( !streamer ) streamer = &stdStreamer; //for( XMLNode* node = firstChild; node; node=node->next ) { // node->Print( streamer ); //} Accept( streamer ); } void XMLDocument::SetError( int error, const char* str1, const char* str2 ) { errorID = error; printf( "ERROR: id=%d '%s' '%s'\n", error, str1, str2 ); // fixme: remove errorStr1 = str1; errorStr2 = str2; } /* StringStack::StringStack() { nPositive = 0; mem.Push( 0 ); // start with null. makes later code simpler. } StringStack::~StringStack() { } void StringStack::Push( const char* str ) { int needed = strlen( str ) + 1; char* p = mem.PushArr( needed ); strcpy( p, str ); if ( needed > 1 ) nPositive++; } const char* StringStack::Pop() { TIXMLASSERT( mem.Size() > 1 ); const char* p = mem.Mem() + mem.Size() - 2; // end of final string. if ( *p ) { nPositive--; } while( *p ) { // stack starts with a null, don't need to check for 'mem' TIXMLASSERT( p > mem.Mem() ); --p; } mem.PopArr( strlen(p)+1 ); return p+1; } */ XMLStreamer::XMLStreamer( FILE* file ) : fp( file ), depth( 0 ), elementJustOpened( false ), textDepth( -1 ) { for( int i=0; i 0 ) { fprintf( fp, "%s", p ); } } void XMLStreamer::OpenElement( const char* name ) { if ( elementJustOpened ) { SealElement(); } stack.Push( name ); if ( textDepth < 0 && depth > 0) { fprintf( fp, "\n" ); PrintSpace( depth ); } fprintf( fp, "<%s", name ); elementJustOpened = true; ++depth; } void XMLStreamer::PushAttribute( const char* name, const char* value ) { TIXMLASSERT( elementJustOpened ); fprintf( fp, " %s=\"", name ); PrintString( value ); fprintf( fp, "\"" ); } void XMLStreamer::CloseElement() { --depth; const char* name = stack.Pop(); if ( elementJustOpened ) { fprintf( fp, "/>" ); } else { if ( textDepth < 0 ) { fprintf( fp, "\n" ); PrintSpace( depth ); } fprintf( fp, "", name ); } if ( textDepth == depth ) textDepth = -1; if ( depth == 0 ) fprintf( fp, "\n" ); elementJustOpened = false; } void XMLStreamer::SealElement() { elementJustOpened = false; fprintf( fp, ">" ); } void XMLStreamer::PushText( const char* text, bool cdata ) { textDepth = depth-1; if ( elementJustOpened ) { SealElement(); } if ( cdata ) fprintf( fp, "" ); } void XMLStreamer::PushComment( const char* comment ) { if ( elementJustOpened ) { SealElement(); } PrintSpace( depth ); fprintf( fp, "\n", comment ); } bool XMLStreamer::VisitEnter( const XMLElement& element, const XMLAttribute* attribute ) { OpenElement( element.Name() ); while ( attribute ) { PushAttribute( attribute->Name(), attribute->Value() ); attribute = attribute->Next(); } return true; } bool XMLStreamer::VisitExit( const XMLElement& element ) { CloseElement(); return true; } bool XMLStreamer::Visit( const XMLText& text ) { PushText( text.Value() ); return true; } bool XMLStreamer::Visit( const XMLComment& comment ) { PushComment( comment.Value() ); return true; }