GM6000 Digital Heater Controller Branch: main
SDX-1330
FileAdapter.h
Go to the documentation of this file.
1#ifndef Cpl_Persistent_File_Adapter_h_
2#define Cpl_Persistent_File_Adapter_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
17
18///
19namespace Cpl {
20///
21namespace Persistent {
22
23/** This concrete class implements the RegionMedia interface using the
24 Cpl::Io::File interfaces. Each instance of this class uses a single file
25 as the storage media. It is the responsibility of the application to ensure
26 that each instance has a unique file name
27 */
29{
30public:
31 /** Constructor.
32 */
33 FileAdapter( const char* fileName, size_t regionStartAddress, size_t regionLen ) noexcept;
34
35public:
36 /// See Cpl::Persistent::RegionMedia
37 void start( Cpl::Dm::MailboxServer& myMbox ) noexcept;
38
39 /// See Cpl::Persistent::RegionMedia
40 void stop() noexcept;
41
42 /// See Cpl::Persistent::RegionMedia
43 bool write( size_t offset, const void* srcData, size_t srcLen ) noexcept;
44
45 /// See Cpl::Persistent::RegionMedia
46 size_t read( size_t offset, void* dstBuffer, size_t bytesToRead ) noexcept;
47
48
49protected:
50 /// Remember my file name
51 const char* m_fileName;
52};
53
54}; // end namespaces
55};
56#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 Cpl::Io::File interfaces.
Definition FileAdapter.h:29
bool write(size_t offset, const void *srcData, size_t srcLen) noexcept
See Cpl::Persistent::RegionMedia.
size_t read(size_t offset, void *dstBuffer, size_t bytesToRead) noexcept
See Cpl::Persistent::RegionMedia.
void stop() noexcept
See Cpl::Persistent::RegionMedia.
const char * m_fileName
Remember my file name.
Definition FileAdapter.h:51
FileAdapter(const char *fileName, size_t regionStartAddress, size_t regionLen) noexcept
Constructor.
void start(Cpl::Dm::MailboxServer &myMbox) noexcept
See Cpl::Persistent::RegionMedia.
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