tinyxml2/tinyxml2.cpp

185 lines
3.1 KiB
C++
Raw Normal View History

2011-12-28 19:42:49 -08:00
#include "tinyxml2.h"
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
2011-12-31 14:58:18 -08:00
#include <ctype.h>
2011-12-28 19:42:49 -08:00
using namespace tinyxml2;
// --------- CharBuffer ----------- //
2011-12-28 19:42:49 -08:00
/*static*/ CharBuffer* CharBuffer::Construct( const char* in )
{
size_t len = strlen( in );
size_t size = len + sizeof( CharBuffer );
CharBuffer* cb = (CharBuffer*) malloc( size );
cb->length = len;
strcpy( cb->mem, in );
return cb;
}
/*static*/ void CharBuffer::Free( CharBuffer* cb )
{
free( cb );
}
// --------- XMLNode ----------- //
XMLNode::XMLNode( XMLDocument* doc ) :
document( doc ),
parent( 0 ),
firstChild( 0 ), lastChild( 0 ),
prev( 0 ), next( 0 )
2011-12-31 14:58:18 -08:00
{
}
XMLNode::~XMLNode()
{
XMLNode* node=firstChild;
while( node ) {
XMLNode* temp = node->next;
delete node;
node = temp;
}
}
XMLNode* XMLNode::InsertEndChild( XMLNode* addThis )
{
if ( lastChild ) {
TIXMLASSERT( firstChild );
TIXMLASSERT( lastChild->next == 0 );
lastChild->next = addThis;
addThis->prev = lastChild;
lastChild = addThis;
addThis->parent = this;
addThis->next = null;
}
else {
TIXMLASSERT( firstChild == 0 );
firstChild = lastChild = addThis;
addThis->parent = this;
addThis->prev = 0;
addThis->next = null;
2011-12-31 14:58:18 -08:00
}
}
const char* XMLNode::ParseText( char* p, const char* endTag, char** next )
{
TIXMLASSERT( endTag && *endTag );
char* start = SkipWhiteSpace( p );
if ( !start )
return;
char endChar = *endTag;
p = start;
int length = strlen( endTag );
while ( *p ) {
if ( *p == endChar ) {
if ( strncmp( p, endTag, length ) == 0 ) {
*p = 0;
*next = p + length;
return start;
}
}
++p;
}
return 0;
}
// --------- XMLComment ---------- //
XMLComment::XMLComment( XMLDocument* doc ) : XMLNode( doc )
{
}
virtual XMLComment::~XMLComment()
{
}
virtual char* XMLComment::ParseDeep( char* p )
{
// Comment parses as text.
value = ParseText( p, "-->", &p );
2011-12-31 14:58:18 -08:00
return p;
}
// --------- XMLDocument ----------- //
2011-12-28 19:42:49 -08:00
XMLDocument::XMLDocument() :
charBuffer( 0 )
{
}
2011-12-28 14:36:55 -08:00
XMLDocument::~XMLDocument()
{
delete root;
delete charBuffer;
}
bool XMLDocument::Parse( const char* p )
{
charBuffer = CharBuffer.Construct( p );
XMLNode* node = 0;
Identify( charBuffer., node );
node->Parse( p );
}
XMLComment* XMLDocument::newComment( XMLNode* parent )
{
}
char* XMLDocument::Identify( char* p, XMLNode** node )
2011-12-28 14:36:55 -08:00
{
2011-12-31 14:58:18 -08:00
XMLNode* returnNode = 0;
p = XMLNode::SkipWhiteSpace( p );
if( !p || !*p || *p != '<' )
{
return 0;
}
// What is this thing?
// - Elements start with a letter or underscore, but xml is reserved.
// - Comments: <!--
// - Decleration: <?xml
// - Everthing else is unknown to tinyxml.
//
const char* xmlHeader = { "<?xml" };
const char* commentHeader = { "<!--" };
const char* dtdHeader = { "<!" };
const char* cdataHeader = { "<![CDATA[" };
if ( XMLNode::StringEqual( p, xmlHeader, 5 ) ) {
returnNode = new XMLComment();
2011-12-31 14:58:18 -08:00
}
else {
TIXMLASSERT( 0 );
}
2011-12-28 14:36:55 -08:00
*node = returnNode;
return p;
2011-12-28 14:36:55 -08:00
}