ORIGINAL
Loading...
Searching...
No Matches
original::allocatorBase< TYPE, DERIVED > Class Template Referenceabstract

Interface for other memory allocator implementations. More...

#include <allocator.h>

Collaboration diagram for original::allocatorBase< TYPE, DERIVED >:
Collaboration graph

Public Types

using propagate_on_container_copy_assignment = std::false_type
 No propagation on copy.
 
using propagate_on_container_move_assignment = std::false_type
 No propagation on move.
 
using propagate_on_container_swap = std::false_type
 No propagation on swap.
 
using propagate_on_container_merge = std::false_type
 No propagation on merge.
 
template<typename O_TYPE>
using rebind_alloc = DERIVED<O_TYPE>
 Rebinds allocator to different type.
 

Public Member Functions

constexpr allocatorBase ()
 Constructs a new allocatorBase instance.
 
virtual TYPE * allocate (u_integer size)=0
 Allocates raw memory.
 
virtual void deallocate (TYPE *ptr, u_integer size)=0
 Deallocates memory.
 
template<typename O_TYPE, typename... Args>
void construct (O_TYPE *o_ptr, Args &&... args)
 Constructs an object in allocated memory.
 
virtual ~allocatorBase ()=0
 Virtual destructor.
 

Static Public Member Functions

template<typename O_TYPE>
static void destroy (O_TYPE *o_ptr)
 Destroys an object without deallocating.
 

Detailed Description

template<typename TYPE, template< typename > typename DERIVED>
class original::allocatorBase< TYPE, DERIVED >

Interface for other memory allocator implementations.

Template Parameters
TYPEThe type of objects to allocate
DERIVEDCRTP template parameter for derived allocators

Provides common interface and utilities for memory management:

  • Type-safe allocation/de-allocation
  • Object construction/destruction
  • Rebinding support for container needs
  • Propagation control for container operations

Propagation traits:

Member Typedef Documentation

◆ rebind_alloc

template<typename TYPE, template< typename > typename DERIVED>
template<typename O_TYPE>
using original::allocatorBase< TYPE, DERIVED >::rebind_alloc = DERIVED<O_TYPE>

Rebinds allocator to different type.

Template Parameters
O_TYPENew type to allocate

Constructor & Destructor Documentation

◆ allocatorBase()

template<typename TYPE, template< typename > class DERIVED>
original::allocatorBase< TYPE, DERIVED >::allocatorBase ( )
constexpr

Constructs a new allocatorBase instance.

Performs compile-time validation of the allocated type:

  • Ensures TYPE is not void
  • Ensures TYPE is a complete type (size > 0)

Member Function Documentation

◆ allocate()

template<typename TYPE, template< typename > typename DERIVED>
virtual TYPE * original::allocatorBase< TYPE, DERIVED >::allocate ( u_integer size)
pure virtual

Allocates raw memory.

Parameters
sizeNumber of elements to allocate
Returns
Pointer to allocated memory

Implemented in original::allocator< TYPE >, original::allocator< bool >, original::allocator< K_TYPE >, original::allocator< opts >, and original::objPoolAllocator< TYPE >.

◆ construct()

template<typename TYPE, template< typename > typename DERIVED>
template<typename O_TYPE, typename... Args>
void original::allocatorBase< TYPE, DERIVED >::construct ( O_TYPE * o_ptr,
Args &&... args )

Constructs an object in allocated memory.

Template Parameters
O_TYPEType of object to construct
ArgsConstructor argument types
Parameters
o_ptrPointer to allocated memory
argsArguments to forward to constructor

◆ deallocate()

template<typename TYPE, template< typename > typename DERIVED>
virtual void original::allocatorBase< TYPE, DERIVED >::deallocate ( TYPE * ptr,
u_integer size )
pure virtual

Deallocates memory.

Parameters
ptrPointer to memory to free
sizeNumber of elements originally allocated

Implemented in original::allocator< TYPE >, original::allocator< bool >, original::allocator< K_TYPE >, original::allocator< opts >, and original::objPoolAllocator< TYPE >.

◆ destroy()

template<typename TYPE, template< typename > typename DERIVED>
template<typename O_TYPE>
void original::allocatorBase< TYPE, DERIVED >::destroy ( O_TYPE * o_ptr)
static

Destroys an object without deallocating.

Template Parameters
O_TYPEType of object to destroy
Parameters
o_ptrPointer to object to destroy

The documentation for this class was generated from the following file: