1 /* Output like sprintf to a buffer of specified size.
2 Also takes args differently: pass one pointer to an array of strings
3 in addition to the format string which is separate.
4 Copyright (C) 1985 Free Software Foundation, Inc.
6 This file is part of GNU Emacs.
8 GNU Emacs is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
13 GNU Emacs is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GNU Emacs; see the file COPYING. If not, write to
20 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA. */
29 extern long *xmalloc (), *xrealloc ();
31 static int doprnt1 ();
33 /* Generate output from a format-spec FORMAT,
34 terminated at position FORMAT_END.
35 Output goes in BUFFER, which has room for BUFSIZE chars.
36 If the output does not fit, truncate it to fit.
37 Returns the number of characters stored into BUFFER.
38 ARGS points to the vector of arguments, and NARGS says how many.
39 A double counts as two arguments.
40 String arguments are passed as C strings.
41 Integers are passed as C integers. */
43 doprnt (buffer
, bufsize
, format
, format_end
, nargs
, args
)
51 return doprnt1 (0, buffer
, bufsize
, format
, format_end
, nargs
, args
);
54 /* Like doprnt except that strings in ARGS are passed
57 doprnt_lisp (buffer
, bufsize
, format
, format_end
, nargs
, args
)
65 return doprnt1 (1, buffer
, bufsize
, format
, format_end
, nargs
, args
);
69 doprnt1 (lispstrings
, buffer
, bufsize
, format
, format_end
, nargs
, args
)
78 int cnt
= 0; /* Number of arg to gobble next */
79 register char *fmt
= format
; /* Pointer into format string */
80 register char *bufptr
= buffer
; /* Pointer into output buffer.. */
82 /* Use this for sprintf unless we need something really big. */
85 /* Size of sprintf_buffer. */
86 int size_allocated
= 100;
88 /* Buffer to use for sprintf. Either tembuf or same as BIG_BUFFER. */
89 char *sprintf_buffer
= tembuf
;
91 /* Buffer we have got with malloc. */
96 char fixed_buffer
[20]; /* Default buffer for small formatting. */
99 int size
; /* Field width factor; e.g., %90d */
100 char charbuf
[2]; /* Used for %c. */
103 format_end
= format
+ strlen (format
);
105 if ((format_end
- format
+ 1) < sizeof (fixed_buffer
))
106 fmtcpy
= fixed_buffer
;
108 fmtcpy
= (char *) alloca (format_end
- format
+ 1);
112 /* Loop until end of format string or buffer full. */
113 while (fmt
!= format_end
&& bufsize
> 0)
115 if (*fmt
== '%') /* Check for a '%' character */
120 /* Copy this one %-spec into fmtcpy. */
126 if (! (*fmt
>= '0' && *fmt
<= '9')
127 && *fmt
!= '-' && *fmt
!= ' '&& *fmt
!= '.')
132 /* Get an idea of how much space we might need. */
133 size_bound
= atoi (&fmtcpy
[1]);
135 /* Avoid pitfall of negative "size" parameter ("%-200d"). */
137 size_bound
= -size_bound
;
140 if (size_bound
> (((unsigned) 1) << (BITS_PER_INT
- 1)))
141 error ("Format padding too large");
143 /* Make sure we have that much. */
144 if (size_bound
> size_allocated
)
147 big_buffer
= (char *) xrealloc (big_buffer
, size_bound
);
149 big_buffer
= (char *) xmalloc (size_bound
);
150 sprintf_buffer
= big_buffer
;
151 size_allocated
= size_bound
;
157 error ("Invalid format operation %%%c", fmt
[-1]);
164 error ("Not enough arguments for format string");
165 if (sizeof (int) == sizeof (EMACS_INT
))
167 else if (sizeof (long) == sizeof (EMACS_INT
))
168 /* Insert an `l' the right place. */
169 string
[1] = string
[0],
170 string
[0] = string
[-1],
175 sprintf (sprintf_buffer
, fmtcpy
, args
[cnt
++]);
176 /* Now copy into final output, truncating as nec. */
177 string
= sprintf_buffer
;
184 union { double d
; char *half
[2]; } u
;
185 if (cnt
+ 1 == nargs
)
186 error ("not enough arguments for format string");
187 u
.half
[0] = args
[cnt
++];
188 u
.half
[1] = args
[cnt
++];
189 sprintf (sprintf_buffer
, fmtcpy
, u
.d
);
190 /* Now copy into final output, truncating as nec. */
191 string
= sprintf_buffer
;
199 error ("not enough arguments for format string");
200 if (fmtcpy
[1] != 's')
201 minlen
= atoi (&fmtcpy
[1]);
204 string
= (char *) XSTRING (((Lisp_Object
*) args
)[cnt
])->data
;
205 tem
= XSTRING (((Lisp_Object
*) args
)[cnt
])->size
;
210 string
= args
[cnt
++];
211 tem
= strlen (string
);
215 /* Copy string into final output, truncating if no room. */
217 tem
= strlen (string
);
221 while (minlen
> tem
&& bufsize
> 0)
231 bcopy (string
, bufptr
, tem
);
236 while (minlen
< - tem
&& bufsize
> 0)
248 error ("not enough arguments for format string");
249 *charbuf
= (EMACS_INT
) args
[cnt
++];
252 if (fmtcpy
[1] != 'c')
253 minlen
= atoi (&fmtcpy
[1]);
257 fmt
--; /* Drop thru and this % will be treated as normal */
260 *bufptr
++ = *fmt
++; /* Just some characters; Copy 'em */
264 /* If we had to malloc something, free it. */
268 *bufptr
= 0; /* Make sure our string end with a '\0' */
269 return bufptr
- buffer
;