1#ifndef Cpl_Io_File_Littlefs_Api_h_
2#define Cpl_Io_File_Littlefs_Api_h_
15#include "colony_config.h"
16#include "littlefs/lfs.h"
20#ifndef OPTION_CPL_IO_FILE_LITTLEFS_MAX_CONCURRENT_FILES
21#define OPTION_CPL_IO_FILE_LITTLEFS_MAX_CONCURRENT_FILES 4
30#ifndef OPTION_CPL_IO_FILE_LITTLEFS_CACHE_SIZE
31#define OPTION_CPL_IO_FILE_LITTLEFS_CACHE_SIZE 32
35#ifndef OPTION_CPL_IO_FILE_LITTLEFS_MAX_VOLUMES
36#define OPTION_CPL_IO_FILE_LITTLEFS_MAX_VOLUMES 1
44#ifndef OPTION_CPL_IO_FILE_DIRLIST_MAX_DEPTH
45#define OPTION_CPL_IO_FILE_DIRLIST_MAX_DEPTH 4
71 typedef int ( *
readfn )(
const struct lfs_config* c, lfs_block_t block, lfs_off_t off,
void* buffer, lfs_size_t size );
74 typedef int ( *
progfn )(
const struct lfs_config* c, lfs_block_t block, lfs_off_t off,
const void* buffer, lfs_size_t size );
77 typedef int ( *
erasefn )(
const struct lfs_config* c, lfs_block_t block );
80 typedef int ( *
syncfn )(
const struct lfs_config* c );
116 lfs_size_t eraseSize,
117 lfs_size_t numEraseBlocks,
118 int32_t blockCycles = 500 ) noexcept;
121 Volume_T() noexcept { memset(
this, 0,
sizeof( *
this ) ); }
138 const char* volumeName =
nullptr,
139 bool usingMultipleVolumes =
false,
140 bool forceReformat =
false ) noexcept;
#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