#include "cetl/rtti.hpp"
Public Member Functions | |
virtual CETL_NODISCARD void * | _cast_ (const type_id &id) &noexcept=0 |
virtual CETL_NODISCARD const void * | _cast_ (const type_id &id) const &noexcept=0 |
An alternative implementation of simple runtime type information (RTTI) capability designed for high-integrity real-time systems, where the use of the standard C++ RTTI is discouraged.
Unlike the standard C++ RTTI, this implementation requires the user to manually specify the type ID per type in the form of a 16-byte UUID (GUID). The capabilities include querying runtime type information in constant time and performing safe dynamic type down-conversion (and up-conversion, similar to dynamic_cast
) in constant time, including the case of multiple inheritance.
The limitations are that a type has to opt into this RTTI capability explicitly (it doesn't work for all types) and that CV-qualifiers and references are not considered in the type comparison; that is, T
and const T&
are considered the same type.
In order to support this RTTI capability, a type must at least define a public method static constexpr cetl::type_id get_type_id() noexcept
that returns the type ID (i.e., the UUID) of the type it is defined on. Types that provide said method satisfy cetl::has_type_id.
If the type is polymorphic, it should either manually implement cetl::rtti through virtual inheritance, or use the cetl::rtti_helper helper which will provide the necessary implementation of the RTTI-related methods along with the aforementioned _get_type_id_()
method. More about the latter option in its documentation.
RTTI-related members are named with surrounding underscores to avoid name clashes with user-defined members, including the members of DSDL types (where identifiers surrounded with underscores are reserved). The user code should not invoke such underscored methods directly but instead use the free functions defined here.
A basic usage example:
A basic usage example with a class implementing multiple interfaces:
A similar example with composition:
|
pure virtualnoexcept |
Implementations can choose to use cetl::rtti_helper instead of implementing this manually.
If manual implementation is preferred, then the method body should be implemented as follows (add const
in the const overload):
Where base
is the base class of the current class that implements this method, if any; if there is more than one base available, all of those that implement this cetl::rtti interface should be checked in the same way one by one and the first match (non-nullptr result) should be returned.
The objective here is to check if the current type in the hierarchy is the one being sought; if not, delegate the call to the base class(es); the topmost class is this rtti
type that simply returns a null pointer, indicating that the search has returned no matches and a safe dynamic type conversion is not possible (at least not along the current branch of the type tree).
This method should not be invoked directly; instead, use cetl::rtti_cast.
Implemented in cetl::rtti_helper< TypeIDType, Bases >, cetl::rtti_helper< function_handler_typeid_t >, and cetl::rtti_helper< functor_handler_typeid_t, function_handler< Result, Args... > >.
References CETL_NODISCARD.
|
pure virtualnoexcept |
Implementations can choose to use cetl::rtti_helper instead of implementing this manually.
If manual implementation is preferred, then the method body should be implemented as follows (add const
in the const overload):
Where base
is the base class of the current class that implements this method, if any; if there is more than one base available, all of those that implement this cetl::rtti interface should be checked in the same way one by one and the first match (non-nullptr result) should be returned.
The objective here is to check if the current type in the hierarchy is the one being sought; if not, delegate the call to the base class(es); the topmost class is this rtti
type that simply returns a null pointer, indicating that the search has returned no matches and a safe dynamic type conversion is not possible (at least not along the current branch of the type tree).
This method should not be invoked directly; instead, use cetl::rtti_cast.
Implemented in cetl::rtti_helper< TypeIDType, Bases >, cetl::rtti_helper< function_handler_typeid_t >, and cetl::rtti_helper< functor_handler_typeid_t, function_handler< Result, Args... > >.
References CETL_NODISCARD.