| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517 |
- #include "tinyxml2.h"
- #include <string.h>
- #include <stdlib.h>
- #include <stdio.h>
- #include <ctype.h>
- 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;
- ++q;
- }
- }
- }
- 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 );
- 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: <!--
- // - Decleration: <?xml
- // - Everthing else is unknown to tinyxml.
- //
- static const char* xmlHeader = { "<?xml" };
- static const char* commentHeader = { "<!--" };
- static const char* dtdHeader = { "<!" };
- static const char* cdataHeader = { "<![CDATA[" };
- static const char* elementHeader = { "<" }; // and a header for everything else; check last.
- static const int xmlHeaderLen = 5;
- static const int commentHeaderLen = 4;
- static const int dtdHeaderLen = 2;
- static const int cdataHeaderLen = 9;
- static const int elementHeaderLen = 1;
- if ( StringEqual( p, commentHeader, commentHeaderLen ) ) {
- returnNode = new XMLComment( document );
- p += commentHeaderLen;
- }
- else if ( StringEqual( p, elementHeader, elementHeaderLen ) ) {
- returnNode = new XMLElement( document );
- p += elementHeaderLen;
- }
- // fixme: better text detection
- else if ( (*p != '<') && IsAlphaNum( *p ) ) {
- // fixme: this is filtering out empty text...should it?
- returnNode = new XMLText( document );
- p = start; // Back it up, all the text counts.
- }
- else {
- TIXMLASSERT( 0 );
- }
- *node = returnNode;
- return p;
- }
- // --------- XMLNode ----------- //
- XMLNode::XMLNode( XMLDocument* doc ) :
- document( doc ),
- parent( 0 ),
- firstChild( 0 ), lastChild( 0 ),
- prev( 0 ), next( 0 )
- {
- }
- XMLNode::~XMLNode()
- {
- //printf( "~XMLNode %x\n", this );
- while( firstChild ) {
- XMLNode* node = firstChild;
- Unlink( node );
- delete node;
- }
- }
- void XMLNode::Unlink( XMLNode* child )
- {
- TIXMLASSERT( child->parent == this );
- if ( child == firstChild )
- firstChild = firstChild->next;
- if ( child == lastChild )
- lastChild = lastChild->prev;
- if ( child->prev ) {
- child->prev->next = child->next;
- }
- if ( child->next ) {
- child->next->prev = child->prev;
- }
- child->parent = 0;
- }
- XMLNode* XMLNode::InsertEndChild( XMLNode* addThis )
- {
- if ( lastChild ) {
- TIXMLASSERT( firstChild );
- TIXMLASSERT( lastChild->next == 0 );
- lastChild->next = addThis;
- addThis->prev = lastChild;
- lastChild = addThis;
- addThis->parent = this;
- addThis->next = 0;
- }
- else {
- TIXMLASSERT( firstChild == 0 );
- firstChild = lastChild = addThis;
- addThis->parent = this;
- addThis->prev = 0;
- addThis->next = 0;
- }
- return addThis;
- }
- void XMLNode::Print( FILE* fp, int depth )
- {
- for( XMLNode* node = firstChild; node; node=node->next ) {
- node->Print( fp, depth );
- }
- }
- void XMLNode::PrintSpace( FILE* fp, int depth )
- {
- for( int i=0; i<depth; ++i ) {
- fprintf( fp, " " );
- }
- }
- // --------- XMLText ---------- //
- char* XMLText::ParseDeep( char* p )
- {
- p = ParseText( p, &value, "<" );
- // consumes the end tag.
- if ( p && *p ) {
- return p-1;
- }
- return 0;
- }
- void XMLText::Print( FILE* cfile, int depth )
- {
- fprintf( cfile, value.GetStr() );
- }
- // --------- XMLComment ---------- //
- XMLComment::XMLComment( XMLDocument* doc ) : XMLNode( doc )
- {
- }
- XMLComment::~XMLComment()
- {
- //printf( "~XMLComment\n" );
- }
- void XMLComment::Print( FILE* fp, int depth )
- {
- XMLNode::Print( fp, depth );
- fprintf( fp, "<!--%s-->\n", 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( FILE* cfile )
- {
- // fixme: sort out single vs. double quote
- fprintf( cfile, "%s=\"%s\"", 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::ParseDeep( char* p )
- {
- // Read the element name.
- p = SkipWhiteSpace( p );
- if ( !p ) return 0;
- const char* start = p;
- // The closing element is the </element> 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 ( 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;
- }
- 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 ) {
- // fixme: once text is on, it should stay on, and not use newlines.
- bool useNewline = firstChild->ToText() == 0;
- fprintf( cfile, ">", Name() );
- if ( useNewline ) fprintf( cfile, "\n" );
- for( XMLNode* node=firstChild; node; node=node->next ) {
- node->Print( cfile, depth+1 );
- }
- fprintf( cfile, "</%s>\n", Name() );
- // fixme: see note above
- //if ( useNewline ) fprintf( cfile, "\n" );
- }
- 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;
-
- // fixme: clean up
- char* q = Identify( this, charBuffer->mem, &node );
- while ( node ) {
- root->InsertEndChild( node );
- q = node->ParseDeep( q );
- node = 0;
- if ( q && *q ) {
- q = Identify( this, q, &node );
- }
- }
- return false;
- }
- void XMLDocument::Print( FILE* fp, int depth )
- {
- for( XMLNode* node = root->firstChild; node; node=node->next ) {
- node->Print( fp, depth );
- }
- }
|