-
Notifications
You must be signed in to change notification settings - Fork 49
/
choc_PoolAllocator.h
218 lines (172 loc) · 7.47 KB
/
choc_PoolAllocator.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
//
// ██████ ██ ██ ██████ ██████
// ██ ██ ██ ██ ██ ██ ** Classy Header-Only Classes **
// ██ ███████ ██ ██ ██
// ██ ██ ██ ██ ██ ██ https://github.com/Tracktion/choc
// ██████ ██ ██ ██████ ██████
//
// CHOC is (C)2022 Tracktion Corporation, and is offered under the terms of the ISC license:
//
// Permission to use, copy, modify, and/or distribute this software for any purpose with or
// without fee is hereby granted, provided that the above copyright notice and this permission
// notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
// WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
// AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR
// CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
// WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
// CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#ifndef CHOC_POOL_HEADER_INCLUDED
#define CHOC_POOL_HEADER_INCLUDED
#include <memory>
#include <vector>
#include <array>
#include <cstdlib>
#include "../platform/choc_Assert.h"
namespace choc::memory
{
//==============================================================================
/**
A pool-based object allocator.
A pool provides a way to quickly allocate objects whose lifetimes are tied to
the lifetime of the pool rather than managed in the traditional ways.
Calling Pool::allocate() will return a reference to a new object which will
survive until the pool itself is later deleted or reset, at which point all
the objects will be destroyed.
Because all objects are allocated linearly from large heap blocks, allocation
has very low overhead and is compact. This class also doesn't attempt to be
thread-safe, which also helps to make it fast.
Obviously a pool doesn't suit all use-cases, but in situations where you need
to quickly allocate a large batch of objects and then use them for the lifetime of
a finite task, it can be a very efficient tool. It's especially helpful if the group
of objects have complicated ownership patterns which would make normal ownership
techniques cumbersome.
*/
class Pool
{
public:
Pool();
~Pool() = default;
Pool (Pool&&) = default;
Pool (const Pool&) = delete;
Pool& operator= (Pool&&) = default;
Pool& operator= (const Pool&) = delete;
/// Resets the pool, deleting all the objects that have been allocated.
void reset();
/// Returns a reference to a newly-constructed object in the pool.
/// The caller must not attempt to delete the object that is returned, it'll be
/// automatically deleted when the pool itself is reset or deleted.
template <typename ObjectType, typename... Args>
ObjectType& allocate (Args&&... constructorArgs);
/// Allocates a chunk of raw memory
void* allocateData (size_t numBytes);
/// Stores a copy of the given string in the pool, and returns a view of it.
/// The memory that it allocates is null-terminated, so the string_view can be
/// cast to a const char* if you need one.
std::string_view allocateString (std::string_view);
private:
//==============================================================================
static constexpr const size_t itemAlignment = 16;
static constexpr const size_t blockSize = 65536;
static constexpr size_t alignSize (size_t n) { return (n + (itemAlignment - 1u)) & ~(itemAlignment - 1u); }
struct Item;
struct Block
{
Block (size_t);
Block (Block&&);
Block (const Block&) = delete;
~Block();
bool hasSpaceFor (size_t size) const noexcept;
Item* getItem (size_t position) noexcept;
Item& allocateItem (size_t);
size_t nextItemOffset = 0, allocatedSize;
std::unique_ptr<char[]> space;
};
std::vector<Block> blocks;
void addBlock (size_t);
Item& allocateItem (size_t);
};
//==============================================================================
// _ _ _ _
// __| | ___ | |_ __ _ (_)| | ___
// / _` | / _ \| __| / _` || || |/ __|
// | (_| || __/| |_ | (_| || || |\__ \ _ _ _
// \__,_| \___| \__| \__,_||_||_||___/(_)(_)(_)
//
// Code beyond this point is implementation detail...
//
//==============================================================================
inline Pool::Pool() { reset(); }
inline void Pool::reset()
{
blocks.clear();
blocks.reserve (32);
addBlock (blockSize);
}
struct Pool::Item
{
size_t size;
using Destructor = void(void*);
Destructor* destructor;
static constexpr size_t getHeaderSize() { return alignSize (sizeof (Item)); }
static constexpr size_t getSpaceNeeded (size_t content) { return alignSize (getHeaderSize() + content); }
void* getItemData() noexcept { return reinterpret_cast<char*> (this) + getHeaderSize(); }
};
inline Pool::Block::Block (size_t size) : allocatedSize (size), space (new char[size]) {}
inline Pool::Block::Block (Block&& other)
: nextItemOffset (other.nextItemOffset),
allocatedSize (other.allocatedSize),
space (std::move (other.space))
{
other.nextItemOffset = 0;
}
inline Pool::Block::~Block()
{
for (size_t i = 0; i < nextItemOffset;)
{
auto item = getItem (i);
if (item->destructor != nullptr)
item->destructor (item->getItemData());
i += item->size;
}
}
inline bool Pool::Block::hasSpaceFor (size_t size) const noexcept { return nextItemOffset + size <= allocatedSize; }
inline Pool::Item* Pool::Block::getItem (size_t position) noexcept { return reinterpret_cast<Item*> (space.get() + position); }
inline Pool::Item& Pool::Block::allocateItem (size_t size)
{
auto i = getItem (nextItemOffset);
i->size = size;
i->destructor = nullptr;
nextItemOffset += size;
return *i;
}
inline void Pool::addBlock (size_t size) { blocks.push_back (Block (size)); }
inline Pool::Item& Pool::allocateItem (size_t size)
{
if (! blocks.back().hasSpaceFor (size))
addBlock (std::max (blockSize, size));
return blocks.back().allocateItem (size);
}
inline void* Pool::allocateData (size_t size)
{
return allocateItem (Item::getSpaceNeeded (size)).getItemData();
}
inline std::string_view Pool::allocateString (std::string_view s)
{
auto len = s.length();
auto space = static_cast<char*> (allocateData (len + 1));
std::memcpy (space, s.data(), len);
space[len] = 0;
return space;
}
template <typename ObjectType, typename... Args>
ObjectType& Pool::allocate (Args&&... constructorArgs)
{
static constexpr auto itemSize = Item::getSpaceNeeded (sizeof (ObjectType));
auto& newItem = allocateItem (itemSize);
auto allocatedObject = new (newItem.getItemData()) ObjectType (std::forward<Args> (constructorArgs)...);
if constexpr (! std::is_trivially_destructible<ObjectType>::value)
newItem.destructor = [] (void* t) { static_cast<ObjectType*> (t)->~ObjectType(); };
return *allocatedObject;
}
} // namespace choc::memory
#endif // CHOC_POOL_HEADER_INCLUDED