GM6000 Digital Heater Controller Branch: main
SDX-1330
Private_.h
Go to the documentation of this file.
1#ifndef Cpl_Io_File_Littlefs_Private_h_
2#define Cpl_Io_File_Littlefs_Private_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 "Cpl/Memory/SPool.h"
18#include "Cpl/System/Mutex.h"
20
21
22///
23namespace Cpl {
24///
25namespace Io {
26///
27namespace File {
28///
29namespace Littlefs {
30
31/*----------------------------------------------------------------------------*/
32
33/*----------------------------------------------------------------------------*/
34/// This struct defines the memory need per opened file
36{
37 lfs_file_config fileCacheAndAttrs; //!< The file buffer cache and file attributes
38 lfs_file_t fileHdl; //!< The file handle
39 lfs_t* lfs; //!< Pointer to the file system that the file descriptor was opened on/for
41
42 /// Constructor
44 {
45 memset( this, 0, sizeof( *this ) );
46 this->fileCacheAndAttrs.buffer = memFileCacheBuffer;
47 }
48};
49
50
51// SINGLE-THREADED MEMORY POOL
52#ifndef LFS_THREADSAFE
53
54/** Memory pool for opened files. The class is NOT thread safe
55 */
57{
58public:
59 /// Constructor
61
62public:
63 /// Allocates memory for a file
64 void* allocate() { return m_pool.allocate( sizeof( FileDesc_T )); }
65
66 /// Frees memory for a file
67 void free( FileDesc_T& p ) { m_pool.release( &p ); }
68
69protected:
70 /// Memory pool
72};
73
74
75// CONCURRENT MEMORY POOL
76#else
77/// Expose the underlying mutex
78extern Cpl::System::Mutex g_fsmutex;
79
80/** This class is the same as 'FileMemoryPool' except that is thread safe
81 */
83{
84public:
85 /// Constructor
87
88public:
89 /// Allocates memory for a file
90 void* allocate()
91 {
92 Cpl::System::Mutex::ScopeBlock lock( g_fsmutex );
93 return m_pool.allocate( sizeof( FileDesc_T ) );
94 }
95
96 /// Frees memory for a file
97 void free( FileDesc_T& p )
98 {
99 Cpl::System::Mutex::ScopeBlock lock( g_fsmutex );
100 m_pool.release( &p );
101 }
102
103protected:
104 /// Memory pool
106};
107#endif // end !LFS_THREADSAFE
108
109/*----------------------------------------------------------------------------*/
110/// Expose the memory pool instance
111extern FileMemoryPool g_fileMemoryPool;
112
113} // end namespace
114}
115}
116}
117#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
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