![]() |
GM6000 Digital Heater Controller Branch: main
SDX-1330
|
This abstract class defines the interface for a Memory Allocator. More...
This abstract class defines the interface for a Memory Allocator.
A Memory Allocator manages a pool memory that is assigned/released to/from clients at run-time (i.e. provides the memory for "dynamic" memory allocations).
The following is an example on how to dynamically create/destroy object using the memory provided by a Allocator object:
#include <Allocator.h>
Public Member Functions | |
virtual void * | allocate (size_t numbytes)=0 |
Allocate and returns a pointer to at least numBytes of storage. | |
virtual void | release (void *ptr)=0 |
Frees memory that was allocated via the allocate() method. | |
virtual size_t | wordSize () const noexcept=0 |
Returns the 'word' size of the allocator, i.e. | |
size_t | allocatedSizeForNBytes (size_t nbytes) const noexcept |
Convenience method that determines the actual amount of memory that actually allocated for a successful allocate request of N bytes. | |
virtual | ~Allocator () |
Provide a virtual destructor. | |
![]() | |
bool | insert_ (void *newContainerPtr) |
Helper method to trap when inserting an item in multiple containers. | |
bool | isInContainer_ (const void *containerPtr) const noexcept |
Returns 'true' if the instance is in the specified container. | |
Additional Inherited Members | |
![]() | |
static void | remove_ (Item *itemPtr) noexcept |
Helper method to do the proper 'clean-up' for the multiple-containers-error-trap when removing an item from a container. | |
![]() | |
void * | m_nextPtr_ |
The link field. | |
void * | m_inListPtr_ |
Debug field. | |
![]() | |
Item () | |
Constructor. | |
Item (const char *) | |
Constructor used ONLY with the child class MapItem: -->special constructor to allow a Map to be statically allocated. | |
|
inlinevirtual |
Provide a virtual destructor.
|
pure virtual |
Allocate and returns a pointer to at least numBytes of storage.
Returns 0 if out of memory.
Implemented in Cpl::Memory::HPool< T >, Cpl::Memory::LeanHeap, Cpl::Memory::Pool_, Cpl::Memory::SPool< T, N >, Cpl::Memory::SPool< Cpl::Io::File::Littlefs::FileDesc_T, OPTION_CPL_IO_FILE_LITTLEFS_MAX_CONCURRENT_FILES >, and Cpl::Memory::SPool< Cpl::Io::Socket::InputOutput, N >.
|
inlinenoexcept |
Convenience method that determines the actual amount of memory that actually allocated for a successful allocate request of N bytes.
|
pure virtual |
Frees memory that was allocated via the allocate() method.
It is VERY IMPORTANT that the memory is allocate() and release() from/to the SAME MemorySource Instance!
NOTES:
1) Freeing a 0 pointer causes release() to return immediately without any errors. 2) The pointer released() MUST be the same value as the pointer that was returned by the allocate(). This is particularly important if the memory allocated is used to create a concrete object that inherits multiple abstract/virtual interfaces. When deleting the object, the pointer value passed to the release() method must be a pointer type of concrete object - NOT a pointer to any of its parent classes. This is required to prevent possible memory leaks because of the C++ magic where the actual pointer value to the concrete object is not necessarily the same pointer value when the pointer is up-cast to one of its abstract base classes!
Implemented in Cpl::Memory::HPool< T >, Cpl::Memory::Pool_, Cpl::Memory::SPool< T, N >, Cpl::Memory::SPool< Cpl::Io::File::Littlefs::FileDesc_T, OPTION_CPL_IO_FILE_LITTLEFS_MAX_CONCURRENT_FILES >, and Cpl::Memory::SPool< Cpl::Io::Socket::InputOutput, N >.
|
pure virtualnoexcept |
Returns the 'word' size of the allocator, i.e.
chunks of memory are allocate in multiple of this size. For example: Given a word size of 4 and memory request for 5 bytes - the allocated would actually allocate 8 bytes of memory, i.e. 2 * 4 >= 5
Implemented in Cpl::Memory::HPool< T >, Cpl::Memory::LeanHeap, Cpl::Memory::Pool_, Cpl::Memory::SPool< T, N >, Cpl::Memory::SPool< Cpl::Io::File::Littlefs::FileDesc_T, OPTION_CPL_IO_FILE_LITTLEFS_MAX_CONCURRENT_FILES >, and Cpl::Memory::SPool< Cpl::Io::Socket::InputOutput, N >.