openMSX
|
This class manages the lifetime of a block of memory. More...
#include <MemBuffer.hh>
Public Member Functions | |
MemBuffer () | |
Construct an empty MemBuffer, no memory is allocated. | |
MemBuffer (size_t size) | |
Construct a (uninitialized) memory buffer of given size. | |
MemBuffer (MemBuffer &&other) noexcept | |
Move constructor. | |
MemBuffer & | operator= (MemBuffer &&other) noexcept |
Move assignment. | |
~MemBuffer () | |
Free the memory buffer. | |
const T * | data () const |
Returns pointer to the start of the memory buffer. | |
T * | data () |
const T & | operator[] (size_t i) const |
Access elements in the memory buffer. | |
T & | operator[] (size_t i) |
bool | empty () const |
No memory allocated? | |
void | resize (size_t size) |
Grow or shrink the memory block. | |
void | clear () |
Free the allocated memory block and set the current size to 0. | |
This class manages the lifetime of a block of memory.
Its two main use cases are: 1) As a safer alternative for new[] / delete[]. Using this class makes sure the memory block is always properly cleaned up. Also in case of exceptions. 2) As an alternative for vector<byte> ('byte' or other primitive types). The main difference with vector is that the allocated block is left uninitialized. This can be a bit more efficient if the block will anyway soon be overwritten.
Like vector this buffer can dynamically grow or shrink. But it's not optimized for this case (it doesn't keep track of extra capacity). If you need frequent resizing prefer to use vector instead of this class.
Definition at line 28 of file MemBuffer.hh.
|
inline |
Construct an empty MemBuffer, no memory is allocated.
Definition at line 33 of file MemBuffer.hh.
|
inlineexplicit |
Construct a (uninitialized) memory buffer of given size.
Definition at line 43 of file MemBuffer.hh.
|
inlinenoexcept |
Move constructor.
Definition at line 52 of file MemBuffer.hh.
|
inline |
Free the memory buffer.
Definition at line 73 of file MemBuffer.hh.
|
inline |
Free the allocated memory block and set the current size to 0.
Definition at line 125 of file MemBuffer.hh.
Referenced by openmsx::FileBase::munmap(), and openmsx::MemBuffer< T, ALIGNMENT >::resize().
|
inline |
Definition at line 82 of file MemBuffer.hh.
|
inline |
Returns pointer to the start of the memory buffer.
This method can be called even when there's no buffer allocated.
Definition at line 81 of file MemBuffer.hh.
Referenced by openmsx::Rom::addPadding(), openmsx::OutputBuffer::allocate(), openmsx::DeltaBlockCopy::apply(), openmsx::Ram::begin(), openmsx::Ram::begin(), openmsx::Ram::clear(), openmsx::DeltaBlockCopy::compress(), openmsx::ZMBVEncoder::compressFrame(), openmsx::Ram::data(), openmsx::Ram::data(), openmsx::DeltaBlockCopy::DeltaBlockCopy(), openmsx::DeltaBlockDiff::DeltaBlockDiff(), openmsx::Ram::end(), openmsx::Ram::end(), openmsx::RomDatabase::getBufferStart(), openmsx::DeltaBlockCopy::getData(), openmsx::RawFrame::getLineDirect(), openmsx::OutputBuffer::getPosition(), openmsx::ZlibInflate::inflate(), openmsx::OutputBuffer::insertAt(), openmsx::XMLDocument::load(), openmsx::SettingsConfig::loadSetting(), openmsx::FileBase::mmap(), openmsx::CompressedFileAdapter::mmap(), openmsx::ImGuiBitmapViewer::paint(), openmsx::OutputBuffer::release(), openmsx::RomDatabase::RomDatabase(), openmsx::VisibleSurface::saveScreenshotGL(), SDLSurfacePtr::SDLSurfacePtr(), and openmsx::OutputArchiveBase< Derived >::serialize_blob().
|
inline |
No memory allocated?
Definition at line 103 of file MemBuffer.hh.
Referenced by openmsx::FileBase::mmap().
|
inlinenoexcept |
Move assignment.
Definition at line 62 of file MemBuffer.hh.
|
inline |
Definition at line 93 of file MemBuffer.hh.
|
inline |
Access elements in the memory buffer.
Definition at line 86 of file MemBuffer.hh.
|
inline |
Grow or shrink the memory block.
In case of growing, the extra space is left uninitialized. It is possible (even likely) that the memory buffer is copied to a new location after this call, so data() will return a different pointer value.
Definition at line 111 of file MemBuffer.hh.
References openmsx::MemBuffer< T, ALIGNMENT >::clear().
Referenced by openmsx::DeltaBlockCopy::compress(), Base64::decode(), HexDump::decode(), openmsx::ZlibInflate::inflate(), openmsx::XMLDocument::load(), openmsx::SettingsConfig::loadSetting(), openmsx::RawFrame::RawFrame(), openmsx::OutputBuffer::release(), openmsx::RomDatabase::RomDatabase(), SDLSurfacePtr::SDLSurfacePtr(), and openmsx::WavData::WavData().