-
Notifications
You must be signed in to change notification settings - Fork 0
/
SlotArray.h
455 lines (399 loc) · 13 KB
/
SlotArray.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
/*
Made by Mauricius
Part of my MUtilize repo: https://github.com/LegendaryMauricius/MUtilize
*/
#pragma once
#ifndef _SLOT_ARRAY_H
#define _SLOT_ARRAY_H
#include <vector>
#include <stdexcept>
/*
A random access class with the ability to free positions that are taken and find positions that are free without
invalidating iterators and references to taken positions.
Accessing a slot will automatically take it. If it was free before accessing it the iterators and references will be invalidated.
*/
template <class _T, class _Alloc = std::allocator<_T> >
class SlotArray
{
private:
std::vector<_T, _Alloc> mSlots;
std::vector<unsigned char> mAreSlotsFree;// Whether a slot is free
size_t mSize;
public:
using value_type = _T;
using allocator_type = _Alloc;
using pointer = _T*;
using const_pointer = const _T*;
using reference = _T&;
using const_reference = const _T&;
using size_type = size_t;
using difference_type = std::ptrdiff_t;
/*
Iterator definitions
*/
// normal iterator. This one gets invalidated when the array's capacity changes
template<class _ItT>
class _IteratorImpl {
public:
using iterator_category = std::bidirectional_iterator_tag;
using value_type = _ItT;
using difference_type = std::ptrdiff_t;
using pointer = _IteratorImpl::value_type*;
using reference = _IteratorImpl::value_type&;
using const_pointer = const _IteratorImpl::value_type*;
using const_reference = const _IteratorImpl::value_type&;
private:
_IteratorImpl::value_type* mElement;
const unsigned char* mElementFree;
public:
inline _IteratorImpl() noexcept {}
inline _IteratorImpl(const _IteratorImpl<_IteratorImpl::value_type>& it) noexcept :
mElement(it.mElement),
mElementFree(it.mElementFree)
{}
inline _IteratorImpl(_IteratorImpl::value_type* element, const unsigned char* elementFree) noexcept :
mElement(element),
mElementFree(elementFree)
{
}
inline _IteratorImpl::value_type* operator->() const {
return mElement;
}
inline _IteratorImpl::reference operator*() const {
return *mElement;
}
inline _IteratorImpl<_IteratorImpl::value_type>& operator=(const _IteratorImpl<_IteratorImpl::value_type>& it) noexcept {
mElementFree = it.mElementFree;
mElement = it.mElement;
return *this;
}
// This can be used to calculate the element's index in the array
inline _IteratorImpl::difference_type operator-(const _IteratorImpl<_IteratorImpl::value_type>& it) const noexcept {
return (mElement - it.mElement);
}
inline _IteratorImpl<_IteratorImpl::value_type>& operator++() noexcept {
do {
mElement++;
mElementFree++;
} while (*mElementFree);
return *this;
}
inline _IteratorImpl<_IteratorImpl::value_type>& operator--() noexcept {
do {
mElement--;
mElementFree--;
} while (*mElementFree);
return *this;
}
inline _IteratorImpl<_IteratorImpl::value_type> operator++(int) noexcept {
_IteratorImpl<_IteratorImpl::value_type> old = *this;
(*this)++;
return old;
}
inline _IteratorImpl<_IteratorImpl::value_type> operator--(int) noexcept {
_IteratorImpl<_IteratorImpl::value_type> old = *this;
(*this)--;
return old;
}
inline bool operator==(const _IteratorImpl<_IteratorImpl::value_type>& it) const noexcept {
return mElement == it.mElement;
}
inline bool operator!=(const _IteratorImpl<_IteratorImpl::value_type>& it) const noexcept {
return mElement != it.mElement;
}
inline bool operator<(const _IteratorImpl<_IteratorImpl::value_type>& it) const noexcept {
return (mElement < it.mElement);
}
inline bool operator>(const _IteratorImpl<_IteratorImpl::value_type>& it) const noexcept {
return (mElement > it.mElement);
}
inline bool operator<=(const _IteratorImpl<_IteratorImpl::value_type>& it) const noexcept {
return (mElement <= it.mElement);
}
inline bool operator>=(const _IteratorImpl<_IteratorImpl::value_type>& it) const noexcept {
return (mElement >= it.mElement);
}
inline operator bool() const noexcept {
return mElement;
}
};
// persistent iterator, that is not invalidated as long as it's in the range
friend class _PersistentIteratorImpl;
template<class _ItT>
class _PersistentIteratorImpl {
public:
using iterator_category = std::bidirectional_iterator_tag;
using value_type = _ItT;
using difference_type = std::ptrdiff_t;
using pointer = _PersistentIteratorImpl::value_type*;
using reference = _PersistentIteratorImpl::value_type;
private:
SlotArray<_T>* mOwner;
size_t mInd;
public:
inline _PersistentIteratorImpl() noexcept {}
inline _PersistentIteratorImpl(const _PersistentIteratorImpl<_PersistentIteratorImpl::value_type>& it) noexcept :
mOwner(it.mOwner),
mInd(it.mInd)
{}
inline _PersistentIteratorImpl(size_t id, SlotArray<_T>* owner) noexcept :
mInd(id),
mOwner(owner)
{
}
inline _PersistentIteratorImpl::value_type* operator->() const {
return &mOwner[mInd];
}
inline _PersistentIteratorImpl::reference operator*() const {
return mOwner[mInd];
}
inline _PersistentIteratorImpl::reference operator[](size_t offset) const {
return mOwner[offset];
}
inline _PersistentIteratorImpl<_PersistentIteratorImpl::value_type>& operator=(const _PersistentIteratorImpl<_PersistentIteratorImpl::value_type>& it) noexcept {
mInd = it.mInd;
mOwner = it.mOwner;
return *this;
}
inline _PersistentIteratorImpl::difference_type operator-(const _PersistentIteratorImpl<_PersistentIteratorImpl::value_type>& it) const noexcept {
return mInd - it.mInd;
}
inline _PersistentIteratorImpl<_PersistentIteratorImpl::value_type>& operator++() noexcept {
do {
mInd++;
} while (mOwner->isSlotFree(mInd) && mInd != mOwner->slotCount());
return *this;
}
inline _PersistentIteratorImpl<_PersistentIteratorImpl::value_type>& operator--() noexcept {
do
{
mInd--;
} while (mOwner->isSlotFree(mInd));
return *this;
}
inline _PersistentIteratorImpl<_PersistentIteratorImpl::value_type> operator++(int) noexcept {
_PersistentIteratorImpl<_PersistentIteratorImpl::value_type> old = *this;
(*this)++;
return old;
}
inline _PersistentIteratorImpl<_PersistentIteratorImpl::value_type> operator--(int) noexcept {
_PersistentIteratorImpl<_PersistentIteratorImpl::value_type> old = *this;
(*this)--;
return old;
}
inline bool operator==(const _PersistentIteratorImpl<_PersistentIteratorImpl::value_type>& it) const noexcept {
return mInd == it.mInd;
}
inline bool operator!=(const _PersistentIteratorImpl<_PersistentIteratorImpl::value_type>& it) const noexcept {
return mInd != it.mInd;
}
inline bool operator<(const _PersistentIteratorImpl<_PersistentIteratorImpl::value_type>& it) const noexcept {
return mInd < it.mInd;
}
inline bool operator>(const _PersistentIteratorImpl<_PersistentIteratorImpl::value_type>& it) const noexcept {
return mInd > it.mInd;
}
inline bool operator<=(const _PersistentIteratorImpl<_PersistentIteratorImpl::value_type>& it) const noexcept {
return mInd <= it.mInd;
}
inline bool operator>=(const _PersistentIteratorImpl<_PersistentIteratorImpl::value_type>& it) const noexcept {
return mInd >= it.mInd;
}
inline operator bool() const noexcept {
return mOwner->mSlots.begin() + mInd;
}
};
using iterator = _IteratorImpl<value_type>;
using const_iterator = _IteratorImpl<const value_type>;
using reverse_iterator = std::reverse_iterator<iterator>;
using const_reverse_iterator = std::reverse_iterator<const_iterator>;
using persistent_iterator = _PersistentIteratorImpl<value_type>;
using const_persistent_iterator = _PersistentIteratorImpl<const value_type>;
using reverse_persistent_iterator = std::reverse_iterator<persistent_iterator>;
using const_reverse_persistent_iterator = std::reverse_iterator<const_persistent_iterator>;
/*
Actual SlotArray methods
*/
static const size_t no_index = -1;
SlotArray():
mSize(0)
{
mAreSlotsFree.push_back(false);// The slot past the mSlots buffer isn't really free, so we mark it as that
}
_T& operator[](size_t slot)
{
if (slot >= mSlots.size())
{
mSlots.reserve(slot + 1);
mAreSlotsFree.reserve(slot + 1);
for (int i = mSlots.size(); i < slot; i++)
{
mSlots.push_back(_T());
mAreSlotsFree.back() = true;
mAreSlotsFree.push_back(false);// Keep one non-free slot past the mSlots buffer
}
mSlots.push_back(_T());
mAreSlotsFree.push_back(false);
mSize++;
return mSlots.back();
}
else
{
if (mAreSlotsFree[slot]) mSize++;
mAreSlotsFree[slot] = false;
return mSlots[slot];
}
}
const _T& operator[](size_t slot) const
{
if (slot < mSlots.size() && !mAreSlotsFree[slot])
{
return mSlots[slot];
}
else
{
throw std::out_of_range("Trying to access a free slot of a const SlotArray. "
"Accessing the slot's content would need to take the slot first, which is impossible since the SlotArray is const.");
}
}
size_t getFreeSlot() const
{
for (size_t i = 0; i < mSlots.size(); i++) {
if (mAreSlotsFree[i])
return i;
}
return mSlots.size();
}
void freeSlot(size_t slot)
{
if (slot < mSlots.size() && !mAreSlotsFree[slot]) {
mAreSlotsFree[slot] = true;
mSize--;
while (mAreSlotsFree.size() && mAreSlotsFree.back()) {
mSlots.pop_back();
mAreSlotsFree.pop_back();
}
}
}
void clear()
{
mSlots.clear();
mAreSlotsFree.clear();
mAreSlotsFree.push_back(false);
mSize = 0;
}
bool isSlotFree(size_t slot) const
{
if (slot < mSlots.size())
return mAreSlotsFree[slot];
return true;
}
size_t find(const _T& a) const
{
for (int i = 0; i < mSlots.size(); i++)
{
if (mSlots[i] == a) return i;
}
return no_index;
}
size_t slotCount() const
{
return mSlots.size();
}
size_t size() const
{
return mSize;
}
SlotArray<_T, _Alloc> operator=(const SlotArray<_T, _Alloc>& other)
{
mSlots = other.mSlots;
mAreSlotsFree = other.mAreSlotsFree;
mSize = other.mSize;
return *this;
}
/*
Normal iterators
*/
inline iterator begin() noexcept {
return iterator(mSlots.data(), mAreSlotsFree.data());
}
inline iterator end() noexcept {
return iterator(mSlots.data() + slotCount(), mAreSlotsFree.data() + slotCount());
}
inline const_iterator begin() const noexcept {
return const_iterator(mSlots.data(), mAreSlotsFree.data());
}
inline const_iterator end() const noexcept {
return const_iterator(mSlots.data() + slotCount(), mAreSlotsFree.data() + slotCount());
}
inline const_iterator cbegin() const noexcept {
return begin();
}
inline const_iterator cend() const noexcept {
return end();
}
/*
Reverse iterators
*/
inline reverse_iterator rbegin() noexcept {
return reverse_iterator(end());
}
inline reverse_iterator rend() noexcept {
return reverse_iterator(begin());
}
inline const_reverse_iterator rbegin() const noexcept {
return reverse_iterator(end());
}
inline const_reverse_iterator rend() const noexcept {
return reverse_iterator(begin());
}
inline const_reverse_iterator crbegin() const noexcept {
return reverse_iterator(cend());
}
inline const_reverse_iterator crend() const noexcept {
return reverse_iterator(cbegin());
}
/*
Persistent iterators
*/
inline persistent_iterator persistent_begin() noexcept {
return persistent_iterator(0, this);
}
inline persistent_iterator persistent_end() noexcept {
return persistent_iterator(mSlots.size(), this);
}
inline const_persistent_iterator persistent_begin() const noexcept {
return const_persistent_iterator(0, this);
}
inline const_persistent_iterator persistent_end() const noexcept {
return const_persistent_iterator(mSlots.size(), this);
}
inline const_persistent_iterator persistent_cbegin() const noexcept {
return persistent_begin();
}
inline const_persistent_iterator persistent_cend() const noexcept {
return persistent_end();
}
/*
Reverse persistent iterators
*/
inline reverse_persistent_iterator persistent_rbegin() noexcept {
return reverse_persistent_iterator(persistent_end());
}
inline reverse_persistent_iterator persistent_rend() noexcept {
return reverse_persistent_iterator(persistent_begin());
}
inline const_reverse_persistent_iterator persistent_rbegin() const noexcept {
return reverse_persistent_iterator(persistent_end());
}
inline const_reverse_persistent_iterator persistent_rend() const noexcept {
return reverse_persistent_iterator(persistent_begin());
}
inline const_reverse_persistent_iterator persistent_crbegin() const noexcept {
return reverse_persistent_iterator(persistent_cend());
}
inline const_reverse_persistent_iterator persistent_crend() const noexcept {
return reverse_persistent_iterator(persistent_cbegin());
}
};
#endif