![]() |
|
TfType represents a dynamic runtime type. More...
#include <type.h>
Classes | |
struct | Bases |
A type-list of C++ base types. More... | |
class | FactoryBase |
Base class of all factory types. More... | |
Public Types | |
enum | LegacyFlags { ABSTRACT = 0x01 , CONCRETE = 0x02 , MANUFACTURABLE = 0x08 } |
using | DefinitionCallback = void(*)(TfType) |
Callback invoked when a declared type needs to be defined. | |
Public Member Functions | |
TF_API | TfType () |
Construct an TfType representing an unknown type. | |
bool | operator== (const TfType &t) const |
Equality operator. | |
bool | operator!= (const TfType &t) const |
bool | operator< (const TfType &t) const |
Comparison operator. | |
bool | operator> (const TfType &t) const |
bool | operator<= (const TfType &t) const |
bool | operator>= (const TfType &t) const |
template<class T , class BaseTypes > | |
TfType const & | Declare () |
template<typename T , typename BaseTypes > | |
TfType const & | Define () |
template<typename T > | |
TfType const & | Define () |
Pointer casts | |
TF_API void * | CastToAncestor (TfType ancestor, void *addr) const |
Cast addr to the address corresponding to the type ancestor . | |
const void * | CastToAncestor (TfType ancestor, const void *addr) const |
TF_API void * | CastFromAncestor (TfType ancestor, void *addr) const |
Cast addr , which pointed to the ancestor type ancestor , to the type of *this . | |
const void * | CastFromAncestor (TfType ancestor, const void *addr) const |
Instantiation / Manufacturing | |
TF_API void | SetFactory (std::unique_ptr< FactoryBase > factory) const |
Sets the factory object for this type. | |
template<class T > | |
void | SetFactory (std::unique_ptr< T > &factory) const |
Sets the factory object for this type. | |
template<class T > | |
void | SetFactory () const |
Sets the factory object for this type to be a T . | |
const TfType & | Factory (std::unique_ptr< FactoryBase > factory) const |
Sets the factory object for this type. | |
template<class T > | |
const TfType & | Factory (std::unique_ptr< T > &factory) const |
Sets the factory object for this type. | |
template<class T > | |
const TfType & | Factory () const |
Sets the factory object for this type to be a T . | |
template<class T > | |
T * | GetFactory () const |
Returns the factory object for this type as a T* , or NULL if there is no factory or the factory is not or is not derived from T . | |
Static Public Member Functions | |
static TF_API TfType const & | GetUnknownType () |
Return an empty TfType, representing the unknown type. | |
Friends | |
struct | _TypeInfo |
template<class HashState > | |
void | TfHashAppend (HashState &h, TfType const &type) |
Type queries | |
typedef TfType::_TypeInfo *TfType::* | UnspecifiedBoolType |
TF_API const std::string & | GetTypeName () const |
Return the machine-independent name for this type. | |
TF_API const std::type_info & | GetTypeid () const |
Return a C++ RTTI type_info for this type. | |
TF_API std::vector< std::string > | GetAliases (TfType derivedType) const |
Returns a vector of the aliases registered for the derivedType under this, the base type. | |
TF_API TfPyObjWrapper | GetPythonClass () const |
Return the Python class object for this type. | |
TF_API std::vector< TfType > | GetBaseTypes () const |
Return a vector of types from which this type was derived. | |
TF_API size_t | GetNBaseTypes (TfType *out, size_t maxBases) const |
Copy the first maxBases base types of this type to out , or all the base types if this type has maxBases or fewer base types. | |
TF_API std::vector< TfType > | GetDirectlyDerivedTypes () const |
Return a vector of types derived directly from this type. | |
TF_API TfType const & | GetCanonicalType () const |
Return the canonical type for this type. | |
TF_API void | GetAllDerivedTypes (std::set< TfType > *result) const |
Return the set of all types derived (directly or indirectly) from this type. | |
TF_API void | GetAllAncestorTypes (std::vector< TfType > *result) const |
Build a vector of all ancestor types inherited by this type. | |
TF_API bool | IsA (TfType queryType) const |
Return true if this type is the same as or derived from queryType . | |
template<typename T > | |
bool | IsA () const |
Return true if this type is the same as or derived from T. | |
bool | IsUnknown () const |
Return true if this is the unknown type, representing a type unknown to the TfType system. | |
operator UnspecifiedBoolType () const | |
Convert to bool – return true if this type is not unknown, false otherwise. | |
bool | operator! () const |
Boolean not operator – return true if this type is unknown, false otherwise. | |
bool | IsRoot () const |
Return true if this is the root type. | |
TF_API bool | IsEnumType () const |
Return true if this is an enum type. | |
TF_API bool | IsPlainOldDataType () const |
Return true if this is a plain old data type, as defined by C++. | |
TF_API size_t | GetSizeof () const |
Return the size required to hold an instance of this type on the stack (does not include any heap allocated memory the instance uses). | |
static TF_API TfType const & | GetRoot () |
Return the root type of the type hierarchy. | |
static TF_API std::string | GetCanonicalTypeName (const std::type_info &) |
Return the canonical typeName used for a given std::type_info. | |
Finding types | |
TF_API TfType const & | FindDerivedByName (const std::string &name) const |
Retrieve the TfType that derives from this type and has the given alias or typename. | |
template<typename T > | |
static TfType const & | Find () |
Retrieve the TfType corresponding to type T . | |
template<typename T > | |
static TfType const & | Find (const T &obj) |
Retrieve the TfType corresponding to obj . | |
static TfType const & | Find (const std::type_info &t) |
Retrieve the TfType corresponding to an obj with the given type_info . | |
static TfType const & | FindByTypeid (const std::type_info &t) |
Retrieve the TfType corresponding to an obj with the given type_info . | |
static TF_API TfType const & | FindByName (const std::string &name) |
Retrieve the TfType corresponding to the given name . | |
template<typename BASE > | |
static TfType const & | FindDerivedByName (const std::string &name) |
Retrieve the TfType that derives from BASE and has the given alias or typename. | |
static TF_API TfType const & | FindByPythonClass (const TfPyObjWrapper &classObj) |
Retrieve the TfType corresponding to an obj with the given Python class classObj . | |
Registering new types | |
TF_API void | DefinePythonClass (const TfPyObjWrapper &classObj) const |
Define the Python class object corresponding to this TfType. | |
TF_API void | AddAlias (TfType base, const std::string &name) const |
Add an alias name for this type under the given base type. | |
const TfType & | Alias (TfType base, const std::string &name) const |
Convenience method to add an alias and return *this. | |
static TF_API TfType const & | Declare (const std::string &typeName) |
Declare a TfType with the given typeName , but no base type information. | |
static TF_API TfType const & | Declare (const std::string &typeName, const std::vector< TfType > &bases, DefinitionCallback definitionCallback=nullptr) |
Declare a TfType with the given typeName and bases . | |
template<typename T , typename BaseTypes = TfType::Bases<>> | |
static TfType const & | Declare () |
Declares a TfType with the given C++ type T and C++ base types Bases. | |
template<typename T , typename B > | |
static TfType const & | Define () |
Define a TfType with the given C++ type T and C++ base types B. | |
template<typename T > | |
static TfType const & | Define () |
Define a TfType with the given C++ type T and no bases. | |
template<typename Base , typename Derived > | |
static void | AddAlias (const std::string &name) |
Add an alias for DERIVED beneath BASE. | |
TfType represents a dynamic runtime type.
TfTypes are created and discovered at runtime, rather than compile time.
Features:
std::type_info
.std::map
key struct TfType::Bases |
A type-list of C++ base types.
using DefinitionCallback = void (*)(TfType) |
enum LegacyFlags |
TF_API TfType | ( | ) |
Construct an TfType representing an unknown type.
To actually register a new type with the TfType system, see TfType::Declare().
Note that this always holds true:
|
inlinestatic |
TF_API void AddAlias | ( | TfType | base, |
const std::string & | name | ||
) | const |
Add an alias name for this type under the given base type.
Aliases are similar to typedefs in C++: they provide an alternate name for a type. The alias is defined with respect to the given base
type. Aliases must be unique with respect to both other aliases beneath that base type and names of derived types of that base.
Convenience method to add an alias and return *this.
|
inline |
TF_API void * CastFromAncestor | ( | TfType | ancestor, |
void * | addr | ||
) | const |
Cast addr
, which pointed to the ancestor type ancestor
, to the type of *this
.
This function is the opposite of CastToAncestor()
; the assumption is that addr
was a pointer to the type corresponding to ancestor
, and was then reinterpret-cast to void*
, but now you wish to turn cast the pointer to the type corresponding to *this
. While the fact that addr
was a pointer of type ancestor
is taken on faith, a runtime check is performed to verify that the underlying object pointed to by addr
is of type *this
(or derived from *this
).
|
inline |
TF_API void * CastToAncestor | ( | TfType | ancestor, |
void * | addr | ||
) | const |
Cast addr
to the address corresponding to the type ancestor
.
(This is a dangerous function; there's probably a much better way to do whatever it is you're trying to do.)
With multiple inheritance, you can't do a reinterpret_cast back to an ancestor type; this function figures out how to cast addr to the address corresponding to the type ancestor if in fact ancestor is really an ancestor of the type corresponding to *this
.
In order for this function to work correctly, addr
must have been a pointer of type corresponding to *this
, which was cast to void; and of course the type of ancestor
must be an ancestor of the type of *this
.
|
static |
TfType const & Declare | ( | ) |
Definition at line 53 of file type_Impl.h.
|
static |
Declare a TfType with the given typeName
, but no base type information.
This just establishes the minimal stub for the type to exist, prior to it being fleshed out with more declarations (specifying base types) or a definition.
|
static |
Declare a TfType with the given typeName
and bases
.
If the bases vector is empty, the type will be marked as deriving from the root TfType (see TfType::GetRootType()). The definitionCallback
, if given, will be invoked later to define the type when needed.
It is ok to redeclare a type that has already been declared. The given bases will supplement any existing bases. An example use of this is the Plugin system, where only a single base may be known in the plugin metadata, but when the code is loaded later, a full set of bases is specified.
It is an error to redeclare a type's definitionCallback.
|
static |
Define a TfType with the given C++ type T and C++ base types B.
Each of the base types will be declared (but not defined) as TfTypes if they have not already been.
The typeName of the created TfType will be the canonical demangled RTTI type name, as defined by GetCanonicalTypeName().
It is an error to attempt to define a type that has already been defined.
|
static |
TfType const & Define | ( | ) |
Definition at line 61 of file type_Impl.h.
TfType const & Define | ( | ) |
Definition at line 72 of file type_Impl.h.
TF_API void DefinePythonClass | ( | const TfPyObjWrapper & | classObj | ) | const |
Define the Python class object corresponding to this TfType.
|
inline |
|
inline |
Sets the factory object for this type.
A type's factory typically has methods to instantiate the type given various arguments and must inherit from FactoryBase
. The factory cannot be changed once set.
|
inline |
Sets the factory object for this type.
A type's factory typically has methods to instantiate the type given various arguments and must inherit from FactoryBase
. The factory cannot be changed once set.
|
inlinestatic |
Retrieve the TfType
corresponding to type T
.
The type T
must have been declared or defined in the type system or the TfType
corresponding to an unknown type is returned.
|
inlinestatic |
|
inlinestatic |
Retrieve the TfType
corresponding to obj
.
The TfType
corresponding to the actual object represented by obj
is returned; this may not be the object returned by TfType::Find<T>()
if T
is a polymorphic type.
This works for Python subclasses of the C++ type T
as well, as long as T
has been wrapped using TfPyPolymorphic.
Of course, the object's type must have been declared or defined in the type system or the TfType
corresponding to an unknown type is returned.
|
static |
Retrieve the TfType
corresponding to the given name
.
Every type defined in the TfType system has a unique, implementation independent name. In addition, aliases can be added to identify a type underneath a specific base type; see TfType::AddAlias(). The given name will first be tried as an alias under the root type, and subsequently as a typename.
This method is equivalent to:
For any object obj
,
|
static |
Retrieve the TfType
corresponding to an obj with the given Python class classObj
.
|
inlinestatic |
|
inlinestatic |
TF_API TfType const & FindDerivedByName | ( | const std::string & | name | ) | const |
TF_API std::vector< std::string > GetAliases | ( | TfType | derivedType | ) | const |
Returns a vector of the aliases registered for the derivedType under this, the base type.
TF_API void GetAllAncestorTypes | ( | std::vector< TfType > * | result | ) | const |
Build a vector of all ancestor types inherited by this type.
The starting type is itself included, as the first element of the results vector.
Types are given in "C3" resolution order, as used for new-style classes starting in Python 2.3. This algorithm is more complicated than a simple depth-first traversal of base classes, in order to prevent some subtle errors with multiple-inheritance. See the references below for more background.
TF_API void GetAllDerivedTypes | ( | std::set< TfType > * | result | ) | const |
Return the set of all types derived (directly or indirectly) from this type.
TF_API std::vector< TfType > GetBaseTypes | ( | ) | const |
Return a vector of types from which this type was derived.
TF_API TfType const & GetCanonicalType | ( | ) | const |
Return the canonical type for this type.
|
static |
Return the canonical typeName used for a given std::type_info.
Exactly how the canonical name is generated is left undefined, but in practice it is likely to be the demangled RTTI name of the type_info, stripped of namespaces. The real answer is implemented by this method.
TF_API std::vector< TfType > GetDirectlyDerivedTypes | ( | ) | const |
Return a vector of types derived directly from this type.
|
inline |
Returns the factory object for this type as a T*
, or NULL
if there is no factory or the factory is not or is not derived from T
.
Clients can check if a factory is set using GetFactory<TfType::FactoryBase>()
.
TF_API size_t GetNBaseTypes | ( | TfType * | out, |
size_t | maxBases | ||
) | const |
Copy the first maxBases
base types of this
type to out
, or all the base types if this type has maxBases
or fewer base types.
Return this
type's number of base types.
Note that it is supported to change a TfType to its first base type by calling this function. For example:
TF_API TfPyObjWrapper GetPythonClass | ( | ) | const |
Return the Python class object for this type.
If this type is unknown or has not yet had a Python class defined, this will return None
, as an empty TfPyObjWrapper
|
static |
Return the root type of the type hierarchy.
All known types derive (directly or indirectly) from the root. If a type is specified with no bases, it is implicitly considered to derive from the root type.
TF_API size_t GetSizeof | ( | ) | const |
Return the size required to hold an instance of this type on the stack (does not include any heap allocated memory the instance uses).
This is what the C++ sizeof operator returns for the type, so this value is not very useful for Python types (it will always be sizeof(pxr_boost::python::object)).
TF_API const std::type_info & GetTypeid | ( | ) | const |
Return a C++ RTTI type_info for this type.
If this type is unknown, this will return a unique type_info
specifically for the unknown type.
If this type has been declared, but not yet had a C++ type defined, typeid(void)
will be returned.
TF_API const std::string & GetTypeName | ( | ) | const |
|
static |
Return an empty TfType, representing the unknown type.
This is equivalento the default constructor, TfType(). This form exists as a clearer way to express intent in code explicitly dealing with unknown types.
|
inline |
Return true if this type is the same as or derived from T.
This is equivalent to:
TF_API bool IsA | ( | TfType | queryType | ) | const |
Return true if this type is the same as or derived from queryType
.
If queryType
is unknown, this always returns false
.
TF_API bool IsEnumType | ( | ) | const |
Return true if this is an enum type.
TF_API bool IsPlainOldDataType | ( | ) | const |
Return true if this is a plain old data type, as defined by C++.
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
Equality operator.
|
inline |
TF_API void SetFactory | ( | std::unique_ptr< FactoryBase > | factory | ) | const |
Sets the factory object for this type.
A type's factory typically has methods to instantiate the type given various arguments and must inherit from FactoryBase
. The factory cannot be changed once set.
|
inline |
Sets the factory object for this type.
A type's factory typically has methods to instantiate the type given various arguments and must inherit from FactoryBase
. The factory cannot be changed once set.
|
friend |