Write or read buffer in block size chunk.
[bertos.git] / bertos / io / kfile_block.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 2010 Develer S.r.l. (http://www.develer.com/)
30  *
31  * -->
32  *
33  * \brief KFile interface over a KBlock.
34  *
35  */
36
37 #include "kfile_block.h"
38 #include <string.h>
39
40
41 /**
42  * ID for KFile over a KBlock.
43  */
44 #define KFT_KFILEBLOCK MAKE_ID('K', 'F', 'B', 'L')
45
46 /**
47  * Convert + ASSERT from generic KFile to KFileBlock.
48  */
49 INLINE KFileBlock * KFILEBLOCK_CAST(KFile *fd)
50 {
51         ASSERT(fd->_type == KFT_KFILEBLOCK);
52         return (KFileBlock *)fd;
53 }
54
55 #define KFILEBLOCK(dir, fd, buf, size) \
56 ({ \
57         KFileBlock *fb = KFILEBLOCK_CAST(fd); \
58         size_t len = 0; \
59         while (size) \
60         { \
61                 block_idx_t id = (fd)->seek_pos / fb->blk->blk_size; \
62                 size_t offset = (fd)->seek_pos % fb->blk->blk_size; \
63                 size_t count = MIN(size, (size_t)(fb->blk->blk_size - offset)); \
64                 size_t ret_len = kblock_##dir(fb->blk, id, buf, offset, count); \
65                 size -= ret_len; \
66                 (fd)->seek_pos += ret_len; \
67                 buf = buf + ret_len; \
68                 len += ret_len; \
69                 if (ret_len != count) \
70                         break; \
71         } \
72         len; \
73 })
74
75 static size_t kfileblock_read(struct KFile *fd, void *_buf, size_t size)
76 {
77         uint8_t *buf = (uint8_t *)_buf;
78         return KFILEBLOCK(read, fd, buf, size);
79 }
80
81 static size_t kfileblock_write(struct KFile *fd, const void *_buf, size_t size)
82 {
83         const uint8_t *buf = (const uint8_t *)_buf;
84         return KFILEBLOCK(write, fd, buf, size);
85 }
86
87 static int kfileblock_flush(struct KFile *fd)
88 {
89         KFileBlock *fb = KFILEBLOCK_CAST(fd);
90         return kblock_flush(fb->blk);
91 }
92
93 static int kfileblock_error(struct KFile *fd)
94 {
95         KFileBlock *fb = KFILEBLOCK_CAST(fd);
96         return kblock_error(fb->blk);
97 }
98
99 static void kfileblock_clearerr(struct KFile *fd)
100 {
101         KFileBlock *fb = KFILEBLOCK_CAST(fd);
102         return kblock_clearerr(fb->blk);
103 }
104
105 static int kfileblock_close(struct KFile *fd)
106 {
107         KFileBlock *fb = KFILEBLOCK_CAST(fd);
108         return kblock_close(fb->blk);
109 }
110
111 void kfileblock_init(KFileBlock *fb, KBlock *blk)
112 {
113         ASSERT(fb);
114         ASSERT(blk);
115         memset(fb, 0, sizeof(*fb));
116         kfile_init(&fb->fd);
117         DB(fb->fd._type = KFT_KFILEBLOCK);
118         fb->blk = blk;
119         fb->fd.size = blk->blk_cnt * blk->blk_size;
120         fb->fd.read = kfileblock_read;
121         fb->fd.write = kfileblock_write;
122         fb->fd.flush = kfileblock_flush;
123         fb->fd.error = kfileblock_error;
124         fb->fd.clearerr = kfileblock_clearerr;
125         fb->fd.close = kfileblock_close;
126 }