Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/littlefs-project/littlefs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lfs.h
diff options
context:
space:
mode:
authorChristopher Haster <chaster@utexas.edu>2017-04-22 19:42:05 +0300
committerChristopher Haster <chaster@utexas.edu>2017-04-22 23:42:05 +0300
commit789286a25748649f46afebec6566d00763a0074e (patch)
treeec3970bd33da5077944f0c30736cfa8276b22b5e /lfs.h
parent3b9d6630c8fab475307d95824c368d45cd6ba41a (diff)
Simplified config
Before, the lfs had multiple paths to determine config options: - lfs_config struct passed during initialization - lfs_bd_info struct passed during block device initialization - compile time options This allowed different developers to provide their own needs to the filesystem, such as the block device capabilities and the higher level user's own tweaks. However, this comes with additional complexity and action required when the configurations are incompatible. For now, this has been reduced to all information (including block device function pointers) being passed through the lfs_config struct. We just defer more complicated handling of configuration options to the top level user. This simplifies configuration handling and gives the top level user the responsibility to handle configuration, which they probably would have wanted to do anyways.
Diffstat (limited to 'lfs.h')
-rw-r--r--lfs.h51
1 files changed, 40 insertions, 11 deletions
diff --git a/lfs.h b/lfs.h
index 743e2a9..505c60b 100644
--- a/lfs.h
+++ b/lfs.h
@@ -8,10 +8,9 @@
#define LFS_H
#include "lfs_config.h"
-#include "lfs_bd.h"
-// Data structures
+// The littefs constants
enum lfs_error {
LFS_ERROR_OK = 0,
LFS_ERROR_CORRUPT = -3,
@@ -41,23 +40,56 @@ enum lfs_open_flags {
};
+// Configuration provided during initialization of the littlefs
struct lfs_config {
- lfs_bd_t *bd;
- const struct lfs_bd_ops *bd_ops;
+ // Opaque user provided context
+ void *context;
+ // Read a region in a block
+ int (*read)(const struct lfs_config *c, lfs_block_t block,
+ lfs_off_t off, lfs_size_t size, void *buffer);
+
+ // Program a region in a block. The block must have previously
+ // been erased.
+ int (*prog)(const struct lfs_config *c, lfs_block_t block,
+ lfs_off_t off, lfs_size_t size, const void *buffer);
+
+ // Erase a block. A block must be erased before being programmed.
+ // The state of an erased block is undefined.
+ int (*erase)(const struct lfs_config *c, lfs_block_t block);
+
+ // Sync the state of the underlying block device
+ int (*sync)(const struct lfs_config *c);
+
+ // Minimum size of a read. This may be larger than the physical
+ // read size to cache reads from the block device.
lfs_size_t read_size;
+
+ // Minimum size of a program. This may be larger than the physical
+ // program size to cache programs to the block device.
lfs_size_t prog_size;
+ // Size of an erasable block.
lfs_size_t block_size;
+
+ // Number of erasable blocks on the device.
lfs_size_t block_count;
};
+// File info structure
struct lfs_info {
+ // Type of the file, either REG or DIR
uint8_t type;
+
+ // Size of the file, only valid for REG files
lfs_size_t size;
+
+ // Name of the file stored as a null-terminated string
char name[LFS_NAME_MAX+1];
};
+
+// Internal data structures
typedef struct lfs_entry {
lfs_block_t pair[2];
lfs_off_t off;
@@ -115,17 +147,12 @@ typedef struct lfs_superblock {
} d;
} lfs_superblock_t;
+
// Little filesystem type
typedef struct lfs {
- lfs_size_t read_size; // size of read
- lfs_size_t prog_size; // size of program
- lfs_size_t block_size; // size of erase (block size)
- lfs_size_t block_count; // number of erasable blocks
+ const struct lfs_config *cfg;
lfs_size_t words; // number of 32-bit words that can fit in a block
- lfs_bd_t *bd;
- const struct lfs_bd_ops *bd_ops;
-
lfs_block_t root[2];
struct {
lfs_block_t begin;
@@ -135,6 +162,7 @@ typedef struct lfs {
uint32_t lookahead[LFS_CFG_LOOKAHEAD/32];
} lfs_t;
+
// Functions
int lfs_format(lfs_t *lfs, const struct lfs_config *config);
int lfs_mount(lfs_t *lfs, const struct lfs_config *config);
@@ -160,4 +188,5 @@ lfs_ssize_t lfs_file_read(lfs_t *lfs, lfs_file_t *file,
int lfs_deorphan(lfs_t *lfs);
int lfs_traverse(lfs_t *lfs, int (*cb)(void*, lfs_block_t), void *data);
+
#endif