Add some BattFsSuper fields.
[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
47 typedef uint16_t fill_t;
48 typedef fill_t   pgaddr_t;
49 typedef uint16_t pgoff_t;
50 typedef pgoff_t  mark_t;
51 typedef uint8_t  inode_t;
52 typedef uint8_t  seq_t;
53 typedef uint16_t fcs_t;
54
55 /**
56  * BattFS page header.
57  * \note fields order is chosen to comply
58  * with CPU alignment.
59  */
60 typedef struct BattFsPageHeader
61 {
62         inode_t  inode; ///< File inode (file identifier).
63         seq_t    seq;   ///< Page sequence number.
64         mark_t   mark;  ///< Marker used to keep trace of free/used pages.
65         pgoff_t  pgoff; ///< Page offset inside file.
66         fill_t   fill;  ///< Filled bytes in page.
67         uint16_t rfu;   ///< Reserved for future use, 0xFFFF for now.
68         fcs_t    fcs;   ///< FCS (Frame Check Sequence) of the page header.
69 } BattFsPageHeader;
70
71 /* Ensure structure has no padding added */
72 STATIC_ASSERT(sizeof(BattFsPageHeader) == 12);
73
74 /* Fwd decl */
75 struct BattFsSuper;
76
77 /**
78  * Type for disk page addressing.
79  */
80 typedef uint16_t pgcnt_t;
81
82 /**
83  * Type interface for disk init function.
84  * \return true if all is ok, false otherwise.
85  */
86 typedef bool (*disk_open_t) (struct BattFsSuper *d);
87
88 /**
89  * Type interface for disk page read function.
90  * \a page is the page address, \a addr the address inside the page,
91  * \a size the lenght to be read.
92  * \return the number of bytes read.
93  */
94 typedef size_t (*disk_page_read_t) (struct BattFsSuper *d, pgcnt_t page, pgaddr_t addr, void *buf, size_t);
95
96 /**
97  * Type interface for disk page write function.
98  * \a page is the page address, \a addr the address inside the page,
99  * \a size the lenght to be written.
100  * \return the number of bytes written.
101  */
102 typedef size_t  (*disk_page_write_t) (struct BattFsSuper *d, pgcnt_t page, pgaddr_t addr, void *buf, size_t);
103
104 /**
105  * Type interface for disk page erase function.
106  * \a page is the page address.
107  * \return true if all is ok, false otherwise.
108  */
109 typedef bool (*disk_page_erase_t) (struct BattFsSuper *d, pgcnt_t page);
110
111 /**
112  * Type interface for disk deinit function.
113  * \return true if all is ok, false otherwise.
114  */
115 typedef bool (*disk_close_t) (struct BattFsSuper *d);
116
117
118 typedef uint32_t disk_size_t; ///< Type for disk sizes.
119
120 /**
121  * Context used to describe a disk.
122  * This context structure will be used to access disk.
123  * Must be initialized by hw memory driver.
124  */
125 typedef struct BattFsSuper
126 {
127         disk_open_t open;        ///< Disk init.
128         disk_page_read_t  read;  ///< Page read.
129         disk_page_write_t write; ///< Page write.
130         disk_page_erase_t erase; ///< Page erase.
131         disk_close_t close;      ///< Disk deinit.
132
133         pgaddr_t page_size;      ///< Size of a disk page, in bytes.
134         pgcnt_t page_count;      ///< Number of pages on disk.
135
136         /**
137          * Page allocation array.
138          * This array must be allocated somewhere and
139          * must have enough space for page_count elements.
140          * Is used by the filesystem to represent
141          * the entire disk in memory.
142          */
143         pgcnt_t *page_array;     
144
145         disk_size_t disk_size;   ///< Size of the disk, in bytes (page_count * page_size).
146         disk_size_t free_bytes;  ///< Free space on the disk.
147         
148         /* TODO add other fields. */
149 } BattFsSuper;
150
151 /**
152  * Initialize and mount disk described by
153  * \a d.
154  * \return false on errors, true otherwise.
155  */
156 bool battfs_init(struct BattFsSuper *d);
157
158 #endif /* FS_BATTFS_H */