casacore
|
#include <DynBuffer.h>
Public Member Functions | |
DynBuffer (uInt nrOfBytes=4096) | |
Allocate a first buffer of the specified number of bytes (default 4096). More... | |
~DynBuffer () | |
Remove the whole buffer, i.e. More... | |
void | allocstart () |
Prepare for storing data (re-initialize the buffer) More... | |
uInt | alloc (uInt nrOfValues, uInt valueSize, Char *&ptr) |
Allocate buffer space for nrOfValues values of size valueSize bytes, and return the pointer ptr to the buffer and the number of values that fit in the buffer. More... | |
void | remove (uInt nrOfBuffer=1) |
Remove buffer nrOfBuffer and the buffers appended to it, and re-initialize the current buffer. More... | |
void | nextstart () |
Prepare for data retrieval (set up for looping through the buffers). More... | |
Bool | next (uInt &usedLength, Char *&ptr) |
Get the pointer to the next buffer and its used length in bytes. More... | |
Private Member Functions | |
uInt | newbuf (uInt nrOfValues, uInt valueSize) |
Get the next buffer for storing nrOfValues values of size valueSize bytes, and return the number of values that can be stored in the free space of that buffer (maybe less than nrOfValues ). More... | |
Private Attributes | |
uInt | bufsz_p |
size of 1st buffer and min. More... | |
Int | nextbuf_p |
buffernr for next function More... | |
Int | curbuf_p |
current buffernr More... | |
Int | nrbuf_p |
nr of buffers allocated More... | |
Int | maxnrbuf_p |
size of Blocks More... | |
Block< uInt > | uselen_p |
used length per buffer More... | |
Block< uInt > | totlen_p |
total length per buffer More... | |
PtrBlock< Char * > | bufptr_p |
pointer to buffer More... | |
uInt | curuselen_p |
used length of current buffer More... | |
uInt | curtotlen_p |
total length of current buffer More... | |
Char * | curbufptr_p |
pointer to current buffer More... | |
Store data in dynamically allocated buffers
Public interface
DynBuffer allows one to store data in dynamically allocated buffers. When a buffer is full, an additional buffer can be allocated and "linked" to the existing one; so, the data may not be stored contiguously You can loop through all the linked buffers and get their individual addresses and sizes, so that you can access the data.
Example (without exception handling):
This class is developed as an intermediate buffer for class AipsIO, but it may serve other purposes as well.
Definition at line 92 of file DynBuffer.h.
casacore::DynBuffer::DynBuffer | ( | uInt | nrOfBytes = 4096 | ) |
Allocate a first buffer of the specified number of bytes (default 4096).
When the allocation fails, an exception is thrown.
casacore::DynBuffer::~DynBuffer | ( | ) |
Remove the whole buffer, i.e.
the first buffer and all the buffers appended to it.
Allocate buffer space for nrOfValues
values of size valueSize
bytes, and return the pointer ptr
to the buffer and the number of values that fit in the buffer.
When not all values fit in the current buffer, new buffer space is added (probably non-contiguous). If that allocation fails an exception is thrown.
Definition at line 177 of file DynBuffer.h.
References curbufptr_p, curtotlen_p, curuselen_p, and newbuf().
void casacore::DynBuffer::allocstart | ( | ) |
Prepare for storing data (re-initialize the buffer)
Get the next buffer for storing nrOfValues
values of size valueSize
bytes, and return the number of values that can be stored in the free space of that buffer (maybe less than nrOfValues
).
The new current buffer can be the present one (if it has free space), the next buffer already allocated (if there is one), or a newly allocated and linked-in buffer. If, in the last case, the allocation fails an exception is thrown.
Referenced by alloc().
Get the pointer to the next buffer and its used length in bytes.
The function returns a False
value if there are no more buffers.
void casacore::DynBuffer::nextstart | ( | ) |
Prepare for data retrieval (set up for looping through the buffers).
void casacore::DynBuffer::remove | ( | uInt | nrOfBuffer = 1 | ) |
Remove buffer nrOfBuffer
and the buffers appended to it, and re-initialize the current buffer.
By default we keep the first buffer (i.e. the one numbered 0).
The idea is that you may want to free intermediate storage space taken up by data that you no longer need, and that the first buffer is often big enough to hold further data. So, you only remove the first buffer in special cases.
pointer to buffer
Definition at line 162 of file DynBuffer.h.
|
private |
|
private |
current buffernr
Definition at line 152 of file DynBuffer.h.
|
private |
|
private |
|
private |
|
private |
size of Blocks
Definition at line 156 of file DynBuffer.h.
|
private |
buffernr for next function
Definition at line 150 of file DynBuffer.h.
|
private |
nr of buffers allocated
Definition at line 154 of file DynBuffer.h.
total length per buffer
Definition at line 160 of file DynBuffer.h.
used length per buffer
Definition at line 158 of file DynBuffer.h.