1#ifndef Driver_NV_Api_h_
2#define Driver_NV_Api_h_
44 virtual bool start() noexcept = 0;
47 virtual
void stop() noexcept = 0;
66 virtual
bool write(
size_t dstOffset, const
void* srcData,
size_t numBytesToWrite ) noexcept = 0;
75 virtual
bool read(
size_t srcOffset,
void* dstData,
size_t numBytesToRead ) noexcept = 0;
This class defines the interface for a platform independent Non-volatile storage driver.
Definition Api.h:35
virtual size_t getTotalSize() const noexcept
The method that returns the total storage size in bytes.
Definition Api.h:102
virtual bool start() noexcept=0
This method is used initialize/start the driver.
virtual bool read(size_t srcOffset, void *dstData, size_t numBytesToRead) noexcept=0
This method reads N bytes starting at the storage offset of 'srcOffset' and stores the bytes into 'ds...
virtual size_t getPageSize() const noexcept=0
This method returns the NV storage page size.
virtual void stop() noexcept=0
This method is used to stop/shutdown the driver.
virtual size_t getNumPages() const noexcept=0
This method returns the total number of NV storage pages.
virtual ~Api()
Virtual destructor.
Definition Api.h:106
virtual bool write(size_t dstOffset, const void *srcData, size_t numBytesToWrite) noexcept=0
This method writes N bytes from 'srcData' starting at the storage offset of 'dstOffset'.