GM6000 Digital Heater Controller Branch: main
SDX-1330
SPool.h
Go to the documentation of this file.
1#ifndef Cpl_Memory_SPool_h_
2#define Cpl_Memory_SPool_h_
3/*-----------------------------------------------------------------------------
4* This file is part of the Colony.Core Project. The Colony.Core Project is an
5* open source project with a BSD type of licensing agreement. See the license
6* agreement (license.txt) in the top/ directory or on the Internet at
7* http://integerfox.com/colony.core/license.txt
8*
9* Copyright (c) 2014-2022 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file */
14
15
16#include "Cpl/Memory/Pool_.h"
17#include "Cpl/Memory/Aligned.h"
18
19///
20namespace Cpl {
21///
22namespace Memory {
23
24
25/** This template class defines a concrete Allocator that STATICALLY allocates
26 all of its Memory and can allocate up to N instances of the specified Class.
27 All of the memory is aligned to size_t boundaries.
28
29 NOTES:
30
31 1) If you only need memory for ONE instance - use AlignedClass structure
32 in Aligned.h instead.
33
34 2) The class is not inherently multi-thread safe.
35
36 3) If the requested number of bytes on the allocate() method is greater
37 than the block size (i.e. sizeof(T)), 0 is returned.
38
39 4) The class can be deleted. However, it is the responsibility of the
40 Application to properly clean-up/release ALL outstanding block
41 allocations before deleting the SPool instance.
42
43
44 Template args: class "T" is the type of class to allocated
45 int "N" is the number of instances that can be allocate
46 */
47
48template <class T, int N>
49class SPool : public Allocator
50{
51protected:
52 /// Allocate blocks
54
55 /// Allocate memory for BlockInfo_ instances
57
58 /// My Pool work object
60
61public:
62 /** Constructor. When the 'fatalErrors' argument is set to true, memory errors
63 (e.g. out-of-memory) will generate a Cpl::System::FatalError call. .
64 */
65 SPool( bool fatalErrors = false )
66 :m_infoBlocks(),
67 m_pool( m_infoBlocks, sizeof( T ), sizeof( AlignedClass<T> ), N, m_blocks, fatalErrors )
68 {
69 }
70
71public:
72 /// See Cpl::Memory::Allocator
73 void* allocate( size_t numbytes ) { return m_pool.allocate( numbytes ); }
74
75 /// See Cpl::Memory::Allocator
76 void release( void *ptr ) { m_pool.release( ptr ); }
77
78 /// See Cpl::Memory::Allocator
79 size_t wordSize() const noexcept { return m_pool.wordSize(); }
80
81private:
82 /// Prevent access to the copy constructor -->SPools can not be copied!
83 SPool( const SPool& m );
84
85 /// Prevent access to the assignment operator -->SPools can not be copied!
86 const SPool& operator=( const SPool& m );
87
88};
89
90
91
92}; // end namespaces
93};
94#endif // end header latch
This abstract class defines the interface for a Memory Allocator.
Definition Allocator.h:76
Helper class so I can put my blocks into to my standard containers.
Definition Pool_.h:35
This private concrete class implements a Memory Allocator using a pool of fixed size blocks.
Definition Pool_.h:31
size_t wordSize() const noexcept
See Cpl::Memory::Allocator.
void * allocate(size_t numbytes)
See Cpl::Memory::Allocator.
void release(void *ptr)
See Cpl::Memory::Allocator.
This template class defines a concrete Allocator that STATICALLY allocates all of its Memory and can ...
Definition SPool.h:50
void * allocate(size_t numbytes)
See Cpl::Memory::Allocator.
Definition SPool.h:73
Pool_::BlockInfo_ m_infoBlocks[N]
Allocate memory for BlockInfo_ instances.
Definition SPool.h:56
AlignedClass< T > m_blocks[N]
Allocate blocks.
Definition SPool.h:53
Pool_ m_pool
My Pool work object.
Definition SPool.h:59
SPool(bool fatalErrors=false)
Constructor.
Definition SPool.h:65
void release(void *ptr)
See Cpl::Memory::Allocator.
Definition SPool.h:76
size_t wordSize() const noexcept
See Cpl::Memory::Allocator.
Definition SPool.h:79
This type is used to create a memory block that is large enough to hold the memory footprint of ONE i...
Definition Aligned.h:47
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20