GM6000 Digital Heater Controller Branch: main
SDX-1330
ContiguousAllocator.h
Go to the documentation of this file.
1#ifndef Cpl_Memory_Contigous_Allocator_h_
2#define Cpl_Memory_Contigous_Allocator_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 <stdint.h>
17
18///
19namespace Cpl {
20///
21namespace Memory {
22
23
24/** This abstract class is used 'extend' the Memory Allocator to have contiguous
25 semantics. This means all memory that is allocated can be viewed as
26 single contiguous block of memory. In addition, the 'release' be is hidden
27 and replaced with a reset() method that releases/frees ALL memory allocated.
28
29
30*/
32{
33public:
34 /** Resets the allocator, i.e. effectively frees all allocated memory. It
35 is the caller's RESPONSIBILTY to ensure that it is kosher to free all
36 of the memory.
37 */
38 virtual void reset() noexcept = 0;
39
40public:
41 /** This method returns a pointer to the start of Allocator's contiguous
42 memory AND the total number of bytes allocated so far.
43
44 NOTE: This method has GREAT POWER and it is the responsibility of the
45 Application to use it correctly (Uncle Ben 2002).
46 */
47 virtual uint8_t* getMemoryStart( size_t& dstAllocatedLenInBytes ) noexcept= 0;
48
49private:
50 /** Hide/disable the individual release method (it does not fit the
51 contiguous semantics). If it gets called via the parent 'Allocator'
52 interface - it does NOTHING
53 */
54 void release( void *ptr ){};
55};
56
57
58}; // end namespaces
59};
60#endif // end header latch
This abstract class defines the interface for a Memory Allocator.
Definition Allocator.h:76
This abstract class is used 'extend' the Memory Allocator to have contiguous semantics.
Definition ContiguousAllocator.h:32
virtual void reset() noexcept=0
Resets the allocator, i.e.
virtual uint8_t * getMemoryStart(size_t &dstAllocatedLenInBytes) noexcept=0
This method returns a pointer to the start of Allocator's contiguous memory AND the total number of b...
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20