| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462 |
- #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;
- // --------- 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 );
- }
- // --------- XMLBase ----------- //
- const char* XMLBase::ParseText( char* p, const char* endTag, char** next )
- {
- TIXMLASSERT( endTag && *endTag );
- char* start = p;
- char* q = p; // q (target) <= p (src) in same buffer.
- char endChar = *endTag;
- int length = strlen( endTag );
- char* nextTag = 0;
- *next = 0;
- // Inner loop of text parsing.
- while ( *p ) {
- if ( *p == endChar && strncmp( p, endTag, length ) == 0 ) {
- *q = 0;
- nextTag = p + length;
- break;
- }
- else 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;
- }
- // Error? If we don't have a text tag, something went wrong. (Although
- // what the nextTag points at may be null.)
- if ( nextTag == 0 ) {
- return 0;
- }
- *next = nextTag;
- return start;
- }
- char* XMLBase::ParseName( char* p, StrPair* pair )
- {
- char* start = p;
- char* nextTag = 0;
- *next = 0;
- start = p;
- if ( !start || !(*start) ) {
- return 0;
- }
- if ( !IsAlpha( *p ) ) {
- return 0;
- }
- while( *p && (
- IsAlphaNum( (unsigned char) *p )
- || *p == '_'
- || *p == '-'
- || *p == '.'
- || *p == ':' ))
- {
- ++p;
- }
- *p = 0;
- if ( p > start ) {
- *next = p+1;
- return start;
- }
- 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: <!--
- // - 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;
- }
- 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()
- {
- XMLNode* node=firstChild;
- while( node ) {
- XMLNode* temp = node->next;
- delete node;
- node = temp;
- }
- if ( prev ) {
- prev->next = next;
- }
- if ( next ) {
- next->prev = prev;
- }
- }
- 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, " " );
- }
- }
- // --------- XMLComment ---------- //
- XMLComment::XMLComment( XMLDocument* doc ) : XMLNode( doc ), value( 0 )
- {
- }
- XMLComment::~XMLComment()
- {
- }
- void XMLComment::Print( FILE* fp, int depth )
- {
- XMLNode::Print( fp, depth );
- fprintf( fp, "<!--%s-->\n", value );
- }
- char* XMLComment::ParseDeep( char* p )
- {
- // Comment parses as text.
- value = ParseText( p, "-->", &p );
- return p;
- }
- // --------- XMLAttribute ---------- //
- char* XMLAttribute::ParseDeep( char* p )
- {
- char endTag[2] = { *p, 0 };
- ++p;
- value = ParseText( p, endTag, &p );
- if ( !value ) return 0;
- return p;
- }
- void XMLAttribute::Print( FILE* cfile )
- {
- fprintf( cfile, "\"%s\"", value );
- }
- // --------- XMLElement ---------- //
- XMLElement::XMLElement( XMLDocument* doc ) : XMLNode( doc ),
- name( 0 ),
- closing( false ),
- rootAttribute( 0 ),
- lastAttribute( 0 )
- {
- }
- XMLElement::~XMLElement()
- {
- XMLAttribute* attribute = rootAttribute;
- while( attribute ) {
- XMLAttribute* next = attribute->next;
- delete attribute;
- attribute = next;
- }
- XMLNode* child = firstChild;
- while( child ) {
- XMLNode* next = child->next;
- delete child;
- child = 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;
- }
- name = ParseName( p, &p );
- if ( !name ) return 0;
- // Read the attributes.
- while( p ) {
- p = SkipWhiteSpace( p );
- if ( !p || !(*p) ) {
- document->SetError( XMLDocument::ERROR_PARSING_ELEMENT, start, name );
- return 0;
- }
- const char* saveP = p;
- // attribute.
- if ( *p == '\'' || *p == '\"' ) {
- XMLAttribute* attrib = new XMLAttribute( this );
- p = attrib->ParseDeep( p );
- if ( !p ) {
- delete attrib;
- document->SetError( XMLDocument::ERROR_PARSING_ATTRIBUTE, start, saveP );
- return 0;
- }
- if ( rootAttribute ) {
- TIXMLASSERT( lastAttribute );
- lastAttribute->next = attrib;
- lastAttribute = attrib;
- }
- else {
- rootAttribute = lastAttribute = attrib;
- }
- }
- else if ( *p == '/' && *(p+1) == '>' ) {
- // end tag.
- if ( closing ) {
- document->SetError( XMLDocument::ERROR_PARSING_ELEMENT, start, p );
- return 0;
- }
- return p+2; // done; sealed element.
- }
- else if ( *p == '>' ) {
- ++p;
- break;
- }
- }
- while( p && *p ) {
- XMLNode* node = 0;
- p = Identify( document, p, &node );
- if ( p && node ) {
- 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;
- p = 0;
- }
- else {
- document->SetError( XMLDocument::ERROR_PARSING_ELEMENT, start, p );
- delete node;
- }
- 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, "</%s>", 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 );
- }
- }
|