#include <s32mem.h>
class TBufBuf : public TStreamBuf |
Public Member Enumerations | |
---|---|
enum | anonymous { ETruncate, EInsert } |
Public Member Functions | |
---|---|
TBufBuf() | |
IMPORT_C void | Set(CBufBase &, TInt, TInt) |
Protected Member Functions | |
---|---|
virtual IMPORT_C TStreamPos | DoSeekL(TMark, TStreamLocation, TInt) |
virtual IMPORT_C void | DoSynchL() |
virtual IMPORT_C void | DoWriteL(const TAny *, TInt) |
virtual IMPORT_C void | OverflowL() |
virtual IMPORT_C TInt | UnderflowL(TInt) |
Inherited Enumerations | |
---|---|
MStreamBuf:TRead | |
MStreamBuf:TWrite |
Inherited Type Definitions | |
---|---|
MStreamBuf::TMark | |
TStreamBuf::TArea |
A stream buffer that uses a dynamic buffer for its implementation.
A stream of this type is used by RBufWriteStream and RBufReadStream objects. It also has intermediate buffering capabilities.
This is a seekable stream buffer.
There are three write modes:
insert mode - inserts new data into the buffer at the offset passed to Set()
overwrite mode - replaces the data in the buffer starting at the offset passed to Set(). Once the end of the buffer is reached, it is automatically extended as more data is written. This is the default mode.
truncate mode - truncates the buffer to the offset passed to Set() before data is written, extending the buffer. When writing, the buffer size as reported by CBufBase::Size() may be larger than the data written to the stream. To synchronise the buffer's reported size with the stream, call the MStreamBuf::SynchL() function.
Note that this object never takes ownership of the dynamic buffer, the CBufBase type object.
See also: RBufWriteStream RBufReadStream CBufBase::Size() MStreamBuf::SynchL()
IMPORT_C TStreamPos | DoSeekL | ( | TMark | aMark, |
TStreamLocation | aLocation, | |||
TInt | anOffset | |||
) | [protected, virtual] |
Reimplemented from MStreamBuf::DoSeekL(TMark,TStreamLocation,TInt)
IMPORT_C void | DoSynchL | ( | ) | [protected, virtual] |
Reimplemented from MStreamBuf::DoSynchL()
Synchronises the stream buffer with the stream, leaving if any error occurs.
In effect, this ensures that buffered data is delivered to the stream.
It is called by SynchL().
This implementation is empty, but classes derived from MStreamBuf can provide their own implementation, if necessary.
See also: MStreamBuf::SynchL()
Reimplemented from TStreamBuf::DoWriteL(const TAny *,TInt)
Writes data from the specified memory location into the intermediate buffer.
The function calls the virtual function OverfLowL() to give concrete implementations the chance to forward the intermediate buffer content to its destination.
This implementation overrides the one supplied by the base class MStreamBuf, and is called by MStreamBuf::WriteL(const TAny*,TInt).
See also: MStreamBuf::WriteL() MStreamBuf::DoWriteL()
Parameter | Description |
---|---|
aPtr | A pointer to the source memory location for the data to be written to the intermediate buffer. |
aLength | The number of bytes to be written. |
Returns: The number of bytes written.
IMPORT_C void | OverflowL | ( | ) | [protected, virtual] |
Reimplemented from TStreamBuf::OverflowL()
Empties the intermediate buffer and resets the start and end points of the write area.
The implementation of this function depends on the way the stream itself is implemented. For example, the in-memory streams have simple implementations.
Sets up the stream to use the specified dynamic buffer.
See also: CBufBase MStreamBuf::TRead MStreamBuf::TWrite
Parameter | Description |
---|---|
aBuf | The dynamic buffer that hosts the stream and that also acts as the intermediate buffer. |
aPos | The offset within the dynamic buffer where the stream starts. |
aMode | The mode in which the stream is to be used. It can be used in either or both read and write modes, represented by ERead and EWrite. In addition, specify TBufBuf::EInsert to imply insert mode; specify TBufBuf::ETruncate to imply truncate mode. If neither TBufBuf::EInsert nor TBufBuf::ETruncate are specified, then overwrite mode is implied. Both TBufBuf::EInsert and TBufBuf::ETruncate imply EWrite. |
Reimplemented from TStreamBuf::UnderflowL(TInt)
Re-fills the intermediate buffer and resets the start and end points of the read area.
The implementation of this function depends on the way the stream itself is implemented. For example, the in-memory streams have simple implementations.
Parameter | Description |
---|---|
aMaxLength | The maximum amount of data required for the intermediate buffer. |
Returns: The amount of data available in the intermediate buffer.