GM6000 Digital Heater Controller Branch: main
SDX-1330
RegionMedia.h
Go to the documentation of this file.
1#ifndef Cpl_Persistent_Region_Media_h_
2#define Cpl_Persistent_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
18
19///
20namespace Cpl {
21///
22namespace Persistent {
23
24
25/** This mostly abstract class defines the operations that can be performed on
26 a persistent media. In addition there is concept of a persistent media
27 being dividing into non-overlapping regions. Each Region has a starting
28 offset, and length (in bytes) of the region. All read/write operations
29 are relative the start of the region, i.e. offset zero is first byte of
30 the region; offset 9 is the tenth byte in the region.
31 */
33{
34public:
35 /** This method is to start/initialize the Region. It is typically only
36 called once at the startup of the application. However, start() can be
37 called after a previous call to the stop() method.
38
39 This method is called when the corresponding Chunk instance is 'started'
40
41 The 'myMbox' is a reference to the RecordServer's ITC mailbox, i.e. the
42 mailbox for the thread that the Record executes in. The 'myEventLoop'
43 is a reference to the RecordServer's Event Loop.
44 */
45 virtual void start( Cpl::Dm::MailboxServer& myMbox ) noexcept = 0;
46
47 /** This method is to stop/shutdown the Region. It is typically only
48 called once during an orderly shutdown of the application. However,
49 start() can be after a previous call to the stop() method.
50 */
51 virtual void stop() noexcept = 0;
52
53
54public:
55 /** This method writes 'srcLen' bytes to the media at the specified offset.
56 The offset is relative to the start of the Region's start address.
57
58 The method return true of the write operation was successful, else false
59 is returned.
60 */
61 virtual bool write( size_t offset, const void* srcData, size_t srcLen ) noexcept = 0;
62
63 /** This method reads 'bytesToRead' bytes from the media at the specified
64 offset. The offset is relative to the start of the Region's start
65 address.
66
67 The method returns the number of bytes read. A return value of ZERO
68 indicates that an error occurred.
69 */
70 virtual size_t read( size_t offset, void* dstBuffer, size_t bytesToRead ) noexcept = 0;
71
72
73public:
74 /// Returns the Region's starting address
75 virtual size_t getStartAddress() const { return m_startAddress; };
76
77 /// Returns the Region's length in bytes
78 virtual size_t getRegionLength() const { return m_regionLength; };
79
80
81public:
82 /// Virtual destructor
83 virtual ~RegionMedia() {}
84
85
86protected:
87 /// Constructor. Note: A child class is required
88 RegionMedia( size_t startAddress, size_t regionLength ) :m_startAddress( startAddress ), m_regionLength( regionLength ) {}
89
90protected:
91 /// The Regions' starting address
93
94 /// The length, in bytes, of the region
96};
97
98
99}; // end namespaces
100};
101#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 mostly abstract class defines the operations that can be performed on a persistent media.
Definition RegionMedia.h:33
virtual ~RegionMedia()
Virtual destructor.
Definition RegionMedia.h:83
virtual size_t getStartAddress() const
Returns the Region's starting address.
Definition RegionMedia.h:75
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.
size_t m_regionLength
The length, in bytes, of the region.
Definition RegionMedia.h:95
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.
size_t m_startAddress
The Regions' starting address.
Definition RegionMedia.h:92
virtual size_t getRegionLength() const
Returns the Region's length in bytes.
Definition RegionMedia.h:78
RegionMedia(size_t startAddress, size_t regionLength)
Constructor. Note: A child class is required.
Definition RegionMedia.h:88
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20