GM6000 Digital Heater Controller Branch: main
SDX-1330
List of all members | Public Member Functions | Protected Attributes
Cpl::Memory::SPool< T, N > Class Template Reference

This template class defines a concrete Allocator that STATICALLY allocates all of its Memory and can allocate up to N instances of the specified Class. More...

Detailed Description

template<class T, int N>
class Cpl::Memory::SPool< T, N >

This template class defines a concrete Allocator that STATICALLY allocates all of its Memory and can allocate up to N instances of the specified Class.

All of the memory is aligned to size_t boundaries.

NOTES:

1) If you only need memory for ONE instance - use AlignedClass structure
   in Aligned.h instead.

2) The class is not inherently multi-thread safe.

3) If the requested number of bytes on the allocate() method is greater
   than the block size (i.e. sizeof(T)), 0 is returned.

4) The class can be deleted. However, it is the responsibility of the
   Application to properly clean-up/release ALL outstanding block
   allocations before deleting the SPool instance.

Template args: class "T" is the type of class to allocated int "N" is the number of instances that can be allocate

#include <SPool.h>

Inheritance diagram for Cpl::Memory::SPool< T, N >:
[legend]
Collaboration diagram for Cpl::Memory::SPool< T, N >:
[legend]

Public Member Functions

 SPool (bool fatalErrors=false)
 Constructor.
 
void * allocate (size_t numbytes)
 See Cpl::Memory::Allocator.
 
void release (void *ptr)
 See Cpl::Memory::Allocator.
 
size_t wordSize () const noexcept
 See Cpl::Memory::Allocator.
 
- Public Member Functions inherited from Cpl::Memory::Allocator
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.
 
- Public Member Functions inherited from Cpl::Container::Item
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.
 

Protected Attributes

AlignedClass< T > m_blocks [N]
 Allocate blocks.
 
Pool_::BlockInfo_ m_infoBlocks [N]
 Allocate memory for BlockInfo_ instances.
 
Pool_ m_pool
 My Pool work object.
 

Additional Inherited Members

- Static Public Member Functions inherited from Cpl::Container::Item
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.
 
- Public Attributes inherited from Cpl::Container::Item
voidm_nextPtr_
 The link field.
 
voidm_inListPtr_
 Debug field.
 
- Protected Member Functions inherited from Cpl::Container::Item
 Item ()
 Constructor.
 
 Item (const char *)
 Constructor used ONLY with the child class MapItem: -->special constructor to allow a Map to be statically allocated.
 

Constructor & Destructor Documentation

◆ SPool()

template<class T , int N>
Cpl::Memory::SPool< T, N >::SPool ( bool  fatalErrors = false)
inline

Constructor.

When the 'fatalErrors' argument is set to true, memory errors (e.g. out-of-memory) will generate a Cpl::System::FatalError call. .

Member Function Documentation

◆ allocate()

template<class T , int N>
void * Cpl::Memory::SPool< T, N >::allocate ( size_t  numbytes)
inlinevirtual

◆ release()

template<class T , int N>
void Cpl::Memory::SPool< T, N >::release ( void *  ptr)
inlinevirtual

◆ wordSize()

template<class T , int N>
size_t Cpl::Memory::SPool< T, N >::wordSize ( ) const
inlinevirtualnoexcept

Member Data Documentation

◆ m_blocks

template<class T , int N>
AlignedClass<T> Cpl::Memory::SPool< T, N >::m_blocks[N]
protected

Allocate blocks.

◆ m_infoBlocks

template<class T , int N>
Pool_::BlockInfo_ Cpl::Memory::SPool< T, N >::m_infoBlocks[N]
protected

Allocate memory for BlockInfo_ instances.

◆ m_pool

template<class T , int N>
Pool_ Cpl::Memory::SPool< T, N >::m_pool
protected

My Pool work object.


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