X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;ds=inline;f=fs%2Fbattfs.h;h=247e058538752f867fb1aa5461bfd2f8928f7546;hb=10b8ef799ea20d9111f8800e387a79713b8a174b;hp=c155b61ee2e17a11e657cc550930d1267bb06499;hpb=285afbfe9583d4aeee8131cfe455e7739071da26;p=bertos.git diff --git a/fs/battfs.h b/fs/battfs.h index c155b61e..247e0585 100644 --- a/fs/battfs.h +++ b/fs/battfs.h @@ -44,6 +44,8 @@ #include // uintXX_t; STATIC_ASSERT #include // CPU_BITS_PER_CHAR #include +#include +#include typedef uint16_t fill_t; typedef fill_t pgaddr_t; @@ -196,13 +198,13 @@ typedef struct BattFsSuper */ pgcnt_t *page_array; - /** + /** * Lowest free page counter. * This is the counter of the first availble free page. */ mark_t free_start; - /** + /** * Highest free page counter. * This value is the next to be used to mark a block as free. */ @@ -211,10 +213,35 @@ typedef struct BattFsSuper disk_size_t disk_size; ///< Size of the disk, in bytes (page_count * page_size). disk_size_t free_bytes; ///< Free space on the disk. + List file_opened_list; ///< List used to keep trace of open files. /* TODO add other fields. */ } BattFsSuper; +typedef uint8_t filemode_t; ///< Type for file open. + +/** + * Describe a BattFs file usign a KFile. + */ +typedef struct KFileBattFs +{ + KFile fd; ///< KFile context + Node link; ///< Link for inserting in opened file list + inode_t inode; ///< inode of the opened file + BattFsSuper *disk; ///< Disk context + filemode_t mode; ///< File open mode +} KFileBattFs; + +INLINE KFileBattFs * KFILEBATTFS(KFile *fd) +{ + ASSERT(fd->_type == KFT_BATTFS); + return (KFileBattFs *)fd; +} + bool battfs_init(struct BattFsSuper *d); +bool battfs_close(struct BattFsSuper *disk); + +bool battfs_fileopen(BattFsSuper *disk, KFileBattFs *fd, inode_t inode, filemode_t mode); + bool battfs_writeTestBlock(struct BattFsSuper *disk, pgcnt_t page, inode_t inode, seq_t seq, fill_t fill, pgoff_t pgoff, mark_t mark); #endif /* FS_BATTFS_H */