27#ifndef CASA_CONTAINERS_ALLOCATOR_H_
28#define CASA_CONTAINERS_ALLOCATOR_H_
30#include <casacore/casa/config.h>
31#include <casacore/casa/aips.h>
32#include <casacore/casa/Utilities/DataType.h>
33#include <casacore/casa/Arrays/ArrayFwd.h>
44#ifndef CASA_DEFAULT_ALIGNMENT
45# define CASA_DEFAULT_ALIGNMENT (32UL)
79template<
typename T,
size_t ALIGNMENT = CASA_DEFAULT_ALIGNMENT>
92 template<
typename TOther>
100 template<typename TOther>
106 if (elements > std::allocator_traits<casacore_allocator>::max_size(*
this)) {
107 throw std::bad_alloc();
110 int result = posix_memalign(&memptr, ALIGNMENT,
sizeof(T) * elements);
112 throw std::bad_alloc();
114 return static_cast<pointer>(memptr);
122template<
typename T,
size_t ALIGNMENT>
128template<
typename T,
size_t ALIGNMENT>
145 template<
typename TOther>
156 template<
typename TOther>
164 if (elements > std::allocator_traits<new_del_allocator>::max_size(*
this)) {
165 throw std::bad_alloc();
167 return new T[elements];
173 template<
typename U,
typename... Args>
204template<
typename T>
class Block;
209 template<
typename T>
friend class Block;
211 template<
typename T2>
213 using size_type =
typename std::allocator<T2>::size_type;
229 template<
typename Allocator>
236 return allocator.allocate(elements, ptr);
245 for (i = 0; i < n; ++i) {
246 std::allocator_traits<Allocator>::construct(
allocator, &ptr[i], src[i]);
257 for (i = 0; i < n; ++i) {
258 std::allocator_traits<Allocator>::construct(
allocator, &ptr[i], initial_value);
268 for (i = 0; i < n; ++i) {
269 std::allocator_traits<Allocator>::construct(
allocator, &ptr[i]);
280 std::allocator_traits<Allocator>::destroy(
allocator, &ptr[i]);
287 return typeid(Allocator);
295 template<
typename Allocator>
300 template<
typename Allocator>
322template<
typename Allocator>
332 friend class Array<T>;
333 friend class Block<T>;
338template<
typename T,
typename Sub>
372template<
typename T,
size_t ALIGNMENT = CASA_DEFAULT_ALIGNMENT>
381template<
typename T,
size_t ALIGNMENT>
virtual Allocator_private::BulkAllocator< T > * getAllocator() const =0
virtual ~AbstractAllocator()
An allocator which allocates aligned memory.
static AlignedAllocator< T, CASA_DEFAULT_ALIGNMENT > value
casacore_allocator< T, ALIGNMENT > type
static BulkAllocator< typename Allocator::value_type > * get_allocator()
static BulkAllocatorImpl< Allocator > * get_allocator_raw()
friend class AbstractAllocator
friend class BaseAllocator
Bool operator==(ArrayInitPolicy const &other)
friend struct ArrayInitPolicies
constexpr ArrayInitPolicy(bool v)
Bool operator!=(ArrayInitPolicy const &other)
virtual Allocator_private::BulkAllocator< T > * getAllocator() const override
An aligned allocator with the default alignment.
static DefaultAllocator< T > value
an instance of this allocator.
AlignedAllocator< T >::type type
An allocator behaves like operator new[]/delete[].
new_del_allocator< T > type
static NewDelAllocator< T > value
an instance of this allocator.
this file contains all the compiler specific defines
T * storage()
If you really, really, need a "raw" pointer to the beginning of the storage area this will give it to...
bool operator==(const casacore_allocator< T, ALIGNMENT > &, const casacore_allocator< T, ALIGNMENT > &)
bool operator!=(const casacore_allocator< T, ALIGNMENT > &, const casacore_allocator< T, ALIGNMENT > &)
bool Bool
Define the standard types used by Casacore.
NewDelAllocator< T > NewDelAllocator< T >::value
std::allocator< T > std11_allocator
static AllocSpec< T > const value
AllocSpec(BulkAllocator< T > *alloc)
BulkAllocator< T > * allocator
Allocator::size_type size_type
virtual void construct(pointer ptr, size_type n, const_pointer src) override
virtual void construct(pointer ptr, size_type n, value_type const &initial_value) override
virtual void construct(pointer ptr, size_type n) override
Allocator::pointer pointer
virtual void deallocate(pointer ptr, size_type size) override
Allocator::value_type value_type
static Allocator allocator
Allocator::const_pointer const_pointer
virtual void destroy(pointer ptr, size_type n) override
virtual std::type_info const & allocator_typeid() const override
virtual pointer allocate(size_type elements, const void *ptr=0) override
virtual ~BulkAllocatorImpl() override
virtual std::type_info const & allocator_typeid() const =0
typename std::allocator< T2 >::size_type size_type
virtual pointer allocate(size_type elements, const void *ptr=0)=0
virtual void deallocate(pointer ptr, size_type size)=0
virtual void construct(pointer ptr, size_type n, value_type const &initial_value)=0
virtual void construct(pointer ptr, size_type n, const_pointer src)=0
virtual void construct(pointer ptr, size_type n)=0
typename std::allocator< T2 >::value_type value_type
virtual void destroy(pointer ptr, size_type n)=0
static constexpr ArrayInitPolicy NO_INIT
Don't initialize elements in the array.
static constexpr ArrayInitPolicy INIT
Initialize all elements in the array with the default value.
casacore_allocator< TOther > other
void deallocate(pointer ptr, size_type)
typename Super::value_type value_type
casacore_allocator() noexcept=default
const T & const_reference
std11_allocator< T > Super
~casacore_allocator() noexcept=default
typename Super::size_type size_type
static constexpr size_t alignment
pointer allocate(size_type elements, const void *=0)
typename Super::difference_type difference_type
new_del_allocator< TOther > other
typename Super::size_type size_type
~new_del_allocator() noexcept
void construct(U *ptr, U &value)
new_del_allocator() noexcept
pointer allocate(size_type elements, const void *=0)
void construct(U *, Args &&...)
typename Super::difference_type difference_type
typename Super::value_type value_type
const T & const_reference
void deallocate(pointer ptr, size_type)
new_del_allocator(const new_del_allocator &other) noexcept
std11_allocator< T > Super
void construct(U *ptr, U const &value)
void construct(U *ptr, U &&value)
new_del_allocator(const new_del_allocator< TOther > &) noexcept