vecmem 1.14.0
|
A deleter class for non-trivial objects. More...
#include <vecmem/memory/details/unique_obj_deleter.hpp>
Public Types | |
using | pointer_t = std::conditional_t< std::is_array_v< T >, std::decay_t< T >, T * > |
using | storage_t = std::remove_pointer_t< pointer_t > |
Public Member Functions | |
unique_obj_deleter (void)=default | |
Default-construct a new unique object deleter. | |
unique_obj_deleter (memory_resource &mr, std::size_t s, std::size_t a=0, std::size_t n=1) | |
Construct a new unique object deleter. | |
unique_obj_deleter (const unique_obj_deleter &i)=default | |
Copy a unique object deleter. | |
unique_obj_deleter (unique_obj_deleter &&i)=default | |
Move a unique object deleter. | |
unique_obj_deleter & | operator= (const unique_obj_deleter &i)=default |
Copy-assign a unique object deleter. | |
unique_obj_deleter & | operator= (unique_obj_deleter &&i)=default |
Move-assign a unique object deleter. | |
void | operator() (pointer_t p) const |
Activate the deletion mechanism of the deleter. | |
A deleter class for non-trivial objects.
This class provides all the necessary functionality to allow unique pointers to deallocate non-trivial objects, as well as arrays of them.
Object pointers not only deallocate their memory, but they also cleanly delete the object by callings its deconstructor.
The design of this class is somewhat unconventional because it is stateful, which most deleters are not. However, this is pretty much necessary we cannot rely on the packed storage of allocation parameters that you see in standard deleters. In particular, the pointer argument is not strictly necessary, but it is included to make the class easier to debug.
T | The type to deallocate. |
|
default |
Default-construct a new unique object deleter.
Having a default constructor for this class is not ideal, as having an empty deleter here doesn't really make any sense. However, if the deleter class is not default-constructible, then neither is the std::unique_ptr class using it. For that reason, we want it here.
|
inline |
Construct a new unique object deleter.
This is the preferred constructor for this type. It will store a memory resource, a pointer, a size, and possible an alignment and a number of elements.
mr | The memory resource to use for deallocation. |
p | The pointer which we will want to deallocate. |
s | The size of the allocation. |
a | The alignment of the allocation, with 0 representing no alignment. |
n | The number of elements in the allocation. |
|
default |
Copy a unique object deleter.
i | The object deleter to copy. |
|
default |
Move a unique object deleter.
i | The object deleter to move. |
|
inline |
Activate the deletion mechanism of the deleter.
p | The pointer to deallocate. |
|
default |
Copy-assign a unique object deleter.
i | The object to copy into the current one. |
|
default |
Move-assign a unique object deleter.
i | The object to move into the current one. |