mirror of
https://github.com/eledio-devices/thirdparty-littlefs.git
synced 2025-11-01 08:48:31 +01:00
WIP added hacky taped on inline files
This commit is contained in:
93
lfs.c
93
lfs.c
@@ -24,7 +24,7 @@ static int lfs_cache_read(lfs_t *lfs, lfs_cache_t *rcache,
|
|||||||
const lfs_cache_t *pcache, lfs_block_t block,
|
const lfs_cache_t *pcache, lfs_block_t block,
|
||||||
lfs_off_t off, void *buffer, lfs_size_t size) {
|
lfs_off_t off, void *buffer, lfs_size_t size) {
|
||||||
uint8_t *data = buffer;
|
uint8_t *data = buffer;
|
||||||
LFS_ASSERT(block < lfs->cfg->block_count);
|
//LFS_ASSERT(block < lfs->cfg->block_count); TODO reintroduce :/
|
||||||
|
|
||||||
while (size > 0) {
|
while (size > 0) {
|
||||||
if (pcache && block == pcache->block && off >= pcache->off &&
|
if (pcache && block == pcache->block && off >= pcache->off &&
|
||||||
@@ -149,7 +149,7 @@ static int lfs_cache_prog(lfs_t *lfs, lfs_cache_t *pcache,
|
|||||||
lfs_cache_t *rcache, lfs_block_t block,
|
lfs_cache_t *rcache, lfs_block_t block,
|
||||||
lfs_off_t off, const void *buffer, lfs_size_t size) {
|
lfs_off_t off, const void *buffer, lfs_size_t size) {
|
||||||
const uint8_t *data = buffer;
|
const uint8_t *data = buffer;
|
||||||
LFS_ASSERT(block < lfs->cfg->block_count);
|
//LFS_ASSERT(block < lfs->cfg->block_count); TODO reintroduce :/
|
||||||
|
|
||||||
while (size > 0) {
|
while (size > 0) {
|
||||||
if (block == pcache->block && off >= pcache->off &&
|
if (block == pcache->block && off >= pcache->off &&
|
||||||
@@ -851,7 +851,7 @@ static int lfs_dir_update(lfs_t *lfs, lfs_dir_t *dir,
|
|||||||
}
|
}
|
||||||
|
|
||||||
static int lfs_dir_next(lfs_t *lfs, lfs_dir_t *dir, lfs_entry_t *entry) {
|
static int lfs_dir_next(lfs_t *lfs, lfs_dir_t *dir, lfs_entry_t *entry) {
|
||||||
while (dir->off + sizeof(entry->d) > (0x7fffffff & dir->d.size)-4) {
|
while (dir->off >= (0x7fffffff & dir->d.size)-4) {
|
||||||
if (!(0x80000000 & dir->d.size)) {
|
if (!(0x80000000 & dir->d.size)) {
|
||||||
entry->off = dir->off;
|
entry->off = dir->off;
|
||||||
return LFS_ERR_NOENT;
|
return LFS_ERR_NOENT;
|
||||||
@@ -942,8 +942,8 @@ static int lfs_dir_find(lfs_t *lfs, lfs_dir_t *dir,
|
|||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (((0x7f & entry->d.type) != (LFS_STRUCT_CTZ | LFS_TYPE_REG) &&
|
if (((0xf & entry->d.type) != LFS_TYPE_REG &&
|
||||||
(0x7f & entry->d.type) != (LFS_STRUCT_DIR | LFS_TYPE_DIR)) ||
|
(0xf & entry->d.type) != LFS_TYPE_DIR) ||
|
||||||
entry->d.nlen != pathlen) {
|
entry->d.nlen != pathlen) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
@@ -1126,8 +1126,8 @@ int lfs_dir_read(lfs_t *lfs, lfs_dir_t *dir, struct lfs_info *info) {
|
|||||||
return (err == LFS_ERR_NOENT) ? 0 : err;
|
return (err == LFS_ERR_NOENT) ? 0 : err;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((0x7f & entry.d.type) != (LFS_STRUCT_CTZ | LFS_TYPE_REG) &&
|
if ((0xf & entry.d.type) != LFS_TYPE_REG &&
|
||||||
(0x7f & entry.d.type) != (LFS_STRUCT_DIR | LFS_TYPE_DIR)) {
|
(0xf & entry.d.type) != LFS_TYPE_DIR) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1149,8 +1149,10 @@ int lfs_dir_read(lfs_t *lfs, lfs_dir_t *dir, struct lfs_info *info) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
info->type = 0xf & entry.d.type;
|
info->type = 0xf & entry.d.type;
|
||||||
if (info->type == LFS_TYPE_REG) {
|
if (entry.d.type == (LFS_STRUCT_CTZ | LFS_TYPE_REG)) {
|
||||||
info->size = entry.d.u.file.size;
|
info->size = entry.d.u.file.size;
|
||||||
|
} else if (entry.d.type == (LFS_STRUCT_INLINE | LFS_TYPE_REG)) {
|
||||||
|
info->size = entry.d.elen;
|
||||||
}
|
}
|
||||||
|
|
||||||
int err = lfs_bd_read(lfs, dir->pair[0],
|
int err = lfs_bd_read(lfs, dir->pair[0],
|
||||||
@@ -1424,18 +1426,16 @@ int lfs_file_open(lfs_t *lfs, lfs_file_t *file,
|
|||||||
}
|
}
|
||||||
|
|
||||||
// create entry to remember name
|
// create entry to remember name
|
||||||
entry.d.type = LFS_STRUCT_CTZ | LFS_TYPE_REG;
|
entry.d.type = LFS_STRUCT_INLINE | LFS_TYPE_REG;
|
||||||
entry.d.elen = sizeof(entry.d) - 4;
|
entry.d.elen = 0;
|
||||||
entry.d.alen = 0;
|
entry.d.alen = 0;
|
||||||
entry.d.nlen = strlen(path);
|
entry.d.nlen = strlen(path);
|
||||||
entry.d.u.file.head = 0xffffffff;
|
|
||||||
entry.d.u.file.size = 0;
|
|
||||||
entry.size = 4 + entry.d.elen + entry.d.alen + entry.d.nlen;
|
entry.size = 4 + entry.d.elen + entry.d.alen + entry.d.nlen;
|
||||||
|
|
||||||
err = lfs_dir_append(lfs, &cwd, &entry,
|
err = lfs_dir_append(lfs, &cwd, &entry,
|
||||||
&(struct lfs_region){
|
&(struct lfs_region){
|
||||||
0, +sizeof(entry.d),
|
0, +4,
|
||||||
lfs_commit_mem, &entry.d, sizeof(entry.d),
|
lfs_commit_mem, &entry.d, 4,
|
||||||
&(struct lfs_region){
|
&(struct lfs_region){
|
||||||
0, +entry.d.nlen,
|
0, +entry.d.nlen,
|
||||||
lfs_commit_mem, path, entry.d.nlen}});
|
lfs_commit_mem, path, entry.d.nlen}});
|
||||||
@@ -1481,6 +1481,20 @@ int lfs_file_open(lfs_t *lfs, lfs_file_t *file,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// load inline files
|
||||||
|
if ((0x70 & entry.d.type) == LFS_STRUCT_INLINE) {
|
||||||
|
file->head = 0xffffffff;
|
||||||
|
file->size = entry.d.elen;
|
||||||
|
file->flags |= LFS_F_INLINE;
|
||||||
|
err = lfs_bd_read(lfs, cwd.pair[0],
|
||||||
|
entry.off + 4,
|
||||||
|
file->cache.buffer, file->size);
|
||||||
|
if (err) {
|
||||||
|
lfs_free(file->cache.buffer);
|
||||||
|
return err;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// add to list of files
|
// add to list of files
|
||||||
file->next = lfs->files;
|
file->next = lfs->files;
|
||||||
lfs->files = file;
|
lfs->files = file;
|
||||||
@@ -1556,6 +1570,20 @@ relocate:
|
|||||||
}
|
}
|
||||||
|
|
||||||
static int lfs_file_flush(lfs_t *lfs, lfs_file_t *file) {
|
static int lfs_file_flush(lfs_t *lfs, lfs_file_t *file) {
|
||||||
|
if (file->flags & LFS_F_INLINE) {
|
||||||
|
// do nothing since we won't need the cache for anything else
|
||||||
|
if (file->flags & LFS_F_READING) {
|
||||||
|
file->flags &= ~LFS_F_READING;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (file->flags & LFS_F_WRITING) {
|
||||||
|
file->flags &= ~LFS_F_WRITING;
|
||||||
|
file->flags |= LFS_F_DIRTY;
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
if (file->flags & LFS_F_READING) {
|
if (file->flags & LFS_F_READING) {
|
||||||
// just drop read cache
|
// just drop read cache
|
||||||
file->cache.block = 0xffffffff;
|
file->cache.block = 0xffffffff;
|
||||||
@@ -1649,20 +1677,35 @@ int lfs_file_sync(lfs_t *lfs, lfs_file_t *file) {
|
|||||||
if (err) {
|
if (err) {
|
||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
|
LFS_ASSERT((0xf & entry.d.type) == LFS_TYPE_REG);
|
||||||
|
|
||||||
LFS_ASSERT(entry.d.type == (LFS_STRUCT_CTZ | LFS_TYPE_REG));
|
if (file->flags & LFS_F_INLINE) {
|
||||||
|
file->size = lfs_max(file->pos, file->size);
|
||||||
|
lfs_ssize_t diff = file->size - entry.d.elen;
|
||||||
|
entry.d.elen = file->size;
|
||||||
|
|
||||||
|
err = lfs_dir_update(lfs, &cwd, &entry,
|
||||||
|
&(struct lfs_region){
|
||||||
|
0, 0,
|
||||||
|
lfs_commit_mem, &entry.d, 4,
|
||||||
|
&(struct lfs_region){
|
||||||
|
4, diff,
|
||||||
|
lfs_commit_mem, file->cache.buffer, file->size}});
|
||||||
|
if (err) {
|
||||||
|
return err;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
entry.d.u.file.head = file->head;
|
entry.d.u.file.head = file->head;
|
||||||
entry.d.u.file.size = file->size;
|
entry.d.u.file.size = file->size;
|
||||||
|
|
||||||
lfs_entry_tole32(&entry.d);
|
|
||||||
err = lfs_dir_update(lfs, &cwd, &entry,
|
err = lfs_dir_update(lfs, &cwd, &entry,
|
||||||
&(struct lfs_region){
|
&(struct lfs_region){
|
||||||
0, 0,
|
0, 0,
|
||||||
lfs_commit_mem, &entry.d, sizeof(entry.d)});
|
lfs_commit_mem, &entry.d, sizeof(entry.d)});
|
||||||
lfs_entry_fromle32(&entry.d);
|
|
||||||
if (err) {
|
if (err) {
|
||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
file->flags &= ~LFS_F_DIRTY;
|
file->flags &= ~LFS_F_DIRTY;
|
||||||
}
|
}
|
||||||
@@ -1699,12 +1742,17 @@ lfs_ssize_t lfs_file_read(lfs_t *lfs, lfs_file_t *file,
|
|||||||
// check if we need a new block
|
// check if we need a new block
|
||||||
if (!(file->flags & LFS_F_READING) ||
|
if (!(file->flags & LFS_F_READING) ||
|
||||||
file->off == lfs->cfg->block_size) {
|
file->off == lfs->cfg->block_size) {
|
||||||
|
if (!(file->flags & LFS_F_INLINE)) {
|
||||||
int err = lfs_ctz_find(lfs, &file->cache, NULL,
|
int err = lfs_ctz_find(lfs, &file->cache, NULL,
|
||||||
file->head, file->size,
|
file->head, file->size,
|
||||||
file->pos, &file->block, &file->off);
|
file->pos, &file->block, &file->off);
|
||||||
if (err) {
|
if (err) {
|
||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
file->block = 0xffffffff;
|
||||||
|
file->off = 0;
|
||||||
|
}
|
||||||
|
|
||||||
file->flags |= LFS_F_READING;
|
file->flags |= LFS_F_READING;
|
||||||
}
|
}
|
||||||
@@ -1761,9 +1809,16 @@ lfs_ssize_t lfs_file_write(lfs_t *lfs, lfs_file_t *file,
|
|||||||
}
|
}
|
||||||
|
|
||||||
while (nsize > 0) {
|
while (nsize > 0) {
|
||||||
|
//printf("pos %d\n", file->pos + nsize);
|
||||||
|
// TODO combine with block allocation?
|
||||||
|
if (file->pos + nsize >= LFS_INLINE_MAX) {
|
||||||
|
file->flags &= ~LFS_F_INLINE;
|
||||||
|
}
|
||||||
|
|
||||||
// check if we need a new block
|
// check if we need a new block
|
||||||
if (!(file->flags & LFS_F_WRITING) ||
|
if (!(file->flags & LFS_F_WRITING) ||
|
||||||
file->off == lfs->cfg->block_size) {
|
file->off == lfs->cfg->block_size) {
|
||||||
|
if (!(file->flags & LFS_F_INLINE)) {
|
||||||
if (!(file->flags & LFS_F_WRITING) && file->pos > 0) {
|
if (!(file->flags & LFS_F_WRITING) && file->pos > 0) {
|
||||||
// find out which block we're extending from
|
// find out which block we're extending from
|
||||||
int err = lfs_ctz_find(lfs, &file->cache, NULL,
|
int err = lfs_ctz_find(lfs, &file->cache, NULL,
|
||||||
@@ -1787,6 +1842,10 @@ lfs_ssize_t lfs_file_write(lfs_t *lfs, lfs_file_t *file,
|
|||||||
file->flags |= LFS_F_ERRED;
|
file->flags |= LFS_F_ERRED;
|
||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
file->block = 0xffffffff;
|
||||||
|
file->off = 0;
|
||||||
|
}
|
||||||
|
|
||||||
file->flags |= LFS_F_WRITING;
|
file->flags |= LFS_F_WRITING;
|
||||||
}
|
}
|
||||||
|
|||||||
6
lfs.h
6
lfs.h
@@ -55,6 +55,10 @@ typedef uint32_t lfs_block_t;
|
|||||||
#define LFS_NAME_MAX 255
|
#define LFS_NAME_MAX 255
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifndef LFS_INLINE_MAX
|
||||||
|
#define LFS_INLINE_MAX 255
|
||||||
|
#endif
|
||||||
|
|
||||||
// Possible error codes, these are negative to allow
|
// Possible error codes, these are negative to allow
|
||||||
// valid positive return values
|
// valid positive return values
|
||||||
enum lfs_error {
|
enum lfs_error {
|
||||||
@@ -82,6 +86,7 @@ enum lfs_type {
|
|||||||
// on disk structure
|
// on disk structure
|
||||||
LFS_STRUCT_CTZ = 0x10,
|
LFS_STRUCT_CTZ = 0x10,
|
||||||
LFS_STRUCT_DIR = 0x20,
|
LFS_STRUCT_DIR = 0x20,
|
||||||
|
LFS_STRUCT_INLINE = 0x30,
|
||||||
LFS_STRUCT_MOVED = 0x80,
|
LFS_STRUCT_MOVED = 0x80,
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -101,6 +106,7 @@ enum lfs_open_flags {
|
|||||||
LFS_F_WRITING = 0x20000, // File has been written since last flush
|
LFS_F_WRITING = 0x20000, // File has been written since last flush
|
||||||
LFS_F_READING = 0x40000, // File has been read since last flush
|
LFS_F_READING = 0x40000, // File has been read since last flush
|
||||||
LFS_F_ERRED = 0x80000, // An error occured during write
|
LFS_F_ERRED = 0x80000, // An error occured during write
|
||||||
|
LFS_F_INLINE = 0x100000, // Currently inlined in directory entry
|
||||||
};
|
};
|
||||||
|
|
||||||
// File seek flags
|
// File seek flags
|
||||||
|
|||||||
Reference in New Issue
Block a user