GM6000 Digital Heater Controller Branch: main
SDX-1330
Api.h
Go to the documentation of this file.
1#ifndef Driver_NV_File_Cpl_Api_h_
2#define Driver_NV_File_Cpl_Api_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 "colony_config.h"
17#include "Driver/NV/Api.h"
18
19
20/// Number of Pages
21#ifndef OPTION_DRIVER_NV_FILE_CPL_NUM_PAGES
22#define OPTION_DRIVER_NV_FILE_CPL_NUM_PAGES 512
23#endif
24
25/// Number of bytes per page
26#ifndef OPTION_DRIVER_NV_FILE_CPL_BYTES_PER_PAGE
27#define OPTION_DRIVER_NV_FILE_CPL_BYTES_PER_PAGE 128
28#endif
29
30/** The filename to use as the physical storage
31 */
32#ifndef OPTION_DRIVER_NV_FILE_CPL_FILE_NAME
33#define OPTION_DRIVER_NV_FILE_CPL_FILE_NAME "eeprom.bin"
34#endif
35
36/** The value used to erase the physical storage
37 */
38#ifndef OPTION_DRIVER_NV_FILE_CPL_ERASED_VALUE
39#define OPTION_DRIVER_NV_FILE_CPL_ERASED_VALUE 0xFF
40#endif
41
42///
43namespace Driver {
44///
45namespace NV {
46///
47namespace File {
48///
49namespace Cpl {
50
51
52/** This class implements the Non-volatile storage driver using the Cpl::Io::File
53 interfaces.
54
55 The interface itself is NOT thread safe. It is the responsibility of
56 the users/clients of the driver to handle any threading issues.
57 */
58class Api : public Driver::NV::Api
59{
60public:
61 /// Constructor
63 size_t bytesPerPage = OPTION_DRIVER_NV_FILE_CPL_BYTES_PER_PAGE,
64 const char* filename = OPTION_DRIVER_NV_FILE_CPL_FILE_NAME );
65
66public:
67 /// See Driver::NV::Api
68 bool start() noexcept;
69
70 /// See Driver::NV::Api
71 void stop() noexcept;
72
73 /// See Driver::NV::Api
74 bool write( size_t dstOffset, const void* srcData, size_t numBytesToWrite ) noexcept;
75
76 /// See Driver::NV::Api
77 bool read( size_t srcOffset, void* dstData, size_t numBytesToRead ) noexcept;
78
79 /// See Driver::NV::Api
80 size_t getNumPages() const noexcept;
81
82 /// See Driver::NV::Api
83 size_t getPageSize() const noexcept;
84
85
86protected:
87 /// File name
88 const char* m_fname;
89
90 /// number of pages
91 size_t m_numPages;
92
93 /// bytes per page
94 size_t m_pageSize;
95
96 /// Actual storage size
98
99 /// Started state
101};
102
103
104
105
106}; // end namespaces
107};
108};
109};
110#endif // end header latch
#define OPTION_DRIVER_NV_FILE_CPL_NUM_PAGES
Number of Pages.
Definition Api.h:22
#define OPTION_DRIVER_NV_FILE_CPL_FILE_NAME
The filename to use as the physical storage.
Definition Api.h:33
#define OPTION_DRIVER_NV_FILE_CPL_BYTES_PER_PAGE
Number of bytes per page.
Definition Api.h:27
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 the Cpl::Io::File interfaces.
Definition Api.h:59
bool start() noexcept
See Driver::NV::Api.
bool read(size_t srcOffset, void *dstData, size_t numBytesToRead) noexcept
See Driver::NV::Api.
size_t getNumPages() const noexcept
See Driver::NV::Api.
bool m_started
Started state.
Definition Api.h:100
size_t m_numPages
number of pages
Definition Api.h:91
void stop() noexcept
See Driver::NV::Api.
size_t m_pageSize
bytes per page
Definition Api.h:94
Api(size_t numPages=OPTION_DRIVER_NV_FILE_CPL_NUM_PAGES, size_t bytesPerPage=OPTION_DRIVER_NV_FILE_CPL_BYTES_PER_PAGE, const char *filename=OPTION_DRIVER_NV_FILE_CPL_FILE_NAME)
Constructor.
size_t getPageSize() const noexcept
See Driver::NV::Api.
size_t m_totalSize
Actual storage size.
Definition Api.h:97
bool write(size_t dstOffset, const void *srcData, size_t numBytesToWrite) noexcept
See Driver::NV::Api.
const char * m_fname
File name.
Definition Api.h:88
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20
namespace