GM6000 Digital Heater Controller Branch: main
SDX-1330
NVAdapter.h
Go to the documentation of this file.
1#ifndef Cpl_Persistent_NVAdapter_h_
2#define Cpl_Persistent_NVAdapter_h_
3/*-----------------------------------------------------------------------------
4* This file is part of the Colony.Core Project. The Colony.Core Project is an
5* open source project with a BSD type of licensing agreement. See the license
6* agreement (license.txt) in the top/ directory or on the Internet at
7* http://integerfox.com/colony.core/license.txt
8*
9* Copyright (c) 2014-2022 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file */
14
16#include "Driver/NV/Api.h"
17
18
19///
20namespace Cpl {
21///
22namespace Persistent {
23
24/** This concrete class implements the RegionMedia interface using the
25 Driver::NV::Api interface.
26 */
27class NVAdapter : public RegionMedia
28{
29public:
30 /** Constructor.
31 */
32 NVAdapter( Driver::NV::Api& lowLevelDriver, size_t regionStartAddress, size_t regionLen ) noexcept;
33
34public:
35 /// See Cpl::Persistent::RegionMedia
36 void start( Cpl::Dm::MailboxServer& myMbox_notUsed ) noexcept;
37
38 /// See Cpl::Persistent::RegionMedia
39 void stop() noexcept;
40
41 /// See Cpl::Persistent::RegionMedia
42 bool write( size_t offset, const void* srcData, size_t srcLen ) noexcept;
43
44 /// See Cpl::Persistent::RegionMedia
45 size_t read( size_t offset, void* dstBuffer, size_t bytesToRead ) noexcept;
46
47
48protected:
49 /// Handle to the low level driver that does all of the work
50 Driver::NV::Api& m_driver;
51};
52
53}; // end namespaces
54};
55#endif // end header latch
This class extends the Cpl::Dm::EventLoop and Cpl::Itc:Mailbox classes to support the asynchronous ch...
Definition MailboxServer.h:43
This concrete class implements the RegionMedia interface using the Driver::NV::Api interface.
Definition NVAdapter.h:28
NVAdapter(Driver::NV::Api &lowLevelDriver, size_t regionStartAddress, size_t regionLen) noexcept
Constructor.
bool write(size_t offset, const void *srcData, size_t srcLen) noexcept
See Cpl::Persistent::RegionMedia.
void start(Cpl::Dm::MailboxServer &myMbox_notUsed) noexcept
See Cpl::Persistent::RegionMedia.
Driver::NV::Api & m_driver
Handle to the low level driver that does all of the work.
Definition NVAdapter.h:50
void stop() noexcept
See Cpl::Persistent::RegionMedia.
size_t read(size_t offset, void *dstBuffer, size_t bytesToRead) noexcept
See Cpl::Persistent::RegionMedia.
This mostly abstract class defines the operations that can be performed on a persistent media.
Definition RegionMedia.h:33
This class defines the interface for a platform independent Non-volatile storage driver.
Definition Api.h:35
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20
namespace