#pragma once namespace Utils { class Memory { public: class Allocator { public: typedef void(*FreeCallback)(void*); Allocator() { this->pool.clear(); this->refMemory.clear(); } ~Allocator() { this->clear(); } void clear() { std::lock_guard _(this->mutex); for (auto i = this->refMemory.begin(); i != this->refMemory.end(); ++i) { if (i->first && i->second) { i->second(i->first); } } this->refMemory.clear(); for (auto& data : this->pool) { Memory::Free(data); } this->pool.clear(); } void free(void* data) { std::lock_guard _(this->mutex); auto i = this->refMemory.find(data); if (i != this->refMemory.end()) { i->second(i->first); this->refMemory.erase(i); } auto j = std::find(this->pool.begin(), this->pool.end(), data); if (j != this->pool.end()) { Memory::Free(data); this->pool.erase(j); } } void free(const void* data) { this->free(const_cast(data)); } void reference(void* memory, FreeCallback callback) { std::lock_guard _(this->mutex); this->refMemory[memory] = callback; } void* allocate(size_t length) { std::lock_guard _(this->mutex); void* data = Memory::Allocate(length); this->pool.push_back(data); return data; } template inline T* allocate() { return this->allocateArray(1); } template inline T* allocateArray(size_t count = 1) { return static_cast(this->allocate(count * sizeof(T))); } bool empty() { return (this->pool.empty() && this->refMemory.empty()); } char* duplicateString(const std::string& string) { std::lock_guard _(this->mutex); char* data = Memory::DuplicateString(string); this->pool.push_back(data); return data; } bool isPointerMapped(void* ptr) { return this->ptrMap.find(ptr) != this->ptrMap.end(); } template T* getPointer(void* oldPtr) { if (this->isPointerMapped(oldPtr)) { return reinterpret_cast(this->ptrMap[oldPtr]); } return nullptr; } void mapPointer(void* oldPtr, void* newPtr) { this->ptrMap[oldPtr] = newPtr; } private: std::mutex mutex; std::vector pool; std::unordered_map ptrMap; std::unordered_map refMemory; }; static void* AllocateAlign(size_t length, size_t alignment); static void* Allocate(size_t length); template static inline T* Allocate() { return AllocateArray(1); } template static inline T* AllocateArray(size_t count = 1) { return static_cast(Allocate(count * sizeof(T))); } template static inline T* Duplicate(T* original) { T* data = Memory::Allocate(); std::memcpy(data, original, sizeof(T)); return data; } static char* DuplicateString(const std::string& string); static void Free(void* data); static void Free(const void* data); static void FreeAlign(void* data); static void FreeAlign(const void* data); static bool IsSet(void* mem, char chr, size_t length); static bool IsBadReadPtr(const void* ptr); static bool IsBadCodePtr(const void* ptr); static Utils::Memory::Allocator* GetAllocator(); private: static Utils::Memory::Allocator MemAllocator; }; }