Go to the documentation of this file.
4 #ifndef DUNE_TYPETREE_FILTEREDCOMPOSITENODE_HH
5 #define DUNE_TYPETREE_FILTEREDCOMPOSITENODE_HH
13 #include <dune/common/shared_ptr.hh>
14 #include <dune/common/typetraits.hh>
15 #include <dune/common/indices.hh>
36 template<
typename Filter,
typename Tag>
40 template<
typename Filter,
typename Node,
typename ChildTypes>
41 struct apply_filter_wrapper;
43 template<
typename Filter,
typename Node,
typename... Children>
44 struct apply_filter_wrapper<Filter,Node,std::tuple<Children...> >
45 :
public Filter::template apply<Node,Children...>
49 template<
typename Filter>
50 struct get_filter<Filter,SimpleFilterTag>
54 template<
typename Node,
typename ChildTypes>
56 :
public apply_filter_wrapper<filter<Filter>,Node,ChildTypes>
62 template<
typename Filter>
63 struct get_filter<Filter,AdvancedFilterTag>
67 template<
typename Node,
typename ChildTypes>
69 :
public apply_filter_wrapper<Filter,Node,ChildTypes>
79 template<
typename Node,
typename Filter>
83 typedef typename get_filter<Filter,typename Filter::FilterTag>::type filter;
84 typedef typename filter::template apply<Node,typename Node::ChildTypes>::type filter_result;
85 typedef typename filter_result::template apply<Node> mapped_children;
87 static const bool nodeIsConst = std::is_const<typename std::remove_reference<Node>::type>::value;
89 template<std::
size_t k>
92 static const bool value = !nodeIsConst;
116 static const std::size_t
CHILDREN = filter_result::size;
120 return filter_result::size;
124 template<std::
size_t k>
129 typedef typename std::tuple_element<k,typename mapped_children::Children>::type OriginalChild;
131 static const std::size_t mapped_index = std::tuple_element<k,typename filter_result::IndexMap>::type::original_index;
139 typedef typename OriginalChild::type
type;
142 typedef typename OriginalChild::Storage
Storage;
155 template<std::
size_t k>
156 typename std::enable_if<lazy_enable<k>::value,
typename Child<k>::Type&>::type
159 return _node->template child<Child<k>::mapped_index>();
166 template<std::
size_t k>
169 return _node->template child<Child<k>::mapped_index>();
176 template<std::
size_t k>
180 return _node->template childStorage<Child<k>::mapped_index>();
190 template<std::
size_t k>
193 return _node->template childStorage<Child<k>::mapped_index>();
197 template<std::
size_t k>
200 _node->template childStorage<Child<k>::mapped_index>() = stackobject_to_shared_ptr(
child);
204 template<std::
size_t k>
207 _node->template childStorage<Child<k>::mapped_index>() =
child;
221 template<
bool enabled = !nodeIsConst>
222 typename std::enable_if<enabled,Node&>::type
241 template<
bool enabled = !nodeIsConst>
242 typename std::enable_if<enabled,std::shared_ptr<Node> >::type
271 : _node(stackobject_to_shared_ptr(node))
277 std::shared_ptr<Node> _node;
285 #endif // DUNE_TYPETREE_FILTEREDCOMPOSITENODE_HH
OriginalChild::Type Type
The type of the child.
Definition: filteredcompositenode.hh:136
static const std::size_t CHILDREN
The number of children.
Definition: filteredcompositenode.hh:116
std::enable_if< lazy_enable< k >::value, typename Child< k >::Type & >::type child(Dune::index_constant< k >={})
Returns the i-th child.
Definition: filteredcompositenode.hh:157
OriginalChild::type type
The type of the child.
Definition: filteredcompositenode.hh:139
Type
Definition: treepath.hh:30
FilteredCompositeNode(std::shared_ptr< Node > node)
Initialize the CompositeNode with copies of the passed in Storage objects.
Definition: filteredcompositenode.hh:265
CompositeNodeTag NodeTag
The type tag that describes a CompositeNode.
Definition: filteredcompositenode.hh:98
const Node & unfiltered() const
Returns the unfiltered node (const version).
Definition: filteredcompositenode.hh:232
std::enable_if< lazy_enable< k >::value, typename Child< k >::Storage >::type childStorage()
Returns the storage of the i-th child.
Definition: filteredcompositenode.hh:178
Tag designating a composite node.
Definition: nodetags.hh:22
static const bool isComposite
Mark this class as a composite in the dune-typetree.
Definition: filteredcompositenode.hh:113
Access to the type and storage type of the i-th child.
Definition: filteredcompositenode.hh:125
mapped_children::NodeStorage NodeStorage
The type used for storing the children.
Definition: filteredcompositenode.hh:101
std::enable_if< enabled, Node & >::type unfiltered()
Returns the unfiltered node.
Definition: filteredcompositenode.hh:223
Definition: accumulate_static.hh:13
Base class for composite nodes representing a filtered view on an underlying composite node.
Definition: filteredcompositenode.hh:80
mapped_children::ChildTypes ChildTypes
A tuple storing the types of all children.
Definition: filteredcompositenode.hh:104
std::shared_ptr< const Node > unfilteredStorage() const
Returns the storage object of the unfiltered node (const version).
Definition: filteredcompositenode.hh:252
std::enable_if< enabled, std::shared_ptr< Node > >::type unfilteredStorage()
Returns the storage object of the unfiltered node.
Definition: filteredcompositenode.hh:243
Child< k >::ConstStorage childStorage() const
Returns the storage of the i-th child (const version).
Definition: filteredcompositenode.hh:191
static const bool isLeaf
Mark this class as non leaf in the dune-typetree.
Definition: filteredcompositenode.hh:107
OriginalChild::Storage Storage
The storage type of the child.
Definition: filteredcompositenode.hh:142
OriginalChild::ConstStorage ConstStorage
The const storage type of the child.
Definition: filteredcompositenode.hh:145
void setChild(typename Child< k >::storage_type child, typename std::enable_if< lazy_enable< k >::value, void * >::type=0)
Sets the storage of the i-th child to the passed-in value.
Definition: filteredcompositenode.hh:205
const Child< k >::Type & child(Dune::index_constant< k >={}) const
Returns the i-th child (const version).
Definition: filteredcompositenode.hh:167
static constexpr std::size_t degree()
Definition: filteredcompositenode.hh:118
FilteredCompositeNode(Node &node)
Initialize the CompositeNode with a copy of the passed-in storage type.
Definition: filteredcompositenode.hh:270
static const bool isPower
Mark this class as a non power in the dune-typetree.
Definition: filteredcompositenode.hh:110
void setChild(typename Child< k >::type &child, typename std::enable_if< lazy_enable< k >::value, void * >::type=0)
Sets the i-th child to the passed-in value.
Definition: filteredcompositenode.hh:198