]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/PIC32MX_MPLAB/printf-stdarg.c
commit 9f316c246baafa15c542a5aea81a94f26e3d6507
[freertos] / FreeRTOS / Demo / PIC32MX_MPLAB / printf-stdarg.c
1 /*\r
2         Copyright 2001, 2002 Georges Menie (www.menie.org)\r
3         stdarg version contributed by Christian Ettinger\r
4 \r
5     This program is free software; you can redistribute it and/or modify\r
6     it under the terms of the GNU Lesser General Public License as published by\r
7     the Free Software Foundation; either version 2 of the License, or\r
8     (at your option) any later version.\r
9 \r
10     This program is distributed in the hope that it will be useful,\r
11     but WITHOUT ANY WARRANTY; without even the implied warranty of\r
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
13     GNU Lesser General Public License for more details.\r
14 \r
15     You should have received a copy of the GNU Lesser General Public License\r
16     along with this program; if not, write to the Free Software\r
17     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA\r
18 */\r
19 \r
20 /*\r
21         putchar is the only external dependency for this file,\r
22         if you have a working putchar, leave it commented out.\r
23         If not, uncomment the define below and\r
24         replace outbyte(c) by your own function call.\r
25 \r
26 #define putchar(c) outbyte(c)\r
27 */\r
28 \r
29 #include <stdarg.h>\r
30 \r
31 static void printchar(char **str, int c)\r
32 {\r
33         extern int putchar(int c);\r
34         \r
35         if (str) {\r
36                 **str = c;\r
37                 ++(*str);\r
38         }\r
39         else (void)putchar(c);\r
40 }\r
41 \r
42 #define PAD_RIGHT 1\r
43 #define PAD_ZERO 2\r
44 \r
45 static int prints(char **out, const char *string, int width, int pad)\r
46 {\r
47         register int pc = 0, padchar = ' ';\r
48 \r
49         if (width > 0) {\r
50                 register int len = 0;\r
51                 register const char *ptr;\r
52                 for (ptr = string; *ptr; ++ptr) ++len;\r
53                 if (len >= width) width = 0;\r
54                 else width -= len;\r
55                 if (pad & PAD_ZERO) padchar = '0';\r
56         }\r
57         if (!(pad & PAD_RIGHT)) {\r
58                 for ( ; width > 0; --width) {\r
59                         printchar (out, padchar);\r
60                         ++pc;\r
61                 }\r
62         }\r
63         for ( ; *string ; ++string) {\r
64                 printchar (out, *string);\r
65                 ++pc;\r
66         }\r
67         for ( ; width > 0; --width) {\r
68                 printchar (out, padchar);\r
69                 ++pc;\r
70         }\r
71 \r
72         return pc;\r
73 }\r
74 \r
75 /* the following should be enough for 32 bit int */\r
76 #define PRINT_BUF_LEN 12\r
77 \r
78 static int printi(char **out, int i, int b, int sg, int width, int pad, int letbase)\r
79 {\r
80         char print_buf[PRINT_BUF_LEN];\r
81         register char *s;\r
82         register int t, neg = 0, pc = 0;\r
83         register unsigned int u = i;\r
84 \r
85         if (i == 0) {\r
86                 print_buf[0] = '0';\r
87                 print_buf[1] = '\0';\r
88                 return prints (out, print_buf, width, pad);\r
89         }\r
90 \r
91         if (sg && b == 10 && i < 0) {\r
92                 neg = 1;\r
93                 u = -i;\r
94         }\r
95 \r
96         s = print_buf + PRINT_BUF_LEN-1;\r
97         *s = '\0';\r
98 \r
99         while (u) {\r
100                 t = u % b;\r
101                 if( t >= 10 )\r
102                         t += letbase - '0' - 10;\r
103                 *--s = t + '0';\r
104                 u /= b;\r
105         }\r
106 \r
107         if (neg) {\r
108                 if( width && (pad & PAD_ZERO) ) {\r
109                         printchar (out, '-');\r
110                         ++pc;\r
111                         --width;\r
112                 }\r
113                 else {\r
114                         *--s = '-';\r
115                 }\r
116         }\r
117 \r
118         return pc + prints (out, s, width, pad);\r
119 }\r
120 \r
121 static int print( char **out, const char *format, va_list args )\r
122 {\r
123         register int width, pad;\r
124         register int pc = 0;\r
125         char scr[2];\r
126 \r
127         for (; *format != 0; ++format) {\r
128                 if (*format == '%') {\r
129                         ++format;\r
130                         width = pad = 0;\r
131                         if (*format == '\0') break;\r
132                         if (*format == '%') goto out;\r
133                         if (*format == '-') {\r
134                                 ++format;\r
135                                 pad = PAD_RIGHT;\r
136                         }\r
137                         while (*format == '0') {\r
138                                 ++format;\r
139                                 pad |= PAD_ZERO;\r
140                         }\r
141                         for ( ; *format >= '0' && *format <= '9'; ++format) {\r
142                                 width *= 10;\r
143                                 width += *format - '0';\r
144                         }\r
145                         if( *format == 's' ) {\r
146                                 register char *s = (char *)va_arg( args, int );\r
147                                 pc += prints (out, s?s:"(null)", width, pad);\r
148                                 continue;\r
149                         }\r
150                         if( *format == 'd' ) {\r
151                                 pc += printi (out, va_arg( args, int ), 10, 1, width, pad, 'a');\r
152                                 continue;\r
153                         }\r
154                         if( *format == 'x' ) {\r
155                                 pc += printi (out, va_arg( args, int ), 16, 0, width, pad, 'a');\r
156                                 continue;\r
157                         }\r
158                         if( *format == 'X' ) {\r
159                                 pc += printi (out, va_arg( args, int ), 16, 0, width, pad, 'A');\r
160                                 continue;\r
161                         }\r
162                         if( *format == 'u' ) {\r
163                                 pc += printi (out, va_arg( args, int ), 10, 0, width, pad, 'a');\r
164                                 continue;\r
165                         }\r
166                         if( *format == 'c' ) {\r
167                                 /* char are converted to int then pushed on the stack */\r
168                                 scr[0] = (char)va_arg( args, int );\r
169                                 scr[1] = '\0';\r
170                                 pc += prints (out, scr, width, pad);\r
171                                 continue;\r
172                         }\r
173                 }\r
174                 else {\r
175                 out:\r
176                         printchar (out, *format);\r
177                         ++pc;\r
178                 }\r
179         }\r
180         if (out) **out = '\0';\r
181         va_end( args );\r
182         return pc;\r
183 }\r
184 \r
185 int printf(const char *format, ...)\r
186 {\r
187         va_list args;\r
188         \r
189         va_start( args, format );\r
190         return print( 0, format, args );\r
191 }\r
192 \r
193 int sprintf(char *out, const char *format, ...)\r
194 {\r
195         va_list args;\r
196         \r
197         va_start( args, format );\r
198         return print( &out, format, args );\r
199 }\r
200 \r
201 \r
202 int snprintf( char *buf, unsigned int count, const char *format, ... )\r
203 {\r
204         va_list args;\r
205         \r
206         ( void ) count;\r
207         \r
208         va_start( args, format );\r
209         return print( &buf, format, args );\r
210 }\r
211 \r
212 \r
213 #ifdef TEST_PRINTF\r
214 int main(void)\r
215 {\r
216         char *ptr = "Hello world!";\r
217         char *np = 0;\r
218         int i = 5;\r
219         unsigned int bs = sizeof(int)*8;\r
220         int mi;\r
221         char buf[80];\r
222 \r
223         mi = (1 << (bs-1)) + 1;\r
224         printf("%s\n", ptr);\r
225         printf("printf test\n");\r
226         printf("%s is null pointer\n", np);\r
227         printf("%d = 5\n", i);\r
228         printf("%d = - max int\n", mi);\r
229         printf("char %c = 'a'\n", 'a');\r
230         printf("hex %x = ff\n", 0xff);\r
231         printf("hex %02x = 00\n", 0);\r
232         printf("signed %d = unsigned %u = hex %x\n", -3, -3, -3);\r
233         printf("%d %s(s)%", 0, "message");\r
234         printf("\n");\r
235         printf("%d %s(s) with %%\n", 0, "message");\r
236         sprintf(buf, "justif: \"%-10s\"\n", "left"); printf("%s", buf);\r
237         sprintf(buf, "justif: \"%10s\"\n", "right"); printf("%s", buf);\r
238         sprintf(buf, " 3: %04d zero padded\n", 3); printf("%s", buf);\r
239         sprintf(buf, " 3: %-4d left justif.\n", 3); printf("%s", buf);\r
240         sprintf(buf, " 3: %4d right justif.\n", 3); printf("%s", buf);\r
241         sprintf(buf, "-3: %04d zero padded\n", -3); printf("%s", buf);\r
242         sprintf(buf, "-3: %-4d left justif.\n", -3); printf("%s", buf);\r
243         sprintf(buf, "-3: %4d right justif.\n", -3); printf("%s", buf);\r
244 \r
245         return 0;\r
246 }\r
247 \r
248 /*\r
249  * if you compile this file with\r
250  *   gcc -Wall $(YOUR_C_OPTIONS) -DTEST_PRINTF -c printf.c\r
251  * you will get a normal warning:\r
252  *   printf.c:214: warning: spurious trailing `%' in format\r
253  * this line is testing an invalid % at the end of the format string.\r
254  *\r
255  * this should display (on 32bit int machine) :\r
256  *\r
257  * Hello world!\r
258  * printf test\r
259  * (null) is null pointer\r
260  * 5 = 5\r
261  * -2147483647 = - max int\r
262  * char a = 'a'\r
263  * hex ff = ff\r
264  * hex 00 = 00\r
265  * signed -3 = unsigned 4294967293 = hex fffffffd\r
266  * 0 message(s)\r
267  * 0 message(s) with %\r
268  * justif: "left      "\r
269  * justif: "     right"\r
270  *  3: 0003 zero padded\r
271  *  3: 3    left justif.\r
272  *  3:    3 right justif.\r
273  * -3: -003 zero padded\r
274  * -3: -3   left justif.\r
275  * -3:   -3 right justif.\r
276  */\r
277 \r
278 #endif\r
279 \r
280 \r
281 /* To keep linker happy. */\r
282 int     write( int i, char* c, int n)\r
283 {\r
284         return 0;\r
285 }\r
286 \r