-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathresizablestorage.h
78 lines (62 loc) · 1.87 KB
/
resizablestorage.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
#ifndef JWUTIL_RESIZABLESTORAGE_H
#define JWUTIL_RESIZABLESTORAGE_H
#include <assert.h>
#include <algorithm>
namespace jw_util
{
template <typename DataType, bool fill_zero = false>
class ResizableStorage
{
public:
ResizableStorage()
: data(0)
, size(0)
{}
ResizableStorage(unsigned int init_size)
: data(new DataType[init_size])
, size(init_size)
{
if (fill_zero)
{
std::fill_n(data, init_size, static_cast<DataType>(0));
}
}
template <typename... UpdatePtrs>
void resize(unsigned int new_size, UpdatePtrs &... ptrs)
{
if (new_size <= size) {return;}
unsigned int new_size_2 = size + (size / 2);
if (new_size < new_size_2) {new_size = new_size_2;}
DataType *new_data = new DataType[new_size];
std::move(data, data + size, new_data);
if (fill_zero)
{
std::fill(new_data + size, new_data + new_size, static_cast<DataType>(0));
}
update_ptrs(reinterpret_cast<const char *>(data), reinterpret_cast<char *>(new_data), ptrs...);
delete[] data;
data = new_data;
size = new_size;
}
DataType *begin() const {return data;}
DataType *end() const {return data + size;}
private:
DataType *data;
unsigned int size;
template <typename PtrType, typename... UpdatePtrs>
#ifdef NDEBUG
static
#endif
void update_ptrs(const char *old_data, char *new_data, PtrType *&ptr, UpdatePtrs &... rest)
{
unsigned int offset = reinterpret_cast<const char *>(ptr) - old_data;
#ifndef NDEBUG
assert(offset <= size * sizeof(DataType));
#endif
ptr = reinterpret_cast<PtrType *>(new_data + offset);
update_ptrs(old_data, new_data, rest...);
}
static void update_ptrs(const char *old_data, char *new_data) {}
};
}
#endif // JWUTIL_RESIZABLESTORAGE_H