Mercurial > emacs
annotate src/doprnt.c @ 12926:ecb9cf000265
Removed the comment that said we assume strict locking.
(vc-next-action-dired): Don't switch to vc-parent-buffer, because that
was already done.
author | André Spiegel <spiegel@gnu.org> |
---|---|
date | Tue, 22 Aug 1995 17:53:14 +0000 |
parents | cc26e7c955cc |
children | f83031b644ac |
rev | line source |
---|---|
49 | 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. | |
5 | |
6 This file is part of GNU Emacs. | |
7 | |
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 | |
12244 | 10 the Free Software Foundation; either version 2, or (at your option) |
49 | 11 any later version. |
12 | |
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. | |
17 | |
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, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
21 | |
22 | |
5036 | 23 #include <config.h> |
49 | 24 #include <stdio.h> |
25 #include <ctype.h> | |
26 | |
11320
aaf81f284f83
(xmalloc, xrealloc): Declare them here.
Richard M. Stallman <rms@gnu.org>
parents:
8141
diff
changeset
|
27 extern long *xmalloc (), *xrealloc (); |
aaf81f284f83
(xmalloc, xrealloc): Declare them here.
Richard M. Stallman <rms@gnu.org>
parents:
8141
diff
changeset
|
28 |
147
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
29 /* Generate output from a format-spec FORMAT, |
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
30 terminated at position FORMAT_END. |
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
31 Output goes in BUFFER, which has room for BUFSIZE chars. |
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
32 If the output does not fit, truncate it to fit. |
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
33 Returns the number of characters stored into BUFFER. |
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
34 ARGS points to the vector of arguments, and NARGS says how many. |
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
35 A double counts as two arguments. */ |
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
36 |
49 | 37 doprnt (buffer, bufsize, format, format_end, nargs, args) |
38 char *buffer; | |
39 register int bufsize; | |
40 char *format; | |
41 char *format_end; | |
42 int nargs; | |
43 char **args; | |
44 { | |
45 int cnt = 0; /* Number of arg to gobble next */ | |
46 register char *fmt = format; /* Pointer into format string */ | |
47 register char *bufptr = buffer; /* Pointer into output buffer.. */ | |
4774
8e36034f65e2
(doprnt): Use a fixed buffer to store the format
Brian Fox <bfox@gnu.org>
parents:
2439
diff
changeset
|
48 |
147
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
49 /* Use this for sprintf unless we need something really big. */ |
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
50 char tembuf[100]; |
4774
8e36034f65e2
(doprnt): Use a fixed buffer to store the format
Brian Fox <bfox@gnu.org>
parents:
2439
diff
changeset
|
51 |
147
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
52 /* Size of sprintf_buffer. */ |
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
53 int size_allocated = 100; |
4774
8e36034f65e2
(doprnt): Use a fixed buffer to store the format
Brian Fox <bfox@gnu.org>
parents:
2439
diff
changeset
|
54 |
147
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
55 /* Buffer to use for sprintf. Either tembuf or same as BIG_BUFFER. */ |
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
56 char *sprintf_buffer = tembuf; |
4774
8e36034f65e2
(doprnt): Use a fixed buffer to store the format
Brian Fox <bfox@gnu.org>
parents:
2439
diff
changeset
|
57 |
147
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
58 /* Buffer we have got with malloc. */ |
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
59 char *big_buffer = 0; |
4774
8e36034f65e2
(doprnt): Use a fixed buffer to store the format
Brian Fox <bfox@gnu.org>
parents:
2439
diff
changeset
|
60 |
49 | 61 register int tem; |
62 char *string; | |
4774
8e36034f65e2
(doprnt): Use a fixed buffer to store the format
Brian Fox <bfox@gnu.org>
parents:
2439
diff
changeset
|
63 char fixed_buffer[20]; /* Default buffer for small formatting. */ |
8e36034f65e2
(doprnt): Use a fixed buffer to store the format
Brian Fox <bfox@gnu.org>
parents:
2439
diff
changeset
|
64 char *fmtcpy; |
49 | 65 int minlen; |
66 int size; /* Field width factor; e.g., %90d */ | |
8141
e3859c43c6f4
(doprnt): Handle padding on %c.
Richard M. Stallman <rms@gnu.org>
parents:
6715
diff
changeset
|
67 char charbuf[2]; /* Used for %c. */ |
49 | 68 |
69 if (format_end == 0) | |
70 format_end = format + strlen (format); | |
71 | |
4774
8e36034f65e2
(doprnt): Use a fixed buffer to store the format
Brian Fox <bfox@gnu.org>
parents:
2439
diff
changeset
|
72 if ((format_end - format + 1) < sizeof (fixed_buffer)) |
8e36034f65e2
(doprnt): Use a fixed buffer to store the format
Brian Fox <bfox@gnu.org>
parents:
2439
diff
changeset
|
73 fmtcpy = fixed_buffer; |
8e36034f65e2
(doprnt): Use a fixed buffer to store the format
Brian Fox <bfox@gnu.org>
parents:
2439
diff
changeset
|
74 else |
5053
b98e742f0b05
(doprnt): Cast the value alloca returns.
Richard M. Stallman <rms@gnu.org>
parents:
5036
diff
changeset
|
75 fmtcpy = (char *) alloca (format_end - format + 1); |
4774
8e36034f65e2
(doprnt): Use a fixed buffer to store the format
Brian Fox <bfox@gnu.org>
parents:
2439
diff
changeset
|
76 |
49 | 77 bufsize--; |
4774
8e36034f65e2
(doprnt): Use a fixed buffer to store the format
Brian Fox <bfox@gnu.org>
parents:
2439
diff
changeset
|
78 |
8e36034f65e2
(doprnt): Use a fixed buffer to store the format
Brian Fox <bfox@gnu.org>
parents:
2439
diff
changeset
|
79 /* Loop until end of format string or buffer full. */ |
8e36034f65e2
(doprnt): Use a fixed buffer to store the format
Brian Fox <bfox@gnu.org>
parents:
2439
diff
changeset
|
80 while (fmt != format_end && bufsize > 0) |
49 | 81 { |
82 if (*fmt == '%') /* Check for a '%' character */ | |
83 { | |
147
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
84 int size_bound; |
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
85 |
49 | 86 fmt++; |
484 | 87 /* Copy this one %-spec into fmtcpy. */ |
49 | 88 string = fmtcpy; |
89 *string++ = '%'; | |
4774
8e36034f65e2
(doprnt): Use a fixed buffer to store the format
Brian Fox <bfox@gnu.org>
parents:
2439
diff
changeset
|
90 while (1) |
49 | 91 { |
92 *string++ = *fmt; | |
4774
8e36034f65e2
(doprnt): Use a fixed buffer to store the format
Brian Fox <bfox@gnu.org>
parents:
2439
diff
changeset
|
93 if (! (*fmt >= '0' && *fmt <= '9') |
8e36034f65e2
(doprnt): Use a fixed buffer to store the format
Brian Fox <bfox@gnu.org>
parents:
2439
diff
changeset
|
94 && *fmt != '-' && *fmt != ' '&& *fmt != '.') |
49 | 95 break; |
96 fmt++; | |
97 } | |
98 *string = 0; | |
147
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
99 /* Get an idea of how much space we might need. */ |
6236
d9f096200099
(doprnt): Do the right thing for negative size spec.
Karl Heuer <kwzh@gnu.org>
parents:
5053
diff
changeset
|
100 size_bound = atoi (&fmtcpy[1]); |
4774
8e36034f65e2
(doprnt): Use a fixed buffer to store the format
Brian Fox <bfox@gnu.org>
parents:
2439
diff
changeset
|
101 |
8e36034f65e2
(doprnt): Use a fixed buffer to store the format
Brian Fox <bfox@gnu.org>
parents:
2439
diff
changeset
|
102 /* Avoid pitfall of negative "size" parameter ("%-200d"). */ |
8e36034f65e2
(doprnt): Use a fixed buffer to store the format
Brian Fox <bfox@gnu.org>
parents:
2439
diff
changeset
|
103 if (size_bound < 0) |
8e36034f65e2
(doprnt): Use a fixed buffer to store the format
Brian Fox <bfox@gnu.org>
parents:
2439
diff
changeset
|
104 size_bound = -size_bound; |
6236
d9f096200099
(doprnt): Do the right thing for negative size spec.
Karl Heuer <kwzh@gnu.org>
parents:
5053
diff
changeset
|
105 size_bound += 50; |
4774
8e36034f65e2
(doprnt): Use a fixed buffer to store the format
Brian Fox <bfox@gnu.org>
parents:
2439
diff
changeset
|
106 |
12830
cc26e7c955cc
(doprnt): Error if %-width is too big.
Richard M. Stallman <rms@gnu.org>
parents:
12797
diff
changeset
|
107 if (size_bound > (unsigned) (1 << (INTBITS - 1))) |
cc26e7c955cc
(doprnt): Error if %-width is too big.
Richard M. Stallman <rms@gnu.org>
parents:
12797
diff
changeset
|
108 error ("Format padding to large"); |
12797
f0724d9d625e
(doprnt): Don't let size_bound be gigantic. Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
109 |
147
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
110 /* Make sure we have that much. */ |
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
111 if (size_bound > size_allocated) |
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
112 { |
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
113 if (big_buffer) |
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
114 big_buffer = (char *) xrealloc (big_buffer, size_bound); |
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
115 else |
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
116 big_buffer = (char *) xmalloc (size_bound); |
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
117 sprintf_buffer = big_buffer; |
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
118 size_allocated = size_bound; |
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
119 } |
49 | 120 minlen = 0; |
121 switch (*fmt++) | |
122 { | |
123 default: | |
124 error ("Invalid format operation %%%c", fmt[-1]); | |
125 | |
126 /* case 'b': */ | |
127 case 'd': | |
128 case 'o': | |
129 case 'x': | |
130 if (cnt == nargs) | |
12797
f0724d9d625e
(doprnt): Don't let size_bound be gigantic. Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
131 error ("Not enough arguments for format string"); |
11700
79358a3240fe
(doprnt): Handle long EMACS_INT in sprintf.
Richard M. Stallman <rms@gnu.org>
parents:
11320
diff
changeset
|
132 if (sizeof (int) == sizeof (EMACS_INT)) |
79358a3240fe
(doprnt): Handle long EMACS_INT in sprintf.
Richard M. Stallman <rms@gnu.org>
parents:
11320
diff
changeset
|
133 ; |
79358a3240fe
(doprnt): Handle long EMACS_INT in sprintf.
Richard M. Stallman <rms@gnu.org>
parents:
11320
diff
changeset
|
134 else if (sizeof (long) == sizeof (EMACS_INT)) |
79358a3240fe
(doprnt): Handle long EMACS_INT in sprintf.
Richard M. Stallman <rms@gnu.org>
parents:
11320
diff
changeset
|
135 /* Insert an `l' the right place. */ |
79358a3240fe
(doprnt): Handle long EMACS_INT in sprintf.
Richard M. Stallman <rms@gnu.org>
parents:
11320
diff
changeset
|
136 string[1] = string[0], |
79358a3240fe
(doprnt): Handle long EMACS_INT in sprintf.
Richard M. Stallman <rms@gnu.org>
parents:
11320
diff
changeset
|
137 string[0] = string[-1], |
79358a3240fe
(doprnt): Handle long EMACS_INT in sprintf.
Richard M. Stallman <rms@gnu.org>
parents:
11320
diff
changeset
|
138 string[-1] = 'l', |
79358a3240fe
(doprnt): Handle long EMACS_INT in sprintf.
Richard M. Stallman <rms@gnu.org>
parents:
11320
diff
changeset
|
139 string++; |
79358a3240fe
(doprnt): Handle long EMACS_INT in sprintf.
Richard M. Stallman <rms@gnu.org>
parents:
11320
diff
changeset
|
140 else |
79358a3240fe
(doprnt): Handle long EMACS_INT in sprintf.
Richard M. Stallman <rms@gnu.org>
parents:
11320
diff
changeset
|
141 abort (); |
147
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
142 sprintf (sprintf_buffer, fmtcpy, args[cnt++]); |
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
143 /* Now copy into final output, truncating as nec. */ |
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
144 string = sprintf_buffer; |
49 | 145 goto doit; |
146 | |
147
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
147 case 'f': |
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
148 case 'e': |
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
149 case 'g': |
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
150 { |
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
151 union { double d; char *half[2]; } u; |
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
152 if (cnt + 1 == nargs) |
6715
3864d274a56c
(doprnt): Reword confusing error message.
Karl Heuer <kwzh@gnu.org>
parents:
6236
diff
changeset
|
153 error ("not enough arguments for format string"); |
147
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
154 u.half[0] = args[cnt++]; |
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
155 u.half[1] = args[cnt++]; |
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
156 sprintf (sprintf_buffer, fmtcpy, u.d); |
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
157 /* Now copy into final output, truncating as nec. */ |
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
158 string = sprintf_buffer; |
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
159 goto doit; |
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
160 } |
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
161 |
49 | 162 case 'S': |
163 string[-1] = 's'; | |
164 case 's': | |
165 if (cnt == nargs) | |
6715
3864d274a56c
(doprnt): Reword confusing error message.
Karl Heuer <kwzh@gnu.org>
parents:
6236
diff
changeset
|
166 error ("not enough arguments for format string"); |
49 | 167 string = args[cnt++]; |
168 if (fmtcpy[1] != 's') | |
169 minlen = atoi (&fmtcpy[1]); | |
170 /* Copy string into final output, truncating if no room. */ | |
171 doit: | |
172 tem = strlen (string); | |
8141
e3859c43c6f4
(doprnt): Handle padding on %c.
Richard M. Stallman <rms@gnu.org>
parents:
6715
diff
changeset
|
173 doit1: |
49 | 174 if (minlen > 0) |
175 { | |
176 while (minlen > tem && bufsize > 0) | |
177 { | |
178 *bufptr++ = ' '; | |
179 bufsize--; | |
180 minlen--; | |
181 } | |
182 minlen = 0; | |
183 } | |
184 if (tem > bufsize) | |
185 tem = bufsize; | |
186 strncpy (bufptr, string, tem); | |
187 bufptr += tem; | |
188 bufsize -= tem; | |
189 if (minlen < 0) | |
190 { | |
191 while (minlen < - tem && bufsize > 0) | |
192 { | |
193 *bufptr++ = ' '; | |
194 bufsize--; | |
195 minlen++; | |
196 } | |
197 minlen = 0; | |
198 } | |
199 continue; | |
200 | |
201 case 'c': | |
202 if (cnt == nargs) | |
6715
3864d274a56c
(doprnt): Reword confusing error message.
Karl Heuer <kwzh@gnu.org>
parents:
6236
diff
changeset
|
203 error ("not enough arguments for format string"); |
11320
aaf81f284f83
(xmalloc, xrealloc): Declare them here.
Richard M. Stallman <rms@gnu.org>
parents:
8141
diff
changeset
|
204 *charbuf = (EMACS_INT) args[cnt++]; |
8141
e3859c43c6f4
(doprnt): Handle padding on %c.
Richard M. Stallman <rms@gnu.org>
parents:
6715
diff
changeset
|
205 string = charbuf; |
e3859c43c6f4
(doprnt): Handle padding on %c.
Richard M. Stallman <rms@gnu.org>
parents:
6715
diff
changeset
|
206 tem = 1; |
e3859c43c6f4
(doprnt): Handle padding on %c.
Richard M. Stallman <rms@gnu.org>
parents:
6715
diff
changeset
|
207 if (fmtcpy[1] != 'c') |
e3859c43c6f4
(doprnt): Handle padding on %c.
Richard M. Stallman <rms@gnu.org>
parents:
6715
diff
changeset
|
208 minlen = atoi (&fmtcpy[1]); |
e3859c43c6f4
(doprnt): Handle padding on %c.
Richard M. Stallman <rms@gnu.org>
parents:
6715
diff
changeset
|
209 goto doit1; |
49 | 210 |
211 case '%': | |
212 fmt--; /* Drop thru and this % will be treated as normal */ | |
213 } | |
214 } | |
215 *bufptr++ = *fmt++; /* Just some characters; Copy 'em */ | |
216 bufsize--; | |
217 }; | |
218 | |
147
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
219 /* If we had to malloc something, free it. */ |
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
220 if (big_buffer) |
2439
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
484
diff
changeset
|
221 xfree (big_buffer); |
147
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
222 |
49 | 223 *bufptr = 0; /* Make sure our string end with a '\0' */ |
224 return bufptr - buffer; | |
225 } |