2012-02-26 05:11:20 +00:00
|
|
|
/*
|
|
|
|
Original code by Lee Thomason (www.grinninglizard.com)
|
|
|
|
|
|
|
|
This software is provided 'as-is', without any express or implied
|
|
|
|
warranty. In no event will the authors be held liable for any
|
|
|
|
damages arising from the use of this software.
|
|
|
|
|
|
|
|
Permission is granted to anyone to use this software for any
|
|
|
|
purpose, including commercial applications, and to alter it and
|
|
|
|
redistribute it freely, subject to the following restrictions:
|
|
|
|
|
|
|
|
1. The origin of this software must not be misrepresented; you must
|
|
|
|
not claim that you wrote the original software. If you use this
|
|
|
|
software in a product, an acknowledgment in the product documentation
|
|
|
|
would be appreciated but is not required.
|
|
|
|
|
|
|
|
2. Altered source versions must be plainly marked as such, and
|
|
|
|
must not be misrepresented as being the original software.
|
|
|
|
|
|
|
|
3. This notice may not be removed or altered from any source
|
|
|
|
distribution.
|
|
|
|
*/
|
2012-02-25 05:50:50 +00:00
|
|
|
|
2011-12-29 03:42:49 +00:00
|
|
|
#include "tinyxml2.h"
|
|
|
|
|
2012-05-14 16:27:47 +00:00
|
|
|
#include <cstdio>
|
|
|
|
#include <cstdlib>
|
|
|
|
#include <new>
|
|
|
|
#include <cstddef>
|
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-24 06:27:28 +00:00
|
|
|
// Bunch of unicode info at:
|
|
|
|
// http://www.unicode.org/faq/utf_bom.html
|
|
|
|
// ef bb bf (Microsoft "lead bytes") - designates UTF-8
|
2012-02-21 17:08:12 +00:00
|
|
|
|
2012-02-24 06:27:28 +00:00
|
|
|
static const unsigned char TIXML_UTF_LEAD_0 = 0xefU;
|
|
|
|
static const unsigned char TIXML_UTF_LEAD_1 = 0xbbU;
|
|
|
|
static const unsigned char TIXML_UTF_LEAD_2 = 0xbfU;
|
2012-02-21 17:08:12 +00:00
|
|
|
|
2012-02-24 06:27:28 +00:00
|
|
|
|
|
|
|
#define DELETE_NODE( node ) { \
|
|
|
|
if ( node ) { \
|
|
|
|
MemPool* pool = node->memPool; \
|
|
|
|
node->~XMLNode(); \
|
|
|
|
pool->Free( node ); \
|
|
|
|
} \
|
|
|
|
}
|
|
|
|
#define DELETE_ATTRIBUTE( attrib ) { \
|
|
|
|
if ( attrib ) { \
|
|
|
|
MemPool* pool = attrib->memPool; \
|
|
|
|
attrib->~XMLAttribute(); \
|
|
|
|
pool->Free( attrib ); \
|
|
|
|
} \
|
|
|
|
}
|
2012-02-07 02:18:11 +00:00
|
|
|
|
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 ];
|
2012-02-17 16:31:16 +00:00
|
|
|
memcpy( start, str, len+1 );
|
2012-02-15 17:09:25 +00:00
|
|
|
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;
|
2012-05-09 22:23:19 +00:00
|
|
|
size_t length = strlen( endTag );
|
2012-02-15 17:09:25 +00:00
|
|
|
|
|
|
|
// Inner loop of text parsing.
|
|
|
|
while ( *p ) {
|
|
|
|
if ( *p == endChar && strncmp( p, endTag, length ) == 0 ) {
|
|
|
|
Set( start, p, strFlags );
|
|
|
|
return p + length;
|
|
|
|
}
|
|
|
|
++p;
|
|
|
|
}
|
2012-02-21 04:14:33 +00:00
|
|
|
return 0;
|
2012-02-15 17:09:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
char* StrPair::ParseName( char* p )
|
|
|
|
{
|
|
|
|
char* 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-02-21 17:08:12 +00:00
|
|
|
|
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-02-21 17:08:12 +00:00
|
|
|
char* p = start; // the read pointer
|
|
|
|
char* q = start; // the write pointer
|
2012-01-21 01:59:50 +00:00
|
|
|
|
|
|
|
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 == '&' ) {
|
2012-02-21 17:08:12 +00:00
|
|
|
// Entities handled by tinyXML2:
|
|
|
|
// - special entities in the entity table [in/out]
|
|
|
|
// - numeric character reference [in]
|
|
|
|
// 中 or 中
|
|
|
|
|
|
|
|
if ( *(p+1) == '#' ) {
|
|
|
|
char buf[10] = { 0 };
|
|
|
|
int len;
|
|
|
|
p = const_cast<char*>( XMLUtil::GetCharacterRef( p, buf, &len ) );
|
|
|
|
for( int i=0; i<len; ++i ) {
|
|
|
|
*q++ = buf[i];
|
2012-01-26 01:44:30 +00:00
|
|
|
}
|
2012-02-21 17:08:12 +00:00
|
|
|
TIXMLASSERT( q <= p );
|
2012-01-26 01:44:30 +00:00
|
|
|
}
|
2012-02-21 17:08:12 +00:00
|
|
|
else {
|
2012-07-16 10:08:47 +00:00
|
|
|
int i=0;
|
|
|
|
for(; i<NUM_ENTITIES; ++i ) {
|
2012-02-21 17:08:12 +00:00
|
|
|
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-26 01:44:30 +00:00
|
|
|
}
|
|
|
|
}
|
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-21 17:08:12 +00:00
|
|
|
|
2012-02-10 02:16:58 +00:00
|
|
|
// --------- XMLUtil ----------- //
|
2012-02-06 16:41:24 +00:00
|
|
|
|
2012-02-21 17:08:12 +00:00
|
|
|
const char* XMLUtil::ReadBOM( const char* p, bool* bom )
|
|
|
|
{
|
|
|
|
*bom = false;
|
|
|
|
const unsigned char* pu = reinterpret_cast<const unsigned char*>(p);
|
|
|
|
// Check for BOM:
|
|
|
|
if ( *(pu+0) == TIXML_UTF_LEAD_0
|
|
|
|
&& *(pu+1) == TIXML_UTF_LEAD_1
|
|
|
|
&& *(pu+2) == TIXML_UTF_LEAD_2 )
|
|
|
|
{
|
|
|
|
*bom = true;
|
|
|
|
p += 3;
|
|
|
|
}
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-24 06:27:28 +00:00
|
|
|
void XMLUtil::ConvertUTF32ToUTF8( unsigned long input, char* output, int* length )
|
|
|
|
{
|
|
|
|
const unsigned long BYTE_MASK = 0xBF;
|
|
|
|
const unsigned long BYTE_MARK = 0x80;
|
|
|
|
const unsigned long FIRST_BYTE_MARK[7] = { 0x00, 0x00, 0xC0, 0xE0, 0xF0, 0xF8, 0xFC };
|
|
|
|
|
|
|
|
if (input < 0x80)
|
|
|
|
*length = 1;
|
|
|
|
else if ( input < 0x800 )
|
|
|
|
*length = 2;
|
|
|
|
else if ( input < 0x10000 )
|
|
|
|
*length = 3;
|
|
|
|
else if ( input < 0x200000 )
|
|
|
|
*length = 4;
|
|
|
|
else
|
|
|
|
{ *length = 0; return; } // This code won't covert this correctly anyway.
|
|
|
|
|
|
|
|
output += *length;
|
|
|
|
|
|
|
|
// Scary scary fall throughs.
|
|
|
|
switch (*length)
|
|
|
|
{
|
|
|
|
case 4:
|
|
|
|
--output;
|
|
|
|
*output = (char)((input | BYTE_MARK) & BYTE_MASK);
|
|
|
|
input >>= 6;
|
|
|
|
case 3:
|
|
|
|
--output;
|
|
|
|
*output = (char)((input | BYTE_MARK) & BYTE_MASK);
|
|
|
|
input >>= 6;
|
|
|
|
case 2:
|
|
|
|
--output;
|
|
|
|
*output = (char)((input | BYTE_MARK) & BYTE_MASK);
|
|
|
|
input >>= 6;
|
|
|
|
case 1:
|
|
|
|
--output;
|
|
|
|
*output = (char)(input | FIRST_BYTE_MARK[*length]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const char* XMLUtil::GetCharacterRef( const char* p, char* value, int* length )
|
|
|
|
{
|
|
|
|
// Presume an entity, and pull it out.
|
|
|
|
*length = 0;
|
|
|
|
|
|
|
|
if ( *(p+1) == '#' && *(p+2) )
|
|
|
|
{
|
|
|
|
unsigned long ucs = 0;
|
2012-05-09 22:23:19 +00:00
|
|
|
ptrdiff_t delta = 0;
|
2012-02-24 06:27:28 +00:00
|
|
|
unsigned mult = 1;
|
|
|
|
|
|
|
|
if ( *(p+2) == 'x' )
|
|
|
|
{
|
|
|
|
// Hexadecimal.
|
|
|
|
if ( !*(p+3) ) return 0;
|
|
|
|
|
|
|
|
const char* q = p+3;
|
|
|
|
q = strchr( q, ';' );
|
|
|
|
|
|
|
|
if ( !q || !*q ) return 0;
|
|
|
|
|
2012-05-09 22:23:19 +00:00
|
|
|
delta = q-p;
|
2012-02-24 06:27:28 +00:00
|
|
|
--q;
|
|
|
|
|
|
|
|
while ( *q != 'x' )
|
|
|
|
{
|
|
|
|
if ( *q >= '0' && *q <= '9' )
|
|
|
|
ucs += mult * (*q - '0');
|
|
|
|
else if ( *q >= 'a' && *q <= 'f' )
|
|
|
|
ucs += mult * (*q - 'a' + 10);
|
|
|
|
else if ( *q >= 'A' && *q <= 'F' )
|
|
|
|
ucs += mult * (*q - 'A' + 10 );
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
mult *= 16;
|
|
|
|
--q;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Decimal.
|
|
|
|
if ( !*(p+2) ) return 0;
|
|
|
|
|
|
|
|
const char* q = p+2;
|
|
|
|
q = strchr( q, ';' );
|
|
|
|
|
|
|
|
if ( !q || !*q ) return 0;
|
|
|
|
|
|
|
|
delta = q-p;
|
|
|
|
--q;
|
|
|
|
|
|
|
|
while ( *q != '#' )
|
|
|
|
{
|
|
|
|
if ( *q >= '0' && *q <= '9' )
|
|
|
|
ucs += mult * (*q - '0');
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
mult *= 10;
|
|
|
|
--q;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// convert the UCS to UTF-8
|
|
|
|
ConvertUTF32ToUTF8( ucs, value, length );
|
|
|
|
return p + delta + 1;
|
|
|
|
}
|
|
|
|
return p+1;
|
|
|
|
}
|
2012-02-21 17:08:12 +00:00
|
|
|
|
|
|
|
|
2012-07-16 00:27:22 +00:00
|
|
|
void XMLUtil::ToStr( int v, char* buffer, int bufferSize )
|
|
|
|
{
|
|
|
|
TIXML_SNPRINTF( buffer, bufferSize, "%d", v );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void XMLUtil::ToStr( unsigned v, char* buffer, int bufferSize )
|
|
|
|
{
|
|
|
|
TIXML_SNPRINTF( buffer, bufferSize, "%u", v );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void XMLUtil::ToStr( bool v, char* buffer, int bufferSize )
|
|
|
|
{
|
|
|
|
TIXML_SNPRINTF( buffer, bufferSize, "%d", v ? 1 : 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void XMLUtil::ToStr( float v, char* buffer, int bufferSize )
|
|
|
|
{
|
|
|
|
TIXML_SNPRINTF( buffer, bufferSize, "%f", v );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void XMLUtil::ToStr( double v, char* buffer, int bufferSize )
|
|
|
|
{
|
|
|
|
TIXML_SNPRINTF( buffer, bufferSize, "%f", v );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool XMLUtil::ToInt( const char* str, int* value )
|
|
|
|
{
|
|
|
|
if ( TIXML_SSCANF( str, "%d", value ) == 1 )
|
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool XMLUtil::ToUnsigned( const char* str, unsigned *value )
|
|
|
|
{
|
|
|
|
if ( TIXML_SSCANF( str, "%u", value ) == 1 )
|
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool XMLUtil::ToBool( const char* str, bool* value )
|
|
|
|
{
|
|
|
|
int ival = 0;
|
|
|
|
if ( ToInt( str, &ival )) {
|
|
|
|
*value = (ival==0) ? false : true;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if ( StringEqual( str, "true" ) ) {
|
|
|
|
*value = true;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if ( StringEqual( str, "false" ) ) {
|
|
|
|
*value = false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool XMLUtil::ToFloat( const char* str, float* value )
|
|
|
|
{
|
|
|
|
if ( TIXML_SSCANF( str, "%f", value ) == 1 ) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool XMLUtil::ToDouble( const char* str, double* value )
|
|
|
|
{
|
|
|
|
if ( TIXML_SSCANF( str, "%lf", value ) == 1 ) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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
|
|
|
{
|
2012-02-24 16:56:50 +00:00
|
|
|
return p;
|
2012-01-19 01:43:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// What is this thing?
|
|
|
|
// - Elements start with a letter or underscore, but xml is reserved.
|
|
|
|
// - Comments: <!--
|
2012-02-21 04:14:33 +00:00
|
|
|
// - Decleration: <?
|
2012-01-19 01:43:40 +00:00
|
|
|
// - Everthing else is unknown to tinyxml.
|
|
|
|
//
|
|
|
|
|
2012-02-21 04:14:33 +00:00
|
|
|
static const char* xmlHeader = { "<?" };
|
2012-01-19 01:43:40 +00:00
|
|
|
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
|
|
|
|
2012-02-21 04:14:33 +00:00
|
|
|
static const int xmlHeaderLen = 2;
|
2012-01-19 01:43:40 +00:00
|
|
|
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-28 01:54:22 +00:00
|
|
|
#if defined(_MSC_VER)
|
2012-02-26 05:30:18 +00:00
|
|
|
#pragma warning ( push )
|
|
|
|
#pragma warning ( disable : 4127 )
|
2012-02-28 01:54:22 +00:00
|
|
|
#endif
|
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
|
2012-02-28 01:54:22 +00:00
|
|
|
#if defined(_MSC_VER)
|
2012-02-26 05:30:18 +00:00
|
|
|
#pragma warning (pop)
|
2012-02-28 01:54:22 +00:00
|
|
|
#endif
|
2012-02-12 00:33:40 +00:00
|
|
|
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-21 04:14:33 +00:00
|
|
|
else {
|
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
|
|
|
|
|
|
|
*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-02-25 01:37:53 +00:00
|
|
|
DeleteChildren();
|
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-02-25 01:37:53 +00:00
|
|
|
void XMLNode::DeleteChildren()
|
2012-01-27 02:17:26 +00:00
|
|
|
{
|
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
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-18 01:48:16 +00:00
|
|
|
void XMLNode::DeleteChild( XMLNode* node )
|
|
|
|
{
|
|
|
|
TIXMLASSERT( node->parent == this );
|
|
|
|
DELETE_NODE( node );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
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->prev = 0;
|
2012-01-11 23:43:54 +00:00
|
|
|
addThis->next = 0;
|
|
|
|
}
|
2012-02-17 16:31:16 +00:00
|
|
|
addThis->parent = this;
|
2012-01-11 23:43:54 +00:00
|
|
|
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->prev = 0;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
TIXMLASSERT( lastChild == 0 );
|
|
|
|
firstChild = lastChild = addThis;
|
|
|
|
|
|
|
|
addThis->prev = 0;
|
|
|
|
addThis->next = 0;
|
|
|
|
}
|
2012-02-17 16:31:16 +00:00
|
|
|
addThis->parent = this;
|
2012-02-15 02:18:16 +00:00
|
|
|
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;
|
2012-02-17 16:31:16 +00:00
|
|
|
addThis->parent = this;
|
2012-02-15 02:18:16 +00:00
|
|
|
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-28 01:54:22 +00:00
|
|
|
const XMLElement* XMLNode::NextSiblingElement( const char* value ) const
|
|
|
|
{
|
|
|
|
for( XMLNode* element=this->next; element; element = element->next ) {
|
|
|
|
if ( element->ToElement()
|
|
|
|
&& (!value || XMLUtil::StringEqual( value, element->Value() )))
|
|
|
|
{
|
|
|
|
return element->ToElement();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const XMLElement* XMLNode::PreviousSiblingElement( const char* value ) const
|
|
|
|
{
|
|
|
|
for( XMLNode* element=this->prev; element; element = element->prev ) {
|
|
|
|
if ( element->ToElement()
|
|
|
|
&& (!value || XMLUtil::StringEqual( value, element->Value() )))
|
|
|
|
{
|
|
|
|
return element->ToElement();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-24 16:56:50 +00:00
|
|
|
char* XMLNode::ParseDeep( char* p, StrPair* parentEnd )
|
2012-01-25 00:01:51 +00:00
|
|
|
{
|
2012-02-24 06:27:28 +00:00
|
|
|
// This is a recursive method, but thinking about it "at the current level"
|
|
|
|
// it is a pretty simple flat list:
|
|
|
|
// <foo/>
|
|
|
|
// <!-- comment -->
|
|
|
|
//
|
|
|
|
// With a special case:
|
|
|
|
// <foo>
|
|
|
|
// </foo>
|
|
|
|
// <!-- comment -->
|
|
|
|
//
|
|
|
|
// Where the closing element (/foo) *must* be the next thing after the opening
|
|
|
|
// element, and the names must match. BUT the tricky bit is that the closing
|
|
|
|
// element will be read by the child.
|
2012-02-24 16:56:50 +00:00
|
|
|
//
|
|
|
|
// 'endTag' is the end tag for this node, it is returned by a call to a child.
|
|
|
|
// 'parentEnd' is the end tag for the parent, which is filled in and returned.
|
2012-02-24 06:27:28 +00:00
|
|
|
|
2012-01-25 00:01:51 +00:00
|
|
|
while( p && *p ) {
|
|
|
|
XMLNode* node = 0;
|
2012-02-24 06:27:28 +00:00
|
|
|
|
2012-02-06 16:41:24 +00:00
|
|
|
p = document->Identify( p, &node );
|
2012-02-24 16:56:50 +00:00
|
|
|
if ( p == 0 || node == 0 ) {
|
2012-02-24 06:27:28 +00:00
|
|
|
break;
|
|
|
|
}
|
2012-02-23 00:00:12 +00:00
|
|
|
|
2012-02-24 16:56:50 +00:00
|
|
|
StrPair endTag;
|
|
|
|
p = node->ParseDeep( p, &endTag );
|
|
|
|
if ( !p ) {
|
2012-02-24 06:27:28 +00:00
|
|
|
DELETE_NODE( node );
|
2012-02-24 16:56:50 +00:00
|
|
|
node = 0;
|
2012-02-25 00:23:40 +00:00
|
|
|
if ( !document->Error() ) {
|
2012-03-20 18:26:57 +00:00
|
|
|
document->SetError( XML_ERROR_PARSING, 0, 0 );
|
2012-02-25 00:23:40 +00:00
|
|
|
}
|
2012-02-24 16:56:50 +00:00
|
|
|
break;
|
2012-02-24 06:27:28 +00:00
|
|
|
}
|
|
|
|
|
2012-02-24 16:56:50 +00:00
|
|
|
// We read the end tag. Return it to the parent.
|
|
|
|
if ( node->ToElement() && node->ToElement()->ClosingType() == XMLElement::CLOSING ) {
|
|
|
|
if ( parentEnd ) {
|
2012-07-16 10:08:47 +00:00
|
|
|
*parentEnd = static_cast<XMLElement*>(node)->value;
|
2012-02-24 06:27:28 +00:00
|
|
|
}
|
2012-02-24 16:56:50 +00:00
|
|
|
DELETE_NODE( node );
|
|
|
|
return p;
|
|
|
|
}
|
2012-02-24 06:27:28 +00:00
|
|
|
|
2012-02-24 16:56:50 +00:00
|
|
|
// Handle an end tag returned to this level.
|
|
|
|
// And handle a bunch of annoying errors.
|
|
|
|
XMLElement* ele = node->ToElement();
|
|
|
|
if ( ele ) {
|
|
|
|
if ( endTag.Empty() && ele->ClosingType() == XMLElement::OPEN ) {
|
2012-03-20 18:26:57 +00:00
|
|
|
document->SetError( XML_ERROR_MISMATCHED_ELEMENT, node->Value(), 0 );
|
2012-02-24 16:56:50 +00:00
|
|
|
p = 0;
|
|
|
|
}
|
|
|
|
else if ( !endTag.Empty() && ele->ClosingType() != XMLElement::OPEN ) {
|
2012-03-20 18:26:57 +00:00
|
|
|
document->SetError( XML_ERROR_MISMATCHED_ELEMENT, node->Value(), 0 );
|
2012-02-24 16:56:50 +00:00
|
|
|
p = 0;
|
|
|
|
}
|
|
|
|
else if ( !endTag.Empty() ) {
|
|
|
|
if ( !XMLUtil::StringEqual( endTag.GetStr(), node->Value() )) {
|
2012-03-20 18:26:57 +00:00
|
|
|
document->SetError( XML_ERROR_MISMATCHED_ELEMENT, node->Value(), 0 );
|
2012-02-24 06:27:28 +00:00
|
|
|
p = 0;
|
|
|
|
}
|
2012-01-25 00:01:51 +00:00
|
|
|
}
|
|
|
|
}
|
2012-02-24 16:56:50 +00:00
|
|
|
if ( p == 0 ) {
|
|
|
|
DELETE_NODE( node );
|
|
|
|
node = 0;
|
|
|
|
}
|
|
|
|
if ( node ) {
|
|
|
|
this->InsertEndChild( node );
|
|
|
|
}
|
2012-01-25 00:01:51 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-01-23 23:32:10 +00:00
|
|
|
// --------- XMLText ---------- //
|
2012-02-24 16:56:50 +00:00
|
|
|
char* XMLText::ParseDeep( char* p, StrPair* )
|
2012-01-23 23:32:10 +00:00
|
|
|
{
|
2012-02-21 04:14:33 +00:00
|
|
|
const char* start = p;
|
2012-02-12 00:33:40 +00:00
|
|
|
if ( this->CData() ) {
|
|
|
|
p = value.ParseText( p, "]]>", StrPair::NEEDS_NEWLINE_NORMALIZATION );
|
2012-02-21 04:14:33 +00:00
|
|
|
if ( !p ) {
|
2012-03-20 18:26:57 +00:00
|
|
|
document->SetError( XML_ERROR_PARSING_CDATA, start, 0 );
|
2012-02-21 04:14:33 +00:00
|
|
|
}
|
2012-02-12 00:33:40 +00:00
|
|
|
return p;
|
|
|
|
}
|
|
|
|
else {
|
2012-03-02 20:59:39 +00:00
|
|
|
p = value.ParseText( p, "<", document->ProcessEntities() ? StrPair::TEXT_ELEMENT : StrPair::TEXT_ELEMENT_LEAVE_ENTITIES );
|
2012-02-21 04:14:33 +00:00
|
|
|
if ( !p ) {
|
2012-03-20 18:26:57 +00:00
|
|
|
document->SetError( XML_ERROR_PARSING_TEXT, start, 0 );
|
2012-02-21 04:14:33 +00:00
|
|
|
}
|
2012-02-12 00:33:40 +00:00
|
|
|
if ( p && *p ) {
|
|
|
|
return p-1;
|
|
|
|
}
|
2012-01-23 23:32:10 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-28 01:54:22 +00:00
|
|
|
XMLNode* XMLText::ShallowClone( XMLDocument* doc ) const
|
|
|
|
{
|
|
|
|
if ( !doc ) {
|
|
|
|
doc = document;
|
|
|
|
}
|
|
|
|
XMLText* text = doc->NewText( Value() ); // fixme: this will always allocate memory. Intern?
|
|
|
|
text->SetCData( this->CData() );
|
|
|
|
return text;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool XMLText::ShallowEqual( const XMLNode* compare ) const
|
|
|
|
{
|
|
|
|
return ( compare->ToText() && XMLUtil::StringEqual( compare->ToText()->Value(), Value() ));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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-02-24 16:56:50 +00:00
|
|
|
char* XMLComment::ParseDeep( char* p, StrPair* )
|
2012-01-11 23:30:03 +00:00
|
|
|
{
|
|
|
|
// Comment parses as text.
|
2012-02-21 04:14:33 +00:00
|
|
|
const char* start = p;
|
|
|
|
p = value.ParseText( p, "-->", StrPair::COMMENT );
|
|
|
|
if ( p == 0 ) {
|
2012-03-20 18:26:57 +00:00
|
|
|
document->SetError( XML_ERROR_PARSING_COMMENT, start, 0 );
|
2012-02-21 04:14:33 +00:00
|
|
|
}
|
|
|
|
return p;
|
2011-12-31 22:58:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-28 01:54:22 +00:00
|
|
|
XMLNode* XMLComment::ShallowClone( XMLDocument* doc ) const
|
|
|
|
{
|
|
|
|
if ( !doc ) {
|
|
|
|
doc = document;
|
|
|
|
}
|
|
|
|
XMLComment* comment = doc->NewComment( Value() ); // fixme: this will always allocate memory. Intern?
|
|
|
|
return comment;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool XMLComment::ShallowEqual( const XMLNode* compare ) const
|
|
|
|
{
|
|
|
|
return ( compare->ToComment() && XMLUtil::StringEqual( compare->ToComment()->Value(), Value() ));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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" );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-24 16:56:50 +00:00
|
|
|
char* XMLDeclaration::ParseDeep( char* p, StrPair* )
|
2012-02-12 00:33:40 +00:00
|
|
|
{
|
|
|
|
// Declaration parses as text.
|
2012-02-21 04:14:33 +00:00
|
|
|
const char* start = p;
|
|
|
|
p = value.ParseText( p, "?>", StrPair::NEEDS_NEWLINE_NORMALIZATION );
|
|
|
|
if ( p == 0 ) {
|
2012-03-20 18:26:57 +00:00
|
|
|
document->SetError( XML_ERROR_PARSING_DECLARATION, start, 0 );
|
2012-02-21 04:14:33 +00:00
|
|
|
}
|
|
|
|
return p;
|
2012-02-12 00:33:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-28 01:54:22 +00:00
|
|
|
XMLNode* XMLDeclaration::ShallowClone( XMLDocument* doc ) const
|
|
|
|
{
|
|
|
|
if ( !doc ) {
|
|
|
|
doc = document;
|
|
|
|
}
|
|
|
|
XMLDeclaration* dec = doc->NewDeclaration( Value() ); // fixme: this will always allocate memory. Intern?
|
|
|
|
return dec;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool XMLDeclaration::ShallowEqual( const XMLNode* compare ) const
|
|
|
|
{
|
|
|
|
return ( compare->ToDeclaration() && XMLUtil::StringEqual( compare->ToDeclaration()->Value(), Value() ));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-02-12 00:33:40 +00:00
|
|
|
bool XMLDeclaration::Accept( XMLVisitor* visitor ) const
|
|
|
|
{
|
|
|
|
return visitor->Visit( *this );
|
|
|
|
}
|
|
|
|
|
|
|
|
// --------- XMLUnknown ---------- //
|
|
|
|
|
|
|
|
XMLUnknown::XMLUnknown( XMLDocument* doc ) : XMLNode( doc )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
XMLUnknown::~XMLUnknown()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-24 16:56:50 +00:00
|
|
|
char* XMLUnknown::ParseDeep( char* p, StrPair* )
|
2012-02-12 00:33:40 +00:00
|
|
|
{
|
|
|
|
// Unknown parses as text.
|
2012-02-21 04:14:33 +00:00
|
|
|
const char* start = p;
|
|
|
|
|
|
|
|
p = value.ParseText( p, ">", StrPair::NEEDS_NEWLINE_NORMALIZATION );
|
|
|
|
if ( !p ) {
|
2012-03-20 18:26:57 +00:00
|
|
|
document->SetError( XML_ERROR_PARSING_UNKNOWN, start, 0 );
|
2012-02-21 04:14:33 +00:00
|
|
|
}
|
|
|
|
return p;
|
2012-02-12 00:33:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-28 01:54:22 +00:00
|
|
|
XMLNode* XMLUnknown::ShallowClone( XMLDocument* doc ) const
|
|
|
|
{
|
|
|
|
if ( !doc ) {
|
|
|
|
doc = document;
|
|
|
|
}
|
|
|
|
XMLUnknown* text = doc->NewUnknown( Value() ); // fixme: this will always allocate memory. Intern?
|
|
|
|
return text;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool XMLUnknown::ShallowEqual( const XMLNode* compare ) const
|
|
|
|
{
|
|
|
|
return ( compare->ToUnknown() && XMLUtil::StringEqual( compare->ToUnknown()->Value(), Value() ));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-12 00:33:40 +00:00
|
|
|
bool XMLUnknown::Accept( XMLVisitor* visitor ) const
|
|
|
|
{
|
|
|
|
return visitor->Visit( *this );
|
|
|
|
}
|
|
|
|
|
2012-01-19 01:43:40 +00:00
|
|
|
// --------- XMLAttribute ---------- //
|
2012-03-02 20:59:39 +00:00
|
|
|
char* XMLAttribute::ParseDeep( char* p, bool processEntities )
|
2012-01-19 01:43:40 +00:00
|
|
|
{
|
2012-07-02 17:10:19 +00:00
|
|
|
// Parse using the name rules: bug fix, was using ParseText before
|
|
|
|
p = name.ParseName( p );
|
2012-01-23 21:29:35 +00:00
|
|
|
if ( !p || !*p ) return 0;
|
|
|
|
|
2012-07-02 17:10:19 +00:00
|
|
|
// Skip white space before =
|
|
|
|
p = XMLUtil::SkipWhiteSpace( p );
|
|
|
|
if ( !p || *p != '=' ) return 0;
|
|
|
|
|
|
|
|
++p; // move up to opening quote
|
|
|
|
p = XMLUtil::SkipWhiteSpace( p );
|
|
|
|
if ( *p != '\"' && *p != '\'' ) return 0;
|
|
|
|
|
2012-01-19 01:43:40 +00:00
|
|
|
char endTag[2] = { *p, 0 };
|
2012-07-02 17:10:19 +00:00
|
|
|
++p; // move past opening quote
|
|
|
|
|
2012-03-02 20:59:39 +00:00
|
|
|
p = value.ParseText( p, endTag, processEntities ? StrPair::ATTRIBUTE_VALUE : StrPair::ATTRIBUTE_VALUE_LEAVE_ENTITIES );
|
2012-01-19 01:43:40 +00:00
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-17 16:31:16 +00:00
|
|
|
void XMLAttribute::SetName( const char* n )
|
|
|
|
{
|
|
|
|
name.SetStr( n );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-28 01:54:22 +00:00
|
|
|
int XMLAttribute::QueryIntValue( int* value ) const
|
2012-02-15 02:18:16 +00:00
|
|
|
{
|
2012-07-16 00:27:22 +00:00
|
|
|
if ( XMLUtil::ToInt( Value(), value ))
|
2012-02-21 17:08:12 +00:00
|
|
|
return XML_NO_ERROR;
|
2012-03-20 18:26:57 +00:00
|
|
|
return XML_WRONG_ATTRIBUTE_TYPE;
|
2012-02-15 02:18:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-28 01:54:22 +00:00
|
|
|
int XMLAttribute::QueryUnsignedValue( unsigned int* value ) const
|
2012-02-15 02:18:16 +00:00
|
|
|
{
|
2012-07-16 00:27:22 +00:00
|
|
|
if ( XMLUtil::ToUnsigned( Value(), value ))
|
2012-02-21 17:08:12 +00:00
|
|
|
return XML_NO_ERROR;
|
2012-03-20 18:26:57 +00:00
|
|
|
return XML_WRONG_ATTRIBUTE_TYPE;
|
2012-02-15 02:18:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-28 01:54:22 +00:00
|
|
|
int XMLAttribute::QueryBoolValue( bool* value ) const
|
2012-02-15 02:18:16 +00:00
|
|
|
{
|
2012-07-16 00:27:22 +00:00
|
|
|
if ( XMLUtil::ToBool( Value(), value )) {
|
2012-02-21 17:08:12 +00:00
|
|
|
return XML_NO_ERROR;
|
2012-02-15 17:09:25 +00:00
|
|
|
}
|
2012-03-20 18:26:57 +00:00
|
|
|
return XML_WRONG_ATTRIBUTE_TYPE;
|
2012-02-15 02:18:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-07-16 00:27:22 +00:00
|
|
|
int XMLAttribute::QueryFloatValue( float* value ) const
|
2012-02-15 02:18:16 +00:00
|
|
|
{
|
2012-07-16 00:27:22 +00:00
|
|
|
if ( XMLUtil::ToFloat( Value(), value ))
|
2012-02-21 17:08:12 +00:00
|
|
|
return XML_NO_ERROR;
|
2012-03-20 18:26:57 +00:00
|
|
|
return XML_WRONG_ATTRIBUTE_TYPE;
|
2012-02-15 02:18:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-07-16 00:27:22 +00:00
|
|
|
int XMLAttribute::QueryDoubleValue( double* value ) const
|
2012-02-15 02:18:16 +00:00
|
|
|
{
|
2012-07-16 00:27:22 +00:00
|
|
|
if ( XMLUtil::ToDouble( Value(), value ))
|
2012-02-21 17:08:12 +00:00
|
|
|
return XML_NO_ERROR;
|
2012-03-20 18:26:57 +00:00
|
|
|
return XML_WRONG_ATTRIBUTE_TYPE;
|
2012-02-15 02:18:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
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-07-16 00:27:22 +00:00
|
|
|
XMLUtil::ToStr( v, buf, BUF_SIZE );
|
2012-02-15 17:09:25 +00:00
|
|
|
value.SetStr( buf );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void XMLAttribute::SetAttribute( unsigned v )
|
|
|
|
{
|
|
|
|
char buf[BUF_SIZE];
|
2012-07-16 00:27:22 +00:00
|
|
|
XMLUtil::ToStr( v, buf, BUF_SIZE );
|
2012-02-15 17:09:25 +00:00
|
|
|
value.SetStr( buf );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void XMLAttribute::SetAttribute( bool v )
|
|
|
|
{
|
|
|
|
char buf[BUF_SIZE];
|
2012-07-16 00:27:22 +00:00
|
|
|
XMLUtil::ToStr( v, buf, BUF_SIZE );
|
2012-02-15 17:09:25 +00:00
|
|
|
value.SetStr( buf );
|
|
|
|
}
|
|
|
|
|
|
|
|
void XMLAttribute::SetAttribute( double v )
|
|
|
|
{
|
|
|
|
char buf[BUF_SIZE];
|
2012-07-16 00:27:22 +00:00
|
|
|
XMLUtil::ToStr( v, buf, BUF_SIZE );
|
2012-02-15 17:09:25 +00:00
|
|
|
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];
|
2012-07-16 00:27:22 +00:00
|
|
|
XMLUtil::ToStr( v, buf, BUF_SIZE );
|
2012-02-15 17:09:25 +00:00
|
|
|
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 ),
|
2012-02-24 06:27:28 +00:00
|
|
|
closingType( 0 ),
|
2012-02-17 16:31:16 +00:00
|
|
|
rootAttribute( 0 )
|
2012-01-19 01:43:40 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
XMLElement::~XMLElement()
|
|
|
|
{
|
2012-02-17 16:31:16 +00:00
|
|
|
while( rootAttribute ) {
|
|
|
|
XMLAttribute* next = rootAttribute->next;
|
|
|
|
DELETE_ATTRIBUTE( rootAttribute );
|
|
|
|
rootAttribute = next;
|
2012-01-19 01:43:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-03-24 20:04:04 +00:00
|
|
|
const char* XMLElement::Attribute( const char* name, const char* value ) const
|
|
|
|
{
|
|
|
|
const XMLAttribute* a = FindAttribute( name );
|
|
|
|
if ( !a )
|
|
|
|
return 0;
|
|
|
|
if ( !value || XMLUtil::StringEqual( a->Value(), value ))
|
|
|
|
return a->Value();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-21 04:14:33 +00:00
|
|
|
const char* XMLElement::GetText() const
|
|
|
|
{
|
|
|
|
if ( FirstChild() && FirstChild()->ToText() ) {
|
|
|
|
return FirstChild()->ToText()->Value();
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-07-16 00:27:22 +00:00
|
|
|
int XMLElement::QueryIntText( int* _value ) const
|
|
|
|
{
|
|
|
|
if ( FirstChild() && FirstChild()->ToText() ) {
|
|
|
|
const char* t = FirstChild()->ToText()->Value();
|
|
|
|
if ( XMLUtil::ToInt( t, _value ) ) {
|
|
|
|
return XML_SUCCESS;
|
|
|
|
}
|
|
|
|
return XML_CAN_NOT_CONVERT_TEXT;
|
|
|
|
}
|
|
|
|
return XML_NO_TEXT_NODE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int XMLElement::QueryUnsignedText( unsigned* _value ) const
|
|
|
|
{
|
|
|
|
if ( FirstChild() && FirstChild()->ToText() ) {
|
|
|
|
const char* t = FirstChild()->ToText()->Value();
|
|
|
|
if ( XMLUtil::ToUnsigned( t, _value ) ) {
|
|
|
|
return XML_SUCCESS;
|
|
|
|
}
|
|
|
|
return XML_CAN_NOT_CONVERT_TEXT;
|
|
|
|
}
|
|
|
|
return XML_NO_TEXT_NODE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int XMLElement::QueryBoolText( bool* _value ) const
|
|
|
|
{
|
|
|
|
if ( FirstChild() && FirstChild()->ToText() ) {
|
|
|
|
const char* t = FirstChild()->ToText()->Value();
|
|
|
|
if ( XMLUtil::ToBool( t, _value ) ) {
|
|
|
|
return XML_SUCCESS;
|
|
|
|
}
|
|
|
|
return XML_CAN_NOT_CONVERT_TEXT;
|
|
|
|
}
|
|
|
|
return XML_NO_TEXT_NODE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int XMLElement::QueryDoubleText( double* _value ) const
|
|
|
|
{
|
|
|
|
if ( FirstChild() && FirstChild()->ToText() ) {
|
|
|
|
const char* t = FirstChild()->ToText()->Value();
|
|
|
|
if ( XMLUtil::ToDouble( t, _value ) ) {
|
|
|
|
return XML_SUCCESS;
|
|
|
|
}
|
|
|
|
return XML_CAN_NOT_CONVERT_TEXT;
|
|
|
|
}
|
|
|
|
return XML_NO_TEXT_NODE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int XMLElement::QueryFloatText( float* _value ) const
|
|
|
|
{
|
|
|
|
if ( FirstChild() && FirstChild()->ToText() ) {
|
|
|
|
const char* t = FirstChild()->ToText()->Value();
|
|
|
|
if ( XMLUtil::ToFloat( t, _value ) ) {
|
|
|
|
return XML_SUCCESS;
|
|
|
|
}
|
|
|
|
return XML_CAN_NOT_CONVERT_TEXT;
|
|
|
|
}
|
|
|
|
return XML_NO_TEXT_NODE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-02-15 17:09:25 +00:00
|
|
|
XMLAttribute* XMLElement::FindOrCreateAttribute( const char* name )
|
|
|
|
{
|
2012-04-16 15:57:05 +00:00
|
|
|
XMLAttribute* last = 0;
|
|
|
|
XMLAttribute* attrib = 0;
|
|
|
|
for( attrib = rootAttribute;
|
|
|
|
attrib;
|
|
|
|
last = attrib, attrib = attrib->next )
|
|
|
|
{
|
|
|
|
if ( XMLUtil::StringEqual( attrib->Name(), name ) ) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2012-02-15 17:09:25 +00:00
|
|
|
if ( !attrib ) {
|
2012-02-26 05:30:18 +00:00
|
|
|
attrib = new (document->attributePool.Alloc() ) XMLAttribute();
|
2012-02-15 17:09:25 +00:00
|
|
|
attrib->memPool = &document->attributePool;
|
2012-04-16 15:57:05 +00:00
|
|
|
if ( last ) {
|
|
|
|
last->next = attrib;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
rootAttribute = attrib;
|
|
|
|
}
|
2012-02-17 16:31:16 +00:00
|
|
|
attrib->SetName( name );
|
2012-02-15 17:09:25 +00:00
|
|
|
}
|
|
|
|
return attrib;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-18 01:48:16 +00:00
|
|
|
void XMLElement::DeleteAttribute( const char* name )
|
|
|
|
{
|
|
|
|
XMLAttribute* prev = 0;
|
|
|
|
for( XMLAttribute* a=rootAttribute; a; a=a->next ) {
|
|
|
|
if ( XMLUtil::StringEqual( name, a->Name() ) ) {
|
|
|
|
if ( prev ) {
|
|
|
|
prev->next = a->next;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
rootAttribute = a->next;
|
|
|
|
}
|
|
|
|
DELETE_ATTRIBUTE( a );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
prev = a;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-24 06:27:28 +00:00
|
|
|
char* XMLElement::ParseAttributes( char* p )
|
2012-01-19 01:43:40 +00:00
|
|
|
{
|
|
|
|
const char* start = p;
|
2012-04-16 15:57:05 +00:00
|
|
|
XMLAttribute* prevAttribute = 0;
|
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-03-20 18:26:57 +00:00
|
|
|
document->SetError( XML_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-26 05:30:18 +00:00
|
|
|
XMLAttribute* attrib = new (document->attributePool.Alloc() ) XMLAttribute();
|
2012-02-07 02:18:11 +00:00
|
|
|
attrib->memPool = &document->attributePool;
|
2012-02-06 16:41:24 +00:00
|
|
|
|
2012-03-02 20:59:39 +00:00
|
|
|
p = attrib->ParseDeep( p, document->ProcessEntities() );
|
2012-02-23 00:00:12 +00:00
|
|
|
if ( !p || Attribute( attrib->Name() ) ) {
|
2012-02-07 02:18:11 +00:00
|
|
|
DELETE_ATTRIBUTE( attrib );
|
2012-03-20 18:26:57 +00:00
|
|
|
document->SetError( XML_ERROR_PARSING_ATTRIBUTE, start, p );
|
2012-01-19 01:43:40 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2012-04-16 15:57:05 +00:00
|
|
|
// There is a minor bug here: if the attribute in the source xml
|
|
|
|
// document is duplicated, it will not be detected and the
|
|
|
|
// attribute will be doubly added. However, tracking the 'prevAttribute'
|
|
|
|
// avoids re-scanning the attribute list. Preferring performance for
|
|
|
|
// now, may reconsider in the future.
|
|
|
|
if ( prevAttribute ) {
|
|
|
|
prevAttribute->next = attrib;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
rootAttribute = attrib;
|
|
|
|
}
|
2012-04-18 18:39:42 +00:00
|
|
|
prevAttribute = attrib;
|
2012-01-19 01:43:40 +00:00
|
|
|
}
|
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) == '>' ) {
|
2012-02-24 06:27:28 +00:00
|
|
|
closingType = CLOSED;
|
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 {
|
2012-03-20 18:26:57 +00:00
|
|
|
document->SetError( XML_ERROR_PARSING_ELEMENT, start, p );
|
2012-01-21 01:59:50 +00:00
|
|
|
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>
|
|
|
|
//
|
2012-02-24 16:56:50 +00:00
|
|
|
char* XMLElement::ParseDeep( char* p, StrPair* strPair )
|
2012-01-25 00:01:51 +00:00
|
|
|
{
|
|
|
|
// 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;
|
|
|
|
|
|
|
|
// The closing element is the </element> form. It is
|
|
|
|
// parsed just like a regular element then deleted from
|
|
|
|
// the DOM.
|
|
|
|
if ( *p == '/' ) {
|
2012-02-24 06:27:28 +00:00
|
|
|
closingType = CLOSING;
|
2012-01-25 00:01:51 +00:00
|
|
|
++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
|
|
|
|
2012-02-24 06:27:28 +00:00
|
|
|
p = ParseAttributes( p );
|
|
|
|
if ( !p || !*p || closingType )
|
2012-01-25 00:01:51 +00:00
|
|
|
return p;
|
|
|
|
|
2012-02-24 16:56:50 +00:00
|
|
|
p = XMLNode::ParseDeep( p, strPair );
|
2012-01-25 00:01:51 +00:00
|
|
|
return p;
|
2012-01-19 01:43:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-28 01:54:22 +00:00
|
|
|
|
|
|
|
XMLNode* XMLElement::ShallowClone( XMLDocument* doc ) const
|
|
|
|
{
|
|
|
|
if ( !doc ) {
|
|
|
|
doc = document;
|
|
|
|
}
|
|
|
|
XMLElement* element = doc->NewElement( Value() ); // fixme: this will always allocate memory. Intern?
|
|
|
|
for( const XMLAttribute* a=FirstAttribute(); a; a=a->Next() ) {
|
|
|
|
element->SetAttribute( a->Name(), a->Value() ); // fixme: this will always allocate memory. Intern?
|
|
|
|
}
|
|
|
|
return element;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool XMLElement::ShallowEqual( const XMLNode* compare ) const
|
|
|
|
{
|
|
|
|
const XMLElement* other = compare->ToElement();
|
|
|
|
if ( other && XMLUtil::StringEqual( other->Value(), Value() )) {
|
|
|
|
|
|
|
|
const XMLAttribute* a=FirstAttribute();
|
|
|
|
const XMLAttribute* b=other->FirstAttribute();
|
|
|
|
|
|
|
|
while ( a && b ) {
|
|
|
|
if ( !XMLUtil::StringEqual( a->Value(), b->Value() ) ) {
|
|
|
|
return false;
|
|
|
|
}
|
2012-07-02 04:22:53 +00:00
|
|
|
a = a->Next();
|
|
|
|
b = b->Next();
|
2012-02-28 01:54:22 +00:00
|
|
|
}
|
|
|
|
if ( a || b ) {
|
|
|
|
// different count
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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-02-28 01:54:22 +00:00
|
|
|
|
2012-01-11 23:30:03 +00:00
|
|
|
// --------- XMLDocument ----------- //
|
2012-03-02 20:59:39 +00:00
|
|
|
XMLDocument::XMLDocument( bool _processEntities ) :
|
2012-01-27 02:17:26 +00:00
|
|
|
XMLNode( 0 ),
|
2012-02-21 17:08:12 +00:00
|
|
|
writeBOM( false ),
|
2012-03-02 20:59:39 +00:00
|
|
|
processEntities( _processEntities ),
|
|
|
|
errorID( 0 ),
|
|
|
|
errorStr1( 0 ),
|
|
|
|
errorStr2( 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-25 01:37:53 +00:00
|
|
|
DeleteChildren();
|
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()
|
|
|
|
{
|
2012-02-21 17:08:12 +00:00
|
|
|
errorID = XML_NO_ERROR;
|
2012-01-27 02:17:26 +00:00
|
|
|
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 )
|
|
|
|
{
|
2012-02-17 16:31:16 +00:00
|
|
|
XMLText* text = new (textPool.Alloc()) XMLText( this );
|
|
|
|
text->memPool = &textPool;
|
|
|
|
text->SetValue( str );
|
|
|
|
return text;
|
2012-02-15 02:18:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-28 01:54:22 +00:00
|
|
|
XMLDeclaration* XMLDocument::NewDeclaration( const char* str )
|
|
|
|
{
|
|
|
|
XMLDeclaration* dec = new (commentPool.Alloc()) XMLDeclaration( this );
|
|
|
|
dec->memPool = &commentPool;
|
2012-04-28 21:37:11 +00:00
|
|
|
dec->SetValue( str ? str : "xml version=\"1.0\" encoding=\"UTF-8\"" );
|
2012-02-28 01:54:22 +00:00
|
|
|
return dec;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
XMLUnknown* XMLDocument::NewUnknown( const char* str )
|
|
|
|
{
|
|
|
|
XMLUnknown* unk = new (commentPool.Alloc()) XMLUnknown( this );
|
|
|
|
unk->memPool = &commentPool;
|
|
|
|
unk->SetValue( str );
|
|
|
|
return unk;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-21 17:08:12 +00:00
|
|
|
int XMLDocument::LoadFile( const char* filename )
|
2012-02-21 04:14:33 +00:00
|
|
|
{
|
2012-02-25 01:37:53 +00:00
|
|
|
DeleteChildren();
|
2012-02-21 04:14:33 +00:00
|
|
|
InitDocument();
|
|
|
|
|
2012-02-28 01:54:22 +00:00
|
|
|
#if defined(_MSC_VER)
|
2012-02-27 05:14:23 +00:00
|
|
|
#pragma warning ( push )
|
|
|
|
#pragma warning ( disable : 4996 ) // Fail to see a compelling reason why this should be deprecated.
|
2012-02-28 01:54:22 +00:00
|
|
|
#endif
|
2012-02-21 04:14:33 +00:00
|
|
|
FILE* fp = fopen( filename, "rb" );
|
2012-02-28 01:54:22 +00:00
|
|
|
#if defined(_MSC_VER)
|
2012-02-27 05:14:23 +00:00
|
|
|
#pragma warning ( pop )
|
2012-02-28 01:54:22 +00:00
|
|
|
#endif
|
2012-02-21 04:14:33 +00:00
|
|
|
if ( !fp ) {
|
2012-03-20 18:26:57 +00:00
|
|
|
SetError( XML_ERROR_FILE_NOT_FOUND, filename, 0 );
|
2012-02-21 04:14:33 +00:00
|
|
|
return errorID;
|
|
|
|
}
|
2012-02-21 17:08:12 +00:00
|
|
|
LoadFile( fp );
|
2012-02-21 04:14:33 +00:00
|
|
|
fclose( fp );
|
|
|
|
return errorID;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-21 17:08:12 +00:00
|
|
|
int XMLDocument::LoadFile( FILE* fp )
|
2012-02-21 04:14:33 +00:00
|
|
|
{
|
2012-02-25 01:37:53 +00:00
|
|
|
DeleteChildren();
|
2012-02-21 04:14:33 +00:00
|
|
|
InitDocument();
|
|
|
|
|
|
|
|
fseek( fp, 0, SEEK_END );
|
|
|
|
unsigned size = ftell( fp );
|
|
|
|
fseek( fp, 0, SEEK_SET );
|
|
|
|
|
2012-02-21 17:08:12 +00:00
|
|
|
if ( size == 0 ) {
|
|
|
|
return errorID;
|
|
|
|
}
|
|
|
|
|
2012-02-21 04:14:33 +00:00
|
|
|
charBuffer = new char[size+1];
|
2012-06-15 21:30:44 +00:00
|
|
|
size_t read = fread( charBuffer, 1, size, fp );
|
|
|
|
if ( read != size ) {
|
|
|
|
SetError( XML_ERROR_FILE_READ_ERROR, 0, 0 );
|
|
|
|
return errorID;
|
|
|
|
}
|
|
|
|
|
2012-02-21 04:14:33 +00:00
|
|
|
charBuffer[size] = 0;
|
|
|
|
|
2012-02-21 17:08:12 +00:00
|
|
|
const char* p = charBuffer;
|
|
|
|
p = XMLUtil::SkipWhiteSpace( p );
|
|
|
|
p = XMLUtil::ReadBOM( p, &writeBOM );
|
|
|
|
if ( !p || !*p ) {
|
2012-03-20 18:26:57 +00:00
|
|
|
SetError( XML_ERROR_EMPTY_DOCUMENT, 0, 0 );
|
2012-02-23 00:00:12 +00:00
|
|
|
return errorID;
|
2012-02-21 17:08:12 +00:00
|
|
|
}
|
|
|
|
|
2012-02-24 16:56:50 +00:00
|
|
|
ParseDeep( charBuffer + (p-charBuffer), 0 );
|
2012-02-21 04:14:33 +00:00
|
|
|
return errorID;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-04-10 04:32:26 +00:00
|
|
|
int XMLDocument::SaveFile( const char* filename )
|
2012-02-21 04:14:33 +00:00
|
|
|
{
|
2012-02-28 01:54:22 +00:00
|
|
|
#if defined(_MSC_VER)
|
2012-02-27 05:14:23 +00:00
|
|
|
#pragma warning ( push )
|
|
|
|
#pragma warning ( disable : 4996 ) // Fail to see a compelling reason why this should be deprecated.
|
2012-02-28 01:54:22 +00:00
|
|
|
#endif
|
2012-02-21 04:14:33 +00:00
|
|
|
FILE* fp = fopen( filename, "w" );
|
2012-02-28 01:54:22 +00:00
|
|
|
#if defined(_MSC_VER)
|
2012-02-27 05:14:23 +00:00
|
|
|
#pragma warning ( pop )
|
2012-02-28 01:54:22 +00:00
|
|
|
#endif
|
2012-04-10 04:32:26 +00:00
|
|
|
if ( !fp ) {
|
2012-03-24 19:49:03 +00:00
|
|
|
SetError( XML_ERROR_FILE_COULD_NOT_BE_OPENED, filename, 0 );
|
2012-04-10 04:32:26 +00:00
|
|
|
return errorID;
|
2012-03-24 19:49:03 +00:00
|
|
|
}
|
2012-04-10 04:32:26 +00:00
|
|
|
SaveFile(fp);
|
|
|
|
fclose( fp );
|
|
|
|
return errorID;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int XMLDocument::SaveFile( FILE* fp )
|
|
|
|
{
|
|
|
|
XMLPrinter stream( fp );
|
|
|
|
Print( &stream );
|
|
|
|
return errorID;
|
2012-02-21 04:14:33 +00:00
|
|
|
}
|
|
|
|
|
2012-02-15 02:18:16 +00:00
|
|
|
|
2012-01-27 02:32:34 +00:00
|
|
|
int XMLDocument::Parse( const char* p )
|
2012-01-11 23:30:03 +00:00
|
|
|
{
|
2012-02-25 01:37:53 +00:00
|
|
|
DeleteChildren();
|
2012-01-27 02:17:26 +00:00
|
|
|
InitDocument();
|
|
|
|
|
|
|
|
if ( !p || !*p ) {
|
2012-03-20 18:26:57 +00:00
|
|
|
SetError( XML_ERROR_EMPTY_DOCUMENT, 0, 0 );
|
2012-02-23 00:00:12 +00:00
|
|
|
return errorID;
|
2012-01-27 02:17:26 +00:00
|
|
|
}
|
2012-02-21 17:08:12 +00:00
|
|
|
p = XMLUtil::SkipWhiteSpace( p );
|
|
|
|
p = XMLUtil::ReadBOM( p, &writeBOM );
|
|
|
|
if ( !p || !*p ) {
|
2012-03-20 18:26:57 +00:00
|
|
|
SetError( XML_ERROR_EMPTY_DOCUMENT, 0, 0 );
|
2012-02-23 00:00:12 +00:00
|
|
|
return errorID;
|
2012-02-21 17:08:12 +00:00
|
|
|
}
|
|
|
|
|
2012-01-27 02:17:26 +00:00
|
|
|
size_t len = strlen( p );
|
|
|
|
charBuffer = new char[ len+1 ];
|
|
|
|
memcpy( charBuffer, p, len+1 );
|
2012-02-21 04:14:33 +00:00
|
|
|
|
2012-02-21 17:08:12 +00:00
|
|
|
|
2012-02-24 16:56:50 +00:00
|
|
|
ParseDeep( charBuffer, 0 );
|
2012-01-27 02:32:34 +00:00
|
|
|
return errorID;
|
2012-01-11 23:30:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-25 01:37:53 +00:00
|
|
|
void XMLDocument::Print( XMLPrinter* streamer )
|
2012-01-11 23:30:03 +00:00
|
|
|
{
|
2012-02-25 01:37:53 +00:00
|
|
|
XMLPrinter stdStreamer( stdout );
|
2012-01-25 02:03:07 +00:00
|
|
|
if ( !streamer )
|
|
|
|
streamer = &stdStreamer;
|
2012-02-10 16:50:51 +00:00
|
|
|
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;
|
|
|
|
errorStr1 = str1;
|
|
|
|
errorStr2 = str2;
|
2012-01-25 00:01:51 +00:00
|
|
|
}
|
|
|
|
|
2012-01-25 02:03:07 +00:00
|
|
|
|
2012-02-21 04:14:33 +00:00
|
|
|
void XMLDocument::PrintError() const
|
|
|
|
{
|
|
|
|
if ( errorID ) {
|
2012-02-27 05:14:23 +00:00
|
|
|
static const int LEN = 20;
|
|
|
|
char buf1[LEN] = { 0 };
|
|
|
|
char buf2[LEN] = { 0 };
|
2012-02-21 04:14:33 +00:00
|
|
|
|
|
|
|
if ( errorStr1 ) {
|
2012-02-27 05:14:23 +00:00
|
|
|
TIXML_SNPRINTF( buf1, LEN, "%s", errorStr1 );
|
2012-02-21 04:14:33 +00:00
|
|
|
}
|
|
|
|
if ( errorStr2 ) {
|
2012-02-27 05:14:23 +00:00
|
|
|
TIXML_SNPRINTF( buf2, LEN, "%s", errorStr2 );
|
2012-02-21 04:14:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
printf( "XMLDocument error id=%d str1=%s str2=%s\n",
|
|
|
|
errorID, buf1, buf2 );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-05-28 09:22:07 +00:00
|
|
|
XMLPrinter::XMLPrinter( FILE* file, bool compact ) :
|
2012-02-21 04:14:33 +00:00
|
|
|
elementJustOpened( false ),
|
|
|
|
firstElement( true ),
|
|
|
|
fp( file ),
|
|
|
|
depth( 0 ),
|
2012-03-02 20:59:39 +00:00
|
|
|
textDepth( -1 ),
|
2012-05-28 09:22:07 +00:00
|
|
|
processEntities( true ),
|
|
|
|
compactMode( compact )
|
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;
|
2012-02-21 04:14:33 +00:00
|
|
|
restrictedEntityFlag[i] = false;
|
2012-01-26 01:50:25 +00:00
|
|
|
}
|
|
|
|
for( int i=0; i<NUM_ENTITIES; ++i ) {
|
|
|
|
TIXMLASSERT( entities[i].value < ENTITY_RANGE );
|
|
|
|
if ( entities[i].value < ENTITY_RANGE ) {
|
2012-02-26 05:30:18 +00:00
|
|
|
entityFlag[ (int)entities[i].value ] = true;
|
2012-01-26 01:50:25 +00:00
|
|
|
}
|
|
|
|
}
|
2012-02-26 05:30:18 +00:00
|
|
|
restrictedEntityFlag[(int)'&'] = true;
|
|
|
|
restrictedEntityFlag[(int)'<'] = true;
|
|
|
|
restrictedEntityFlag[(int)'>'] = true; // not required, but consistency is nice
|
2012-02-18 01:48:16 +00:00
|
|
|
buffer.Push( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-25 01:37:53 +00:00
|
|
|
void XMLPrinter::Print( const char* format, ... )
|
2012-02-18 01:48:16 +00:00
|
|
|
{
|
|
|
|
va_list va;
|
|
|
|
va_start( va, format );
|
|
|
|
|
|
|
|
if ( fp ) {
|
|
|
|
vfprintf( fp, format, va );
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// This seems brutally complex. Haven't figured out a better
|
|
|
|
// way on windows.
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
int len = -1;
|
2012-02-21 04:14:33 +00:00
|
|
|
int expand = 1000;
|
2012-02-18 01:48:16 +00:00
|
|
|
while ( len < 0 ) {
|
2012-04-07 04:18:23 +00:00
|
|
|
len = vsnprintf_s( accumulator.Mem(), accumulator.Capacity(), _TRUNCATE, format, va );
|
2012-02-18 01:48:16 +00:00
|
|
|
if ( len < 0 ) {
|
2012-02-21 04:14:33 +00:00
|
|
|
expand *= 3/2;
|
2012-04-07 04:18:23 +00:00
|
|
|
accumulator.PushArr( expand );
|
2012-02-18 01:48:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
char* p = buffer.PushArr( len ) - 1;
|
|
|
|
memcpy( p, accumulator.Mem(), len+1 );
|
|
|
|
#else
|
|
|
|
int len = vsnprintf( 0, 0, format, va );
|
2012-03-14 00:33:35 +00:00
|
|
|
// Close out and re-start the va-args
|
|
|
|
va_end( va );
|
|
|
|
va_start( va, format );
|
2012-02-18 01:48:16 +00:00
|
|
|
char* p = buffer.PushArr( len ) - 1;
|
2012-02-26 05:30:18 +00:00
|
|
|
vsnprintf( p, len+1, format, va );
|
2012-02-18 01:48:16 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
va_end( va );
|
2012-01-25 02:03:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-25 01:37:53 +00:00
|
|
|
void XMLPrinter::PrintSpace( int depth )
|
2012-01-25 02:03:07 +00:00
|
|
|
{
|
|
|
|
for( int i=0; i<depth; ++i ) {
|
2012-02-18 01:48:16 +00:00
|
|
|
Print( " " );
|
2012-01-25 02:03:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-25 01:37:53 +00:00
|
|
|
void XMLPrinter::PrintString( const char* p, bool restricted )
|
2012-01-26 16:47:06 +00:00
|
|
|
{
|
|
|
|
// Look for runs of bytes between entities to print.
|
|
|
|
const char* q = p;
|
2012-02-21 04:14:33 +00:00
|
|
|
const bool* flag = restricted ? restrictedEntityFlag : entityFlag;
|
2012-01-26 16:47:06 +00:00
|
|
|
|
2012-03-02 20:59:39 +00:00
|
|
|
if ( processEntities ) {
|
|
|
|
while ( *q ) {
|
|
|
|
// Remember, char is sometimes signed. (How many times has that bitten me?)
|
|
|
|
if ( *q > 0 && *q < ENTITY_RANGE ) {
|
|
|
|
// Check for entities. If one is found, flush
|
|
|
|
// the stream up until the entity, write the
|
|
|
|
// entity, and keep looking.
|
2012-04-01 03:09:20 +00:00
|
|
|
if ( flag[(unsigned)(*q)] ) {
|
2012-03-02 20:59:39 +00:00
|
|
|
while ( p < q ) {
|
|
|
|
Print( "%c", *p );
|
|
|
|
++p;
|
2012-01-26 16:47:06 +00:00
|
|
|
}
|
2012-03-02 20:59:39 +00:00
|
|
|
for( int i=0; i<NUM_ENTITIES; ++i ) {
|
|
|
|
if ( entities[i].value == *q ) {
|
|
|
|
Print( "&%s;", entities[i].pattern );
|
|
|
|
break;
|
|
|
|
}
|
2012-01-26 16:47:06 +00:00
|
|
|
}
|
2012-03-02 20:59:39 +00:00
|
|
|
++p;
|
2012-01-26 16:47:06 +00:00
|
|
|
}
|
|
|
|
}
|
2012-03-02 20:59:39 +00:00
|
|
|
++q;
|
2012-01-26 16:47:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// Flush the remaining string. This will be the entire
|
|
|
|
// string if an entity wasn't found.
|
2012-03-02 20:59:39 +00:00
|
|
|
if ( !processEntities || (q-p > 0) ) {
|
2012-02-18 01:48:16 +00:00
|
|
|
Print( "%s", p );
|
2012-01-26 16:47:06 +00:00
|
|
|
}
|
2012-01-26 01:50:25 +00:00
|
|
|
}
|
|
|
|
|
2012-02-18 01:48:16 +00:00
|
|
|
|
2012-02-25 01:37:53 +00:00
|
|
|
void XMLPrinter::PushHeader( bool writeBOM, bool writeDec )
|
2012-02-21 17:08:12 +00:00
|
|
|
{
|
|
|
|
static const unsigned char bom[] = { TIXML_UTF_LEAD_0, TIXML_UTF_LEAD_1, TIXML_UTF_LEAD_2, 0 };
|
|
|
|
if ( writeBOM ) {
|
|
|
|
Print( "%s", bom );
|
|
|
|
}
|
|
|
|
if ( writeDec ) {
|
|
|
|
PushDeclaration( "xml version=\"1.0\"" );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-25 01:37:53 +00:00
|
|
|
void XMLPrinter::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 );
|
|
|
|
|
2012-05-28 09:22:07 +00:00
|
|
|
if ( textDepth < 0 && !firstElement && !compactMode ) {
|
2012-02-18 01:48:16 +00:00
|
|
|
Print( "\n" );
|
2012-01-26 01:16:23 +00:00
|
|
|
PrintSpace( depth );
|
|
|
|
}
|
2012-01-25 02:03:07 +00:00
|
|
|
|
2012-02-18 01:48:16 +00:00
|
|
|
Print( "<%s", name );
|
2012-01-25 02:03:07 +00:00
|
|
|
elementJustOpened = true;
|
2012-02-21 04:14:33 +00:00
|
|
|
firstElement = false;
|
2012-01-25 02:03:07 +00:00
|
|
|
++depth;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-25 01:37:53 +00:00
|
|
|
void XMLPrinter::PushAttribute( const char* name, const char* value )
|
2012-01-25 02:03:07 +00:00
|
|
|
{
|
|
|
|
TIXMLASSERT( elementJustOpened );
|
2012-02-18 01:48:16 +00:00
|
|
|
Print( " %s=\"", name );
|
2012-02-21 04:14:33 +00:00
|
|
|
PrintString( value, false );
|
2012-02-18 01:48:16 +00:00
|
|
|
Print( "\"" );
|
2012-01-25 02:03:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-28 01:54:22 +00:00
|
|
|
void XMLPrinter::PushAttribute( const char* name, int v )
|
|
|
|
{
|
|
|
|
char buf[BUF_SIZE];
|
2012-07-16 00:27:22 +00:00
|
|
|
XMLUtil::ToStr( v, buf, BUF_SIZE );
|
2012-02-28 01:54:22 +00:00
|
|
|
PushAttribute( name, buf );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void XMLPrinter::PushAttribute( const char* name, unsigned v )
|
|
|
|
{
|
|
|
|
char buf[BUF_SIZE];
|
2012-07-16 00:27:22 +00:00
|
|
|
XMLUtil::ToStr( v, buf, BUF_SIZE );
|
2012-02-28 01:54:22 +00:00
|
|
|
PushAttribute( name, buf );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void XMLPrinter::PushAttribute( const char* name, bool v )
|
|
|
|
{
|
|
|
|
char buf[BUF_SIZE];
|
2012-07-16 00:27:22 +00:00
|
|
|
XMLUtil::ToStr( v, buf, BUF_SIZE );
|
2012-02-28 01:54:22 +00:00
|
|
|
PushAttribute( name, buf );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void XMLPrinter::PushAttribute( const char* name, double v )
|
|
|
|
{
|
|
|
|
char buf[BUF_SIZE];
|
2012-07-16 00:27:22 +00:00
|
|
|
XMLUtil::ToStr( v, buf, BUF_SIZE );
|
2012-02-28 01:54:22 +00:00
|
|
|
PushAttribute( name, buf );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-25 01:37:53 +00:00
|
|
|
void XMLPrinter::CloseElement()
|
2012-01-25 02:03:07 +00:00
|
|
|
{
|
|
|
|
--depth;
|
|
|
|
const char* name = stack.Pop();
|
|
|
|
|
|
|
|
if ( elementJustOpened ) {
|
2012-02-18 01:48:16 +00:00
|
|
|
Print( "/>" );
|
2012-01-25 02:03:07 +00:00
|
|
|
}
|
|
|
|
else {
|
2012-05-28 09:22:07 +00:00
|
|
|
if ( textDepth < 0 && !compactMode) {
|
2012-02-18 01:48:16 +00:00
|
|
|
Print( "\n" );
|
2012-01-26 01:16:23 +00:00
|
|
|
PrintSpace( depth );
|
|
|
|
}
|
2012-02-18 01:48:16 +00:00
|
|
|
Print( "</%s>", name );
|
2012-01-25 02:03:07 +00:00
|
|
|
}
|
2012-02-10 02:16:58 +00:00
|
|
|
|
|
|
|
if ( textDepth == depth )
|
|
|
|
textDepth = -1;
|
2012-05-28 09:22:07 +00:00
|
|
|
if ( depth == 0 && !compactMode)
|
2012-02-18 01:48:16 +00:00
|
|
|
Print( "\n" );
|
2012-01-25 02:03:07 +00:00
|
|
|
elementJustOpened = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-25 01:37:53 +00:00
|
|
|
void XMLPrinter::SealElement()
|
2012-01-25 02:03:07 +00:00
|
|
|
{
|
|
|
|
elementJustOpened = false;
|
2012-02-18 01:48:16 +00:00
|
|
|
Print( ">" );
|
2012-01-25 02:03:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-25 01:37:53 +00:00
|
|
|
void XMLPrinter::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-21 04:14:33 +00:00
|
|
|
if ( cdata ) {
|
2012-02-18 01:48:16 +00:00
|
|
|
Print( "<![CDATA[" );
|
2012-02-21 04:14:33 +00:00
|
|
|
Print( "%s", text );
|
2012-02-18 01:48:16 +00:00
|
|
|
Print( "]]>" );
|
2012-02-21 04:14:33 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
PrintString( text, true );
|
|
|
|
}
|
2012-01-25 02:03:07 +00:00
|
|
|
}
|
|
|
|
|
2012-07-16 00:27:22 +00:00
|
|
|
void XMLPrinter::PushText( int value )
|
|
|
|
{
|
|
|
|
char buf[BUF_SIZE];
|
|
|
|
XMLUtil::ToStr( value, buf, BUF_SIZE );
|
|
|
|
PushText( buf, false );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void XMLPrinter::PushText( unsigned value )
|
|
|
|
{
|
|
|
|
char buf[BUF_SIZE];
|
|
|
|
XMLUtil::ToStr( value, buf, BUF_SIZE );
|
|
|
|
PushText( buf, false );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void XMLPrinter::PushText( bool value )
|
|
|
|
{
|
|
|
|
char buf[BUF_SIZE];
|
|
|
|
XMLUtil::ToStr( value, buf, BUF_SIZE );
|
|
|
|
PushText( buf, false );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void XMLPrinter::PushText( float value )
|
|
|
|
{
|
|
|
|
char buf[BUF_SIZE];
|
|
|
|
XMLUtil::ToStr( value, buf, BUF_SIZE );
|
|
|
|
PushText( buf, false );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void XMLPrinter::PushText( double value )
|
|
|
|
{
|
|
|
|
char buf[BUF_SIZE];
|
|
|
|
XMLUtil::ToStr( value, buf, BUF_SIZE );
|
|
|
|
PushText( buf, false );
|
|
|
|
}
|
|
|
|
|
2012-01-25 02:03:07 +00:00
|
|
|
|
2012-02-25 01:37:53 +00:00
|
|
|
void XMLPrinter::PushComment( const char* comment )
|
2012-01-25 02:03:07 +00:00
|
|
|
{
|
|
|
|
if ( elementJustOpened ) {
|
|
|
|
SealElement();
|
|
|
|
}
|
2012-05-28 09:22:07 +00:00
|
|
|
if ( textDepth < 0 && !firstElement && !compactMode) {
|
2012-02-18 01:48:16 +00:00
|
|
|
Print( "\n" );
|
2012-02-17 16:31:16 +00:00
|
|
|
PrintSpace( depth );
|
|
|
|
}
|
2012-02-21 04:14:33 +00:00
|
|
|
firstElement = false;
|
2012-02-18 01:48:16 +00:00
|
|
|
Print( "<!--%s-->", comment );
|
2012-01-25 02:03:07 +00:00
|
|
|
}
|
2012-02-10 16:50:51 +00:00
|
|
|
|
|
|
|
|
2012-02-25 01:37:53 +00:00
|
|
|
void XMLPrinter::PushDeclaration( const char* value )
|
2012-02-21 04:14:33 +00:00
|
|
|
{
|
|
|
|
if ( elementJustOpened ) {
|
|
|
|
SealElement();
|
|
|
|
}
|
2012-05-28 09:22:07 +00:00
|
|
|
if ( textDepth < 0 && !firstElement && !compactMode) {
|
2012-02-21 04:14:33 +00:00
|
|
|
Print( "\n" );
|
|
|
|
PrintSpace( depth );
|
|
|
|
}
|
|
|
|
firstElement = false;
|
|
|
|
Print( "<?%s?>", value );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-25 01:37:53 +00:00
|
|
|
void XMLPrinter::PushUnknown( const char* value )
|
2012-02-21 04:14:33 +00:00
|
|
|
{
|
|
|
|
if ( elementJustOpened ) {
|
|
|
|
SealElement();
|
|
|
|
}
|
2012-05-28 09:22:07 +00:00
|
|
|
if ( textDepth < 0 && !firstElement && !compactMode) {
|
2012-02-21 04:14:33 +00:00
|
|
|
Print( "\n" );
|
|
|
|
PrintSpace( depth );
|
|
|
|
}
|
|
|
|
firstElement = false;
|
|
|
|
Print( "<!%s>", value );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-25 01:37:53 +00:00
|
|
|
bool XMLPrinter::VisitEnter( const XMLDocument& doc )
|
2012-02-21 17:08:12 +00:00
|
|
|
{
|
2012-03-02 20:59:39 +00:00
|
|
|
processEntities = doc.ProcessEntities();
|
2012-02-21 17:08:12 +00:00
|
|
|
if ( doc.HasBOM() ) {
|
|
|
|
PushHeader( true, false );
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-25 01:37:53 +00:00
|
|
|
bool XMLPrinter::VisitEnter( const XMLElement& element, const XMLAttribute* attribute )
|
2012-02-10 16:50:51 +00:00
|
|
|
{
|
|
|
|
OpenElement( element.Name() );
|
|
|
|
while ( attribute ) {
|
|
|
|
PushAttribute( attribute->Name(), attribute->Value() );
|
|
|
|
attribute = attribute->Next();
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-26 05:30:18 +00:00
|
|
|
bool XMLPrinter::VisitExit( const XMLElement& )
|
2012-02-10 16:50:51 +00:00
|
|
|
{
|
|
|
|
CloseElement();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-25 01:37:53 +00:00
|
|
|
bool XMLPrinter::Visit( const XMLText& text )
|
2012-02-10 16:50:51 +00:00
|
|
|
{
|
2012-02-23 00:00:12 +00:00
|
|
|
PushText( text.Value(), text.CData() );
|
2012-02-10 16:50:51 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-25 01:37:53 +00:00
|
|
|
bool XMLPrinter::Visit( const XMLComment& comment )
|
2012-02-10 16:50:51 +00:00
|
|
|
{
|
|
|
|
PushComment( comment.Value() );
|
|
|
|
return true;
|
|
|
|
}
|
2012-02-21 04:14:33 +00:00
|
|
|
|
2012-02-25 01:37:53 +00:00
|
|
|
bool XMLPrinter::Visit( const XMLDeclaration& declaration )
|
2012-02-21 04:14:33 +00:00
|
|
|
{
|
|
|
|
PushDeclaration( declaration.Value() );
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-25 01:37:53 +00:00
|
|
|
bool XMLPrinter::Visit( const XMLUnknown& unknown )
|
2012-02-21 04:14:33 +00:00
|
|
|
{
|
|
|
|
PushUnknown( unknown.Value() );
|
|
|
|
return true;
|
|
|
|
}
|