GM6000 Digital Heater Controller Branch: main
SDX-1330
Api.h
Go to the documentation of this file.
1#ifndef Driver_NV_Api_h_
2#define Driver_NV_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 <stdlib.h>
17
18///
19namespace Driver {
20///
21namespace NV {
22
23
24/** This class defines the interface for a platform independent Non-volatile
25 storage driver. Only basic read/write operations are defined. How the NV
26 storage is used is left the application and/or upper layers
27
28 The Interface assumes a paradigm of the NV storage is broken up into N
29 pages where each page contains M bytes.
30
31 The interface itself is NOT thread safe. It is the responsibility of
32 the users/clients of the driver to handle any threading issues.
33 */
34class Api
35{
36public:
37 /** This method is used initialize/start the driver. To 'restart' the driver,
38 the application must call stop(), then start().
39
40 The method returns true if successful; else false is returned when an
41 error occurred. If false is returned, future read/write calls will always
42 return false.
43 */
44 virtual bool start() noexcept = 0;
45
46 /// This method is used to stop/shutdown the driver.
47 virtual void stop() noexcept = 0;
48
49public:
50 /** This method writes N bytes from 'srcData' starting at the storage offset
51 of 'dstOffset'. The application is responsible for ensuring that the
52 size 'srcData' is at least 'numBytesToWrite' in length.
53
54 This write() method itself is synchronous, but the physically writing of
55 the data to the NV storage is not guaranteed to synchronous, i.e. the
56 physical write operation can completed AFTER the write() method returns.
57 If a second write() call is made and the physical storage is still being
58 updated from the first write() call, the second call will wait until
59 the first physical write operation completes. There is no defined
60 semantics for the waiting (i.e. it could be a blocking wait or a busy
61 wait)
62
63 The method returns true if operation was successful; else false is
64 returned.
65 */
66 virtual bool write( size_t dstOffset, const void* srcData, size_t numBytesToWrite ) noexcept = 0;
67
68 /** This method reads N bytes starting at the storage offset of 'srcOffset'
69 and stores the bytes into 'dstData'. The application is responsible for
70 ensuring that the size 'dstData' is at least 'numBytesToRead' in length.
71
72 The method returns true if operation was successful; else false is
73 returned.
74 */
75 virtual bool read( size_t srcOffset, void* dstData, size_t numBytesToRead ) noexcept = 0;
76
77
78public:
79 /** This method returns the total number of NV storage pages. A Page is
80 defined as the boundary/maximum amount of data that can be written in
81 a single physical update of the NV storage
82
83 NOTE: ALWAYS use the getTotalSize() method for querying/determining the
84 total available storage size.
85 */
86 virtual size_t getNumPages() const noexcept = 0;
87
88 /** This method returns the NV storage page size. See getNumPages() for
89 more details about the definition of a page.
90
91 NOTE: ALWAYS use the getTotalSize() method for querying/determining the
92 total available storage size.
93 */
94 virtual size_t getPageSize() const noexcept = 0;
95
96 /** The method that returns the total storage size in bytes.
97
98 Note: This is canonical source of truth for the total available storage,
99 i.e, if the driver instance is a 'Gang' driver instance then
100 the method CAN return a different result from: getNumPages() * getPageSize()
101 */
102 virtual size_t getTotalSize() const noexcept { return getNumPages() * getPageSize(); }
103
104public:
105 /// Virtual destructor
106 virtual ~Api() {}
107};
108
109
110
111
112}; // end namespaces
113};
114#endif // end header latch
This class defines the interface for a platform independent Non-volatile storage driver.
Definition Api.h:35
virtual size_t getTotalSize() const noexcept
The method that returns the total storage size in bytes.
Definition Api.h:102
virtual bool start() noexcept=0
This method is used initialize/start the driver.
virtual bool read(size_t srcOffset, void *dstData, size_t numBytesToRead) noexcept=0
This method reads N bytes starting at the storage offset of 'srcOffset' and stores the bytes into 'ds...
virtual size_t getPageSize() const noexcept=0
This method returns the NV storage page size.
virtual void stop() noexcept=0
This method is used to stop/shutdown the driver.
virtual size_t getNumPages() const noexcept=0
This method returns the total number of NV storage pages.
virtual ~Api()
Virtual destructor.
Definition Api.h:106
virtual bool write(size_t dstOffset, const void *srcData, size_t numBytesToWrite) noexcept=0
This method writes N bytes from 'srcData' starting at the storage offset of 'dstOffset'.
namespace