File: vfprintf.c

package info (click to toggle)
sdcc 4.0.0%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 100,120 kB
  • sloc: ansic: 935,524; cpp: 75,055; makefile: 57,615; sh: 30,106; asm: 14,243; perl: 12,136; yacc: 7,297; lisp: 1,672; python: 815; lex: 781; awk: 498; sed: 89
file content (512 lines) | stat: -rw-r--r-- 13,436 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
/*-------------------------------------------------------------------------
   vfprintf.c - source file for reduced version of printf

   Copyright (C) 1999, Sandeep Dutta <sandeep.dutta AT ieee.org>
   Modified for pic16 port, by Vangelis Rokas, 2005 <vrokas AT otenet.gr>
   Bug-fixed and feature-enhanced by Mauro Giachero, 2008 <mauro.giachero AT gmail.com>

   Modifications for PIC14 by
   Copyright (C) 2019 Gonzalo Pérez de Olaguer Córdoba <salo@gpoc.es>

   This library is free software; you can redistribute it and/or modify it
   under the terms of the GNU General Public License as published by the
   Free Software Foundation; either version 2, or (at your option) any
   later version.

   This library is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License 
   along with this library; see the file COPYING. If not, write to the
   Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston,
   MA 02110-1301, USA.

   As a special exception, if you link this library with other files,
   some of which are compiled with SDCC, to produce an executable,
   this library does not by itself cause the resulting executable to
   be covered by the GNU General Public License. This exception does
   not however invalidate any other reasons why the executable file
   might be covered by the GNU General Public License.
-------------------------------------------------------------------------*/

/* following formats are supported :-
   format     output type       argument-type
     %%        -                   -
     %u        unsigned            int
     %u*       unsigned            *
     %b        binary              int
     %lb       binary              long
     %hb       binary              char
     %d        decimal             int
     %lu       unsigned            long
     %hu       unsigned            char
     %l[di]    decimal             long
     %lu[di]   unsigned            long
     %h[di]    decimal             char
     %hu[di]   unsigned            char
     %[xX]     hexadecimal         int
     %l[xX]    hexadecimal         long
     %h[xX]    hexadecimal         char
     %o        octal               int
     %lo       octal               long
     %ho       octal               char
     %c        character           char
     %s        character           generic pointer
   Also supported are:
   - the '0', '-' and ' ' alignment modifiers
   - the '+' and ' ' modifiers
   - the width field for integral types
   - the precision field for strings
*/

#include <ctype.h>
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>

/***********************************************************
 * The following switches enable some "advanced" features. *
 * With all the switches enabled:                          *
 * ; Statistics:                                           *
 * ; code size:     2062 (0x080e) bytes ( 1.57%)           *
 * ;                1031 (0x0407) words                    *
 * ; udata size:      16 (0x0010) bytes ( 1.25%)           *
 * ; access size:     31 (0x001f) bytes                    *
 * With all the switches disabled:                         *
 * ; Statistics:                                           *
 * ; code size:     1278 (0x04fe) bytes ( 0.98%)           *
 * ;                 639 (0x027f) words                    *
 * ; udata size:      16 (0x0010) bytes ( 1.25%)           *
 * ; access size:     25 (0x0019) bytes                    *
 ***********************************************************/

/*
 * Define this to enable support of the field width, which
 * allows to specify the minimum number of characters an
 * integer must use.
 * Costs ~200 code words and 3 bytes in access RAM.
 */
#define FIELD_WIDTH
/*
 * Define this to enable support of the precision, which
 * allows to specify the maximum number of characters a
 * string can use. Note that this implementation doesn't
 * use this field for integers (as it should).
 * Costs ~85 code words and 1 byte in access RAM.
 */
#define PRECISION
/*
 * Define this to enable support of the '+' and ' ' modifiers,
 * which specify that a positive signed number must be
 * preceded respectively with a '+' or a ' ' character.
 * Costs ~70 code words and 2 words of access RAM
 */
#define SIGN_MODIFIERS
/*
 * With this macro defined, trying to print a float number
 * will generate the "<NO FLOAT>" string.
 * Costs ~25 code words
 */
#define FLOAT_PLACEHOLDER
/*
 * With this macro defined, printing floats will work.
 * This also enables PRECISION and disables FLOAT_PLACEHOLDER.
 */
#define USE_FLOATS
/*
 * This macro enables the use of the 'b' binary specifier and
 * the use of "%b", "%hb" and "%lb"
 */
#define BINARY_SPECIFIER
/*
 * This macro enables the use of the 'i' integer specifier and
 * the use of "%u", "%lu", ... in place of "%ud", "%lud", ... .
 * costs ~10 code words
 */
#define EXTRA_INTEGER
/*
 * Two ways to handle putchar and getchar.
 */
#define _STATIC_PUTCHAR 0
#define _STATIC_GETCHAR 0

/*
 * END OF CONFIGURATION SETTINGS
 */

#if defined(USE_FLOATS)
#define PRECISION
#undef FLOAT_PLACEHOLDER
/* x_ftoa requires up to 8 digits (integral part) + '.' + 24 digits
 * (fractional part). Adding a sign and a NUL byte yields 35 byte. */
# define BUF_SIZE       36
#elif defined(BINARY_SPECIFIER)
/* "%lb" = "0" - "11111111111111111111111111111111" */
# define BUF_SIZE       33
#else
/* "%lo" = "0" - "37777777777" or  "-20000000000" - "17777777777" */
# define BUF_SIZE       13
#endif

/* flags */
#define _LONG       0x0001
#define _STR        0x0002
#define _CHAR       0x0004
#define _PTR        0x0008
#define _FLOAT      0x1000  // only when USE_FLOATS or FLOAT_PLACEHOLDER
#define _UNSIGNED   0x0010
#define _UPCASE     0x0020
#define _LEFTALIGN  0x0100  // only when FIELD_WIDTH
#define _ZEROPAD    0x0200  // only when FIELD_WIDTH
#define _PRINTSIGN  0x0400  // only when SIGN_MODIFIERS
#define _PRINTBLANK 0x0800  // only when SIGN_MODIFIERS

/* precision value meaning unset */
#define _UNSET  ((unsigned char)-1)

#if _STATIC_GETCHAR

static const char *_fmt;
static char ch;
static void _getchar (void)
{
        ch = *_fmt++;
}
#define _GETCHAR()  _getchar()

#else /* _STATIC_GETCHAR */
#define _GETCHAR()  do { ch = *fmt++; } while(0)
#endif

#if _STATIC_PUTCHAR

static FILE *_stream;
static unsigned char count;
static int _putchar (unsigned char c)
{
	if (fputc(c, _stream) < 0)
		return 1;
       	count++;
	return 0;
}
#define _PUTCHAR(c) do { if (_putchar(c)) goto _error; } while(0)

#else /* _STATIC_PUTCHAR */
#define _PUTCHAR(c) do { if (fputc(c, stream) < 0) goto _error; count++; } while(0)
#endif

int
vfprintf (FILE *stream, const char *fmt, va_list ap)
{
  unsigned flags;
  unsigned char radix;      // 2(binary), 8(octal), 10(decimal), 16(hexadecimal) or 0(char)

#if defined(FLOAT_PLACEHOLDER) || defined(USE_FLOATS)
  float f;
#endif

#ifdef FIELD_WIDTH
  unsigned char fieldwidth; // field width in number of characters
#endif

#ifdef PRECISION
  unsigned char precision;  // precission width in number of characters
#endif

  const char *cstr;
  char *str;
  long val;
  char buffer[BUF_SIZE];

#if _STATIC_GETCHAR
  _fmt = fmt;
#else
  char ch;
#endif

#if _STATIC_PUTCHAR
  _stream = stream;
  count = 0;
#else
  unsigned char count = 0;
#endif

  while (1)
    {
      _GETCHAR();
      if (ch == 0)
        return count;
      if (ch != '%')
        {
          _PUTCHAR(ch);
          continue;
        }
      _GETCHAR();
      if (ch == '%')
        {
          _PUTCHAR(ch);
          continue;
        }

      flags = 0;
      radix = 10;

#ifdef FIELD_WIDTH
      fieldwidth = 0;
#endif

#ifdef PRECISION
      // _UNSET is used as an "unlimited" precision marker
      precision = _UNSET;
#endif

#ifdef FIELD_WIDTH
      if (ch == '0')
        {
          flags |= _ZEROPAD;
          _GETCHAR();
        }

      if (ch == '-')
        {
          flags |= _LEFTALIGN;
          _GETCHAR();
        }
#endif

#ifdef SIGN_MODIFIERS
      if (ch == ' ')
        {
          flags |= _PRINTSIGN;
          flags |= _PRINTBLANK;
          _GETCHAR();
        }

      if (ch == '+')
        {
          flags |= _PRINTSIGN;
          _GETCHAR();
        }
#endif

#ifdef FIELD_WIDTH
      if ((ch >= '1') && (ch <= '9'))
        {
          while ((ch >= '0') && (ch <= '9'))
            {
              fieldwidth = 10 * fieldwidth + (ch) - '0';
              _GETCHAR();
            }
        }
#endif

#ifdef PRECISION
      if (ch == '.')
        {
          _GETCHAR();
          precision = 0;
          while ((ch >= '0') && (ch <= '9'))
            {
              precision = 10 * precision + (ch) - '0';
              _GETCHAR();
            }
        }
#endif

      if (ch == 'l')
        {
          flags |= _LONG;
          _GETCHAR();
        }
      else if (ch == 'h')
        {
          flags |= _CHAR;
          _GETCHAR();
        }

      if (ch == 'u')
        {
          flags |= _UNSIGNED;
          _GETCHAR();
        }

      if (ch == 's')
        {
          flags |= _STR;
#ifdef FIELD_WIDTH
          flags &= ~_ZEROPAD;   /* Strings are always space-padded */
#endif
        }
      else if (ch == 'p')
        {
          flags |= _PTR;
          flags |= _UNSIGNED;
          radix = 16;
        }
      else if (ch == 'x')
        radix = 16;
      else if (ch == 'X')
        {
          radix = 16;
          flags |= _UPCASE;
        }
      else if (ch == 'c')
        radix = 0;
      else if (ch == 'o')
        radix = 8;
#ifdef BINARY_SPECIFIER
      else if (ch == 'b')
        radix = 2;
#endif
#if defined(FLOAT_PLACEHOLDER) || defined(USE_FLOATS)
      else if (ch == 'f')
        {
          flags |= _FLOAT;
        }
#endif
#ifdef EXTRA_INTEGER
      else if ((ch == 'd') || (ch == 'i'))  /* This is the default */
            ;
      else if (flags & _UNSIGNED)           /* %u alone is the same as %ud */
#if _STATIC_GETCHAR
        --_fmt;
#else
        --fmt;
#endif
#else
      else if (ch == 'd')
            ;
#endif
      else
        {
          goto _error;
        }

      /* Here starts the formatting code */

      if (flags & _STR)
        {
          str = va_arg (ap, char *);
        }
#if defined(USE_FLOATS)
      else if (flags & _FLOAT)
        {
          f = va_arg (ap, float);
          str = buffer;
          _ftoa (f, buffer, PREC(PREC_F, precision == _UNSET ? PREC_D : precision));
          precision = _UNSET;
        }
#elif defined(FLOAT_PLACEHOLDER)
      else if (flags & _FLOAT)
        {
          /* read but ignore the argument */
          f = va_arg (ap, float);
          str = (char*)"<NO FLOAT>";
#ifdef PRECISION
          precision = _UNSET;
#endif /* PRECISION */
        }
#endif /* FLOAT_PLACEHOLDER */
      else
        {
#ifdef PRECISION
          precision = _UNSET;   //FIXME: No support for the precision field on numerals
#endif
          val = 0;
          if (flags & _LONG)
            {
              val = va_arg (ap, long);
            }
          else if (flags & _PTR)
            {
              str = va_arg (ap, void*);
              val = 0x00ffffffUL & *(unsigned long*)&str;
            }
          else if (flags & _CHAR)
            {
              val = va_arg (ap, char);
              if ((radix != 10) || (flags & _UNSIGNED))
                val = (unsigned char) val;    //Avoid unwanted sign extension
            }
          else
            {
              val = va_arg (ap, int);
              if ((radix != 10) || (flags & _UNSIGNED))
                val = (unsigned int) val;   //Avoid unwanted sign extension
            }

          str = buffer + 1; //Reserve space for a forced '+'
          if (radix)
            {
              if (flags & _UNSIGNED)
                _ultoa (val, buffer + 1, radix);
              else
                _ltoa (val, buffer + 1, radix);
#ifdef SIGN_MODIFIERS
              if ((flags & _PRINTSIGN) && (*str != '-'))
                {
                  --str;
                  *str = (flags & _PRINTBLANK ? ' ' : '+');
                }
#endif
            }
          else
            {
              *str = (unsigned char) val;
              *(str + 1) = '\0';
            }
        }

#ifdef FIELD_WIDTH
      //Count how many pad chars are required in fieldwidth
      cstr = str;
      while (fieldwidth && *cstr)
        {
          ++cstr;
          --fieldwidth;
        }
      //Left padding
      if (!(flags & _LEFTALIGN))
        {
          ch = flags & _ZEROPAD ? '0' : ' ';
          while (fieldwidth)
            {
              _PUTCHAR(ch);
              --fieldwidth;
            }
        }
#endif

#ifdef PRECISION
      while (*str && ((precision == _UNSET) || precision--))
#else
      while (*str)
#endif
        {
          ch = *str++;
          if (radix == 16 && !(flags & _UPCASE))
            {
              ch = tolower (ch);
            }
          _PUTCHAR(ch);
        }

#ifdef FIELD_WIDTH
      //Right padding (with spaces)
      if (flags & _LEFTALIGN)
        {
          while (fieldwidth)
            {
              _PUTCHAR(' ');
              --fieldwidth;
            }
        }
#endif

    }

_error:
  return EOF;
}