#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 = '\"'; struct Entity { const char* pattern; int length; char value; }; static const int NUM_ENTITIES = 5; static const Entity entities[NUM_ENTITIES] = { { "quot", 4, '\"' }, { "amp", 3, '&' }, { "apos", 4, '\'' }, { "lt", 2, '<' }, { "gt", 2, '>' } }; // --------- 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; 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; iSet( start, p, StrPair::NEEDS_ENTITY_PROCESSING | StrPair::NEEDS_NEWLINE_NORMALIZATION ); return p + length; } ++p; } return p; } char* XMLBase::ParseName( char* p, StrPair* pair ) { char* start = p; 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; char* start = p; p = XMLNode::SkipWhiteSpace( p ); if( !p || !*p ) { return 0; } // What is this thing? // - Elements start with a letter or underscore, but xml is reserved. // - Comments: \n", value.GetStr() ); streamer->PushComment( value.GetStr() ); } char* XMLComment::ParseDeep( char* p ) { // Comment parses as text. return ParseText( p, &value, "-->" ); } // --------- XMLAttribute ---------- // char* XMLAttribute::ParseDeep( char* p ) { p = ParseText( p, &name, "=" ); if ( !p || !*p ) return 0; char endTag[2] = { *p, 0 }; ++p; p = ParseText( p, &value, endTag ); if ( value.Empty() ) return 0; return p; } void XMLAttribute::Print( XMLStreamer* streamer ) { // fixme: sort out single vs. double quote //fprintf( cfile, "%s=\"%s\"", name.GetStr(), value.GetStr() ); streamer->PushAttribute( name.GetStr(), value.GetStr() ); } // --------- 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::ParseAttributes( char* p, bool* closedElement ) { const char* start = p; *closedElement = false; // Read the attributes. while( p ) { p = SkipWhiteSpace( p ); if ( !p || !(*p) ) { document->SetError( XMLDocument::ERROR_PARSING_ELEMENT, start, name.GetStr() ); return 0; } // attribute. if ( IsAlpha( *p ) ) { 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; } *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 = 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; bool elementClosed=false; p = ParseAttributes( p, &elementClosed ); if ( !p || !*p || elementClosed || closing ) return p; p = XMLNode::ParseDeep( p ); return p; } void XMLElement::Print( XMLStreamer* streamer ) { //if ( !parent || !parent->IsTextParent() ) { // PrintSpace( cfile, depth ); //} //fprintf( cfile, "<%s", Name() ); streamer->OpenElement( Name(), IsTextParent() ); for( XMLAttribute* attrib=rootAttribute; attrib; attrib=attrib->next ) { //fprintf( cfile, " " ); attrib->Print( streamer ); } for( XMLNode* node=firstChild; node; node=node->next ) { node->Print( streamer ); } streamer->CloseElement(); } // --------- XMLDocument ----------- // XMLDocument::XMLDocument() : XMLNode( this ), charBuffer( 0 ) { } XMLDocument::~XMLDocument() { } bool XMLDocument::Parse( const char* p ) { charBuffer = CharBuffer::Construct( p ); XMLNode* node = 0; char* q = ParseDeep( charBuffer->mem ); return true; } void XMLDocument::Print( XMLStreamer* streamer ) { XMLStreamer stdStreamer( stdout ); if ( !streamer ) streamer = &stdStreamer; for( XMLNode* node = firstChild; node; node=node->next ) { node->Print( streamer ); } } void XMLDocument::SetError( int error, const char* str1, const char* str2 ) { printf( "ERROR: id=%d '%s' '%s'\n", error, str1, str2 ); } StringStack::StringStack() { *pool = 0; mem = pool; inUse = 1; // always has a null allocated = INIT; nPositive = 0; } StringStack::~StringStack() { if ( mem != pool ) { delete [] mem; } } void StringStack::Push( const char* str ) { int needed = strlen( str ) + 1; if ( needed > 1 ) nPositive++; if ( inUse+needed > allocated ) { // fixme: power of 2 // less stupid allocation int more = inUse+needed + 1000; char* newMem = new char[more]; memcpy( newMem, mem, inUse ); if ( mem != pool ) { delete [] mem; } mem = newMem; } strcpy( mem+inUse, str ); inUse += needed; } const char* StringStack::Pop() { TIXMLASSERT( inUse > 1 ); const char* p = mem+inUse-2; if ( *p ) { nPositive--; } while( *p ) { // stack starts with a null, don't need to check for 'mem' TIXMLASSERT( p > mem ); --p; } inUse = p-mem+1; return p+1; } XMLStreamer::XMLStreamer( FILE* file ) : fp( file ), depth( 0 ), elementJustOpened( false ) { } void XMLStreamer::PrintSpace( int depth ) { for( int i=0; i" ); if ( text.NumPositive() == 0 ) { fprintf( fp, "\n" ); } } else { if ( wasPositive == 0 ) { PrintSpace( depth ); } fprintf( fp, "", name ); if ( text.NumPositive() == 0 ) { fprintf( fp, "\n" ); } } elementJustOpened = false; } void XMLStreamer::SealElement() { elementJustOpened = false; fprintf( fp, ">" ); if ( text.NumPositive() == 0 ) { fprintf( fp, "\n" ); } } void XMLStreamer::PushText( const char* text ) { if ( elementJustOpened ) { SealElement(); } fprintf( fp, "%s", text ); } void XMLStreamer::PushComment( const char* comment ) { if ( elementJustOpened ) { SealElement(); } PrintSpace( depth ); fprintf( fp, "\n", comment ); }