1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
|
// -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
// vi: set et ts=4 sw=2 sts=2:
// SPDX-FileCopyrightInfo: Copyright © DUNE Project contributors, see file LICENSE.md in module root
// SPDX-License-Identifier: LicenseRef-GPL-2.0-only-with-DUNE-exception
#ifndef DUNE_SHARED_PTR_HH
#define DUNE_SHARED_PTR_HH
#include <memory>
#include <dune/common/typetraits.hh>
/**
* @file
* @brief This file implements several utilities related to std::shared_ptr
* @author Markus Blatt
*/
namespace Dune
{
/**
@brief implements the Deleter concept of shared_ptr without deleting anything
@relates shared_ptr
If you allocate an object on the stack, but want to pass it to a class or function as a shared_ptr,
you can use this deleter to avoid accidental deletion of the stack-allocated object.
For convenience we provide two free functions to create a shared_ptr from a stack-allocated object
(\see stackobject_to_shared_ptr):
1) Convert a stack-allocated object to a shared_ptr:
@code
int i = 10;
std::shared_ptr<int> pi = stackobject_to_shared_ptr(i);
@endcode
2) Convert a stack-allocated object to a std::shared_ptr of a base class
@code
class A {};
class B : public A {};
...
B b;
std::shared_ptr<A> pa = stackobject_to_shared_ptr<A>(b);
@endcode
@tparam T type of the stack-allocated object
*/
template<class T>
struct null_deleter
{
void operator() (T*) const {}
};
/**
@brief Create a shared_ptr for a stack-allocated object
@relatesalso null_deleter
@code
#include <dune/common/shared_ptr.hh>
@endcode
Usage:
@code
int i = 10;
std::shared_ptr<int> pi = stackobject_to_shared_ptr(i);
@endcode
The @c std::shared_ptr points to the object on the stack, but its deleter is
set to an instance of @c null_deleter so that nothing happens when the @c
shared_ptr is destroyed.
@sa null_deleter
*/
template<typename T>
inline std::shared_ptr<T> stackobject_to_shared_ptr(T & t)
{
return std::shared_ptr<T>(&t, null_deleter<T>());
}
/**
* \brief Capture R-value reference to shared_ptr
*
* This will store a copy of the passed object in
* a shared_ptr.
*
* The two overloads of wrap_or_move are intended
* to capture references and temporaries in a unique
* way without creating copies and only moving if
* necessary.
*
* Be careful: Only use this function if you are
* aware of it's implications. You can e.g. easily
* end up storing a reference to a temporary if
* you use this inside of another function without
* perfect forwarding.
*/
template<class T>
auto wrap_or_move(T&& t)
{
return std::make_shared<std::decay_t<T>>(std::forward<T>(t));
}
/**
* \brief Capture L-value reference to std::shared_ptr
*
* This will store a pointer for the passed reference
* in a non-owning std::shared_ptr.
*
* The two overloads of wrap_or_move are intended
* to capture references and temporaries in a unique
* way without creating copies and only moving if
* necessary.
*
* Be careful: Only use this function if you are
* aware of it's implications. You can e.g. easily
* end up storing a reference to a temporary if
* you use this inside of another function without
* perfect forwarding.
*/
template<class T>
auto wrap_or_move(T& t)
{
return stackobject_to_shared_ptr(t);
}
}
#endif
|