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>
43#ifndef CASA_DEFAULT_ALIGNMENT
44# define CASA_DEFAULT_ALIGNMENT (32UL)
78template<
typename T,
size_t ALIGNMENT = CASA_DEFAULT_ALIGNMENT>
91 template<
typename TOther>
99 template<typename TOther>
105 if (elements > std::allocator_traits<casacore_allocator>::max_size(*
this)) {
106 throw std::bad_alloc();
109 int result = posix_memalign(&memptr, ALIGNMENT,
sizeof(T) * elements);
111 throw std::bad_alloc();
113 return static_cast<pointer>(memptr);
121template<
typename T,
size_t ALIGNMENT>
127template<
typename T,
size_t ALIGNMENT>
144 template<
typename TOther>
155 template<
typename TOther>
163 if (elements > std::allocator_traits<new_del_allocator>::max_size(*
this)) {
164 throw std::bad_alloc();
166 return new T[elements];
172 template<
typename U,
typename... Args>
203template<
typename T>
class Block;
208 template<
typename T>
friend class Block;
210 template<
typename T2>
212 using size_type =
typename std::allocator<T2>::size_type;
228 template<
typename Allocator>
235 return allocator.allocate(elements, ptr);
244 for (i = 0; i < n; ++i) {
245 std::allocator_traits<Allocator>::construct(
allocator, &ptr[i], src[i]);
256 for (i = 0; i < n; ++i) {
257 std::allocator_traits<Allocator>::construct(
allocator, &ptr[i], initial_value);
267 for (i = 0; i < n; ++i) {
268 std::allocator_traits<Allocator>::construct(
allocator, &ptr[i]);
279 std::allocator_traits<Allocator>::destroy(
allocator, &ptr[i]);
286 return typeid(Allocator);
294 template<
typename Allocator>
299 template<
typename Allocator>
321template<
typename Allocator>
331 friend class Array<T>;
332 friend class Block<T>;
337template<
typename T,
typename Sub>
371template<
typename T,
size_t ALIGNMENT = CASA_DEFAULT_ALIGNMENT>
380template<
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
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