2019-02-06 22:50:52 +01:00
|
|
|
/****************************************************************************
|
2019-02-17 19:16:28 +01:00
|
|
|
* libs/libc/stdio/lib_libvsprintf.c
|
2019-02-06 22:50:52 +01:00
|
|
|
*
|
|
|
|
* Copyright (c) 2002, Alexander Popov (sasho@vip.bg)
|
|
|
|
* Copyright (c) 2002,2004,2005 Joerg Wunsch
|
|
|
|
* Copyright (c) 2005, Helmut Wallner
|
|
|
|
* Copyright (c) 2007, Dmitry Xmelkov
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in
|
|
|
|
* the documentation and/or other materials provided with the
|
|
|
|
* distribution.
|
|
|
|
* 3. Neither the name NuttX nor the names of its contributors may be
|
|
|
|
* used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
|
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
|
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
|
|
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include <nuttx/streams.h>
|
|
|
|
|
2019-02-17 19:16:28 +01:00
|
|
|
#include "lib_dtoa_engine.h"
|
|
|
|
#include "lib_ultoa_invert.h"
|
2019-02-06 22:50:52 +01:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Pre-processor Definitions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/* Configuration options for nano-printf PRINTF_LEVEL */
|
|
|
|
|
|
|
|
#define PRINTF_MIN 1
|
|
|
|
#define PRINTF_STD 2
|
|
|
|
#define PRINTF_FLT 3
|
|
|
|
|
|
|
|
/* This file can be compiled into more than one flavour. The default
|
|
|
|
* is to offer the usual modifiers and integer formatting support
|
|
|
|
* (level 2). Level 1 maintains a minimal version that just offers
|
|
|
|
* integer formatting, but no modifier support whatsoever. Level 3 is
|
2019-02-17 19:04:02 +01:00
|
|
|
* intended for floating point support.
|
2019-02-06 22:50:52 +01:00
|
|
|
*/
|
|
|
|
|
2019-02-17 19:04:02 +01:00
|
|
|
#if defined(CONFIG_LIBC_FLOATINGPOINT)
|
2019-02-06 22:50:52 +01:00
|
|
|
# define PRINTF_LEVEL PRINTF_FLT
|
2019-02-17 19:04:02 +01:00
|
|
|
#elif defined(CONFIG_LIB_LONG_LONG) || !defined(CONFIG_LIBC_PRINT_MINIMAL)
|
|
|
|
# define PRINT_LEVEL PRINTF_STD
|
2019-02-06 22:50:52 +01:00
|
|
|
#else
|
2019-02-17 19:04:02 +01:00
|
|
|
# define PRINT_LEVEL PRINTF_MIN
|
2019-02-06 22:50:52 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef putc
|
|
|
|
# undef putc
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define putc(c,stream) (total_len++, (stream)->put(stream, c))
|
|
|
|
|
|
|
|
#if PRINTF_LEVEL <= PRINTF_MIN
|
|
|
|
|
|
|
|
# define FL_ALTHEX 0x04
|
|
|
|
# define FL_ALT 0x10
|
|
|
|
# define FL_ALTLWR 0x20
|
|
|
|
# define FL_NEGATIVE 0x40
|
|
|
|
# define FL_LONG 0x80
|
|
|
|
|
|
|
|
#else /* i.e. PRINTF_LEVEL > PRINTF_MIN */
|
|
|
|
|
|
|
|
/* Order is relevant here and matches order in format string */
|
|
|
|
|
|
|
|
# define FL_ZFILL 0x0001
|
|
|
|
# define FL_PLUS 0x0002
|
|
|
|
# define FL_SPACE 0x0004
|
|
|
|
# define FL_LPAD 0x0008
|
|
|
|
# define FL_ALT 0x0010
|
|
|
|
|
2019-02-18 18:51:22 +01:00
|
|
|
# define FL_INDEX 0x0020
|
|
|
|
# define FL_ASTERISK 0x0040
|
2019-02-06 22:50:52 +01:00
|
|
|
|
2019-02-18 18:51:22 +01:00
|
|
|
# define FL_WIDTH 0x0080
|
|
|
|
# define FL_PREC 0x0100
|
2019-02-06 22:50:52 +01:00
|
|
|
|
2019-02-18 18:51:22 +01:00
|
|
|
# define FL_LONG 0x0200
|
|
|
|
# define FL_SHORT 0x0400
|
|
|
|
# define FL_REPD_TYPE 0x0800
|
2019-02-06 22:50:52 +01:00
|
|
|
|
2019-02-18 18:51:22 +01:00
|
|
|
# define FL_NEGATIVE 0x1000
|
|
|
|
|
|
|
|
/* The next 2 groups are Exclusive Or */
|
|
|
|
|
|
|
|
# define FL_ALTUPP 0x2000
|
|
|
|
# define FL_ALTHEX 0x4000
|
2019-02-06 22:50:52 +01:00
|
|
|
|
|
|
|
# define FL_FLTUPP 0x2000
|
|
|
|
# define FL_FLTEXP 0x4000
|
|
|
|
# define FL_FLTFIX 0x8000
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Support special access to CODE-space strings for Harvard architectures */
|
|
|
|
|
|
|
|
#ifdef CONFIG_ARCH_ROMGETC
|
|
|
|
# define fmt_char(fmt) up_romgetc((fmt)++)
|
|
|
|
#else
|
|
|
|
# define fmt_char(fmt) (*(fmt)++)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#if PRINTF_LEVEL <= PRINTF_MIN
|
|
|
|
int lib_vsprintf(FAR struct lib_outstream_s *stream,
|
|
|
|
FAR const IPTR char *fmt, va_list ap)
|
|
|
|
{
|
|
|
|
unsigned char c; /* Holds a char from the format string */
|
|
|
|
unsigned char flags;
|
|
|
|
unsigned char buf[11]; /* Size for -1 in octal, without '\0' */
|
|
|
|
int total_len = 0;
|
|
|
|
|
|
|
|
for (; ; )
|
|
|
|
{
|
|
|
|
for (; ; )
|
|
|
|
{
|
|
|
|
c = fmt_char(fmt);
|
2019-02-16 13:28:23 +01:00
|
|
|
if (c == '\0')
|
2019-02-06 22:50:52 +01:00
|
|
|
{
|
|
|
|
goto ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (c == '%')
|
|
|
|
{
|
|
|
|
c = fmt_char(fmt);
|
|
|
|
if (c != '%')
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
putc(c, stream);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (flags = 0; !(flags & FL_LONG); /* 'll' will detect as error */
|
|
|
|
c = fmt_char(fmt))
|
|
|
|
{
|
2019-02-16 13:28:23 +01:00
|
|
|
if (c != '\0' && strchr(" +-.0123456789h", c) != NULL)
|
2019-02-06 22:50:52 +01:00
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (c == '#')
|
|
|
|
{
|
|
|
|
flags |= FL_ALT;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (c == 'l')
|
|
|
|
{
|
|
|
|
flags |= FL_LONG;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Only a format character is valid. */
|
|
|
|
|
|
|
|
if (c && strchr("EFGefg", c))
|
|
|
|
{
|
|
|
|
(void)va_arg(ap, double);
|
|
|
|
putc('?', stream);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2019-02-18 18:51:22 +01:00
|
|
|
FAR const char *pnt;
|
2019-02-06 22:50:52 +01:00
|
|
|
|
|
|
|
switch (c)
|
|
|
|
{
|
|
|
|
case 'c':
|
|
|
|
putc(va_arg(ap, int), stream);
|
|
|
|
continue;
|
|
|
|
|
|
|
|
case 'S':
|
|
|
|
|
|
|
|
/* FALLTHROUGH */
|
|
|
|
|
|
|
|
case 's':
|
2019-02-18 18:51:22 +01:00
|
|
|
pnt = va_arg(ap, FAR char *);
|
2019-02-06 22:50:52 +01:00
|
|
|
while ((c = *pnt++) != 0)
|
|
|
|
{
|
|
|
|
putc(c, stream);
|
|
|
|
}
|
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (c == 'd' || c == 'i')
|
|
|
|
{
|
|
|
|
long x = (flags & FL_LONG) ? va_arg(ap, long) : va_arg(ap, int);
|
2019-02-16 13:28:23 +01:00
|
|
|
|
2019-02-06 22:50:52 +01:00
|
|
|
flags &= ~FL_ALT;
|
|
|
|
if (x < 0)
|
|
|
|
{
|
|
|
|
x = -x;
|
|
|
|
|
|
|
|
/* `putc ('-', stream)' will considarably inlarge stack size. So
|
|
|
|
* flag is used.
|
|
|
|
*/
|
|
|
|
|
|
|
|
flags |= FL_NEGATIVE;
|
|
|
|
}
|
|
|
|
|
2019-02-18 18:51:22 +01:00
|
|
|
c = __ultoa_invert(x, (FAR char *)buf, 10) - (FAR char *)buf;
|
2019-02-06 22:50:52 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
int base;
|
|
|
|
|
|
|
|
switch (c)
|
|
|
|
{
|
|
|
|
case 'u':
|
|
|
|
flags &= ~FL_ALT;
|
|
|
|
base = 10;
|
|
|
|
goto ultoa;
|
|
|
|
|
|
|
|
case 'o':
|
|
|
|
base = 8;
|
|
|
|
goto ultoa;
|
|
|
|
|
|
|
|
case 'p':
|
|
|
|
flags |= FL_ALT;
|
|
|
|
|
|
|
|
/* no break */
|
|
|
|
|
|
|
|
case 'x':
|
|
|
|
flags |= (FL_ALTHEX | FL_ALTLWR);
|
|
|
|
base = 16;
|
|
|
|
goto ultoa;
|
|
|
|
|
|
|
|
case 'X':
|
|
|
|
flags |= FL_ALTHEX;
|
|
|
|
base = 16 | XTOA_UPPER;
|
|
|
|
|
|
|
|
ultoa:
|
|
|
|
c = __ultoa_invert((flags & FL_LONG)
|
|
|
|
? va_arg(ap, unsigned long)
|
|
|
|
: va_arg(ap, unsigned int),
|
2019-02-18 18:51:22 +01:00
|
|
|
(FAR char *)buf, base) - (FAR char *)buf;
|
2019-02-06 22:50:52 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
goto ret;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Integer number output. */
|
|
|
|
|
2019-02-16 13:28:23 +01:00
|
|
|
if ((flags & FL_NEGATIVE) != 0)
|
2019-02-06 22:50:52 +01:00
|
|
|
{
|
|
|
|
putc('-', stream);
|
|
|
|
}
|
|
|
|
|
2019-02-16 13:28:23 +01:00
|
|
|
if ((flags & FL_ALT) != 0 && buf[c - 1] != '0')
|
2019-02-06 22:50:52 +01:00
|
|
|
{
|
|
|
|
putc('0', stream);
|
2019-02-16 13:28:23 +01:00
|
|
|
if ((flags & FL_ALTHEX) != 0)
|
2019-02-06 22:50:52 +01:00
|
|
|
{
|
|
|
|
# if FL_ALTLWR != 'x' - 'X'
|
|
|
|
# error
|
|
|
|
# endif
|
|
|
|
putc('X' + (flags & FL_ALTLWR), stream);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
do
|
|
|
|
{
|
|
|
|
putc(buf[--c], stream);
|
|
|
|
}
|
|
|
|
while (c);
|
|
|
|
}
|
|
|
|
|
|
|
|
ret:
|
|
|
|
return total_len;
|
|
|
|
}
|
|
|
|
|
|
|
|
#else /* i.e. PRINTF_LEVEL > PRINTF_MIN */
|
|
|
|
|
|
|
|
int lib_vsprintf(FAR struct lib_outstream_s *stream,
|
|
|
|
FAR const IPTR char *fmt, va_list ap)
|
|
|
|
{
|
|
|
|
unsigned char c; /* Holds a char from the format string */
|
|
|
|
uint16_t flags;
|
|
|
|
int width;
|
|
|
|
int prec;
|
|
|
|
union
|
|
|
|
{
|
2019-02-18 18:51:22 +01:00
|
|
|
#ifdef CONFIG_LIBC_LONG_LONG
|
2019-02-16 02:10:40 +01:00
|
|
|
unsigned char __buf[22]; /* Size for -1 in octal, without '\0' */
|
2019-02-18 18:51:22 +01:00
|
|
|
#else
|
2019-02-06 22:50:52 +01:00
|
|
|
unsigned char __buf[11]; /* Size for -1 in octal, without '\0' */
|
2019-02-18 18:51:22 +01:00
|
|
|
#endif
|
|
|
|
#if PRINTF_LEVEL >= PRINTF_FLT
|
2019-02-07 00:05:01 +01:00
|
|
|
struct dtoa_s __dtoa;
|
2019-02-18 18:51:22 +01:00
|
|
|
#endif
|
2019-02-06 22:50:52 +01:00
|
|
|
} u;
|
2019-02-18 18:51:22 +01:00
|
|
|
|
|
|
|
#define buf (u.__buf)
|
|
|
|
#define _dtoa (u.__dtoa)
|
|
|
|
|
|
|
|
FAR const char *pnt;
|
2019-02-06 22:50:52 +01:00
|
|
|
size_t size;
|
|
|
|
unsigned char len;
|
|
|
|
int total_len = 0;
|
|
|
|
|
2019-02-18 18:51:22 +01:00
|
|
|
#ifdef CONFIG_LIBC_NUMBERED_ARGS
|
|
|
|
int argnumber;
|
|
|
|
|
|
|
|
va_list work_ap;
|
|
|
|
va_copy(work_ap, ap);
|
|
|
|
#else
|
|
|
|
# define work_ap ap
|
|
|
|
#endif
|
2019-02-06 22:50:52 +01:00
|
|
|
|
|
|
|
for (; ; )
|
|
|
|
{
|
|
|
|
for (; ; )
|
|
|
|
{
|
|
|
|
c = fmt_char(fmt);
|
2019-02-16 13:28:23 +01:00
|
|
|
if (c == '\0')
|
2019-02-06 22:50:52 +01:00
|
|
|
{
|
|
|
|
goto ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (c == '%')
|
|
|
|
{
|
|
|
|
c = fmt_char(fmt);
|
|
|
|
if (c != '%')
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
putc(c, stream);
|
|
|
|
}
|
|
|
|
|
|
|
|
flags = 0;
|
|
|
|
width = 0;
|
|
|
|
prec = 0;
|
|
|
|
|
|
|
|
do
|
|
|
|
{
|
|
|
|
if (flags < FL_WIDTH)
|
|
|
|
{
|
|
|
|
switch (c)
|
|
|
|
{
|
|
|
|
case '0':
|
|
|
|
flags |= FL_ZFILL;
|
|
|
|
continue;
|
|
|
|
|
|
|
|
case '+':
|
|
|
|
flags |= FL_PLUS;
|
|
|
|
|
|
|
|
/* FALLTHROUGH */
|
|
|
|
|
|
|
|
case ' ':
|
|
|
|
flags |= FL_SPACE;
|
|
|
|
continue;
|
|
|
|
|
|
|
|
case '-':
|
|
|
|
flags |= FL_LPAD;
|
|
|
|
continue;
|
|
|
|
|
|
|
|
case '#':
|
|
|
|
flags |= FL_ALT;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (flags < FL_LONG)
|
|
|
|
{
|
2019-02-18 18:51:22 +01:00
|
|
|
#ifdef CONFIG_LIBC_NUMBERED_ARGS
|
|
|
|
if (c == '$')
|
|
|
|
{
|
|
|
|
if ((flags & FL_INDEX) == 0)
|
|
|
|
{
|
|
|
|
if (width == 0 || (flags & FL_PREC) != 0)
|
|
|
|
{
|
|
|
|
goto ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* It had been the argument number. */
|
|
|
|
|
|
|
|
argnumber = width;
|
|
|
|
flags |= FL_INDEX;
|
|
|
|
|
|
|
|
width = 0;
|
|
|
|
flags &= ~FL_WIDTH;
|
|
|
|
}
|
|
|
|
else if ((flags & FL_ASTERISK) != 0)
|
|
|
|
{
|
|
|
|
flags &= ~FL_ASTERISK;
|
|
|
|
va_end(work_ap);
|
|
|
|
va_copy(work_ap, ap);
|
|
|
|
|
|
|
|
if ((flags & FL_PREC) == 0)
|
|
|
|
{
|
|
|
|
/* Jump to index */
|
|
|
|
|
|
|
|
while (--width)
|
|
|
|
{
|
|
|
|
(void)va_arg(work_ap, int);
|
|
|
|
}
|
|
|
|
|
|
|
|
width = va_arg(work_ap, int);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Jump to index */
|
|
|
|
|
|
|
|
while (--prec)
|
|
|
|
{
|
|
|
|
(void)va_arg(work_ap, int);
|
|
|
|
}
|
|
|
|
|
|
|
|
prec = va_arg(work_ap, int);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
goto ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2019-02-06 22:50:52 +01:00
|
|
|
if (c >= '0' && c <= '9')
|
|
|
|
{
|
|
|
|
c -= '0';
|
2019-02-16 13:28:23 +01:00
|
|
|
if ((flags & FL_PREC) != 0)
|
2019-02-06 22:50:52 +01:00
|
|
|
{
|
|
|
|
prec = 10 * prec + c;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
width = 10 * width + c;
|
|
|
|
flags |= FL_WIDTH;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (c == '*')
|
|
|
|
{
|
2019-02-18 18:51:22 +01:00
|
|
|
#ifdef CONFIG_LIBC_NUMBERED_ARGS
|
|
|
|
if ((flags & FL_INDEX) != 0)
|
|
|
|
{
|
|
|
|
flags |= FL_ASTERISK;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2019-02-16 13:28:23 +01:00
|
|
|
if ((flags & FL_PREC) != 0)
|
2019-02-06 22:50:52 +01:00
|
|
|
{
|
2019-02-18 18:51:22 +01:00
|
|
|
prec = va_arg(work_ap, int);
|
2019-02-06 22:50:52 +01:00
|
|
|
if (prec < 0)
|
|
|
|
{
|
|
|
|
prec = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2019-02-18 18:51:22 +01:00
|
|
|
width = va_arg(work_ap, int);
|
2019-02-06 22:50:52 +01:00
|
|
|
flags |= FL_WIDTH;
|
2019-02-18 18:51:22 +01:00
|
|
|
|
2019-02-06 22:50:52 +01:00
|
|
|
if (width < 0)
|
|
|
|
{
|
|
|
|
width = -width;
|
|
|
|
flags |= FL_LPAD;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (c == '.')
|
|
|
|
{
|
2019-02-16 13:28:23 +01:00
|
|
|
if ((flags & FL_PREC) != 0)
|
2019-02-06 22:50:52 +01:00
|
|
|
{
|
|
|
|
goto ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
flags |= FL_PREC;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (c == 'l')
|
|
|
|
{
|
2019-02-16 13:28:23 +01:00
|
|
|
if ((flags & FL_LONG) != 0)
|
2019-02-06 22:50:52 +01:00
|
|
|
{
|
2019-02-17 14:27:47 +01:00
|
|
|
flags |= FL_REPD_TYPE;
|
2019-02-06 22:50:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
flags |= FL_LONG;
|
|
|
|
flags &= ~FL_SHORT;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (c == 'h')
|
|
|
|
{
|
2019-02-17 14:27:47 +01:00
|
|
|
if ((flags & FL_SHORT) != 0)
|
|
|
|
{
|
|
|
|
flags |= FL_REPD_TYPE;
|
|
|
|
}
|
|
|
|
|
2019-02-06 22:50:52 +01:00
|
|
|
flags |= FL_SHORT;
|
|
|
|
flags &= ~FL_LONG;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
while ((c = fmt_char(fmt)) != 0);
|
|
|
|
|
|
|
|
/* Only a format character is valid. */
|
|
|
|
|
|
|
|
# if 'F' != 'E'+1 || 'G' != 'F'+1 || 'f' != 'e'+1 || 'g' != 'f'+1
|
|
|
|
# error
|
|
|
|
# endif
|
|
|
|
|
2019-02-18 18:51:22 +01:00
|
|
|
# ifdef CONFIG_LIBC_NUMBERED_ARGS
|
|
|
|
if ((flags & FL_INDEX) != 0)
|
|
|
|
{
|
|
|
|
/* Jump to index */
|
|
|
|
|
|
|
|
va_end(work_ap);
|
|
|
|
va_copy(work_ap, ap);
|
|
|
|
|
|
|
|
while (--argnumber)
|
|
|
|
{
|
|
|
|
(void)va_arg(work_ap, int);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
# endif
|
|
|
|
|
2019-02-06 22:50:52 +01:00
|
|
|
# if PRINTF_LEVEL >= PRINTF_FLT
|
|
|
|
if (c >= 'E' && c <= 'G')
|
|
|
|
{
|
|
|
|
flags |= FL_FLTUPP;
|
|
|
|
c += 'e' - 'E';
|
|
|
|
goto flt_oper;
|
|
|
|
}
|
|
|
|
else if (c >= 'e' && c <= 'g')
|
|
|
|
{
|
|
|
|
int exp; /* Exponent of master decimal digit */
|
|
|
|
int n;
|
|
|
|
uint8_t sign; /* Sign character (or 0) */
|
|
|
|
uint8_t ndigs; /* Number of digits to convert */
|
|
|
|
uint8_t ndecimal; /* Digits after decimal (for 'f' format), 0 if
|
|
|
|
* no limit */
|
|
|
|
|
|
|
|
flags &= ~FL_FLTUPP;
|
|
|
|
|
|
|
|
flt_oper:
|
|
|
|
ndigs = 0;
|
2019-02-16 13:28:23 +01:00
|
|
|
if ((flags & FL_PREC) == 0)
|
2019-02-06 22:50:52 +01:00
|
|
|
{
|
|
|
|
prec = 6;
|
|
|
|
}
|
|
|
|
|
|
|
|
flags &= ~(FL_FLTEXP | FL_FLTFIX);
|
|
|
|
|
|
|
|
if (c == 'e')
|
|
|
|
{
|
|
|
|
ndigs = prec + 1;
|
|
|
|
ndecimal = 0;
|
|
|
|
flags |= FL_FLTEXP;
|
|
|
|
}
|
|
|
|
else if (c == 'f')
|
|
|
|
{
|
|
|
|
ndigs = DTOA_MAX_DIG;
|
|
|
|
ndecimal = prec;
|
|
|
|
flags |= FL_FLTFIX;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ndigs = prec;
|
|
|
|
ndecimal = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ndigs > DTOA_MAX_DIG)
|
|
|
|
{
|
|
|
|
ndigs = DTOA_MAX_DIG;
|
|
|
|
}
|
|
|
|
|
2019-02-18 18:51:22 +01:00
|
|
|
ndigs = __dtoa_engine(va_arg(work_ap, double), &_dtoa, ndigs,
|
|
|
|
ndecimal);
|
2019-02-06 22:50:52 +01:00
|
|
|
exp = _dtoa.exp;
|
|
|
|
|
|
|
|
sign = 0;
|
|
|
|
if ((_dtoa.flags & DTOA_MINUS) && !(_dtoa.flags & DTOA_NAN))
|
|
|
|
{
|
|
|
|
sign = '-';
|
|
|
|
}
|
2019-02-16 13:28:23 +01:00
|
|
|
else if ((flags & FL_PLUS) != 0)
|
2019-02-06 22:50:52 +01:00
|
|
|
{
|
|
|
|
sign = '+';
|
|
|
|
}
|
2019-02-16 13:28:23 +01:00
|
|
|
else if ((flags & FL_SPACE) != 0)
|
2019-02-06 22:50:52 +01:00
|
|
|
{
|
|
|
|
sign = ' ';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (_dtoa.flags & (DTOA_NAN | DTOA_INF))
|
|
|
|
{
|
2019-02-18 18:51:22 +01:00
|
|
|
FAR const char *p;
|
2019-02-06 22:50:52 +01:00
|
|
|
|
|
|
|
ndigs = sign ? 4 : 3;
|
|
|
|
if (width > ndigs)
|
|
|
|
{
|
|
|
|
width -= ndigs;
|
2019-02-16 13:28:23 +01:00
|
|
|
if ((flags & FL_LPAD) == 0)
|
2019-02-06 22:50:52 +01:00
|
|
|
{
|
|
|
|
do
|
|
|
|
{
|
|
|
|
putc(' ', stream);
|
|
|
|
}
|
|
|
|
while (--width);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
width = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sign)
|
|
|
|
{
|
|
|
|
putc(sign, stream);
|
|
|
|
}
|
|
|
|
|
|
|
|
p = "inf";
|
|
|
|
if (_dtoa.flags & DTOA_NAN)
|
|
|
|
{
|
|
|
|
p = "nan";
|
|
|
|
}
|
|
|
|
|
|
|
|
# if ('I'-'i' != 'N'-'n') || ('I'-'i' != 'F'-'f') || ('I'-'i' != 'A'-'a')
|
|
|
|
# error
|
|
|
|
# endif
|
|
|
|
while ((ndigs = *p) != 0)
|
|
|
|
{
|
2019-02-16 13:28:23 +01:00
|
|
|
if ((flags & FL_FLTUPP) != 0)
|
2019-02-06 22:50:52 +01:00
|
|
|
{
|
|
|
|
ndigs += 'I' - 'i';
|
|
|
|
}
|
|
|
|
|
|
|
|
putc(ndigs, stream);
|
|
|
|
p++;
|
|
|
|
}
|
|
|
|
|
|
|
|
goto tail;
|
|
|
|
}
|
|
|
|
|
2019-02-16 13:28:23 +01:00
|
|
|
if ((flags & (FL_FLTEXP | FL_FLTFIX)) == 0)
|
2019-02-06 22:50:52 +01:00
|
|
|
{
|
|
|
|
/* 'g(G)' format */
|
|
|
|
|
|
|
|
prec = ndigs;
|
|
|
|
|
|
|
|
/* Remove trailing zeros */
|
|
|
|
|
|
|
|
while (ndigs > 0 && _dtoa.digits[ndigs - 1] == '0')
|
|
|
|
{
|
|
|
|
ndigs--;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (-4 <= exp && exp < prec)
|
|
|
|
{
|
|
|
|
flags |= FL_FLTFIX;
|
|
|
|
|
|
|
|
if (exp < 0 || ndigs > exp)
|
|
|
|
{
|
|
|
|
prec = ndigs - (exp + 1);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
prec = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Limit displayed precision to available precision */
|
|
|
|
|
|
|
|
prec = ndigs - 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Conversion result length, width := free space length */
|
|
|
|
|
2019-02-16 13:28:23 +01:00
|
|
|
if ((flags & FL_FLTFIX) != 0)
|
2019-02-06 22:50:52 +01:00
|
|
|
{
|
|
|
|
n = (exp > 0 ? exp + 1 : 1);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
n = 5; /* 1e+00 */
|
|
|
|
}
|
|
|
|
|
2019-02-16 13:28:23 +01:00
|
|
|
if (sign != 0)
|
2019-02-06 22:50:52 +01:00
|
|
|
{
|
|
|
|
n += 1;
|
|
|
|
}
|
|
|
|
|
2019-02-16 13:28:23 +01:00
|
|
|
if (prec != 0)
|
2019-02-06 22:50:52 +01:00
|
|
|
{
|
|
|
|
n += prec + 1;
|
|
|
|
}
|
2019-02-16 13:28:23 +01:00
|
|
|
else if ((flags & FL_ALT) != 0)
|
2019-02-06 22:50:52 +01:00
|
|
|
{
|
|
|
|
n += 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
width = width > n ? width - n : 0;
|
|
|
|
|
|
|
|
/* Output before first digit */
|
|
|
|
|
2019-02-16 13:28:23 +01:00
|
|
|
if ((flags & (FL_LPAD | FL_ZFILL)) == 0)
|
2019-02-06 22:50:52 +01:00
|
|
|
{
|
|
|
|
while (width)
|
|
|
|
{
|
|
|
|
putc(' ', stream);
|
|
|
|
width--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-16 13:28:23 +01:00
|
|
|
if (sign != 0)
|
2019-02-06 22:50:52 +01:00
|
|
|
{
|
|
|
|
putc(sign, stream);
|
|
|
|
}
|
|
|
|
|
2019-02-16 13:28:23 +01:00
|
|
|
if ((flags & FL_LPAD) == 0)
|
2019-02-06 22:50:52 +01:00
|
|
|
{
|
|
|
|
while (width)
|
|
|
|
{
|
|
|
|
putc('0', stream);
|
|
|
|
width--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-16 13:28:23 +01:00
|
|
|
if ((flags & FL_FLTFIX) != 0)
|
2019-02-06 22:50:52 +01:00
|
|
|
{
|
|
|
|
/* 'f' format */
|
|
|
|
|
|
|
|
char out;
|
|
|
|
|
|
|
|
/* At this point, we should have exp exponent of leftmost digit
|
|
|
|
* in _dtoa.digits ndigs number of buffer digits to print prec
|
|
|
|
* number of digits after decimal In the loop, 'n' walks over
|
|
|
|
* the exponent value
|
|
|
|
*/
|
|
|
|
|
|
|
|
n = exp > 0 ? exp : 0; /* Exponent of left digit */
|
|
|
|
do
|
|
|
|
{
|
|
|
|
|
|
|
|
/* Insert decimal point at correct place */
|
|
|
|
|
|
|
|
if (n == -1)
|
|
|
|
{
|
|
|
|
putc('.', stream);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Pull digits from buffer when in-range, otherwise use 0 */
|
|
|
|
|
|
|
|
if (0 <= exp - n && exp - n < ndigs)
|
|
|
|
{
|
|
|
|
out = _dtoa.digits[exp - n];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
out = '0';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (--n < -prec)
|
|
|
|
{
|
2019-02-16 13:28:23 +01:00
|
|
|
if ((flags & FL_ALT) != 0 && n == -1)
|
2019-02-06 22:50:52 +01:00
|
|
|
{
|
|
|
|
putc('.', stream);
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
putc(out, stream);
|
|
|
|
}
|
|
|
|
while (1);
|
|
|
|
|
|
|
|
if (n == exp && (_dtoa.digits[0] > '5' ||
|
|
|
|
(_dtoa.digits[0] == '5' && !(_dtoa.flags & DTOA_CARRY))))
|
|
|
|
{
|
|
|
|
out = '1';
|
|
|
|
}
|
|
|
|
|
|
|
|
putc(out, stream);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* 'e(E)' format
|
|
|
|
*
|
|
|
|
* Mantissa
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (_dtoa.digits[0] != '1')
|
|
|
|
{
|
|
|
|
_dtoa.flags &= ~DTOA_CARRY;
|
|
|
|
}
|
|
|
|
|
|
|
|
putc(_dtoa.digits[0], stream);
|
|
|
|
if (prec > 0)
|
|
|
|
{
|
2019-02-16 13:28:23 +01:00
|
|
|
uint8_t pos;
|
|
|
|
|
2019-02-06 22:50:52 +01:00
|
|
|
putc('.', stream);
|
|
|
|
for (pos = 1; pos < 1 + prec; pos++)
|
2019-02-16 13:28:23 +01:00
|
|
|
{
|
|
|
|
putc(pos < ndigs ? _dtoa.digits[pos] : '0', stream);
|
|
|
|
}
|
2019-02-06 22:50:52 +01:00
|
|
|
}
|
2019-02-16 13:28:23 +01:00
|
|
|
else if ((flags & FL_ALT) != 0)
|
2019-02-06 22:50:52 +01:00
|
|
|
{
|
|
|
|
putc('.', stream);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Exponent */
|
|
|
|
|
|
|
|
putc(flags & FL_FLTUPP ? 'E' : 'e', stream);
|
|
|
|
ndigs = '+';
|
|
|
|
if (exp < 0 || (exp == 0 && (_dtoa.flags & DTOA_CARRY) != 0))
|
|
|
|
{
|
|
|
|
exp = -exp;
|
|
|
|
ndigs = '-';
|
|
|
|
}
|
|
|
|
|
|
|
|
putc(ndigs, stream);
|
|
|
|
for (ndigs = '0'; exp >= 10; exp -= 10)
|
|
|
|
{
|
|
|
|
ndigs += 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
putc(ndigs, stream);
|
|
|
|
putc('0' + exp, stream);
|
|
|
|
}
|
|
|
|
|
|
|
|
goto tail;
|
|
|
|
}
|
|
|
|
|
|
|
|
# else /* to: PRINTF_LEVEL >= PRINTF_FLT */
|
|
|
|
if ((c >= 'E' && c <= 'G') || (c >= 'e' && c <= 'g'))
|
|
|
|
{
|
2019-02-18 18:51:22 +01:00
|
|
|
(void)va_arg(work_ap, double);
|
|
|
|
pnt = "*float*";
|
2019-02-06 22:50:52 +01:00
|
|
|
size = sizeof("*float*") - 1;
|
|
|
|
goto str_lpad;
|
|
|
|
}
|
|
|
|
# endif
|
|
|
|
|
|
|
|
switch (c)
|
|
|
|
{
|
|
|
|
|
|
|
|
case 'c':
|
2019-02-18 18:51:22 +01:00
|
|
|
buf[0] = va_arg(work_ap, int);
|
|
|
|
pnt = (FAR char *)buf;
|
2019-02-06 22:50:52 +01:00
|
|
|
size = 1;
|
|
|
|
goto str_lpad;
|
|
|
|
|
|
|
|
case 's':
|
|
|
|
case 'S':
|
2019-02-18 18:51:22 +01:00
|
|
|
pnt = va_arg(work_ap, FAR char *);
|
2019-02-06 22:50:52 +01:00
|
|
|
size = strnlen(pnt, (flags & FL_PREC) ? prec : ~0);
|
|
|
|
|
|
|
|
str_lpad:
|
2019-02-16 13:28:23 +01:00
|
|
|
if ((flags & FL_LPAD) == 0)
|
2019-02-06 22:50:52 +01:00
|
|
|
{
|
|
|
|
while (size < width)
|
|
|
|
{
|
|
|
|
putc(' ', stream);
|
|
|
|
width--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
while (size)
|
|
|
|
{
|
|
|
|
putc(*pnt++, stream);
|
2019-02-16 13:28:23 +01:00
|
|
|
if (width != 0)
|
2019-02-06 22:50:52 +01:00
|
|
|
{
|
|
|
|
width -= 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
size -= 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
goto tail;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (c == 'd' || c == 'i')
|
|
|
|
{
|
2019-02-16 13:28:23 +01:00
|
|
|
#ifndef CONFIG_LIBC_LONG_LONG
|
2019-02-06 22:50:52 +01:00
|
|
|
long x;
|
2019-02-16 13:28:23 +01:00
|
|
|
#else
|
2019-02-16 02:10:40 +01:00
|
|
|
long long x;
|
2019-02-06 22:50:52 +01:00
|
|
|
|
2019-02-17 14:27:47 +01:00
|
|
|
if ((flags & FL_LONG) != 0 && (flags & FL_REPD_TYPE) != 0)
|
2019-02-16 02:10:40 +01:00
|
|
|
{
|
2019-02-18 18:51:22 +01:00
|
|
|
x = va_arg(work_ap, long long);
|
2019-02-16 02:10:40 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
if ((flags & FL_LONG) != 0)
|
2019-02-06 22:50:52 +01:00
|
|
|
{
|
2019-02-18 18:51:22 +01:00
|
|
|
x = va_arg(work_ap, long);
|
2019-02-06 22:50:52 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2019-02-18 18:51:22 +01:00
|
|
|
x = va_arg(work_ap, int);
|
2019-02-16 13:28:23 +01:00
|
|
|
if ((flags & FL_SHORT) != 0)
|
2019-02-06 22:50:52 +01:00
|
|
|
{
|
2019-02-17 14:27:47 +01:00
|
|
|
if ((flags & FL_REPD_TYPE) == 0)
|
|
|
|
{
|
|
|
|
x = (short)x;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
x = (signed char)x;
|
|
|
|
}
|
2019-02-06 22:50:52 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
flags &= ~(FL_NEGATIVE | FL_ALT);
|
|
|
|
if (x < 0)
|
|
|
|
{
|
|
|
|
x = -x;
|
|
|
|
flags |= FL_NEGATIVE;
|
|
|
|
}
|
|
|
|
|
2019-02-16 13:28:23 +01:00
|
|
|
if ((flags & FL_PREC) != 0 && prec == 0 && x == 0)
|
2019-02-06 22:50:52 +01:00
|
|
|
{
|
|
|
|
c = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2019-02-18 18:51:22 +01:00
|
|
|
c = __ultoa_invert(x, (FAR char *)buf, 10) - (FAR char *)buf;
|
2019-02-06 22:50:52 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2019-02-16 02:10:40 +01:00
|
|
|
int base;
|
2019-02-16 13:28:23 +01:00
|
|
|
#ifndef CONFIG_LIBC_LONG_LONG
|
|
|
|
unsigned long x;
|
|
|
|
#else
|
2019-02-16 02:10:40 +01:00
|
|
|
unsigned long long x;
|
2019-02-06 22:50:52 +01:00
|
|
|
|
2019-02-17 14:27:47 +01:00
|
|
|
if ((flags & FL_LONG) != 0 && (flags & FL_REPD_TYPE) != 0)
|
2019-02-16 02:10:40 +01:00
|
|
|
{
|
2019-02-18 18:51:22 +01:00
|
|
|
x = va_arg(work_ap, unsigned long long);
|
2019-02-16 02:10:40 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
if ((flags & FL_LONG) != 0)
|
2019-02-06 22:50:52 +01:00
|
|
|
{
|
2019-02-18 18:51:22 +01:00
|
|
|
x = va_arg(work_ap, unsigned long);
|
2019-02-06 22:50:52 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2019-02-18 18:51:22 +01:00
|
|
|
x = va_arg(work_ap, unsigned int);
|
2019-02-16 13:28:23 +01:00
|
|
|
if ((flags & FL_SHORT) != 0)
|
|
|
|
{
|
2019-02-17 14:27:47 +01:00
|
|
|
if ((flags & FL_REPD_TYPE) == 0)
|
|
|
|
{
|
|
|
|
x = (unsigned short)x;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
x = (unsigned char)x;
|
|
|
|
}
|
2019-02-16 13:28:23 +01:00
|
|
|
}
|
2019-02-06 22:50:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
flags &= ~(FL_PLUS | FL_SPACE);
|
|
|
|
|
|
|
|
switch (c)
|
|
|
|
{
|
|
|
|
case 'u':
|
|
|
|
flags &= ~FL_ALT;
|
|
|
|
base = 10;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'o':
|
|
|
|
base = 8;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'p':
|
|
|
|
flags |= FL_ALT;
|
|
|
|
|
|
|
|
/* no break */
|
|
|
|
|
|
|
|
case 'x':
|
2019-02-16 13:28:23 +01:00
|
|
|
if ((flags & FL_ALT) != 0)
|
|
|
|
{
|
|
|
|
flags |= FL_ALTHEX;
|
|
|
|
}
|
|
|
|
|
2019-02-06 22:50:52 +01:00
|
|
|
base = 16;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'X':
|
2019-02-16 13:28:23 +01:00
|
|
|
if ((flags & FL_ALT) != 0)
|
|
|
|
{
|
|
|
|
flags |= (FL_ALTHEX | FL_ALTUPP);
|
|
|
|
}
|
|
|
|
|
2019-02-06 22:50:52 +01:00
|
|
|
base = 16 | XTOA_UPPER;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
putc('%', stream);
|
|
|
|
putc(c, stream);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2019-02-16 13:28:23 +01:00
|
|
|
if ((flags & FL_PREC) != 0 && prec == 0 && x == 0)
|
2019-02-06 22:50:52 +01:00
|
|
|
{
|
|
|
|
c = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2019-02-18 18:51:22 +01:00
|
|
|
c = __ultoa_invert(x, (FAR char *)buf, base) - (FAR char *)buf;
|
2019-02-06 22:50:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
flags &= ~FL_NEGATIVE;
|
|
|
|
}
|
|
|
|
|
|
|
|
len = c;
|
|
|
|
|
2019-02-16 13:28:23 +01:00
|
|
|
if ((flags & FL_PREC) != 0)
|
2019-02-06 22:50:52 +01:00
|
|
|
{
|
|
|
|
flags &= ~FL_ZFILL;
|
|
|
|
if (len < prec)
|
|
|
|
{
|
|
|
|
len = prec;
|
2019-02-16 13:28:23 +01:00
|
|
|
if ((flags & FL_ALT) != 0 && (flags & FL_ALTHEX) == 0)
|
2019-02-06 22:50:52 +01:00
|
|
|
{
|
|
|
|
flags &= ~FL_ALT;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-16 13:28:23 +01:00
|
|
|
if ((flags & FL_ALT) != 0)
|
2019-02-06 22:50:52 +01:00
|
|
|
{
|
|
|
|
if (buf[c - 1] == '0')
|
|
|
|
{
|
|
|
|
flags &= ~(FL_ALT | FL_ALTHEX | FL_ALTUPP);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
len += 1;
|
2019-02-16 13:28:23 +01:00
|
|
|
if ((flags & FL_ALTHEX) != 0)
|
2019-02-06 22:50:52 +01:00
|
|
|
{
|
|
|
|
len += 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-02-16 13:28:23 +01:00
|
|
|
else if ((flags & (FL_NEGATIVE | FL_PLUS | FL_SPACE)) != 0)
|
2019-02-06 22:50:52 +01:00
|
|
|
{
|
|
|
|
len += 1;
|
|
|
|
}
|
|
|
|
|
2019-02-16 13:28:23 +01:00
|
|
|
if ((flags & FL_LPAD) == 0)
|
2019-02-06 22:50:52 +01:00
|
|
|
{
|
2019-02-16 13:28:23 +01:00
|
|
|
if ((flags & FL_ZFILL) != 0)
|
2019-02-06 22:50:52 +01:00
|
|
|
{
|
|
|
|
prec = c;
|
|
|
|
if (len < width)
|
|
|
|
{
|
|
|
|
prec += width - len;
|
|
|
|
len = width;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
while (len < width)
|
|
|
|
{
|
|
|
|
putc(' ', stream);
|
|
|
|
len++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
width = (len < width) ? width - len : 0;
|
|
|
|
|
2019-02-16 13:28:23 +01:00
|
|
|
if ((flags & FL_ALT) != 0)
|
2019-02-06 22:50:52 +01:00
|
|
|
{
|
|
|
|
putc('0', stream);
|
2019-02-16 13:28:23 +01:00
|
|
|
if ((flags & FL_ALTHEX) != 0)
|
2019-02-06 22:50:52 +01:00
|
|
|
{
|
|
|
|
putc(flags & FL_ALTUPP ? 'X' : 'x', stream);
|
|
|
|
}
|
|
|
|
}
|
2019-02-16 13:28:23 +01:00
|
|
|
else if ((flags & (FL_NEGATIVE | FL_PLUS | FL_SPACE)) != 0)
|
2019-02-06 22:50:52 +01:00
|
|
|
{
|
|
|
|
unsigned char z = ' ';
|
2019-02-16 13:28:23 +01:00
|
|
|
if ((flags & FL_PLUS) != 0)
|
2019-02-06 22:50:52 +01:00
|
|
|
{
|
|
|
|
z = '+';
|
|
|
|
}
|
|
|
|
|
2019-02-16 13:28:23 +01:00
|
|
|
if ((flags & FL_NEGATIVE) != 0)
|
2019-02-06 22:50:52 +01:00
|
|
|
{
|
|
|
|
z = '-';
|
|
|
|
}
|
|
|
|
|
|
|
|
putc(z, stream);
|
|
|
|
}
|
|
|
|
|
|
|
|
while (prec > c)
|
|
|
|
{
|
|
|
|
putc('0', stream);
|
|
|
|
prec--;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (c)
|
|
|
|
{
|
|
|
|
putc(buf[--c], stream);
|
|
|
|
}
|
|
|
|
|
|
|
|
tail:
|
|
|
|
|
|
|
|
/* Tail is possible. */
|
|
|
|
|
|
|
|
while (width)
|
|
|
|
{
|
|
|
|
putc(' ', stream);
|
|
|
|
width--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ret:
|
2019-02-18 18:51:22 +01:00
|
|
|
|
|
|
|
#ifdef CONFIG_LIBC_NUMBERED_ARGS
|
|
|
|
va_end(work_ap);
|
|
|
|
#endif
|
|
|
|
|
2019-02-06 22:50:52 +01:00
|
|
|
return total_len;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* PRINTF_LEVEL > PRINTF_MIN */
|