1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460
|
// -*- related-file-name: "../../liblcdf/string.cc" -*-
#ifndef LCDF_STRING_HH
#define LCDF_STRING_HH
#ifdef HAVE_PERMSTRING
# include <lcdf/permstr.hh>
#endif
#include <assert.h>
class StringAccum;
class String { public:
// Call static_initialize() before any function which might deal with
// Strings, and declare a String::Initializer in any file in which you
// declare static global Strings.
struct Initializer { Initializer(); };
friend struct String::Initializer;
static void static_initialize();
static void static_cleanup();
inline String();
inline String(const String &s);
String(const char *cc) { assign(cc, -1); }
String(const char *cc, int l) { assign(cc, l); }
#ifdef HAVE_PERMSTRING
inline String(PermString p);
#endif
explicit inline String(char);
explicit inline String(unsigned char);
explicit String(int);
explicit String(unsigned);
explicit String(long);
explicit String(unsigned long);
explicit String(double);
inline ~String();
static const String &null_string() { return *null_string_p; }
static const String &out_of_memory_string() { return *oom_string_p; }
static const char *out_of_memory_data() { return &oom_string_data; }
static String garbage_string(int n); // n garbage characters
static String fill_string(int c, int n); // n copies of c
static String stable_string(const char *, int = -1); // stable read-only memory
bool out_of_memory() const { return _data == &oom_string_data; }
int length() const { return _length; }
const char *data() const { return _data; }
const unsigned char *udata() const { return reinterpret_cast<const unsigned char *>(_data); }
typedef const char *const_iterator;
typedef const_iterator iterator;
const_iterator begin() const { return _data; }
const_iterator end() const { return _data + _length; }
char *mutable_data();
char *mutable_c_str();
unsigned char *mutable_udata() { return reinterpret_cast<unsigned char *>(mutable_data()); }
operator bool() const { return _length != 0; }
bool operator!() const { return _length == 0; }
#ifdef HAVE_PERMSTRING
operator PermString() const { return PermString(_data, _length); }
#endif
const char *c_str() const; // pointer returned is semi-transient
char operator[](int i) const { return _data[i]; }
char back() const { return _data[_length - 1]; }
int find_left(int c, int start = 0) const;
int find_left(const String &s, int start = 0) const;
int find_right(int c, int start = 0x7FFFFFFF) const;
bool equals(const char *, int) const;
// bool operator==(const String &, const String &);
// bool operator==(const String &, const char *);
// bool operator==(const char *, const String &);
// bool operator!=(const String &, const String &);
// bool operator!=(const String &, const char *);
// bool operator!=(const char *, const String &);
int compare(const char *, int) const;
int compare(const String &x) const { return compare(x._data, x._length); }
static inline int compare(const String &a, const String &b);
// bool operator<(const String &, const String &);
// bool operator<=(const String &, const String &);
// bool operator>(const String &, const String &);
// bool operator>=(const String &, const String &);
String substring(const char *begin, const char *end) const;
String substring(int pos, int len) const;
String substring(int pos) const { return substring(pos, _length); }
String lower() const;
String upper() const;
String printable() const;
inline String &operator=(const String &);
inline String &operator=(const char *);
#ifdef HAVE_PERMSTRING
inline String &operator=(PermString);
#endif
void append(const char *, int len);
void append_fill(int c, int len);
char *append_garbage(int len);
inline String &operator+=(const String &);
inline String &operator+=(const char *);
inline String &operator+=(char);
#ifdef HAVE_PERMSTRING
inline String &operator+=(PermString p);
#endif
// String operator+(String, const String &);
// String operator+(String, const char *);
// String operator+(const char *, const String &);
// String operator+(String, PermString);
// String operator+(PermString, String);
// String operator+(PermString, const char *);
// String operator+(const char *, PermString);
// String operator+(PermString, PermString);
// String operator+(String, char);
void align(int);
private:
struct Memo {
int _refcount;
int _capacity;
int _dirty;
char *_real_data;
inline Memo();
inline Memo(char *, int, int);
Memo(int, int);
~Memo();
};
mutable const char *_data; // mutable for c_str()
mutable int _length;
mutable Memo *_memo;
inline String(const char *, int, Memo *);
inline void assign(const String &) const;
void assign(const char *, int);
#ifdef HAVE_PERMSTRING
inline void assign(PermString) const;
#endif
inline void deref() const;
void make_out_of_memory();
static Memo *null_memo;
static Memo *permanent_memo;
static Memo *oom_memo;
static String *null_string_p;
static String *oom_string_p;
static const char oom_string_data;
static String claim_string(char *, int, int); // claim memory
friend class StringAccum;
};
inline
String::String(const char *data, int length, Memo *memo)
: _data(data), _length(length), _memo(memo)
{
_memo->_refcount++;
}
inline void
String::assign(const String &s) const
{
_data = s._data;
_length = s._length;
_memo = s._memo;
_memo->_refcount++;
}
inline void
String::deref() const
{
if (--_memo->_refcount == 0)
delete _memo;
}
inline
String::String()
: _data(null_memo->_real_data), _length(0), _memo(null_memo)
{
_memo->_refcount++;
}
inline
String::String(char c)
{
assign(&c, 1);
}
inline
String::String(unsigned char c)
{
assign(reinterpret_cast<char *>(&c), 1);
}
inline
String::String(const String &s)
{
assign(s);
}
inline
String::~String()
{
deref();
}
inline String
String::substring(const char *begin, const char *end) const
{
if (begin < end && begin >= _data && end <= _data + _length)
return String(begin, end - begin, _memo);
else
return String();
}
inline int
String::compare(const String &a, const String &b)
{
return a.compare(b);
}
inline bool
operator==(const String &s1, const String &s2)
{
return s1.equals(s2.data(), s2.length());
}
inline bool
operator==(const char *cc1, const String &s2)
{
return s2.equals(cc1, -1);
}
inline bool
operator==(const String &s1, const char *cc2)
{
return s1.equals(cc2, -1);
}
inline bool
operator!=(const String &s1, const String &s2)
{
return !s1.equals(s2.data(), s2.length());
}
inline bool
operator!=(const char *cc1, const String &s2)
{
return !s2.equals(cc1, -1);
}
inline bool
operator!=(const String &s1, const char *cc2)
{
return !s1.equals(cc2, -1);
}
inline bool
operator<(const String &s1, const String &s2)
{
return s1.compare(s2.data(), s2.length()) < 0;
}
inline bool
operator<=(const String &s1, const String &s2)
{
return s1.compare(s2.data(), s2.length()) <= 0;
}
inline bool
operator>(const String &s1, const String &s2)
{
return s1.compare(s2.data(), s2.length()) > 0;
}
inline bool
operator>=(const String &s1, const String &s2)
{
return s1.compare(s2.data(), s2.length()) >= 0;
}
inline String &
String::operator=(const String &s)
{
if (&s != this) {
deref();
assign(s);
}
return *this;
}
inline String &
String::operator=(const char *cc)
{
deref();
assign(cc, -1);
return *this;
}
inline String &
String::operator+=(const String &s)
{
append(s._data, s._length);
return *this;
}
inline String &
String::operator+=(const char *cc)
{
append(cc, -1);
return *this;
}
inline String &
String::operator+=(char c)
{
append_fill(c, 1);
return *this;
}
inline String
operator+(String s1, const String &s2)
{
s1 += s2;
return s1;
}
inline String
operator+(String s1, const char *cc2)
{
s1.append(cc2, -1);
return s1;
}
inline String
operator+(const char *cc1, const String &s2)
{
String s1(cc1);
s1 += s2;
return s1;
}
inline String
operator+(String s1, char c2)
{
s1.append(&c2, 1);
return s1;
}
#ifdef HAVE_PERMSTRING
inline void
String::assign(PermString p) const
{
_data = p.c_str();
_length = p.length();
_memo = permanent_memo;
_memo->_refcount++;
}
inline
String::String(PermString p)
{
assign(p);
}
inline bool
operator==(PermString p1, const String &s2)
{
return s2.equals(p1.c_str(), p1.length());
}
inline bool
operator==(const String &s1, PermString p2)
{
return s1.equals(p2.c_str(), p2.length());
}
inline bool
operator!=(PermString p1, const String &s2)
{
return !s2.equals(p1.c_str(), p1.length());
}
inline bool
operator!=(const String &s1, PermString p2)
{
return !s1.equals(p2.c_str(), p2.length());
}
inline String &
String::operator=(PermString p)
{
deref();
assign(p);
return *this;
}
inline String &
String::operator+=(PermString p)
{
append(p.c_str(), p.length());
return *this;
}
inline String
operator+(String s1, PermString p2)
{
s1.append(p2.c_str(), p2.length());
return s1;
}
inline String
operator+(PermString p1, String s2)
{
String s1(p1);
return s1 + s2;
}
inline String
operator+(PermString p1, const char *cc2)
{
String s1(p1);
return s1 + cc2;
}
inline String
operator+(const char *cc1, PermString p2)
{
String s1(cc1);
return s1 + p2;
}
inline String
operator+(PermString p1, PermString p2)
{
String s1(p1);
return s1 + p2;
}
#endif
unsigned hashcode(const String &);
#endif
|