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
|
/*=========================================================================
Program: Visualization Toolkit
Module: vtkNew.h
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
/**
* @class vtkNew
* @brief Allocate and hold a VTK object.
*
* vtkNew is a class template that on construction allocates and
* initializes an instance of its template argument using T::New().
* It assumes ownership of one reference during its lifetime, and calls
* T->Delete() on destruction.
*
* Automatic casting to raw pointer is available for convenience, but
* users of this method should ensure that they do not
* return this pointer if the vtkNew will go out of scope without
* incrementing its reference count.
*
* vtkNew is a drop in replacement for vtkSmartPointer, for example,
*
* \code
* vtkNew<vtkRenderer> ren;
* vtkNew<vtkRenderWindow> renWin;
* renWin->AddRenderer(ren);
* vtkNew<vtkRenderWindowInteractor> iren;
* iren->SetRenderWindow(renWin);
* \endcode
*
*
* @sa
* vtkSmartPointer vtkWeakPointer
*/
#ifndef vtkNew_h
#define vtkNew_h
#include "vtkIOStream.h"
#include "vtkMeta.h" // for IsComplete
#include <type_traits> // for is_base_of
VTK_ABI_NAMESPACE_BEGIN
class vtkObjectBase;
template <class T>
class vtkNew
{
// Allow other smart pointers friend access:
template <typename U>
friend class vtkNew;
template <typename U>
friend class vtkSmartPointer;
template <typename U>
friend class vtkWeakPointer;
// These static asserts only fire when the function calling CheckTypes is
// used. Thus, this smart pointer class may still be used as a member variable
// with a forward declared T, so long as T is defined by the time the calling
// function is used.
template <typename U = T>
static void CheckTypes() noexcept
{
static_assert(vtk::detail::IsComplete<T>::value,
"vtkNew<T>'s T type has not been defined. Missing include?");
static_assert(vtk::detail::IsComplete<U>::value,
"Cannot store an object with undefined type in "
"vtkNew. Missing include?");
static_assert(std::is_base_of<T, U>::value,
"Argument type is not compatible with vtkNew<T>'s "
"T type.");
static_assert(std::is_base_of<vtkObjectBase, T>::value,
"vtkNew can only be used with subclasses of vtkObjectBase.");
}
public:
/**
* Create a new T on construction.
*/
vtkNew()
: Object(T::New())
{
vtkNew::CheckTypes();
}
/**
* Move the object into the constructed vtkNew wrapper, stealing its
* reference. The argument is reset to nullptr.
* @{
*/
vtkNew(vtkNew&& o) noexcept
: Object(o.Object)
{
o.Object = nullptr;
}
template <typename U>
vtkNew(vtkNew<U>&& o) noexcept
: Object(o.Object)
{
vtkNew::CheckTypes<U>();
o.Object = nullptr;
}
///@}
///@{
/**
* Deletes reference to instance of T.
*/
~vtkNew() { this->Reset(); }
void Reset()
{
T* obj = this->Object;
if (obj)
{
this->Object = nullptr;
obj->Delete();
}
}
///@}
/**
* Enable pointer-like dereference syntax. Returns a pointer to the contained
* object.
*/
T* operator->() const noexcept { return this->Object; }
///@{
/**
* Get a raw pointer to the contained object. When using this function be
* careful that the reference count does not drop to 0 when using the pointer
* returned. This will happen when the vtkNew object goes out of
* scope for example.
*/
T* GetPointer() const noexcept { return this->Object; }
T* Get() const noexcept { return this->Object; }
operator T*() const noexcept { return static_cast<T*>(this->Object); }
///@}
/**
* Dereference the pointer and return a reference to the contained object.
* When using this function be careful that the reference count does not
* drop to 0 when using the pointer returned.
* This will happen when the vtkNew object goes out of scope for example.
*/
T& operator*() const noexcept { return *static_cast<T*>(this->Object); }
/**
* Move assignment operator.
*/
vtkNew<T>& operator=(vtkNew<T>&& other) noexcept
{
this->Reset();
this->Object = other.Object;
other.Object = nullptr;
return *this;
}
private:
vtkNew(vtkNew<T> const&) = delete;
void operator=(vtkNew<T> const&) = delete;
T* Object;
};
VTK_ABI_NAMESPACE_END
#endif
// VTK-HeaderTest-Exclude: vtkNew.h
|