Go to the documentation of this file.
27 #ifndef TINYXML_INCLUDED
28 #define TINYXML_INCLUDED
31 #pragma warning( push )
32 #pragma warning( disable : 4530 )
33 #pragma warning( disable : 4786 )
43 #if defined( _DEBUG ) && !defined( DEBUG )
51 #define TIXML_STRING std::string
56 #define TIXML_STRING TiXmlString
66 #if defined(_MSC_VER) && (_MSC_VER >= 1400)
68 #define TIXML_SNPRINTF _snprintf_s
69 #define TIXML_SSCANF sscanf_s
70 #elif defined(_MSC_VER) && (_MSC_VER >= 1200)
73 #define TIXML_SNPRINTF _snprintf
74 #define TIXML_SSCANF sscanf
75 #elif defined(__GNUC__) && (__GNUC__ >= 3)
78 #define TIXML_SNPRINTF snprintf
79 #define TIXML_SSCANF sscanf
81 #define TIXML_SNPRINTF snprintf
82 #define TIXML_SSCANF sscanf
245 virtual void Print(FILE *cfile,
int depth)
const = 0;
284 void SetUserData(
void *user)
288 const void *GetUserData()
const
295 virtual const char *
Parse(
const char *p,
332 return (isspace((
unsigned char)
c) ||
c ==
'\n' ||
c ==
'\r');
345 static bool StreamWhiteSpace( std::istream * in,
TIXML_STRING * tag );
346 static bool StreamTo( std::istream * in,
int character,
TIXML_STRING * tag );
358 static const char *
ReadText(
const char *in,
360 bool ignoreWhiteSpace,
396 for (
int i = 0; p[i] && i < *
length; ++i)
400 return p + (*length);
435 {
return tolower(v); }
459 MAX_ENTITY_LENGTH = 6
539 {
return value.c_str(); }
546 const std::string& ValueStr()
const {
return value; }
565 void SetValue(
const std::string& _value ) {
value = _value; }
585 const char *
value)
const;
591 return const_cast< TiXmlNode *
> ((
const_cast< const TiXmlNode *
>(
this))->FirstChild(_value));
600 const char *
value)
const;
603 return const_cast< TiXmlNode *
> ((
const_cast< const TiXmlNode *
>(
this))->LastChild(_value));
633 return const_cast< TiXmlNode *
>((
const_cast< const TiXmlNode *
>(
this))->IterateChildren(previous));
641 return const_cast< TiXmlNode *
>((
const_cast< const TiXmlNode *
>(
this))->IterateChildren(_value, previous));
696 return const_cast< TiXmlNode *
>((
const_cast< const TiXmlNode *
>(
this))->PreviousSibling(_prev));
718 return const_cast< TiXmlNode *
>((
const_cast< const TiXmlNode *
>(
this))->NextSibling(_next));
740 return const_cast< TiXmlElement *
>((
const_cast< const TiXmlNode *
>(
this))->NextSiblingElement(_next));
761 return const_cast< TiXmlElement *
>((
const_cast< const TiXmlNode *
>(
this))->FirstChildElement(_value));
854 virtual void StreamIn( std::istream* in,
TIXML_STRING* tag ) = 0;
897 TiXmlAttribute(
const std::string& _name,
const std::string& _value )
916 const char *Name()
const
917 {
return name.c_str(); }
918 const char *Value()
const
919 {
return value.c_str(); }
921 const std::string& ValueStr()
const {
return value; }
924 int IntValue()
const;
925 double DoubleValue()
const;
940 int QueryIntValue(
int *_value)
const;
943 int QueryDoubleValue(
double *_value)
const;
945 void SetName(
const char *_name)
947 void SetValue(
const char *_value)
950 void SetIntValue(
int _value);
951 void SetDoubleValue(
double _value);
954 void SetName(
const std::string& _name ) {
name = _name; }
957 void SetValue(
const std::string& _value ) { value = _value; }
991 virtual void Print(FILE *cfile,
int depth)
const
993 Print(cfile, depth, 0);
1039 {
return (sentinel.next == &sentinel) ? 0 : sentinel.
next; }
1042 {
return (sentinel.next == &sentinel) ? 0 : sentinel.
next; }
1045 {
return (sentinel.prev == &sentinel) ? 0 : sentinel.
prev; }
1048 {
return (sentinel.prev == &sentinel) ? 0 : sentinel.
prev; }
1054 # ifdef TIXML_USE_STL
1080 #ifdef TIXML_USE_STL
1094 const char *Attribute(
const char *
name)
const;
1102 const char *Attribute(
const char *
name,
int *i)
const;
1110 const char *Attribute(
const char *
name,
double *
d)
const;
1119 int QueryIntAttribute(
const char *
name,
int *_value)
const;
1122 int QueryUnsignedAttribute(
const char *
name,
unsigned *_value)
const;
1128 int QueryBoolAttribute(
const char *
name,
bool *_value)
const;
1131 int QueryDoubleAttribute(
const char *
name,
double *_value)
const;
1137 int result = QueryDoubleAttribute(
name, &
d);
1140 *_value = (float)
d;
1145 #ifdef TIXML_USE_STL
1146 int QueryStringAttribute(
const char*
name, std::string* _value )
const {
1148 const char* cstr = Attribute(
name );
1150 *_value = std::string( cstr );
1164 template<
typename T >
int QueryValueAttribute(
const std::string&
name, T* outValue )
const
1170 std::stringstream sstream(
node->ValueStr() );
1171 sstream >> *outValue;
1172 if ( !sstream.fail() )
1177 int QueryValueAttribute(
const std::string&
name, std::string* outValue )
const
1182 *outValue =
node->ValueStr();
1190 void SetAttribute(
const char *
name,
const char *_value);
1192 #ifdef TIXML_USE_STL
1193 const std::string* Attribute(
const std::string&
name )
const;
1194 const std::string* Attribute(
const std::string&
name,
int* i )
const;
1195 const std::string* Attribute(
const std::string&
name,
double* d )
const;
1196 int QueryIntAttribute(
const std::string&
name,
int* _value )
const;
1197 int QueryDoubleAttribute(
const std::string&
name,
double* _value )
const;
1200 void SetAttribute(
const std::string&
name,
const std::string& _value );
1202 void SetAttribute(
const std::string&
name,
int _value );
1204 void SetDoubleAttribute(
const std::string&
name,
double value );
1210 void SetAttribute(
const char *
name,
int value);
1215 void SetDoubleAttribute(
const char *
name,
double value);
1219 void RemoveAttribute(
const char *
name);
1221 #ifdef TIXML_USE_STL
1222 void RemoveAttribute(
const std::string&
name ) { RemoveAttribute (
name.c_str ()); }
1226 {
return attributeSet.First(); }
1228 {
return attributeSet.First(); }
1231 {
return attributeSet.Last(); }
1233 {
return attributeSet.Last(); }
1267 const char *GetText()
const;
1273 virtual void Print(FILE *cfile,
int depth)
const;
1296 #ifdef TIXML_USE_STL
1297 virtual void StreamIn( std::istream * in,
TIXML_STRING * tag );
1337 virtual void Print(FILE *cfile,
int depth)
const;
1357 #ifdef TIXML_USE_STL
1358 virtual void StreamIn( std::istream * in,
TIXML_STRING * tag );
1390 #ifdef TIXML_USE_STL
1409 virtual void Print(FILE *cfile,
int depth)
const;
1438 #ifdef TIXML_USE_STL
1439 virtual void StreamIn( std::istream * in,
TIXML_STRING * tag );
1467 #ifdef TIXML_USE_STL
1470 const std::string& _encoding,
1471 const std::string& _standalone );
1476 const char *_encoding,
1477 const char *_standalone);
1496 {
return standalone.c_str(); }
1504 virtual void Print(FILE *cfile,
int depth)
const
1506 Print(cfile, depth, 0);
1523 #ifdef TIXML_USE_STL
1524 virtual void StreamIn( std::istream * in,
TIXML_STRING * tag );
1564 virtual void Print(FILE *cfile,
int depth)
const;
1580 #ifdef TIXML_USE_STL
1581 virtual void StreamIn( std::istream * in,
TIXML_STRING * tag );
1602 #ifdef TIXML_USE_STL
1621 bool SaveFile()
const;
1627 bool SaveFile(
const char *
filename)
const;
1637 bool SaveFile(FILE *)
const;
1639 #ifdef TIXML_USE_STL
1642 return LoadFile(
filename.c_str(), encoding );
1644 bool SaveFile(
const std::string&
filename )
const
1646 return SaveFile(
filename.c_str() );
1676 {
return errorDesc.c_str(); }
1692 {
return errorLocation.row + 1; }
1694 int ErrorCol()
const
1695 {
return errorLocation.col + 1; }
1722 { tabsize = _tabsize; }
1735 errorLocation.row = errorLocation.col = 0;
1741 {
Print(stdout, 0); }
1750 virtual void Print(FILE *cfile,
int depth = 0)
const;
1768 #ifdef TIXML_USE_STL
1769 virtual void StreamIn( std::istream * in,
TIXML_STRING * tag );
1869 { this->node = _node; }
1873 { this->node = ref.
node; }
1878 { this->node = ref.
node; }
1892 TiXmlHandle FirstChildElement(
const char *value)
const;
1897 TiXmlHandle Child(
const char *value,
int index)
const;
1908 TiXmlHandle ChildElement(
const char *value,
int index)
const;
1916 #ifdef TIXML_USE_STL
1917 TiXmlHandle FirstChild(
const std::string& _value )
const {
return FirstChild( _value.c_str() ); }
1918 TiXmlHandle FirstChildElement(
const std::string& _value )
const {
return FirstChildElement( _value.c_str() ); }
1920 TiXmlHandle Child(
const std::string& _value,
int index )
const {
return Child( _value.c_str(), index ); }
1921 TiXmlHandle ChildElement(
const std::string& _value,
int index )
const {
return ChildElement( _value.c_str(), index ); }
1932 {
return ((
node &&
node->ToElement()) ?
node->ToElement() : 0); }
1937 {
return ((
node &&
node->ToText()) ?
node->ToText() : 0); }
1942 {
return ((
node &&
node->ToUnknown()) ?
node->ToUnknown() : 0); }
1948 {
return ToNode(); }
1954 {
return ToElement(); }
1960 {
return ToText(); }
1966 {
return ToUnknown(); }
1996 buffer(),
indent(
" "), lineBreak(
"\n")
2019 {
indent = _indent ? _indent :
""; }
2023 {
return indent.c_str(); }
2030 { lineBreak = _lineBreak ? _lineBreak :
""; }
2034 {
return lineBreak.c_str(); }
2047 {
return buffer.c_str(); }
2051 {
return buffer.size(); }
2053 #ifdef TIXML_USE_STL
2054 const std::string& Str() {
return buffer; }
2061 for (
int i = 0; i < depth; ++i)
2067 buffer += lineBreak;
2079 #pragma warning( pop )
TiXmlAttributeSet attributeSet
static void ConvertUTF32ToUTF8(unsigned long input, char *output, int *length)
const TiXmlNode * LastChild() const
virtual const char * Parse(const char *p, TiXmlParsingData *data, TiXmlEncoding encoding)=0
virtual bool VisitExit(const TiXmlElement &)
Visit an element.
void SetIndent(const char *_indent)
const TIXML_STRING & ValueTStr() const
TiXmlNode * IterateChildren(const char *_value, const TiXmlNode *previous)
virtual ~TiXmlDeclaration()
static bool IsWhiteSpace(char c)
@ TIXML_ERROR_PARSING_EMPTY
virtual bool Accept(TiXmlVisitor *visitor) const
void CopyTo(TiXmlText *target) const
TiXmlHandle(const TiXmlHandle &ref)
Copy constructor.
TiXmlAttribute * LastAttribute()
TiXmlNode * NextSibling(const char *_next)
void SetCDATA(bool _cdata)
Turns on or off a CDATA representation of text.
virtual bool Visit(const TiXmlDeclaration &)
Visit a declaration.
TiXmlNode * ReplaceChild(TiXmlNode *replaceThis, const TiXmlNode &withThis)
TiXmlText(const char *initValue)
void CopyTo(TiXmlUnknown *target) const
size_t Size()
Return the length of the result string.
@ TIXML_ERROR_READING_END_TAG
static const char * GetEntity(const char *in, char *value, int *length, TiXmlEncoding encoding)
int QueryFloatAttribute(const char *name, float *_value) const
QueryFloatAttribute examines the attribute - see QueryIntAttribute().
const TiXmlNode * NextSibling() const
Navigate to a sibling node.
virtual bool Visit(const TiXmlText &)
Visit a text node.
std::ostream & operator<<(std::ostream &os, const MsgPack &msgpack)
static void EncodeString(const TIXML_STRING &str, TIXML_STRING *out)
bool NoChildren() const
Returns true if this node has no children.
virtual void Print(FILE *cfile, int depth) const
TiXmlNode * ToNode() const
TiXmlElement * FirstChildElement(const char *_value)
@ TIXML_ERROR_PARSING_CDATA
TiXmlNode * LinkEndChild(TiXmlNode *addThis)
@ TIXML_ERROR_READING_ATTRIBUTES
TiXmlElement * Element() const
const char * Encoding() const
Encoding. Will return an empty string if none was found.
void CopyTo(TiXmlNode *target) const
TiXmlUnknown & operator=(const TiXmlUnknown ©)
const char * Version() const
Version. Will return an empty string if none was found.
@ TIXML_ERROR_READING_ELEMENT_VALUE
const int TIXML_PATCH_VERSION
friend class TiXmlElement
const TiXmlNode * PreviousSibling() const
Navigate to a sibling node.
const TiXmlDocument * GetDocument() const
TiXmlDeclaration()
Construct an empty declaration.
const char * Indent()
Query the indention string.
@ TIXML_ERROR_FAILED_TO_READ_ELEMENT_NAME
const TiXmlAttribute * Last() const
void operator=(const TiXmlBase &base)
void Clear()
Delete all the children of this node. Does not affect 'this'.
void operator=(const TiXmlNode &base)
TiXmlNode * LastChild()
The last child of this node. Will be null if there are no children.
@ TIXML_ERROR_PARSING_COMMENT
TiXmlAttribute(const char *_name, const char *_value)
Construct an attribute with a name and value.
TiXmlText & operator=(const TiXmlText &base)
bool operator<(const TiXmlAttribute &rhs) const
static bool StringEqual(const char *p, const char *endTag, bool ignoreCase, TiXmlEncoding encoding)
const TIXML_STRING & NameTStr() const
const char * CStr()
Return the result.
virtual TiXmlNode * Clone() const =0
std::istream & operator>>(std::istream &str, CSVRow &data)
const TiXmlElement * NextSiblingElement() const
const char * Standalone() const
Is this a standalone document?
void SetDocument(TiXmlDocument *doc)
bool operator==(const TiXmlAttribute &rhs) const
@ TIXML_ERROR_EMBEDDED_NULL
static bool IsWhiteSpaceCondensed()
Return the current white space setting.
const char * LineBreak()
Query the current line breaking string.
@ TIXML_ERROR_PARSING_UNKNOWN
void CopyTo(TiXmlElement *target) const
friend class TiXmlDocument
virtual TiXmlNode * Clone() const
Creates a new Element and returns it - the returned element is a copy.
virtual bool VisitEnter(const TiXmlDocument &)
Visit a document.
@ TIXML_ERROR_PARSING_DECLARATION
TiXmlElement * NextSiblingElement(const char *_next)
TiXmlAttribute * Previous()
TiXmlElement * NextSiblingElement()
TiXmlNode * PreviousSibling(const char *_prev)
TiXmlNode * InsertBeforeChild(TiXmlNode *beforeThis, const TiXmlNode &addThis)
const TiXmlEncoding TIXML_DEFAULT_ENCODING
const TiXmlNode * Parent() const
#define TINYXML_EXPORT_ATTR
virtual void Print(FILE *cfile, int depth) const
virtual bool Visit(const TiXmlUnknown &)
Visit an unknown node.
TiXmlNode * InsertEndChild(const TiXmlNode &addThis)
bool CDATA() const
Queries whether this represents text using a CDATA section.
static void SetCondenseWhiteSpace(bool condense)
const int TIXML_MAJOR_VERSION
virtual void Print(FILE *cfile, int depth) const =0
const char * ErrorDesc() const
Contains a textual (english) description of the error if one occurs.
virtual bool VisitExit(const TiXmlDocument &)
Visit a document.
TiXmlNode * IterateChildren(const TiXmlNode *previous)
@ TIXML_ERROR_PARSING_ELEMENT
TiXmlDocument * GetDocument()
static const char * SkipWhiteSpace(const char *, TiXmlEncoding encoding)
const TiXmlElement * RootElement() const
TiXmlElement * RootElement()
static bool condenseWhiteSpace
const TiXmlElement * FirstChildElement() const
Convenience function to get through elements.
const TiXmlAttribute * First() const
static const char * ReadName(const char *p, TIXML_STRING *name, TiXmlEncoding encoding)
TiXmlUnknown * ToUnknown() const
@ TIXML_ERROR_DOCUMENT_EMPTY
const char * Value() const
TiXmlElement * ToElement() const
TiXmlUnknown * Unknown() const
TFSIMD_FORCE_INLINE tfScalar length(const Quaternion &q)
TiXmlAttribute()
Construct an empty attribute.
TiXmlElement * FirstChildElement()
virtual const char * Parse(const char *p, TiXmlParsingData *data=0, TiXmlEncoding encoding=TIXML_DEFAULT_ENCODING)
virtual bool VisitEnter(const TiXmlElement &, const TiXmlAttribute *)
Visit an element.
bool RemoveChild(TiXmlNode *removeThis)
Delete a child of this node.
static const char * ReadText(const char *in, TIXML_STRING *text, bool ignoreWhiteSpace, const char *endTag, bool ignoreCase, TiXmlEncoding encoding)
static int IsAlphaNum(unsigned char anyByte, TiXmlEncoding encoding)
TiXmlAttribute * FirstAttribute()
void SetValue(const char *_value)
@ TIXML_ERROR_STRING_COUNT
@ TIXML_ERROR_OPENING_FILE
TiXmlNode * PreviousSibling()
void * userData
Field containing a generic user pointer.
static const int utf8ByteTable[256]
void SetLineBreak(const char *_lineBreak)
static const char * errorString[TIXML_ERROR_STRING_COUNT]
static int IsAlpha(unsigned char anyByte, TiXmlEncoding encoding)
TiXmlHandle operator=(const TiXmlHandle &ref)
TiXmlCursor errorLocation
TiXmlUnknown(const TiXmlUnknown ©)
virtual bool Accept(TiXmlVisitor *visitor) const =0
TiXmlNode * Identify(const char *start, TiXmlEncoding encoding)
TiXmlDocument & operator=(const TiXmlDocument ©)
TiXmlText * ToText() const
TiXmlNode * InsertAfterChild(TiXmlNode *afterThis, const TiXmlNode &addThis)
@ TIXML_ERROR_DOCUMENT_TOP_ONLY
static bool IsWhiteSpace(int c)
static int ToLower(int v, TiXmlEncoding encoding)
ROSCPP_DECL void start()
Actually starts the internals of the node (spins up threads, starts the network polling and xmlrpc lo...
const int TIXML_MINOR_VERSION
TiXmlNode * LastChild(const char *_value)
The last child of this node matching 'value'. Will be null if there are no children.
static const char * GetChar(const char *p, char *_value, int *length, TiXmlEncoding encoding)
virtual bool Visit(const TiXmlComment &)
Visit a comment node.
TiXmlText(const TiXmlText ©)
bool operator>(const TiXmlAttribute &rhs) const
const TiXmlNode * IterateChildren(const TiXmlNode *previous) const
TiXmlHandle(TiXmlNode *_node)
Create a handle from any node (at any depth of the tree.) This can be a null pointer.
TiXmlNode * NextSibling()
TiXmlNode * Parent()
One step up the DOM.
void SetTabSize(int _tabsize)
def error(*args, **kwargs)
sick_scan_xd
Author(s): Michael Lehning
, Jochen Sprickerhof , Martin Günther
autogenerated on Fri Oct 25 2024 02:47:12