1#ifndef Cpl_Io_File_Littlefs_Private_h_
2#define Cpl_Io_File_Littlefs_Private_h_
15#include "colony_config.h"
16#include "littlefs/lfs.h"
45 memset(
this, 0,
sizeof( *
this ) );
93 return m_pool.allocate(
sizeof( FileDesc_T ) );
97 void free( FileDesc_T& p )
#define OPTION_CPL_IO_FILE_LITTLEFS_CACHE_SIZE
The size, in bytes, of the lfs 'cache buffers'.
Definition Api.h:31
Memory pool for opened files.
Definition Private_.h:57
Cpl::Memory::SPool< FileDesc_T, OPTION_CPL_IO_FILE_LITTLEFS_MAX_CONCURRENT_FILES > m_pool
Memory pool.
Definition Private_.h:71
void free(FileDesc_T &p)
Frees memory for a file.
Definition Private_.h:67
void * allocate()
Allocates memory for a file.
Definition Private_.h:64
FileMemoryPool()
Constructor.
Definition Private_.h:60
This template class defines a concrete Allocator that STATICALLY allocates all of its Memory and can ...
Definition SPool.h:50
This concrete class provides a simple mechanism for providing mutex protection for a "scope block".
Definition Mutex.h:77
This mutex class defines the interface for a mutex that has "recursive" semantics.
Definition Mutex.h:33
FileMemoryPool g_fileMemoryPool
Expose the memory pool instance.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20
This struct defines the memory need per opened file.
Definition Private_.h:36
uint8_t memFileCacheBuffer[OPTION_CPL_IO_FILE_LITTLEFS_CACHE_SIZE]
The file cache buffer.
Definition Private_.h:40
lfs_file_config fileCacheAndAttrs
The file buffer cache and file attributes.
Definition Private_.h:37
lfs_file_t fileHdl
The file handle.
Definition Private_.h:38
lfs_t * lfs
Pointer to the file system that the file descriptor was opened on/for.
Definition Private_.h:39
FileDesc_T()
Constructor.
Definition Private_.h:43