µOS++ IIIe Reference 7.0.0
The third edition of µOS++, a POSIX inspired open source framework, written in C++
Loading...
Searching...
No Matches
os::rtos::memory_pool_inclusive< T, N > Class Template Reference

Template of a synchronised memory pool with block type and local storage. More...

#include <cmsis-plus/rtos/os.h>

+ Inheritance diagram for os::rtos::memory_pool_inclusive< T, N >:

Public Types

using allocator_type = memory::allocator< thread::stack::allocation_element_t >
 Default RTOS allocator.
 
using size_t = uint16_t
 Type of memory pool size storage.
 
using value_type = T
 Local type of message.
 

Public Member Functions

template<typename T >
constexpr std::size_t compute_allocated_size_bytes (std::size_t blocks, std::size_t block_size_bytes)
 Calculator for pool storage requirements.
 
Constructors & Destructor
 memory_pool_inclusive (const attributes &attr=initializer)
 Construct a memory pool object instance.
 
 memory_pool_inclusive (const char *name, const attributes &attr=initializer)
 Construct a named memory pool object instance.
 
virtual ~memory_pool_inclusive () override
 Destruct the memory pool object instance.
 
Public Member Functions
value_typealloc (void)
 Allocate a memory block.
 
value_typetry_alloc (void)
 Allocate a memory block.
 
value_typetimed_alloc (clock::duration_t timeout)
 Allocate a memory block with timeout.
 
result_t free (value_type *block)
 Free the memory block.
 
Operators
bool operator== (const memory_pool &rhs) const
 Compare memory pools.
 
Public Member Functions
result_t free (void *block)
 Free the memory block.
 
std::size_t capacity (void) const
 Get memory pool capacity.
 
std::size_t count (void) const
 Get blocks count.
 
std::size_t block_size (void) const
 Get block size.
 
bool empty (void) const
 Check if the memory pool is empty.
 
bool full (void) const
 Check if the memory pool is full.
 
result_t reset (void)
 Reset the memory pool.
 
void * pool (void)
 Get the pool storage address.
 
Public Member Functions
const char * name (void) const
 Get object name.
 

Static Public Member Functions

Operators
static void * operator new (std::size_t bytes)
 Allocate space for a new object instance using the RTOS system allocator.
 
static void * operator new (std::size_t bytes, void *ptr)
 Emplace a new object instance.
 
static void * operator new[] (std::size_t bytes)
 Allocate space for an array of new object instances using the RTOS system allocator.
 
static void * operator new[] (std::size_t bytes, void *ptr)
 Emplace an array of new object instances.
 
static void operator delete (void *ptr, std::size_t bytes)
 Deallocate the dynamically allocated object instance. using the RTOS system allocator.
 
static void operator delete[] (void *ptr, std::size_t bytes)
 Deallocate the dynamically allocated array of object. instances using the RTOS system allocator.
 

Static Public Attributes

static const std::size_t blocks = N
 Local constant based on template definition.
 
static const attributes initializer
 Default memory pool initialiser.
 
static constexpr memory_pool::size_t max_size
 Maximum pool size.
 

Protected Attributes

Private Member Variables
arena< void *, blocks, sizeof(T)> arena_
 Local storage for the pool.
 

Detailed Description

template<typename T, std::size_t N>
class os::rtos::memory_pool_inclusive< T, N >

Template of a synchronised memory pool with block type and local storage.

Definition at line 761 of file os-mempool.h.

Member Typedef Documentation

◆ allocator_type

Default RTOS allocator.

Definition at line 201 of file os-mempool.h.

◆ value_type

template<typename T , std::size_t N>
using os::rtos::memory_pool_inclusive< T, N >::value_type = T

Local type of message.

Definition at line 768 of file os-mempool.h.

Constructor & Destructor Documentation

◆ memory_pool_inclusive() [1/2]

template<typename T , std::size_t N>
os::rtos::memory_pool_inclusive< T, N >::memory_pool_inclusive ( const attributes attr = initializer)

Construct a memory pool object instance.

Parameters
[in]attrReference to attributes.

This constructor shall initialise a memory pool object with attributes referenced by attr. If the attributes specified by attr are modified later, the memory pool attributes shall not be affected. Upon successful initialisation, the state of the memory pool variable shall become initialised.

Only the memory pool itself may be used for allocations. It is not allowed to make copies of condition variable objects.

In cases where default memory pool attributes are appropriate, the variable memory_pool::initializer can be used to initialise condition variables. The effect shall be equivalent to creating a memory pool object with the simple constructor.

The storage shall be statically allocated inside the memory pool object instance.

Implemented as a wrapper over the parent constructor, automatically passing the message size and the storage details.

Warning
Cannot be invoked from Interrupt Service Routines.

Definition at line 1302 of file os-mempool.h.

◆ memory_pool_inclusive() [2/2]

template<typename T , std::size_t N>
os::rtos::memory_pool_inclusive< T, N >::memory_pool_inclusive ( const char *  name,
const attributes attr = initializer 
)

Construct a named memory pool object instance.

Parameters
[in]namePointer to name.
[in]attrReference to attributes.

This constructor shall initialise a named memory pool object with attributes referenced by attr. If the attributes specified by attr are modified later, the memory pool attributes shall not be affected. Upon successful initialisation, the state of the memory pool variable shall become initialised.

Only the memory pool itself may be used for allocations. It is not allowed to make copies of condition variable objects.

In cases where default memory pool attributes are appropriate, the variable memory_pool::initializer can be used to initialise condition variables. The effect shall be equivalent to creating a memory pool object with the simple constructor.

The storage shall be statically allocated inside the memory pool object instance.

Implemented as a wrapper over the parent constructor, automatically passing the message size and the storage details.

Warning
Cannot be invoked from Interrupt Service Routines.

Definition at line 1335 of file os-mempool.h.

◆ ~memory_pool_inclusive()

template<typename T , std::size_t N>
os::rtos::memory_pool_inclusive< T, N >::~memory_pool_inclusive
overridevirtual

Destruct the memory pool object instance.

This destructor shall destroy the memory pool object; the object becomes, in effect, uninitialised. An implementation may cause the destructor to set the object to an invalid value.

It shall be safe to destroy an initialised memory pool object upon which no threads are currently blocked. Attempting to destroy a memory pool object upon which other threads are currently blocked results in undefined behaviour.

Warning
Cannot be invoked from Interrupt Service Routines.

Definition at line 1357 of file os-mempool.h.

Member Function Documentation

◆ alloc()

template<typename T , std::size_t N>
memory_pool_inclusive< T, N >::value_type * os::rtos::memory_pool_inclusive< T, N >::alloc ( void  )
inline

Allocate a memory block.

Parameters
None.
Returns
Pointer to memory block, or nullptr if interrupted.

Wrapper over the parent method, automatically passing the cast.

See also
memory_pool::alloc().

Definition at line 1370 of file os-mempool.h.

◆ block_size()

std::size_t os::rtos::memory_pool::block_size ( void  ) const
inlineinherited

Get block size.

Parameters
None.
Returns
The block size, in bytes.
Note
Can be invoked from Interrupt Service Routines.

Definition at line 931 of file os-mempool.h.

◆ capacity()

std::size_t os::rtos::memory_pool::capacity ( void  ) const
inlineinherited

Get memory pool capacity.

Parameters
None.
Returns
The max number of blocks in the pool.
Note
Can be invoked from Interrupt Service Routines.

Definition at line 922 of file os-mempool.h.

◆ compute_allocated_size_bytes()

template<typename T >
constexpr std::size_t os::rtos::memory_pool::compute_allocated_size_bytes ( std::size_t  blocks,
std::size_t  block_size_bytes 
)
inlineconstexprinherited

Calculator for pool storage requirements.

Parameters
blocksNumber of blocks.
block_size_bytesSize of block.
Returns
Total required storage in bytes, including internal alignment.

Definition at line 188 of file os-mempool.h.

◆ count()

std::size_t os::rtos::memory_pool::count ( void  ) const
inlineinherited

Get blocks count.

Parameters
None.
Returns
The number of blocks used from the queue.
Note
Can be invoked from Interrupt Service Routines.

Definition at line 940 of file os-mempool.h.

◆ empty()

bool os::rtos::memory_pool::empty ( void  ) const
inlineinherited

Check if the memory pool is empty.

Parameters
None
Return values
trueThe memory pool has no allocated blocks.
falseThe memory pool has allocated blocks.
Note
Can be invoked from Interrupt Service Routines.

Definition at line 949 of file os-mempool.h.

◆ free() [1/2]

template<typename T , std::size_t N>
result_t os::rtos::memory_pool_inclusive< T, N >::free ( value_type block)
inline

Free the memory block.

Parameters
None.
Return values
result::okThe memory block was released.
EINVALThe block does not belong to the memory pool.

Wrapper over the parent method, automatically passing the cast.

See also
memory_pool::free().

Definition at line 1412 of file os-mempool.h.

◆ free() [2/2]

result_t os::rtos::memory_pool::free ( void *  block)
inherited

Free the memory block.

Parameters
[in]blockPointer to memory block to free.
Return values
result::okThe memory block was released.
EINVALThe block does not belong to the memory pool.

Return a memory block previously allocated by alloc() back to the memory pool.

It uses a critical section to protect simultaneous access from other threads or interrupts.

Note
Can be invoked from Interrupt Service Routines.

Definition at line 783 of file os-mempool.cpp.

◆ full()

bool os::rtos::memory_pool::full ( void  ) const
inlineinherited

Check if the memory pool is full.

Parameters
None.
Return values
trueAll memory blocks are allocated.
falseThere are still memory blocks that can be allocated.
Note
Can be invoked from Interrupt Service Routines.

Definition at line 958 of file os-mempool.h.

◆ name()

const char * os::rtos::internal::object_named::name ( void  ) const
inlineinherited

Get object name.

Parameters
None.
Returns
A null terminated string.

All objects return a non-null string; anonymous objects return "-".

Note
Can be invoked from Interrupt Service Routines.

Definition at line 759 of file os-decls.h.

◆ operator delete()

void os::rtos::internal::object_named_system::operator delete ( void *  ptr,
std::size_t  bytes 
)
inlinestaticinherited

Deallocate the dynamically allocated object instance. using the RTOS system allocator.

Parameters
ptrPointer to object.
bytesNumber of bytes to deallocate.
Returns
Nothing.

The deallocation function (3.7.4.2) called by a delete-expression to render the value of ptr invalid.

ptr shall be a null pointer or its value shall be a value returned by an earlier call to the (possibly replaced) operator new() which has not been invalidated by an intervening call to operator delete(void*).

If ptr is null, does nothing. Otherwise, reclaims the storage allocated by the earlier call to operator new.

The storage is deallocated using the RTOS system allocator.

Warning
Cannot be invoked from Interrupt Service Routines.

Definition at line 122 of file os-inlines.h.

◆ operator delete[]()

void os::rtos::internal::object_named_system::operator delete[] ( void *  ptr,
std::size_t  bytes 
)
inlinestaticinherited

Deallocate the dynamically allocated array of object. instances using the RTOS system allocator.

Parameters
ptrPointer to array of objects.
bytesNumber of bytes to deallocate.
Returns
Nothing.

The deallocation function (3.7.4.2) called by the array form of a delete-expression to render the value of ptr invalid.

If ptr is null, does nothing. Otherwise, reclaims the storage allocated by the earlier call to operator new.

The storage is deallocated using the RTOS system allocator.

Warning
Cannot be invoked from Interrupt Service Routines.

Definition at line 143 of file os-inlines.h.

◆ operator new() [1/2]

void * os::rtos::internal::object_named_system::operator new ( std::size_t  bytes)
inlinestaticinherited

Allocate space for a new object instance using the RTOS system allocator.

Parameters
bytesNumber of bytes to allocate.
Returns
Pointer to allocated object.

The allocation function (3.7.4.1) called by a new-expression (5.3.4) to allocate a storage of size bytes suitably aligned to represent any object of that size. Return a non-null pointer to suitably aligned storage (3.7.4).

The storage is allocated using the RTOS system allocator.

Warning
Cannot be invoked from Interrupt Service Routines.

Definition at line 44 of file os-inlines.h.

◆ operator new() [2/2]

void * os::rtos::internal::object_named_system::operator new ( std::size_t  bytes,
void *  ptr 
)
inlinestaticinherited

Emplace a new object instance.

Parameters
bytesNumber of bytes to emplace.
ptrPointer to location to emplace the object.
Returns
Pointer to emplaced object.

The allocation function (3.7.4.1) called by a placement new-expression to allocate a storage of size bytes suitably aligned to represent any object of that size. Return a non-null pointer to suitably aligned storage (3.7.4).

The storage is allocated using the RTOS system allocator.

Warning
Cannot be invoked from Interrupt Service Routines.

Definition at line 81 of file os-inlines.h.

◆ operator new[]() [1/2]

void * os::rtos::internal::object_named_system::operator new[] ( std::size_t  bytes)
inlinestaticinherited

Allocate space for an array of new object instances using the RTOS system allocator.

Parameters
bytesNumber of bytes to allocate.
Returns
Pointer to allocated array.

The allocation function (3.7.4.1) called by the array form of a new-expression (5.3.4) to allocate a storage of size bytes suitably aligned to represent any array object of that size or smaller.

The storage is allocated using the RTOS system allocator.

Warning
Cannot be invoked from Interrupt Service Routines.

Definition at line 62 of file os-inlines.h.

◆ operator new[]() [2/2]

void * os::rtos::internal::object_named_system::operator new[] ( std::size_t  bytes,
void *  ptr 
)
inlinestaticinherited

Emplace an array of new object instances.

Parameters
bytesNumber of bytes to emplace.
ptrPointer to location to emplace the object.
Returns
Pointer to emplaced array.

The allocation function (3.7.4.1) called by the array form of a placement new-expression to allocate a storage of size bytes suitably aligned to represent any array object of that size or smaller.

The storage is allocated using the RTOS system allocator.

Warning
Cannot be invoked from Interrupt Service Routines.

Definition at line 98 of file os-inlines.h.

◆ operator==()

bool os::rtos::memory_pool::operator== ( const memory_pool rhs) const
inlineinherited

Compare memory pools.

Return values
trueThe given memory pool is the same as this memory pool.
falseThe memory pools are different.

Identical memory pools should have the same memory address.

Definition at line 913 of file os-mempool.h.

◆ pool()

void * os::rtos::memory_pool::pool ( void  )
inlineinherited

Get the pool storage address.

Parameters
None.
Returns
Pointer to storage.
Note
Can be invoked from Interrupt Service Routines.

Definition at line 967 of file os-mempool.h.

◆ reset()

result_t os::rtos::memory_pool::reset ( void  )
inherited

Reset the memory pool.

Parameters
None.
Return values
result::okThe memory pool was reset.
EPERMCannot be invoked from an Interrupt Service Routines.

Reset the memory pool to the initial state, with all blocks free.

Warning
Cannot be invoked from Interrupt Service Routines.

Definition at line 843 of file os-mempool.cpp.

◆ timed_alloc()

template<typename T , std::size_t N>
memory_pool_inclusive< T, N >::value_type * os::rtos::memory_pool_inclusive< T, N >::timed_alloc ( clock::duration_t  timeout)
inline

Allocate a memory block with timeout.

Parameters
[in]timeoutTimeout to wait, in clock units (ticks or seconds).
Returns
Pointer to memory block, or nullptr if timeout.

Wrapper over the parent method, automatically passing the cast.

See also
memory_pool::timed_alloc().

Definition at line 1398 of file os-mempool.h.

◆ try_alloc()

template<typename T , std::size_t N>
memory_pool_inclusive< T, N >::value_type * os::rtos::memory_pool_inclusive< T, N >::try_alloc ( void  )
inline

Allocate a memory block.

Parameters
None.
Returns
Pointer to memory block, or nullptr if no memory available.

Wrapper over the parent method, automatically passing the cast.

See also
memory_pool::try_alloc().

Definition at line 1384 of file os-mempool.h.

Member Data Documentation

◆ arena_

template<typename T , std::size_t N>
arena<void*, blocks, sizeof(T)> os::rtos::memory_pool_inclusive< T, N >::arena_
protected

Local storage for the pool.

The local storage is large enough to include blocks blocks of type T. For performance reasons, the individual components are aligned as pointers.

Definition at line 835 of file os-mempool.h.

◆ blocks

template<typename T , std::size_t N>
const std::size_t os::rtos::memory_pool_inclusive< T, N >::blocks = N
static

Local constant based on template definition.

Definition at line 773 of file os-mempool.h.


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