1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215
|
/*========================== begin_copyright_notice ============================
Copyright (C) 2019-2021 Intel Corporation
SPDX-License-Identifier: MIT
============================= end_copyright_notice ===========================*/
#pragma once
#include "LinearAllocator.h"
#include "MemCopy.h"
namespace iSTD
{
/*****************************************************************************\
Class:
CBuffer
Description:
Allocates and manages a system memory buffer
\*****************************************************************************/
template<class CAllocatorType>
class CBuffer : public CLinearAllocator<CAllocatorType>
{
public:
CBuffer( void );
virtual ~CBuffer( void );
bool Allocate( const DWORD allocSize, const DWORD alignSize );
void Deallocate( void );
DWORD GetBlockSize( void ) const;
void* GetLinearAddress( void ) const;
protected:
BYTE* m_pAllocAddress; // Address of allocation pointer
};
/*****************************************************************************\
Function:
CBuffer Constructor
Description:
Initializes internal data
Input:
none
Output:
none
\*****************************************************************************/
template<class CAllocatorType>
inline CBuffer<CAllocatorType>::CBuffer( void )
: CLinearAllocator<CAllocatorType>( NULL, 0 )
{
m_pAllocAddress = NULL;
}
/*****************************************************************************\
Function:
CBuffer Destructor
Description:
Deletes internal data
Input:
none
Output:
none
\*****************************************************************************/
template<class CAllocatorType>
inline CBuffer<CAllocatorType>::~CBuffer( void )
{
Deallocate();
}
/*****************************************************************************\
Function:
CBuffer::Allocate
Description:
Allocates memory for the buffer
Input:
const DWORD allocSize - size in bytes
const DWORD alignSize - alignment in bytes
Output:
bool - success or fail
\*****************************************************************************/
template<class CAllocatorType>
inline bool CBuffer<CAllocatorType>::Allocate(
const DWORD allocSize,
const DWORD alignSize )
{
Deallocate();
const DWORD alignedAllocSize = allocSize + alignSize;
if( alignedAllocSize )
{
m_pAllocAddress = (BYTE*)CAllocatorType::Allocate( alignedAllocSize );
if( m_pAllocAddress )
{
const DWORD offset = ( alignSize )
? GetAlignmentOffset( m_pAllocAddress, alignSize )
: 0;
this->m_pBaseAddress = this->m_pAllocAddress + offset;
this->m_Size = allocSize;
SafeMemSet( this->m_pBaseAddress, 0, this->m_Size );
}
else
{
ASSERT(0);
this->m_Size = 0;
}
}
else
{
ASSERT(0);
this->m_Size = 0;
}
this->m_SizeUsed = 0;
this->m_SizeReserved = 0;
return ( this->m_Size ) ? true : false;
}
/*****************************************************************************\
Function:
CBuffer::Deallocate
Description:
Deallocates memory for the buffer
Input:
none
Output:
none
\*****************************************************************************/
template<class CAllocatorType>
inline void CBuffer<CAllocatorType>::Deallocate( void )
{
CAllocatorType::Deallocate( m_pAllocAddress );
m_pAllocAddress = NULL;
this->m_pBaseAddress = NULL;
this->m_Size = 0;
this->m_SizeUsed = 0;
this->m_SizeReserved = 0;
}
/*****************************************************************************\
Function:
CBuffer::GetBlockSize
Description:
Gets the total size of the buffer
Input:
none
Output:
DWORD - size in bytes
\*****************************************************************************/
template<class CAllocatorType>
inline DWORD CBuffer<CAllocatorType>::GetBlockSize( void ) const
{
return this->m_Size;
}
/*****************************************************************************\
Function:
CBuffer::GetLinearAddress
Description:
Gets the base address of the buffer
Input:
void
Output:
void* - linear address
\*****************************************************************************/
template<class CAllocatorType>
inline void* CBuffer<CAllocatorType>::GetLinearAddress( void ) const
{
return (void*)(this->m_pBaseAddress);
}
} // iSTD
|