GM6000 Digital Heater Controller Branch: main
SDX-1330
NullRegionMedia.h
Go to the documentation of this file.
1#ifndef Cpl_Persistent_Null_Region_Media_h_
2#define Cpl_Persistent_Null_Region_Media_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 <stdlib.h>
17#include <memory.h>
18
19
20///
21namespace Cpl {
22///
23namespace Persistent {
24
25
26/** This concrete class provides a 'null' implementation of the RegionMedia
27 interface. This class can be used to 'satisfy' persistent storage clients
28 when there is no physical persistent storage available on the platform.
29 */
31{
32public:
33 /// Constructor.
34 NullRegionMedia( size_t startAddress, size_t regionLength ): RegionMedia( startAddress, regionLength ) {}
35
36public:
37 /// See Cpl::Persistent::RegionMedia
38 void start( Cpl::Dm::MailboxServer& myMbox ) noexcept {}
39
40 /// See Cpl::Persistent::RegionMedia
41 void stop() noexcept {}
42
43 /// See Cpl::Persistent::RegionMedia
44 bool write( size_t offset, const void* srcData, size_t srcLen ) noexcept { return true; }
45
46 /// See Cpl::Persistent::RegionMedia
47 size_t read( size_t offset, void* dstBuffer, size_t bytesToRead ) noexcept { return 0; }
48};
49
50
51}; // end namespaces
52};
53#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 provides a 'null' implementation of the RegionMedia interface.
Definition NullRegionMedia.h:31
bool write(size_t offset, const void *srcData, size_t srcLen) noexcept
See Cpl::Persistent::RegionMedia.
Definition NullRegionMedia.h:44
NullRegionMedia(size_t startAddress, size_t regionLength)
Constructor.
Definition NullRegionMedia.h:34
size_t read(size_t offset, void *dstBuffer, size_t bytesToRead) noexcept
See Cpl::Persistent::RegionMedia.
Definition NullRegionMedia.h:47
void stop() noexcept
See Cpl::Persistent::RegionMedia.
Definition NullRegionMedia.h:41
void start(Cpl::Dm::MailboxServer &myMbox) noexcept
See Cpl::Persistent::RegionMedia.
Definition NullRegionMedia.h:38
This mostly abstract class defines the operations that can be performed on a persistent media.
Definition RegionMedia.h:33
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20