Reformat; Optimize flush.
[bertos.git] / bertos / io / kblock.c
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 2009 Develer S.r.l. (http://www.develer.com/)
30  *
31  * -->
32  *
33  * \author Francesco Sacchi <batt@develer.com>
34  *
35  * \brief KBlock interface
36  */
37
38
39 #include "kblock.h"
40
41 #define LOG_LEVEL LOG_LVL_ERR
42 #define LOG_FORMAT LOG_FMT_VERBOSE
43
44 #include <cfg/log.h>
45 #include <string.h>
46
47 INLINE size_t kblock_readDirect(struct KBlock *b, block_idx_t index, void *buf, size_t offset, size_t size)
48 {
49         KB_ASSERT_METHOD(b, readDirect);
50         ASSERT(index < b->blk_cnt);
51         return b->priv.vt->readDirect(b, b->priv.blk_start + index, buf, offset, size);
52 }
53
54 INLINE int kblock_writeBlock(struct KBlock *b, block_idx_t index, const void *buf)
55 {
56         KB_ASSERT_METHOD(b, writeBlock);
57         ASSERT(index < b->blk_cnt);
58         return b->priv.vt->writeBlock(b, b->priv.blk_start + index, buf);
59 }
60
61 INLINE size_t kblock_readBuf(struct KBlock *b, void *buf, size_t offset, size_t size)
62 {
63         KB_ASSERT_METHOD(b, readBuf);
64         ASSERT(offset + size <= b->blk_size);
65
66         return b->priv.vt->readBuf(b, buf, offset, size);
67 }
68
69 INLINE size_t kblock_writeBuf(struct KBlock *b, const void *buf, size_t offset, size_t size)
70 {
71         KB_ASSERT_METHOD(b, writeBuf);
72         ASSERT(offset + size <= b->blk_size);
73         return b->priv.vt->writeBuf(b, buf, offset, size);
74 }
75
76 INLINE int kblock_load(struct KBlock *b, block_idx_t index)
77 {
78         KB_ASSERT_METHOD(b, load);
79         ASSERT(index < b->blk_cnt);
80
81         LOG_INFO("index %d\n", index);
82         return b->priv.vt->load(b, b->priv.blk_start + index);
83 }
84
85 INLINE int kblock_store(struct KBlock *b, block_idx_t index)
86 {
87         KB_ASSERT_METHOD(b, store);
88         ASSERT(index < b->blk_cnt);
89
90         LOG_INFO("index %d\n", index);
91         return b->priv.vt->store(b, b->priv.blk_start + index);
92 }
93
94 INLINE void kblock_setDirty(struct KBlock *b, bool dirty)
95 {
96         if (dirty)
97                 b->priv.flags |= KB_CACHE_DIRTY;
98         else
99                 b->priv.flags &= ~KB_CACHE_DIRTY;
100 }
101
102
103
104 size_t kblock_read(struct KBlock *b, block_idx_t idx, void *buf, size_t offset, size_t size)
105 {
106         ASSERT(b);
107         ASSERT(buf);
108         ASSERT(offset + size <= b->blk_size);
109         LOG_INFO("blk_idx %d, offset %d, size %d\n", idx, offset, size);
110
111         if (kblock_buffered(b) && idx == b->priv.curr_blk)
112                 return kblock_readBuf(b, buf, offset, size);
113         else
114                 return kblock_readDirect(b, idx, buf, offset, size);
115 }
116
117
118 int kblock_flush(struct KBlock *b)
119 {
120         ASSERT(b);
121
122         if (!kblock_buffered(b))
123                 return 0;
124
125         if (kblock_cacheDirty(b))
126         {
127                 LOG_INFO("flushing block %d\n", b->priv.curr_blk);
128                 if (kblock_store(b, b->priv.curr_blk) == 0)
129                         kblock_setDirty(b, false);
130                 else
131                         return EOF;
132         }
133         return 0;
134 }
135
136
137 static bool kblock_loadPage(struct KBlock *b, block_idx_t idx)
138 {
139         ASSERT(b);
140
141         if (idx != b->priv.curr_blk)
142         {
143                 LOG_INFO("loading block %d\n", idx);
144                 if (kblock_flush(b) != 0 || kblock_load(b, idx) != 0)
145                                 return false;
146
147                 b->priv.curr_blk = idx;
148         }
149         return true;
150 }
151
152
153 size_t kblock_write(struct KBlock *b, block_idx_t idx, const void *buf, size_t offset, size_t size)
154 {
155         ASSERT(b);
156         ASSERT(buf);
157         ASSERT(idx < b->blk_cnt);
158         ASSERT(offset + size <= b->blk_size);
159
160         LOG_INFO("blk_idx %d, offset %d, size %d\n", idx, offset, size);
161
162         if (kblock_buffered(b))
163         {
164                 if (!kblock_loadPage(b, idx))
165                         return 0;
166
167                 kblock_setDirty(b, true);
168                 return kblock_writeBuf(b, buf, offset, size);
169         }
170         else
171         {
172                 ASSERT(offset == 0);
173                 ASSERT(size == b->blk_size);
174                 return (kblock_writeBlock(b, idx, buf) == 0) ? size : 0;
175         }
176 }
177
178 int kblock_copy(struct KBlock *b, block_idx_t src, block_idx_t dest)
179 {
180         ASSERT(b);
181         ASSERT(src < b->blk_cnt);
182         ASSERT(dest < b->blk_cnt);
183         ASSERT(kblock_buffered(b));
184
185         if (!kblock_loadPage(b, src))
186                 return EOF;
187
188         b->priv.curr_blk = dest;
189         kblock_setDirty(b, true);
190         return 0;
191 }
192
193 int kblock_swLoad(struct KBlock *b, block_idx_t index)
194 {
195         return (kblock_readDirect(b, index, b->priv.buf, 0, b->blk_size) == b->blk_size) ? 0 : EOF;
196 }
197
198 int kblock_swStore(struct KBlock *b, block_idx_t index)
199 {
200         return kblock_writeBlock(b, index, b->priv.buf);
201 }
202
203 size_t kblock_swReadBuf(struct KBlock *b, void *buf, size_t offset, size_t size)
204 {
205         ASSERT(buf);
206         ASSERT(offset + size <= b->blk_size);
207
208         memcpy(buf, (uint8_t *)b->priv.buf + offset, size);
209         return size;
210 }
211
212 size_t kblock_swWriteBuf(struct KBlock *b, const void *buf, size_t offset, size_t size)
213 {
214         ASSERT(buf);
215         ASSERT(offset + size <= b->blk_size);
216         memcpy((uint8_t *)b->priv.buf + offset, buf, size);
217         return size;
218 }