GM6000 Digital Heater Controller Branch: main
SDX-1330
Gang.h
Go to the documentation of this file.
1#ifndef Driver_NV_Gang_h_
2#define Driver_NV_Gang_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
15
16#include "Driver/NV/Api.h"
17#include <stdint.h>
18
19
20
21
22///
23namespace Driver {
24///
25namespace NV {
26
27
28/** This class implements the Non-volatile storage driver using a collection
29 of NV drivers to provide a 'flat address' space that spans multiple
30 discrete storage chips/media.
31
32 The individual drivers/nv-storage-instance can be different sizes and
33 different physical media.
34
35 The interface itself is NOT thread safe. It is the responsibility of
36 the users/clients of the driver to handle any threading issues.
37 */
38class Gang : public Driver::NV::Api
39{
40public:
41
42public:
43 /** Constructor. The 'drivers' argument is a variable length array of
44 pointers to a concrete NV drivers. The last entry in the array must
45 be a nullptr (i.e. end-of-list marker)
46 */
47 Gang( Api* drivers[] );
48
49public:
50 /// See Driver::NV::Api
51 bool start() noexcept;
52
53 /// See Driver::NV::Api
54 void stop() noexcept;
55
56 /// See Driver::NV::Api
57 bool write( size_t dstOffset, const void* srcData, size_t numBytesToWrite ) noexcept;
58
59 /// See Driver::NV::Api
60 bool read( size_t srcOffset, void* dstData, size_t numBytesToRead ) noexcept;
61
62 /** See Driver::NV::Api. The number of pages is based on the smallest
63 page size from the various ganged drivers that fits within the total
64 available space. When the ganged drivers have pages size that are not
65 multiples of each other, the returned value can be just approximate
66 number of pages.
67 */
68 size_t getNumPages() const noexcept;
69
70 /** See Driver::NV::Api. The reported page size is the smallest page size
71 from the various ganged drivers.
72 */
73 size_t getPageSize() const noexcept;
74
75 /** See Driver::NV::Api. Reports the total available storage size. This
76 method accurately returns the total amount of storage.
77 */
78 size_t getTotalSize() const noexcept;
79
80protected:
81 /// Helper method to read data
82 bool driverRead( Api** drivers,
83 size_t normalizedSrcOffset,
84 uint8_t*& dstData,
85 size_t& numBytesToRead ) noexcept;
86
87 /// Helper method to write data
88 bool driverWrite( Api** drivers,
89 size_t normalizedDstOffset,
90 const uint8_t*& srcData,
91 size_t& numBytesToWrite ) noexcept;
92
93
94protected:
95 /// List of drivers
97
98 /// Number of pages
99 size_t m_numPages;
100
101 /// Page size
103
104 /// Total size
106
107 /// Started state
109};
110
111
112
113
114}; // end namespaces
115};
116#endif // end header latch
This class defines the interface for a platform independent Non-volatile storage driver.
Definition Api.h:35
This class implements the Non-volatile storage driver using a collection of NV drivers to provide a '...
Definition Gang.h:39
void stop() noexcept
See Driver::NV::Api.
size_t getTotalSize() const noexcept
See Driver::NV::Api.
bool start() noexcept
See Driver::NV::Api.
Api ** m_drivers
List of drivers.
Definition Gang.h:96
size_t m_pageSize
Page size.
Definition Gang.h:102
bool m_started
Started state.
Definition Gang.h:108
size_t getNumPages() const noexcept
See Driver::NV::Api.
size_t m_totalSize
Total size.
Definition Gang.h:105
bool driverRead(Api **drivers, size_t normalizedSrcOffset, uint8_t *&dstData, size_t &numBytesToRead) noexcept
Helper method to read data.
bool write(size_t dstOffset, const void *srcData, size_t numBytesToWrite) noexcept
See Driver::NV::Api.
bool read(size_t srcOffset, void *dstData, size_t numBytesToRead) noexcept
See Driver::NV::Api.
bool driverWrite(Api **drivers, size_t normalizedDstOffset, const uint8_t *&srcData, size_t &numBytesToWrite) noexcept
Helper method to write data.
size_t m_numPages
Number of pages.
Definition Gang.h:99
size_t getPageSize() const noexcept
See Driver::NV::Api.
Gang(Api *drivers[])
Constructor.
namespace