21 template <class T, typename std::enable_if<std::is_default_constructible<T>::value,
bool>::type =
true>
25 constexpr
static std::size_t DEFAULT_POOL_SIZE = 100;
26 #pragma push_macro("max")
28 constexpr
static std::size_t INFINITE_POOL_SIZE = std::numeric_limits<std::size_t>::max();
29 #pragma pop_macro("max")
34 explicit DynamicObjectPool(std::size_t maxPoolSize = DEFAULT_POOL_SIZE, std::size_t initialSize = 0)
35 : m_MaxPoolSize(maxPoolSize)
37 if (initialSize > maxPoolSize)
38 throw std::invalid_argument(
"Preallocated objects cannot exceed the maximum pool size");
75 std::unique_lock<std::mutex> lock(m_Mutex);
84 T* obj = m_Pool.top();
108 std::unique_lock<std::mutex> lock(m_Mutex);
110 if (m_MaxPoolSize == INFINITE_POOL_SIZE || m_Pool.size() < m_MaxPoolSize)
125 std::lock_guard<std::mutex> lock(m_Mutex);
126 return m_Pool.size();
132 std::lock_guard<std::mutex> lock(m_Mutex);
133 return m_MaxPoolSize;
139 std::lock_guard<std::mutex> lock(m_Mutex);
143 while (m_Pool.size() > m_MaxPoolSize)
154 std::unique_lock<std::mutex> lock(m_Mutex);
156 if (m_MaxPoolSize < count)
158 throw std::invalid_argument(
"Preallocated objects cannot exceed the maximum pool size");
162 for (std::size_t i = m_Pool.size(); i < count; i++)
164 m_Pool.push(
new T());
171 std::unique_lock<std::mutex> lock(m_Mutex);
172 while (!m_Pool.empty())
180 std::size_t m_MaxPoolSize;
181 mutable std::mutex m_Mutex;
182 std::stack<T*> m_Pool;
A generic object pool implementation.
Definition: ObjectPool.h:23
std::size_t maxSize() const
Gets the maximum number of objects in the pool.
Definition: ObjectPool.h:130
void preallocate(std::size_t count)
Pre-allocates up to a minimum number of objects in the pool.
Definition: ObjectPool.h:152
std::size_t size() const
Gets the current number of objects in the pool.
Definition: ObjectPool.h:123
void releaseObjectRaw(T *obj)
Releases a raw pointer to an object back to the pool.
Definition: ObjectPool.h:106
std::unique_ptr< T > acquireObject()
Acquires a unique pointer to an object from the pool.
Definition: ObjectPool.h:62
void clear()
Deallocates and releases all objects currently held by the pool.
Definition: ObjectPool.h:169
DynamicObjectPool(std::size_t maxPoolSize=DEFAULT_POOL_SIZE, std::size_t initialSize=0)
Definition: ObjectPool.h:34
T * acquireObjectRaw()
Acquires a raw pointer to an object from the pool.
Definition: ObjectPool.h:73
void setMaxSize(std::size_t maxSize)
Sets the maximum number of objects in the pool.
Definition: ObjectPool.h:137
~DynamicObjectPool()
A destructor for this class that deletes all objects in the pool.
Definition: ObjectPool.h:51
void releaseObject(std::unique_ptr< T > obj)
Releases a unique pointer to an object back to the pool.
Definition: ObjectPool.h:95
The main namespace for the PcapPlusPlus lib.