]>
git.saurik.com Git - apple/libc.git/blob - stdio/FreeBSD/xprintf_float.c
2 * Copyright (c) 2005 Poul-Henning Kamp
3 * Copyright (c) 1990, 1993
4 * The Regents of the University of California. All rights reserved.
6 * This code is derived from software contributed to Berkeley by
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
17 * 3. Neither the name of the University nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 * $FreeBSD: src/lib/libc/stdio/xprintf_float.c,v 1.1 2005/12/16 18:56:38 phk Exp $
36 #include <namespace.h>
37 #include "xlocale_private.h"
46 #define freedtoa __freedtoa
53 #include "xprintf_private.h"
54 #include <un-namespace.h>
57 * The size of the buffer we use as scratch space for integer
58 * conversions, among other things. Technically, we would need the
59 * most space for base 10 conversions with thousands' grouping
60 * characters between each pair of digits. 100 bytes is a
61 * conservative overestimate even for a 128-bit uintmax_t.
65 #define DEFPREC 6 /* Default FP precision */
68 /* various globals ---------------------------------------------------*/
71 /* padding function---------------------------------------------------*/
73 #define PRINTANDPAD(p, ep, len, with) do { \
78 ret += __printf_puts(io, (p), n2); \
79 ret += __printf_pad(io, (len) - (n2 > 0 ? n2 : 0), (with)); \
82 /* misc --------------------------------------------------------------*/
84 extern const char *__fix_nogrouping(const char *str
);
86 #define to_char(n) ((n) + '0')
89 exponent(char *p0
, int expo
, int fmtch
)
92 char expbuf
[MAXEXPDIG
];
102 t
= expbuf
+ MAXEXPDIG
;
105 *--t
= to_char(expo
% 10);
106 } while ((expo
/= 10) > 9);
107 *--t
= to_char(expo
);
108 for (; t
< expbuf
+ MAXEXPDIG
; *p
++ = *t
++)
113 * Exponents for decimal floating point conversions
114 * (%[eEgG]) must be at least two characters long,
115 * whereas exponents for hexadecimal conversions can
116 * be only one character long.
118 if (fmtch
== 'e' || fmtch
== 'E')
120 *p
++ = to_char(expo
);
125 /* 'f' ---------------------------------------------------------------*/
127 __private_extern__
int
128 __printf_arginfo_float(const struct printf_info
*pi
, size_t n
, int *argt
)
137 if (pi
->is_long_double
)
138 argt
[0] |= PA_FLAG_LONG_DOUBLE
;
146 * We can decompose the printed representation of floating
147 * point numbers into several parts, some of which may be empty:
149 * [+|-| ] [0x|0X] MMM . NNN [e|E|p|P] [+|-] ZZ
152 * A: 'sign' holds this value if present; '\0' otherwise
153 * B: ox[1] holds the 'x' or 'X'; '\0' if not hexadecimal
154 * C: cp points to the string MMMNNN. Leading and trailing
155 * zeros are not in the string and must be added.
156 * D: expchar holds this character; '\0' if no exponent, e.g. %f
157 * F: at least two digits for decimal, at least one digit for hex
160 __private_extern__
int
161 __printf_render_float(struct __printf_io
*io
, const struct printf_info
*pi
, const void *const *arg
)
163 int prec
; /* precision from format; <0 for N/A */
164 char *dtoaresult
; /* buffer allocated by dtoa */
165 char expchar
; /* exponent character: [eEpP\0] */
167 int expt
; /* integer value of exponent */
168 int signflag
; /* true if float is negative */
169 char *dtoaend
; /* pointer to end of converted digits */
170 char sign
; /* sign prefix (' ', '+', '-', or \0) */
171 int size
; /* size of converted field or string */
172 int ndig
; /* actual number of digits returned by dtoa */
173 int expsize
; /* character count for expstr */
174 char expstr
[MAXEXPDIG
+2]; /* buffer for exponent string: e+ZZZ */
175 int nseps
; /* number of group separators with ' */
176 int nrepeats
; /* number of repeats of the last group */
177 const char *grouping
; /* locale specific numeric grouping rules */
178 int lead
; /* sig figs before decimal or group sep */
181 int realsz
; /* field size expanded by dprec, sign, etc */
182 int dprec
; /* a copy of prec if [diouxX], 0 otherwise */
183 char ox
[2]; /* space for 0x; ox[1] is either x, X, or \0 */
184 int prsize
; /* max size of printed field */
185 int ret
; /* return value accumulator */
186 const char *decimal_point
; /* locale specific decimal point */
187 int decimal_point_len
; /* length of locale specific decimal point */
188 int n2
; /* XXX: for PRINTANDPAD */
189 const char *thousands_sep
; /* locale specific thousands separator */
190 int thousands_sep_len
; /* length of locale specific thousands separator */
191 char buf
[BUF
]; /* buffer with space for digits of uintmax_t */
196 if (pi
->is_vec
) return __xprintf_vector(io
, pi
, arg
);
205 thousands_sep
= localeconv_l(pi
->loc
)->thousands_sep
;
206 thousands_sep_len
= strlen(thousands_sep
);
209 grouping
= __fix_nogrouping(localeconv_l(pi
->loc
)->grouping
);
210 decimal_point
= localeconv_l(pi
->loc
)->decimal_point
;
211 decimal_point_len
= strlen(decimal_point
);
217 if (pi
->spec
== 'a') {
219 xdigs
= __lowercase_hex
;
223 xdigs
= __uppercase_hex
;
228 if (pi
->is_long_double
) {
229 ld
= *((long double *)arg
[0]);
231 __hldtoa(ld
, xdigs
, prec
,
232 &expt
, &signflag
, &dtoaend
);
234 d
= *((double *)arg
[0]);
236 __hdtoa(d
, xdigs
, prec
,
237 &expt
, &signflag
, &dtoaend
);
247 if (prec
< 0) /* account for digit before decpt */
258 expchar
= pi
->spec
- ('g' - 'e');
263 assert(pi
->spec
== 'f');
268 if (pi
->is_long_double
) {
269 ld
= *((long double *)arg
[0]);
271 __ldtoa(&ld
, expchar
? 2 : 3, prec
,
272 &expt
, &signflag
, &dtoaend
);
274 d
= *((double *)arg
[0]);
276 dtoa(d
, expchar
? 2 : 3, prec
,
277 &expt
, &signflag
, &dtoaend
);
284 if (expt
== INT_MAX
) { /* inf or nan */
286 cp
= (pi
->spec
>= 'a') ? "nan" : "NAN";
289 cp
= (pi
->spec
>= 'a') ? "inf" : "INF";
295 if (pi
->spec
== 'g' || pi
->spec
== 'G') {
296 if (expt
> -4 && expt
<= prec
) {
297 /* Make %[gG] smell like %[fF] */
307 * Make %[gG] smell like %[eE], but
308 * trim trailing zeroes if no # flag.
315 expsize
= exponent(expstr
, expt
- 1, expchar
);
316 size
= expsize
+ prec
;
317 if (prec
> 1 || pi
->alt
)
320 /* space for digits before decimal point */
325 /* space for decimal pt and following digits */
328 if (grouping
&& expt
> 0) {
329 /* space for thousands' grouping */
330 nseps
= nrepeats
= 0;
332 while (*grouping
!= CHAR_MAX
) {
333 if (lead
<= *grouping
)
342 size
+= nseps
+ nrepeats
;
349 * All reasonable formats wind up here. At this point, `cp'
350 * points to a string which (if not flags&LADJUST) should be
351 * padded out to `width' places. If flags&ZEROPAD, it should
352 * first be prefixed by any sign or other prefix; otherwise,
353 * it should be blank padded before the prefix is emitted.
354 * After any left-hand padding and prefixing, emit zeroes
355 * required by a decimal [diouxX] precision, then print the
356 * string proper, then emit zeroes required by any leftover
357 * floating precision; finally, if LADJUST, pad with blanks.
359 * Compute actual size, so we know how much to pad.
360 * size excludes decimal prec; realsz includes it.
362 realsz
= dprec
> size
? dprec
: size
;
368 prsize
= pi
->width
> realsz
? pi
->width
: realsz
;
370 /* right-adjusting blank padding */
371 if (pi
->pad
!= '0' && pi
->left
== 0)
372 ret
+= __printf_pad(io
, pi
->width
- realsz
, 0);
376 ret
+= __printf_puts(io
, &sign
, 1);
378 if (ox
[1]) { /* ox[1] is either x, X, or \0 */
380 ret
+= __printf_puts(io
, ox
, 2);
383 /* right-adjusting zero padding */
384 if (pi
->pad
== '0' && pi
->left
== 0)
385 ret
+= __printf_pad(io
, pi
->width
- realsz
, 1);
387 /* leading zeroes from decimal precision */
388 ret
+= __printf_pad(io
, dprec
- size
, 1);
391 ret
+= __printf_puts(io
, cp
, size
);
393 /* glue together f_p fragments */
394 if (!expchar
) { /* %[fF] or sufficiently short %[gG] */
396 ret
+= __printf_puts(io
, "0", 1);
398 ret
+= __printf_puts(io
, decimal_point
, decimal_point_len
);
399 ret
+= __printf_pad(io
, -expt
, 1);
400 /* already handled initial 0's */
403 PRINTANDPAD(cp
, dtoaend
, lead
, 1);
406 while (nseps
>0 || nrepeats
>0) {
413 ret
+= __printf_puts(io
, thousands_sep
, thousands_sep_len
);
414 PRINTANDPAD(cp
,dtoaend
,
422 ret
+= __printf_puts(io
, decimal_point
, decimal_point_len
);
424 PRINTANDPAD(cp
, dtoaend
, prec
, 1);
425 } else { /* %[eE] or sufficiently long %[gG] */
426 if (prec
> 1 || pi
->alt
) {
428 memcpy(buf
+ 1, decimal_point
, decimal_point_len
);
429 ret
+= __printf_puts(io
, buf
, decimal_point_len
+ 1);
430 ret
+= __printf_puts(io
, cp
, ndig
-1);
431 ret
+= __printf_pad(io
, prec
- ndig
, 1);
433 ret
+= __printf_puts(io
, cp
, 1);
434 ret
+= __printf_puts(io
, expstr
, expsize
);
437 /* left-adjusting padding (always blank) */
439 ret
+= __printf_pad(io
, pi
->width
- realsz
, 0);
442 if (dtoaresult
!= NULL
)
443 freedtoa(dtoaresult
);