1 /* __gmp_snprintf_funs -- support for gmp_snprintf and gmp_vsnprintf.
3 THE FUNCTIONS IN THIS FILE ARE FOR INTERNAL USE ONLY. THEY'RE ALMOST
4 CERTAIN TO BE SUBJECT TO INCOMPATIBLE CHANGES OR DISAPPEAR COMPLETELY IN
5 FUTURE GNU MP RELEASES.
7 Copyright 2001, 2002 Free Software Foundation, Inc.
9 This file is part of the GNU MP Library.
11 The GNU MP Library is free software; you can redistribute it and/or modify
12 it under the terms of the GNU Lesser General Public License as published by
13 the Free Software Foundation; either version 3 of the License, or (at your
14 option) any later version.
16 The GNU MP Library is distributed in the hope that it will be useful, but
17 WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
18 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
19 License for more details.
21 You should have received a copy of the GNU Lesser General Public License
22 along with the GNU MP Library. If not, see http://www.gnu.org/licenses/. */
40 #define vsnprintf __gmp_replacement_vsnprintf
44 /* glibc 2.0.x vsnprintf returns either -1 or size-1 for an overflow, with
45 no indication how big the output would have been. It's necessary to
46 re-run to determine that size.
48 "size-1" would mean success from a C99 vsnprintf, and the re-run is
49 unnecessary in this case, but we don't bother to try to detect what sort
50 of vsnprintf we've got. size-1 should occur rarely in normal
53 vsnprintf might trash it's given ap (it does for instance in glibc 2.1.3
54 on powerpc), so copy it in case we need to use it to probe for the size
55 output that would have been produced. Note there's no need to preserve
56 it for our callers, just for ourselves. */
59 gmp_snprintf_format (struct gmp_snprintf_t
*d
, const char *fmt
,
62 int ret
, step
, alloc
, avail
;
66 ASSERT (d
->size
>= 0);
71 va_copy (ap
, orig_ap
);
72 ret
= vsnprintf (d
->buf
, avail
, fmt
, ap
);
75 ASSERT (strlen (d
->buf
) == avail
-1);
79 step
= MIN (ret
, avail
-1);
86 /* probably glibc 2.0.x truncated output, probe for actual size */
87 alloc
= MAX (128, ret
);
91 /* no space to write anything, just probe for size */
98 p
= __GMP_ALLOCATE_FUNC_TYPE (alloc
, char);
99 va_copy (ap
, orig_ap
);
100 ret
= vsnprintf (p
, alloc
, fmt
, ap
);
101 (*__gmp_free_func
) (p
, alloc
);
103 while (ret
== alloc
-1 || ret
== -1);
109 gmp_snprintf_memory (struct gmp_snprintf_t
*d
, const char *str
, size_t len
)
113 ASSERT (d
->size
>= 0);
117 n
= MIN (d
->size
-1, len
);
118 memcpy (d
->buf
, str
, n
);
126 gmp_snprintf_reps (struct gmp_snprintf_t
*d
, int c
, int reps
)
131 ASSERT (d
->size
>= 0);
135 n
= MIN (d
->size
-1, reps
);
136 memset (d
->buf
, c
, n
);
144 gmp_snprintf_final (struct gmp_snprintf_t
*d
)
151 const struct doprnt_funs_t __gmp_snprintf_funs
= {
152 (doprnt_format_t
) gmp_snprintf_format
,
153 (doprnt_memory_t
) gmp_snprintf_memory
,
154 (doprnt_reps_t
) gmp_snprintf_reps
,
155 (doprnt_final_t
) gmp_snprintf_final