27 #ifndef TIXML_STRING_INCLUDED 28 #define TIXML_STRING_INCLUDED 37 #if defined(_MSC_VER) && (_MSC_VER >= 1200 ) 39 #define TIXML_EXPLICIT explicit 40 #elif defined(__GNUC__) && (__GNUC__ >= 3 ) 42 #define TIXML_EXPLICIT explicit 44 #define TIXML_EXPLICIT 59 typedef size_t size_type;
62 static const size_type npos;
74 memcpy(start(), copy.data(), length());
78 TIXML_EXPLICIT
TiXmlString (
const char * copy) : rep_(0)
80 init( static_cast<size_type>( strlen(copy) ));
81 memcpy(start(), copy, length());
85 TIXML_EXPLICIT TiXmlString (
const char * str, size_type len) : rep_(0)
88 memcpy(start(), str, len);
97 TiXmlString& operator = (
const char * copy)
99 return assign( copy, (size_type)strlen(copy));
102 TiXmlString& operator = (
const TiXmlString & copy)
104 return assign(copy.start(), copy.length());
109 TiXmlString& operator += (
const char * suffix)
111 return append(suffix, static_cast<size_type>( strlen(suffix) ));
115 TiXmlString& operator += (
char single)
117 return append(&single, 1);
121 TiXmlString& operator += (
const TiXmlString & suffix)
123 return append(suffix.data(), suffix.length());
128 const char * c_str ()
const {
return rep_->str; }
131 const char * data ()
const {
return rep_->str; }
134 size_type length ()
const {
return rep_->size; }
137 size_type size ()
const {
return rep_->size; }
140 bool empty ()
const {
return rep_->size == 0; }
143 size_type capacity ()
const {
return rep_->capacity; }
147 const char& at (size_type index)
const 149 assert( index < length() );
150 return rep_->str[ index ];
154 char& operator [] (size_type index)
const 156 assert( index < length() );
157 return rep_->str[ index ];
161 size_type find (
char lookup)
const 163 return find(lookup, 0);
167 size_type find (
char tofind, size_type offset)
const 169 if (offset >= length())
return npos;
171 for (
const char* p = c_str() + offset; *p !=
'\0'; ++p)
173 if (*p == tofind)
return static_cast< size_type
>( p - c_str() );
191 void reserve (size_type cap);
193 TiXmlString& assign (
const char* str, size_type len);
195 TiXmlString& append (
const char* str, size_type len);
197 void swap (TiXmlString& other)
206 void init(size_type sz) { init(sz, sz); }
207 void set_size(size_type sz) { rep_->str[ rep_->size = sz ] =
'\0'; }
208 char* start()
const {
return rep_->str; }
209 char* finish()
const {
return rep_->str + rep_->size; }
213 size_type size, capacity;
217 void init(size_type sz, size_type cap)
226 const size_type bytesNeeded =
sizeof(Rep) + cap;
227 const size_type intsNeeded = ( bytesNeeded +
sizeof(int) - 1 ) /
sizeof( int );
228 rep_ =
reinterpret_cast<Rep*
>(
new int[ intsNeeded ] );
230 rep_->str[ rep_->size = sz ] =
'\0';
231 rep_->capacity = cap;
241 if (rep_ != &nullrep_)
245 delete [] (
reinterpret_cast<int*
>( rep_ ) );
257 return ( a.length() == b.length() )
258 && ( strcmp(a.c_str(), b.c_str()) == 0 );
262 return strcmp(a.c_str(), b.c_str()) < 0;
270 inline bool operator == (
const TiXmlString & a,
const char* b) {
return strcmp(a.c_str(), b) == 0; }
271 inline bool operator == (
const char* a,
const TiXmlString & b) {
return b == a; }
272 inline bool operator != (
const TiXmlString & a,
const char* b) {
return !(a == b); }
273 inline bool operator != (
const char* a,
const TiXmlString & b) {
return !(b == a); }
304 #endif // TIXML_STRING_INCLUDED 305 #endif // TIXML_USE_STL