Provides access to dynamic type and function information at runtime.
More...
#include <siplasplas/reflection/dynamic/runtime.hpp>
|
| Runtime (const std::string &name) |
| Initializes a dynamic reflection runtime. More...
|
|
void | clear () |
| Clears registered type information.
|
|
void | reset (const std::string &name) |
| Clears (resets) registered type information. More...
|
|
Namespace & | namespace_ () |
| Returns reflection information about the global namespace. More...
|
|
Namespace & | namespace_ (const std::string &fullName) |
| Returns reflection information about a given namespace. More...
|
|
bool | hasEntity (const std::string &fullName) const |
| Checks if an enity is registered with the given name. More...
|
|
Entity & | getEntity (const std::string &fullName) |
| Returns a reference to the specified entity. More...
|
|
template<typename EntityType > |
EntityType & | getEntity (const std::string &fullName) |
| Returns a reference to the specified entity. More...
|
|
void | addEntity (const std::shared_ptr< Entity > &entity) |
| Registers an entity in the dynamic reflection runtime. More...
|
|
const std::string & | name () const |
| Returns the runtime name.
|
|
Provides access to dynamic type and function information at runtime.
- Examples:
- examples/reflection/dynamic/plugin.cpp, and examples/reflection/dynamic/reflection.cpp.
§ Runtime()
cpp::dynamic_reflection::Runtime::Runtime |
( |
const std::string & |
name | ) |
|
Initializes a dynamic reflection runtime.
- Parameters
-
name | Runtime identifier. This identifier will be used for logging and debugging purposes. It can be used to differentiate runtimes comming from different libraries (See cpp::dynamic_reflection::RuntimeLoaded) |
§ addEntity()
void cpp::dynamic_reflection::Runtime::addEntity |
( |
const std::shared_ptr< Entity > & |
entity | ) |
|
Registers an entity in the dynamic reflection runtime.
Registers the entity in the runtime and attaches it to it. If there's an entity already registered with the entity full name, no registration is performed.
- Parameters
-
entity | Pointer to an entity |
- Examples:
- examples/reflection/dynamic/reflection.cpp.
§ getEntity() [1/2]
Entity& cpp::dynamic_reflection::Runtime::getEntity |
( |
const std::string & |
fullName | ) |
|
Returns a reference to the specified entity.
- Parameters
-
fullName | Entity full qualified name. The behavior is undefined if no entity is registered with the given name. See hasEntity() |
- Returns
- A reference to the entity
§ getEntity() [2/2]
template<typename EntityType >
EntityType& cpp::dynamic_reflection::Runtime::getEntity |
( |
const std::string & |
fullName | ) |
|
|
inline |
Returns a reference to the specified entity.
- Template Parameters
-
- Parameters
-
fullName | Entity full qualified name. The behavior is undefined if no entity is registered with the given name. See hasEntity() |
- Returns
- A reference to the entity
§ hasEntity()
bool cpp::dynamic_reflection::Runtime::hasEntity |
( |
const std::string & |
fullName | ) |
const |
Checks if an enity is registered with the given name.
- Parameters
-
fullName | Entity full qualified name |
- Returns
- True if the runtime has an entity registered with the given full name. False instead
§ namespace_() [1/2]
Namespace& cpp::dynamic_reflection::Runtime::namespace_ |
( |
| ) |
|
§ namespace_() [2/2]
Namespace& cpp::dynamic_reflection::Runtime::namespace_ |
( |
const std::string & |
fullName | ) |
|
Returns reflection information about a given namespace.
- Parameters
-
fullName | Full qualified namespace name |
- Returns
- A reference to the namespace entity. Throws a
std::runtime_error
exception if there's no namespace registered with that name
§ reset()
void cpp::dynamic_reflection::Runtime::reset |
( |
const std::string & |
name | ) |
|
Clears (resets) registered type information.
- Parameters
-
name | New runtime identifier |
The documentation for this class was generated from the following file: