GM6000 Digital Heater Controller Branch: main
SDX-1330
LeanHeap.h
Go to the documentation of this file.
1#ifndef Cpl_Memory_LeanHeap_h_
2#define Cpl_Memory_LeanHeap_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
17
18///
19namespace Cpl {
20///
21namespace Memory {
22
23
24/** This class manages an allocate-only-heap. Memory allocated by this class
25 cannot be freed. All of the memory is aligned to size_t boundaries.
26
27 Note: The heap has a 'reset' method that can be used to free all of the
28 memory allocated by the instance - HOWEVER it is the responsibility
29 of the Application to ensure the proper behavior when this
30 method is used (i.e. that is okay to 'free everything')
31 */
32
34{
35
36public:
37 /** Constructor. The memory size of 'heapMemory' MUST be a multiple
38 of sizeof(size_t).
39 */
40 LeanHeap( size_t* heapMemory, size_t sizeInBytes );
41
42
43public:
44 /// See Cpl::Memory::ContiguousAllocator
45 void* allocate( size_t numbytes );
46
47 /// See Cpl::Memory::ContiguousAllocator
48 void reset() noexcept;
49
50 /// See Cpl::Memory::ContiguousAllocator.
51 uint8_t* getMemoryStart( size_t& dstAllocatedLenInBytes ) noexcept;
52
53 /// See Cpl::Memory::Allocator
54 size_t wordSize() const noexcept { return sizeof( size_t ); }
55
56private:
57 /// Prevent access to the copy constructor -->LeanHeap can not be copied!
58 LeanHeap( const LeanHeap& m );
59
60 /// Prevent access to the assignment operator -->LeanHeap can not be copied!
61 const LeanHeap& operator=( const LeanHeap& m );
62
63protected:
64 /// Pointer to the base of the original heap memory
65 size_t* m_ptrBase;
66
67 /// Size (in words) of the original heap memory
69
70 /// Pointer to the next available free byte of memory
71 size_t* m_ptr;
72
73 /// The amount of remaining free memory in size_t words
75};
76
77
78}; // end namespaces
79};
80#endif // end header latch
This abstract class is used 'extend' the Memory Allocator to have contiguous semantics.
Definition ContiguousAllocator.h:32
This class manages an allocate-only-heap.
Definition LeanHeap.h:34
size_t m_wordsRemaining
The amount of remaining free memory in size_t words.
Definition LeanHeap.h:74
size_t * m_ptr
Pointer to the next available free byte of memory.
Definition LeanHeap.h:71
size_t m_staringHeapSize
Size (in words) of the original heap memory.
Definition LeanHeap.h:68
void * allocate(size_t numbytes)
See Cpl::Memory::ContiguousAllocator.
void reset() noexcept
See Cpl::Memory::ContiguousAllocator.
LeanHeap(size_t *heapMemory, size_t sizeInBytes)
Constructor.
uint8_t * getMemoryStart(size_t &dstAllocatedLenInBytes) noexcept
See Cpl::Memory::ContiguousAllocator.
size_t * m_ptrBase
Pointer to the base of the original heap memory.
Definition LeanHeap.h:65
size_t wordSize() const noexcept
See Cpl::Memory::Allocator.
Definition LeanHeap.h:54
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20