GM6000 Digital Heater Controller Branch: main
SDX-1330
Allocator.h
Go to the documentation of this file.
1#ifndef Cpl_Memory_Allocator_h_
2#define Cpl_Memory_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
15#include "Cpl/Container/Item.h"
16#include <stdlib.h>
17
18
19///
20namespace Cpl {
21///
22namespace Memory {
23
24
25/** This abstract class defines the interface for a Memory Allocator. A Memory
26 Allocator manages a pool memory that is assigned/released to/from clients
27 at run-time (i.e. provides the memory for "dynamic" memory allocations).
28
29 The following is an example on how to dynamically create/destroy object
30 using the memory provided by a Allocator object:
31
32 @code
33
34 Example of placement new:
35 -------------------------
36 #include <new>
37 #include "Cpl/Memory/Allocator.h"
38
39 class Foo { .... };
40
41 Foo* newMe( Allocator& src, ...)
42 {
43 // Get a chunk memory large enough to contain an instance of Foo
44 void* mem = src.allocate(sizeof(Foo));
45
46 // Create an instance Foo using placement new
47 if ( mem )
48 {
49 return new(mem) Foo(...);
50 }
51 else
52 {
53 // error condition: not enough memory. Do...
54 return 0;
55 }
56 }
57
58
59 Example of delete for an object created with by placement new:
60 --------------------------------------------------------------
61 void deleteMe( Foo* ptr, Allocator& src )
62 {
63 // Since delete is not called ->I have to Explicitly call the destructor!
64 ptr->~Foo();
65
66 // Release the memory back to the MemorySource
67 src.release(ptr);
68 }
69
70
71 @endcode
72*/
73
74
76{
77public:
78 /** Allocate and returns a pointer to at least numBytes of storage.
79 Returns 0 if out of memory.
80 */
81 virtual void* allocate( size_t numbytes ) = 0;
82
83
84 /** Frees memory that was allocated via the allocate() method. It is VERY
85 IMPORTANT that the memory is allocate() and release() from/to the
86 SAME MemorySource Instance!
87
88 NOTES:
89
90 1) Freeing a 0 pointer causes release() to return immediately
91 without any errors.
92
93 2) The pointer released() MUST be the same value as the pointer
94 that was returned by the allocate(). This is particularly
95 important if the memory allocated is used to create a
96 concrete object that inherits multiple abstract/virtual
97 interfaces. When deleting the object, the pointer value
98 passed to the release() method must be a pointer type of
99 concrete object - NOT a pointer to any of its parent classes.
100 This is required to prevent possible memory leaks because of
101 the C++ magic where the actual pointer value to the concrete
102 object is not necessarily the same pointer value when the pointer
103 is up-cast to one of its abstract base classes!
104 */
105 virtual void release( void *ptr ) = 0;
106
107public:
108 /** Returns the 'word' size of the allocator, i.e. chunks of memory are
109 allocate in multiple of this size. For example: Given a word size of 4
110 and memory request for 5 bytes - the allocated would actually allocate
111 8 bytes of memory, i.e. 2 * 4 >= 5
112 */
113 virtual size_t wordSize() const noexcept = 0;
114
115 /** Convenience method that determines the actual amount of memory that
116 actually allocated for a successful allocate request of N bytes.
117 */
118 size_t allocatedSizeForNBytes( size_t nbytes ) const noexcept
119 {
120 size_t ws = wordSize();
121 return ((nbytes + ws - 1) / ws) * ws;
122 }
123
124public:
125 /// Provide a virtual destructor
126 virtual ~Allocator() {}
127
128};
129
130
131}; // end namespaces
132};
133#endif // end header latch
This class is used by the Container classes to implement a various types of singly linked containers.
Definition Item.h:33
This abstract class defines the interface for a Memory Allocator.
Definition Allocator.h:76
virtual void * allocate(size_t numbytes)=0
Allocate and returns a pointer to at least numBytes of storage.
size_t allocatedSizeForNBytes(size_t nbytes) const noexcept
Convenience method that determines the actual amount of memory that actually allocated for a successf...
Definition Allocator.h:118
virtual void release(void *ptr)=0
Frees memory that was allocated via the allocate() method.
virtual size_t wordSize() const noexcept=0
Returns the 'word' size of the allocator, i.e.
virtual ~Allocator()
Provide a virtual destructor.
Definition Allocator.h:126
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20