/* Copyright (c) 2017-2018 Hans-Kristian Arntzen * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #pragma once #include #include #include #include //#define OBJECT_POOL_DEBUG namespace Util { template class ObjectPool { public: template T *allocate(P &&... p) { #ifndef OBJECT_POOL_DEBUG if (vacants.empty()) { unsigned num_objects = 64u << memory.size(); T *ptr = static_cast(malloc(num_objects * sizeof(T))); if (!ptr) return nullptr; for (unsigned i = 0; i < num_objects; i++) vacants.push_back(&ptr[i]); memory.emplace_back(ptr); } T *ptr = vacants.back(); vacants.pop_back(); new(ptr) T(std::forward

(p)...); return ptr; #else return new T(std::forward

(p)...); #endif } void free(T *ptr) { #ifndef OBJECT_POOL_DEBUG ptr->~T(); vacants.push_back(ptr); #else delete ptr; #endif } void clear() { #ifndef OBJECT_POOL_DEBUG vacants.clear(); memory.clear(); #endif } protected: #ifndef OBJECT_POOL_DEBUG std::vector vacants; struct MallocDeleter { void operator()(T *ptr) { ::free(ptr); } }; std::vector> memory; #endif }; template class ThreadSafeObjectPool : private ObjectPool { public: template T *allocate(P &&... p) { std::lock_guard holder{lock}; return ObjectPool::allocate(std::forward

(p)...); } void free(T *ptr) { #ifndef OBJECT_POOL_DEBUG ptr->~T(); std::lock_guard holder{lock}; this->vacants.push_back(ptr); #else delete ptr; #endif } void clear() { std::lock_guard holder{lock}; ObjectPool::clear(); } private: std::mutex lock; }; }