Template class for easy creation of specific protocol packet builder objects. More...
#include <builder.h>
Public Member Functions | |
RecordBuilder (StorageT &storage) | |
Constructor that references an externally managed storage object. | |
RecordBuilder (StorageT *storage) | |
Constructor that references a locally managed storage object. | |
virtual bool | BuildRecord (DBData &data, size_t &offset, const IConverter *ic) |
Called to build the record field data. | |
virtual bool | FetchRecord (DBData &data, const IConverter *ic) |
Same as BuildRecord, but does not care about any offsets. | |
virtual bool | EndOfFile () const |
Sometimes a builder can have multiple databases stored in it, so when Build/Fetch returns false, check if there is more data with this function. |
Template class for easy creation of specific protocol packet builder objects.
This template takes the following template arguments:
Example SaveDatabase() call:
FIXME
Definition at line 167 of file builder.h.
Barry::RecordBuilder< RecordT, StorageT >::RecordBuilder | ( | StorageT & | storage | ) | [inline] |
Barry::RecordBuilder< RecordT, StorageT >::RecordBuilder | ( | StorageT * | storage | ) | [inline] |
virtual bool Barry::RecordBuilder< RecordT, StorageT >::BuildRecord | ( | DBData & | data, | |
size_t & | offset, | |||
const IConverter * | ic | |||
) | [inline, virtual] |
Called to build the record field data.
Store the raw data in data, using offset to know where to write. Be sure to update offset, and be sure to adjust the size of the data packet (possibly with Data::ReleaseBuffer()).
Returns true if successful, and false if at the end of the series. Note that if EndOfFile() is false after this function returns false, then there may be another series available, which the next call to BuildRecord() will determine.
Implements Barry::Builder.
Definition at line 203 of file builder.h.
References Barry::SetDBData().
Referenced by Barry::RecordBuilder< RecordT, StorageT >::FetchRecord().
virtual bool Barry::RecordBuilder< RecordT, StorageT >::EndOfFile | ( | ) | const [inline, virtual] |
Sometimes a builder can have multiple databases stored in it, so when Build/Fetch returns false, check if there is more data with this function.
This function is not used by database-oriented functions, but by pipe- oriented functions.
Implements Barry::Builder.
virtual bool Barry::RecordBuilder< RecordT, StorageT >::FetchRecord | ( | DBData & | data, | |
const IConverter * | ic | |||
) | [inline, virtual] |
Same as BuildRecord, but does not care about any offsets.
The caller should call DBData::GetOffset() afterward to discover if there is an offset to the result.
This is usually the fastest of the two functions, since extra copying may be required if a specific offset is given. When building records from Record classes, both functions are the same speed. But when building records from the device, the device decides the offset, so FetchRecord() is faster, since BuildRecord requires a copy to adjust to the right offset.
The caller should use the function that results in the least amount of copying for the caller. If the caller doesn't care about where the resulting record is in data, use FetchRecord().
Implements Barry::Builder.
Definition at line 218 of file builder.h.
References Barry::RecordBuilder< RecordT, StorageT >::BuildRecord().