18 #include <unordered_map>
36 template<std::derived_from<rtti_pure_base> base_component_t>
40 using pointer_type = std::unique_ptr<base_component_t>;
47 base_component_t* pComponent =
nullptr;
51 std::unordered_map<class_identificator, std::unique_ptr<SClassData>> derivedClasses;
53 std::multimap<priority, SCacheData, std::greater<priority>> priorityCache;
55 [[nodiscard]] SClassData& get_or_add_class_data(class_identificator
id) noexcept;
58 static constexpr
auto stub_callback = [](
auto&&...)
71 template<std::derived_from<base_component_t> component_t>
72 [[maybe_unused]] component_t*
add(
73 std::unique_ptr<component_t> pComponent,
74 priority ePriority = priority::normal,
82 [[maybe_unused]] std::unique_ptr<base_component_t>
remove(
const base_component_t* pRawComponent) noexcept;
89 template<std::derived_from<base_component_t> component_t>
90 [[nodiscard]] component_t*
try_get() noexcept;
97 template<std::derived_from<base_component_t> component_t>
98 [[nodiscard]] const component_t*
try_get() const noexcept;
105 [[nodiscard]] base_component_t*
try_get(class_identificator
id) noexcept;
112 [[nodiscard]] const base_component_t*
try_get(class_identificator
id) const noexcept;
119 template<std::derived_from<base_component_t> component_t>
120 [[nodiscard]] component_t&
get() noexcept;
127 template<std::derived_from<base_component_t> component_t>
128 [[nodiscard]] const component_t&
get() const noexcept;
135 template<std::derived_from<base_component_t> component_t = base_component_t>
136 [[nodiscard]] auto
view() noexcept;
143 template<std::derived_from<base_component_t> component_t = base_component_t>
144 [[nodiscard]] auto
view() const noexcept;
151 [[nodiscard]] std::optional<
priority>
get_priority(const base_component_t* pRawComponent) const noexcept;
159 [[maybe_unused]]
bool set_priority(const base_component_t* pRawComponent,
priority ePriority) noexcept;
166 [[nodiscard]] std::optional<
flags<status>>
get_status(const base_component_t* pRawComponent) const noexcept;
174 [[maybe_unused]]
bool set_status(const base_component_t* pRawComponent,
flags<status> status) noexcept;
180 [[nodiscard]]
bool empty() const noexcept;
185 void clear() noexcept;
196 std::derived_from<base_component_t> component_t,
197 callable_c<
void, SClassData&> callable_t = decltype(stub_callback)>
198 SClassData& get_or_add_class_data(callable_t iterateClassDataFunction = stub_callback) noexcept
206 using t1 =
typename component_t::inheritance_tuple;
207 using t2 =
typename base_component_t::inheritance_tuple;
208 using t3 = tuple::remove_t<t1, t2>;
210 SClassData* pClassData = &m_RootClass;
211 iterateClassDataFunction(*pClassData);
214 [&pClassData, &iterateClassDataFunction]<
class T,
size_t I>()
216 pClassData = &pClassData->get_or_add_class_data(T::get_class_id_static());
217 iterateClassDataFunction(*pClassData);
231 std::derived_from<base_component_t> component_t,
232 callable_c<void, SClassData&> callable_t = decltype(stub_callback)>
233 const SClassData& get_or_add_class_data(callable_t iterateClassDataFunction = stub_callback)
const noexcept
235 return QX_CONST_CAST_THIS()->template get_or_add_class_data<component_t>(std::move(iterateClassDataFunction));
245 template<callable_c<
void, SClassData&> callable_t = decltype(stub_callback)>
246 SClassData& get_or_add_class_data(
247 const base_component_t* pRawComponent,
248 callable_t iterateClassDataFunction = stub_callback) noexcept
250 SClassData* pClassData = &m_RootClass;
251 iterateClassDataFunction(*pClassData);
253 std::span<const class_identificator> allIds = pRawComponent->get_inheritance_sequence();
254 std::span<const class_identificator> baseClassIds(
255 std::ranges::find(allIds, base_component_t::get_class_id_static()),
258 for (
auto it = baseClassIds.begin() + 1; it != baseClassIds.end(); ++it)
260 pClassData = &pClassData->get_or_add_class_data(*it);
261 iterateClassDataFunction(*pClassData);
274 template<callable_c<
void, SClassData&> callable_t = decltype(stub_callback)>
275 const SClassData& get_or_add_class_data(
276 const base_component_t* pRawComponent,
277 callable_t iterateClassDataFunction = stub_callback)
const noexcept
279 return QX_CONST_CAST_THIS()->get_or_add_class_data(pRawComponent, std::move(iterateClassDataFunction));
283 SClassData m_RootClass;
Container for components system.
component_t * add(std::unique_ptr< component_t > pComponent, priority ePriority=priority::normal, flags< status > statusFlags=status::default_value) noexcept
Add a component.
std::unique_ptr< base_component_t > remove(const base_component_t *pRawComponent) noexcept
Remove the component from the container.
bool set_priority(const base_component_t *pRawComponent, priority ePriority) noexcept
Set a priority of a given component.
component_t * try_get() noexcept
Try to get a component of the given type with the highest priority.
std::optional< priority > get_priority(const base_component_t *pRawComponent) const noexcept
Get a priority of a given component.
void clear() noexcept
Clear the container, e.g. remove all the components.
auto view() noexcept
Get a view which may be used in a ranged-based for loop and consists of components of a given type wi...
bool empty() const noexcept
Check if container doesn't have any components.
std::optional< flags< status > > get_status(const base_component_t *pRawComponent) const noexcept
Get a status of a given component.
component_t & get() noexcept
Get a component of the given type with the highest priority (no existence checks are performed)
bool set_status(const base_component_t *pRawComponent, flags< status > status) noexcept
Set a status of a given component.
priority
User may use the predefined values or the custom ones, for ex. "normal - 1", this type is supposed to...
RTTI system based on polymorphism.