GM6000 Digital Heater Controller Branch: main
SDX-1330
BdFile.h
Go to the documentation of this file.
1#ifndef Cpl_Io_File_Littlefs__bdfile_BdFile_h_
2#define Cpl_Io_File_Littlefs__bdfile_BdFile_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"
17
18
19
20///
21namespace Cpl {
22///
23namespace Io {
24///
25namespace File {
26///
27namespace Littlefs {
28
29/** Concrete Block Driver that uses the Host's file system for the persistent
30 storage media. Linux/Posix and Windoze hosts are supported
31 */
32class BdFile : public BlockDriverApi
33{
34public:
35 /** Constructor. The 'fileName' is the name of the file that will be used
36 as the block device. The file will be created if it does not exist.
37 If the file does exist, it will be opened for read/write access. The
38 string must stay in scope for the life of the object.
39 */
40 BdFile( const char* fileName ) noexcept;
41
42 /// Destructor
43 ~BdFile() noexcept;
44
45
46public:
47 /// See Cpl::Io::File::BlockDriverApi
48 bool start() noexcept;
49
50 /// See Cpl::Io::File::BlockDriverApi
51 void stop() noexcept;
52
53
54public:
55 /// See Cpl::Io::Littlefs::BlockDriverApi
56 bool readfn( const struct lfs_config* c, lfs_block_t block, lfs_off_t off, void* buffer, lfs_size_t size ) noexcept;
57
58 /// See Cpl::Io::Littlefs::BlockDriverApi
59 bool progfn( const struct lfs_config* c, lfs_block_t block, lfs_off_t off, const void* buffer, lfs_size_t size ) noexcept;
60
61 /// See Cpl::Io::Littlefs::BlockDriverApi
62 bool erasefn( const struct lfs_config* c, lfs_block_t block ) noexcept;
63
64 /// See Cpl::Io::Littlefs::BlockDriverApi
65 bool syncfn( const struct lfs_config* c ) noexcept;
66
67protected:
68
69protected:
70 /// SPI driver
71 const char* m_fname;
72
73 /// File descriptor
74 int m_fd;
75
76 /// Started state
78};
79
80
81} // end namespace
82}
83}
84}
85#endif // end header latch
Concrete Block Driver that uses the Host's file system for the persistent storage media.
Definition BdFile.h:33
bool m_started
Started state.
Definition BdFile.h:77
~BdFile() noexcept
Destructor.
bool readfn(const struct lfs_config *c, lfs_block_t block, lfs_off_t off, void *buffer, lfs_size_t size) noexcept
See Cpl::Io::Littlefs::BlockDriverApi.
bool erasefn(const struct lfs_config *c, lfs_block_t block) noexcept
See Cpl::Io::Littlefs::BlockDriverApi.
void stop() noexcept
See Cpl::Io::File::BlockDriverApi.
bool progfn(const struct lfs_config *c, lfs_block_t block, lfs_off_t off, const void *buffer, lfs_size_t size) noexcept
See Cpl::Io::Littlefs::BlockDriverApi.
BdFile(const char *fileName) noexcept
Constructor.
bool syncfn(const struct lfs_config *c) noexcept
See Cpl::Io::Littlefs::BlockDriverApi.
const char * m_fname
SPI driver.
Definition BdFile.h:71
bool start() noexcept
See Cpl::Io::File::BlockDriverApi.
int m_fd
File descriptor.
Definition BdFile.h:74
This partial abstract class defines the interface for block drivers.
Definition BlockDriverApi.h:36
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20