| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582 |
- #ifndef ENTT_META_FACTORY_HPP
- #define ENTT_META_FACTORY_HPP
- #include <cstddef>
- #include <functional>
- #include <memory>
- #include <tuple>
- #include <type_traits>
- #include <utility>
- #include "../config/config.h"
- #include "../core/fwd.hpp"
- #include "../core/type_info.hpp"
- #include "../core/type_traits.hpp"
- #include "../locator/locator.hpp"
- #include "context.hpp"
- #include "meta.hpp"
- #include "node.hpp"
- #include "policy.hpp"
- #include "range.hpp"
- #include "resolve.hpp"
- #include "utility.hpp"
- namespace entt {
- /**
- * @cond TURN_OFF_DOXYGEN
- * Internal details not to be documented.
- */
- namespace internal {
- [[nodiscard]] inline decltype(auto) owner(meta_ctx &ctx, const type_info &info) {
- auto &&context = internal::meta_context::from(ctx);
- ENTT_ASSERT(context.value.contains(info.hash()), "Type not available");
- return context.value[info.hash()];
- }
- inline meta_data_node &meta_extend(internal::meta_type_node &parent, const id_type id, meta_data_node node) {
- return parent.details->data.insert_or_assign(id, std::move(node)).first->second;
- }
- inline meta_func_node &meta_extend(internal::meta_type_node &parent, const id_type id, meta_func_node node) {
- if(auto it = parent.details->func.find(id); it != parent.details->func.end()) {
- for(auto *curr = &it->second; curr; curr = curr->next.get()) {
- if(curr->invoke == node.invoke) {
- node.next = std::move(curr->next);
- *curr = std::move(node);
- return *curr;
- }
- }
- // locally overloaded function
- node.next = std::make_shared<meta_func_node>(std::move(parent.details->func[id]));
- }
- return parent.details->func.insert_or_assign(id, std::move(node)).first->second;
- }
- } // namespace internal
- /**
- * Internal details not to be documented.
- * @endcond
- */
- /**
- * @brief Basic meta factory to be used for reflection purposes.
- * @tparam Type Reflected type for which the factory was created.
- */
- template<typename Type>
- class meta_factory {
- template<typename Setter, auto Getter, typename Policy, std::size_t... Index>
- void data(const id_type id, std::index_sequence<Index...>) noexcept {
- using data_type = std::invoke_result_t<decltype(Getter), Type &>;
- using args_type = type_list<typename meta_function_helper_t<Type, decltype(value_list_element_v<Index, Setter>)>::args_type...>;
- static_assert(Policy::template value<data_type>, "Invalid return type for the given policy");
- auto &&elem = internal::meta_extend(
- internal::owner(*ctx, *info),
- id,
- internal::meta_data_node{
- /* this is never static */
- (std::is_member_object_pointer_v<decltype(value_list_element_v<Index, Setter>)> && ... && std::is_const_v<std::remove_reference_t<data_type>>) ? internal::meta_traits::is_const : internal::meta_traits::is_none,
- Setter::size,
- &internal::resolve<std::remove_cv_t<std::remove_reference_t<data_type>>>,
- &meta_arg<type_list<type_list_element_t<type_list_element_t<Index, args_type>::size != 1u, type_list_element_t<Index, args_type>>...>>,
- +[](meta_handle instance, meta_any value) { return (meta_setter<Type, value_list_element_v<Index, Setter>>(*instance.operator->(), value.as_ref()) || ...); },
- &meta_getter<Type, Getter, Policy>});
- bucket = &elem.prop;
- }
- public:
- /*! @brief Default constructor. */
- meta_factory() noexcept
- : meta_factory{locator<meta_ctx>::value_or()} {}
- /**
- * @brief Context aware constructor.
- * @param area The context into which to construct meta types.
- */
- meta_factory(meta_ctx &area) noexcept
- : ctx{&area},
- bucket{},
- info{&type_id<Type>()} {
- auto &&elem = internal::owner(*ctx, *info);
- if(!elem.details) {
- elem.details = std::make_shared<internal::meta_type_descriptor>();
- }
- bucket = &elem.details->prop;
- }
- /**
- * @brief Assigns a custom unique identifier to a meta type.
- * @param id A custom unique identifier.
- * @return A meta factory for the given type.
- */
- auto type(const id_type id) noexcept {
- auto &&elem = internal::owner(*ctx, *info);
- ENTT_ASSERT(elem.id == id || !resolve(*ctx, id), "Duplicate identifier");
- bucket = &elem.details->prop;
- elem.id = id;
- return *this;
- }
- /**
- * @brief Assigns a meta base to a meta type.
- *
- * A reflected base class must be a real base class of the reflected type.
- *
- * @tparam Base Type of the base class to assign to the meta type.
- * @return A meta factory for the parent type.
- */
- template<typename Base>
- auto base() noexcept {
- static_assert(!std::is_same_v<Type, Base> && std::is_base_of_v<Base, Type>, "Invalid base type");
- auto *const op = +[](const void *instance) noexcept { return static_cast<const void *>(static_cast<const Base *>(static_cast<const Type *>(instance))); };
- internal::owner(*ctx, *info).details->base.insert_or_assign(type_id<Base>().hash(), internal::meta_base_node{&internal::resolve<Base>, op});
- bucket = nullptr;
- return *this;
- }
- /**
- * @brief Assigns a meta conversion function to a meta type.
- *
- * Conversion functions can be either free functions or member
- * functions.<br/>
- * In case of free functions, they must accept a const reference to an
- * instance of the parent type as an argument. In case of member functions,
- * they should have no arguments at all.
- *
- * @tparam Candidate The actual function to use for the conversion.
- * @return A meta factory for the parent type.
- */
- template<auto Candidate>
- auto conv() noexcept {
- using conv_type = std::remove_cv_t<std::remove_reference_t<std::invoke_result_t<decltype(Candidate), Type &>>>;
- auto *const op = +[](const meta_ctx &area, const void *instance) { return forward_as_meta(area, std::invoke(Candidate, *static_cast<const Type *>(instance))); };
- internal::owner(*ctx, *info).details->conv.insert_or_assign(type_id<conv_type>().hash(), internal::meta_conv_node{op});
- bucket = nullptr;
- return *this;
- }
- /**
- * @brief Assigns a meta conversion function to a meta type.
- *
- * The given type must be such that an instance of the reflected type can be
- * converted to it.
- *
- * @tparam To Type of the conversion function to assign to the meta type.
- * @return A meta factory for the parent type.
- */
- template<typename To>
- auto conv() noexcept {
- using conv_type = std::remove_cv_t<std::remove_reference_t<To>>;
- auto *const op = +[](const meta_ctx &area, const void *instance) { return forward_as_meta(area, static_cast<To>(*static_cast<const Type *>(instance))); };
- internal::owner(*ctx, *info).details->conv.insert_or_assign(type_id<conv_type>().hash(), internal::meta_conv_node{op});
- bucket = nullptr;
- return *this;
- }
- /**
- * @brief Assigns a meta constructor to a meta type.
- *
- * Both member functions and free function can be assigned to meta types in
- * the role of constructors. All that is required is that they return an
- * instance of the underlying type.<br/>
- * From a client's point of view, nothing changes if a constructor of a meta
- * type is a built-in one or not.
- *
- * @tparam Candidate The actual function to use as a constructor.
- * @tparam Policy Optional policy (no policy set by default).
- * @return A meta factory for the parent type.
- */
- template<auto Candidate, typename Policy = as_is_t>
- auto ctor() noexcept {
- using descriptor = meta_function_helper_t<Type, decltype(Candidate)>;
- static_assert(Policy::template value<typename descriptor::return_type>, "Invalid return type for the given policy");
- static_assert(std::is_same_v<std::remove_cv_t<std::remove_reference_t<typename descriptor::return_type>>, Type>, "The function doesn't return an object of the required type");
- internal::owner(*ctx, *info).details->ctor.insert_or_assign(type_id<typename descriptor::args_type>().hash(), internal::meta_ctor_node{descriptor::args_type::size, &meta_arg<typename descriptor::args_type>, &meta_construct<Type, Candidate, Policy>});
- bucket = nullptr;
- return *this;
- }
- /**
- * @brief Assigns a meta constructor to a meta type.
- *
- * A meta constructor is uniquely identified by the types of its arguments
- * and is such that there exists an actual constructor of the underlying
- * type that can be invoked with parameters whose types are those given.
- *
- * @tparam Args Types of arguments to use to construct an instance.
- * @return A meta factory for the parent type.
- */
- template<typename... Args>
- auto ctor() noexcept {
- // default constructor is already implicitly generated, no need for redundancy
- if constexpr(sizeof...(Args) != 0u) {
- using descriptor = meta_function_helper_t<Type, Type (*)(Args...)>;
- internal::owner(*ctx, *info).details->ctor.insert_or_assign(type_id<typename descriptor::args_type>().hash(), internal::meta_ctor_node{descriptor::args_type::size, &meta_arg<typename descriptor::args_type>, &meta_construct<Type, Args...>});
- }
- bucket = nullptr;
- return *this;
- }
- /**
- * @brief Assigns a meta destructor to a meta type.
- *
- * Both free functions and member functions can be assigned to meta types in
- * the role of destructors.<br/>
- * The signature of a free function should be identical to the following:
- *
- * @code{.cpp}
- * void(Type &);
- * @endcode
- *
- * Member functions should not take arguments instead.<br/>
- * The purpose is to give users the ability to free up resources that
- * require special treatment before an object is actually destroyed.
- *
- * @tparam Func The actual function to use as a destructor.
- * @return A meta factory for the parent type.
- */
- template<auto Func>
- auto dtor() noexcept {
- static_assert(std::is_invocable_v<decltype(Func), Type &>, "The function doesn't accept an object of the type provided");
- auto *const op = +[](void *instance) { std::invoke(Func, *static_cast<Type *>(instance)); };
- internal::owner(*ctx, *info).dtor = internal::meta_dtor_node{op};
- bucket = nullptr;
- return *this;
- }
- /**
- * @brief Assigns a meta data to a meta type.
- *
- * Both data members and static and global variables, as well as constants
- * of any kind, can be assigned to a meta type.<br/>
- * From a client's point of view, all the variables associated with the
- * reflected object will appear as if they were part of the type itself.
- *
- * @tparam Data The actual variable to attach to the meta type.
- * @tparam Policy Optional policy (no policy set by default).
- * @param id Unique identifier.
- * @return A meta factory for the parent type.
- */
- template<auto Data, typename Policy = as_is_t>
- auto data(const id_type id) noexcept {
- if constexpr(std::is_member_object_pointer_v<decltype(Data)>) {
- using data_type = std::invoke_result_t<decltype(Data), Type &>;
- static_assert(Policy::template value<data_type>, "Invalid return type for the given policy");
- auto &&elem = internal::meta_extend(
- internal::owner(*ctx, *info),
- id,
- internal::meta_data_node{
- /* this is never static */
- std::is_const_v<std::remove_reference_t<data_type>> ? internal::meta_traits::is_const : internal::meta_traits::is_none,
- 1u,
- &internal::resolve<std::remove_cv_t<std::remove_reference_t<data_type>>>,
- &meta_arg<type_list<std::remove_cv_t<std::remove_reference_t<data_type>>>>,
- &meta_setter<Type, Data>,
- &meta_getter<Type, Data, Policy>});
- bucket = &elem.prop;
- } else {
- using data_type = std::remove_pointer_t<decltype(Data)>;
- if constexpr(std::is_pointer_v<decltype(Data)>) {
- static_assert(Policy::template value<decltype(*Data)>, "Invalid return type for the given policy");
- } else {
- static_assert(Policy::template value<data_type>, "Invalid return type for the given policy");
- }
- auto &&elem = internal::meta_extend(
- internal::owner(*ctx, *info),
- id,
- internal::meta_data_node{
- ((std::is_same_v<Type, std::remove_cv_t<std::remove_reference_t<data_type>>> || std::is_const_v<std::remove_reference_t<data_type>>) ? internal::meta_traits::is_const : internal::meta_traits::is_none) | internal::meta_traits::is_static,
- 1u,
- &internal::resolve<std::remove_cv_t<std::remove_reference_t<data_type>>>,
- &meta_arg<type_list<std::remove_cv_t<std::remove_reference_t<data_type>>>>,
- &meta_setter<Type, Data>,
- &meta_getter<Type, Data, Policy>});
- bucket = &elem.prop;
- }
- return *this;
- }
- /**
- * @brief Assigns a meta data to a meta type by means of its setter and
- * getter.
- *
- * Setters and getters can be either free functions, member functions or a
- * mix of them.<br/>
- * In case of free functions, setters and getters must accept a reference to
- * an instance of the parent type as their first argument. A setter has then
- * an extra argument of a type convertible to that of the parameter to
- * set.<br/>
- * In case of member functions, getters have no arguments at all, while
- * setters has an argument of a type convertible to that of the parameter to
- * set.
- *
- * @tparam Setter The actual function to use as a setter.
- * @tparam Getter The actual function to use as a getter.
- * @tparam Policy Optional policy (no policy set by default).
- * @param id Unique identifier.
- * @return A meta factory for the parent type.
- */
- template<auto Setter, auto Getter, typename Policy = as_is_t>
- auto data(const id_type id) noexcept {
- using data_type = std::invoke_result_t<decltype(Getter), Type &>;
- static_assert(Policy::template value<data_type>, "Invalid return type for the given policy");
- if constexpr(std::is_same_v<decltype(Setter), std::nullptr_t>) {
- auto &&elem = internal::meta_extend(
- internal::owner(*ctx, *info),
- id,
- internal::meta_data_node{
- /* this is never static */
- internal::meta_traits::is_const,
- 0u,
- &internal::resolve<std::remove_cv_t<std::remove_reference_t<data_type>>>,
- &meta_arg<type_list<>>,
- &meta_setter<Type, Setter>,
- &meta_getter<Type, Getter, Policy>});
- bucket = &elem.prop;
- } else {
- using args_type = typename meta_function_helper_t<Type, decltype(Setter)>::args_type;
- auto &&elem = internal::meta_extend(
- internal::owner(*ctx, *info),
- id,
- internal::meta_data_node{
- /* this is never static nor const */
- internal::meta_traits::is_none,
- 1u,
- &internal::resolve<std::remove_cv_t<std::remove_reference_t<data_type>>>,
- &meta_arg<type_list<type_list_element_t<args_type::size != 1u, args_type>>>,
- &meta_setter<Type, Setter>,
- &meta_getter<Type, Getter, Policy>});
- bucket = &elem.prop;
- }
- return *this;
- }
- /**
- * @brief Assigns a meta data to a meta type by means of its setters and
- * getter.
- *
- * Multi-setter support for meta data members. All setters are tried in the
- * order of definition before returning to the caller.<br/>
- * Setters can be either free functions, member functions or a mix of them
- * and are provided via a `value_list` type.
- *
- * @sa data
- *
- * @tparam Setter The actual functions to use as setters.
- * @tparam Getter The actual getter function.
- * @tparam Policy Optional policy (no policy set by default).
- * @param id Unique identifier.
- * @return A meta factory for the parent type.
- */
- template<typename Setter, auto Getter, typename Policy = as_is_t>
- auto data(const id_type id) noexcept {
- data<Setter, Getter, Policy>(id, std::make_index_sequence<Setter::size>{});
- return *this;
- }
- /**
- * @brief Assigns a meta function to a meta type.
- *
- * Both member functions and free functions can be assigned to a meta
- * type.<br/>
- * From a client's point of view, all the functions associated with the
- * reflected object will appear as if they were part of the type itself.
- *
- * @tparam Candidate The actual function to attach to the meta type.
- * @tparam Policy Optional policy (no policy set by default).
- * @param id Unique identifier.
- * @return A meta factory for the parent type.
- */
- template<auto Candidate, typename Policy = as_is_t>
- auto func(const id_type id) noexcept {
- using descriptor = meta_function_helper_t<Type, decltype(Candidate)>;
- static_assert(Policy::template value<typename descriptor::return_type>, "Invalid return type for the given policy");
- auto &&elem = internal::meta_extend(
- internal::owner(*ctx, *info),
- id,
- internal::meta_func_node{
- (descriptor::is_const ? internal::meta_traits::is_const : internal::meta_traits::is_none) | (descriptor::is_static ? internal::meta_traits::is_static : internal::meta_traits::is_none),
- descriptor::args_type::size,
- &internal::resolve<std::conditional_t<std::is_same_v<Policy, as_void_t>, void, std::remove_cv_t<std::remove_reference_t<typename descriptor::return_type>>>>,
- &meta_arg<typename descriptor::args_type>,
- &meta_invoke<Type, Candidate, Policy>});
- bucket = &elem.prop;
- return *this;
- }
- /**
- * @brief Assigns a property to the last meta object created.
- *
- * Both the key and the value (if any) must be at least copy constructible.
- *
- * @tparam Value Optional type of the property value.
- * @param id Property key.
- * @param value Optional property value.
- * @return A meta factory for the parent type.
- */
- template<typename... Value>
- meta_factory prop(id_type id, [[maybe_unused]] Value &&...value) {
- ENTT_ASSERT(bucket != nullptr, "Meta object does not support properties");
- if constexpr(sizeof...(Value) == 0u) {
- (*bucket)[id] = internal::meta_prop_node{&internal::resolve<void>};
- } else {
- (*bucket)[id] = internal::meta_prop_node{
- &internal::resolve<std::decay_t<Value>>...,
- std::make_shared<std::decay_t<Value>>(std::forward<Value>(value))...};
- }
- return *this;
- }
- private:
- meta_ctx *ctx;
- dense_map<id_type, internal::meta_prop_node, identity> *bucket;
- const type_info *info;
- };
- /**
- * @brief Utility function to use for reflection.
- *
- * This is the point from which everything starts.<br/>
- * By invoking this function with a type that is not yet reflected, a meta type
- * is created to which it will be possible to attach meta objects through a
- * dedicated factory.
- *
- * @tparam Type Type to reflect.
- * @param ctx The context into which to construct meta types.
- * @return A meta factory for the given type.
- */
- template<typename Type>
- [[nodiscard]] auto meta(meta_ctx &ctx) noexcept {
- auto &&context = internal::meta_context::from(ctx);
- // make sure the type exists in the context before returning a factory
- context.value.try_emplace(type_id<Type>().hash(), internal::resolve<Type>(context));
- return meta_factory<Type>{ctx};
- }
- /**
- * @brief Utility function to use for reflection.
- *
- * This is the point from which everything starts.<br/>
- * By invoking this function with a type that is not yet reflected, a meta type
- * is created to which it will be possible to attach meta objects through a
- * dedicated factory.
- *
- * @tparam Type Type to reflect.
- * @return A meta factory for the given type.
- */
- template<typename Type>
- [[nodiscard]] auto meta() noexcept {
- return meta<Type>(locator<meta_ctx>::value_or());
- }
- /**
- * @brief Resets a type and all its parts.
- *
- * Resets a type and all its data members, member functions and properties, as
- * well as its constructors, destructors and conversion functions if any.<br/>
- * Base classes aren't reset but the link between the two types is removed.
- *
- * The type is also removed from the set of searchable types.
- *
- * @param id Unique identifier.
- * @param ctx The context from which to reset meta types.
- */
- inline void meta_reset(meta_ctx &ctx, const id_type id) noexcept {
- auto &&context = internal::meta_context::from(ctx);
- for(auto it = context.value.begin(); it != context.value.end();) {
- if(it->second.id == id) {
- it = context.value.erase(it);
- } else {
- ++it;
- }
- }
- }
- /**
- * @brief Resets a type and all its parts.
- *
- * Resets a type and all its data members, member functions and properties, as
- * well as its constructors, destructors and conversion functions if any.<br/>
- * Base classes aren't reset but the link between the two types is removed.
- *
- * The type is also removed from the set of searchable types.
- *
- * @param id Unique identifier.
- */
- inline void meta_reset(const id_type id) noexcept {
- meta_reset(locator<meta_ctx>::value_or(), id);
- }
- /**
- * @brief Resets a type and all its parts.
- *
- * @sa meta_reset
- *
- * @tparam Type Type to reset.
- * @param ctx The context from which to reset meta types.
- */
- template<typename Type>
- void meta_reset(meta_ctx &ctx) noexcept {
- internal::meta_context::from(ctx).value.erase(type_id<Type>().hash());
- }
- /**
- * @brief Resets a type and all its parts.
- *
- * @sa meta_reset
- *
- * @tparam Type Type to reset.
- */
- template<typename Type>
- void meta_reset() noexcept {
- meta_reset<Type>(locator<meta_ctx>::value_or());
- }
- /**
- * @brief Resets all meta types.
- *
- * @sa meta_reset
- *
- * @param ctx The context from which to reset meta types.
- */
- inline void meta_reset(meta_ctx &ctx) noexcept {
- internal::meta_context::from(ctx).value.clear();
- }
- /**
- * @brief Resets all meta types.
- *
- * @sa meta_reset
- */
- inline void meta_reset() noexcept {
- meta_reset(locator<meta_ctx>::value_or());
- }
- } // namespace entt
- #endif
|