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 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196
|
// -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
// vi: set et ts=4 sw=2 sts=2:
// SPDX-FileCopyrightText: Copyright © DUNE Project contributors, see file AUTHORS.md
// SPDX-License-Identifier: LicenseRef-GPL-2.0-only-with-DUNE-exception OR LGPL-3.0-or-later
#ifndef DUNE_FUNCTIONS_COMMON_POLYMORPHICSMALLOBJECT_HH
#define DUNE_FUNCTIONS_COMMON_POLYMORPHICSMALLOBJECT_HH
#include <cstddef>
#include <utility>
#include <type_traits>
#include <algorithm>
namespace Dune {
namespace Functions {
/**
* \brief A wrapper providing small object optimization with polymorphic types
*
* \ingroup Utility
* \ingroup TypeErasure
*
* \tparam Base Base class type of wrapped objects
* \tparam bufferSize Size of small object buffer
*
* This class encapsulates small object optimization for polymorphic types.
* The type of objects passed to the constructor must be derived from the
* base class type Base.
*
* If the size of the derived type fits into the static buffer, then the
* wrapped object is stored there, otherwise it is allocated dynamically.
*
* Notice that this class does implement use type erasure for destructors,
* copy/move constructors and copy/move assignment. Hence it requires
* that Base has a virtual destructor.
*
* In order to make the copy constructor work for polymorphic types,
* Base must provide virtual methods `Base* clone()` and `Base* clone(void*)`.
* The former should return a pointer to a dynamically allocated clone, while
* the latter should call the appropriate placement-new with the passed pointer.
*
* Similarly the polymorphic type has to implement a virtual `Base* move(void*)`
* method.
* This should call placement-new and can std::move all the
* data but leave the object in a valid and probably unusable state.
*/
template<class Base, size_t bufferSize>
class PolymorphicSmallObject
{
// Actual buffer size must be > 0
static constexpr std::size_t actualBufferSize = std::max(sizeof(std::byte), bufferSize);
// Alignment requirement for the buffer. The `Derived` type must have
// an alignment requirement that is a divisor of `bufferAlignment`
static constexpr std::size_t bufferAlignment = alignof(std::max_align_t);
public:
//! Default constructor
PolymorphicSmallObject() :
p_(nullptr)
{}
/**
* \brief Construct from object
*
* \tparam Derived Type of object to be stored, must be derived from Base
* \param derived Object to be stored
*/
template<class Derived,
std::enable_if_t<std::is_base_of_v<Base, std::remove_cv_t<
std::remove_reference_t<Derived>>>, int> = 0>
PolymorphicSmallObject(Derived&& derived)
{
constexpr bool useBuffer = (sizeof(Derived) <= bufferSize)
&& (bufferAlignment % alignof(Derived) == 0);
if constexpr (useBuffer) {
p_ = new (&buffer_) Derived(std::forward<Derived>(derived));
} else {
p_ = new Derived(std::forward<Derived>(derived));
}
}
//! Move constructor from other PolymorphicSmallObject
PolymorphicSmallObject(PolymorphicSmallObject&& other) noexcept
{
moveToWrappedObject(std::move(other));
}
//! Copy constructor from other PolymorphicSmallObject
PolymorphicSmallObject(const PolymorphicSmallObject& other)
{
copyToWrappedObject(other);
}
//! Destructor
~PolymorphicSmallObject()
{
destroyWrappedObject();
}
//! Copy assignment from other PolymorphicSmallObject
PolymorphicSmallObject& operator=(const PolymorphicSmallObject& other)
{
if (&other!=this)
{
destroyWrappedObject();
copyToWrappedObject(other);
}
return *this;
}
//! Move assignment from other PolymorphicSmallObject
PolymorphicSmallObject& operator=(PolymorphicSmallObject&& other) noexcept
{
destroyWrappedObject();
moveToWrappedObject(std::move(other));
return *this;
}
//! Check if *this is not empty
explicit operator bool() const
{
return p_;
}
//! Check if object is stored in internal stack buffer
bool bufferUsed() const
{
return ((void*) (p_) == (void*)(&buffer_));
}
//! Obtain reference to stored object
const Base& get() const
{
return *p_;
}
//! Obtain mutable reference to stored object
Base& get()
{
return *p_;
}
private:
void destroyWrappedObject() noexcept
{
if (operator bool())
{
if (bufferUsed())
p_->~Base();
else
delete p_;
}
}
void moveToWrappedObject(PolymorphicSmallObject&& other) noexcept
{
if (other.bufferUsed())
p_ = other.p_->move(&buffer_);
else
{
// We don't need to check for &other_!=this, because you can't
// have an rvalue to *this and call it's assignment/constructor
// at the same time. (Despite trying to shoot yourself in the foot
// with std::move explicitly.)
// Take ownership of allocated object
p_ = other.p_;
// Leave pointer in a clean state to avoid double freeing it.
other.p_ = 0;
}
}
void copyToWrappedObject(const PolymorphicSmallObject& other)
{
if (other.bufferUsed())
p_ = other.p_->clone(&buffer_);
else
p_ = other.p_->clone();
}
alignas(bufferAlignment) std::byte buffer_[actualBufferSize];
Base* p_;
};
} // namespace Functions
} // namespace Dune
#endif // DUNE_FUNCTIONS_COMMON_POLYMORPHICSMALLOBJECT_HH
|