GM6000 Digital Heater Controller Branch: main
SDX-1330
BlockDriverApi.h
Go to the documentation of this file.
1#ifndef Cpl_Io_File_Littlefs_BlockDriverApi_h_
2#define Cpl_Io_File_Littlefs_BlockDriverApi_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 "littlefs/lfs.h"
16
17
18///
19namespace Cpl {
20///
21namespace Io {
22///
23namespace File {
24///
25namespace Littlefs {
26
27
28/** This partial abstract class defines the interface for block drivers. The
29 class is also responsible for the actual littlefs callbacks and redirecting
30 the callbacks to a concrete instance of this class.
31
32 The class - and child classes - are only thread safe when LFS_THREADSAFE
33 is defined.
34 */
36{
37public:
38 /** This method is used start/initialize the block driver at run time. The
39 method MUST be called before it used by littlefs (i.e. BEFORE
40 Cpl::Io::File::Littlefs::initVolume() is called).
41
42 The method returns true if successful; else false is returned when an
43 error occurred. If false is returned, future read/prog/erse/sync calls
44 will always return a failure.
45 */
46 virtual bool start() noexcept = 0;
47
48 /** This method is used to stop/shutdown the block driver. The method MUST be
49 called when the block driver is no longer needed (i.e. AFTER
50 Cpl::Io::File::Littlefs::shutdownVolume() is called).
51 */
52 virtual void stop() noexcept = 0;
53
54
55public:
56 /// littlefs block driver read function (instance based)
57 virtual bool readfn( const struct lfs_config* c, lfs_block_t block, lfs_off_t off, void* buffer, lfs_size_t size ) noexcept = 0;
58
59 /// littlefs block driver prog function (instance based)
60 virtual bool progfn( const struct lfs_config* c, lfs_block_t block, lfs_off_t off, const void* buffer, lfs_size_t size ) noexcept = 0;
61
62 /// littlefs block driver erase function (instance based)
63 virtual bool erasefn( const struct lfs_config* c, lfs_block_t block ) noexcept = 0;
64
65 /// littlefs block driver sync function (instance based)
66 virtual bool syncfn( const struct lfs_config* c ) noexcept = 0;
67
68
69public:
70 /// Use this function when "registering" the block driver's read function
71 static int callback_readfn( const struct lfs_config* c, lfs_block_t block, lfs_off_t off, void* buffer, lfs_size_t size ) noexcept;
72
73 /// Use this function when "registering" the block driver's prog function
74 static int callback_progfn( const struct lfs_config* c, lfs_block_t block, lfs_off_t off, const void* buffer, lfs_size_t size ) noexcept;
75
76 /// Use this function when "registering" the block driver's erase function
77 static int callback_erasefn( const struct lfs_config* c, lfs_block_t block ) noexcept;
78
79 /// Use this function when "registering" the block driver's sync function
80 static int callback_syncfn( const struct lfs_config* c ) noexcept;
81};
82
83} // end namespace
84}
85}
86}
87#endif // end header latch
This partial abstract class defines the interface for block drivers.
Definition BlockDriverApi.h:36
virtual bool progfn(const struct lfs_config *c, lfs_block_t block, lfs_off_t off, const void *buffer, lfs_size_t size) noexcept=0
littlefs block driver prog function (instance based)
static int callback_readfn(const struct lfs_config *c, lfs_block_t block, lfs_off_t off, void *buffer, lfs_size_t size) noexcept
Use this function when "registering" the block driver's read function.
static int callback_syncfn(const struct lfs_config *c) noexcept
Use this function when "registering" the block driver's sync function.
static int callback_progfn(const struct lfs_config *c, lfs_block_t block, lfs_off_t off, const void *buffer, lfs_size_t size) noexcept
Use this function when "registering" the block driver's prog function.
virtual void stop() noexcept=0
This method is used to stop/shutdown the block driver.
virtual bool erasefn(const struct lfs_config *c, lfs_block_t block) noexcept=0
littlefs block driver erase function (instance based)
virtual bool readfn(const struct lfs_config *c, lfs_block_t block, lfs_off_t off, void *buffer, lfs_size_t size) noexcept=0
littlefs block driver read function (instance based)
virtual bool start() noexcept=0
This method is used start/initialize the block driver at run time.
virtual bool syncfn(const struct lfs_config *c) noexcept=0
littlefs block driver sync function (instance based)
static int callback_erasefn(const struct lfs_config *c, lfs_block_t block) noexcept
Use this function when "registering" the block driver's erase function.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20