CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Attributes
TiXmlHandle Class Reference

#include <tinyxml.h>

Public Member Functions

TiXmlHandle Child (const char *value, int index) const
 
TiXmlHandle Child (int index) const
 
TiXmlHandle Child (const std::string &_value, int index) const
 
TiXmlHandle ChildElement (const char *value, int index) const
 
TiXmlHandle ChildElement (int index) const
 
TiXmlHandle ChildElement (const std::string &_value, int index) const
 
TiXmlElementElement () const
 
TiXmlHandle FirstChild () const
 Return a handle to the first child node. More...
 
TiXmlHandle FirstChild (const char *value) const
 Return a handle to the first child node with the given name. More...
 
TiXmlHandle FirstChild (const std::string &_value) const
 
TiXmlHandle FirstChildElement () const
 Return a handle to the first child element. More...
 
TiXmlHandle FirstChildElement (const char *value) const
 Return a handle to the first child element with the given name. More...
 
TiXmlHandle FirstChildElement (const std::string &_value) const
 
TiXmlNodeNode () const
 
TiXmlHandle operator= (const TiXmlHandle &ref)
 
TiXmlTextText () const
 
 TiXmlHandle (TiXmlNode *_node)
 Create a handle from any node (at any depth of the tree.) This can be a null pointer. More...
 
 TiXmlHandle (const TiXmlHandle &ref)
 Copy constructor. More...
 
TiXmlElementToElement () const
 
TiXmlNodeToNode () const
 
TiXmlTextToText () const
 
TiXmlUnknownToUnknown () const
 
TiXmlUnknownUnknown () const
 

Private Attributes

TiXmlNodenode
 

Detailed Description

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 2nd "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
}

Definition at line 1635 of file tinyxml.h.

Constructor & Destructor Documentation

TiXmlHandle::TiXmlHandle ( TiXmlNode _node)
inline

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

Definition at line 1639 of file tinyxml.h.

References node.

Referenced by Child(), ChildElement(), FirstChild(), and FirstChildElement().

1639 { this->node = _node; }
TiXmlNode * node
Definition: tinyxml.h:1711
TiXmlHandle::TiXmlHandle ( const TiXmlHandle ref)
inline

Copy constructor.

Definition at line 1641 of file tinyxml.h.

References node.

1641 { this->node = ref.node; }
TiXmlNode * node
Definition: tinyxml.h:1711

Member Function Documentation

TiXmlHandle 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.

Definition at line 1703 of file tinyxml.cc.

References prof2calltree::count, TiXmlNode::FirstChild(), i, TiXmlNode::NextSibling(), node, and TiXmlHandle().

1704 {
1705  if ( node )
1706  {
1707  int i;
1709  for ( i=0;
1710  child && i<count;
1711  child = child->NextSibling( value ), ++i )
1712  {
1713  // nothing
1714  }
1715  if ( child )
1716  return TiXmlHandle( child );
1717  }
1718  return TiXmlHandle( 0 );
1719 }
TiXmlHandle(TiXmlNode *_node)
Create a handle from any node (at any depth of the tree.) This can be a null pointer.
Definition: tinyxml.h:1639
int i
Definition: DBlmapReader.cc:9
const TiXmlNode * FirstChild() const
The first child of this node. Will be null if there are no children.
Definition: tinyxml.h:524
const TiXmlNode * NextSibling(const std::string &_value) const
STL std::string form.
Definition: tinyxml.h:628
TiXmlNode * node
Definition: tinyxml.h:1711
TiXmlHandle TiXmlHandle::Child ( int  index) const

Return a handle to the "index" child. The first child is 0, the second 1, etc.

Definition at line 1684 of file tinyxml.cc.

References prof2calltree::count, TiXmlNode::FirstChild(), i, TiXmlNode::NextSibling(), node, and TiXmlHandle().

1685 {
1686  if ( node )
1687  {
1688  int i;
1690  for ( i=0;
1691  child && i<count;
1692  child = child->NextSibling(), ++i )
1693  {
1694  // nothing
1695  }
1696  if ( child )
1697  return TiXmlHandle( child );
1698  }
1699  return TiXmlHandle( 0 );
1700 }
TiXmlHandle(TiXmlNode *_node)
Create a handle from any node (at any depth of the tree.) This can be a null pointer.
Definition: tinyxml.h:1639
int i
Definition: DBlmapReader.cc:9
const TiXmlNode * FirstChild() const
The first child of this node. Will be null if there are no children.
Definition: tinyxml.h:524
const TiXmlNode * NextSibling(const std::string &_value) const
STL std::string form.
Definition: tinyxml.h:628
TiXmlNode * node
Definition: tinyxml.h:1711
TiXmlHandle TiXmlHandle::Child ( const std::string &  _value,
int  index 
) const
inline

Definition at line 1676 of file tinyxml.h.

References Child(), and getHLTprescales::index.

Referenced by Child().

1676 { return Child( _value.c_str(), index ); }
TiXmlHandle Child(const char *value, int index) const
Definition: tinyxml.cc:1703
TiXmlHandle 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.

Definition at line 1741 of file tinyxml.cc.

References prof2calltree::count, TiXmlNode::FirstChildElement(), i, TiXmlNode::NextSiblingElement(), node, and TiXmlHandle().

1742 {
1743  if ( node )
1744  {
1745  int i;
1747  for ( i=0;
1748  child && i<count;
1749  child = child->NextSiblingElement( value ), ++i )
1750  {
1751  // nothing
1752  }
1753  if ( child )
1754  return TiXmlHandle( child );
1755  }
1756  return TiXmlHandle( 0 );
1757 }
TiXmlHandle(TiXmlNode *_node)
Create a handle from any node (at any depth of the tree.) This can be a null pointer.
Definition: tinyxml.h:1639
int i
Definition: DBlmapReader.cc:9
const TiXmlElement * FirstChildElement() const
Convenience function to get through elements.
Definition: tinyxml.cc:433
TiXmlNode * node
Definition: tinyxml.h:1711
const TiXmlElement * NextSiblingElement() const
Definition: tinyxml.cc:463
TiXmlHandle 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.

Definition at line 1722 of file tinyxml.cc.

References prof2calltree::count, TiXmlNode::FirstChildElement(), i, TiXmlNode::NextSiblingElement(), node, and TiXmlHandle().

1723 {
1724  if ( node )
1725  {
1726  int i;
1728  for ( i=0;
1729  child && i<count;
1730  child = child->NextSiblingElement(), ++i )
1731  {
1732  // nothing
1733  }
1734  if ( child )
1735  return TiXmlHandle( child );
1736  }
1737  return TiXmlHandle( 0 );
1738 }
TiXmlHandle(TiXmlNode *_node)
Create a handle from any node (at any depth of the tree.) This can be a null pointer.
Definition: tinyxml.h:1639
int i
Definition: DBlmapReader.cc:9
const TiXmlElement * FirstChildElement() const
Convenience function to get through elements.
Definition: tinyxml.cc:433
TiXmlNode * node
Definition: tinyxml.h:1711
const TiXmlElement * NextSiblingElement() const
Definition: tinyxml.cc:463
TiXmlHandle TiXmlHandle::ChildElement ( const std::string &  _value,
int  index 
) const
inline

Definition at line 1677 of file tinyxml.h.

References ChildElement(), and getHLTprescales::index.

Referenced by ChildElement().

1677 { return ChildElement( _value.c_str(), index ); }
TiXmlHandle ChildElement(const char *value, int index) const
Definition: tinyxml.cc:1741
TiXmlElement* TiXmlHandle::Element ( ) const
inline

Definition at line 1700 of file tinyxml.h.

References ToElement().

1700 { return ToElement(); }
TiXmlElement * ToElement() const
Definition: tinyxml.h:1685
TiXmlHandle TiXmlHandle::FirstChild ( ) const

Return a handle to the first child node.

Definition at line 1636 of file tinyxml.cc.

References TiXmlNode::FirstChild(), node, and TiXmlHandle().

1637 {
1638  if ( node )
1639  {
1641  if ( child )
1642  return TiXmlHandle( child );
1643  }
1644  return TiXmlHandle( 0 );
1645 }
TiXmlHandle(TiXmlNode *_node)
Create a handle from any node (at any depth of the tree.) This can be a null pointer.
Definition: tinyxml.h:1639
const TiXmlNode * FirstChild() const
The first child of this node. Will be null if there are no children.
Definition: tinyxml.h:524
TiXmlNode * node
Definition: tinyxml.h:1711
TiXmlHandle TiXmlHandle::FirstChild ( const char *  value) const

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

Definition at line 1648 of file tinyxml.cc.

References TiXmlNode::FirstChild(), node, and TiXmlHandle().

1649 {
1650  if ( node )
1651  {
1653  if ( child )
1654  return TiXmlHandle( child );
1655  }
1656  return TiXmlHandle( 0 );
1657 }
TiXmlHandle(TiXmlNode *_node)
Create a handle from any node (at any depth of the tree.) This can be a null pointer.
Definition: tinyxml.h:1639
const TiXmlNode * FirstChild() const
The first child of this node. Will be null if there are no children.
Definition: tinyxml.h:524
TiXmlNode * node
Definition: tinyxml.h:1711
TiXmlHandle TiXmlHandle::FirstChild ( const std::string &  _value) const
inline

Definition at line 1673 of file tinyxml.h.

References FirstChild().

Referenced by FirstChild().

1673 { return FirstChild( _value.c_str() ); }
TiXmlHandle FirstChild() const
Return a handle to the first child node.
Definition: tinyxml.cc:1636
TiXmlHandle TiXmlHandle::FirstChildElement ( ) const

Return a handle to the first child element.

Definition at line 1660 of file tinyxml.cc.

References TiXmlNode::FirstChildElement(), node, and TiXmlHandle().

1661 {
1662  if ( node )
1663  {
1665  if ( child )
1666  return TiXmlHandle( child );
1667  }
1668  return TiXmlHandle( 0 );
1669 }
TiXmlHandle(TiXmlNode *_node)
Create a handle from any node (at any depth of the tree.) This can be a null pointer.
Definition: tinyxml.h:1639
const TiXmlElement * FirstChildElement() const
Convenience function to get through elements.
Definition: tinyxml.cc:433
TiXmlNode * node
Definition: tinyxml.h:1711
TiXmlHandle TiXmlHandle::FirstChildElement ( const char *  value) const

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

Definition at line 1672 of file tinyxml.cc.

References TiXmlNode::FirstChildElement(), node, and TiXmlHandle().

1673 {
1674  if ( node )
1675  {
1677  if ( child )
1678  return TiXmlHandle( child );
1679  }
1680  return TiXmlHandle( 0 );
1681 }
TiXmlHandle(TiXmlNode *_node)
Create a handle from any node (at any depth of the tree.) This can be a null pointer.
Definition: tinyxml.h:1639
const TiXmlElement * FirstChildElement() const
Convenience function to get through elements.
Definition: tinyxml.cc:433
TiXmlNode * node
Definition: tinyxml.h:1711
TiXmlHandle TiXmlHandle::FirstChildElement ( const std::string &  _value) const
inline

Definition at line 1674 of file tinyxml.h.

References FirstChildElement().

Referenced by FirstChildElement().

1674 { return FirstChildElement( _value.c_str() ); }
TiXmlHandle FirstChildElement() const
Return a handle to the first child element.
Definition: tinyxml.cc:1660
TiXmlNode* TiXmlHandle::Node ( ) const
inline

Definition at line 1696 of file tinyxml.h.

References ToNode().

1696 { return ToNode(); }
TiXmlNode * ToNode() const
Definition: tinyxml.h:1682
TiXmlHandle TiXmlHandle::operator= ( const TiXmlHandle ref)
inline

Definition at line 1642 of file tinyxml.h.

References node.

1642 { this->node = ref.node; return *this; }
TiXmlNode * node
Definition: tinyxml.h:1711
TiXmlText* TiXmlHandle::Text ( ) const
inline

Definition at line 1704 of file tinyxml.h.

References ToText().

1704 { return ToText(); }
TiXmlText * ToText() const
Definition: tinyxml.h:1688
TiXmlElement* TiXmlHandle::ToElement ( ) const
inline

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

Definition at line 1685 of file tinyxml.h.

References node, and TiXmlNode::ToElement().

Referenced by Element().

1685 { return ( ( node && node->ToElement() ) ? node->ToElement() : 0 ); }
virtual const TiXmlElement * ToElement() const
Cast to a more defined type. Will return null if not of the requested type.
Definition: tinyxml.h:700
TiXmlNode * node
Definition: tinyxml.h:1711
TiXmlNode* TiXmlHandle::ToNode ( ) const
inline

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

Definition at line 1682 of file tinyxml.h.

References node.

Referenced by Node().

1682 { return node; }
TiXmlNode * node
Definition: tinyxml.h:1711
TiXmlText* TiXmlHandle::ToText ( ) const
inline

Return the handle as a TiXmlText. This may return null.

Definition at line 1688 of file tinyxml.h.

References node, and TiXmlNode::ToText().

Referenced by Text().

1688 { return ( ( node && node->ToText() ) ? node->ToText() : 0 ); }
TiXmlNode * node
Definition: tinyxml.h:1711
virtual const TiXmlText * ToText() const
Cast to a more defined type. Will return null if not of the requested type.
Definition: tinyxml.h:703
TiXmlUnknown* TiXmlHandle::ToUnknown ( ) const
inline

Return the handle as a TiXmlUnknown. This may return null.

Definition at line 1691 of file tinyxml.h.

References node, and TiXmlNode::ToUnknown().

Referenced by Unknown().

1691 { return ( ( node && node->ToUnknown() ) ? node->ToUnknown() : 0 ); }
TiXmlNode * node
Definition: tinyxml.h:1711
virtual const TiXmlUnknown * ToUnknown() const
Cast to a more defined type. Will return null if not of the requested type.
Definition: tinyxml.h:702
TiXmlUnknown* TiXmlHandle::Unknown ( ) const
inline

Definition at line 1708 of file tinyxml.h.

References ToUnknown().

1708 { return ToUnknown(); }
TiXmlUnknown * ToUnknown() const
Definition: tinyxml.h:1691

Member Data Documentation

TiXmlNode* TiXmlHandle::node
private