Tramway SDK v0.1.1
pool.h
Go to the documentation of this file.
1// Tramway Drifting and Dungeon Exploration Simulator SDK Runtime
2
3#ifndef TRAM_SDK_TEMPLATES_POOL_H
4#define TRAM_SDK_TEMPLATES_POOL_H
5
6#include <string>
7#include <iostream>
8#include <cassert>
9
10/* this is one of the oldest files in the library, hence why it looks so awful.
11 * it probably would be a good idea to clean up the code, but editing this file
12 * causes the whole library to re-compile and I don't really feel like doing it
13 * now. also adding this comment caused the whole library to recompile. also
14 * adding this bit at the end caused the library to re-compile. I should
15 * probably stop editing this file.
16 */
17
18namespace tram {
19
20template <typename T>
21class Pool {
22protected:
23 std::string poolName;
24 uint64_t poolSize;
25 uint64_t maxSize;
27 T* last;
29public:
30 struct iterator {
31 iterator(T* ptr) : ptr(ptr) {}
32
33 T& operator*() const { return *ptr; }
34 T* operator->() { return ptr; }
35
36 iterator& operator++() { do ptr++; while (*((uint64_t*)ptr) == 0 && *(((uint64_t*)ptr) + 1) != 0); return *this; }
37
38 iterator operator++(int) { iterator tmp = *this; ++(*this); return tmp; }
39
40 friend bool operator== (const iterator& a, const iterator& b) { return a.ptr == b.ptr; };
41 friend bool operator!= (const iterator& a, const iterator& b) { return a.ptr != b.ptr; };
42
43 T* ptr;
44 };
45
46 constexpr Pool(const char* name, uint64_t initialSize/*, bool skipFirst = false*/) {
47 poolName = name;
48 maxSize = initialSize;
49 //poolSize = skipFirst ? 1 : 0;
50 poolSize = 0;
51
52 first = static_cast<T*>(::operator new((initialSize * sizeof(T)) + sizeof(uint64_t) * 2));
53 last = first;
55
56 /*if (skipFirst) {
57 last++;
58 lastfree++;
59 }*/
60
61 *((uint64_t*)last) = 0;
62 *(((uint64_t*)last) + 1) = 0;
63 };
64
65 constexpr Pool(const char* name, uint64_t initialSize, std::initializer_list<T> list) : Pool(name, initialSize) {
66 for (const auto& entry : list) {
67 //*AddNew(1) = entry; // not good, but works
68 AddNew(entry);
69 }
70 }
71
72 template <typename... Args>
73 T* AddNew(Args&&... args){
74 if(poolSize == maxSize){
75 std::cout << "Pool " << poolName << " out of space!" << std::endl;
76 abort();
77 }
78
79 T* newobj;
80
81 if(lastfree != last){
82 newobj = lastfree;
83 uint64_t* skip = reinterpret_cast<uint64_t*>(lastfree);
84 skip++;
85 T** skip2 = reinterpret_cast<T**>(skip);
86 lastfree = *skip2;
87 } else {
88 newobj = lastfree;
89 last++;
90 lastfree++;
91
92 *((uint64_t*)last) = 0;
93 *(((uint64_t*)last) + 1) = 0;
94 }
95
96 new(newobj) T(std::forward<Args>(args)...);
97
98 poolSize++;
99
100 return newobj;
101 };
102
103 void Remove(T* removeptr){
104 assert(removeptr >= first && removeptr < last); // pointer is in pool
105 removeptr->~T(); // destruct
106 uint64_t* skip = reinterpret_cast<uint64_t*>(removeptr);
107 *skip = 0; // mark as empty
108 skip++;
109 T** nextfree = reinterpret_cast<T**>(skip);
110 *nextfree = lastfree; // add pointer to previous free place
111 lastfree = removeptr;
112 poolSize--;
113 };
114 T& operator[](size_t index) { return *(first + index); } // note that there is no checking for whether the index is valid
115 T* GetFirst() {return first;}; // yeet?
116 T* GetLast() {return last;}; // also yeet?
117 iterator begin() {auto ptr = first; while (*((uint64_t*)ptr) == 0 && ptr < last) ptr++; return ptr;};
118 iterator end() {return last;};
119 size_t GetSize() const {return poolSize;}; // yeet too?
120 size_t size() const {return poolSize;};
121 size_t index(const T* ptr) const {return ptr - first;};
122
124 bool validate (const T* ptr) const {
125 return ptr >= first && ptr <= last && *((uint64_t*)ptr) != 0;
126 }
127
128 // make sure that there will be enough room for the empty place marker and free list pointer
129 static_assert(sizeof(T) >= sizeof(T*) + sizeof(uint64_t));
130 //static_assert(sizeof(T) % sizeof(uint64_t) == 0); // idk what this is
131};
132
133template <typename T>
135public:
136 template <typename... Args>
137 static T* New(Args&&... args){return pool.AddNew(std::forward<Args>(args)...);}
138 static void Delete(T* obj){pool.Remove(obj);}
139 static Pool<T>& GetPool(){return pool;}
140protected:
141 static Pool<T> pool;
142};
143
144template <typename T> using PoopProxy = PoolProxy<T>;
145
146template <typename T>
147class PoolPtr {
148public:
151 T* GetResource() { return ptr; }
152 T* operator->() { return ptr; }
153 T& operator*() { return ptr; }
154 explicit operator bool() { return ptr != nullptr; }
155protected:
156 T* ptr;
157};
158
159}
160
161#endif // TRAM_SDK_TEMPLATES_POOL_H
Definition: pool.h:21
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
Definition: pool.h:134
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
Definition: pool.h:147
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
Serialization, i.e.
Definition: pool.h:30
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