Discontinuous Galerkin Library
#include "dg/algorithm.h"
Loading...
Searching...
No Matches
memory.h
Go to the documentation of this file.
1#pragma once
2
3#include <any>
4#include <memory>
5#include <typeindex>
6
7namespace dg
8{
9
10//there is probably a better class in boost...
19template<class Cloneable>
21{
23 ClonePtr( std::nullptr_t value = nullptr):m_ptr(nullptr){}
28 ClonePtr( Cloneable* ptr): m_ptr(ptr){}
29
37 ClonePtr( const Cloneable& src) : m_ptr( src.clone() ) { }
38
43 ClonePtr( const ClonePtr& src) : m_ptr( src.m_ptr.get() == nullptr ? nullptr : src.m_ptr->clone() ) { }
49 {
50 //copy and swap
51 ClonePtr tmp(src);
52 swap( *this, tmp );
53 return *this;
54 }
59 ClonePtr( ClonePtr&& src) noexcept : m_ptr( nullptr)
60 {
61 swap( *this, src); //steal resource
62 }
67 ClonePtr& operator=( ClonePtr&& src) noexcept
68 {
69 swap( *this, src );
70 return *this;
71 }
89 friend void swap( ClonePtr& first, ClonePtr& second)
90 {
91 std::swap(first.m_ptr,second.m_ptr);
92 }
93
101 void reset( Cloneable* ptr){
102 m_ptr.reset( ptr);
103 }
105 Cloneable* release() noexcept { m_ptr.release();}
110 void reset( const Cloneable& src){
111 ClonePtr tmp(src);
112 swap(*this, tmp);
113 }
114
119 Cloneable * get() {return m_ptr.get();}
124 const Cloneable* get() const {return m_ptr.get();}
125
127 Cloneable& operator*() { return *m_ptr;}
129 const Cloneable& operator*() const { return *m_ptr;}
131 Cloneable* operator->() { return m_ptr.operator->();}
133 const Cloneable* operator->()const { return m_ptr.operator->();}
135 explicit operator bool() const{ return (bool)m_ptr;}
136
137
138 private:
139 std::unique_ptr<Cloneable> m_ptr;
140};
141
143namespace detail
144{
145
147//should not be public (because of the const behaviour, which is a dirty trick...)
148template<template<typename> typename Vector>
149struct AnyVector
150{
151 AnyVector( ) : m_type( typeid( void)){}
152
153 // If not allocated or wrong type; change size and type
154 // May need to be called using any_vec.template set<value_type>(size)
155 template<class value_type>
156 void set(unsigned size)
157 {
158 auto type_idx = std::type_index( typeid( value_type));
159 if( type_idx != m_type)
160 {
161 m_vec.emplace<Vector<value_type>>(size);
162 m_type = type_idx;
163 }
164 else
165 {
166 auto ptr = std::any_cast<Vector<value_type>>(
167 &m_vec);
168 ptr->resize( size);
169 }
170 }
171 // If you think you need this fct. think again, std::vector e.g. will not release
172 // memory on resize unless the size is bigger
173 //template<class value_type>
174 //void set_at_least( unsigned size);
175 template<class value_type>
176 void swap ( Vector<value_type>& src)
177 {
178 auto type_idx = std::type_index( typeid( value_type));
179 if( type_idx != m_type)
180 {
181 m_vec.emplace< Vector<value_type>>(std::move(src));
182 m_type = type_idx;
183 }
184 else
185 {
186 auto& vec = std::any_cast<Vector<value_type>&>( m_vec);
187 src.swap(vec);
188 }
189 }
190 // Get read access to underlying buffer
191 // May need to be called using any_vec.template get<value_type>()
192 template<class value_type>
193 const Vector<value_type>& get( ) const
194 {
195 // throws if not previously set
196 return std::any_cast<const Vector<value_type>&>(
197 m_vec);
198 }
199 template<class value_type>
200 Vector<value_type>& get( )
201 {
202 // throws if not previously set
203 return std::any_cast<Vector<value_type>&>(
204 m_vec);
205 }
206 private:
207 //std::unordered_map< std::type_index, Buffer<std::any>> m_vec;
208 std::any m_vec;
209 std::type_index m_type;
210};
211
212}//namespace detail
214
215}//namespace dg
This is the namespace for all functions and classes defined and used by the discontinuous Galerkin li...
Manager class that invokes the clone() method on the managed ptr when copied.
Definition memory.h:21
Cloneable * operator->()
Dereference pointer to owned object, i.e. get()
Definition memory.h:131
void reset(const Cloneable &src)
Clone the given object and replace the currently held one.
Definition memory.h:110
Cloneable * get()
Get a pointer to the object on the heap.
Definition memory.h:119
friend void swap(ClonePtr &first, ClonePtr &second)
swap the managed pointers
Definition memory.h:89
ClonePtr(const Cloneable &src)
clone the given value and manage
Definition memory.h:37
void reset(Cloneable *ptr)
Replace the managed object.
Definition memory.h:101
ClonePtr(const ClonePtr &src)
deep copy the given handle using the clone() method of Cloneable
Definition memory.h:43
const Cloneable * get() const
Get a constant pointer to the object on the heap.
Definition memory.h:124
ClonePtr(ClonePtr &&src) noexcept
Steal resources (move construct)
Definition memory.h:59
ClonePtr(Cloneable *ptr)
take ownership of the pointer
Definition memory.h:28
Cloneable & operator*()
Dereference pointer to owned object, i.e. *get()
Definition memory.h:127
const Cloneable * operator->() const
Dereference pointer to owned object, i.e. get()
Definition memory.h:133
ClonePtr(std::nullptr_t value=nullptr)
init an empty ClonePtr
Definition memory.h:23
ClonePtr & operator=(const ClonePtr &src)
deep copy the given handle using the clone() method of Cloneable
Definition memory.h:48
const Cloneable & operator*() const
Dereference pointer to owned object, i.e. *get()
Definition memory.h:129
ClonePtr & operator=(ClonePtr &&src) noexcept
Steal resources (move assignment)
Definition memory.h:67
Cloneable * release() noexcept
Releases ownership of managed object, get() returns nullptr after call.
Definition memory.h:105