-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathstring
665 lines (561 loc) · 14.2 KB
/
string
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
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
// -*- c++ -*-
#pragma once
#include <algorithm>
#include <atomic>
#include <cstddef>
#include <cstring>
#include <initializer_list>
namespace std {
class out_of_range;
template<class charT>
class basic_string
{
// The data backing the string. This is shared and copy-on-write.
// This is always allocated to allow one extra byte in buf beyond
// cap, which provides space for a NUL charT. Anything that
// modifies len must ensure that buf[len] == 0.
struct data
{
atomic<unsigned> refcnt;
size_t len, cap;
charT buf[];
static data* alloc(data *cur, size_t cap)
{
// Allocate space for cap plus a NUL.
struct data *res = reinterpret_cast<struct data*>(
new char[sizeof(*res) + sizeof(charT) * (cap + 1)]);
res->refcnt.store(1, memory_order_relaxed);
res->cap = cap;
if (cur) {
res->len = cur->len;
memmove(res->buf, cur->buf, sizeof(charT) * (cur->len + 1));
} else {
res->len = 0;
res->buf[0] = 0;
}
return res;
}
void set_len(size_t nlen)
{
buf[nlen] = 0;
len = nlen;
}
};
struct data *data_;
void release()
{
if (data_ && --data_->refcnt == 0)
delete[] (char*)data_;
data_ = nullptr;
}
void may_write()
{
if (data_ && data_->refcnt > 1) {
struct data *ndata = data::alloc(data_, data_->cap);
release();
data_ = ndata;
}
}
public:
// XXX traits_type, allocator_type
// XXX Traits and allocator-aware
typedef charT value_type;
typedef size_t size_type;
typedef size_t difference_type;
typedef value_type& reference;
typedef const value_type& const_reference;
typedef value_type* pointer;
typedef const value_type* const_pointer;
typedef value_type* iterator;
typedef const value_type* const_iterator;
static const size_type npos = -1;
basic_string() : data_() { }
basic_string(const basic_string& str) : data_(str.data_)
{
if (data_)
++data_->refcnt;
}
basic_string(basic_string&& str) noexcept : data_(str.data_)
{
str.data_ = nullptr;
}
basic_string(const basic_string& str, size_type pos, size_type n = npos)
: basic_string()
{
append(str, pos, n);
}
basic_string(const charT* s, size_type n) : basic_string()
{
append(s, n);
}
basic_string(const charT* s) : basic_string()
{
append(s);
}
basic_string(size_type n, charT c) : basic_string()
{
append(n, c);
}
template<class InputIterator>
basic_string(InputIterator begin, InputIterator end) : basic_string()
{
append(begin, end);
}
basic_string(initializer_list<charT> il) : basic_string()
{
append(il.begin(), il.size());
}
~basic_string()
{
release();
}
basic_string& operator=(const basic_string& str)
{
if (&str != this) {
release();
if ((data_ = str.data_))
++data_->refcnt;
}
return *this;
}
basic_string& operator=(basic_string &&str) noexcept
{
release();
data_ = str.data_;
str.data_ = nullptr;
return *this;
}
basic_string& operator=(const charT* s)
{
clear();
return append(s);
}
basic_string& operator=(charT c)
{
clear();
return append(1, c);
}
basic_string& operator=(initializer_list<charT> il)
{
clear();
return append(il.begin(), il.size());
}
iterator begin() noexcept
{
may_write();
if (data_)
return &data_->buf[0];
return nullptr;
}
const_iterator begin() const noexcept
{
return cbegin();
}
iterator end() noexcept
{
may_write();
if (data_)
return &data_->buf[data_->len];
return nullptr;
}
const_iterator end() const noexcept
{
return cend();
}
// XXX rbegin, rend
const_iterator cbegin() const noexcept
{
if (data_)
return &data_->buf[0];
return nullptr;
}
const_iterator cend() const noexcept
{
if (data_)
return &data_->buf[data_->len];
return nullptr;
}
// XXX crbegin, crend
size_type size() const noexcept
{
if (data_)
return data_->len;
return 0;
}
size_type length() const noexcept
{
return size();
}
size_type max_size() const noexcept
{
return (size_type)-1;
}
// XXX resize
size_type capacity() const noexcept
{
if (data_)
return data_->cap;
return 0;
}
void reserve(size_type n = 0)
{
// Make sure there's enough space besides the buffer itself for
// the allocator to store a size plus alignment padding, for the
// data header, and for a terminating NUL. As a result, the
// allocation will generally be power-of-two friendly and cap
// will generally by a power of two minus this padding.
const static auto PADDING =
2 * sizeof(void*) + offsetof(struct data, buf) + 1;
if (n < size())
n = size();
// Compute a the smallest power-of-two total allocation size
// that will fit n.
n += PADDING;
size_type goal = 16;
while (n > goal)
goal *= 2;
// The new buffer capacity of the total allocation goal minus
// the padding we accounting for.
size_type ncap = goal - PADDING;
if (data_ && ncap == data_->cap)
return;
// Create new data
struct data *ndata = data::alloc(data_, ncap);
release();
data_ = ndata;
}
void shrink_to_fit()
{
if (size() == capacity())
return;
struct data *ndata = data::alloc(data_, capacity());
release();
data_ = ndata;
}
void clear() noexcept
{
if (!data_)
return;
if (data_->refcnt > 1)
release();
else
data_->set_len(0);
}
bool empty() const noexcept
{
return data_ == nullptr || data_->len == 0;
}
const_reference operator[](size_type pos) const
{
return *(begin() + pos);
}
reference operator[](size_type pos)
{
return *(begin() + pos);
}
const_reference at(size_type pos) const
{
if (pos >= size())
throw out_of_range("index out of range");
return *(begin() + pos);
}
reference at(size_type pos)
{
if (pos >= size())
throw out_of_range("index out of range");
return *(begin() + pos);
}
const charT& front() const
{
return *begin();
}
charT& front()
{
return *begin();
}
const charT& back() const
{
return *(end() - 1);
}
charT& back()
{
return *(end() - 1);
}
basic_string& operator+=(const basic_string& str)
{
return append(str);
}
basic_string& operator+=(const charT* s)
{
return append(s);
}
basic_string& operator+=(charT c)
{
return append(1, c);
}
basic_string& operator+=(initializer_list<charT> il)
{
return append(il.first(), il.size());
}
basic_string& append(const basic_string& str)
{
return append(str.data(), str.size());
}
basic_string& append(const basic_string& str, size_type pos, size_type n)
{
if (pos > str.size())
throw out_of_range("pos out of range");
if (n > str.size() - pos)
n = str.size() - pos;
return append(str.begin() + pos, n);
}
basic_string& append(const charT* s, size_type n)
{
reserve(size() + n);
may_write();
memmove(data_->buf + data_->len, s, sizeof(charT)*n);
data_->set_len(data_->len + n);
return *this;
}
basic_string& append(const charT* s)
{
// XXX traits::length
return append(s, strlen(s));
}
basic_string& append(size_type n, charT c)
{
reserve(size() + n);
may_write();
fill(data_->buf + data_->len, data_->buf + data_->len + n, c);
data_->set_len(data_->len + n);
return *this;
}
template<class InputIterator>
basic_string& append(InputIterator first, InputIterator last)
{
for (; first != last; ++first)
push_back(*first);
return *this;
}
basic_string& append(initializer_list<charT> il)
{
return append(il.begin(), il.size());
}
void push_back(charT c)
{
reserve(size() + 1);
may_write();
data_->buf[data_->len] = c;
data_->set_len(data_->len + 1);
}
// XXX assign, insert, erase
void pop_back()
{
if (!empty()) {
may_write();
data_->set_len(data_->len - 1);
}
}
// XXX replace, copy, swap
const charT* c_str() const noexcept
{
// We always maintain a NUL terminator
return data();
}
const charT* data() const noexcept
{
return begin();
}
// XXX get_allocator, find, rfind, find_first_of, find_last_of,
// find_first_not_of, find_last_not_of, substr
int compare(const basic_string& str) const noexcept
{
return compare(0, size(), str.data(), str.size());
}
int compare(size_type pos1, size_type n1,
const basic_string& str) const
{
return compare(pos1, n1, str.data(), str.size());
}
int compare(size_type pos1, size_type n1,
const basic_string& str,
size_type pos2, size_type n2) const
{
if (pos2 > str.size())
throw out_of_range("compare pos out of range");
if (n2 > str.size() - pos2)
n2 = str.size() - pos2;
return compare(pos1, n1, str.data() + pos2, n2);
}
int compare(const charT* s) const
{
return compare(0, size(), s);
}
int compare(size_type pos1, size_type n1,
const charT* s) const
{
return compare(pos1, n1, s, strlen(s));
}
int compare(size_type pos1, size_type n1,
const charT* s, size_type n2) const
{
if (pos1 > size())
throw out_of_range("compare pos out of range");
if (n1 > size() - pos1)
n1 = size() - pos1;
size_type rlen = n1 < n2 ? n1 : n2;
int res = memcmp(data(), s, rlen * sizeof(charT));
if (res == 0) {
if (n1 < n2)
res = -1;
else if (n1 > n2)
res = 1;
}
return res;
}
};
template<class charT>
bool operator==(const basic_string<charT>& a, const basic_string<charT>& b)
{
return a.compare(b) == 0;
}
template<class charT>
bool operator==(const charT* a, const basic_string<charT>& b)
{
return b.compare(a) == 0;
}
template<class charT>
bool operator==(const basic_string<charT>& a, const charT* b)
{
return a.compare(b) == 0;
}
template<class charT>
bool operator!=(const basic_string<charT>& a, const basic_string<charT>& b)
{
return !(a == b);
}
template<class charT>
bool operator!=(const charT* a, const basic_string<charT>& b)
{
return !(a == b);
}
template<class charT>
bool operator!=(const basic_string<charT>& a, const charT* b)
{
return !(a == b);
}
template<class charT>
bool operator<(const basic_string<charT>& a, const basic_string<charT>& b)
{
return a.compare(b) < 0;
}
template<class charT>
bool operator<(const charT* a, const basic_string<charT>& b)
{
return b.compare(a) > 0;
}
template<class charT>
bool operator<(const basic_string<charT>& a, const charT* b)
{
return a.compare(b) < 0;
}
template<class charT>
bool operator>(const basic_string<charT>& a, const basic_string<charT>& b)
{
return a.compare(b) > 0;
}
template<class charT>
bool operator>(const charT* a, const basic_string<charT>& b)
{
return b.compare(a) < 0;
}
template<class charT>
bool operator>(const basic_string<charT>& a, const charT* b)
{
return a.compare(b) > 0;
}
template<class charT>
bool operator<=(const basic_string<charT>& a, const basic_string<charT>& b)
{
return a.compare(b) <= 0;
}
template<class charT>
bool operator<=(const charT* a, const basic_string<charT>& b)
{
return b.compare(a) >= 0;
}
template<class charT>
bool operator<=(const basic_string<charT>& a, const charT* b)
{
return a.compare(b) <= 0;
}
template<class charT>
bool operator>=(const basic_string<charT>& a, const basic_string<charT>& b)
{
return a.compare(b) >= 0;
}
template<class charT>
bool operator>=(const charT* a, const basic_string<charT>& b)
{
return b.compare(a) <= 0;
}
template<class charT>
bool operator>=(const basic_string<charT>& a, const charT* b)
{
return a.compare(b) >= 0;
}
template<class charT>
basic_string<charT> operator+(const basic_string<charT>& lhs,
const basic_string<charT>& rhs)
{
basic_string<charT> o(lhs);
return o.append(rhs);
}
template<class charT>
basic_string<charT> operator+(basic_string<charT>&& lhs,
const basic_string<charT>& rhs)
{
return lhs.append(rhs);
}
template<class charT>
basic_string<charT> operator+(const charT* lhs,
const basic_string<charT>& rhs)
{
basic_string<charT> o(lhs);
return o.append(rhs);
}
template<class charT>
basic_string<charT> operator+(charT lhs,
const basic_string<charT>& rhs)
{
basic_string<charT> o(1, lhs);
return o.append(rhs);
}
template<class charT>
basic_string<charT> operator+(const basic_string<charT>& lhs,
const charT* rhs)
{
basic_string<charT> o(lhs);
return o.append(rhs);
}
template<class charT>
basic_string<charT> operator+(basic_string<charT>&& lhs,
const charT* rhs)
{
return lhs.append(rhs);
}
template<class charT>
basic_string<charT> operator+(const basic_string<charT>& lhs,
const charT rhs)
{
basic_string<charT> o(lhs);
return o.append(1, rhs);
}
template<class charT>
basic_string<charT> operator+(basic_string<charT>&& lhs,
const charT rhs)
{
return lhs.append(1, rhs);
}
typedef basic_string<char> string;
}