Graphite Version 3
An experimental 3D geometry processing program
|
Base class for Attributes, that manipulates an attribute stored in an AttributesManager. More...
#include <geogram/basic/attributes.h>
Public Member Functions | |
AttributeBase () | |
Creates an uninitialized (unbound) Attribute. | |
AttributeBase (AttributesManager &manager, const std::string &name) | |
Creates or retrieves a persistent attribute attached to a given AttributesManager. | |
bool | is_bound () const |
Tests whether an Attribute is bound. | |
void | unbind () |
Unbinds this Attribute. | |
void | bind (AttributesManager &manager, const std::string &name) |
Binds this Attribute to an AttributesManager. | |
bool | bind_if_is_defined (AttributesManager &manager, const std::string &name) |
Binds this Attribute to an AttributesManager if it already exists in the AttributesManager. | |
bool | bind_if_is_compatible (AttributesManager &manager, const std::string &name) |
Binds this Attribute to an AttributesManager if it already exists in the AttributesManager and tyopes are compatible. | |
void | create_vector_attribute (AttributesManager &manager, const std::string &name, index_t dimension) |
Creates and binds a new vector attribute. | |
void | destroy () |
Destroys this attribute in the AttributesManager. | |
void | redim (index_t new_dim) |
Sets the dimension. | |
~AttributeBase () | |
Attribute destructor. | |
index_t | size () const |
Gets the size. | |
void | zero () |
Sets all the elements of this Attribute to zero. | |
bool | can_get_vector () |
Tests whether get_vector() can be called on this Attribute. | |
vector< T > & | get_vector () |
Gets a reference to the internal vector<T> used to store the attribute. | |
const vector< T > & | get_vector () const |
Gets a const reference to the internal vector<T> used to store the attribute. | |
AttributesManager * | manager () const |
Gets the AttributesManager this Attribute is bound to. | |
![]() | |
AttributeStoreObserver () | |
Creates a new uninitialied AttributeStore. | |
void | notify (Memory::pointer base_addr, index_t size, index_t dim) |
Callback function, called by the AttributeStore whenever it is modified. | |
index_t | size () const |
Gets the size. | |
index_t | dimension () const |
Gets the dimension. | |
index_t | nb_elements () const |
Gets the total number of elements. | |
void | register_me (AttributeStore *store) |
Registers this observer to an AttributeStore. | |
void | unregister_me (AttributeStore *store) |
Unregisters this observer from an AttributeStore. | |
void | disconnect () |
Disconnects this AttributeStoreObserver from its AttributeStore. | |
Static Public Member Functions | |
static bool | is_defined (AttributesManager &manager, const std::string &name, index_t dim=0) |
Tests whether an attribute with the specified name and with corresponding type exists in an AttributesManager. | |
Protected Attributes | |
AttributesManager * | manager_ |
AttributeStore * | store_ |
![]() | |
Memory::pointer | base_addr_ |
index_t | size_ |
index_t | dimension_ |
bool | disconnected_ |
Base class for Attributes, that manipulates an attribute stored in an AttributesManager.
Definition at line 1106 of file attributes.h.
|
inline |
Creates an uninitialized (unbound) Attribute.
Definition at line 1112 of file attributes.h.
|
inline |
Creates or retrieves a persistent attribute attached to a given AttributesManager.
If the attribute already exists with the specified name in the AttributesManager then it is retrieved, else it is created and bound to the name.
[in] | manager | a reference to the AttributesManager |
[in] | name | name of the attribute |
Definition at line 1126 of file attributes.h.
|
inline |
Attribute destructor.
The attribute is not destroyed, it can be retrieved later by binding with the same name. To destroy the attribute, use destroy() instead.
Definition at line 1283 of file attributes.h.
|
inline |
Binds this Attribute to an AttributesManager.
If the attribute already exists with the specified name in the AttributesManager then it is retrieved, else it is created and bound to the name.
[in] | manager | a reference to the AttributesManager |
[in] | name | name of the attribute |
Definition at line 1166 of file attributes.h.
|
inline |
Binds this Attribute to an AttributesManager if it already exists in the AttributesManager and tyopes are compatible.
[in] | manager | a reference to the AttributesManager |
[in] | name | name of the attribute |
true
if this Attribute was successfully bound Definition at line 1210 of file attributes.h.
|
inline |
Binds this Attribute to an AttributesManager if it already exists in the AttributesManager.
[in] | manager | a reference to the AttributesManager |
[in] | name | name of the attribute |
true
if this Attribute was successfully bound Definition at line 1188 of file attributes.h.
|
inline |
Tests whether get_vector() can be called on this Attribute.
get_vector() can be called if this attribute is bound and if type T corresponds to the type used to create the attribute.
Definition at line 1335 of file attributes.h.
|
inline |
Creates and binds a new vector attribute.
[in] | manager | the attribute manager |
[in] | name | the name of the attribute |
[in] | dimension | the number of elements per item |
Definition at line 1235 of file attributes.h.
|
inline |
Destroys this attribute in the AttributesManager.
On exit, the attribute is no-longer accessible in the AttributesManager, its name is available again, and this attribute is in the unbound state.
Definition at line 1254 of file attributes.h.
|
inline |
Gets a reference to the internal vector<T> used to store the attribute.
It is forbidden to modify the size of the returned vector.
Definition at line 1351 of file attributes.h.
|
inline |
Gets a const reference to the internal vector<T> used to store the attribute.
Definition at line 1364 of file attributes.h.
|
inline |
Tests whether an Attribute is bound.
true | if this Attribute is bound |
false | otherwise |
Definition at line 1137 of file attributes.h.
|
inlinestatic |
Tests whether an attribute with the specified name and with corresponding type exists in an AttributesManager.
[in] | manager | a reference to the AttributesManager |
[in] | name | the name of the attribute |
[in] | dim | dimension, or 0 if any dimension can match |
Definition at line 1297 of file attributes.h.
|
inline |
Gets the AttributesManager this Attribute is bound to.
Definition at line 1375 of file attributes.h.
|
inline |
Sets the dimension.
The dimension is 1 for standard attributes and can be greater for vector attributes. The existing fields are kept. If the new dimension is greater than the old one, then new fields are initialized to the default value for the attribute type.
[in] | new_dim | the new dimension |
Definition at line 1271 of file attributes.h.
|
inline |
Gets the size.
Definition at line 1313 of file attributes.h.
|
inline |
|
inline |
Sets all the elements of this Attribute to zero.
Definition at line 1321 of file attributes.h.
|
protected |
Definition at line 1380 of file attributes.h.
|
protected |
Definition at line 1381 of file attributes.h.