#include "tinyxml2.h" #include #include #include #include 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 = '\"'; // --------- CharBuffer ----------- // /*static*/ CharBuffer* CharBuffer::Construct( const char* in ) { size_t len = strlen( in ); size_t size = len + sizeof( CharBuffer ); CharBuffer* cb = (CharBuffer*) malloc( size ); cb->length = len; strcpy( cb->mem, in ); return cb; } /*static*/ void CharBuffer::Free( CharBuffer* cb ) { free( cb ); } const char* StrPair::GetStr() { if ( flags & NEEDS_FLUSH ) { *end = 0; if ( flags & ( NEEDS_ENTITY_PROCESSING | NEEDS_NEWLINE_NORMALIZATION ) ) { char* p = start; char* q = start; while( p < end ) { if ( *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 ( *p == LF ) { if ( *(p+1) == CR ) { p += 2; } else { ++p; } *q = LF; } else { *q = *p; ++p; } } } flags = 0; } return start; } // --------- XMLBase ----------- // char* XMLBase::ParseText( char* p, StrPair* pair, const char* endTag ) { TIXMLASSERT( endTag && *endTag ); char* start = p; char endChar = *endTag; int length = strlen( endTag ); // Inner loop of text parsing. while ( *p ) { if ( *p == endChar && strncmp( p, endTag, length ) == 0 ) { pair->Set( start, p, StrPair::NEEDS_ENTITY_PROCESSING | StrPair::NEEDS_NEWLINE_NORMALIZATION ); break; } } return p; } char* XMLBase::ParseName( char* p, StrPair* pair ) { char* start = p; char* nextTag = 0; start = p; if ( !start || !(*start) ) { return 0; } if ( !IsAlpha( *p ) ) { return 0; } while( *p && ( IsAlphaNum( (unsigned char) *p ) || *p == '_' || *p == '-' || *p == '.' || *p == ':' )) { ++p; } if ( p > start ) { pair->Set( start, p, 0 ); return p; } return 0; } char* XMLBase::Identify( XMLDocument* document, char* p, XMLNode** node ) { XMLNode* returnNode = 0; p = XMLNode::SkipWhiteSpace( p ); if( !p || !*p || *p != '<' ) { return 0; } // What is this thing? // - Elements start with a letter or underscore, but xml is reserved. // - Comments: \n", value ); } char* XMLComment::ParseDeep( char* p ) { // Comment parses as text. return ParseText( p, &value, "-->" ); } // --------- XMLAttribute ---------- // char* XMLAttribute::ParseDeep( char* p ) { char endTag[2] = { *p, 0 }; ++p; p = ParseText( p, &value, endTag ); if ( value.Empty() ) return 0; return p; } void XMLAttribute::Print( FILE* cfile ) { fprintf( cfile, "\"%s\"", value ); } // --------- XMLElement ---------- // XMLElement::XMLElement( XMLDocument* doc ) : XMLNode( doc ), closing( false ), rootAttribute( 0 ), lastAttribute( 0 ) { } XMLElement::~XMLElement() { //printf( "~XMLElemen %x\n",this ); XMLAttribute* attribute = rootAttribute; while( attribute ) { XMLAttribute* next = attribute->next; delete attribute; attribute = next; } } char* XMLElement::ParseDeep( char* p ) { // Read the element name. p = 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 = ParseName( p, &name ); if ( name.Empty() ) return 0; // Read the attributes. while( p ) { p = SkipWhiteSpace( p ); if ( !p || !(*p) ) { document->SetError( XMLDocument::ERROR_PARSING_ELEMENT, start, name.GetStr() ); return 0; } // attribute. if ( *p == SINGLE_QUOTE || *p == DOUBLE_QUOTE ) { XMLAttribute* attrib = new XMLAttribute( this ); p = attrib->ParseDeep( p ); if ( !p ) { delete 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; } 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; } } while( p && *p ) { XMLNode* node = 0; p = Identify( document, p, &node ); if ( p && node ) { p = node->ParseDeep( p ); XMLElement* element = node->ToElement(); if ( element && element->Closing() ) { if ( StringEqual( element->Name(), this->Name() ) ) { // All good, this is closing tag. delete node; } else { document->SetError( XMLDocument::ERROR_PARSING_ELEMENT, start, p ); delete node; p = 0; } return p; } else { this->InsertEndChild( node ); } } } return 0; } void XMLElement::Print( FILE* cfile, int depth ) { PrintSpace( cfile, depth ); fprintf( cfile, "<%s", Name() ); for( XMLAttribute* attrib=rootAttribute; attrib; attrib=attrib->next ) { fprintf( cfile, " " ); attrib->Print( cfile ); } if ( firstChild ) { fprintf( cfile, ">/n" ); for( XMLNode* node=firstChild; node; node=node->next ) { node->Print( cfile, depth+1 ); } fprintf( cfile, "", Name() ); } else { fprintf( cfile, "/>\n" ); } } // --------- XMLDocument ----------- // XMLDocument::XMLDocument() : charBuffer( 0 ) { root = new XMLNode( this ); } XMLDocument::~XMLDocument() { delete root; delete charBuffer; } bool XMLDocument::Parse( const char* p ) { charBuffer = CharBuffer::Construct( p ); XMLNode* node = 0; char* q = Identify( this, charBuffer->mem, &node ); if ( node ) { root->InsertEndChild( node ); node->ParseDeep( q ); return true; } return false; } void XMLDocument::Print( FILE* fp, int depth ) { for( XMLNode* node = root->firstChild; node; node=node->next ) { node->Print( fp, depth ); } }