|
Functions | |
| XMLCSTR | XMLNode::getName () const |
| name of the node More... | |
| XMLCSTR | XMLNode::getText (int i=0) const |
| return ith text field More... | |
| int | XMLNode::nText () const |
| nbr of text field More... | |
| XMLNode | XMLNode::getParentNode () const |
| return the parent node More... | |
| XMLNode | XMLNode::getChildNode (int i=0) const |
| return ith child node More... | |
| XMLNode | XMLNode::getChildNode (XMLCSTR name, int i) const |
| return ith child node with specific name (return an empty node if failing). If i==-1, this returns the last XMLNode with the given name. More... | |
| XMLNode | XMLNode::getChildNode (XMLCSTR name, int *i=NULL) const |
| return next child node with specific name (return an empty node if failing) More... | |
| XMLNode | XMLNode::getChildNodeWithAttribute (XMLCSTR tagName, XMLCSTR attributeName, XMLCSTR attributeValue=NULL, int *i=NULL) const |
| return child node with specific name/attribute (return an empty node if failing) More... | |
| XMLNode | XMLNode::getChildNodeByPath (XMLSTR path, char createNodeIfMissing=0, XMLCHAR sep='/') |
| return the first child node with specific path. WARNING: the value of the parameter "path" is destroyed! More... | |
| XMLNode | XMLNode::getChildNodeByPath (XMLCSTR path, char createNodeIfMissing=0, XMLCHAR sep='/') |
| return the first child node with specific path More... | |
| int | XMLNode::nChildNode (XMLCSTR name) const |
| return the number of child node with specific name More... | |
| int | XMLNode::nChildNode () const |
| nbr of child node More... | |
| XMLAttribute | XMLNode::getAttribute (int i=0) const |
| return ith attribute More... | |
| XMLCSTR | XMLNode::getAttributeName (int i=0) const |
| return ith attribute name More... | |
| XMLCSTR | XMLNode::getAttributeValue (int i=0) const |
| return ith attribute value More... | |
| char | XMLNode::isAttributeSet (XMLCSTR name) const |
| test if an attribute with a specific name is given More... | |
| XMLCSTR | XMLNode::getAttribute (XMLCSTR name, int i) const |
| return ith attribute content with specific name (return a NULL if failing) More... | |
| XMLCSTR | XMLNode::getAttribute (XMLCSTR name, int *i=NULL) const |
| return next attribute content with specific name (return a NULL if failing) More... | |
| int | XMLNode::nAttribute () const |
| nbr of attribute More... | |
| XMLClear | XMLNode::getClear (int i=0) const |
| return ith clear field (comments) More... | |
| int | XMLNode::nClear () const |
| nbr of clear field More... | |
| XMLNodeContents | XMLNode::enumContents (XMLElementPosition i) const |
| enumerate all the different contents (attribute,child,text, clear) of the current XMLNode. The order is reflecting the order of the original file/string. NOTE: 0 <= i < nElement(); More... | |
| int | XMLNode::nElement () const |
| nbr of different contents for current node More... | |
| char | XMLNode::isEmpty () const |
| is this node Empty? More... | |
| char | XMLNode::isDeclaration () const |
| is this node a declaration <? .... ?> More... | |
| XMLNode | XMLNode::deepCopy () const |
| deep copy (duplicate/clone) a XMLNode More... | |
| static XMLNode | XMLNode::emptyNode () |
| return XMLNode::emptyXMLNode; More... | |
| XMLNode XMLNode::deepCopy | ( | ) | const |
deep copy (duplicate/clone) a XMLNode
Definition at line 2118 of file xmlParser.cpp.
References XMLNode::d, XMLNode::emptyXMLNode, mrpt::system::os::memcpy(), stringDup(), and XMLCSTR.
|
static |
return XMLNode::emptyXMLNode;
Definition at line 2539 of file xmlParser.cpp.
References XMLNode::emptyXMLNode.
| XMLNodeContents XMLNode::enumContents | ( | XMLElementPosition | i | ) | const |
enumerate all the different contents (attribute,child,text, clear) of the current XMLNode. The order is reflecting the order of the original file/string. NOTE: 0 <= i < nElement();
Definition at line 2501 of file xmlParser.cpp.
References XMLNode::d, eNodeAttribute, eNodeChild, eNodeClear, eNodeNULL, eNodeText, and XMLNode::nAttribute().
| XMLAttribute XMLNode::getAttribute | ( | int | i = 0 | ) | const |
return ith attribute
Definition at line 2531 of file xmlParser.cpp.
References XMLNode::d, and XMLNode::emptyXMLAttribute.
Referenced by XMLNode::deleteAttribute(), XMLNode::getAttribute(), mrpt::utils::CSimpleDatabase::loadFromXML(), and XMLNode::updateAttribute_WOSD().
return ith attribute content with specific name (return a NULL if failing)
Definition at line 2493 of file xmlParser.cpp.
References XMLNode::d, and XMLNode::getAttribute().
return next attribute content with specific name (return a NULL if failing)
Definition at line 2459 of file xmlParser.cpp.
References XMLNode::d, XMLAttribute::lpszName, XMLAttribute::lpszValue, and xstricmp().
| XMLCSTR XMLNode::getAttributeName | ( | int | i = 0 | ) | const |
| XMLCSTR XMLNode::getAttributeValue | ( | int | i = 0 | ) | const |
| XMLNode XMLNode::getChildNode | ( | int | i = 0 | ) | const |
return ith child node
Definition at line 2535 of file xmlParser.cpp.
References XMLNode::d, and XMLNode::emptyXMLNode.
Referenced by XMLNode::getChildNode(), XMLNode::getChildNodeByPath(), XMLNode::getChildNodeWithAttribute(), mrpt::obs::VelodyneCalibration::internal_loadFromXMLNode(), mrpt::utils::CSimpleDatabase::loadFromXML(), XMLNode::parseString(), XMLNode::positionOfChildNode(), and XMLNode::writeToFile().
return ith child node with specific name (return an empty node if failing). If i==-1, this returns the last XMLNode with the given name.
Definition at line 2360 of file xmlParser.cpp.
References XMLNode::d, XMLNode::emptyXMLNode, XMLNode::getChildNode(), and xstricmp().
return next child node with specific name (return an empty node if failing)
Definition at line 2342 of file xmlParser.cpp.
References XMLNode::d, XMLNode::emptyXMLNode, and xstricmp().
| XMLNode XMLNode::getChildNodeByPath | ( | XMLSTR | path, |
| char | createNodeIfMissing = 0, |
||
| XMLCHAR | sep = '/' |
||
| ) |
return the first child node with specific path. WARNING: the value of the parameter "path" is destroyed!
Definition at line 2383 of file xmlParser.cpp.
References XMLNode::addChild(), XMLNode::emptyXMLNode, XMLNode::getChildNode(), XMLNode::isEmpty(), XMLCHAR, and xstrstr().
Referenced by XMLNode::getChildNodeByPath().
| XMLNode XMLNode::getChildNodeByPath | ( | XMLCSTR | path, |
| char | createNodeIfMissing = 0, |
||
| XMLCHAR | sep = '/' |
||
| ) |
return the first child node with specific path
Definition at line 2375 of file xmlParser.cpp.
References XMLNode::getChildNodeByPath(), stringDup(), and XMLSTR.
| XMLNode XMLNode::getChildNodeWithAttribute | ( | XMLCSTR | tagName, |
| XMLCSTR | attributeName, | ||
| XMLCSTR | attributeValue = NULL, |
||
| int * | i = NULL |
||
| ) | const |
return child node with specific name/attribute (return an empty node if failing)
Definition at line 2430 of file xmlParser.cpp.
References XMLNode::emptyXMLNode, XMLNode::getChildNode(), XMLCSTR, and xstricmp().
| XMLClear XMLNode::getClear | ( | int | i = 0 | ) | const |
return ith clear field (comments)
Definition at line 2530 of file xmlParser.cpp.
References XMLNode::d, and XMLNode::emptyXMLClear.
| XMLCSTR XMLNode::getName | ( | ) | const |
name of the node
Definition at line 2524 of file xmlParser.cpp.
References XMLNode::d.
Referenced by XMLNode::parseString().
| XMLNode XMLNode::getParentNode | ( | ) | const |
return the parent node
Definition at line 2536 of file xmlParser.cpp.
References XMLNode::d, XMLNode::emptyXMLNode, and XMLNode::XMLNode().
| XMLCSTR XMLNode::getText | ( | int | i = 0 | ) | const |
return ith text field
Definition at line 2534 of file xmlParser.cpp.
References XMLNode::d.
Referenced by mrpt::obs::VelodyneCalibration::internal_loadFromXMLNode().
| char XMLNode::isAttributeSet | ( | XMLCSTR | name | ) | const |
test if an attribute with a specific name is given
Definition at line 2477 of file xmlParser.cpp.
References XMLNode::d, FALSE, XMLAttribute::lpszName, TRUE, and xstricmp().
| char XMLNode::isDeclaration | ( | ) | const |
is this node a declaration <? .... ?>
Definition at line 2537 of file xmlParser.cpp.
References XMLNode::d.
Referenced by XMLNode::addChild(), XMLNode::addChild_priv(), XMLNode::addChild_WOSD(), XMLNode::createXMLTopNode(), XMLNode::createXMLTopNode_WOSD(), and XMLNode::writeToFile().
| char XMLNode::isEmpty | ( | ) | const |
is this node Empty?
Definition at line 2538 of file xmlParser.cpp.
References XMLNode::d.
Referenced by XMLNode::getChildNodeByPath(), mrpt::obs::VelodyneCalibration::internal_loadFromXMLNode(), mrpt::utils::CSimpleDatabase::loadFromXML(), XMLNode::parseString(), and XMLNode::ParseXMLElement().
| int XMLNode::nAttribute | ( | ) | const |
nbr of attribute
Definition at line 2527 of file xmlParser.cpp.
References XMLNode::d.
Referenced by XMLNode::enumContents().
| int XMLNode::nChildNode | ( | XMLCSTR | name | ) | const |
return the number of child node with specific name
Definition at line 2329 of file xmlParser.cpp.
References XMLNode::d, and xstricmp().
Referenced by mrpt::utils::CSimpleDatabase::loadFromXML(), and XMLNode::parseString().
| int XMLNode::nChildNode | ( | ) | const |
| int XMLNode::nClear | ( | ) | const |
| int XMLNode::nElement | ( | ) | const |
nbr of different contents for current node
Definition at line 2529 of file xmlParser.cpp.
References XMLNode::d.
Referenced by XMLNode::parseString().
| int XMLNode::nText | ( | ) | const |
| Page generated by Doxygen 1.8.14 for MRPT 1.5.9 Git: 690a4699f Wed Apr 15 19:29:53 2020 +0200 at miƩ abr 15 19:30:12 CEST 2020 |