-
Notifications
You must be signed in to change notification settings - Fork 26
/
static_vector.h
450 lines (445 loc) · 11.4 KB
/
static_vector.h
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
#ifndef BWGAME_STATIC_VECTOR_H
#define BWGAME_STATIC_VECTOR_H
#include <cstddef>
#include <iterator>
#include <array>
namespace bwgame {
template<typename T, size_t max_elements>
struct static_vector {
struct t_iterator;
typedef T value_type;
typedef size_t size_type;
typedef ptrdiff_t difference_type;
typedef T& reference;
typedef const T& const_reference;
typedef T* pointer;
typedef const T* const_pointer;
struct const_iterator {
friend static_vector;
private:
typedef const_iterator this_t;
typename static_vector::const_pointer ptr;
public:
typedef std::random_access_iterator_tag iterator_category;
typedef typename static_vector::value_type value_type;
typedef typename static_vector::difference_type difference_type;
typedef typename static_vector::const_pointer pointer;
typedef typename static_vector::const_reference reference;
const_iterator() = default;
const_iterator(const const_iterator&) = default;
explicit const_iterator(typename static_vector::const_pointer ptr) : ptr(ptr) {}
reference operator*() const {
return *ptr;
}
pointer operator->() const {
return ptr;
}
reference operator[](difference_type index) const {
return *ptr[index];
}
this_t& operator++() {
++ptr;
return *this;
}
this_t operator++(int) {
auto r = *this;
++ptr;
return r;
}
this_t& operator--() {
--ptr;
return *this;
}
this_t operator--(int) {
auto r = *this;
--ptr;
return r;
}
this_t& operator+=(difference_type diff) {
ptr += diff;
return *this;
}
this_t& operator+(difference_type diff) const {
auto r = *this;
return r += diff;
}
this_t& operator-=(difference_type diff) {
ptr -= diff;
return *this;
}
this_t& operator-(difference_type diff) const {
auto r = *this;
return r -= diff;
}
difference_type operator-(const this_t& other) const {
return ptr - other.ptr;
}
bool operator==(const this_t& rhs) const {
return ptr == rhs.ptr;
}
bool operator!=(const this_t& rhs) const {
return !(*this == rhs);
}
bool operator<(const this_t& rhs) const {
return ptr < rhs.ptr;
}
bool operator<=(const this_t& rhs) const {
return ptr <= rhs.ptr;
}
bool operator>(const this_t& rhs) const {
return ptr > rhs.ptr;
}
bool operator>=(const this_t& rhs) const {
return ptr >= rhs.ptr;
}
};
struct iterator {
friend static_vector;
private:
typedef iterator this_t;
typename static_vector::pointer ptr;
public:
typedef std::random_access_iterator_tag iterator_category;
typedef typename static_vector::value_type value_type;
typedef typename static_vector::difference_type difference_type;
typedef typename static_vector::pointer pointer;
typedef typename static_vector::reference reference;
iterator() = default;
iterator(const iterator&) = default;
explicit iterator(typename static_vector::pointer ptr) : ptr(ptr) {}
reference operator*() const {
return *ptr;
}
pointer operator->() const {
return ptr;
}
reference operator[](difference_type index) const {
return *ptr[index];
}
this_t& operator++() {
++ptr;
return *this;
}
this_t operator++(int) {
auto r = *this;
++ptr;
return r;
}
this_t& operator--() {
--ptr;
return *this;
}
this_t operator--(int) {
auto r = *this;
--ptr;
return r;
}
this_t& operator+=(difference_type diff) {
ptr += diff;
return *this;
}
this_t operator+(difference_type diff) const {
auto r = *this;
return r += diff;
}
this_t& operator-=(difference_type diff) {
ptr -= diff;
return *this;
}
this_t operator-(difference_type diff) const {
auto r = *this;
return r -= diff;
}
difference_type operator-(const this_t& other) const {
return ptr - other.ptr;
}
bool operator==(const this_t& rhs) const {
return ptr == rhs.ptr;
}
bool operator!=(const this_t& rhs) const {
return !(*this == rhs);
}
bool operator<(const this_t& rhs) const {
return ptr < rhs.ptr;
}
bool operator<=(const this_t& rhs) const {
return ptr <= rhs.ptr;
}
bool operator>(const this_t& rhs) const {
return ptr > rhs.ptr;
}
bool operator>=(const this_t& rhs) const {
return ptr >= rhs.ptr;
}
};
typedef std::reverse_iterator<iterator> reverse_iterator;
typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
private:
std::array<std::aligned_storage_t<sizeof(T), alignof(T)>, max_elements> m_data;
pointer m_end = ptr_begin();
template<typename... args_T>
void m_resize(size_type count, args_T&&... args) {
if (count > capacity()) throw std::length_error("static_vector resized beyond capacity");
pointer e = ptr_begin() + count;
if (e > ptr_end()) {
for (pointer i = ptr_end(); i != e; ++i) {
try {
new (i) value_type(std::forward<T>(args)...);
} catch (...) {
for (pointer i2 = i; i2 > ptr_end(); --i2) {
m_destroy(i2 - 1);
}
throw;
}
}
} else {
for (pointer i = ptr_end(); i != e; --i) {
m_destroy(i - 1);
}
}
m_end = e;
}
void m_clear() {
pointer e = ptr_begin();
for (pointer i = ptr_end(); i != e; --i) {
m_destroy(i - 1);
}
m_end = e;
}
template<typename VT = value_type, typename std::enable_if<std::is_copy_constructible<VT>::value && std::is_nothrow_copy_assignable<VT>::value, int>::type = 0>
void m_assign(const static_vector& other) {
auto src_i = other.ptr_begin();
pointer dst_i = ptr_begin();
for (; dst_i != ptr_end() && src_i != other.ptr_end(); ++src_i, ++dst_i) {
*dst_i = *src_i;
}
auto e = ptr_begin() + other.size();
for (; src_i != other.ptr_end(); ++src_i, ++dst_i) {
try {
new (dst_i) value_type(*src_i);
} catch (...) {
for (pointer i2 = dst_i; i2 > ptr_end(); --i2) {
m_destroy(i2 - 1);
}
throw;
}
}
m_end = e;
}
template<typename VT = value_type, typename std::enable_if<std::is_copy_constructible<VT>::value && !std::is_nothrow_copy_assignable<VT>::value, int>::type = 0>
void m_assign(const static_vector& other) {
m_clear();
auto src_i = other.ptr_begin();
pointer dst_i = ptr_begin();
auto e = ptr_begin() + other.size();
for (; src_i != other.ptr_end(); ++src_i, ++dst_i) {
try {
new (dst_i) value_type(*src_i);
} catch (...) {
for (pointer i2 = dst_i; i2 > ptr_end(); --i2) {
m_destroy(i2 - 1);
}
throw;
}
}
m_end = e;
}
template<typename VT = value_type, typename std::enable_if<std::is_nothrow_move_constructible<VT>::value && std::is_nothrow_move_assignable<VT>::value, int>::type = 0>
void m_assign(static_vector&& other) {
auto src_i = other.ptr_begin();
pointer dst_i = ptr_begin();
for (; dst_i != ptr_end() && src_i != other.ptr_end(); ++src_i, ++dst_i) {
*dst_i = std::move(*src_i);
}
auto e = ptr_begin() + other.size();
for (; src_i != other.ptr_end(); ++src_i, ++dst_i) {
new (dst_i) value_type(std::move(*src_i));
}
m_end = e;
}
template<typename VT = value_type, typename std::enable_if<std::is_nothrow_move_constructible<VT>::value && !std::is_nothrow_move_assignable<VT>::value, int>::type = 0>
void m_assign(static_vector&& other) {
m_clear();
auto src_i = other.ptr_begin();
pointer dst_i = ptr_begin();
auto e = ptr_begin() + other.size();
for (; src_i != other.ptr_end(); ++src_i, ++dst_i) {
new (dst_i) value_type(std::move(*src_i));
}
m_end = e;
}
template<typename VT = value_type, typename std::enable_if<std::is_scalar<VT>::value, int>::type = 0>
void m_destroy(pointer p) {}
template<typename VT = value_type, typename std::enable_if<!std::is_scalar<VT>::value, int>::type = 0>
void m_destroy(pointer p) {
p->~value_type();
}
pointer ptr_begin() {
return (pointer)m_data.data();
}
pointer ptr_end() {
return m_end;
}
pointer ptr_cap_end() {
return (pointer)(m_data.data() + max_elements);
}
const_pointer ptr_begin() const {
return (pointer)m_data.data();
}
const_pointer ptr_end() const {
return m_end;
}
const pointer ptr_cap_end() const {
return (pointer)(m_data.data() + max_elements);
}
public:
static_vector() {}
explicit static_vector(size_type count) {
resize(count);
}
explicit static_vector(size_type count, const value_type& value) {
resize(count, value);
}
static_vector(const static_vector& other) {
m_assign(other);
}
static_vector(static_vector&& other) {
m_assign(std::move(other));
}
~static_vector() {
for (auto i = ptr_begin(); i != ptr_end(); ++i) {
m_destroy(i);
}
}
void resize(size_type count) {
m_resize(count);
}
void resize(size_type count, const value_type& value) {
m_resize(count, value);
}
static_vector& operator=(const static_vector& other) {
m_assign(other);
return *this;
}
static_vector& operator=(static_vector&& other) {
m_assign(std::move(other));
return *this;
}
reference at(size_type pos) {
if (pos >= size()) throw std::out_of_range("static_vector subscript out of range");
return *(ptr_begin() + pos);
}
const_reference at(size_type pos) const {
if (pos >= size()) throw std::out_of_range("static_vector subscript out of range");
return *(ptr_begin() + pos);
}
reference operator[](size_type pos) {
return *(ptr_begin() + pos);
}
constexpr const_reference operator[](size_type pos) const {
return *(ptr_begin() + pos);
}
reference front() {
return *ptr_begin();
}
const_reference front() const {
return *ptr_begin();
}
reference back() {
return *(ptr_end() - 1);
}
const_reference back() const {
return *(ptr_end() - 1);
}
T* data() {
return ptr_begin();
}
const T* data() const {
return ptr_begin();
}
iterator begin() {
return iterator(ptr_begin());
}
const_iterator begin() const {
return const_iterator(ptr_begin());
}
const_iterator cbegin() const {
return iterator(ptr_begin());
}
iterator end() {
return iterator(ptr_end());
}
const_iterator end() const {
return const_iterator(ptr_end());
}
const_iterator cend() const {
return const_iterator(ptr_end());
}
reverse_iterator rbegin() {
return reverse_iterator(end());
}
const_reverse_iterator rbegin() const {
return reverse_iterator(end());
}
const_reverse_iterator crbegin() const {
return reverse_iterator(end());
}
reverse_iterator rend() {
return reverse_iterator(begin());
}
const_reverse_iterator rend() const {
return reverse_iterator(begin());
}
const_reverse_iterator crend() const {
return reverse_iterator(begin());
}
bool empty() const {
return ptr_begin() == ptr_end();
}
size_type size() const {
return ptr_end() - ptr_begin();
}
constexpr size_type max_size() const {
return max_elements;
}
constexpr size_type capacity() const {
return max_elements;
}
void clear() {
m_clear();
}
void push_back(const T& value) {
if (size() == capacity()) throw std::length_error("static_vector resized beyond capacity");
new (ptr_end()) value_type(value);
m_end = ptr_end() + 1;
}
void push_back(T&& value) {
if (size() == capacity()) throw std::length_error("static_vector resized beyond capacity");
new (ptr_end()) value_type(std::move(value));
m_end = ptr_end() + 1;
}
template<typename... args_T>
void emplace_back(args_T&&... args) {
if (size() == capacity()) throw std::length_error("static_vector resized beyond capacity");
new (ptr_end()) value_type(std::forward<args_T>(args)...);
m_end = ptr_end() + 1;
}
void pop_back() {
m_destroy(ptr_end() - 1);
--m_end;
}
iterator erase(const iterator pos) {
for (pointer i = pos.ptr;;) {
pointer ni = i + 1;
if (ni == m_end) {
m_destroy(i);
m_end = i;
return pos;
}
*i = std::move(*ni);
i = ni;
}
}
};
}
#endif