2011-12-29 03:42:49 +00:00
|
|
|
#include "tinyxml2.h"
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
2011-12-31 22:58:18 +00:00
|
|
|
#include <ctype.h>
|
2012-02-06 16:41:24 +00:00
|
|
|
#include <new.h>
|
|
|
|
|
|
|
|
//#pragma warning ( disable : 4291 )
|
2011-12-29 03:42:49 +00:00
|
|
|
|
|
|
|
using namespace tinyxml2;
|
|
|
|
|
2012-01-21 01:59:50 +00:00
|
|
|
static const char LINE_FEED = (char)0x0a; // all line endings are normalized to LF
|
2012-01-15 02:08:12 +00:00
|
|
|
static const char LF = LINE_FEED;
|
|
|
|
static const char CARRIAGE_RETURN = (char)0x0d; // CR gets filtered out
|
|
|
|
static const char CR = CARRIAGE_RETURN;
|
2012-01-21 01:59:50 +00:00
|
|
|
static const char SINGLE_QUOTE = '\'';
|
|
|
|
static const char DOUBLE_QUOTE = '\"';
|
2012-01-15 02:08:12 +00:00
|
|
|
|
2012-02-07 02:18:11 +00:00
|
|
|
#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 ); }
|
|
|
|
|
2012-01-26 01:44:30 +00:00
|
|
|
struct Entity {
|
|
|
|
const char* pattern;
|
|
|
|
int length;
|
|
|
|
char value;
|
|
|
|
};
|
|
|
|
|
|
|
|
static const int NUM_ENTITIES = 5;
|
|
|
|
static const Entity entities[NUM_ENTITIES] =
|
|
|
|
{
|
2012-01-27 02:17:26 +00:00
|
|
|
{ "quot", 4, DOUBLE_QUOTE },
|
2012-01-26 01:44:30 +00:00
|
|
|
{ "amp", 3, '&' },
|
2012-01-27 02:17:26 +00:00
|
|
|
{ "apos", 4, SINGLE_QUOTE },
|
2012-01-26 01:44:30 +00:00
|
|
|
{ "lt", 2, '<' },
|
|
|
|
{ "gt", 2, '>' }
|
|
|
|
};
|
|
|
|
|
2012-01-15 02:08:12 +00:00
|
|
|
|
2012-02-15 17:09:25 +00:00
|
|
|
StrPair::~StrPair()
|
|
|
|
{
|
|
|
|
Reset();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void StrPair::Reset()
|
|
|
|
{
|
|
|
|
if ( flags & NEEDS_DELETE ) {
|
|
|
|
delete [] start;
|
|
|
|
}
|
|
|
|
flags = 0;
|
|
|
|
start = 0;
|
|
|
|
end = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void StrPair::SetStr( const char* str, int flags )
|
|
|
|
{
|
|
|
|
Reset();
|
|
|
|
size_t len = strlen( str );
|
|
|
|
start = new char[ len+1 ];
|
|
|
|
strncpy( start, str, len );
|
|
|
|
end = start + len;
|
|
|
|
this->flags = flags | NEEDS_DELETE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
char* StrPair::ParseText( char* p, const char* endTag, int strFlags )
|
|
|
|
{
|
|
|
|
TIXMLASSERT( endTag && *endTag );
|
|
|
|
|
|
|
|
char* start = p; // fixme: hides a member
|
|
|
|
char endChar = *endTag;
|
|
|
|
int length = strlen( endTag );
|
|
|
|
|
|
|
|
// Inner loop of text parsing.
|
|
|
|
while ( *p ) {
|
|
|
|
if ( *p == endChar && strncmp( p, endTag, length ) == 0 ) {
|
|
|
|
Set( start, p, strFlags );
|
|
|
|
return p + length;
|
|
|
|
}
|
|
|
|
++p;
|
|
|
|
}
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
char* StrPair::ParseName( char* p )
|
|
|
|
{
|
|
|
|
char* start = p;
|
|
|
|
|
|
|
|
start = p;
|
|
|
|
if ( !start || !(*start) ) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( !XMLUtil::IsAlpha( *p ) ) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
while( *p && (
|
|
|
|
XMLUtil::IsAlphaNum( (unsigned char) *p )
|
|
|
|
|| *p == '_'
|
|
|
|
|| *p == '-'
|
|
|
|
|| *p == '.'
|
|
|
|
|| *p == ':' ))
|
|
|
|
{
|
|
|
|
++p;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( p > start ) {
|
|
|
|
Set( start, p, 0 );
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-01-21 01:59:50 +00:00
|
|
|
const char* StrPair::GetStr()
|
|
|
|
{
|
|
|
|
if ( flags & NEEDS_FLUSH ) {
|
|
|
|
*end = 0;
|
2012-01-26 01:44:30 +00:00
|
|
|
flags ^= NEEDS_FLUSH;
|
2012-01-21 01:59:50 +00:00
|
|
|
|
2012-01-26 01:44:30 +00:00
|
|
|
if ( flags ) {
|
2012-01-21 01:59:50 +00:00
|
|
|
char* p = start;
|
|
|
|
char* q = start;
|
|
|
|
|
|
|
|
while( p < end ) {
|
2012-01-26 01:44:30 +00:00
|
|
|
if ( (flags & NEEDS_NEWLINE_NORMALIZATION) && *p == CR ) {
|
2012-01-21 01:59:50 +00:00
|
|
|
// CR-LF pair becomes LF
|
|
|
|
// CR alone becomes LF
|
|
|
|
// LF-CR becomes LF
|
|
|
|
if ( *(p+1) == LF ) {
|
|
|
|
p += 2;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
++p;
|
|
|
|
}
|
2012-02-14 02:11:20 +00:00
|
|
|
*q++ = LF;
|
2012-01-21 01:59:50 +00:00
|
|
|
}
|
2012-01-26 01:44:30 +00:00
|
|
|
else if ( (flags & NEEDS_NEWLINE_NORMALIZATION) && *p == LF ) {
|
2012-01-21 01:59:50 +00:00
|
|
|
if ( *(p+1) == CR ) {
|
|
|
|
p += 2;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
++p;
|
|
|
|
}
|
2012-02-14 02:11:20 +00:00
|
|
|
*q++ = LF;
|
2012-01-21 01:59:50 +00:00
|
|
|
}
|
2012-01-26 01:44:30 +00:00
|
|
|
else if ( (flags & NEEDS_ENTITY_PROCESSING) && *p == '&' ) {
|
|
|
|
int i=0;
|
|
|
|
for( i=0; i<NUM_ENTITIES; ++i ) {
|
|
|
|
if ( strncmp( p+1, entities[i].pattern, entities[i].length ) == 0
|
|
|
|
&& *(p+entities[i].length+1) == ';' )
|
|
|
|
{
|
|
|
|
// Found an entity convert;
|
|
|
|
*q = entities[i].value;
|
|
|
|
++q;
|
|
|
|
p += entities[i].length + 2;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ( i == NUM_ENTITIES ) {
|
|
|
|
// fixme: treat as error?
|
|
|
|
++p;
|
|
|
|
++q;
|
|
|
|
}
|
|
|
|
}
|
2012-01-21 01:59:50 +00:00
|
|
|
else {
|
|
|
|
*q = *p;
|
|
|
|
++p;
|
2012-01-23 19:42:06 +00:00
|
|
|
++q;
|
2012-01-21 01:59:50 +00:00
|
|
|
}
|
|
|
|
}
|
2012-01-26 01:44:30 +00:00
|
|
|
*q = 0;
|
2012-01-21 01:59:50 +00:00
|
|
|
}
|
2012-02-15 17:09:25 +00:00
|
|
|
flags = (flags & NEEDS_DELETE);
|
2012-01-21 01:59:50 +00:00
|
|
|
}
|
|
|
|
return start;
|
|
|
|
}
|
|
|
|
|
2012-01-31 16:24:24 +00:00
|
|
|
|
2012-01-21 01:59:50 +00:00
|
|
|
|
2012-02-10 02:16:58 +00:00
|
|
|
// --------- XMLUtil ----------- //
|
2012-02-06 16:41:24 +00:00
|
|
|
|
|
|
|
char* XMLDocument::Identify( char* p, XMLNode** node )
|
2012-01-19 01:43:40 +00:00
|
|
|
{
|
|
|
|
XMLNode* returnNode = 0;
|
2012-01-23 23:32:10 +00:00
|
|
|
char* start = p;
|
2012-02-10 02:16:58 +00:00
|
|
|
p = XMLUtil::SkipWhiteSpace( p );
|
2012-01-23 23:32:10 +00:00
|
|
|
if( !p || !*p )
|
2012-01-19 01:43:40 +00:00
|
|
|
{
|
|
|
|
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[" };
|
2012-01-19 01:55:48 +00:00
|
|
|
static const char* elementHeader = { "<" }; // and a header for everything else; check last.
|
2012-01-19 01:43:40 +00:00
|
|
|
|
|
|
|
static const int xmlHeaderLen = 5;
|
|
|
|
static const int commentHeaderLen = 4;
|
|
|
|
static const int dtdHeaderLen = 2;
|
|
|
|
static const int cdataHeaderLen = 9;
|
2012-01-19 01:55:48 +00:00
|
|
|
static const int elementHeaderLen = 1;
|
2012-01-19 01:43:40 +00:00
|
|
|
|
2012-02-12 00:33:40 +00:00
|
|
|
TIXMLASSERT( sizeof( XMLComment ) == sizeof( XMLUnknown ) ); // use same memory pool
|
|
|
|
TIXMLASSERT( sizeof( XMLComment ) == sizeof( XMLDeclaration ) ); // use same memory pool
|
|
|
|
|
|
|
|
if ( XMLUtil::StringEqual( p, xmlHeader, xmlHeaderLen ) ) {
|
|
|
|
returnNode = new (commentPool.Alloc()) XMLDeclaration( this );
|
|
|
|
returnNode->memPool = &commentPool;
|
|
|
|
p += xmlHeaderLen;
|
|
|
|
}
|
|
|
|
else if ( XMLUtil::StringEqual( p, commentHeader, commentHeaderLen ) ) {
|
2012-02-06 16:41:24 +00:00
|
|
|
returnNode = new (commentPool.Alloc()) XMLComment( this );
|
|
|
|
returnNode->memPool = &commentPool;
|
2012-01-19 01:43:40 +00:00
|
|
|
p += commentHeaderLen;
|
|
|
|
}
|
2012-02-12 00:33:40 +00:00
|
|
|
else if ( XMLUtil::StringEqual( p, cdataHeader, cdataHeaderLen ) ) {
|
|
|
|
XMLText* text = new (textPool.Alloc()) XMLText( this );
|
|
|
|
returnNode = text;
|
|
|
|
returnNode->memPool = &textPool;
|
|
|
|
p += cdataHeaderLen;
|
|
|
|
text->SetCData( true );
|
|
|
|
}
|
|
|
|
else if ( XMLUtil::StringEqual( p, dtdHeader, dtdHeaderLen ) ) {
|
|
|
|
returnNode = new (commentPool.Alloc()) XMLUnknown( this );
|
|
|
|
returnNode->memPool = &commentPool;
|
|
|
|
p += dtdHeaderLen;
|
|
|
|
}
|
2012-02-10 02:16:58 +00:00
|
|
|
else if ( XMLUtil::StringEqual( p, elementHeader, elementHeaderLen ) ) {
|
2012-02-06 16:41:24 +00:00
|
|
|
returnNode = new (elementPool.Alloc()) XMLElement( this );
|
|
|
|
returnNode->memPool = &elementPool;
|
2012-01-19 01:55:48 +00:00
|
|
|
p += elementHeaderLen;
|
|
|
|
}
|
2012-02-10 02:16:58 +00:00
|
|
|
else if ( (*p != '<') && XMLUtil::IsAlphaNum( *p ) ) {
|
2012-02-06 16:41:24 +00:00
|
|
|
returnNode = new (textPool.Alloc()) XMLText( this );
|
|
|
|
returnNode->memPool = &textPool;
|
2012-01-23 23:32:10 +00:00
|
|
|
p = start; // Back it up, all the text counts.
|
|
|
|
}
|
2012-01-19 01:43:40 +00:00
|
|
|
else {
|
2012-02-12 00:33:40 +00:00
|
|
|
this->SetError( ERROR_IDENTIFYING_TAG, p, 0 );
|
|
|
|
p = 0;
|
|
|
|
returnNode = 0;
|
2012-01-19 01:43:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
*node = returnNode;
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-10 16:50:51 +00:00
|
|
|
bool XMLDocument::Accept( XMLVisitor* visitor ) const
|
|
|
|
{
|
|
|
|
if ( visitor->VisitEnter( *this ) )
|
|
|
|
{
|
|
|
|
for ( const XMLNode* node=FirstChild(); node; node=node->NextSibling() )
|
|
|
|
{
|
|
|
|
if ( !node->Accept( visitor ) )
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return visitor->VisitExit( *this );
|
|
|
|
}
|
2012-02-10 02:16:58 +00:00
|
|
|
|
|
|
|
|
2012-01-11 23:30:03 +00:00
|
|
|
// --------- XMLNode ----------- //
|
|
|
|
|
|
|
|
XMLNode::XMLNode( XMLDocument* doc ) :
|
|
|
|
document( doc ),
|
|
|
|
parent( 0 ),
|
|
|
|
firstChild( 0 ), lastChild( 0 ),
|
|
|
|
prev( 0 ), next( 0 )
|
2011-12-31 22:58:18 +00:00
|
|
|
{
|
2012-01-11 23:30:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
XMLNode::~XMLNode()
|
|
|
|
{
|
2012-01-27 02:17:26 +00:00
|
|
|
ClearChildren();
|
2012-01-27 02:32:34 +00:00
|
|
|
if ( parent ) {
|
|
|
|
parent->Unlink( this );
|
|
|
|
}
|
2012-01-27 02:17:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-15 17:09:25 +00:00
|
|
|
void XMLNode::SetValue( const char* str, bool staticMem )
|
|
|
|
{
|
|
|
|
if ( staticMem )
|
|
|
|
value.SetInternedStr( str );
|
|
|
|
else
|
|
|
|
value.SetStr( str );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-01-27 02:17:26 +00:00
|
|
|
void XMLNode::ClearChildren()
|
|
|
|
{
|
2012-01-23 16:44:25 +00:00
|
|
|
while( firstChild ) {
|
|
|
|
XMLNode* node = firstChild;
|
|
|
|
Unlink( node );
|
2012-02-06 16:41:24 +00:00
|
|
|
|
2012-02-07 02:18:11 +00:00
|
|
|
DELETE_NODE( node );
|
2012-01-11 23:30:03 +00:00
|
|
|
}
|
2012-01-27 02:17:26 +00:00
|
|
|
firstChild = lastChild = 0;
|
2012-01-23 16:44:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
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;
|
2012-01-19 01:43:40 +00:00
|
|
|
}
|
2012-01-23 16:44:25 +00:00
|
|
|
if ( child->next ) {
|
|
|
|
child->next->prev = child->prev;
|
2012-01-19 01:43:40 +00:00
|
|
|
}
|
2012-01-23 16:44:25 +00:00
|
|
|
child->parent = 0;
|
2012-01-11 23:30:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
XMLNode* XMLNode::InsertEndChild( XMLNode* addThis )
|
|
|
|
{
|
|
|
|
if ( lastChild ) {
|
|
|
|
TIXMLASSERT( firstChild );
|
|
|
|
TIXMLASSERT( lastChild->next == 0 );
|
|
|
|
lastChild->next = addThis;
|
|
|
|
addThis->prev = lastChild;
|
|
|
|
lastChild = addThis;
|
|
|
|
|
|
|
|
addThis->parent = this;
|
2012-01-11 23:43:54 +00:00
|
|
|
addThis->next = 0;
|
2012-01-11 23:30:03 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
TIXMLASSERT( firstChild == 0 );
|
|
|
|
firstChild = lastChild = addThis;
|
|
|
|
|
|
|
|
addThis->parent = this;
|
|
|
|
addThis->prev = 0;
|
2012-01-11 23:43:54 +00:00
|
|
|
addThis->next = 0;
|
|
|
|
}
|
|
|
|
return addThis;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-15 02:18:16 +00:00
|
|
|
XMLNode* XMLNode::InsertFirstChild( XMLNode* addThis )
|
|
|
|
{
|
|
|
|
if ( firstChild ) {
|
|
|
|
TIXMLASSERT( lastChild );
|
|
|
|
TIXMLASSERT( firstChild->prev == 0 );
|
|
|
|
|
|
|
|
firstChild->prev = addThis;
|
|
|
|
addThis->next = firstChild;
|
|
|
|
firstChild = addThis;
|
|
|
|
|
|
|
|
addThis->parent = this;
|
|
|
|
addThis->prev = 0;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
TIXMLASSERT( lastChild == 0 );
|
|
|
|
firstChild = lastChild = addThis;
|
|
|
|
|
|
|
|
addThis->parent = this;
|
|
|
|
addThis->prev = 0;
|
|
|
|
addThis->next = 0;
|
|
|
|
}
|
|
|
|
return addThis;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
XMLNode* XMLNode::InsertAfterChild( XMLNode* afterThis, XMLNode* addThis )
|
|
|
|
{
|
|
|
|
TIXMLASSERT( afterThis->parent == this );
|
|
|
|
if ( afterThis->parent != this )
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if ( afterThis->next == 0 ) {
|
|
|
|
// The last node or the only node.
|
|
|
|
return InsertEndChild( addThis );
|
|
|
|
}
|
|
|
|
addThis->prev = afterThis;
|
|
|
|
addThis->next = afterThis->next;
|
|
|
|
afterThis->next->prev = addThis;
|
|
|
|
afterThis->next = addThis;
|
|
|
|
return addThis;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-02-10 02:16:58 +00:00
|
|
|
const XMLElement* XMLNode::FirstChildElement( const char* value ) const
|
2012-01-31 16:24:24 +00:00
|
|
|
{
|
|
|
|
for( XMLNode* node=firstChild; node; node=node->next ) {
|
|
|
|
XMLElement* element = node->ToElement();
|
|
|
|
if ( element ) {
|
2012-02-10 02:16:58 +00:00
|
|
|
if ( !value || XMLUtil::StringEqual( element->Name(), value ) ) {
|
|
|
|
return element;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const XMLElement* XMLNode::LastChildElement( const char* value ) const
|
|
|
|
{
|
|
|
|
for( XMLNode* node=lastChild; node; node=node->prev ) {
|
|
|
|
XMLElement* element = node->ToElement();
|
|
|
|
if ( element ) {
|
|
|
|
if ( !value || XMLUtil::StringEqual( element->Name(), value ) ) {
|
2012-01-31 16:24:24 +00:00
|
|
|
return element;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-10 02:16:58 +00:00
|
|
|
void XMLNode::DeleteChild( XMLNode* node )
|
|
|
|
{
|
|
|
|
TIXMLASSERT( node->parent == this );
|
|
|
|
TIXMLASSERT( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-01-25 00:01:51 +00:00
|
|
|
char* XMLNode::ParseDeep( char* p )
|
|
|
|
{
|
|
|
|
while( p && *p ) {
|
|
|
|
XMLNode* node = 0;
|
2012-02-06 16:41:24 +00:00
|
|
|
p = document->Identify( p, &node );
|
2012-01-25 00:01:51 +00:00
|
|
|
if ( p && node ) {
|
|
|
|
p = node->ParseDeep( p );
|
|
|
|
// FIXME: is it the correct closing element?
|
|
|
|
if ( node->IsClosingElement() ) {
|
2012-02-07 02:18:11 +00:00
|
|
|
DELETE_NODE( node );
|
2012-01-25 00:01:51 +00:00
|
|
|
return p;
|
|
|
|
}
|
|
|
|
this->InsertEndChild( node );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-01-23 23:32:10 +00:00
|
|
|
// --------- XMLText ---------- //
|
|
|
|
char* XMLText::ParseDeep( char* p )
|
|
|
|
{
|
2012-02-12 00:33:40 +00:00
|
|
|
if ( this->CData() ) {
|
|
|
|
p = value.ParseText( p, "]]>", StrPair::NEEDS_NEWLINE_NORMALIZATION );
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
p = value.ParseText( p, "<", StrPair::TEXT_ELEMENT );
|
|
|
|
// consumes the end tag.
|
|
|
|
if ( p && *p ) {
|
|
|
|
return p-1;
|
|
|
|
}
|
2012-01-23 23:32:10 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-10 02:16:58 +00:00
|
|
|
bool XMLText::Accept( XMLVisitor* visitor ) const
|
|
|
|
{
|
|
|
|
return visitor->Visit( *this );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-01-11 23:30:03 +00:00
|
|
|
// --------- XMLComment ---------- //
|
|
|
|
|
2012-01-21 01:59:50 +00:00
|
|
|
XMLComment::XMLComment( XMLDocument* doc ) : XMLNode( doc )
|
2012-01-11 23:30:03 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-01-11 23:43:54 +00:00
|
|
|
XMLComment::~XMLComment()
|
2012-01-11 23:30:03 +00:00
|
|
|
{
|
2012-01-23 16:44:25 +00:00
|
|
|
//printf( "~XMLComment\n" );
|
2012-01-11 23:30:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-01-11 23:43:54 +00:00
|
|
|
char* XMLComment::ParseDeep( char* p )
|
2012-01-11 23:30:03 +00:00
|
|
|
{
|
|
|
|
// Comment parses as text.
|
2012-02-10 02:16:58 +00:00
|
|
|
return value.ParseText( p, "-->", StrPair::COMMENT );
|
2011-12-31 22:58:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-10 16:50:51 +00:00
|
|
|
bool XMLComment::Accept( XMLVisitor* visitor ) const
|
|
|
|
{
|
|
|
|
return visitor->Visit( *this );
|
|
|
|
}
|
2012-02-10 02:16:58 +00:00
|
|
|
|
|
|
|
|
2012-02-12 00:33:40 +00:00
|
|
|
// --------- 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 );
|
|
|
|
}
|
|
|
|
|
2012-01-19 01:43:40 +00:00
|
|
|
// --------- XMLAttribute ---------- //
|
|
|
|
char* XMLAttribute::ParseDeep( char* p )
|
|
|
|
{
|
2012-02-10 02:16:58 +00:00
|
|
|
p = name.ParseText( p, "=", StrPair::ATTRIBUTE_NAME );
|
2012-01-23 21:29:35 +00:00
|
|
|
if ( !p || !*p ) return 0;
|
|
|
|
|
2012-01-19 01:43:40 +00:00
|
|
|
char endTag[2] = { *p, 0 };
|
|
|
|
++p;
|
2012-02-10 02:16:58 +00:00
|
|
|
p = value.ParseText( p, endTag, StrPair::ATTRIBUTE_VALUE );
|
2012-01-21 01:59:50 +00:00
|
|
|
if ( value.Empty() ) return 0;
|
2012-01-19 01:43:40 +00:00
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-15 02:18:16 +00:00
|
|
|
int XMLAttribute::QueryIntAttribute( int* value ) const
|
|
|
|
{
|
2012-02-15 17:09:25 +00:00
|
|
|
if ( TIXML_SSCANF( Value(), "%d", value ) == 1 )
|
|
|
|
return ATTRIBUTE_SUCCESS;
|
2012-02-15 02:18:16 +00:00
|
|
|
return WRONG_ATTRIBUTE_TYPE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int XMLAttribute::QueryUnsignedAttribute( unsigned int* value ) const
|
|
|
|
{
|
2012-02-15 17:09:25 +00:00
|
|
|
if ( TIXML_SSCANF( Value(), "%u", value ) == 1 )
|
|
|
|
return ATTRIBUTE_SUCCESS;
|
2012-02-15 02:18:16 +00:00
|
|
|
return WRONG_ATTRIBUTE_TYPE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int XMLAttribute::QueryBoolAttribute( bool* value ) const
|
|
|
|
{
|
|
|
|
int ival = -1;
|
|
|
|
QueryIntAttribute( &ival );
|
|
|
|
|
|
|
|
if ( ival > 0 || XMLUtil::StringEqual( Value(), "true" ) ) {
|
|
|
|
*value = true;
|
|
|
|
return ATTRIBUTE_SUCCESS;
|
|
|
|
}
|
|
|
|
else if ( ival == 0 || XMLUtil::StringEqual( Value(), "false" ) ) {
|
|
|
|
*value = false;
|
2012-02-15 17:09:25 +00:00
|
|
|
return ATTRIBUTE_SUCCESS;
|
|
|
|
}
|
2012-02-15 02:18:16 +00:00
|
|
|
return WRONG_ATTRIBUTE_TYPE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int XMLAttribute::QueryDoubleAttribute( double* value ) const
|
|
|
|
{
|
2012-02-15 17:09:25 +00:00
|
|
|
if ( TIXML_SSCANF( Value(), "%lf", value ) == 1 )
|
|
|
|
return ATTRIBUTE_SUCCESS;
|
2012-02-15 02:18:16 +00:00
|
|
|
return WRONG_ATTRIBUTE_TYPE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int XMLAttribute::QueryFloatAttribute( float* value ) const
|
|
|
|
{
|
2012-02-15 17:09:25 +00:00
|
|
|
if ( TIXML_SSCANF( Value(), "%f", value ) == 1 )
|
|
|
|
return ATTRIBUTE_SUCCESS;
|
2012-02-15 02:18:16 +00:00
|
|
|
return WRONG_ATTRIBUTE_TYPE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void XMLAttribute::SetAttribute( const char* v )
|
|
|
|
{
|
2012-02-15 17:09:25 +00:00
|
|
|
value.SetStr( v );
|
2012-02-15 02:18:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void XMLAttribute::SetAttribute( int v )
|
|
|
|
{
|
|
|
|
char buf[BUF_SIZE];
|
2012-02-15 17:09:25 +00:00
|
|
|
TIXML_SNPRINTF( buf, BUF_SIZE-1, "%d", v );
|
|
|
|
value.SetStr( buf );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void XMLAttribute::SetAttribute( unsigned v )
|
|
|
|
{
|
|
|
|
char buf[BUF_SIZE];
|
|
|
|
TIXML_SNPRINTF( buf, BUF_SIZE-1, "%u", v );
|
|
|
|
value.SetStr( buf );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void XMLAttribute::SetAttribute( bool v )
|
|
|
|
{
|
|
|
|
char buf[BUF_SIZE];
|
|
|
|
TIXML_SNPRINTF( buf, BUF_SIZE-1, "%d", v ? 1 : 0 );
|
|
|
|
value.SetStr( buf );
|
|
|
|
}
|
|
|
|
|
|
|
|
void XMLAttribute::SetAttribute( double v )
|
|
|
|
{
|
|
|
|
char buf[BUF_SIZE];
|
|
|
|
TIXML_SNPRINTF( buf, BUF_SIZE-1, "%f", v );
|
|
|
|
value.SetStr( buf );
|
|
|
|
}
|
2012-02-15 02:18:16 +00:00
|
|
|
|
2012-02-15 17:09:25 +00:00
|
|
|
void XMLAttribute::SetAttribute( float v )
|
|
|
|
{
|
|
|
|
char buf[BUF_SIZE];
|
|
|
|
TIXML_SNPRINTF( buf, BUF_SIZE-1, "%f", v );
|
|
|
|
value.SetStr( buf );
|
2012-02-15 02:18:16 +00:00
|
|
|
}
|
2012-02-15 17:09:25 +00:00
|
|
|
|
2012-01-19 01:55:48 +00:00
|
|
|
|
2012-01-19 01:43:40 +00:00
|
|
|
// --------- XMLElement ---------- //
|
|
|
|
XMLElement::XMLElement( XMLDocument* doc ) : XMLNode( doc ),
|
|
|
|
closing( false ),
|
|
|
|
rootAttribute( 0 ),
|
|
|
|
lastAttribute( 0 )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
XMLElement::~XMLElement()
|
|
|
|
{
|
|
|
|
XMLAttribute* attribute = rootAttribute;
|
|
|
|
while( attribute ) {
|
|
|
|
XMLAttribute* next = attribute->next;
|
2012-02-07 02:18:11 +00:00
|
|
|
DELETE_ATTRIBUTE( attribute );
|
2012-01-19 01:43:40 +00:00
|
|
|
attribute = next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-15 17:09:25 +00:00
|
|
|
XMLAttribute* XMLElement::FindAttribute( const char* name )
|
|
|
|
{
|
|
|
|
XMLAttribute* a = 0;
|
|
|
|
for( a=rootAttribute; a; a = a->next ) {
|
|
|
|
if ( XMLUtil::StringEqual( a->Name(), name ) )
|
|
|
|
return a;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const XMLAttribute* XMLElement::FindAttribute( const char* name ) const
|
|
|
|
{
|
|
|
|
XMLAttribute* a = 0;
|
|
|
|
for( a=rootAttribute; a; a = a->next ) {
|
|
|
|
if ( XMLUtil::StringEqual( a->Name(), name ) )
|
|
|
|
return a;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
XMLAttribute* XMLElement::FindOrCreateAttribute( const char* name )
|
|
|
|
{
|
|
|
|
XMLAttribute* attrib = FindAttribute( name );
|
|
|
|
if ( !attrib ) {
|
|
|
|
attrib = new (document->attributePool.Alloc() ) XMLAttribute( this );
|
|
|
|
attrib->memPool = &document->attributePool;
|
|
|
|
}
|
|
|
|
return attrib;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-01-25 00:01:51 +00:00
|
|
|
char* XMLElement::ParseAttributes( char* p, bool* closedElement )
|
2012-01-19 01:43:40 +00:00
|
|
|
{
|
|
|
|
const char* start = p;
|
2012-01-25 00:01:51 +00:00
|
|
|
*closedElement = false;
|
2012-01-19 01:43:40 +00:00
|
|
|
|
|
|
|
// Read the attributes.
|
|
|
|
while( p ) {
|
2012-02-10 02:16:58 +00:00
|
|
|
p = XMLUtil::SkipWhiteSpace( p );
|
2012-01-19 01:43:40 +00:00
|
|
|
if ( !p || !(*p) ) {
|
2012-02-06 16:41:24 +00:00
|
|
|
document->SetError( XMLDocument::ERROR_PARSING_ELEMENT, start, Name() );
|
2012-01-19 01:43:40 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// attribute.
|
2012-02-10 02:16:58 +00:00
|
|
|
if ( XMLUtil::IsAlpha( *p ) ) {
|
2012-02-07 02:18:11 +00:00
|
|
|
XMLAttribute* attrib = new (document->attributePool.Alloc() ) XMLAttribute( this );
|
|
|
|
attrib->memPool = &document->attributePool;
|
2012-02-06 16:41:24 +00:00
|
|
|
|
2012-01-19 01:43:40 +00:00
|
|
|
p = attrib->ParseDeep( p );
|
|
|
|
if ( !p ) {
|
2012-02-07 02:18:11 +00:00
|
|
|
DELETE_ATTRIBUTE( attrib );
|
2012-01-21 01:59:50 +00:00
|
|
|
document->SetError( XMLDocument::ERROR_PARSING_ATTRIBUTE, start, p );
|
2012-01-19 01:43:40 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if ( rootAttribute ) {
|
|
|
|
TIXMLASSERT( lastAttribute );
|
|
|
|
lastAttribute->next = attrib;
|
|
|
|
lastAttribute = attrib;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
rootAttribute = lastAttribute = attrib;
|
|
|
|
}
|
|
|
|
}
|
2012-01-21 01:59:50 +00:00
|
|
|
// end of the tag
|
2012-01-19 01:43:40 +00:00
|
|
|
else if ( *p == '/' && *(p+1) == '>' ) {
|
|
|
|
if ( closing ) {
|
|
|
|
document->SetError( XMLDocument::ERROR_PARSING_ELEMENT, start, p );
|
|
|
|
return 0;
|
|
|
|
}
|
2012-01-25 00:01:51 +00:00
|
|
|
*closedElement = true;
|
2012-01-19 01:43:40 +00:00
|
|
|
return p+2; // done; sealed element.
|
|
|
|
}
|
2012-01-21 01:59:50 +00:00
|
|
|
// end of the tag
|
2012-01-19 01:43:40 +00:00
|
|
|
else if ( *p == '>' ) {
|
|
|
|
++p;
|
|
|
|
break;
|
|
|
|
}
|
2012-01-21 01:59:50 +00:00
|
|
|
else {
|
|
|
|
document->SetError( XMLDocument::ERROR_PARSING_ELEMENT, start, p );
|
|
|
|
return 0;
|
|
|
|
}
|
2012-01-19 01:43:40 +00:00
|
|
|
}
|
2012-01-25 00:01:51 +00:00
|
|
|
return p;
|
|
|
|
}
|
2012-01-19 01:43:40 +00:00
|
|
|
|
|
|
|
|
2012-01-25 00:01:51 +00:00
|
|
|
//
|
|
|
|
// <ele></ele>
|
|
|
|
// <ele>foo<b>bar</b></ele>
|
|
|
|
//
|
|
|
|
char* XMLElement::ParseDeep( char* p )
|
|
|
|
{
|
|
|
|
// Read the element name.
|
2012-02-10 02:16:58 +00:00
|
|
|
p = XMLUtil::SkipWhiteSpace( p );
|
2012-01-25 00:01:51 +00:00
|
|
|
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;
|
2012-01-19 01:43:40 +00:00
|
|
|
}
|
2012-01-25 00:01:51 +00:00
|
|
|
|
2012-02-10 02:16:58 +00:00
|
|
|
p = value.ParseName( p );
|
2012-02-06 16:41:24 +00:00
|
|
|
if ( value.Empty() ) return 0;
|
2012-01-25 00:01:51 +00:00
|
|
|
|
|
|
|
bool elementClosed=false;
|
|
|
|
p = ParseAttributes( p, &elementClosed );
|
|
|
|
if ( !p || !*p || elementClosed || closing )
|
|
|
|
return p;
|
|
|
|
|
|
|
|
p = XMLNode::ParseDeep( p );
|
|
|
|
return p;
|
2012-01-19 01:43:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-10 16:50:51 +00:00
|
|
|
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 );
|
|
|
|
|
|
|
|
}
|
2012-02-10 02:16:58 +00:00
|
|
|
|
|
|
|
|
2012-01-11 23:30:03 +00:00
|
|
|
// --------- XMLDocument ----------- //
|
2012-01-25 00:01:51 +00:00
|
|
|
XMLDocument::XMLDocument() :
|
2012-01-27 02:17:26 +00:00
|
|
|
XMLNode( 0 ),
|
2011-12-29 03:42:49 +00:00
|
|
|
charBuffer( 0 )
|
|
|
|
{
|
2012-01-27 02:17:26 +00:00
|
|
|
document = this; // avoid warning about 'this' in initializer list
|
2011-12-29 03:42:49 +00:00
|
|
|
}
|
2011-12-28 22:36:55 +00:00
|
|
|
|
|
|
|
|
2012-01-11 23:30:03 +00:00
|
|
|
XMLDocument::~XMLDocument()
|
|
|
|
{
|
2012-02-06 16:41:24 +00:00
|
|
|
ClearChildren();
|
2012-01-27 02:17:26 +00:00
|
|
|
delete [] charBuffer;
|
2012-02-06 16:41:24 +00:00
|
|
|
|
2012-02-14 02:16:52 +00:00
|
|
|
#if 0
|
2012-02-06 17:14:14 +00:00
|
|
|
textPool.Trace( "text" );
|
|
|
|
elementPool.Trace( "element" );
|
|
|
|
commentPool.Trace( "comment" );
|
|
|
|
attributePool.Trace( "attribute" );
|
2012-02-14 02:11:20 +00:00
|
|
|
#endif
|
|
|
|
|
2012-02-06 17:14:14 +00:00
|
|
|
TIXMLASSERT( textPool.CurrentAllocs() == 0 );
|
|
|
|
TIXMLASSERT( elementPool.CurrentAllocs() == 0 );
|
|
|
|
TIXMLASSERT( commentPool.CurrentAllocs() == 0 );
|
|
|
|
TIXMLASSERT( attributePool.CurrentAllocs() == 0 );
|
2012-01-11 23:30:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-01-27 02:17:26 +00:00
|
|
|
void XMLDocument::InitDocument()
|
|
|
|
{
|
|
|
|
errorID = NO_ERROR;
|
|
|
|
errorStr1 = 0;
|
|
|
|
errorStr2 = 0;
|
|
|
|
|
|
|
|
delete [] charBuffer;
|
|
|
|
charBuffer = 0;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2012-01-11 23:30:03 +00:00
|
|
|
|
2012-01-31 16:24:24 +00:00
|
|
|
XMLElement* XMLDocument::NewElement( const char* name )
|
|
|
|
{
|
2012-02-06 16:41:24 +00:00
|
|
|
XMLElement* ele = new (elementPool.Alloc()) XMLElement( this );
|
|
|
|
ele->memPool = &elementPool;
|
2012-01-31 16:24:24 +00:00
|
|
|
ele->SetName( name );
|
|
|
|
return ele;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-15 02:18:16 +00:00
|
|
|
XMLComment* XMLDocument::NewComment( const char* str )
|
|
|
|
{
|
|
|
|
XMLComment* comment = new (commentPool.Alloc()) XMLComment( this );
|
|
|
|
comment->memPool = &commentPool;
|
|
|
|
comment->SetValue( str );
|
|
|
|
return comment;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
XMLText* XMLDocument::NewText( const char* str )
|
|
|
|
{
|
|
|
|
XMLText* Text = new (textPool.Alloc()) XMLText( this );
|
|
|
|
Text->memPool = &textPool;
|
|
|
|
Text->SetValue( str );
|
|
|
|
return Text;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-01-27 02:32:34 +00:00
|
|
|
int XMLDocument::Parse( const char* p )
|
2012-01-11 23:30:03 +00:00
|
|
|
{
|
2012-01-27 02:17:26 +00:00
|
|
|
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 );
|
2012-01-11 23:30:03 +00:00
|
|
|
XMLNode* node = 0;
|
2012-01-11 23:55:05 +00:00
|
|
|
|
2012-01-27 02:17:26 +00:00
|
|
|
char* q = ParseDeep( charBuffer );
|
2012-01-27 02:32:34 +00:00
|
|
|
return errorID;
|
2012-01-11 23:30:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-01-25 02:03:07 +00:00
|
|
|
void XMLDocument::Print( XMLStreamer* streamer )
|
2012-01-11 23:30:03 +00:00
|
|
|
{
|
2012-01-25 02:03:07 +00:00
|
|
|
XMLStreamer stdStreamer( stdout );
|
|
|
|
if ( !streamer )
|
|
|
|
streamer = &stdStreamer;
|
2012-02-10 16:50:51 +00:00
|
|
|
//for( XMLNode* node = firstChild; node; node=node->next ) {
|
|
|
|
// node->Print( streamer );
|
|
|
|
//}
|
|
|
|
Accept( streamer );
|
2012-01-11 23:30:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-01-25 00:01:51 +00:00
|
|
|
void XMLDocument::SetError( int error, const char* str1, const char* str2 )
|
|
|
|
{
|
2012-01-27 02:17:26 +00:00
|
|
|
errorID = error;
|
|
|
|
printf( "ERROR: id=%d '%s' '%s'\n", error, str1, str2 ); // fixme: remove
|
|
|
|
errorStr1 = str1;
|
|
|
|
errorStr2 = str2;
|
2012-01-25 00:01:51 +00:00
|
|
|
}
|
|
|
|
|
2012-01-25 02:03:07 +00:00
|
|
|
|
2012-01-31 16:24:24 +00:00
|
|
|
/*
|
2012-01-25 02:03:07 +00:00
|
|
|
StringStack::StringStack()
|
|
|
|
{
|
|
|
|
nPositive = 0;
|
2012-01-28 01:58:30 +00:00
|
|
|
mem.Push( 0 ); // start with null. makes later code simpler.
|
2012-01-25 02:03:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-01-26 01:16:23 +00:00
|
|
|
StringStack::~StringStack()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-01-25 02:03:07 +00:00
|
|
|
void StringStack::Push( const char* str ) {
|
|
|
|
int needed = strlen( str ) + 1;
|
2012-01-28 01:58:30 +00:00
|
|
|
char* p = mem.PushArr( needed );
|
|
|
|
strcpy( p, str );
|
|
|
|
if ( needed > 1 )
|
2012-01-25 02:03:07 +00:00
|
|
|
nPositive++;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const char* StringStack::Pop() {
|
2012-01-28 01:58:30 +00:00
|
|
|
TIXMLASSERT( mem.Size() > 1 );
|
|
|
|
const char* p = mem.Mem() + mem.Size() - 2; // end of final string.
|
2012-01-25 02:03:07 +00:00
|
|
|
if ( *p ) {
|
|
|
|
nPositive--;
|
|
|
|
}
|
|
|
|
while( *p ) { // stack starts with a null, don't need to check for 'mem'
|
2012-01-28 01:58:30 +00:00
|
|
|
TIXMLASSERT( p > mem.Mem() );
|
2012-01-25 02:03:07 +00:00
|
|
|
--p;
|
|
|
|
}
|
2012-01-28 01:58:30 +00:00
|
|
|
mem.PopArr( strlen(p)+1 );
|
2012-01-25 02:03:07 +00:00
|
|
|
return p+1;
|
|
|
|
}
|
2012-01-31 16:24:24 +00:00
|
|
|
*/
|
2012-01-25 02:03:07 +00:00
|
|
|
|
|
|
|
|
2012-02-10 02:16:58 +00:00
|
|
|
XMLStreamer::XMLStreamer( FILE* file ) : fp( file ), depth( 0 ), elementJustOpened( false ), textDepth( -1 )
|
2012-01-25 02:03:07 +00:00
|
|
|
{
|
2012-01-26 01:50:25 +00:00
|
|
|
for( int i=0; i<ENTITY_RANGE; ++i ) {
|
|
|
|
entityFlag[i] = false;
|
|
|
|
}
|
|
|
|
for( int i=0; i<NUM_ENTITIES; ++i ) {
|
|
|
|
TIXMLASSERT( entities[i].value < ENTITY_RANGE );
|
|
|
|
if ( entities[i].value < ENTITY_RANGE ) {
|
|
|
|
entityFlag[ entities[i].value ] = true;
|
|
|
|
}
|
|
|
|
}
|
2012-01-25 02:03:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void XMLStreamer::PrintSpace( int depth )
|
|
|
|
{
|
|
|
|
for( int i=0; i<depth; ++i ) {
|
|
|
|
fprintf( fp, " " );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-01-26 16:47:06 +00:00
|
|
|
void XMLStreamer::PrintString( const char* p )
|
|
|
|
{
|
|
|
|
// Look for runs of bytes between entities to print.
|
|
|
|
const char* q = p;
|
|
|
|
|
|
|
|
while ( *q ) {
|
|
|
|
if ( *q < ENTITY_RANGE ) {
|
|
|
|
// Check for entities. If one is found, flush
|
|
|
|
// the stream up until the entity, write the
|
|
|
|
// entity, and keep looking.
|
|
|
|
if ( entityFlag[*q] ) {
|
|
|
|
while ( p < q ) {
|
|
|
|
fputc( *p, fp );
|
|
|
|
++p;
|
|
|
|
}
|
|
|
|
for( int i=0; i<NUM_ENTITIES; ++i ) {
|
|
|
|
if ( entities[i].value == *q ) {
|
|
|
|
fprintf( fp, "&%s;", entities[i].pattern );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
++p;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
++q;
|
|
|
|
}
|
|
|
|
// Flush the remaining string. This will be the entire
|
|
|
|
// string if an entity wasn't found.
|
|
|
|
if ( q-p > 0 ) {
|
|
|
|
fprintf( fp, "%s", p );
|
|
|
|
}
|
2012-01-26 01:50:25 +00:00
|
|
|
}
|
|
|
|
|
2012-02-10 02:16:58 +00:00
|
|
|
void XMLStreamer::OpenElement( const char* name )
|
2012-01-25 02:03:07 +00:00
|
|
|
{
|
|
|
|
if ( elementJustOpened ) {
|
|
|
|
SealElement();
|
|
|
|
}
|
2012-02-10 02:16:58 +00:00
|
|
|
stack.Push( name );
|
|
|
|
|
|
|
|
if ( textDepth < 0 && depth > 0) {
|
|
|
|
fprintf( fp, "\n" );
|
2012-01-26 01:16:23 +00:00
|
|
|
PrintSpace( depth );
|
|
|
|
}
|
2012-01-25 02:03:07 +00:00
|
|
|
|
|
|
|
fprintf( fp, "<%s", name );
|
|
|
|
elementJustOpened = true;
|
|
|
|
++depth;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void XMLStreamer::PushAttribute( const char* name, const char* value )
|
|
|
|
{
|
|
|
|
TIXMLASSERT( elementJustOpened );
|
2012-01-27 02:17:26 +00:00
|
|
|
fprintf( fp, " %s=\"", name );
|
|
|
|
PrintString( value );
|
|
|
|
fprintf( fp, "\"" );
|
2012-01-25 02:03:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void XMLStreamer::CloseElement()
|
|
|
|
{
|
|
|
|
--depth;
|
|
|
|
const char* name = stack.Pop();
|
|
|
|
|
|
|
|
if ( elementJustOpened ) {
|
|
|
|
fprintf( fp, "/>" );
|
|
|
|
}
|
|
|
|
else {
|
2012-02-10 02:16:58 +00:00
|
|
|
if ( textDepth < 0 ) {
|
|
|
|
fprintf( fp, "\n" );
|
2012-01-26 01:16:23 +00:00
|
|
|
PrintSpace( depth );
|
|
|
|
}
|
2012-01-25 02:03:07 +00:00
|
|
|
fprintf( fp, "</%s>", name );
|
|
|
|
}
|
2012-02-10 02:16:58 +00:00
|
|
|
|
|
|
|
if ( textDepth == depth )
|
|
|
|
textDepth = -1;
|
|
|
|
if ( depth == 0 )
|
|
|
|
fprintf( fp, "\n" );
|
2012-01-25 02:03:07 +00:00
|
|
|
elementJustOpened = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void XMLStreamer::SealElement()
|
|
|
|
{
|
|
|
|
elementJustOpened = false;
|
|
|
|
fprintf( fp, ">" );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-12 00:33:40 +00:00
|
|
|
void XMLStreamer::PushText( const char* text, bool cdata )
|
2012-01-25 02:03:07 +00:00
|
|
|
{
|
2012-02-10 02:16:58 +00:00
|
|
|
textDepth = depth-1;
|
|
|
|
|
2012-01-25 02:03:07 +00:00
|
|
|
if ( elementJustOpened ) {
|
|
|
|
SealElement();
|
|
|
|
}
|
2012-02-12 00:33:40 +00:00
|
|
|
if ( cdata )
|
|
|
|
fprintf( fp, "<![CDATA[" );
|
2012-01-26 16:47:06 +00:00
|
|
|
PrintString( text );
|
2012-02-12 00:33:40 +00:00
|
|
|
if ( cdata )
|
|
|
|
fprintf( fp, "]]>" );
|
2012-01-25 02:03:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void XMLStreamer::PushComment( const char* comment )
|
|
|
|
{
|
|
|
|
if ( elementJustOpened ) {
|
|
|
|
SealElement();
|
|
|
|
}
|
|
|
|
PrintSpace( depth );
|
|
|
|
fprintf( fp, "<!--%s-->\n", comment );
|
|
|
|
}
|
2012-02-10 16:50:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|