Wildmeshing Toolkit
Loading...
Searching...
No Matches
wmtk::attribute::CachingAttribute< T > Class Template Reference

#include <CachingAttribute.hpp>

Inheritance diagram for wmtk::attribute::CachingAttribute< T >:
[legend]
Collaboration diagram for wmtk::attribute::CachingAttribute< T >:
[legend]

Public Types

using Scalar = T
 
using BaseType = Attribute< T >
 
template<int D>
using MapResult = typename BaseType::template MapResult< D >
 
template<int D>
using ConstMapResult = typename BaseType::template ConstMapResult< D >
 
- Public Types inherited from wmtk::attribute::Attribute< T >
using Scalar = T
 
template<int D = Eigen::Dynamic>
using MapResult = MapResult< T, D >
 
template<int D = Eigen::Dynamic>
using ConstMapResult = ConstMapResult< T, D >
 

Public Member Functions

 CachingAttribute (const CachingAttribute &)=delete
 
CachingAttributeoperator= (const CachingAttribute &)=delete
 
 CachingAttribute (CachingAttribute &&)=default
 
CachingAttributeoperator= (CachingAttribute &&)=default
 
void push_scope ()
 
void pop_scope (bool preserve_changes)
 
bool at_current_scope () const
 checks that we are viewing the active state of the attribute
 
size_t current_transaction_index () const
 
int64_t transaction_depth () const
 
bool has_transactions () const
 
template<int D = Eigen::Dynamic>
MapResult< D > vector_attribute (int64_t index)
 default mutable vector access
 
template<int D = Eigen::Dynamic>
ConstMapResult< D > const_vector_attribute (int64_t index) const
 default immutable vector access
 
T & scalar_attribute (int64_t index)
 default mutable scalar access
 
const T & const_scalar_attribute (int64_t index) const
 default immutable scalar access
 
template<int D = Eigen::Dynamic>
const T & const_vector_single_value (int64_t index, int8_t vector_index) const
 specialized immutable scalar access useful for topological operations
 
void change_to_next_scope ()
 
void change_to_previous_scope ()
 
void change_to_current_scope ()
 
void rollback_current_scope ()
 
void reset ()
 
void clear ()
 
void apply_cache ()
 
void apply_cache (std::vector< T > &other) const
 
const std::vector< T > & buffer () const
 
const std::vector< std::pair< size_t, size_t > > & indices () const
 
const std::vector< size_t > & transaction_starts () const
 
size_t buffer_end () const
 
size_t indices_end () const
 
void emplace ()
 
void pop (bool preserve_changes)
 
std::vector< std::pair< size_t, size_t > >::const_iterator transaction_start_begin (size_t scope_index) const
 
std::vector< std::pair< size_t, size_t > >::const_iterator final_transaction_end () const
 
std::vector< std::pair< size_t, size_t > >::const_reverse_iterator transaction_start_rend (size_t scope_index) const
 
std::vector< std::pair< size_t, size_t > >::const_reverse_iterator final_transaction_rbegin () const
 
void update_buffer_sizes_for_add (size_t data_size)
 
template<int D>
WMTK_CACHING_ATTRIBUTE_INLINE auto vector_attribute (int64_t index) -> MapResult< D >
 
template<int D>
WMTK_CACHING_ATTRIBUTE_INLINE auto const_vector_attribute (int64_t index) const -> ConstMapResult< D >
 
template<int D>
WMTK_CACHING_ATTRIBUTE_INLINE auto const_vector_single_value (int64_t index, int8_t vector_index) const -> const T &
 
template<typename Derived >
WMTK_CACHING_ATTRIBUTE_INLINE void cache (int64_t index, const Eigen::MatrixBase< Derived > &value)
 
- Public Member Functions inherited from wmtk::attribute::Attribute< T >
std::map< std::string, size_t > child_hashes () const override
 
void serialize (int dim, MeshWriter &writer) const
 
 Attribute (const std::string &name, int64_t dimension, T default_value=T(0), int64_t size=0)
 Initialize the attribute.
 
 Attribute (Attribute &&o)
 
Attributeoperator= (Attribute &&o)
 
 Attribute (const Attribute &o)=delete
 
Attributeoperator= (const Attribute &&o)=delete
 
 ~Attribute () override
 
template<int D = Eigen::Dynamic>
ConstMapResult< D > const_vector_attribute (int64_t index) const
 Access the value of an attribute at a particular index. If the dimension of the attribute is known at compile time then the template parameter should be elided to improve performance.
 
template<int D = Eigen::Dynamic>
MapResult< D > vector_attribute (int64_t index)
 Access the value of an attribute at a particular index. If the dimension of the attribute is known at compile time then the template parameter should be elided to improve performance.
 
const T & const_scalar_attribute (int64_t index) const
 Access the value of a scalar attribute.
 
T & scalar_attribute (int64_t index)
 Access the value of a scalar attribute. Assignment to the returned value will change the value.
 
template<int D = Eigen::Dynamic>
const T & const_vector_single_value (int64_t index, int8_t vector_index) const
 Access a single entry in a vector attribute. TODO: this might not actually be more performant than.
 
template<int D = Eigen::Dynamic>
T & vector_single_value (int64_t index, int8_t vector_index)
 Access to a single a single value of a scalr attribute.
 
void set (std::vector< T > val)
 Replace the internal data with val.
 
int64_t reserved_size () const
 The total number of elements in a vector.
 
int64_t dimension () const
 The number of values for each index.
 
void reserve (int64_t size)
 
const T & default_value () const
 returns the default value of this attribute
 
bool operator== (const Attribute< T > &o) const
 
void consolidate (const std::vector< int64_t > &new2old)
 Consolidate the vector, using the new2old map m provided and resizing the vector to m.size()
 
void index_remap (const std::vector< T > &old2new)
 Applies the scalar old2new map to the indices in the attribute This is commonly used after a consolidate to account for the change in global indices.
 
void index_remap (const std::vector< T > &old2new, const std::vector< Eigen::Index > &cols)
 
template<int D = Eigen::Dynamic>
ConstMapResult< D > const_vector_attribute (int64_t index, const std::vector< T > &data) const
 Accesses the attribute using the specified vector as the underlying data This is internally used by the single-arg const_vector_attribute and to help with serialization.
 
template<int D = Eigen::Dynamic>
ConstMapResult< D > const_vector_attribute_without_stride (int64_t index, const std::vector< T > &data) const
 Accesses the attribute using the specified vector as the underlying data This is internally used by the single-arg const_vector_attribute and to help with serialization.
 
template<int D = Eigen::Dynamic>
MapResult< D > vector_attribute (int64_t index, std::vector< T > &data) const
 Accesses the attribute using the specified vector as the underlying data This is internally used by the single-arg vector_attribute and to help with serialization.
 
template<int D = Eigen::Dynamic>
MapResult< D > vector_attribute_without_stride (int64_t index, std::vector< T > &data) const
 Accesses the attribute using the specified vector as the underlying data This is internally used by the single-arg const_vector_attribute and to help with serialization.
 
const T & const_scalar_attribute (int64_t index, const std::vector< T > &data) const
 Accesses the attribute using the specified scalar as the underlying data This is internally used by the single-arg const_scalar_attribute and to help with serialization.
 
T & scalar_attribute (int64_t index, std::vector< T > &data) const
 Accesses the attribute using the specified scalar as the underlying data This is internally used by the single-arg scalar_attribute and to help with serialization.
 
template<int D = Eigen::Dynamic>
const T & const_vector_single_value (int64_t index, int8_t vector_index, const std::vector< T > &data) const
 Accesses the attribute using the specified scalar as the underlying data This is internally used by the single-arg const_vector_single_value and to help with serialization.
 
template<int D = Eigen::Dynamic>
T & vector_single_value (int64_t index, int8_t vector_index, std::vector< T > &data) const
 Accesses the attribute using the specified scalar as the underlying data This is internally used by the single-arg vector_single_value and to help with serialization.
 
int64_t reserved_size (const std::vector< T > &data) const
 
const std::string & name () const
 
void set_name (const std::string &name)
 
template<int D>
WMTK_ATTRIBUTE_INLINE auto const_vector_attribute_without_stride (int64_t start, const std::vector< T > &data) const -> ConstMapResult< D >
 
template<int D>
WMTK_ATTRIBUTE_INLINE auto vector_attribute_without_stride (int64_t start, std::vector< T > &data) const -> MapResult< D >
 
template<int D>
WMTK_ATTRIBUTE_INLINE auto const_vector_attribute (int64_t index, const std::vector< T > &data) const -> ConstMapResult< D >
 
template<int D>
WMTK_ATTRIBUTE_INLINE auto vector_attribute (int64_t index, std::vector< T > &data) const -> MapResult< D >
 
template<int D>
WMTK_ATTRIBUTE_INLINE const T & const_vector_single_value (int64_t index, int8_t vector_index, const std::vector< T > &data) const
 
template<int D>
WMTK_ATTRIBUTE_INLINE T & vector_single_value (int64_t index, int8_t vector_index, std::vector< T > &data) const
 
template<int D>
WMTK_ATTRIBUTE_INLINE auto const_vector_attribute (int64_t index) const -> ConstMapResult< D >
 
template<int D>
WMTK_ATTRIBUTE_INLINE auto vector_attribute (int64_t index) -> MapResult< D >
 
template<int D>
WMTK_ATTRIBUTE_INLINE const T & const_vector_single_value (int64_t index, int8_t vector_index) const
 
template<int D>
WMTK_ATTRIBUTE_INLINE T & vector_single_value (int64_t index, int8_t vector_index)
 
- Public Member Functions inherited from wmtk::utils::Hashable
 Hashable ()
 
 Hashable (const Hashable &)
 
 Hashable (Hashable &&)
 
Hashableoperator= (const Hashable &)
 
Hashableoperator= (Hashable &&)
 
virtual ~Hashable ()
 
virtual std::size_t hash () const
 

Protected Attributes

std::vector< T > m_buffer = std::vector<T>(64)
 
std::vector< std::pair< size_t, size_t > > m_indices = std::vector<std::pair<size_t, size_t>>(32)
 
size_t m_current_transaction_index = 0
 
std::vector< size_t > m_transaction_starts
 
size_t m_buffer_end = 0
 
size_t m_indices_end = 0
 
- Protected Attributes inherited from wmtk::attribute::Attribute< T >
std::vector< T > m_data
 
int64_t m_dimension = -1
 
m_default_value = T(0)
 
std::string m_name
 

Private Member Functions

const T * get_value (int64_t index) const
 
template<typename Derived >
void cache (int64_t index, const Eigen::MatrixBase< Derived > &value)
 
void cache (int64_t index, const T &value)
 
void apply_last_scope ()
 

Detailed Description

template<typename T>
class wmtk::attribute::CachingAttribute< T >

Definition at line 18 of file CachingAttribute.hpp.

Member Typedef Documentation

◆ BaseType

template<typename T >
using wmtk::attribute::CachingAttribute< T >::BaseType = Attribute<T>

Definition at line 22 of file CachingAttribute.hpp.

◆ ConstMapResult

template<typename T >
template<int D>
using wmtk::attribute::CachingAttribute< T >::ConstMapResult = typename BaseType::template ConstMapResult<D>

Definition at line 26 of file CachingAttribute.hpp.

◆ MapResult

template<typename T >
template<int D>
using wmtk::attribute::CachingAttribute< T >::MapResult = typename BaseType::template MapResult<D>

Definition at line 24 of file CachingAttribute.hpp.

◆ Scalar

template<typename T >
using wmtk::attribute::CachingAttribute< T >::Scalar = T

Definition at line 21 of file CachingAttribute.hpp.

Constructor & Destructor Documentation

◆ CachingAttribute() [1/2]

template<typename T >
wmtk::attribute::CachingAttribute< T >::CachingAttribute ( const CachingAttribute< T > &  )
delete

◆ CachingAttribute() [2/2]

template<typename T >
wmtk::attribute::CachingAttribute< T >::CachingAttribute ( CachingAttribute< T > &&  )
default

Member Function Documentation

◆ apply_cache() [1/2]

template<typename T >
WMTK_CACHING_ATTRIBUTE_INLINE void wmtk::attribute::CachingAttribute< T >::apply_cache ( )

Definition at line 273 of file CachingAttribute.hxx.

◆ apply_cache() [2/2]

template<typename T >
WMTK_CACHING_ATTRIBUTE_INLINE void wmtk::attribute::CachingAttribute< T >::apply_cache ( std::vector< T > &  other) const

Definition at line 279 of file CachingAttribute.hxx.

◆ apply_last_scope()

template<typename T >
WMTK_CACHING_ATTRIBUTE_INLINE void wmtk::attribute::CachingAttribute< T >::apply_last_scope ( )
private

Definition at line 336 of file CachingAttribute.hxx.

◆ at_current_scope()

template<typename T >
WMTK_CACHING_ATTRIBUTE_INLINE bool wmtk::attribute::CachingAttribute< T >::at_current_scope ( ) const

checks that we are viewing the active state of the attribute

Definition at line 366 of file CachingAttribute.hxx.

◆ buffer()

template<typename T >
const std::vector< T > & wmtk::attribute::CachingAttribute< T >::buffer ( ) const
inline

◆ buffer_end()

template<typename T >
size_t wmtk::attribute::CachingAttribute< T >::buffer_end ( ) const
inline

◆ cache() [1/3]

template<typename T >
template<typename Derived >
void wmtk::attribute::CachingAttribute< T >::cache ( int64_t  index,
const Eigen::MatrixBase< Derived > &  value 
)
private

◆ cache() [2/3]

template<typename T >
template<typename Derived >
WMTK_CACHING_ATTRIBUTE_INLINE void wmtk::attribute::CachingAttribute< T >::cache ( int64_t  index,
const Eigen::MatrixBase< Derived > &  value 
)

Definition at line 233 of file CachingAttribute.hxx.

◆ cache() [3/3]

template<typename T >
WMTK_CACHING_ATTRIBUTE_INLINE void wmtk::attribute::CachingAttribute< T >::cache ( int64_t  index,
const T &  value 
)
private

Definition at line 259 of file CachingAttribute.hxx.

◆ change_to_current_scope()

template<typename T >
WMTK_CACHING_ATTRIBUTE_INLINE void wmtk::attribute::CachingAttribute< T >::change_to_current_scope ( )

Definition at line 361 of file CachingAttribute.hxx.

◆ change_to_next_scope()

template<typename T >
WMTK_CACHING_ATTRIBUTE_INLINE void wmtk::attribute::CachingAttribute< T >::change_to_next_scope ( )

Definition at line 353 of file CachingAttribute.hxx.

◆ change_to_previous_scope()

template<typename T >
WMTK_CACHING_ATTRIBUTE_INLINE void wmtk::attribute::CachingAttribute< T >::change_to_previous_scope ( )

Definition at line 344 of file CachingAttribute.hxx.

◆ clear()

template<typename T >
WMTK_CACHING_ATTRIBUTE_INLINE void wmtk::attribute::CachingAttribute< T >::clear ( )

Definition at line 203 of file CachingAttribute.hxx.

◆ const_scalar_attribute()

template<typename T >
WMTK_CACHING_ATTRIBUTE_INLINE auto wmtk::attribute::CachingAttribute< T >::const_scalar_attribute ( int64_t  index) const

default immutable scalar access

Definition at line 147 of file CachingAttribute.hxx.

◆ const_vector_attribute() [1/2]

template<typename T >
template<int D = Eigen::Dynamic>
ConstMapResult< D > wmtk::attribute::CachingAttribute< T >::const_vector_attribute ( int64_t  index) const

default immutable vector access

◆ const_vector_attribute() [2/2]

template<typename T >
template<int D>
WMTK_CACHING_ATTRIBUTE_INLINE auto wmtk::attribute::CachingAttribute< T >::const_vector_attribute ( int64_t  index) const -> ConstMapResult<D>

Definition at line 119 of file CachingAttribute.hxx.

◆ const_vector_single_value() [1/2]

template<typename T >
template<int D = Eigen::Dynamic>
const T & wmtk::attribute::CachingAttribute< T >::const_vector_single_value ( int64_t  index,
int8_t  vector_index 
) const

specialized immutable scalar access useful for topological operations

◆ const_vector_single_value() [2/2]

template<typename T >
template<int D>
WMTK_CACHING_ATTRIBUTE_INLINE auto wmtk::attribute::CachingAttribute< T >::const_vector_single_value ( int64_t  index,
int8_t  vector_index 
) const -> const T&

Definition at line 163 of file CachingAttribute.hxx.

◆ current_transaction_index()

template<typename T >
size_t wmtk::attribute::CachingAttribute< T >::current_transaction_index ( ) const
inline

◆ emplace()

template<typename T >
WMTK_CACHING_ATTRIBUTE_INLINE void wmtk::attribute::CachingAttribute< T >::emplace ( )

Definition at line 308 of file CachingAttribute.hxx.

◆ final_transaction_end()

template<typename T >
auto wmtk::attribute::CachingAttribute< T >::final_transaction_end ( ) const

Definition at line 68 of file CachingAttribute.hxx.

◆ final_transaction_rbegin()

template<typename T >
auto wmtk::attribute::CachingAttribute< T >::final_transaction_rbegin ( ) const

Definition at line 82 of file CachingAttribute.hxx.

◆ get_value()

template<typename T >
WMTK_CACHING_ATTRIBUTE_INLINE auto wmtk::attribute::CachingAttribute< T >::get_value ( int64_t  index) const
private

Definition at line 293 of file CachingAttribute.hxx.

◆ has_transactions()

template<typename T >
WMTK_CACHING_ATTRIBUTE_INLINE bool wmtk::attribute::CachingAttribute< T >::has_transactions ( ) const

Definition at line 379 of file CachingAttribute.hxx.

◆ indices()

template<typename T >
const std::vector< std::pair< size_t, size_t > > & wmtk::attribute::CachingAttribute< T >::indices ( ) const
inline

◆ indices_end()

template<typename T >
size_t wmtk::attribute::CachingAttribute< T >::indices_end ( ) const
inline

◆ operator=() [1/2]

template<typename T >
CachingAttribute & wmtk::attribute::CachingAttribute< T >::operator= ( CachingAttribute< T > &&  )
default

◆ operator=() [2/2]

template<typename T >
CachingAttribute & wmtk::attribute::CachingAttribute< T >::operator= ( const CachingAttribute< T > &  )
delete

◆ pop()

template<typename T >
WMTK_CACHING_ATTRIBUTE_INLINE void wmtk::attribute::CachingAttribute< T >::pop ( bool  preserve_changes)

Definition at line 316 of file CachingAttribute.hxx.

◆ pop_scope()

template<typename T >
WMTK_CACHING_ATTRIBUTE_INLINE void wmtk::attribute::CachingAttribute< T >::pop_scope ( bool  preserve_changes)

Definition at line 189 of file CachingAttribute.hxx.

◆ push_scope()

template<typename T >
WMTK_CACHING_ATTRIBUTE_INLINE void wmtk::attribute::CachingAttribute< T >::push_scope ( )

Definition at line 184 of file CachingAttribute.hxx.

◆ reset()

template<typename T >
WMTK_CACHING_ATTRIBUTE_INLINE void wmtk::attribute::CachingAttribute< T >::reset ( )

Definition at line 195 of file CachingAttribute.hxx.

◆ rollback_current_scope()

template<typename T >
WMTK_CACHING_ATTRIBUTE_INLINE void wmtk::attribute::CachingAttribute< T >::rollback_current_scope ( )

Definition at line 90 of file CachingAttribute.hxx.

◆ scalar_attribute()

template<typename T >
WMTK_CACHING_ATTRIBUTE_INLINE auto wmtk::attribute::CachingAttribute< T >::scalar_attribute ( int64_t  index)

default mutable scalar access

Definition at line 136 of file CachingAttribute.hxx.

◆ transaction_depth()

template<typename T >
WMTK_CACHING_ATTRIBUTE_INLINE int64_t wmtk::attribute::CachingAttribute< T >::transaction_depth ( ) const

Definition at line 373 of file CachingAttribute.hxx.

◆ transaction_start_begin()

template<typename T >
auto wmtk::attribute::CachingAttribute< T >::transaction_start_begin ( size_t  scope_index) const

Definition at line 61 of file CachingAttribute.hxx.

◆ transaction_start_rend()

template<typename T >
auto wmtk::attribute::CachingAttribute< T >::transaction_start_rend ( size_t  scope_index) const

Definition at line 76 of file CachingAttribute.hxx.

◆ transaction_starts()

template<typename T >
const std::vector< size_t > & wmtk::attribute::CachingAttribute< T >::transaction_starts ( ) const
inline

◆ update_buffer_sizes_for_add()

template<typename T >
WMTK_CACHING_ATTRIBUTE_INLINE void wmtk::attribute::CachingAttribute< T >::update_buffer_sizes_for_add ( size_t  data_size)

Definition at line 216 of file CachingAttribute.hxx.

◆ vector_attribute() [1/2]

template<typename T >
template<int D = Eigen::Dynamic>
MapResult< D > wmtk::attribute::CachingAttribute< T >::vector_attribute ( int64_t  index)

default mutable vector access

◆ vector_attribute() [2/2]

template<typename T >
template<int D>
WMTK_CACHING_ATTRIBUTE_INLINE auto wmtk::attribute::CachingAttribute< T >::vector_attribute ( int64_t  index) -> MapResult<D>

Definition at line 99 of file CachingAttribute.hxx.

Member Data Documentation

◆ m_buffer

template<typename T >
std::vector<T> wmtk::attribute::CachingAttribute< T >::m_buffer = std::vector<T>(64)
protected

◆ m_buffer_end

template<typename T >
size_t wmtk::attribute::CachingAttribute< T >::m_buffer_end = 0
protected

◆ m_current_transaction_index

template<typename T >
size_t wmtk::attribute::CachingAttribute< T >::m_current_transaction_index = 0
protected

◆ m_indices

template<typename T >
std::vector<std::pair<size_t, size_t> > wmtk::attribute::CachingAttribute< T >::m_indices = std::vector<std::pair<size_t, size_t>>(32)
protected

◆ m_indices_end

template<typename T >
size_t wmtk::attribute::CachingAttribute< T >::m_indices_end = 0
protected

◆ m_transaction_starts

template<typename T >
std::vector<size_t> wmtk::attribute::CachingAttribute< T >::m_transaction_starts
protected

The documentation for this class was generated from the following files: