GM6000 Digital Heater Controller Branch: main
SDX-1330
Pool_.h
Go to the documentation of this file.
1#ifndef Cpl_Memory_Pool_x_h_
2#define Cpl_Memory_Pool_x_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
16#include "Cpl/Container/DList.h"
17
18
19///
20namespace Cpl {
21///
22namespace Memory {
23
24
25/** This private concrete class implements a Memory Allocator using a pool of
26 fixed size blocks. The implementation relies on a sub-class to allocate
27 the actual memory for the blocks.
28 */
29
30class Pool_ : public Allocator
31{
32public:
33 /// Helper class so I can put my blocks into to my standard containers
35 {
36 public:
37 /// Constructor
39
40 public:
41 /// Reference to the block being stored in the list
42 const char* m_blockPtr;
43 };
44
45
46protected:
47 /// My free list of blocks
49
50 /// My list of allocated blocks
52
53 /// Block size
55
56 /// Block size
58
59 /// Flag that controls memory errors behavior
61
62
63public:
64 /// Constructor.
65 Pool_( BlockInfo_ infoBlocks[],
66 size_t blockSize,
67 size_t alignedBlockSize,
68 size_t numBlocks,
69 void* arrayOfBlocks,
70 bool fatalErrors
71 );
72
73
74 /// Destructor
76
77
78public:
79 /// See Cpl::Memory::Allocator
80 void* allocate( size_t numbytes );
81
82 /// See Cpl::Memory::Allocator
83 void release( void *ptr );
84
85 /// See Cpl::Memory::Allocator
86 size_t wordSize() const noexcept;
87
88};
89
90
91}; // end namespaces
92};
93#endif // end header latch
This class is used by the Container classes to implement a various types of DOUBLY linked containers.
Definition Item.h:91
This template class implements a THREAD SAFE Ring Buffer.
Definition RingBufferMT.h:33
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
BlockInfo_()
Constructor.
Definition Pool_.h:38
const char * m_blockPtr
Reference to the block being stored in the list.
Definition Pool_.h:42
This private concrete class implements a Memory Allocator using a pool of fixed size blocks.
Definition Pool_.h:31
Pool_(BlockInfo_ infoBlocks[], size_t blockSize, size_t alignedBlockSize, size_t numBlocks, void *arrayOfBlocks, bool fatalErrors)
Constructor.
Cpl::Container::DList< BlockInfo_ > m_allocatedList
My list of allocated blocks.
Definition Pool_.h:51
size_t m_alignedBlockSize
Block size.
Definition Pool_.h:57
Cpl::Container::DList< BlockInfo_ > m_freeList
My free list of blocks.
Definition Pool_.h:48
~Pool_()
Destructor.
size_t wordSize() const noexcept
See Cpl::Memory::Allocator.
bool m_fatalErrors
Flag that controls memory errors behavior.
Definition Pool_.h:60
void * allocate(size_t numbytes)
See Cpl::Memory::Allocator.
void release(void *ptr)
See Cpl::Memory::Allocator.
size_t m_blockSize
Block size.
Definition Pool_.h:54
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20