Wildmeshing Toolkit
Loading...
Searching...
No Matches
TypedAttributeManager.hpp
Go to the documentation of this file.
1#pragma once
2
4#include "AttributeHandle.hpp"
6
7
8#include <Eigen/Core>
9
10#include <map>
11#include <vector>
12
13
14namespace wmtk {
15
16class MeshWriter;
17class Mesh;
18namespace attribute {
19
24template <typename T>
26{
27 typedef Eigen::Map<Eigen::Matrix<T, Eigen::Dynamic, 1>> MapResult;
28 typedef Eigen::Map<const Eigen::Matrix<T, Eigen::Dynamic, 1>> ConstMapResult;
29
30
31public:
37
38 void serialize(const int dim, MeshWriter& writer) const;
39
40 // attribute directly hashes its "child_hashables" components so it overrides "child_hashes"
41 std::map<std::string, const wmtk::utils::Hashable*> child_hashables() const override;
42 std::map<std::string, std::size_t> child_hashes() const override;
43
45 const std::string& name,
46 int64_t dimension,
47 bool replace = false,
48 T default_value = T(0));
49
50 // Number of (vector-)values available to be written to, which can be more than the number of simplcies the mesh has
51 int64_t reserved_size() const;
52
53 // sets teh size of teh store to be the specified size
54 void reserve(const int64_t size);
55
56 // adds size more simplices to teh existing reservation
57 void reserve_more(int64_t size);
58 // makes sure we have at least size simplices reserved
59 void guarantee_at_least(int64_t size);
60
68 const std::vector<AttributeHandle>& attributes);
74 void remove_attribute(const AttributeHandle& attribute);
75
76
77 bool operator==(const TypedAttributeManager<T>& other) const;
78 void push_scope();
79 void pop_scope(bool apply_updates = true);
81
82 void change_to_parent_scope() const;
83 void change_to_child_scope() const;
84
85
86 int64_t dimension(const AttributeHandle& handle) const;
87 const T& default_value(const AttributeHandle& handle) const;
88 std::string get_name(const AttributeHandle& handle) const;
89
90 void set_name(const AttributeHandle& handle, const std::string& name);
91
92 bool has_attribute(const std::string& name) const;
93
94 // the number of active attributes held in this object
95 // Note that the set of active attribute indices is not defined by the integers between 0,
96 // attribute_count. To get a list of valid handles use active_attributes This function is not
97 // that fast
98 size_t attribute_count() const;
99
100 // Returns a vector of handles to the set of active attributes
101 std::vector<AttributeHandle> active_attributes() const;
102 void assert_capacity_valid(int64_t cap) const;
103
105 const CachingAttribute<T>& attribute(const AttributeHandle& handle) const;
106
107 AttributeHandle attribute_handle(const std::string& name) const;
108
109 bool is_active(const AttributeHandle& handle) const;
110
111 // pass by value due to
112 //https://clang.llvm.org/extra/clang-tidy/checks/modernize/pass-by-value.html
113 void set(const AttributeHandle& handle, std::vector<T> val);
114
118 bool validate() const;
119
120 bool validate_handle(const AttributeHandle& handle) const;
121
122protected:
124 [[deprecated]] void clear_dead_attributes();
125
126
127 size_t attribute_size(const AttributeHandle& handle) const;
128
129private:
130 std::map<std::string, AttributeHandle> m_handles;
131
132 // The vector held in each Attribute in m_attributes has this size
133 int64_t m_reserved_size = -1;
134
135 std::vector<std::unique_ptr<CachingAttribute<T>>> m_attributes;
136};
137template <typename T>
139{
140 CachingAttribute<T>& attr = *m_attributes.at(handle.index());
141 return attr;
142}
143template <typename T>
145 const AttributeHandle& handle) const
146{
147 return *m_attributes.at(handle.index());
148}
149
150template <typename T>
151inline int64_t TypedAttributeManager<T>::dimension(const AttributeHandle& handle) const
152{
153 return attribute(handle).dimension();
154}
155template <typename T>
157{
158 return attribute(handle).default_value();
159}
160} // namespace attribute
161} // namespace wmtk
Internal handle representation used by TypedAttributeManager.
int64_t index() const noexcept
int64_t dimension() const
The number of values for each index.
Contains all attributes of type T for a single mesh.
void remove_attribute(const AttributeHandle &attribute)
Remove a single attribute.
Eigen::Map< Eigen::Matrix< T, Eigen::Dynamic, 1 > > MapResult
void clear_dead_attributes()
Clears and compactifies the attribute list. This invalidates all existing handles.
std::map< std::string, std::size_t > child_hashes() const override
AttributeHandle register_attribute(const std::string &name, int64_t dimension, bool replace=false, T default_value=T(0))
TypedAttributeManager(TypedAttributeManager &&o)=default
std::vector< AttributeHandle > active_attributes() const
TypedAttributeManager & operator=(TypedAttributeManager &&o)=default
CachingAttribute< T > & attribute(const AttributeHandle &handle)
Eigen::Map< const Eigen::Matrix< T, Eigen::Dynamic, 1 > > ConstMapResult
int64_t dimension(const AttributeHandle &handle) const
void set(const AttributeHandle &handle, std::vector< T > val)
TypedAttributeManager & operator=(const TypedAttributeManager &o)=delete
bool validate() const
Validate that handles and attributes are in sync.
std::map< std::string, AttributeHandle > m_handles
std::string get_name(const AttributeHandle &handle) const
AttributeHandle attribute_handle(const std::string &name) const
bool validate_handle(const AttributeHandle &handle) const
TypedAttributeManager(const TypedAttributeManager &o)=delete
bool is_active(const AttributeHandle &handle) const
std::vector< std::unique_ptr< CachingAttribute< T > > > m_attributes
void set_name(const AttributeHandle &handle, const std::string &name)
void serialize(const int dim, MeshWriter &writer) const
const T & default_value(const AttributeHandle &handle) const
bool operator==(const TypedAttributeManager< T > &other) const
std::map< std::string, const wmtk::utils::Hashable * > child_hashables() const override
void remove_attributes(const std::vector< AttributeHandle > &attributes)
Remove all passed in attributes.
bool has_attribute(const std::string &name) const
size_t attribute_size(const AttributeHandle &handle) const