Change fcs to rotating_t; reformat.
[bertos.git] / fs / battfs.h
1 /**
2  * \file
3  * <!--
4  * This file is part of BeRTOS.
5  *
6  * Bertos is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  *
20  * As a special exception, you may use this file as part of a free software
21  * library without restriction.  Specifically, if other files instantiate
22  * templates or use macros or inline functions from this file, or you compile
23  * this file and link it with other files to produce an executable, this
24  * file does not by itself cause the resulting executable to be covered by
25  * the GNU General Public License.  This exception does not however
26  * invalidate any other reasons why the executable file might be covered by
27  * the GNU General Public License.
28  *
29  * Copyright 2007 Develer S.r.l. (http://www.develer.com/)
30  *
31  * -->
32  *
33  * \version $Id:$
34  *
35  * \author Francesco Sacchi <batt@develer.com>
36  *
37  * \brief BattFS: a filesystem for embedded platforms (interface).
38  * TODO: Add detailed filesystem description.
39  */
40
41 #ifndef FS_BATTFS_H
42 #define FS_BATTFS_H
43
44 #include <cfg/compiler.h> // uintXX_t; STATIC_ASSERT
45 #include <cpu/types.h> // CPU_BITS_PER_CHAR
46 #include <algo/rotating_hash.h>
47
48 typedef uint16_t fill_t;
49 typedef fill_t   pgaddr_t;
50 typedef uint16_t pgoff_t;
51 typedef pgoff_t  mark_t;
52 typedef uint8_t  inode_t;
53 typedef uint8_t  seq_t;
54 typedef rotating_t fcs_t;
55
56 /**
57  * BattFS page header.
58  * \note fields order is chosen to comply
59  * with CPU alignment.
60  */
61 typedef struct BattFsPageHeader
62 {
63         inode_t  inode; ///< File inode (file identifier).
64         seq_t    seq;   ///< Page sequence number.
65         mark_t   mark;  ///< Marker used to keep trace of free/used pages.
66         pgoff_t  pgoff; ///< Page offset inside file.
67         fill_t   fill;  ///< Filled bytes in page.
68         uint16_t rfu;   ///< Reserved for future use, 0xFFFF for now.
69
70         /**
71          * FCS (Frame Check Sequence) of the page header.
72          * \note This field must be the last one!
73          *       This is needed because if the page is only partially
74          *       written, we can use this to detect it.
75          */
76         fcs_t fcs;
77 } BattFsPageHeader;
78
79 /**
80  * Max number of files.
81  */
82 #define BATTFS_MAX_FILES (1 << (CPU_BITS_PER_CHAR * sizeof(inode_t)))
83
84 /* Ensure structure has no padding added */
85 STATIC_ASSERT(sizeof(BattFsPageHeader) == 12);
86
87 /* Fwd decl */
88 struct BattFsSuper;
89
90 /**
91  * Type for disk page addressing.
92  */
93 typedef uint16_t pgcnt_t;
94
95 /**
96  * Type interface for disk init function.
97  * \return true if all is ok, false otherwise.
98  */
99 typedef bool (*disk_open_t) (struct BattFsSuper *d);
100
101 /**
102  * Type interface for disk page read function.
103  * \a page is the page address, \a addr the address inside the page,
104  * \a size the lenght to be read.
105  * \return the number of bytes read.
106  */
107 typedef size_t (*disk_page_read_t) (struct BattFsSuper *d, pgcnt_t page, pgaddr_t addr, void *buf, size_t);
108
109 /**
110  * Type interface for disk page write function.
111  * \a page is the page address, \a addr the address inside the page,
112  * \a size the lenght to be written.
113  * \return the number of bytes written.
114  */
115 typedef size_t  (*disk_page_write_t) (struct BattFsSuper *d, pgcnt_t page, pgaddr_t addr, void *buf, size_t);
116
117 /**
118  * Type interface for disk page erase function.
119  * \a page is the page address.
120  * \return true if all is ok, false otherwise.
121  */
122 typedef bool (*disk_page_erase_t) (struct BattFsSuper *d, pgcnt_t page);
123
124 /**
125  * Type interface for disk deinit function.
126  * \return true if all is ok, false otherwise.
127  */
128 typedef bool (*disk_close_t) (struct BattFsSuper *d);
129
130
131 typedef uint32_t disk_size_t; ///< Type for disk sizes.
132
133 /**
134  * Context used to describe a disk.
135  * This context structure will be used to access disk.
136  * Must be initialized by hw memory driver.
137  */
138 typedef struct BattFsSuper
139 {
140         disk_open_t open;        ///< Disk init.
141         disk_page_read_t  read;  ///< Page read.
142         disk_page_write_t write; ///< Page write.
143         disk_page_erase_t erase; ///< Page erase.
144         disk_close_t close;      ///< Disk deinit.
145
146         pgaddr_t page_size;      ///< Size of a disk page, in bytes.
147         pgcnt_t page_count;      ///< Number of pages on disk.
148
149         /**
150          * Page allocation array.
151          * This array must be allocated somewhere and
152          * must have enough space for page_count elements.
153          * Is used by the filesystem to represent
154          * the entire disk in memory.
155          */
156         pgcnt_t *page_array;     
157
158         disk_size_t disk_size;   ///< Size of the disk, in bytes (page_count * page_size).
159         disk_size_t free_bytes;  ///< Free space on the disk.
160         
161         /* TODO add other fields. */
162 } BattFsSuper;
163
164 bool battfs_init(struct BattFsSuper *d);
165
166 #endif /* FS_BATTFS_H */