3#ifndef TRAM_SDK_TEMPLATES_POOL_H
4#define TRAM_SDK_TEMPLATES_POOL_H
46 constexpr Pool(
const char* name, uint64_t initialSize) {
52 first =
static_cast<T*
>(::operator
new((initialSize *
sizeof(T)) +
sizeof(uint64_t) * 2));
61 *((uint64_t*)
last) = 0;
62 *(((uint64_t*)
last) + 1) = 0;
65 constexpr Pool(
const char* name, uint64_t initialSize, std::initializer_list<T> list) :
Pool(name, initialSize) {
66 for (
const auto& entry : list) {
72 template <
typename... Args>
75 std::cout <<
"Pool " <<
poolName <<
" out of space!" << std::endl;
83 uint64_t* skip =
reinterpret_cast<uint64_t*
>(
lastfree);
85 T** skip2 =
reinterpret_cast<T**
>(skip);
92 *((uint64_t*)
last) = 0;
93 *(((uint64_t*)
last) + 1) = 0;
96 new(newobj) T(std::forward<Args>(args)...);
104 assert(removeptr >=
first && removeptr <
last);
106 uint64_t* skip =
reinterpret_cast<uint64_t*
>(removeptr);
109 T** nextfree =
reinterpret_cast<T**
>(skip);
125 return ptr >=
first && ptr <=
last && *((uint64_t*)ptr) != 0;
129 static_assert(
sizeof(T) >=
sizeof(T*) +
sizeof(uint64_t));
136 template <
typename... Args>
137 static T*
New(Args&&... args){
return pool.AddNew(std::forward<Args>(args)...);}
154 explicit operator bool() {
return ptr !=
nullptr; }
constexpr Pool(const char *name, uint64_t initialSize, std::initializer_list< T > list)
Definition: pool.h:65
T * lastfree
Definition: pool.h:28
bool validate(const T *ptr) const
Checks if an object can be accessed through iteration.
Definition: pool.h:124
T * AddNew(Args &&... args)
Definition: pool.h:73
uint64_t poolSize
Definition: pool.h:24
T * last
Definition: pool.h:27
iterator end()
Definition: pool.h:118
constexpr Pool(const char *name, uint64_t initialSize)
Definition: pool.h:46
void Remove(T *removeptr)
Definition: pool.h:103
T * GetLast()
Definition: pool.h:116
std::string poolName
Definition: pool.h:23
size_t index(const T *ptr) const
Definition: pool.h:121
iterator begin()
Definition: pool.h:117
uint64_t maxSize
Definition: pool.h:25
T * first
Definition: pool.h:26
T & operator[](size_t index)
Definition: pool.h:114
T * GetFirst()
Definition: pool.h:115
size_t size() const
Definition: pool.h:120
size_t GetSize() const
Definition: pool.h:119
static void Delete(T *obj)
Definition: pool.h:138
static Pool< T > & GetPool()
Definition: pool.h:139
static T * New(Args &&... args)
Definition: pool.h:137
static Pool< T > pool
Definition: pool.h:141
T * GetResource()
Definition: pool.h:151
T * operator->()
Definition: pool.h:152
~PoolPtr()
Definition: pool.h:150
T & operator*()
Definition: pool.h:153
T * ptr
Definition: pool.h:156
PoolPtr()
Definition: pool.h:149
iterator(T *ptr)
Definition: pool.h:31
T * operator->()
Definition: pool.h:34
friend bool operator!=(const iterator &a, const iterator &b)
Definition: pool.h:41
T * ptr
Definition: pool.h:41
friend bool operator==(const iterator &a, const iterator &b)
Definition: pool.h:40
iterator operator++(int)
Definition: pool.h:38
T & operator*() const
Definition: pool.h:33
iterator & operator++()
Definition: pool.h:36