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
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
|
#pragma once
#ifndef _SHARED_STRING_H_INCLUDED_
#define _SHARED_STRING_H_INCLUDED_
/**
* basic_shared_string
*
* Copyright (c) 2015 Scott Schanel http://github.com/sschanel/shared_string
*
* License: MIT License
*
* Uses std::shared_ptr internally to keep memory allocation to a minimum.
* This is a boost-less implementation that does not use boost::flyweights.
* That means that if you try hard enough you can outsmart it and do
* things very ineffeciently.
*
* But! If you embrace it, you get all the same methods that basic_string
* has (as of C++11), and you get a true shared string and it's thread-safe.
* Missing methods from basic_string: reserve(), capacity(), shrink_to_fit().
* append(), assign(), insert(), erase(), replace(), push_front(), push_back(),
* all methods that return a non-const iterator. Almost all of the implemented
* methods are thin wrappers around the shared string.
*
* If you need those methods, make a copy of the internal string by calling
* str() and work on that temporary string.
*
* You still get operator=(). And clear().
*
*
*
*/
#include <string>
#include <memory>
#include <functional>
template <typename CharT,
class Traits = std::char_traits<CharT>,
class Allocator = std::allocator < CharT >
>
class basic_shared_string {
public:
typedef std::basic_string<CharT, Traits, Allocator> string_type;
typedef typename string_type::const_iterator const_iterator;
typedef typename string_type::const_reverse_iterator const_reverse_iterator;
typedef typename string_type::size_type size_type;
private:
std::shared_ptr<const string_type> string_;
void replace_contents(string_type&& newString) {
string_ = std::make_shared<const string_type>(std::move(newString));
}
public:
static const size_type npos = (size_t)-1;
const string_type& str() const {
static const string_type empty;
if (string_.get() != nullptr) {
return *(string_.get());
}
return empty;
}
operator const string_type&() {
return str();
}
basic_shared_string() {
}
basic_shared_string(const CharT * s) {
replace_contents(string_type(s));
}
basic_shared_string(const string_type& s) {
replace_contents(string_type(s));
}
basic_shared_string(string_type&& s) {
replace_contents(std::move(s));
}
basic_shared_string(const basic_shared_string& s) {
string_ = s.string_;
}
void clear() {
string_ = nullptr;
}
basic_shared_string& operator=(const basic_shared_string& s) {
string_ = s.string_;
return *this;
}
basic_shared_string& operator=(const string_type& str) {
replace_contents(string_type(str));
return *this;
}
basic_shared_string& operator=(string_type&& str) {
replace_contents(std::move(str));
return *this;
}
basic_shared_string& operator=(const CharT* s) {
replace_contents(string_type(s));
return *this;
}
basic_shared_string& operator=(CharT ch) {
replace_contents(string_type(ch));
return *this;
}
basic_shared_string& operator=(std::initializer_list<CharT> ilist) {
replace_contents(string_type(ilist));
return *this;
}
void swap(basic_shared_string& rhs) {
this->string_.swap(rhs.string_);
}
CharT at(size_type pos) const {
return str().at(pos);
}
CharT operator[](size_type pos) const {
return str()[pos];
}
CharT front() const {
return str().front();
}
CharT back() const {
return str().back();
}
const CharT * c_str() const {
return str().c_str();
}
const_iterator begin() const {
return str().begin();
}
const_iterator cbegin() const {
return str().cbegin();
}
const_iterator end() const {
return str().end();
}
const_iterator cend() const {
return str().end();
}
const_reverse_iterator rbegin() const {
return str().rbegin();
}
const_reverse_iterator crbegin() const {
return str().crbegin();
}
const_reverse_iterator rend() const {
return str().rend();
}
const_reverse_iterator crend() const {
return str().crend();
}
bool empty() const {
return str().empty();
}
size_t size() const {
return str().size();
}
size_t length() const {
return str().length();
}
size_t max_size() const {
return str().max_size();
}
size_t capacity() const {
return str().capacity();
}
int compare(const string_type& rhs) const {
return str().compare(rhs);
}
int compare(const basic_shared_string& rhs) const {
return str().compare(rhs.str());
}
int compare(size_type pos1, size_type count1,
const string_type& str) const {
return str().compare(pos1, count1, str);
}
int compare(const CharT* s) const {
return str().compare(s);
}
int compare(size_type pos1, size_type count1,
const CharT* s) const {
return str().compare(pos1, count1, s);
}
int compare(
size_type pos1,
size_type count1,
const CharT* s,
size_type count2) const {
return str().compare(pos1, count1, s, count2);
}
basic_shared_string<CharT> substr(
size_type pos = 0,
size_type count = npos) const {
if (pos == 0) {
if (count == npos) {
return *this;
}
else if (count >= str().size()) {
return *this;
}
}
return basic_shared_string(str().substr(pos, count));
}
size_type copy(
CharT* dest,
size_type count,
size_type pos = 0) const {
return str().copy(dest, count, pos);
}
size_type find(const string_type& str, size_type pos = 0) const {
return str().find(str, pos);
}
size_type find(const CharT* s, size_type pos, size_type count) const {
return str().find(s, pos, count);
}
size_type find(const CharT* s, size_type pos = 0) const {
return str().find(s, pos);
}
size_type find(CharT ch, size_type pos = 0) const {
return str().find(ch, pos);
}
size_type rfind(const string_type& str, size_type pos = npos) const {
return str().rfind(str, pos);
}
size_type rfind(const CharT* s, size_type pos, size_type count) const {
return str().rfind(s, pos, count);
}
size_type rfind(const CharT* s, size_type pos = npos) const {
return str().rfind(s, pos);
}
size_type rfind(CharT ch, size_type pos = npos) const {
return str().rfind(ch, pos);
}
size_type find_first_of(const string_type& str, size_type pos = 0) const {
return str().find_first_of(str, pos);
}
size_type find_first_of(const CharT* s, size_type pos, size_type count) const {
return str().find_first_of(s, pos, count);
}
size_type find_first_of(const CharT* s, size_type pos = 0) const {
return str().find_first_of(s, pos);
}
size_type find_first_of(CharT ch, size_type pos = 0) const {
return str().find_first_of(ch, pos);
}
size_type find_first_not_of(const string_type& str, size_type pos = 0) const {
return str().find_first_not_of(str, pos);
}
size_type find_first_not_of(const CharT* s, size_type pos, size_type count) const {
return str().find_first_not_of(s, pos, count);
}
size_type find_first_not_of(const CharT* s, size_type pos = 0) const {
return str().find_first_not_of(s, pos);
}
size_type find_first_not_of(CharT ch, size_type pos = 0) const {
return str().find_first_not_of(ch, pos);
}
size_type find_last_of(const string_type& str, size_type pos = npos) const {
return str().find_last_of(str, pos);
}
size_type find_last_of(const CharT* s, size_type pos, size_type count) const {
return str().find_last_of(s, pos, count);
}
size_type find_last_of(const CharT* s, size_type pos = npos) const {
return str().find_last_of(s, pos);
}
size_type find_last_of(CharT ch, size_type pos = npos) const {
return str().find_last_of(ch, pos);
}
size_type find_last_not_of(const string_type& str, size_type pos = npos) const {
return str().find_last_not_of(str, pos);
}
size_type find_last_not_of(const CharT* s, size_type pos, size_type count) const {
return str().find_last_not_of(s, pos, count);
}
size_type find_last_not_of(const CharT* s, size_type pos = npos) const {
return str().find_last_not_of(s, pos);
}
size_type find_last_not_of(CharT ch, size_type pos = npos) const {
return str().find_last_not_of(ch, pos);
}
};
template< class CharT, class Traits, class Alloc >
bool operator==(
const basic_shared_string<CharT, Traits, Alloc>& lhs,
const basic_shared_string<CharT, Traits, Alloc>& rhs) {
return lhs.str() == rhs.str();
}
template< class CharT, class Traits, class Alloc >
bool operator!=(
const basic_shared_string<CharT, Traits, Alloc>& lhs,
const basic_shared_string<CharT, Traits, Alloc>& rhs) {
return lhs.str() != rhs.str();
}
template< class CharT, class Traits, class Alloc >
bool operator<(
const basic_shared_string<CharT, Traits, Alloc>& lhs,
const basic_shared_string<CharT, Traits, Alloc>& rhs) {
return lhs.str() < rhs.str();
}
template< class CharT, class Traits, class Alloc >
bool operator<=(
const basic_shared_string<CharT, Traits, Alloc>& lhs,
const basic_shared_string<CharT, Traits, Alloc>& rhs) {
return lhs.str() <= rhs.str();
}
template< class CharT, class Traits, class Alloc >
bool operator>(
const basic_shared_string<CharT, Traits, Alloc>& lhs,
const basic_shared_string<CharT, Traits, Alloc>& rhs) {
return lhs.str() > rhs.str();
}
template< class CharT, class Traits, class Alloc >
bool operator>=(
const basic_shared_string<CharT, Traits, Alloc>& lhs,
const basic_shared_string<CharT, Traits, Alloc>& rhs) {
return lhs.str() >= rhs.str();
}
template< class CharT, class Traits, class Alloc >
bool operator==(
const CharT* lhs,
const basic_shared_string<CharT, Traits, Alloc>& rhs) {
return operator==(lhs, rhs.str());
}
template< class CharT, class Traits, class Alloc >
bool operator==(
const basic_shared_string<CharT, Traits, Alloc>& lhs,
const CharT* rhs) {
return operator==(lhs.str(), rhs);
}
template< class CharT, class Traits, class Alloc >
bool operator!=(const CharT* lhs, const basic_shared_string<CharT, Traits, Alloc>& rhs) {
return operator!=(lhs, rhs.str());
}
template< class CharT, class Traits, class Alloc >
bool operator!=(const basic_shared_string<CharT, Traits, Alloc>& lhs, const CharT* rhs) {
return operator!=(lhs.str(), rhs);
}
template< class CharT, class Traits, class Alloc >
bool operator<(const CharT* lhs, const basic_shared_string<CharT, Traits, Alloc>& rhs) {
return operator<(lhs, rhs.str());
}
template< class CharT, class Traits, class Alloc >
bool operator<(const basic_shared_string<CharT, Traits, Alloc>& lhs, const CharT* rhs) {
return operator<(lhs.str(), rhs);
}
template< class CharT, class Traits, class Alloc >
bool operator<=(const CharT* lhs, const basic_shared_string<CharT, Traits, Alloc>& rhs) {
return operator<=(lhs, rhs.str());
}
template< class CharT, class Traits, class Alloc >
bool operator<=(const basic_shared_string<CharT, Traits, Alloc>& lhs, const CharT* rhs) {
return operator<=(lhs.str(), rhs);
}
template< class CharT, class Traits, class Alloc >
bool operator>(const CharT* lhs, const basic_shared_string<CharT, Traits, Alloc>& rhs) {
return operator>(lhs, rhs.str());
}
template< class CharT, class Traits, class Alloc >
bool operator>(const basic_shared_string<CharT, Traits, Alloc>& lhs, const CharT* rhs) {
return operator>(lhs.str(), rhs);
}
template< class CharT, class Traits, class Alloc >
bool operator>=(const CharT* lhs, const basic_shared_string<CharT, Traits, Alloc>& rhs) {
return operator>=(lhs, rhs.str());
}
template< class CharT, class Traits, class Alloc >
bool operator>=(const basic_shared_string<CharT, Traits, Alloc>& lhs, const CharT* rhs) {
return operator>=(lhs.str(), rhs);
}
template <class CharT, class Traits, class Allocator>
std::basic_ostream<CharT, Traits>& operator<<(
std::basic_ostream<CharT, Traits>& os,
const basic_shared_string<CharT, Traits, Allocator>& str) {
return operator<<(os, str.str());
}
template <class CharT, class Traits, class Allocator>
std::basic_istream<CharT, Traits>& operator>>(
std::basic_istream<CharT, Traits>& is,
basic_shared_string<CharT, Traits, Allocator>& str) {
std::basic_string<CharT, Traits, Allocator> temp;
operator>>(is, temp);
str = temp;
return is;
}
template< class CharT, class Traits, class Alloc >
basic_shared_string<CharT, Traits, Alloc> operator+(
const basic_shared_string<CharT, Traits, Alloc>& lhs,
const basic_shared_string<CharT, Traits, Alloc>& rhs) {
return basic_shared_string<CharT, Traits, Alloc>(operator+(lhs.str(), rhs.str()));
}
template< class CharT, class Traits, class Alloc >
basic_shared_string<CharT, Traits, Alloc> operator+(
const basic_shared_string<CharT, Traits, Alloc>& lhs,
const std::basic_string<CharT, Traits, Alloc>& rhs) {
return basic_shared_string<CharT, Traits, Alloc>(operator+(lhs.str(), rhs));
}
template< class CharT, class Traits, class Alloc >
basic_shared_string<CharT, Traits, Alloc> operator+(
const std::basic_string<CharT, Traits, Alloc>& lhs,
const basic_shared_string<CharT, Traits, Alloc>& rhs) {
return basic_shared_string<CharT, Traits, Alloc>(operator+(lhs, rhs.str()));
}
template< class CharT, class Traits, class Alloc >
basic_shared_string<CharT, Traits, Alloc> operator+(
const CharT* lhs,
const basic_shared_string<CharT, Traits, Alloc>& rhs) {
return basic_shared_string<CharT, Traits, Alloc>(operator+(lhs, rhs.str()));
}
template< class CharT, class Traits, class Alloc >
basic_shared_string<CharT, Traits, Alloc> operator+(
CharT lhs,
const basic_shared_string<CharT, Traits, Alloc>& rhs) {
return basic_shared_string<CharT, Traits, Alloc>(operator+(lhs, rhs.str()));
}
template< class CharT, class Traits, class Alloc >
basic_shared_string<CharT, Traits, Alloc> operator+(
const basic_shared_string<CharT, Traits, Alloc>& lhs,
const CharT* rhs) {
return basic_shared_string<CharT, Traits, Alloc>(operator+(lhs.str(), rhs));
}
template<class CharT, class Traits, class Alloc>
basic_shared_string<CharT, Traits, Alloc> operator+(
const basic_shared_string<CharT, Traits, Alloc>& lhs,
CharT rhs) {
return basic_shared_string<CharT, Traits, Alloc>(operator+(lhs.str(), rhs));
}
namespace std {
template <class CharT, class Traits, class Alloc>
int stoi(const basic_shared_string<CharT, Traits, Alloc>& str, std::size_t* pos = 0, int base = 10) {
return stoi(str.str(), pos, base);
}
template <class CharT, class Traits, class Alloc>
long stol(const basic_shared_string<CharT, Traits, Alloc>& str, std::size_t* pos = 0, int base = 10) {
return stol(str.str(), pos, base);
}
template <class CharT, class Traits, class Alloc>
long long stoll(const basic_shared_string<CharT, Traits, Alloc>& str, std::size_t* pos = 0, int base = 10) {
return stoll(str.str(), pos, base);
}
template <class CharT, class Traits, class Alloc>
unsigned long stoul(const basic_shared_string<CharT, Traits, Alloc>& str, std::size_t* pos = 0, int base = 10) {
return stoul(str.str(), pos, base);
}
template <class CharT, class Traits, class Alloc>
unsigned long long stoull(const basic_shared_string<CharT, Traits, Alloc>& str, std::size_t* pos = 0, int base = 10) {
return stoull(str.str(), pos, base);
}
template <class CharT, class Traits, class Alloc>
float stof(const basic_shared_string<CharT, Traits, Alloc>& str, std::size_t* pos = 0) {
return stof(str.str(), pos);
}
template <class CharT, class Traits, class Alloc>
double stod(const basic_shared_string<CharT, Traits, Alloc>& str, std::size_t* pos = 0) {
return stod(str.str(), pos);
}
template <class CharT, class Traits, class Alloc>
double stold(const basic_shared_string<CharT, Traits, Alloc>& str, std::size_t* pos = 0) {
return stold(str.str(), pos);
}
template <class CharT>
struct hash < basic_shared_string<CharT> > {
size_t operator()(const basic_shared_string<CharT>& key) {
return hash<std::string>()(key.str());
}
};
}
typedef basic_shared_string<char> shared_string;
typedef basic_shared_string<wchar_t> shared_wstring;
#endif // _STRING_REF_H_INCLUDED_
|