This repository has been archived on 2023-10-09. You can view files and clone it, but cannot push or open issues or pull requests.
Files
blender-archive/source/blender/blenlib/BLI_memory_utils_cxx.h

82 lines
1.9 KiB
C++
Raw Normal View History

/*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
/** \file
* \ingroup bli
*/
#pragma once
#include <memory>
#include <algorithm>
namespace BLI {
using std::copy;
using std::copy_n;
using std::uninitialized_copy;
using std::uninitialized_copy_n;
using std::uninitialized_fill;
using std::uninitialized_fill_n;
template<typename T> void destruct(T *ptr)
{
ptr->~T();
}
template<typename T> void destruct_n(T *ptr, uint n)
{
for (uint i = 0; i < n; i++) {
ptr[i].~T();
}
}
template<typename T> void uninitialized_move_n(T *src, uint n, T *dst)
{
std::uninitialized_copy_n(std::make_move_iterator(src), n, dst);
}
template<typename T> void move_n(T *src, uint n, T *dst)
{
std::copy_n(std::make_move_iterator(src), n, dst);
}
template<typename T> void uninitialized_relocate(T *src, T *dst)
{
new (dst) T(std::move(*src));
destruct(src);
}
template<typename T> void uninitialized_relocate_n(T *src, uint n, T *dst)
{
uninitialized_move_n(src, n, dst);
destruct_n(src, n);
}
template<typename T> void relocate(T *src, T *dst)
{
*dst = std::move(*src);
destruct(src);
}
template<typename T> void relocate_n(T *src, uint n, T *dst)
{
move_n(src, n, dst);
destruct_n(src, n);
}
} // namespace BLI