Update preset.
[bertos.git] / bertos / mware / sprintf.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 2002, 2004, 2005 Develer S.r.l. (http://www.develer.com/)
30  *
31  * -->
32  *
33  * \brief sprintf() implementation based on _formatted_write()
34  *
35  * \author Bernie Innocenti <bernie@codewiz.org>
36  *
37  * $WIZ$ module_name = "sprintf"
38  * $WIZ$ module_depends = "formatwr"
39  * $WIZ$ module_harvard = "both"
40  */
41
42 #include <mware/formatwr.h>
43 #include <cpu/pgm.h>
44 #include <cfg/compiler.h>
45
46 #include <stdio.h>
47
48
49 static void __str_put_char(char c, void *ptr)
50 {
51         /*
52          * This Does not work on Code Warrior. Hmm...
53          *      *(*((char **)ptr))++ = c;
54          */
55
56         **((char **)ptr) = c;
57         (*((char **)ptr))++;
58 }
59
60 static void __null_put_char(UNUSED_ARG(char, c), UNUSED_ARG(void *, ptr))
61 {
62         /* nop */
63 }
64
65
66 int PGM_FUNC(vsprintf)(char *str, const char * PGM_ATTR fmt, va_list ap)
67 {
68         int result;
69
70         if (str)
71         {
72                 result = PGM_FUNC(_formatted_write)(fmt, __str_put_char, &str, ap);
73
74                 /* Terminate string */
75                 *str = '\0';
76         }
77         else
78                 result = PGM_FUNC(_formatted_write)(fmt, __null_put_char, 0, ap);
79
80
81         return result;
82 }
83
84
85 int PGM_FUNC(sprintf)(char *str, const char * fmt, ...)
86 {
87         int result;
88         va_list ap;
89
90         va_start(ap, fmt);
91         result = PGM_FUNC(vsprintf)(str, fmt, ap);
92         va_end(ap);
93
94         return result;
95 }
96
97 /**
98  * State information for __sn_put_char()
99  */
100 struct __sn_state
101 {
102         char *str;
103         size_t len;
104 };
105
106 /**
107  * formatted_write() callback used [v]snprintf().
108  */
109 static void __sn_put_char(char c, void *ptr)
110 {
111         struct __sn_state *state = (struct __sn_state *)ptr;
112
113         if (state->len)
114         {
115                 --state->len;
116                 *state->str++ = c;
117         }
118 }
119
120
121 int PGM_FUNC(vsnprintf)(char *str, size_t size, const char * PGM_ATTR fmt, va_list ap)
122 {
123         int result = 0;
124
125         /* Make room for traling '\0'. */
126         if (size--)
127         {
128                 if (str)
129                 {
130                         struct __sn_state state;
131                         state.str = str;
132                         state.len = size;
133
134                         result = PGM_FUNC(_formatted_write)(fmt, __sn_put_char, &state, ap);
135
136                         /* Terminate string. */
137                         *state.str = '\0';
138                 }
139                 else
140                         result = PGM_FUNC(_formatted_write)(fmt, __null_put_char, 0, ap);
141         }
142
143         return result;
144 }
145
146
147 int PGM_FUNC(snprintf)(char *str, size_t size, const char * fmt, ...)
148 {
149         int result;
150         va_list ap;
151
152         va_start(ap, fmt);
153         result = PGM_FUNC(vsnprintf)(str, size, fmt, ap);
154         va_end(ap);
155
156         return result;
157 }