TinyXML Test Suite#

struct Entity#

Public Members

const char *str#
unsigned int strLength#
char chr#
class TiXmlAttribute : public TiXmlBase#
#include <tinyxml.h>

An attribute is a name-value pair.

Elements have an arbitrary number of attributes, each with a unique name.

Note

The attributes are not TiXmlNodes, since they are not part of the tinyXML document object model. There are other suggested ways to look at this problem.

Public Functions

inline TiXmlAttribute()#

Construct an empty attribute.

inline TiXmlAttribute(const std::string &_name, const std::string &_value)#

std::string constructor.

inline TiXmlAttribute(const char *_name, const char *_value)#

Construct an attribute with a name and value.

inline const char *Name() const#

Return the name of this attribute.

inline const char *Value() const#

Return the value of this attribute.

inline const std::string &ValueStr() const#

Return the value of this attribute.

int IntValue() const#

Return the value of this attribute, converted to an integer.

double DoubleValue() const#

Return the value of this attribute, converted to a double.

inline const TIXML_STRING &NameTStr() const#
int QueryIntValue(int *_value) const#

QueryIntValue examines the value string.

It is an alternative to the IntValue() method with richer error checking. If the value is an integer, it is stored in ‘value’ and the call returns TIXML_SUCCESS. If it is not an integer, it returns TIXML_WRONG_TYPE.

A specialized but useful call. Note that for success it returns 0, which is the opposite of almost all other TinyXml calls.

int QueryDoubleValue(double *_value) const#

QueryDoubleValue examines the value string. See QueryIntValue().

inline void SetName(const char *_name)#

Set the name of this attribute.

inline void SetValue(const char *_value)#

Set the value.

void SetIntValue(int _value)#

Set the value from an integer.

void SetDoubleValue(double _value)#

Set the value from a double.

inline void SetName(const std::string &_name)#

STL std::string form.

inline void SetValue(const std::string &_value)#

STL std::string form.

const TiXmlAttribute *Next() const#

Get the next sibling attribute in the DOM. Returns null at end.

inline TiXmlAttribute *Next()#
const TiXmlAttribute *Previous() const#

Get the previous sibling attribute in the DOM. Returns null at beginning.

inline TiXmlAttribute *Previous()#
inline bool operator==(const TiXmlAttribute &rhs) const#
inline bool operator<(const TiXmlAttribute &rhs) const#
inline bool operator>(const TiXmlAttribute &rhs) const#
virtual const char *Parse(const char *p, TiXmlParsingData *data, TiXmlEncoding encoding)#
inline virtual void Print(FILE *cfile, int depth) const#

All TinyXml classes can print themselves to a file stream or the string class (TiXmlString in non-STL mode, std::string in STL mode.) Either or both cfile and str can be null.

This is a formatted print, and will insert tabs and newlines.

(For an unformatted stream, use the << operator.)

void Print(FILE *cfile, int depth, TIXML_STRING *str) const#
inline void SetDocument(TiXmlDocument *doc)#

Private Functions

TiXmlAttribute(const TiXmlAttribute&)#
void operator=(const TiXmlAttribute &base)#

Private Members

TiXmlDocument *document#
TIXML_STRING name#
TIXML_STRING value#
TiXmlAttribute *prev#
TiXmlAttribute *next#

Friends

friend class TiXmlAttributeSet
class TiXmlAttributeSet#

Public Functions

TiXmlAttributeSet()#
~TiXmlAttributeSet()#
void Add(TiXmlAttribute *attribute)#
void Remove(TiXmlAttribute *attribute)#
inline const TiXmlAttribute *First() const#
inline TiXmlAttribute *First()#
inline const TiXmlAttribute *Last() const#
inline TiXmlAttribute *Last()#
const TiXmlAttribute *Find(const char *_name) const#
inline TiXmlAttribute *Find(const char *_name)#
const TiXmlAttribute *Find(const std::string &_name) const#
inline TiXmlAttribute *Find(const std::string &_name)#

Private Functions

TiXmlAttributeSet(const TiXmlAttributeSet&)#
void operator=(const TiXmlAttributeSet&)#

Private Members

TiXmlAttribute sentinel#
class TiXmlBase#
#include <tinyxml.h>

TiXmlBase is a base class for every class in TinyXml.

It does little except to establish that TinyXml classes can be printed and provide some utility functions.

In XML, the document and elements can contain other elements and other types of nodes.

A Document can contain: Element (container or leaf)
                        Comment (leaf)
                        Unknown (leaf)
                        Declaration( leaf )

An Element can contain: Element (container or leaf)
                        Text    (leaf)
                        Attributes (not on tree)
                        Comment (leaf)
                        Unknown (leaf)

A Decleration contains: Attributes (not on tree)

Subclassed by TiXmlAttribute, TiXmlNode

Public Types

enum [anonymous]#

Values:

enumerator TIXML_NO_ERROR#
enumerator TIXML_ERROR#
enumerator TIXML_ERROR_OPENING_FILE#
enumerator TIXML_ERROR_OUT_OF_MEMORY#
enumerator TIXML_ERROR_PARSING_ELEMENT#
enumerator TIXML_ERROR_FAILED_TO_READ_ELEMENT_NAME#
enumerator TIXML_ERROR_READING_ELEMENT_VALUE#
enumerator TIXML_ERROR_READING_ATTRIBUTES#
enumerator TIXML_ERROR_PARSING_EMPTY#
enumerator TIXML_ERROR_READING_END_TAG#
enumerator TIXML_ERROR_PARSING_UNKNOWN#
enumerator TIXML_ERROR_PARSING_COMMENT#
enumerator TIXML_ERROR_PARSING_DECLARATION#
enumerator TIXML_ERROR_DOCUMENT_EMPTY#
enumerator TIXML_ERROR_EMBEDDED_NULL#
enumerator TIXML_ERROR_PARSING_CDATA#
enumerator TIXML_ERROR_DOCUMENT_TOP_ONLY#
enumerator TIXML_ERROR_STRING_COUNT#

Public Functions

inline TiXmlBase()#
inline virtual ~TiXmlBase()#
virtual void Print(FILE *cfile, int depth) const = 0#

All TinyXml classes can print themselves to a file stream or the string class (TiXmlString in non-STL mode, std::string in STL mode.) Either or both cfile and str can be null.

This is a formatted print, and will insert tabs and newlines.

(For an unformatted stream, use the << operator.)

inline int Row() const#

Return the position, in the original source file, of this node or attribute.

The row and column are 1-based. (That is the first row and first column is 1,1). If the returns values are 0 or less, then the parser does not have a row and column value.

Generally, the row and column value will be set when the TiXmlDocument::Load(), TiXmlDocument::LoadFile(), or any TiXmlNode::Parse() is called. It will NOT be set when the DOM was created from operator>>.

The values reflect the initial load. Once the DOM is modified programmatically (by adding or changing nodes and attributes) the new values will NOT update to reflect changes in the document.

There is a minor performance cost to computing the row and column. Computation can be disabled if TiXmlDocument::SetTabSize() is called with 0 as the value.

inline int Column() const#

See Row()

inline void SetUserData(void *user)#

Set a pointer to arbitrary user data.

inline void *GetUserData()#

Get a pointer to arbitrary user data.

inline const void *GetUserData() const#

Get a pointer to arbitrary user data.

virtual const char *Parse(const char *p, TiXmlParsingData *data, TiXmlEncoding encoding) = 0#

Public Static Functions

static inline void SetCondenseWhiteSpace(bool condense)#

The world does not agree on whether white space should be kept or not.

In order to make everyone happy, these global, static functions are provided to set whether or not TinyXml will condense all white space into a single space or not. The default is to condense. Note changing this value is not thread safe.

static inline bool IsWhiteSpaceCondensed()#

Return the current white space setting.

Public Static Attributes

static const int utf8ByteTable[256]#

Protected Attributes

TiXmlCursor location#
void *userData#

Field containing a generic user pointer.

Protected Static Functions

static const char *SkipWhiteSpace(const char*, TiXmlEncoding encoding)#
static inline bool IsWhiteSpace(char c)#
static inline bool IsWhiteSpace(int c)#
static bool StreamWhiteSpace(std::istream *in, TIXML_STRING *tag)#
static bool StreamTo(std::istream *in, int character, TIXML_STRING *tag)#
static const char *ReadName(const char *p, TIXML_STRING *name, TiXmlEncoding encoding)#
static const char *ReadText(const char *in, TIXML_STRING *text, bool ignoreWhiteSpace, const char *endTag, bool ignoreCase, TiXmlEncoding encoding)#
static const char *GetEntity(const char *in, char *value, int *length, TiXmlEncoding encoding)#
static inline const char *GetChar(const char *p, char *_value, int *length, TiXmlEncoding encoding)#
static void PutString(const TIXML_STRING &str, TIXML_STRING *out)#
static bool StringEqual(const char *p, const char *endTag, bool ignoreCase, TiXmlEncoding encoding)#
static int IsAlpha(unsigned char anyByte, TiXmlEncoding encoding)#
static int IsAlphaNum(unsigned char anyByte, TiXmlEncoding encoding)#
static inline int ToLower(int v, TiXmlEncoding encoding)#
static void ConvertUTF32ToUTF8(unsigned long input, char *output, int *length)#

Protected Static Attributes

static const char *errorString[TIXML_ERROR_STRING_COUNT]#

Private Types

enum [anonymous]#

Values:

enumerator NUM_ENTITY#
enumerator MAX_ENTITY_LENGTH#

Private Functions

TiXmlBase(const TiXmlBase&)#
void operator=(const TiXmlBase &base)#

Private Static Attributes

static Entity entity[NUM_ENTITY]#
static bool condenseWhiteSpace#

Friends

friend class TiXmlNode
friend class TiXmlElement
friend class TiXmlDocument
class TiXmlComment : public TiXmlNode#
#include <tinyxml.h>

An XML comment.

Public Functions

inline TiXmlComment()#

Constructs an empty comment.

inline TiXmlComment(const char *_value)#

Construct a comment from text.

TiXmlComment(const TiXmlComment&)#
void operator=(const TiXmlComment &base)#
inline virtual ~TiXmlComment()#
virtual TiXmlNode *Clone() const#

Returns a copy of this Comment.

virtual void Print(FILE *cfile, int depth) const#

All TinyXml classes can print themselves to a file stream or the string class (TiXmlString in non-STL mode, std::string in STL mode.) Either or both cfile and str can be null.

This is a formatted print, and will insert tabs and newlines.

(For an unformatted stream, use the << operator.)

virtual const char *Parse(const char *p, TiXmlParsingData *data, TiXmlEncoding encoding)#
inline virtual const TiXmlComment *ToComment() const#

Cast to a more defined type. Will return null not of the requested type.

inline virtual TiXmlComment *ToComment()#

Cast to a more defined type. Will return null not of the requested type.

virtual bool Accept(TiXmlVisitor *visitor) const#

Walk the XML tree visiting this node and all of its children.

Protected Functions

void CopyTo(TiXmlComment *target) const#
virtual void StreamIn(std::istream *in, TIXML_STRING *tag)#
struct TiXmlCursor#

Public Functions

inline TiXmlCursor()#
inline void Clear()#

Public Members

int row#
int col#
class TiXmlDeclaration : public TiXmlNode#
#include <tinyxml.h>

In correct XML the declaration is the first entry in the file.

    <?xml version="1.0" standalone="yes"?>

TinyXml will happily read or write files without a declaration, however. There are 3 possible attributes to the declaration: version, encoding, and standalone.

Note: In this version of the code, the attributes are handled as special cases, not generic attributes, simply because there can only be at most 3 and they are always the same.

Public Functions

inline TiXmlDeclaration()#

Construct an empty declaration.

TiXmlDeclaration(const std::string &_version, const std::string &_encoding, const std::string &_standalone)#

Constructor.

TiXmlDeclaration(const char *_version, const char *_encoding, const char *_standalone)#

Construct.

TiXmlDeclaration(const TiXmlDeclaration &copy)#
void operator=(const TiXmlDeclaration &copy)#
inline virtual ~TiXmlDeclaration()#
inline const char *Version() const#

Version. Will return an empty string if none was found.

inline const char *Encoding() const#

Encoding. Will return an empty string if none was found.

inline const char *Standalone() const#

Is this a standalone document?

virtual TiXmlNode *Clone() const#

Creates a copy of this Declaration and returns it.

virtual void Print(FILE *cfile, int depth, TIXML_STRING *str) const#
inline virtual void Print(FILE *cfile, int depth) const#

All TinyXml classes can print themselves to a file stream or the string class (TiXmlString in non-STL mode, std::string in STL mode.) Either or both cfile and str can be null.

This is a formatted print, and will insert tabs and newlines.

(For an unformatted stream, use the << operator.)

virtual const char *Parse(const char *p, TiXmlParsingData *data, TiXmlEncoding encoding)#
inline virtual const TiXmlDeclaration *ToDeclaration() const#

Cast to a more defined type. Will return null not of the requested type.

inline virtual TiXmlDeclaration *ToDeclaration()#

Cast to a more defined type. Will return null not of the requested type.

virtual bool Accept(TiXmlVisitor *visitor) const#

Walk the XML tree visiting this node and all of its children.

Protected Functions

void CopyTo(TiXmlDeclaration *target) const#
virtual void StreamIn(std::istream *in, TIXML_STRING *tag)#

Private Members

TIXML_STRING version#
TIXML_STRING encoding#
TIXML_STRING standalone#
class TiXmlDocument : public TiXmlNode#
#include <tinyxml.h>

Always the top level node.

A document binds together all the XML pieces. It can be saved, loaded, and printed to the screen. The ‘value’ of a document node is the xml file name.

Public Functions

TiXmlDocument()#

Create an empty document, that has no name.

TiXmlDocument(const char *documentName)#

Create a document with a name. The name of the document is also the filename of the xml.

TiXmlDocument(const std::string &documentName)#

Constructor.

TiXmlDocument(const TiXmlDocument &copy)#
void operator=(const TiXmlDocument &copy)#
inline virtual ~TiXmlDocument()#
bool LoadFile(TiXmlEncoding encoding = TIXML_DEFAULT_ENCODING)#

Load a file using the current document value.

Returns true if successful. Will delete any existing document data before loading.

bool SaveFile() const#

Save a file using the current document value. Returns true if successful.

bool LoadFile(const char *filename, TiXmlEncoding encoding = TIXML_DEFAULT_ENCODING)#

Load a file using the given filename. Returns true if successful.

bool SaveFile(const char *filename) const#

Save a file using the given filename. Returns true if successful.

bool LoadFile(FILE*, TiXmlEncoding encoding = TIXML_DEFAULT_ENCODING)#

Load a file using the given FILE*.

Returns true if successful. Note that this method doesn’t stream - the entire object pointed at by the FILE* will be interpreted as an XML file. TinyXML doesn’t stream in XML from the current file location. Streaming may be added in the future.

bool SaveFile(FILE*) const#

Save a file using the given FILE*. Returns true if successful.

inline bool LoadFile(const std::string &filename, TiXmlEncoding encoding = TIXML_DEFAULT_ENCODING)#
Parameters:

encoding – STL std::string version.

inline bool SaveFile(const std::string &filename) const#

< STL std::string version.

virtual const char *Parse(const char *p, TiXmlParsingData *data = 0, TiXmlEncoding encoding = TIXML_DEFAULT_ENCODING)#

Parse the given null terminated block of xml data.

Passing in an encoding to this method (either TIXML_ENCODING_LEGACY or TIXML_ENCODING_UTF8 will force TinyXml to use that encoding, regardless of what TinyXml might otherwise try to detect.

inline const TiXmlElement *RootElement() const#

Get the root element &#8212; the only top level element &#8212; of the document.

In well formed XML, there should only be one. TinyXml is tolerant of multiple elements at the document level.

inline TiXmlElement *RootElement()#
inline bool Error() const#

If an error occurs, Error will be set to true.

Also,

  • The ErrorId() will contain the integer identifier of the error (not generally useful)

  • The ErrorDesc() method will return the name of the error. (very useful)

  • The ErrorRow() and ErrorCol() will return the location of the error (if known)

inline const char *ErrorDesc() const#

Contains a textual (English) description of the error if one occurs.

inline int ErrorId() const#

Generally, you probably want the error string ( ErrorDesc() ).

But if you prefer the ErrorId, this function will fetch it.

inline int ErrorRow() const#

Returns the location (if known) of the error.

The first column is column 1, and the first row is row 1. A value of 0 means the row and column wasn’t applicable (memory errors, for example, have no row/column) or the parser lost the error. (An error in the error reporting, in that case.)

See also

SetTabSize, Row, Column

inline int ErrorCol() const#

The column where the error occurred. See ErrorRow()

inline void SetTabSize(int _tabsize)#

SetTabSize() allows the error reporting functions (ErrorRow() and ErrorCol()) to report the correct values for row and column.

It does not change the output or input in any way.

By calling this method, with a tab size greater than 0, the row and column of each node and attribute is stored when the file is loaded. Very useful for tracking the DOM back in to the source file.

The tab size is required for calculating the location of nodes. If not set, the default of 4 is used. The tabsize is set per document. Setting the tabsize to 0 disables row/column tracking.

Note that row and column tracking is not supported when using operator>>.

The tab size needs to be enabled before the parse or load. Correct usage:

TiXmlDocument doc;
doc.SetTabSize( 8 );
doc.Load( "myfile.xml" );

See also

Row, Column

inline int TabSize() const#
inline void ClearError()#

If you have handled the error, it can be reset with this call.

The error state is automatically cleared if you Parse a new XML block.

inline void Print() const#

Write the document to standard out using formatted printing (“pretty print”).

virtual void Print(FILE *cfile, int depth = 0) const#

Print this Document to a FILE stream.

void SetError(int err, const char *errorLocation, TiXmlParsingData *prevData, TiXmlEncoding encoding)#
inline virtual const TiXmlDocument *ToDocument() const#

Cast to a more defined type. Will return null not of the requested type.

inline virtual TiXmlDocument *ToDocument()#

Cast to a more defined type. Will return null not of the requested type.

virtual bool Accept(TiXmlVisitor *content) const#

Walk the XML tree visiting this node and all of its children.

Protected Functions

virtual TiXmlNode *Clone() const#

Create an exact duplicate of this node and return it.

The memory must be deleted by the caller.

virtual void StreamIn(std::istream *in, TIXML_STRING *tag)#

Private Functions

void CopyTo(TiXmlDocument *target) const#

Private Members

bool error#
int errorId#
TIXML_STRING errorDesc#
int tabsize#
TiXmlCursor errorLocation#
bool useMicrosoftBOM#
class TiXmlElement : public TiXmlNode#
#include <tinyxml.h>

The element is a container class.

It has a value, the element name, and can contain other elements, text, comments, and unknowns. Elements also contain an arbitrary number of attributes.

Public Functions

TiXmlElement(const char *in_value)#

Construct an element.

TiXmlElement(const std::string &_value)#

std::string constructor.

TiXmlElement(const TiXmlElement&)#
void operator=(const TiXmlElement &base)#
virtual ~TiXmlElement()#
const char *Attribute(const char *name) const#

Given an attribute name, Attribute() returns the value for the attribute of that name, or null if none exists.

const char *Attribute(const char *name, int *i) const#

Given an attribute name, Attribute() returns the value for the attribute of that name, or null if none exists.

If the attribute exists and can be converted to an integer, the integer value will be put in the return ‘i’, if ‘i’ is non-null.

const char *Attribute(const char *name, double *d) const#

Given an attribute name, Attribute() returns the value for the attribute of that name, or null if none exists.

If the attribute exists and can be converted to an double, the double value will be put in the return ‘d’, if ‘d’ is non-null.

int QueryIntAttribute(const char *name, int *_value) const#

QueryIntAttribute examines the attribute - it is an alternative to the Attribute() method with richer error checking.

If the attribute is an integer, it is stored in ‘value’ and the call returns TIXML_SUCCESS. If it is not an integer, it returns TIXML_WRONG_TYPE. If the attribute does not exist, then TIXML_NO_ATTRIBUTE is returned.

int QueryDoubleAttribute(const char *name, double *_value) const#

QueryDoubleAttribute examines the attribute - see QueryIntAttribute().

inline int QueryFloatAttribute(const char *name, float *_value) const#

QueryFloatAttribute examines the attribute - see QueryIntAttribute().

template<typename T>
inline int QueryValueAttribute(const std::string &name, T *outValue) const#

Template form of the attribute query which will try to read the attribute into the specified type.

Very easy, very powerful, but be careful to make sure to call this with the correct type.

Returns:

TIXML_SUCCESS, TIXML_WRONG_TYPE, or TIXML_NO_ATTRIBUTE

void SetAttribute(const char *name, const char *_value)#

Sets an attribute of name to a given value.

The attribute will be created if it does not exist, or changed if it does.

const std::string *Attribute(const std::string &name) const#
const std::string *Attribute(const std::string &name, int *i) const#
const std::string *Attribute(const std::string &name, double *d) const#
int QueryIntAttribute(const std::string &name, int *_value) const#
int QueryDoubleAttribute(const std::string &name, double *_value) const#
void SetAttribute(const std::string &name, const std::string &_value)#

STL std::string form.

STL std::string form.

void SetAttribute(const std::string &name, int _value)#
void SetAttribute(const char *name, int value)#

Sets an attribute of name to a given value.

The attribute will be created if it does not exist, or changed if it does.

void SetDoubleAttribute(const char *name, double value)#

Sets an attribute of name to a given value.

The attribute will be created if it does not exist, or changed if it does.

void RemoveAttribute(const char *name)#

Deletes an attribute with the given name.

inline void RemoveAttribute(const std::string &name)#

STL std::string form.

inline const TiXmlAttribute *FirstAttribute() const#

Access the first attribute in this element.

inline TiXmlAttribute *FirstAttribute()#
inline const TiXmlAttribute *LastAttribute() const#

Access the last attribute in this element.

inline TiXmlAttribute *LastAttribute()#
const char *GetText() const#

Convenience function for easy access to the text inside an element.

Although easy and concise, GetText() is limited compared to getting the TiXmlText child and accessing it directly.

If the first child of ‘this’ is a TiXmlText, the GetText() returns the character string of the Text node, else null is returned.

This is a convenient method for getting the text of simple contained text:

<foo>This is text</foo>
const char* str = fooElement->GetText();

‘str’ will be a pointer to “This is text”.

Note that this function can be misleading. If the element foo was created from this XML:

<foo><b>This is text</b></foo>

then the value of str would be null. The first child node isn’t a text node, it is another element. From this XML:

<foo>This is <b>text</b></foo>
GetText() will return “This is “.

WARNING: GetText() accesses a child node - don’t become confused with the similarly named TiXmlHandle::Text() and TiXmlNode::ToText() which are safe type casts on the referenced node.

virtual TiXmlNode *Clone() const#

Creates a new Element and returns it - the returned element is a copy.

virtual void Print(FILE *cfile, int depth) const#

All TinyXml classes can print themselves to a file stream or the string class (TiXmlString in non-STL mode, std::string in STL mode.) Either or both cfile and str can be null.

This is a formatted print, and will insert tabs and newlines.

(For an unformatted stream, use the << operator.)

virtual const char *Parse(const char *p, TiXmlParsingData *data, TiXmlEncoding encoding)#
inline virtual const TiXmlElement *ToElement() const#

Cast to a more defined type. Will return null not of the requested type.

inline virtual TiXmlElement *ToElement()#

Cast to a more defined type. Will return null not of the requested type.

virtual bool Accept(TiXmlVisitor *visitor) const#

Walk the XML tree visiting this node and all of its children.

Protected Functions

void CopyTo(TiXmlElement *target) const#
void ClearThis()#
virtual void StreamIn(std::istream *in, TIXML_STRING *tag)#
const char *ReadValue(const char *in, TiXmlParsingData *prevData, TiXmlEncoding encoding)#

Private Members

TiXmlAttributeSet attributeSet#
class TiXmlHandle#
#include <tinyxml.h>

A TiXmlHandle is a class that wraps a node pointer with null checks; this is an incredibly useful thing.

Note that TiXmlHandle is not part of the TinyXml DOM structure. It is a separate utility class.

Take an example:

<Document>
    <Element attributeA = "valueA">
        <Child attributeB = "value1" />
        <Child attributeB = "value2" />
    </Element>
<Document>

Assuming you want the value of “attributeB” in the second “Child” element, it’s very easy to write a lot of code that looks like:

TiXmlElement* root = document.FirstChildElement( "Document" );
if ( root )
{
    TiXmlElement* element = root->FirstChildElement( "Element" );
    if ( element )
    {
        TiXmlElement* child = element->FirstChildElement( "Child" );
        if ( child )
        {
            TiXmlElement* child2 = child->NextSiblingElement( "Child" );
            if ( child2 )
            {
                // Finally do something useful.

And that doesn’t even cover “else” cases. TiXmlHandle addresses the verbosity of such code. A TiXmlHandle checks for null pointers so it is perfectly safe and correct to use:

TiXmlHandle docHandle( &document );
TiXmlElement* child2 = docHandle.FirstChild( "Document" ).FirstChild( "Element" ).Child( "Child", 1 ).ToElement();
if ( child2 )
{
    // do something useful

Which is MUCH more concise and useful.

It is also safe to copy handles - internally they are nothing more than node pointers.

TiXmlHandle handleCopy = handle;

What they should not be used for is iteration:

int i=0; 
while ( true )
{
    TiXmlElement* child = docHandle.FirstChild( "Document" ).FirstChild( "Element" ).Child( "Child", i ).ToElement();
    if ( !child )
        break;
    // do something
    ++i;
}

It seems reasonable, but it is in fact two embedded while loops. The Child method is a linear walk to find the element, so this code would iterate much more than it needs to. Instead, prefer:

TiXmlElement* child = docHandle.FirstChild( "Document" ).FirstChild( "Element" ).FirstChild( "Child" ).ToElement();

for( child; child; child=child->NextSiblingElement() )
{
    // do something
}

Public Functions

inline TiXmlHandle(TiXmlNode *_node)#

Create a handle from any node (at any depth of the tree.) This can be a null pointer.

inline TiXmlHandle(const TiXmlHandle &ref)#

Copy constructor.

inline TiXmlHandle operator=(const TiXmlHandle &ref)#
TiXmlHandle FirstChild() const#

Return a handle to the first child node.

TiXmlHandle FirstChild(const char *value) const#

Return a handle to the first child node with the given name.

TiXmlHandle FirstChildElement() const#

Return a handle to the first child element.

TiXmlHandle FirstChildElement(const char *value) const#

Return a handle to the first child element with the given name.

TiXmlHandle Child(const char *value, int index) const#

Return a handle to the “index” child with the given name.

The first child is 0, the second 1, etc.

TiXmlHandle Child(int index) const#

Return a handle to the “index” child.

The first child is 0, the second 1, etc.

TiXmlHandle ChildElement(const char *value, int index) const#

Return a handle to the “index” child element with the given name.

The first child element is 0, the second 1, etc. Note that only TiXmlElements are indexed: other types are not counted.

TiXmlHandle ChildElement(int index) const#

Return a handle to the “index” child element.

The first child element is 0, the second 1, etc. Note that only TiXmlElements are indexed: other types are not counted.

inline TiXmlHandle FirstChild(const std::string &_value) const#
inline TiXmlHandle FirstChildElement(const std::string &_value) const#
inline TiXmlHandle Child(const std::string &_value, int index) const#
inline TiXmlHandle ChildElement(const std::string &_value, int index) const#
inline TiXmlNode *ToNode() const#

Return the handle as a TiXmlNode.

This may return null.

inline TiXmlElement *ToElement() const#

Return the handle as a TiXmlElement.

This may return null.

inline TiXmlText *ToText() const#

Return the handle as a TiXmlText.

This may return null.

inline TiXmlUnknown *ToUnknown() const#

Return the handle as a TiXmlUnknown.

This may return null.

inline TiXmlNode *Node() const#

Deprecated:

use ToNode. Return the handle as a TiXmlNode. This may return null.

inline TiXmlElement *Element() const#

Deprecated:

use ToElement. Return the handle as a TiXmlElement. This may return null.

inline TiXmlText *Text() const#

Deprecated:

use ToText() Return the handle as a TiXmlText. This may return null.

inline TiXmlUnknown *Unknown() const#

Deprecated:

use ToUnknown() Return the handle as a TiXmlUnknown. This may return null.

Private Members

TiXmlNode *node#
class TiXmlNode : public TiXmlBase#
#include <tinyxml.h>

The parent class for everything in the Document Object Model.

(Except for attributes). Nodes have siblings, a parent, and children. A node can be in a document, or stand on its own. The type of a TiXmlNode can be queried, and it can be cast to its more defined type.

Subclassed by TiXmlComment, TiXmlDeclaration, TiXmlDocument, TiXmlElement, TiXmlText, TiXmlUnknown

Public Types

enum NodeType#

The types of XML nodes supported by TinyXml.

(All the unsupported types are picked up by UNKNOWN.)

Values:

enumerator DOCUMENT#
enumerator ELEMENT#
enumerator COMMENT#
enumerator UNKNOWN#
enumerator TEXT#
enumerator DECLARATION#
enumerator TYPECOUNT#

Public Functions

virtual ~TiXmlNode()#
inline const char *Value() const#

The meaning of ‘value’ changes for the specific type of TiXmlNode.

Document:   filename of the xml file
Element:    name of the element
Comment:    the comment text
Unknown:    the tag contents
Text:       the text string

The subclasses will wrap this function.

inline const std::string &ValueStr() const#

Return Value() as a std::string.

If you only use STL, this is more efficient than calling Value(). Only available in STL mode.

inline void SetValue(const char *_value)#

Changes the value of the node.

Defined as:

Document:   filename of the xml file
Element:    name of the element
Comment:    the comment text
Unknown:    the tag contents
Text:       the text string

inline void SetValue(const std::string &_value)#

STL std::string form.

void Clear()#

Delete all the children of this node. Does not affect ‘this’.

inline TiXmlNode *Parent()#

One step up the DOM.

inline const TiXmlNode *Parent() const#
inline const TiXmlNode *FirstChild() const#

The first child of this node. Will be null if there are no children.

inline TiXmlNode *FirstChild()#
const TiXmlNode *FirstChild(const char *value) const#

The first child of this node with the matching ‘value’.

Will be null if none found.

inline TiXmlNode *FirstChild(const char *_value)#

The first child of this node with the matching ‘value’. Will be null if none found.

inline const TiXmlNode *LastChild() const#
inline TiXmlNode *LastChild()#

The last child of this node. Will be null if there are no children.

const TiXmlNode *LastChild(const char *value) const#
inline TiXmlNode *LastChild(const char *_value)#

The last child of this node matching ‘value’. Will be null if there are no children.

inline const TiXmlNode *FirstChild(const std::string &_value) const#

STL std::string form.

inline TiXmlNode *FirstChild(const std::string &_value)#

STL std::string form.

inline const TiXmlNode *LastChild(const std::string &_value) const#

STL std::string form.

inline TiXmlNode *LastChild(const std::string &_value)#

STL std::string form.

const TiXmlNode *IterateChildren(const TiXmlNode *previous) const#

An alternate way to walk the children of a node.

One way to iterate over nodes is:

    for( child = parent->FirstChild(); child; child = child->NextSibling() )

IterateChildren does the same thing with the syntax:

    child = 0;
    while( child = parent->IterateChildren( child ) )

IterateChildren takes the previous child as input and finds the next one. If the previous child is null, it returns the first. IterateChildren will return null when done.

inline TiXmlNode *IterateChildren(const TiXmlNode *previous)#
const TiXmlNode *IterateChildren(const char *value, const TiXmlNode *previous) const#

This flavor of IterateChildren searches for children with a particular ‘value’.

inline TiXmlNode *IterateChildren(const char *_value, const TiXmlNode *previous)#
inline const TiXmlNode *IterateChildren(const std::string &_value, const TiXmlNode *previous) const#

STL std::string form.

inline TiXmlNode *IterateChildren(const std::string &_value, const TiXmlNode *previous)#

STL std::string form.

TiXmlNode *InsertEndChild(const TiXmlNode &addThis)#

Add a new node related to this.

Adds a child past the LastChild. Returns a pointer to the new object or NULL if an error occurred.

TiXmlNode *LinkEndChild(TiXmlNode *addThis)#

Add a new node related to this.

Adds a child past the LastChild.

NOTE: the node to be added is passed by pointer, and will be henceforth owned (and deleted) by tinyXml. This method is efficient and avoids an extra copy, but should be used with care as it uses a different memory model than the other insert functions.

See also

InsertEndChild

TiXmlNode *InsertBeforeChild(TiXmlNode *beforeThis, const TiXmlNode &addThis)#

Add a new node related to this.

Adds a child before the specified child. Returns a pointer to the new object or NULL if an error occurred.

TiXmlNode *InsertAfterChild(TiXmlNode *afterThis, const TiXmlNode &addThis)#

Add a new node related to this.

Adds a child after the specified child. Returns a pointer to the new object or NULL if an error occurred.

TiXmlNode *ReplaceChild(TiXmlNode *replaceThis, const TiXmlNode &withThis)#

Replace a child of this node.

Returns a pointer to the new object or NULL if an error occurred.

bool RemoveChild(TiXmlNode *removeThis)#

Delete a child of this node.

inline const TiXmlNode *PreviousSibling() const#

Navigate to a sibling node.

inline TiXmlNode *PreviousSibling()#
const TiXmlNode *PreviousSibling(const char*) const#

Navigate to a sibling node.

inline TiXmlNode *PreviousSibling(const char *_prev)#
inline const TiXmlNode *PreviousSibling(const std::string &_value) const#

STL std::string form.

inline TiXmlNode *PreviousSibling(const std::string &_value)#

STL std::string form.

inline const TiXmlNode *NextSibling(const std::string &_value) const#

STL std::string form.

inline TiXmlNode *NextSibling(const std::string &_value)#

STL std::string form.

inline const TiXmlNode *NextSibling() const#

Navigate to a sibling node.

inline TiXmlNode *NextSibling()#
const TiXmlNode *NextSibling(const char*) const#

Navigate to a sibling node with the given ‘value’.

inline TiXmlNode *NextSibling(const char *_next)#
const TiXmlElement *NextSiblingElement() const#

Convenience function to get through elements.

Calls NextSibling and ToElement. Will skip all non-Element nodes. Returns 0 if there is not another element.

inline TiXmlElement *NextSiblingElement()#
const TiXmlElement *NextSiblingElement(const char*) const#

Convenience function to get through elements.

Calls NextSibling and ToElement. Will skip all non-Element nodes. Returns 0 if there is not another element.

inline TiXmlElement *NextSiblingElement(const char *_next)#
inline const TiXmlElement *NextSiblingElement(const std::string &_value) const#

STL std::string form.

inline TiXmlElement *NextSiblingElement(const std::string &_value)#

STL std::string form.

const TiXmlElement *FirstChildElement() const#

Convenience function to get through elements.

inline TiXmlElement *FirstChildElement()#
const TiXmlElement *FirstChildElement(const char *_value) const#

Convenience function to get through elements.

inline TiXmlElement *FirstChildElement(const char *_value)#
inline const TiXmlElement *FirstChildElement(const std::string &_value) const#

STL std::string form.

inline TiXmlElement *FirstChildElement(const std::string &_value)#

STL std::string form.

inline int Type() const#

Query the type (as an enumerated value, above) of this node.

The possible types are: DOCUMENT, ELEMENT, COMMENT, UNKNOWN, TEXT, and DECLARATION.

const TiXmlDocument *GetDocument() const#

Return a pointer to the Document this node lives in.

Returns null if not in a document.

inline TiXmlDocument *GetDocument()#
inline bool NoChildren() const#

Returns true if this node has no children.

inline virtual const TiXmlDocument *ToDocument() const#

Cast to a more defined type. Will return null if not of the requested type.

inline virtual const TiXmlElement *ToElement() const#

Cast to a more defined type. Will return null if not of the requested type.

inline virtual const TiXmlComment *ToComment() const#

Cast to a more defined type. Will return null if not of the requested type.

inline virtual const TiXmlUnknown *ToUnknown() const#

Cast to a more defined type. Will return null if not of the requested type.

inline virtual const TiXmlText *ToText() const#

Cast to a more defined type. Will return null if not of the requested type.

inline virtual const TiXmlDeclaration *ToDeclaration() const#

Cast to a more defined type. Will return null if not of the requested type.

inline virtual TiXmlDocument *ToDocument()#

Cast to a more defined type. Will return null if not of the requested type.

inline virtual TiXmlElement *ToElement()#

Cast to a more defined type. Will return null if not of the requested type.

inline virtual TiXmlComment *ToComment()#

Cast to a more defined type. Will return null if not of the requested type.

inline virtual TiXmlUnknown *ToUnknown()#

Cast to a more defined type. Will return null if not of the requested type.

inline virtual TiXmlText *ToText()#

Cast to a more defined type. Will return null if not of the requested type.

inline virtual TiXmlDeclaration *ToDeclaration()#

Cast to a more defined type. Will return null if not of the requested type.

virtual TiXmlNode *Clone() const = 0#

Create an exact duplicate of this node and return it.

The memory must be deleted by the caller.

virtual bool Accept(TiXmlVisitor *visitor) const = 0#

Accept a hierarchical visit the nodes in the TinyXML DOM.

Every node in the XML tree will be conditionally visited and the host will be called back via the TiXmlVisitor interface.

This is essentially a SAX interface for TinyXML. (Note however it doesn’t re-parse the XML for the callbacks, so the performance of TinyXML is unchanged by using this interface versus any other.)

The interface has been based on ideas from:

Which are both good references for “visiting”.

An example of using Accept():

TiXmlPrinter printer;
tinyxmlDoc.Accept( &printer );
const char* xmlcstr = printer.CStr();

Protected Functions

TiXmlNode(NodeType _type)#
void CopyTo(TiXmlNode *target) const#
virtual void StreamIn(std::istream *in, TIXML_STRING *tag) = 0#
TiXmlNode *Identify(const char *start, TiXmlEncoding encoding)#

Protected Attributes

TiXmlNode *parent#
NodeType type#
TiXmlNode *firstChild#
TiXmlNode *lastChild#
TIXML_STRING value#
TiXmlNode *prev#
TiXmlNode *next#

Private Functions

TiXmlNode(const TiXmlNode&)#
void operator=(const TiXmlNode &base)#

Friends

friend class TiXmlDocument
friend class TiXmlElement
friend std::istream &operator>>(std::istream &in, TiXmlNode &base)#

An input stream operator, for every class.

Tolerant of newlines and formatting, but doesn’t expect them.

friend std::ostream &operator<<(std::ostream &out, const TiXmlNode &base)#

An output stream operator, for every class.

Note that this outputs without any newlines or formatting, as opposed to Print(), which includes tabs and new lines.

The operator<< and operator>> are not completely symmetric. Writing a node to a stream is very well defined. You’ll get a nice stream of output, without any extra whitespace or newlines.

But reading is not as well defined. (As it always is.) If you create a TiXmlElement (for example) and read that from an input stream, the text needs to define an element or junk will result. This is true of all input streams, but it’s worth keeping in mind.

A TiXmlDocument will read nodes until it reads a root element, and all the children of that root element.

friend std::string &operator<<(std::string &out, const TiXmlNode &base)#

Appends the XML node or attribute to a std::string.

class TiXmlPrinter : public TiXmlVisitor#
#include <tinyxml.h>

Print to memory functionality.

The TiXmlPrinter is useful when you need to:

  1. Print to memory (especially in non-STL mode)

  2. Control formatting (line endings, etc.)

When constructed, the TiXmlPrinter is in its default “pretty printing” mode. Before calling Accept() you can call methods to control the printing of the XML document. After TiXmlNode::Accept() is called, the printed document can be accessed via the CStr(), Str(), and Size() methods.

TiXmlPrinter uses the Visitor API.

TiXmlPrinter printer;
printer.SetIndent( "\t" );

doc.Accept( &printer );
fprintf( stdout, "%s", printer.CStr() );

Public Functions

inline TiXmlPrinter()#
virtual bool VisitEnter(const TiXmlDocument &doc)#

Visit a document.

virtual bool VisitExit(const TiXmlDocument &doc)#

Visit a document.

virtual bool VisitEnter(const TiXmlElement &element, const TiXmlAttribute *firstAttribute)#

Visit an element.

virtual bool VisitExit(const TiXmlElement &element)#

Visit an element.

virtual bool Visit(const TiXmlDeclaration &declaration)#

Visit a declaration.

virtual bool Visit(const TiXmlText &text)#

Visit a text node.

virtual bool Visit(const TiXmlComment &comment)#

Visit a comment node.

virtual bool Visit(const TiXmlUnknown &unknown)#

Visit an unknown node.

inline void SetIndent(const char *_indent)#

Set the indent characters for printing.

By default 4 spaces but tab (\t) is also useful, or null/empty string for no indentation.

inline const char *Indent()#

Query the indention string.

inline void SetLineBreak(const char *_lineBreak)#

Set the line breaking string.

By default set to newline (\n ). Some operating systems prefer other characters, or can be set to the null/empty string for no indentation.

inline const char *LineBreak()#

Query the current line breaking string.

inline void SetStreamPrinting()#

Switch over to “stream printing” which is the most dense formatting without line breaks.

Common when the XML is needed for network transmission.

inline const char *CStr()#

Return the result.

inline size_t Size()#

Return the length of the result string.

inline const std::string &Str()#

Return the result.

Private Functions

inline void DoIndent()#
inline void DoLineBreak()#

Private Members

int depth#
bool simpleTextPrint#
TIXML_STRING buffer#
TIXML_STRING indent#
TIXML_STRING lineBreak#
class TiXmlText : public TiXmlNode#
#include <tinyxml.h>

XML text.

A text node can have 2 ways to output the next. “normal” output and CDATA. It will default to the mode it was parsed from the XML file and you generally want to leave it alone, but you can change the output mode with SetCDATA() and query it with CDATA().

Public Functions

inline TiXmlText(const char *initValue)#

Constructor for text element.

By default, it is treated as normal, encoded text. If you want it be output as a CDATA text element, set the parameter _cdata to ‘true’

inline virtual ~TiXmlText()#
inline TiXmlText(const std::string &initValue)#

Constructor.

inline TiXmlText(const TiXmlText &copy)#
inline void operator=(const TiXmlText &base)#
virtual void Print(FILE *cfile, int depth) const#

All TinyXml classes can print themselves to a file stream or the string class (TiXmlString in non-STL mode, std::string in STL mode.) Either or both cfile and str can be null.

This is a formatted print, and will insert tabs and newlines.

(For an unformatted stream, use the << operator.)

inline bool CDATA() const#

Queries whether this represents text using a CDATA section.

inline void SetCDATA(bool _cdata)#

Turns on or off a CDATA representation of text.

virtual const char *Parse(const char *p, TiXmlParsingData *data, TiXmlEncoding encoding)#
inline virtual const TiXmlText *ToText() const#

Cast to a more defined type. Will return null not of the requested type.

inline virtual TiXmlText *ToText()#

Cast to a more defined type. Will return null not of the requested type.

virtual bool Accept(TiXmlVisitor *content) const#

Walk the XML tree visiting this node and all of its children.

Protected Functions

virtual TiXmlNode *Clone() const#

[internal use] Creates a new Element and returns it.

void CopyTo(TiXmlText *target) const#
bool Blank() const#
virtual void StreamIn(std::istream *in, TIXML_STRING *tag)#

Private Members

bool cdata#

Friends

friend class TiXmlElement
class TiXmlUnknown : public TiXmlNode#
#include <tinyxml.h>

Any tag that tinyXml doesn’t recognize is saved as an unknown.

It is a tag of text, but should not be modified. It will be written back to the XML, unchanged, when the file is saved.

DTD tags get thrown into TiXmlUnknowns.

Public Functions

inline TiXmlUnknown()#
inline virtual ~TiXmlUnknown()#
inline TiXmlUnknown(const TiXmlUnknown &copy)#
inline void operator=(const TiXmlUnknown &copy)#
virtual TiXmlNode *Clone() const#

Creates a copy of this Unknown and returns it.

virtual void Print(FILE *cfile, int depth) const#

All TinyXml classes can print themselves to a file stream or the string class (TiXmlString in non-STL mode, std::string in STL mode.) Either or both cfile and str can be null.

This is a formatted print, and will insert tabs and newlines.

(For an unformatted stream, use the << operator.)

virtual const char *Parse(const char *p, TiXmlParsingData *data, TiXmlEncoding encoding)#
inline virtual const TiXmlUnknown *ToUnknown() const#

Cast to a more defined type. Will return null not of the requested type.

inline virtual TiXmlUnknown *ToUnknown()#

Cast to a more defined type. Will return null not of the requested type.

virtual bool Accept(TiXmlVisitor *content) const#

Walk the XML tree visiting this node and all of its children.

Protected Functions

void CopyTo(TiXmlUnknown *target) const#
virtual void StreamIn(std::istream *in, TIXML_STRING *tag)#
class TiXmlVisitor#
#include <tinyxml.h>

If you call the Accept() method, it requires being passed a TiXmlVisitor class to handle callbacks.

For nodes that contain other nodes (Document, Element) you will get called with a VisitEnter/VisitExit pair. Nodes that are always leaves are simple called with Visit().

If you return ‘true’ from a Visit method, recursive parsing will continue. If you return false, no children of this node or its sibilings will be Visited.

All flavors of Visit methods have a default implementation that returns ‘true’ (continue visiting). You need to only override methods that are interesting to you.

Generally Accept() is called on the TiXmlDocument, although all nodes support Visiting.

You should never change the document from a callback.

Subclassed by TiXmlPrinter

Public Functions

inline virtual ~TiXmlVisitor()#
inline virtual bool VisitEnter(const TiXmlDocument&)#

Visit a document.

inline virtual bool VisitExit(const TiXmlDocument&)#

Visit a document.

inline virtual bool VisitEnter(const TiXmlElement&, const TiXmlAttribute*)#

Visit an element.

inline virtual bool VisitExit(const TiXmlElement&)#

Visit an element.

inline virtual bool Visit(const TiXmlDeclaration&)#

Visit a declaration.

inline virtual bool Visit(const TiXmlText&)#

Visit a text node.

inline virtual bool Visit(const TiXmlComment&)#

Visit a comment node.

inline virtual bool Visit(const TiXmlUnknown&)#

Visit an unknown node.

file tinyxml.h
#include <ctype.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include <string>
#include <iostream>
#include <sstream>

Defines

TIXML_USE_STL#
TIXML_STRING#
TIXML_SAFE#

Enums

enum [anonymous]#

Values:

enumerator TIXML_SUCCESS#
enumerator TIXML_NO_ATTRIBUTE#
enumerator TIXML_WRONG_TYPE#
enum TiXmlEncoding#

Values:

enumerator TIXML_ENCODING_UNKNOWN#
enumerator TIXML_ENCODING_UTF8#
enumerator TIXML_ENCODING_LEGACY#

Variables

const int TIXML_MAJOR_VERSION = 2#
const int TIXML_MINOR_VERSION = 5#
const int TIXML_PATCH_VERSION = 2#
const TiXmlEncoding TIXML_DEFAULT_ENCODING = TIXML_ENCODING_UNKNOWN#
page deprecated

Member TiXmlHandle::Element  () const

use ToElement. Return the handle as a TiXmlElement. This may return null.

Member TiXmlHandle::Node  () const

use ToNode. Return the handle as a TiXmlNode. This may return null.

Member TiXmlHandle::Text  () const

use ToText() Return the handle as a TiXmlText. This may return null.

Member TiXmlHandle::Unknown  () const

use ToUnknown() Return the handle as a TiXmlUnknown. This may return null.