The attribute set comprises all attributes attached to a database element. More...
#include <iattribute_set.h>
Public Member Functions | |
virtual IData * | create_attribute (const char *name, const char *type)=0 |
Creates a new attribute name of the type type . More... | |
template<class T> | |
T * | create_attribute (const char *name, const char *type) |
Creates a new attribute name of the type type . More... | |
template<class T> | |
T * | create_attribute (const char *name) |
Creates a new attribute name of the type T . More... | |
virtual bool | destroy_attribute (const char *name)=0 |
Destroys the attribute name . More... | |
virtual const IData * | access_attribute (const char *name) const =0 |
Returns a const pointer to the attribute name . More... | |
template<class T> | |
const T * | access_attribute (const char *name) const |
Returns a const pointer to the attribute name . More... | |
virtual IData * | edit_attribute (const char *name)=0 |
Returns a mutable pointer to the attribute name . More... | |
template<class T> | |
T * | edit_attribute (const char *name) |
Returns a mutable pointer to the attribute name . More... | |
virtual bool | is_attribute (const char *name) const =0 |
Indicates existence of an attribute. More... | |
virtual const char * | get_attribute_type_name (const char *name) const =0 |
Returns the type of an attribute. More... | |
virtual Sint32 | set_attribute_propagation (const char *name, Propagation_type value)=0 |
Sets the propagation type of the attribute name . More... | |
virtual Propagation_type | get_attribute_propagation (const char *name) const =0 |
Returns the propagation type of the attribute name . More... | |
virtual const char * | enumerate_attributes (Sint32 index) const =0 |
Returns the name of the attribute indicated by index . More... | |
Public Member Functions inherited from mi::base::IInterface | |
virtual Uint32 | retain () const =0 |
Increments the reference count. More... | |
virtual Uint32 | release () const =0 |
Decrements the reference count. More... | |
virtual const IInterface * | get_interface (const Uuid &interface_id) const =0 |
Acquires a const interface from another. More... | |
template<class T> | |
const T * | get_interface () const |
Acquires a const interface from another. More... | |
virtual IInterface * | get_interface (const Uuid &interface_id)=0 |
Acquires a mutable interface from another. More... | |
template<class T> | |
T * | get_interface () |
Acquires a mutable interface from another. More... | |
virtual Uuid | get_iid () const =0 |
Returns the interface ID of the most derived interface. More... | |
Additional Inherited Members | |
Public Types inherited from mi::base::Interface_declare< 0x1bcb8d48, ... > | |
typedef Interface_declare< id1, ... > | Self |
Own type. More... | |
typedef Uuid_t< id1, ... > | IID |
Declares the interface ID (IID) of this interface. More... | |
Public Types inherited from mi::base::IInterface | |
typedef Uuid_t<0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0> | IID |
Declares the interface ID (IID) of this interface. More... | |
Static Public Member Functions inherited from mi::base::Interface_declare< 0x1bcb8d48, ... > | |
static bool | compare_iid (const Uuid &iid) |
Compares the interface ID iid against the interface ID of this interface and of its ancestors. More... | |
Static Public Member Functions inherited from mi::base::IInterface | |
static bool | compare_iid (const Uuid &iid) |
Compares the interface ID iid against the interface ID of this interface. More... | |
The attribute set comprises all attributes attached to a database element.
Attributes are pieces of information that can be attached to any database element. Basically, an attribute set is a map from attribute names (strings) to attribute values (instances of mi::IData).
Attributes can be inherited in the scene graph. For details, see mi::neuraylib::Propagation_type.
|
inline |
Returns a const pointer to the attribute name
.
This templated member function is a wrapper of the non-template variant for the user's convenience. It eliminates the need to call mi::base::IInterface::get_interface(const Uuid &) on the returned pointer, since the return type already is a pointer to the type T
specified as template parameter.
T | The interface type of the attribute. |
name | The name of the attribute. In addition, you can also access parts of array or structure attributes directly. For an array element add the index in square brackets to the attribute name. For a structure member add a dot and the name of the structure member to the attribute name. |
NULL
if there is no attribute with the name name
or if T
does not match the attribute's type.
|
pure virtual |
Returns a const pointer to the attribute name
.
name | The name of the attribute. In addition, you can also access parts of array or structure attributes directly. For an array element add the index in square brackets to the attribute name. For a structure member add a dot and the name of the structure member to the attribute name. |
NULL
if there is no attribute with the name name
.
|
inline |
Creates a new attribute name
of the type T
.
See Types for a list of supported attribute types.
Note that there are two versions of this templated member function, one that takes only one argument (the attribute name), and another one that takes two arguments (the attribute name and the type name). The version with one argument can only be used to create a subset of supported attribute types: it supports only those types where the type name can be deduced from the template parameter, i.e., it does not support arrays and structures. The version with two arguments can be used to create attributes of any supported type (but requires the type name as parameter, which is redundant for many types). Attempts to use the version with one argument with a template parameter where the type name can not be deduced results in compiler errors.
This templated member function is a wrapper of the non-template variant for the user's convenience. It eliminates the need to call mi::base::IInterface::get_interface(const Uuid &) on the returned pointer, since the return type already is a pointer to the type T
specified as template parameter.
T | The interface type of the attribute. |
name | The name of the attribute. The name must not contain "[" , "]" , or "." |
NULL
in case of failure. Reasons for failure are:name
or type
is invalid,name
, orname
is the name of a reserved attribute and T
does not match the required type(s) of such an attribute.
|
inline |
Creates a new attribute name
of the type type
.
See Types for a list of supported attribute types.
Note that there are two versions of this templated member function, one that takes only one argument (the attribute name), and another one that takes two arguments (the attribute name and the type name). The version with one argument can only be used to create a subset of supported attribute types: it supports only those types where the type name can be deduced from the template parameter, i.e., it does not support arrays and structures. The version with two arguments can be used to create attributes of any supported type (but requires the type name as parameter, which for redundant for many types). Attempts to use the version with one argument with a template parameter where the type name can not be deduced results in compiler errors.
This templated member function is a wrapper of the non-template variant for the user's convenience. It eliminates the need to call mi::base::IInterface::get_interface(const Uuid &) on the returned pointer, since the return type already is a pointer to the type T
specified as template parameter.
T | The interface type of the attribute. |
name | The name of the attribute. The name must not contain "[" , "]" , or "." |
type | The type of the attribute. See Types for a list of supported attribute types. |
NULL
in case of failure. Reasons for failure are:name
or type
is invalid,name
,name
is the name of a reserved attribute and type
does not match the required type(s) of such an attribute, orT
does not match type
.
|
pure virtual |
Creates a new attribute name
of the type type
.
name | The name of the attribute. The name must not contain "[" , "]" , or "." |
type | The type of the attribute. See Types for a list of supported attribute types. |
NULL
in case of failure. Reasons for failure are:name
or type
is invalid,name
, orname
is the name of a reserved attribute and type
does not match the required type(s) of such an attribute.
|
pure virtual |
Destroys the attribute name
.
name | The name of the attribute to destroy. |
true
if the attribute has been successfully destroyed, and false
otherwise (there is no attribute with the name name
).
|
inline |
Returns a mutable pointer to the attribute name
.
This templated member function is a wrapper of the non-template variant for the user's convenience. It eliminates the need to call mi::base::IInterface::get_interface(const Uuid &) on the returned pointer, since the return type already is a pointer to the type T
specified as template parameter.
T | The interface type of the attribute. |
name | The name of the attribute. In addition, you can also access parts of array or structure attributes directly. For an array element add the index in square brackets to the attribute name. For a structure member add a dot and the name of the structure member to the attribute name. |
NULL
if there is no attribute with the name name
or if T
does not match the attribute's type.
|
pure virtual |
Returns a mutable pointer to the attribute name
.
name | The name of the attribute. In addition, you can also access parts of array or structure attributes directly. For an array element add the index in square brackets to the attribute name. For a structure member add a dot and the name of the structure member to the attribute name. |
NULL
if there is no attribute with the name name
.
|
pure virtual |
Returns the name of the attribute indicated by index
.
index | The index of the attribute. |
index
, or NULL
if index
is out of bounds.
|
pure virtual |
Returns the propagation type of the attribute name
.
|
pure virtual |
Returns the type of an attribute.
See Types for a list of supported attribute types.
name | The name of the attribute. In addition, you can also query parts of array or structure attributes directly. For an array element add the index in square brackets to the attribute name. For a structure member add a dot and the name of the structure member to the attribute name. |
NULL
if there is no attribute with the name name
.
|
pure virtual |
Indicates existence of an attribute.
name | The name of the attribute. In addition, you can also checks for parts of array or structure attributes directly. For an array element add the index in square brackets to the attribute name. For a structure member add a dot and the name of the structure member to the attribute name. |
true
if the attribute set contains this attribute (and the attribute contains the requested array element or struct member), false
otherwise
|
pure virtual |
Sets the propagation type of the attribute name
.
NULL
pointer or invalid enum value).name
.