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
 
TiXmlHandleoperator= (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 1637 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 1641 of file tinyxml.h.

References node.

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

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

Copy constructor.

Definition at line 1643 of file tinyxml.h.

References node.

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

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 1719 of file tinyxml.cc.

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

1720 {
1721  if ( node )
1722  {
1723  int i;
1725  for ( i=0;
1726  child && i<count;
1727  child = child->NextSibling( value ), ++i )
1728  {
1729  // nothing
1730  }
1731  if ( child )
1732  return TiXmlHandle( child );
1733  }
1734  return TiXmlHandle( 0 );
1735 }
TiXmlHandle(TiXmlNode *_node)
Create a handle from any node (at any depth of the tree.) This can be a null pointer.
Definition: tinyxml.h:1641
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:526
const TiXmlNode * NextSibling(const std::string &_value) const
STL std::string form.
Definition: tinyxml.h:630
TiXmlNode * node
Definition: tinyxml.h:1713
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 1700 of file tinyxml.cc.

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

1701 {
1702  if ( node )
1703  {
1704  int i;
1706  for ( i=0;
1707  child && i<count;
1708  child = child->NextSibling(), ++i )
1709  {
1710  // nothing
1711  }
1712  if ( child )
1713  return TiXmlHandle( child );
1714  }
1715  return TiXmlHandle( 0 );
1716 }
TiXmlHandle(TiXmlNode *_node)
Create a handle from any node (at any depth of the tree.) This can be a null pointer.
Definition: tinyxml.h:1641
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:526
const TiXmlNode * NextSibling(const std::string &_value) const
STL std::string form.
Definition: tinyxml.h:630
TiXmlNode * node
Definition: tinyxml.h:1713
TiXmlHandle TiXmlHandle::Child ( const std::string &  _value,
int  index 
) const
inline

Definition at line 1678 of file tinyxml.h.

References Child(), and cmsHarvester::index.

Referenced by Child().

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

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

1758 {
1759  if ( node )
1760  {
1761  int i;
1763  for ( i=0;
1764  child && i<count;
1765  child = child->NextSiblingElement( value ), ++i )
1766  {
1767  // nothing
1768  }
1769  if ( child )
1770  return TiXmlHandle( child );
1771  }
1772  return TiXmlHandle( 0 );
1773 }
TiXmlHandle(TiXmlNode *_node)
Create a handle from any node (at any depth of the tree.) This can be a null pointer.
Definition: tinyxml.h:1641
int i
Definition: DBlmapReader.cc:9
const TiXmlElement * FirstChildElement() const
Convenience function to get through elements.
Definition: tinyxml.cc:439
TiXmlNode * node
Definition: tinyxml.h:1713
const TiXmlElement * NextSiblingElement() const
Definition: tinyxml.cc:469
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 1738 of file tinyxml.cc.

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

1739 {
1740  if ( node )
1741  {
1742  int i;
1744  for ( i=0;
1745  child && i<count;
1746  child = child->NextSiblingElement(), ++i )
1747  {
1748  // nothing
1749  }
1750  if ( child )
1751  return TiXmlHandle( child );
1752  }
1753  return TiXmlHandle( 0 );
1754 }
TiXmlHandle(TiXmlNode *_node)
Create a handle from any node (at any depth of the tree.) This can be a null pointer.
Definition: tinyxml.h:1641
int i
Definition: DBlmapReader.cc:9
const TiXmlElement * FirstChildElement() const
Convenience function to get through elements.
Definition: tinyxml.cc:439
TiXmlNode * node
Definition: tinyxml.h:1713
const TiXmlElement * NextSiblingElement() const
Definition: tinyxml.cc:469
TiXmlHandle TiXmlHandle::ChildElement ( const std::string &  _value,
int  index 
) const
inline

Definition at line 1679 of file tinyxml.h.

References ChildElement(), and cmsHarvester::index.

Referenced by ChildElement().

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

Definition at line 1702 of file tinyxml.h.

References ToElement().

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

Return a handle to the first child node.

Definition at line 1652 of file tinyxml.cc.

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

1653 {
1654  if ( node )
1655  {
1657  if ( child )
1658  return TiXmlHandle( child );
1659  }
1660  return TiXmlHandle( 0 );
1661 }
TiXmlHandle(TiXmlNode *_node)
Create a handle from any node (at any depth of the tree.) This can be a null pointer.
Definition: tinyxml.h:1641
const TiXmlNode * FirstChild() const
The first child of this node. Will be null if there are no children.
Definition: tinyxml.h:526
TiXmlNode * node
Definition: tinyxml.h:1713
TiXmlHandle TiXmlHandle::FirstChild ( const char *  value) const

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

Definition at line 1664 of file tinyxml.cc.

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

1665 {
1666  if ( node )
1667  {
1669  if ( child )
1670  return TiXmlHandle( child );
1671  }
1672  return TiXmlHandle( 0 );
1673 }
TiXmlHandle(TiXmlNode *_node)
Create a handle from any node (at any depth of the tree.) This can be a null pointer.
Definition: tinyxml.h:1641
const TiXmlNode * FirstChild() const
The first child of this node. Will be null if there are no children.
Definition: tinyxml.h:526
TiXmlNode * node
Definition: tinyxml.h:1713
TiXmlHandle TiXmlHandle::FirstChild ( const std::string &  _value) const
inline

Definition at line 1675 of file tinyxml.h.

References FirstChild().

Referenced by FirstChild().

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

Return a handle to the first child element.

Definition at line 1676 of file tinyxml.cc.

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

1677 {
1678  if ( node )
1679  {
1681  if ( child )
1682  return TiXmlHandle( child );
1683  }
1684  return TiXmlHandle( 0 );
1685 }
TiXmlHandle(TiXmlNode *_node)
Create a handle from any node (at any depth of the tree.) This can be a null pointer.
Definition: tinyxml.h:1641
const TiXmlElement * FirstChildElement() const
Convenience function to get through elements.
Definition: tinyxml.cc:439
TiXmlNode * node
Definition: tinyxml.h:1713
TiXmlHandle TiXmlHandle::FirstChildElement ( const char *  value) const

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

Definition at line 1688 of file tinyxml.cc.

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

1689 {
1690  if ( node )
1691  {
1693  if ( child )
1694  return TiXmlHandle( child );
1695  }
1696  return TiXmlHandle( 0 );
1697 }
TiXmlHandle(TiXmlNode *_node)
Create a handle from any node (at any depth of the tree.) This can be a null pointer.
Definition: tinyxml.h:1641
const TiXmlElement * FirstChildElement() const
Convenience function to get through elements.
Definition: tinyxml.cc:439
TiXmlNode * node
Definition: tinyxml.h:1713
TiXmlHandle TiXmlHandle::FirstChildElement ( const std::string &  _value) const
inline

Definition at line 1676 of file tinyxml.h.

References FirstChildElement().

Referenced by FirstChildElement().

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

Definition at line 1698 of file tinyxml.h.

References ToNode().

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

Definition at line 1644 of file tinyxml.h.

References node.

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

Definition at line 1706 of file tinyxml.h.

References ToText().

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

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

Definition at line 1687 of file tinyxml.h.

References node, and TiXmlNode::ToElement().

Referenced by Element().

1687 { 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:702
TiXmlNode * node
Definition: tinyxml.h:1713
TiXmlNode* TiXmlHandle::ToNode ( ) const
inline

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

Definition at line 1684 of file tinyxml.h.

References node.

Referenced by Node().

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

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

Definition at line 1690 of file tinyxml.h.

References node, and TiXmlNode::ToText().

Referenced by Text().

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

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

Definition at line 1693 of file tinyxml.h.

References node, and TiXmlNode::ToUnknown().

Referenced by Unknown().

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

Definition at line 1710 of file tinyxml.h.

References ToUnknown().

1710 { return ToUnknown(); }
TiXmlUnknown * ToUnknown() const
Definition: tinyxml.h:1693

Member Data Documentation

TiXmlNode* TiXmlHandle::node
private