4 * This file is part of BeRTOS.
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.
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.
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
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.
29 * Copyright 2007 Develer S.r.l. (http://www.develer.com/)
32 * \brief Virtual KFile I/O interface.
34 * This module implements some generic I/O interfaces for kfile.
37 * \author Francesco Sacchi <batt@develer.com>
38 * \author Daniele Basile <asterix@develer.com>
43 #include "cfg/cfg_kfile.h"
44 #include <cfg/debug.h>
47 #include <drv/timer.h>
48 #include <mware/formatwr.h>
53 * Sanity check for config parameters required by this module.
55 #if !defined(CONFIG_KFILE_GETS) || ((CONFIG_KFILE_GETS != 0) && CONFIG_KFILE_GETS != 1)
56 #error CONFIG_KFILE_GETS must be set to either 0 or 1 in appconfig.h
58 #if !defined(CONFIG_PRINTF)
59 #error CONFIG_PRINTF missing in appconfig.h
64 * Generic putc() implementation using \a fd->write.
66 int kfile_putc(int _c, struct KFile *fd)
68 unsigned char c = (unsigned char)_c;
70 if (kfile_write(fd, &c, sizeof(c)) == sizeof(c))
71 return (int)((unsigned char)_c);
77 * Generic getc() implementation using \a fd->read.
79 int kfile_getc(struct KFile *fd)
83 if (kfile_read(fd, &c, sizeof(c)) == sizeof(c))
84 return (int)((unsigned char)c);
93 int kfile_printf(struct KFile *fd, const char *format, ...)
99 len = _formatted_write(format, (void (*)(char, void *))kfile_putc, fd, ap);
104 #endif /* CONFIG_PRINTF */
107 * Write a string to kfile \a fd.
108 * \return 0 if OK, EOF in case of error.
110 int kfile_print(struct KFile *fd, const char *s)
114 if (kfile_putc(*s++, fd) == EOF)
120 #if CONFIG_KFILE_GETS
122 * Read a line long at most as size and put it
124 * \return number of chars read or EOF in case
127 int kfile_gets(struct KFile *fd, char *buf, int size)
129 return kfile_gets_echo(fd, buf, size, false);
134 * Read a line long at most as size and put it
135 * in buf, with optional echo.
137 * \return number of chars read, or EOF in case
140 int kfile_gets_echo(struct KFile *fd, char *buf, int size, bool echo)
147 if ((c = kfile_getc(fd)) == EOF)
154 if (c == '\r' || c == '\n' || i >= size-1)
158 kfile_print(fd, "\r\n");
168 #endif /* !CONFIG_KFILE_GETS */
172 * Move \a fd file seek position of \a offset bytes from \a whence.
174 * This is a generic implementation of seek function, you can redefine
175 * it in your local module if needed.
177 kfile_off_t kfile_genericSeek(struct KFile *fd, kfile_off_t offset, KSeekMode whence)
179 kfile_off_t seek_pos;
191 seek_pos = fd->seek_pos;
199 #if LOG_LEVEL >= LOG_LVL_INFO
201 if (seek_pos + offset > fd->size)
202 LOG_INFO("seek outside EOF\n");
205 fd->seek_pos = seek_pos + offset;
212 * This is a generic implementation that only flush file
213 * and reset seek_pos to 0.
215 struct KFile * kfile_genericReopen(struct KFile *fd)
218 kfile_seek(fd, 0, KSM_SEEK_SET);
224 * This is a generic implementation that only return 0.
226 int kfile_genericClose(UNUSED_ARG(struct KFile *, fd))
233 * Discard input to resynchronize with remote end.
235 * Discard incoming data until the kfile_getc stops receiving
236 * characters for at least \a delay milliseconds.
238 * \note If the timeout occur, we reset the error before to
241 void kfile_resync(KFile *fd, mtime_t delay)
243 ticks_t start_time = timer_clock();
246 if(kfile_getc(fd) != EOF)
247 start_time = timer_clock();
249 if ((timer_clock() - start_time) > ms_to_ticks(delay))