GM6000 Digital Heater Controller Branch: main
SDX-1330
Api.h
Go to the documentation of this file.
1#ifndef Cpl_Io_File_Littlefs_Api_h_
2#define Cpl_Io_File_Littlefs_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-2020 John T. Taylor
10 *
11 * Redistributions of the source code must retain the above copyright notice.
12 *----------------------------------------------------------------------------*/
13/** @file */
14
15#include "colony_config.h"
16#include "littlefs/lfs.h"
17#include <string.h>
18
19/** The maximum number of files that can be opened at one time */
20#ifndef OPTION_CPL_IO_FILE_LITTLEFS_MAX_CONCURRENT_FILES
21#define OPTION_CPL_IO_FILE_LITTLEFS_MAX_CONCURRENT_FILES 4
22#endif
23
24/** The size, in bytes, of the lfs 'cache buffers'. This size is used
25 for read, prog, lookahead, etc. buffers. The total amount of static allocated
26 memory will be:
27 (3 + OPTION_CPL_IO_FILE_LITTLEFS_MAX_CONCURRENT_FILES) * OPTION_CPL_IO_FILE_LITTLEFS_CACHE_SIZE
28
29 */
30#ifndef OPTION_CPL_IO_FILE_LITTLEFS_CACHE_SIZE
31#define OPTION_CPL_IO_FILE_LITTLEFS_CACHE_SIZE 32
32#endif
33
34/** The maximum number of volumes that can be mounted */
35#ifndef OPTION_CPL_IO_FILE_LITTLEFS_MAX_VOLUMES
36#define OPTION_CPL_IO_FILE_LITTLEFS_MAX_VOLUMES 1
37#endif
38
39/** Maximum support depth for directory traversal. Each level adds CPL_IO_FILE_MAX_NAME
40 bytes of memory to the size of the DirList_ class.
41
42 Note: CPL_IO_FILE_MAX_NAME is the max PATH+FILENAME length, not the max file name length
43 */
44#ifndef OPTION_CPL_IO_FILE_DIRLIST_MAX_DEPTH
45#define OPTION_CPL_IO_FILE_DIRLIST_MAX_DEPTH 4
46#endif
47
48
49///
50namespace Cpl {
51///
52namespace Io {
53///
54namespace File {
55///
56namespace Littlefs {
57
58/** This 'singleton' class is used to create and manage the littlefs file system.
59
60 The littlefs file system defaults to a single-threaded model, i.e. NOT
61 thread safe. If the LFS_THREAD_SAFE macro is defined, then the file system
62 will be thread safe.
63
64 See the README.txt file for additional information and limitations of the
65 littlefs file system.
66 */
67class Api
68{
69public:
70 /// Typedef for littlefs block driver read function
71 typedef int ( *readfn )( const struct lfs_config* c, lfs_block_t block, lfs_off_t off, void* buffer, lfs_size_t size );
72
73 /// Typedef for littlefs block driver prog function
74 typedef int ( *progfn )( const struct lfs_config* c, lfs_block_t block, lfs_off_t off, const void* buffer, lfs_size_t size );
75
76 /// Typedef for littlefs block driver erase function
77 typedef int ( *erasefn )( const struct lfs_config* c, lfs_block_t block );
78
79 /// Typedef for littlefs block driver sync function
80 typedef int ( *syncfn )( const struct lfs_config* c );
81
82public:
83 /** This structure defines the configuration and the underlying block driver
84 used for each volume instance. A volume maps one-to-one with physical
85 storage media, e.g. a SPI Data flash, EEPROM IC, etc.
86
87 Note: The filesystem supports 'mounting' multiple volumes. See the
88 README.txt file for additional information when using multiple
89 volumes
90 */
91 struct Volume_T
92 {
93 lfs_t fs; //!< The littlefs file system
94 lfs_config cfg; //!< The littlefs configuration
95 int32_t block_cycles; //!< Number of erase cycles before littlefs evicts metadata logs and moves. Suggested values are in the range 100-1000
96 uint8_t readBuffer[OPTION_CPL_IO_FILE_LITTLEFS_CACHE_SIZE]; //!< Read buffer. MUST be 'cacheSize' in size
97 uint8_t progBuffer[OPTION_CPL_IO_FILE_LITTLEFS_CACHE_SIZE]; //!< Program buffer. MUST be 'cacheSize' in size
98 uint8_t lookaheadBuffer[OPTION_CPL_IO_FILE_LITTLEFS_CACHE_SIZE]; //!< Lookahead buffer. MUST be 'cacheSize' in size
99 const char* volumeName; //!< The name of the volume. If multiple volumes are used, then each volume MUST have a unique name
100
101 /** Constructor. The argument list is the MINIMUM info required to create a volume
102 @param blockDriver Opaque context for the block driver. MUST be a unique instance each per volume
103 @param read Read a region in a block
104 @param prog Program a region in a block
105 @param erase Erase a block
106 @param sync Flush the block device (to its physical media)
107 @param eraseSize Size of an erasable block in bytes
108 @param numEraseBlocks Number of erasable blocks
109 @param blockCycles Number of erase cycles before littlefs evicts metadata logs and moves. Suggested range 100-1000
110 */
111 Volume_T( void* blockDriver,
112 readfn read,
113 progfn prog,
114 erasefn erase,
115 syncfn sync,
116 lfs_size_t eraseSize,
117 lfs_size_t numEraseBlocks,
118 int32_t blockCycles = 500 ) noexcept;
119
120 /// Default constructor. USE Wisely (see above constructor)
121 Volume_T() noexcept { memset( this, 0, sizeof( *this ) ); }
122 };
123
124public:
125 /** This method is used to initialize the file system. The method returns
126 zero if the file system is successfully initialized; else a littlefs
127 error code is returned (see xsrc\littlefs\lfs.h).
128
129 The method MUST be called before any CPL File IO operations are called
130
131 Multiple volumes can be initialized, but each volume must have its own
132 block driver instance. When initializing multiple volumes, the 'volumeName'
133 parameter is used (and MUST be non-null) to identify the volume. See
134 the README.txt file for additional information when using multiple
135 volumes.
136 */
137 static int initVolume( Volume_T& volumeToInit,
138 const char* volumeName = nullptr,
139 bool usingMultipleVolumes = false,
140 bool forceReformat = false ) noexcept;
141
142 /** This method is used to shutdown the file system. The method returns
143 zero if the file system is successfully shutdown; else a littlefs
144 error code is returned (see xsrc\littlefs\lfs.h).
145
146 The method should be called during an orderly shutdown of the
147 application. The method should be called for each volume that was
148 initialized.
149 */
150 static int shutdownVolume( Volume_T& volumeToShutdown ) noexcept;
151
152public:
153 /** This method returns the littlefs filesystem instance based on the
154 file/dir path name.
155
156 If the volume was not found, or the desired volume is not mounted, then
157 the method will return nullptr.
158
159 NOTE: If only one volume is used, then the method will always return the
160 the littlefs instance for that volume - regardless of the 'fsEntryName'
161 */
162 static lfs_t* getInstance( const char* fsEntryName );
163};
164
165} // end namespace
166}
167}
168}
169#endif // end header latch
#define OPTION_CPL_IO_FILE_LITTLEFS_CACHE_SIZE
The size, in bytes, of the lfs 'cache buffers'.
Definition Api.h:31
This 'singleton' class is used to create and manage the littlefs file system.
Definition Api.h:68
int(* progfn)(const struct lfs_config *c, lfs_block_t block, lfs_off_t off, const void *buffer, lfs_size_t size)
Typedef for littlefs block driver prog function.
Definition Api.h:74
static int initVolume(Volume_T &volumeToInit, const char *volumeName=nullptr, bool usingMultipleVolumes=false, bool forceReformat=false) noexcept
This method is used to initialize the file system.
int(* erasefn)(const struct lfs_config *c, lfs_block_t block)
Typedef for littlefs block driver erase function.
Definition Api.h:77
int(* syncfn)(const struct lfs_config *c)
Typedef for littlefs block driver sync function.
Definition Api.h:80
static lfs_t * getInstance(const char *fsEntryName)
This method returns the littlefs filesystem instance based on the file/dir path name.
int(* readfn)(const struct lfs_config *c, lfs_block_t block, lfs_off_t off, void *buffer, lfs_size_t size)
Typedef for littlefs block driver read function.
Definition Api.h:71
static int shutdownVolume(Volume_T &volumeToShutdown) noexcept
This method is used to shutdown the file system.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20
This structure defines the configuration and the underlying block driver used for each volume instanc...
Definition Api.h:92
uint8_t progBuffer[OPTION_CPL_IO_FILE_LITTLEFS_CACHE_SIZE]
Program buffer.
Definition Api.h:97
int32_t block_cycles
Number of erase cycles before littlefs evicts metadata logs and moves.
Definition Api.h:95
uint8_t lookaheadBuffer[OPTION_CPL_IO_FILE_LITTLEFS_CACHE_SIZE]
Lookahead buffer.
Definition Api.h:98
const char * volumeName
The name of the volume.
Definition Api.h:99
lfs_config cfg
The littlefs configuration.
Definition Api.h:94
uint8_t readBuffer[OPTION_CPL_IO_FILE_LITTLEFS_CACHE_SIZE]
Read buffer.
Definition Api.h:96
Volume_T(void *blockDriver, readfn read, progfn prog, erasefn erase, syncfn sync, lfs_size_t eraseSize, lfs_size_t numEraseBlocks, int32_t blockCycles=500) noexcept
Constructor.
lfs_t fs
The littlefs file system.
Definition Api.h:93