forked from stephentu/silo
-
Notifications
You must be signed in to change notification settings - Fork 2
/
small_vector.h
648 lines (555 loc) · 12 KB
/
small_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
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
#ifndef _SMALL_VECTOR_H_
#define _SMALL_VECTOR_H_
#include <algorithm>
#include <vector>
#include <type_traits>
#include "macros.h"
#include "ndb_type_traits.h"
/**
* References are not guaranteed to be stable across mutation
*
* XXX(stephentu): allow custom allocator
*/
template <typename T, size_t SmallSize = SMALL_SIZE_VEC>
class small_vector {
typedef std::vector<T> large_vector_type;
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;
small_vector() : n(0), large_elems(0) {}
~small_vector()
{
clearDestructive();
}
small_vector(const small_vector &that)
: n(0), large_elems(0)
{
assignFrom(that);
}
// not efficient, don't use in performance critical parts
small_vector(std::initializer_list<T> l)
: n(0), large_elems(nullptr)
{
if (l.size() > SmallSize) {
large_elems = new large_vector_type(l);
} else {
for (auto &p : l)
push_back(p);
}
}
small_vector &
operator=(const small_vector &that)
{
assignFrom(that);
return *this;
}
inline size_t
size() const
{
if (unlikely(large_elems))
return large_elems->size();
return n;
}
inline bool
empty() const
{
return size() == 0;
}
inline reference
front()
{
if (unlikely(large_elems))
return large_elems->front();
INVARIANT(n > 0);
INVARIANT(n <= SmallSize);
return *ptr();
}
inline const_reference
front() const
{
return const_cast<small_vector *>(this)->front();
}
inline reference
back()
{
if (unlikely(large_elems))
return large_elems->back();
INVARIANT(n > 0);
INVARIANT(n <= SmallSize);
return ptr()[n - 1];
}
inline const_reference
back() const
{
return const_cast<small_vector *>(this)->back();
}
inline void
pop_back()
{
if (unlikely(large_elems)) {
large_elems->pop_back();
return;
}
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)
{
if (unlikely(large_elems)) {
INVARIANT(!n);
large_elems->emplace_back(std::forward<Args>(args)...);
return;
}
if (unlikely(n == SmallSize)) {
large_elems = new large_vector_type(ptr(), ptr() + n);
large_elems->emplace_back(std::forward<Args>(args)...);
n = 0;
return;
}
INVARIANT(n < SmallSize);
new (&(ptr()[n++])) T(std::forward<Args>(args)...);
}
inline reference
operator[](int i)
{
if (unlikely(large_elems))
return large_elems->operator[](i);
return ptr()[i];
}
inline const_reference
operator[](int i) const
{
return const_cast<small_vector *>(this)->operator[](i);
}
void
clear()
{
if (unlikely(large_elems)) {
INVARIANT(!n);
large_elems->clear();
return;
}
if (!is_trivially_destructible)
for (size_t i = 0; i < n; i++)
ptr()[i].~T();
n = 0;
}
inline void
reserve(size_t n)
{
if (unlikely(large_elems))
large_elems->reserve(n);
}
// non-standard API
inline bool is_small_type() const { return !large_elems; }
template <typename Compare = std::less<T>>
inline void
sort(Compare c = Compare())
{
if (unlikely(large_elems))
std::sort(large_elems->begin(), large_elems->end(), c);
else
std::sort(small_begin(), small_end(), c);
}
private:
void
clearDestructive()
{
if (unlikely(large_elems)) {
INVARIANT(!n);
delete large_elems;
large_elems = NULL;
return;
}
if (!is_trivially_destructible)
for (size_t i = 0; i < n; i++)
ptr()[i].~T();
n = 0;
}
template <typename ObjType>
class small_iterator_ : public std::iterator<std::bidirectional_iterator_tag, ObjType> {
friend class small_vector;
public:
inline small_iterator_() : p(0) {}
template <typename O>
inline small_iterator_(const small_iterator_<O> &other)
: p(other.p)
{}
inline ObjType &
operator*() const
{
return *p;
}
inline ObjType *
operator->() const
{
return p;
}
inline bool
operator==(const small_iterator_ &o) const
{
return p == o.p;
}
inline bool
operator!=(const small_iterator_ &o) const
{
return !operator==(o);
}
inline bool
operator<(const small_iterator_ &o) const
{
return p < o.p;
}
inline bool
operator>=(const small_iterator_ &o) const
{
return !operator<(o);
}
inline bool
operator>(const small_iterator_ &o) const
{
return p > o.p;
}
inline bool
operator<=(const small_iterator_ &o) const
{
return !operator>(o);
}
inline small_iterator_ &
operator+=(int n)
{
p += n;
return *this;
}
inline small_iterator_ &
operator-=(int n)
{
p -= n;
return *this;
}
inline small_iterator_
operator+(int n) const
{
small_iterator_ cpy = *this;
return cpy += n;
}
inline small_iterator_
operator-(int n) const
{
small_iterator_ cpy = *this;
return cpy -= n;
}
inline intptr_t
operator-(const small_iterator_ &o) const
{
return p - o.p;
}
inline small_iterator_ &
operator++()
{
++p;
return *this;
}
inline small_iterator_
operator++(int)
{
small_iterator_ cur = *this;
++(*this);
return cur;
}
inline small_iterator_ &
operator--()
{
--p;
return *this;
}
inline small_iterator_
operator--(int)
{
small_iterator_ cur = *this;
--(*this);
return cur;
}
protected:
inline small_iterator_(ObjType *p) : p(p) {}
private:
ObjType *p;
};
template <typename ObjType, typename SmallTypeIter, typename LargeTypeIter>
class iterator_ : public std::iterator<std::bidirectional_iterator_tag, ObjType> {
friend class small_vector;
public:
inline iterator_() : large(false) {}
template <typename O, typename S, typename L>
inline iterator_(const iterator_<O, S, L> &other)
: large(other.large),
small_it(other.small_it),
large_it(other.large_it)
{}
inline ObjType &
operator*() const
{
if (unlikely(large))
return *large_it;
return *small_it;
}
inline ObjType *
operator->() const
{
if (unlikely(large))
return &(*large_it);
return &(*small_it);
}
inline bool
operator==(const iterator_ &o) const
{
if (unlikely(large))
return large_it == o.large_it;
return small_it == o.small_it;
}
inline bool
operator!=(const iterator_ &o) const
{
return !operator==(o);
}
inline bool
operator<(const iterator_ &o) const
{
if (unlikely(large))
return large_it < o.large_it;
return small_it < o.small_it;
}
inline bool
operator>=(const iterator_ &o) const
{
return !operator<(o);
}
inline bool
operator>(const iterator_ &o) const
{
if (unlikely(large))
return large_it > o.large_it;
return small_it > o.small_it;
}
inline bool
operator<=(const iterator_ &o) const
{
return !operator>(o);
}
inline iterator_ &
operator+=(int n)
{
if (unlikely(large))
large_it += n;
else
small_it += n;
return *this;
}
inline iterator_ &
operator-=(int n)
{
if (unlikely(large))
large_it -= n;
else
small_it -= 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
{
if (unlikely(large))
return large_it - o.large_it;
else
return small_it - o.small_it;
}
inline iterator_ &
operator++()
{
if (unlikely(large))
++large_it;
else
++small_it;
return *this;
}
inline iterator_
operator++(int)
{
iterator_ cur = *this;
++(*this);
return cur;
}
inline iterator_ &
operator--()
{
if (unlikely(large))
--large_it;
else
--small_it;
return *this;
}
inline iterator_
operator--(int)
{
iterator_ cur = *this;
--(*this);
return cur;
}
protected:
iterator_(SmallTypeIter small_it)
: large(false), small_it(small_it), large_it() {}
iterator_(LargeTypeIter large_it)
: large(true), small_it(), large_it(large_it) {}
private:
bool large;
SmallTypeIter small_it;
LargeTypeIter large_it;
};
typedef small_iterator_<T> small_iterator;
typedef small_iterator_<const T> const_small_iterator;
typedef typename large_vector_type::iterator large_iterator;
typedef typename large_vector_type::const_iterator const_large_iterator;
inline small_iterator
small_begin()
{
INVARIANT(!large_elems);
return small_iterator(ptr());
}
inline const_small_iterator
small_begin() const
{
INVARIANT(!large_elems);
return const_small_iterator(ptr());
}
inline small_iterator
small_end()
{
INVARIANT(!large_elems);
return small_iterator(ptr() + n);
}
inline const_small_iterator
small_end() const
{
INVARIANT(!large_elems);
return const_small_iterator(ptr() + n);
}
public:
typedef iterator_<T, small_iterator, large_iterator> iterator;
typedef iterator_<const T, const_small_iterator, const_large_iterator> const_iterator;
typedef std::reverse_iterator<iterator> reverse_iterator;
typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
inline iterator
begin()
{
if (unlikely(large_elems))
return iterator(large_elems->begin());
return iterator(small_begin());
}
inline const_iterator
begin() const
{
if (unlikely(large_elems))
return const_iterator(large_elems->begin());
return const_iterator(small_begin());
}
inline iterator
end()
{
if (unlikely(large_elems))
return iterator(large_elems->end());
return iterator(small_end());
}
inline const_iterator
end() const
{
if (unlikely(large_elems))
return const_iterator(large_elems->end());
return const_iterator(small_end());
}
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 small_vector &that)
{
if (unlikely(this == &that))
return;
clearDestructive();
if (unlikely(that.large_elems)) {
large_elems = new large_vector_type(*that.large_elems);
} else {
INVARIANT(that.n <= SmallSize);
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 *>(&small_elems_buf[0]);
}
inline ALWAYS_INLINE const T *
ptr() const
{
return reinterpret_cast<const T *>(&small_elems_buf[0]);
}
size_t n;
char small_elems_buf[sizeof(T) * SmallSize];
large_vector_type *large_elems;
};
#endif /* _SMALL_VECTOR_H_ */