00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030 #define ACEDIA_REDUCED_ANNOUNCE
00031
00032 #include "acedia_string.hpp"
00033 #include "acedia_atomic.hpp"
00034
00035 #include <cstring>
00036
00037 namespace acedia
00038 {
00039 namespace details
00040 {
00041
00042
00043 class shared_string : public std::string
00044 {
00045
00046 volatile boost::int32_t m_rc;
00047
00048 public:
00049
00050 typedef std::string super;
00051
00052 inline shared_string() : super(), m_rc(1) { }
00053
00054 inline shared_string(const std::string &str) :
00055 super(str), m_rc(1) { }
00056
00057 inline shared_string(const char *str) :
00058 super(str), m_rc(1) { }
00059
00060 inline shared_string(const char *str, ::size_t n) :
00061 super(str, n), m_rc(1) { }
00062
00063 inline void ref() { (void) atomic::addAndFetch(&m_rc, 1); }
00064
00065 inline bool deref() { return 0 != atomic::addAndFetch(&m_rc, -1); }
00066
00067 inline bool unique() const { return 1 == m_rc; }
00068
00069 inline shared_string *deep_copy() const
00070 {
00071 return new shared_string(*this);
00072 }
00073
00074 inline bool operator==(const shared_string &other)
00075 {
00076 return 0 == super::compare(other);
00077 }
00078
00079 };
00080
00081
00082
00083
00084
00085
00086
00087
00088
00089
00090
00091
00092
00093
00094
00095
00096
00097
00098
00099
00100
00101
00102
00103
00104
00105
00106
00107
00108
00109
00110
00111
00112
00113
00114 }
00115
00116 }
00117
00118 namespace acedia
00119 {
00120
00121
00122
00123
00124
00125 String::String() : str(new details::shared_string("")) { }
00126
00127 String::String(const String &other) : str(other.str) { str->ref(); }
00128
00129 String::String(const std::string &stdstr) :
00130 str(new details::shared_string(stdstr)) { }
00131
00132 String::String(const char *cstr) : str(new details::shared_string(cstr)) { }
00133
00134 String::String(const char *cstr, ::size_t n) :
00135 str(new details::shared_string(cstr, n)) { }
00136
00137 String::~String()
00138 {
00139 if (!str->deref()) delete str;
00140 }
00141
00142 ::size_t String::length() const
00143 {
00144 return str->size();
00145 }
00146
00147 const char &String::operator[](::size_t pos) const { return (*str)[pos]; }
00148
00149 const char *String::c_str() const { return str->c_str(); }
00150
00151 bool String::empty() const { return str->empty(); }
00152
00153 std::string::const_iterator String::begin() const
00154 {
00155 return str->begin();
00156 }
00157
00158 std::string::const_iterator String::end() const
00159 {
00160 return str->end();
00161 }
00162
00163 String &String::operator=(const String &other)
00164 {
00165 if (str != other.str)
00166 {
00167 if (!str->deref()) delete str;
00168 str = other.str;
00169 str->ref();
00170 }
00171 return *this;
00172 }
00173
00174 void String::detach()
00175 {
00176 if (!str->unique())
00177 {
00178 details::shared_string *new_str = str->deep_copy();
00179 if (!str->deref()) delete str;
00180 str = new_str;
00181 }
00182 }
00183
00184 String &String::append(const String &s)
00185 {
00186 detach();
00187 str->append(*(s.str));
00188 return *this;
00189 }
00190
00191 String &String::append(const String &s, ::size_t pos, ::size_t n)
00192 {
00193 detach();
00194 str->append(*(s.str), pos, n);
00195 return *this;
00196 }
00197
00198 String &String::append(char c)
00199 {
00200 detach();
00201 (*str) += c;
00202 return *this;
00203 }
00204
00205 String &String::append(const char *cstr)
00206 {
00207 detach();
00208 str->append(cstr);
00209 return *this;
00210 }
00211
00212 String &String::append(const char *cstr, ::size_t n)
00213 {
00214 detach();
00215 str->append(cstr, n);
00216 return *this;
00217 }
00218
00219 String &String::append(const std::string &s)
00220 {
00221 detach();
00222 str->append(s);
00223 return *this;
00224 }
00225
00226 void String::serialize(boost::archive::text_oarchive &ar,
00227 const unsigned int) const
00228 {
00229 ar << ((std::string &) *str);
00230 }
00231
00232 void String::serialize(boost::archive::text_iarchive &ar,
00233 const unsigned int)
00234 {
00235 detach();
00236 ar >> ((std::string &) *str);
00237 }
00238
00239 void String::reserve(::size_t n)
00240 {
00241 detach();
00242 str->reserve(n);
00243 }
00244
00245 const std::string &String::const_str() const
00246 {
00247 return (*str);
00248 }
00249
00250 bool starts_with_impl(const char *s1, const char *s2, int len)
00251 {
00252 for (int i = 0; i < len; ++i) if (s1[i] != s2[i]) return false;
00253 return true;
00254 }
00255
00256 bool String::startsWith(const char *s) const
00257 {
00258 ::size_t slen = strlen(s);
00259 if (length() < slen) return false;
00260 return starts_with_impl(s, c_str(), slen);
00261 }
00262
00263 bool String::startsWith(const String &s) const
00264 {
00265 ::size_t l = s.length();
00266 if (length() < l) return false;
00267 return starts_with_impl(c_str(), s.c_str(), l);
00268 }
00269
00270
00271
00272
00273
00274
00275
00276
00277
00278
00279
00280
00281
00282
00283
00284
00285
00286
00287
00288
00289
00290
00291
00292
00293
00294
00295
00296
00297
00298
00299
00300
00301
00302
00303
00304
00305
00306
00307
00308
00309
00310
00311
00312
00313
00314
00315
00316
00317
00318
00319
00320
00321
00322
00323
00324
00325
00326
00327
00328
00329
00330
00331
00332
00333
00334
00335
00336
00337
00338
00339
00340
00341
00342
00343
00344
00345
00346
00347
00348
00349
00350
00351
00352
00353
00354
00355
00356
00357
00358
00359
00360
00361
00362
00363
00364
00365
00366
00367
00368
00369
00370
00371
00372
00373
00374
00375
00376
00377
00378
00379
00380
00381
00382
00383
00384
00385
00386
00387
00388
00389
00390
00391
00392
00393
00394
00395
00396
00397
00398
00399
00400
00401
00402
00403
00404
00405
00406
00407
00408
00409
00410
00411
00412
00413
00414
00415
00416
00417
00418
00419
00420
00421
00422
00423
00424
00425
00426
00427
00428
00429
00430
00431
00432
00433
00434
00435
00436
00437
00438
00439
00440
00441 }