39 template<
class base_
class_t,
template<
class>
class smart_ptr_t,
class... args_t>
43 using factory = std::function<smart_ptr_t<base_class_t>(args_t...)>;
52 [[nodiscard]]
static smart_ptr_t<base_class_t>
create_object(class_identificator
id, args_t&&... args)
54 if (
auto it = m_FactoriesById.find(
id); it != m_FactoriesById.end())
55 return it->second(std::forward<args_t>(args)...);
66 [[nodiscard]]
static smart_ptr_t<base_class_t>
create_object(string_view svClassName, args_t&&... args)
68 if (
auto it = m_FactoriesByName.find(svClassName); it != m_FactoriesByName.end())
70 return it->second(std::forward<args_t>(args)...);
83 static bool _register_class(factory factory, class_identificator
id, string_view svClassName)
85 if (factory && !svClassName.empty())
87 m_FactoriesById[id] = factory;
88 m_FactoriesByName[svClassName] = factory;
98 static inline std::map<class_identificator, factory> m_FactoriesById;
99 static inline std::map<string_view, factory> m_FactoriesByName;
105 template<
class base_class_t,
class T,
class... args_t>
106 static std::unique_ptr<base_class_t> create_unique(args_t&&... args)
108 if constexpr (std::is_constructible_v<T, args_t...>)
109 return std::make_unique<T>(std::forward<args_t>(args)...);
114 template<
class base_class_t,
class T,
class... args_t>
115 static std::shared_ptr<base_class_t> create_shared(args_t&&... args)
117 if constexpr (std::is_constructible_v<T, args_t...>)
118 return std::make_shared<T>(std::forward<args_t>(args)...);
131 #define QX_REGISTER_UNIQUE_CREATOR(...) \
132 using CreatorRoot = this_class_type; \
133 using Creator = qx::reflection_creator<CreatorRoot, std::unique_ptr, __VA_ARGS__>
141 #define QX_REGISTER_UNIQUE_CONSTRUCTOR(...) \
143 static inline volatile bool QX_LINE_NAME(s_bRegistered) = Creator::_register_class( \
144 qx::details::create_unique<CreatorRoot, this_class_type, __VA_ARGS__>, \
145 get_class_id_static(), \
146 get_class_name_static())
154 #define QX_REGISTER_SHARED_CREATOR(...) \
156 using CreatorRoot = this_class_type; \
157 using Creator = qx::reflection_creator<CreatorRoot, std::shared_ptr, __VA_ARGS__>
165 #define QX_REGISTER_SHARED_CONSTRUCTOR(...) \
167 static inline volatile bool QX_LINE_NAME(s_bRegistered) = Creator::_register_class( \
168 qx::details::create_shared<CreatorRoot, this_class_type, __VA_ARGS__>, \
169 get_class_id_static(), \
170 get_class_name_static())
172 #define QX_REGISTER_CREATOR QX_REGISTER_UNIQUE_CREATOR
173 #define QX_REGISTER_CONSTRUCTOR QX_REGISTER_UNIQUE_CONSTRUCTOR
static smart_ptr_t< base_class_t > create_object(class_identificator id, args_t &&... args)
Create object based on class id.
static smart_ptr_t< base_class_t > create_object(string_view svClassName, args_t &&... args)
Create object based on class name.
static bool _register_class(factory factory, class_identificator id, string_view svClassName)
Register class so it can be constructed by creator.