forked from stephentu/silo
-
Notifications
You must be signed in to change notification settings - Fork 2
/
static_vector.h
407 lines (339 loc) · 6.58 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
#ifndef _STATIC_VECTOR_H_
#define _STATIC_VECTOR_H_
#include <algorithm>
#include <type_traits>
#include "macros.h"
#include "ndb_type_traits.h"
template <typename T, size_t StaticSize = SMALL_SIZE_VEC>
class static_vector {
static const bool is_trivially_destructible =
private_::is_trivially_destructible<T>::value;
// std::is_trivially_copyable not supported in g++-4.7
static const bool is_trivially_copyable = std::is_scalar<T>::value;
public:
typedef T value_type;
typedef T & reference;
typedef const T & const_reference;
typedef size_t size_type;
inline static_vector() : n(0) {}
inline ~static_vector() { clear(); }
inline static_vector(const static_vector &that)
: n(0)
{
assignFrom(that);
}
// not efficient, don't use in performance critical parts
static_vector(std::initializer_list<T> l)
: n(0)
{
for (auto &p : l)
push_back(p);
}
static_vector &
operator=(const static_vector &that)
{
assignFrom(that);
return *this;
}
inline size_t
size() const
{
return n;
}
inline bool
empty() const
{
return !n;
}
inline reference
front()
{
INVARIANT(n > 0);
INVARIANT(n <= StaticSize);
return *ptr();
}
inline const_reference
front() const
{
return const_cast<static_vector *>(this)->front();
}
inline reference
back()
{
INVARIANT(n > 0);
INVARIANT(n <= StaticSize);
return ptr()[n - 1];
}
inline const_reference
back() const
{
return const_cast<static_vector *>(this)->back();
}
inline void
pop_back()
{
INVARIANT(n > 0);
if (!is_trivially_destructible)
ptr()[n - 1].~T();
n--;
}
inline void
push_back(const T &obj)
{
emplace_back(obj);
}
inline void
push_back(T &&obj)
{
emplace_back(std::move(obj));
}
// C++11 goodness- a strange syntax this is
template <class... Args>
inline void
emplace_back(Args &&... args)
{
INVARIANT(n < StaticSize);
new (&(ptr()[n++])) T(std::forward<Args>(args)...);
}
inline reference
operator[](int i)
{
return ptr()[i];
}
inline const_reference
operator[](int i) const
{
return const_cast<static_vector *>(this)->operator[](i);
}
void
clear()
{
if (!is_trivially_destructible)
for (size_t i = 0; i < n; i++)
ptr()[i].~T();
n = 0;
}
inline void
reserve(size_t n)
{
}
inline void
resize(size_t n, value_type val = value_type())
{
INVARIANT(n <= StaticSize);
if (n > this->n) {
// expand
while (this->n < n)
new (&ptr()[this->n++]) T(val);
} else if (n < this->n) {
// shrink
while (this->n > n) {
if (!is_trivially_destructible)
ptr()[this->n - 1].~T();
this->n--;
}
}
}
// non-standard API
inline bool is_small_type() const { return true; }
template <typename Compare = std::less<T>>
inline void
sort(Compare c = Compare())
{
std::sort(begin(), end(), c);
}
private:
template <typename ObjType>
class iterator_ : public std::iterator<std::bidirectional_iterator_tag, ObjType> {
friend class static_vector;
public:
inline iterator_() : p(0) {}
template <typename O>
inline iterator_(const iterator_<O> &other)
: p(other.p)
{}
inline ObjType &
operator*() const
{
return *p;
}
inline ObjType *
operator->() const
{
return p;
}
inline bool
operator==(const iterator_ &o) const
{
return p == o.p;
}
inline bool
operator!=(const iterator_ &o) const
{
return !operator==(o);
}
inline bool
operator<(const iterator_ &o) const
{
return p < o.p;
}
inline bool
operator>=(const iterator_ &o) const
{
return !operator<(o);
}
inline bool
operator>(const iterator_ &o) const
{
return p > o.p;
}
inline bool
operator<=(const iterator_ &o) const
{
return !operator>(o);
}
inline iterator_ &
operator+=(int n)
{
p += n;
return *this;
}
inline iterator_ &
operator-=(int n)
{
p -= n;
return *this;
}
inline iterator_
operator+(int n) const
{
iterator_ cpy = *this;
return cpy += n;
}
inline iterator_
operator-(int n) const
{
iterator_ cpy = *this;
return cpy -= n;
}
inline intptr_t
operator-(const iterator_ &o) const
{
return p - o.p;
}
inline iterator_ &
operator++()
{
++p;
return *this;
}
inline iterator_
operator++(int)
{
iterator_ cur = *this;
++(*this);
return cur;
}
inline iterator_ &
operator--()
{
--p;
return *this;
}
inline iterator_
operator--(int)
{
iterator_ cur = *this;
--(*this);
return cur;
}
protected:
inline iterator_(ObjType *p) : p(p) {}
private:
ObjType *p;
};
public:
typedef iterator_<T> iterator;
typedef iterator_<const T> const_iterator;
typedef std::reverse_iterator<iterator> reverse_iterator;
typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
inline iterator
begin()
{
return iterator(ptr());
}
inline const_iterator
begin() const
{
return const_iterator(ptr());
}
inline iterator
end()
{
return iterator(endptr());
}
inline const_iterator
end() const
{
return const_iterator(endptr());
}
inline reverse_iterator
rbegin()
{
return reverse_iterator(end());
}
inline const_reverse_iterator
rbegin() const
{
return const_reverse_iterator(end());
}
inline reverse_iterator
rend()
{
return reverse_iterator(begin());
}
inline const_reverse_iterator
rend() const
{
return const_reverse_iterator(begin());
}
private:
void
assignFrom(const static_vector &that)
{
if (unlikely(this == &that))
return;
clear();
INVARIANT(that.n <= StaticSize);
if (is_trivially_copyable) {
NDB_MEMCPY(ptr(), that.ptr(), that.n * sizeof(T));
} else {
for (size_t i = 0; i < that.n; i++)
new (&(ptr()[i])) T(that.ptr()[i]);
}
n = that.n;
}
inline ALWAYS_INLINE T *
ptr()
{
return reinterpret_cast<T *>(&elems_buf[0]);
}
inline ALWAYS_INLINE const T *
ptr() const
{
return reinterpret_cast<const T *>(&elems_buf[0]);
}
inline ALWAYS_INLINE T *
endptr()
{
return ptr() + n;
}
inline ALWAYS_INLINE const T *
endptr() const
{
return ptr() + n;
}
size_t n;
char elems_buf[sizeof(T) * StaticSize];
};
#endif /* _STATIC_VECTOR_H_ */