14 inline unique_objects_pool<T>::token::token(
const token& otherToken) noexcept
20 unique_objects_pool<T>::token::token(token&& otherToken) noexcept
22 *
this = std::move(otherToken);
26 inline typename unique_objects_pool<T>::token& unique_objects_pool<T>::token::operator=(
27 const token& otherToken) noexcept
29 m_nId = otherToken.m_nId;
30 m_pPool = otherToken.m_pPool;
33 m_pPool->increase_counter(m_nId);
39 typename unique_objects_pool<T>::token& unique_objects_pool<T>::token::operator=(token&& otherToken) noexcept
41 std::swap(m_nId, otherToken.m_nId);
42 std::swap(m_pPool, otherToken.m_pPool);
48 inline unique_objects_pool<T>::token::~token() noexcept
51 m_pPool->decrease_counter(m_nId);
57 return m_pPool && m_nId != kInvalidId;
69 return m_pPool->get_value(m_nId);
75 return &m_pPool->get_value(m_nId);
79 inline bool unique_objects_pool<T>::token::operator==(
const token& other)
const noexcept
81 return m_pPool == other.m_pPool && m_nId == other.m_nId;
103 std::unique_lock lock(m_UniqueObjectsPoolMutex);
104 data_by_value& set = m_Pool.template get<value_tag>();
105 if (
auto it = set.find(std::as_const(value)); it != set.end())
107 result =
token(it->nId,
this);
117 data _data { T(std::forward<U>(value)), m_nCurrentId++, 1 };
118 result =
token(_data.nId,
this);
133 std::unique_lock lock(m_UniqueObjectsPoolMutex);
134 data_by_id& set = m_Pool.template get<id_tag>();
137 auto it = std::find_if(
140 [&](
const data& _data)
142 return _data.nCounter == 0;
157 std::shared_lock lock(m_UniqueObjectsPoolMutex);
158 return m_Pool.size();
174 std::unique_lock lock(m_UniqueObjectsPoolMutex);
175 data_by_id& set = m_Pool.template get<id_tag>();
176 if (
auto it = set.find(nId); it != set.end())
188 inline void unique_objects_pool<T>::decrease_counter(
u64 nId) noexcept
192 std::unique_lock lock(m_UniqueObjectsPoolMutex);
193 data_by_id& set = m_Pool.template get<id_tag>();
194 if (
auto it = set.find(nId); it != set.end())
196 if (m_bAutoShrink && it->nCounter == 1)
213 inline const T& unique_objects_pool<T>::get_value(
u64 nId) noexcept
217 std::shared_lock lock(m_UniqueObjectsPoolMutex);
218 data_by_id& set = m_Pool.template get<id_tag>();
221 return set.find(nId)->value;
The token is used for distributed access to a unique object in the pool.
bool is_valid() const noexcept
Is this token have been set (not default)
Class stores unique objects and allows access to them through tokens.
unique_objects_pool(bool bAutoCleanup=true) noexcept
unique_objects_pool object constructor
token get_or_create(U &&value) noexcept
Get or create object.
bool empty() const
Is pool empty.
void shrink()
Remove unused (with counter = 0) objects.
size_t size() const
Get number of objects stored.