36#ifndef IMT_BASE_CORE_UTIL_POOL_ALLOCATOR_H
37#define IMT_BASE_CORE_UTIL_POOL_ALLOCATOR_H
105 return m_pFreeList ==
nullptr;
162 std::array<
uint8_t,
sizeof(T)> m_data;
173 void const* m_pEndAddr;
176 void const* m_pStartAddr;
179 size_t const m_capacity;
183 std::size_t m_itemCount;
188 static_assert(
sizeof(T) ==
sizeof(Node),
"Node size missmatch");
189 static_assert(
sizeof(T) >=
sizeof(Node*),
"Node size missmatch");
197 m_pFreeList {
reinterpret_cast<Node*
>(pool)},
199 m_pEndAddr {&pool[poolSize]},
201 m_capacity {poolSize},
203 memset(pool, 0, poolSize);
205 if (m_pFreeList !=
nullptr) {
207 for (
size_t i {0}; i < (poolSize - 1); ++i) {
209 m_pFreeList[i].m_pNext = &m_pFreeList[i + 1];
212 m_pFreeList[poolSize - 1].m_pNext =
nullptr;
218 if (m_pFreeList ==
nullptr) {
222 Node*
const pNext {m_pFreeList->m_pNext};
224 if (!std::is_trivially_copyable<T>::value) {
229 T*
const pReturn {
new (m_pFreeList) T};
237 T*
const pReturn {
reinterpret_cast<T*
>(&m_pFreeList->m_data)};
246 ASSERT_EX1(
nullptr != obj,
"passed nullptr to ObjectPoolAllocator::deallocate");
251 if (!std::is_trivially_copyable<T>::value) {
255 Node*
const pNode {
reinterpret_cast<Node*
>(obj)};
256 pNode->m_pNext = m_pFreeList;
void ASSERT_EX(bool const condition) noexcept
void ASSERT_EX1(bool const condition, char_t const *const pMessage) noexcept
"Assert and throw exception" (ASSERT_EX).
fixed size pool allocator
void const * endAddr() const noexcept
returns the last valid item address in the pool allocator
bool isFull() const noexcept
get is allocator full flag
void const * startAddr() const noexcept
returns the start address
T * allocate() noexcept
Instantiates an object out of the memory pool.
void deallocate(T *const obj) noexcept
Deallocates the pool memory pointed by obj.
PoolAllocator(T pool[], size_t poolSize) noexcept
Ctor.
size_t remainingSize() const noexcept
return the remaining size of Ts
static size_t getValueSize() noexcept
get size of T
size_t capacity() const noexcept
return the maixmal size
This is a application specific file which is used to configure Imt.Base.Core.Math.