GM6000 Digital Heater Controller Branch: main
SDX-1330
HPool.h
Go to the documentation of this file.
1#ifndef Cpl_Memory_HPool_h_
2#define Cpl_Memory_HPool_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 allocates its block
26 memory from the HEAP. However, once the initial set of blocks are
27 allocated, no more heap operations are performed. All of the memory is
28 aligned to size_t boundaries.
29
30 NOTES:
31
32 1) If you only need memory for ONE instance - use AlignedClass structure
33 in Aligned.h instead.
34
35 2) The class is not inherently multi-thread safe.
36
37 3) If the requested number of bytes on the allocate() method is greater
38 than the block size (i.e. sizeof(T)), 0 is returned.
39
40 4) The class can be deleted. However, it is the responsibility of the
41 Application to properly clean-up/release ALL outstanding block
42 allocations before deleting the HPool instance.
43
44
45 Template args: class "T" is the type of class to allocated
46 */
47
48template <class T>
49class HPool : public Allocator
50{
51protected:
52 /// Allocate memory for BlockInfo_ instances
54
55 /// Allocate blocks
57
58 /// My Pool work object
60
61
62public:
63 /** Constructor. When the 'fatalErrors' argument is set to true, memory errors
64 (e.g. out-of-memory) will generate a Cpl::System::FatalError call.
65 */
66 HPool( size_t maxNumBlocks, bool fatalErrors = false )
67 :m_infoBlocks( new Pool_::BlockInfo_[maxNumBlocks]() ),
68 m_blocks( new AlignedClass<T>[maxNumBlocks] ),
69 m_poolPtr( new Pool_( m_infoBlocks, sizeof( T ), sizeof( AlignedClass<T> ), maxNumBlocks, m_blocks, fatalErrors ) )
70 {
71 }
72
73
74 /// Destructor.
76 {
77 delete m_poolPtr;
78 delete[] m_blocks;
79 delete[] m_infoBlocks;
80 }
81
82
83public:
84 /// See Cpl::Memory::Allocator
85 void* allocate( size_t numbytes ) { return m_poolPtr->allocate( numbytes ); }
86
87 /// See Cpl::Memory::Allocator
88 void release( void *ptr ) { m_poolPtr->release( ptr ); }
89
90 /// See Cpl::Memory::Allocator
91 size_t wordSize() const noexcept { return m_poolPtr->wordSize(); }
92
93private:
94 /// Prevent access to the copy constructor -->HPools can not be copied!
95 HPool( const HPool& m );
96
97 /// Prevent access to the assignment operator -->HPools can not be copied!
98 const HPool& operator=( const HPool& m );
99
100};
101
102
103
104}; // end namespaces
105};
106#endif // end header latch
This abstract class defines the interface for a Memory Allocator.
Definition Allocator.h:76
This template class defines a concrete Allocator that allocates its block memory from the HEAP.
Definition HPool.h:50
Pool_::BlockInfo_ * m_infoBlocks
Allocate memory for BlockInfo_ instances.
Definition HPool.h:53
void * allocate(size_t numbytes)
See Cpl::Memory::Allocator.
Definition HPool.h:85
AlignedClass< T > * m_blocks
Allocate blocks.
Definition HPool.h:56
void release(void *ptr)
See Cpl::Memory::Allocator.
Definition HPool.h:88
HPool(size_t maxNumBlocks, bool fatalErrors=false)
Constructor.
Definition HPool.h:66
size_t wordSize() const noexcept
See Cpl::Memory::Allocator.
Definition HPool.h:91
Pool_ * m_poolPtr
My Pool work object.
Definition HPool.h:59
~HPool()
Destructor.
Definition HPool.h:75
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 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