![]() |
GM6000 Digital Heater Controller Branch: main
SDX-1330
|
This mostly abstract class defines the operations that can be performed on a persistent media. More...
This mostly abstract class defines the operations that can be performed on a persistent media.
In addition there is concept of a persistent media being dividing into non-overlapping regions. Each Region has a starting offset, and length (in bytes) of the region. All read/write operations are relative the start of the region, i.e. offset zero is first byte of the region; offset 9 is the tenth byte in the region.
#include <RegionMedia.h>
Public Member Functions | |
virtual void | start (Cpl::Dm::MailboxServer &myMbox) noexcept=0 |
This method is to start/initialize the Region. | |
virtual void | stop () noexcept=0 |
This method is to stop/shutdown the Region. | |
virtual bool | write (size_t offset, const void *srcData, size_t srcLen) noexcept=0 |
This method writes 'srcLen' bytes to the media at the specified offset. | |
virtual size_t | read (size_t offset, void *dstBuffer, size_t bytesToRead) noexcept=0 |
This method reads 'bytesToRead' bytes from the media at the specified offset. | |
virtual size_t | getStartAddress () const |
Returns the Region's starting address. | |
virtual size_t | getRegionLength () const |
Returns the Region's length in bytes. | |
virtual | ~RegionMedia () |
Virtual destructor. | |
Protected Member Functions | |
RegionMedia (size_t startAddress, size_t regionLength) | |
Constructor. Note: A child class is required. | |
Protected Attributes | |
size_t | m_startAddress |
The Regions' starting address. | |
size_t | m_regionLength |
The length, in bytes, of the region. | |
|
inlinevirtual |
Virtual destructor.
|
inlineprotected |
Constructor. Note: A child class is required.
|
inlinevirtual |
Returns the Region's length in bytes.
|
inlinevirtual |
Returns the Region's starting address.
|
pure virtualnoexcept |
This method reads 'bytesToRead' bytes from the media at the specified offset.
The offset is relative to the start of the Region's start address.
The method returns the number of bytes read. A return value of ZERO indicates that an error occurred.
Implemented in Cpl::Persistent::FileAdapter, Cpl::Persistent::NullRegionMedia, and Cpl::Persistent::NVAdapter.
|
pure virtualnoexcept |
This method is to start/initialize the Region.
It is typically only called once at the startup of the application. However, start() can be called after a previous call to the stop() method.
This method is called when the corresponding Chunk instance is 'started'
The 'myMbox' is a reference to the RecordServer's ITC mailbox, i.e. the mailbox for the thread that the Record executes in. The 'myEventLoop' is a reference to the RecordServer's Event Loop.
Implemented in Cpl::Persistent::FileAdapter, Cpl::Persistent::NullRegionMedia, and Cpl::Persistent::NVAdapter.
|
pure virtualnoexcept |
This method is to stop/shutdown the Region.
It is typically only called once during an orderly shutdown of the application. However, start() can be after a previous call to the stop() method.
Implemented in Cpl::Persistent::FileAdapter, Cpl::Persistent::NullRegionMedia, and Cpl::Persistent::NVAdapter.
|
pure virtualnoexcept |
This method writes 'srcLen' bytes to the media at the specified offset.
The offset is relative to the start of the Region's start address.
The method return true of the write operation was successful, else false is returned.
Implemented in Cpl::Persistent::FileAdapter, Cpl::Persistent::NullRegionMedia, and Cpl::Persistent::NVAdapter.
|
protected |
The length, in bytes, of the region.
|
protected |
The Regions' starting address.