tinystr.h
Go to the documentation of this file.
1 #include "sick_scan/sick_scan_base.h" /* Base definitions included in all header files, added by add_sick_scan_base_header.py. Do not edit this line. */
2 /*
3 www.sourceforge.net/projects/tinyxml
4 
5 This software is provided 'as-is', without any express or implied
6 warranty. In no event will the authors be held liable for any
7 damages arising from the use of this software.
8 
9 Permission is granted to anyone to use this software for any
10 purpose, including commercial applications, and to alter it and
11 redistribute it freely, subject to the following restrictions:
12 
13 1. The origin of this software must not be misrepresented; you must
14 not claim that you wrote the original software. If you use this
15 software in a product, an acknowledgment in the product documentation
16 would be appreciated but is not required.
17 
18 2. Altered source versions must be plainly marked as such, and
19 must not be misrepresented as being the original software.
20 
21 3. This notice may not be removed or altered from any source
22 distribution.
23 */
24 
25 
26 #ifndef TIXML_USE_STL
27 
28 #ifndef TIXML_STRING_INCLUDED
29 #define TIXML_STRING_INCLUDED
30 
31 #include <assert.h>
32 #include <string.h>
33 
34 /* Hide tiny xml functions from export in shared libraries.
35 * This way sick_scan_xd libraries can be dynamically loaded into applications
36 * using tiny xml lib itself.
37 * See https://gcc.gnu.org/wiki/Visibility for details
38 */
39 #ifdef _MSC_VER
40  #define TINYXML_EXPORT_ATTR
41 #else
42  #define TINYXML_EXPORT_ATTR __attribute__ ((visibility ("hidden")))
43 #endif
44 
45 /* The support for explicit isn't that universal, and it isn't really
46  required - it is used to check that the TiXmlString class isn't incorrectly
47  used. Be nice to old compilers and macro it here:
48 */
49 #if defined(_MSC_VER) && (_MSC_VER >= 1200)
50 // Microsoft visual studio, version 6 and higher.
51 #define TIXML_EXPLICIT explicit
52 #elif defined(__GNUC__) && (__GNUC__ >= 3)
53 // GCC version 3 and higher.s
54 #define TIXML_EXPLICIT explicit
55 #else
56 #define TIXML_EXPLICIT
57 #endif
58 
59 
60 /*
61  TiXmlString is an emulation of a subset of the std::string template.
62  Its purpose is to allow compiling TinyXML on compilers with no or poor STL support.
63  Only the member functions relevant to the TinyXML project have been implemented.
64  The buffer allocation is made by a simplistic power of 2 like mechanism : if we increase
65  a string and there's no more room, we allocate a buffer twice as big as we need.
66 */
68 {
69 public :
70  // The size type used
71  typedef size_t size_type;
72 
73  // Error value for find primitive
74  static const size_type npos; // = -1;
75 
76 
77  // TiXmlString empty constructor
78  TiXmlString() : rep_(&nullrep_)
79  {
80  }
81 
82  // TiXmlString copy constructor
83  TiXmlString(const TiXmlString &copy) : rep_(0)
84  {
85  init(copy.length());
86  memcpy(start(), copy.data(), length());
87  }
88 
89  // TiXmlString constructor, based on a string
90  TIXML_EXPLICIT TiXmlString(const char *copy) : rep_(0)
91  {
92  init(static_cast<size_type>( strlen(copy)));
93  memcpy(start(), copy, length());
94  }
95 
96  // TiXmlString constructor, based on a string
97  TIXML_EXPLICIT TiXmlString(const char *str, size_type len) : rep_(0)
98  {
99  init(len);
100  memcpy(start(), str, len);
101  }
102 
103  // TiXmlString destructor
105  {
106  quit();
107  }
108 
109  TiXmlString &operator=(const char *copy)
110  {
111  return assign(copy, (size_type) strlen(copy));
112  }
113 
115  {
116  return assign(copy.start(), copy.length());
117  }
118 
119 
120  // += operator. Maps to append
121  TiXmlString &operator+=(const char *suffix)
122  {
123  return append(suffix, static_cast<size_type>( strlen(suffix)));
124  }
125 
126  // += operator. Maps to append
127  TiXmlString &operator+=(char single)
128  {
129  return append(&single, 1);
130  }
131 
132  // += operator. Maps to append
134  {
135  return append(suffix.data(), suffix.length());
136  }
137 
138 
139  // Convert a TiXmlString into a null-terminated char *
140  const char *c_str() const
141  { return rep_->str; }
142 
143  // Convert a TiXmlString into a char * (need not be null terminated).
144  const char *data() const
145  { return rep_->str; }
146 
147  // Return the length of a TiXmlString
149  { return rep_->size; }
150 
151  // Alias for length()
152  size_type size() const
153  { return rep_->size; }
154 
155  // Checks if a TiXmlString is empty
156  bool empty() const
157  { return rep_->size == 0; }
158 
159  // Return capacity of string
161  { return rep_->capacity; }
162 
163 
164  // single char extraction
165  const char &at(size_type index) const
166  {
167  assert(index < length());
168  return rep_->str[index];
169  }
170 
171  // [] operator
172  char &operator[](size_type index) const
173  {
174  assert(index < length());
175  return rep_->str[index];
176  }
177 
178  // find a char in a string. Return TiXmlString::npos if not found
179  size_type find(char lookup) const
180  {
181  return find(lookup, 0);
182  }
183 
184  // find a char in a string from an offset. Return TiXmlString::npos if not found
185  size_type find(char tofind, size_type offset) const
186  {
187  if (offset >= length())
188  { return npos; }
189 
190  for (const char *p = c_str() + offset; *p != '\0'; ++p)
191  {
192  if (*p == tofind)
193  { return static_cast< size_type >( p - c_str()); }
194  }
195  return npos;
196  }
197 
198  void clear()
199  {
200  //Lee:
201  //The original was just too strange, though correct:
202  // TiXmlString().swap(*this);
203  //Instead use the quit & re-init:
204  quit();
205  init(0, 0);
206  }
207 
208  /* Function to reserve a big amount of data when we know we'll need it. Be aware that this
209  function DOES NOT clear the content of the TiXmlString if any exists.
210  */
211  void reserve(size_type cap);
212 
213  TiXmlString &assign(const char *str, size_type len);
214 
215  TiXmlString &append(const char *str, size_type len);
216 
217  void swap(TiXmlString &other)
218  {
219  Rep *r = rep_;
220  rep_ = other.rep_;
221  other.rep_ = r;
222  }
223 
224 private:
225 
226  void init(size_type sz)
227  { init(sz, sz); }
228 
230  { rep_->str[rep_->size = sz] = '\0'; }
231 
232  char *start() const
233  { return rep_->str; }
234 
235  char *finish() const
236  { return rep_->str + rep_->size; }
237 
238  struct Rep
239  {
240  size_type size, capacity;
241  char str[1];
242  };
243 
244  void init(size_type sz, size_type cap)
245  {
246  if (cap)
247  {
248  // Lee: the original form:
249  // rep_ = static_cast<Rep*>(operator new(sizeof(Rep) + cap));
250  // doesn't work in some cases of new being overloaded. Switching
251  // to the normal allocation, although use an 'int' for systems
252  // that are overly picky about structure alignment.
253  const size_type bytesNeeded = sizeof(Rep) + cap;
254  const size_type intsNeeded = (bytesNeeded + sizeof(int) - 1) / sizeof(int);
255  rep_ = reinterpret_cast<Rep *>( new int[intsNeeded] );
256 
257  rep_->str[rep_->size = sz] = '\0';
258  rep_->capacity = cap;
259  }
260  else
261  {
262  rep_ = &nullrep_;
263  }
264  }
265 
266  void quit()
267  {
268  if (rep_ != &nullrep_)
269  {
270  // The rep_ is really an array of ints. (see the allocator, above).
271  // Cast it back before delete, so the compiler won't incorrectly call destructors.
272  delete[] (reinterpret_cast<int *>( rep_ ));
273  }
274  }
275 
277  static Rep nullrep_;
278 
279 };
280 
281 
282 inline bool operator==(const TiXmlString &a, const TiXmlString &b)
283 {
284  return (a.length() == b.length()) // optimization on some platforms
285  && (strcmp(a.c_str(), b.c_str()) == 0); // actual compare
286 }
287 
288 inline bool operator<(const TiXmlString &a, const TiXmlString &b)
289 {
290  return strcmp(a.c_str(), b.c_str()) < 0;
291 }
292 
293 inline bool operator!=(const TiXmlString &a, const TiXmlString &b)
294 { return !(a == b); }
295 
296 inline bool operator>(const TiXmlString &a, const TiXmlString &b)
297 { return b < a; }
298 
299 inline bool operator<=(const TiXmlString &a, const TiXmlString &b)
300 { return !(b < a); }
301 
302 inline bool operator>=(const TiXmlString &a, const TiXmlString &b)
303 { return !(a < b); }
304 
305 inline bool operator==(const TiXmlString &a, const char *b)
306 { return strcmp(a.c_str(), b) == 0; }
307 
308 inline bool operator==(const char *a, const TiXmlString &b)
309 { return b == a; }
310 
311 inline bool operator!=(const TiXmlString &a, const char *b)
312 { return !(a == b); }
313 
314 inline bool operator!=(const char *a, const TiXmlString &b)
315 { return !(b == a); }
316 
317 TiXmlString operator+(const TiXmlString &a, const TiXmlString &b);
318 
319 TiXmlString operator+(const TiXmlString &a, const char *b);
320 
321 TiXmlString operator+(const char *a, const TiXmlString &b);
322 
323 
324 /*
325  TiXmlOutStream is an emulation of std::ostream. It is based on TiXmlString.
326  Only the operators that we need for TinyXML have been developped.
327 */
329 {
330 public :
331 
332  // TiXmlOutStream << operator.
334  {
335  *this += in;
336  return *this;
337  }
338 
339  // TiXmlOutStream << operator.
340  TiXmlOutStream &operator<<(const char *in)
341  {
342  *this += in;
343  return *this;
344  }
345 
346 };
347 
348 #endif // TIXML_STRING_INCLUDED
349 #endif // TIXML_USE_STL
TiXmlString::TiXmlString
TiXmlString(const TiXmlString &copy)
Definition: tinystr.h:83
TiXmlOutStream
Definition: tinystr.h:328
TiXmlString::find
size_type find(char tofind, size_type offset) const
Definition: tinystr.h:185
TiXmlString::swap
void swap(TiXmlString &other)
Definition: tinystr.h:217
TiXmlString::Rep::str
char str[1]
Definition: tinystr.h:241
TiXmlString::Rep
Definition: tinystr.h:238
TiXmlString
Definition: tinystr.h:67
TiXmlString::capacity
size_type capacity() const
Definition: tinystr.h:160
TiXmlString::at
const char & at(size_type index) const
Definition: tinystr.h:165
TiXmlString::operator=
TiXmlString & operator=(const char *copy)
Definition: tinystr.h:109
operator<
bool operator<(const TiXmlString &a, const TiXmlString &b)
Definition: tinystr.h:288
operator>
bool operator>(const TiXmlString &a, const TiXmlString &b)
Definition: tinystr.h:296
TiXmlString::TiXmlString
TIXML_EXPLICIT TiXmlString(const char *str, size_type len)
Definition: tinystr.h:97
TiXmlString::~TiXmlString
~TiXmlString()
Definition: tinystr.h:104
TiXmlString::quit
void quit()
Definition: tinystr.h:266
TiXmlString::operator[]
char & operator[](size_type index) const
Definition: tinystr.h:172
TiXmlString::operator+=
TiXmlString & operator+=(const char *suffix)
Definition: tinystr.h:121
TiXmlString::find
size_type find(char lookup) const
Definition: tinystr.h:179
roswrap::param::init
void init(const M_string &remappings)
Definition: param_modi.cpp:809
TiXmlString::clear
void clear()
Definition: tinystr.h:198
TiXmlString::size
size_type size() const
Definition: tinystr.h:152
TiXmlString::set_size
void set_size(size_type sz)
Definition: tinystr.h:229
TiXmlString::rep_
Rep * rep_
Definition: tinystr.h:276
TiXmlString::init
void init(size_type sz)
Definition: tinystr.h:226
TiXmlString::Rep::size
size_type size
Definition: tinystr.h:240
TiXmlString::finish
char * finish() const
Definition: tinystr.h:235
TiXmlString::empty
bool empty() const
Definition: tinystr.h:156
operator==
bool operator==(const TiXmlString &a, const TiXmlString &b)
Definition: tinystr.h:282
TiXmlString::start
char * start() const
Definition: tinystr.h:232
TINYXML_EXPORT_ATTR
#define TINYXML_EXPORT_ATTR
Definition: tinystr.h:42
TiXmlOutStream::operator<<
TiXmlOutStream & operator<<(const char *in)
Definition: tinystr.h:340
TiXmlString::c_str
const char * c_str() const
Definition: tinystr.h:140
TiXmlString::operator+=
TiXmlString & operator+=(char single)
Definition: tinystr.h:127
operator>=
bool operator>=(const TiXmlString &a, const TiXmlString &b)
Definition: tinystr.h:302
TiXmlString::size_type
size_t size_type
Definition: tinystr.h:71
TiXmlString::length
size_type length() const
Definition: tinystr.h:148
TiXmlOutStream::operator<<
TiXmlOutStream & operator<<(const TiXmlString &in)
Definition: tinystr.h:333
TiXmlString::nullrep_
static Rep nullrep_
Definition: tinystr.h:277
length
TFSIMD_FORCE_INLINE tfScalar length(const Quaternion &q)
TiXmlString::data
const char * data() const
Definition: tinystr.h:144
TiXmlString::init
void init(size_type sz, size_type cap)
Definition: tinystr.h:244
sick_scan_base.h
TiXmlString::operator=
TiXmlString & operator=(const TiXmlString &copy)
Definition: tinystr.h:114
roswrap::names::append
ROSCPP_DECL std::string append(const std::string &left, const std::string &right)
Append one name to another.
TiXmlString::npos
static const size_type npos
Definition: tinystr.h:74
TiXmlString::TiXmlString
TIXML_EXPLICIT TiXmlString(const char *copy)
Definition: tinystr.h:90
operator!=
bool operator!=(const TiXmlString &a, const TiXmlString &b)
Definition: tinystr.h:293
TIXML_EXPLICIT
#define TIXML_EXPLICIT
Definition: tinystr.h:56
operator<=
bool operator<=(const TiXmlString &a, const TiXmlString &b)
Definition: tinystr.h:299
TiXmlString::operator+=
TiXmlString & operator+=(const TiXmlString &suffix)
Definition: tinystr.h:133
TiXmlString::TiXmlString
TiXmlString()
Definition: tinystr.h:78
roswrap::start
ROSCPP_DECL void start()
Actually starts the internals of the node (spins up threads, starts the network polling and xmlrpc lo...
operator+
TiXmlString operator+(const TiXmlString &a, const TiXmlString &b)
Definition: tinystr.cpp:81


sick_scan_xd
Author(s): Michael Lehning , Jochen Sprickerhof , Martin Günther
autogenerated on Fri Oct 25 2024 02:47:12