![]() |
GM6000 Digital Heater Controller Branch: main
SDX-1330
|
This abstract class defines the interface accessing the 'data payload' of an individual Record instance. More...
This abstract class defines the interface accessing the 'data payload' of an individual Record instance.
#include <Payload.h>
Public Member Functions | |
virtual size_t | getData (void *dst, size_t maxDstLen) noexcept=0 |
This method returns a Record's data payload contents. | |
virtual bool | putData (const void *src, size_t srcLen) noexcept=0 |
This method used to transfer persistently stored data into a Record. | |
virtual | ~Payload () |
Virtual destructor. | |
|
inlinevirtual |
Virtual destructor.
|
pure virtualnoexcept |
This method returns a Record's data payload contents.
The Record is responsible for NOT over-running the 'dst' buffer. The method returns the number of bytes copied to 'dst' on success; else zero is returned when there is failure.
Note: On success, the returned number of bytes MUST be the same on every call of this method, i.e. variable length records at run time is NOT supported.
Note: If the Record returns less data than 'maxDstLen' - the remaining bytes will be zero filled before the record data is written to the media.
Implemented in Cpl::Dm::Persistent::Record, Cpl::Logging::EntryData_T, Cpl::Persistent::IndexedEntryRecord, and Cpl::Persistent::IndexRecord.
|
pure virtualnoexcept |
This method used to transfer persistently stored data into a Record.
The method returns true if successful; else false is returned.
Note: The application is not required to consume all of the incoming data. This is because typically region are 'over-allocated' in order to leave room to grow.
Implemented in Cpl::Dm::Persistent::Record, Cpl::Logging::EntryData_T, Cpl::Persistent::IndexedEntryRecord, and Cpl::Persistent::IndexRecord.