16 QX_PUSH_SUPPRESS_ALL_WARNINGS();
17 #include <boost/multi_index/hashed_index.hpp>
18 #include <boost/multi_index/member.hpp>
19 #include <boost/multi_index_container.hpp>
20 QX_POP_SUPPRESS_WARNINGS();
24 #include <shared_mutex>
54 using values_set = boost::multi_index_container<
56 boost::multi_index::indexed_by<
58 hashed_unique<boost::multi_index::tag<value_tag>, boost::multi_index::member<data, T, &data::value> >,
60 hashed_unique<boost::multi_index::tag<id_tag>, boost::multi_index::member<data, u64, &data::nId> > > >;
62 using data_by_value =
typename boost::multi_index::index<values_set, value_tag>::type;
63 using data_by_id =
typename boost::multi_index::index<values_set, id_tag>::type;
79 static constexpr
u64 kInvalidId =
static_cast<u64>(-1);
82 token() noexcept =
default;
86 token& operator=(
const token& otherToken) noexcept;
102 explicit operator bool()
const noexcept;
104 const T& operator*()
const noexcept;
105 const T* operator->()
const noexcept;
106 bool operator==(
const token& other)
const noexcept;
117 u64 m_nId = kInvalidId;
159 void increase_counter(
u64 nId) noexcept;
165 void decrease_counter(
u64 nId) noexcept;
172 const T& get_value(
u64 nId) noexcept;
175 const
bool m_bAutoShrink = true;
177 QX_PERF_SHARED_MUTEX(m_UniqueObjectsPoolMutex);
179 u64 m_nCurrentId = 1;
184 #include <qx/containers/unique_objects_pool.inl>
#define QX_DEFINE_CATEGORY(name,...)
Define a category.
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.
Contains perf scope macros for profiler (for internal usage only, but user may override them)