-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathprintf.c
309 lines (287 loc) · 6.76 KB
/
printf.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
#include <kernel.h>
#include <string.h>
static int do_printf(const char *fmt, size_t max, va_list args, fnptr_t fn, void *ptr)
{
unsigned flags = 0, actual_wd = 0, count = 0, given_wd = 0;
unsigned char *where, buf[PR_BUFLEN];
unsigned char state = 0, radix = 10;
long long num = 0;
const char* end = (max == SIZE_MAX ? (const char*)SIZE_MAX : ptr + max);
/* begin scanning format specifier list */
for(; *fmt; fmt++) {
switch(state) {
/* STATE 0: AWAITING % */
case 0:
if(*fmt != '%') {/* not %... */
if (fn(*fmt, &ptr, end)) return count; /* ...just echo it */
count++;
break;
}
/* found %, get next char and advance state to check if next char is a flag */
state++;
fmt++;
/* FALL THROUGH */
/* STATE 1: AWAITING FLAGS (%-0) */
case 1:
if(*fmt == '%') {
if (fn(*fmt, &ptr, end)) return count;
count++;
state = flags = given_wd = 0;
break;
}
if(*fmt == '-') {
if(flags & PR_LJ)/* %-- is illegal */
state = flags = given_wd = 0;
else
flags |= PR_LJ;
break;
}
/* not a flag char: advance state to check if it's field width */
state++;
/* check now for '%0...' */
if(*fmt == '0') {
flags |= PR_LZ;
fmt++;
}
/* FALL THROUGH */
/* STATE 2: AWAITING (NUMERIC) FIELD WIDTH */
case 2:
if(*fmt >= '0' && *fmt <= '9') {
given_wd = 10 * given_wd +
(*fmt - '0');
break;
}
/* not field width: advance state to check if it's a modifier */
state++;
/* FALL THROUGH */
/* STATE 3: AWAITING MODIFIER CHARS (FNlh) */
case 3:
if(*fmt == 'F') {
flags |= PR_FP;
break;
}
if(*fmt == 'N') {
break;
}
if(*fmt == 'l') {
flags |= PR_32;
break;
}
if(*fmt == 'h') {
flags |= PR_16;
break;
}
/* not modifier: advance state to check if it's a conversion char */
state++;
/* STATE 4: AWAITING CONVERSION CHARS (Xxpndiuocs) */
__attribute__((fallthrough));
case 4:
where = buf + PR_BUFLEN - 1;
*where = '\0';
switch(*fmt) {
case 'X':
flags |= PR_CA;
/* xxx - far pointers (%Fp, %Fn) not yet supported */
__attribute__((fallthrough));
case 'x':
case 'p':
case 'n':
radix = 16;
goto DO_NUM;
case 'd':
case 'i':
flags |= PR_SG;
__attribute__((fallthrough));
case 'u':
radix = 10;
goto DO_NUM;
case 'o':
radix = 8;
/* load the value to be printed. l=long=32 bits: */
DO_NUM:
if(flags & PR_32) {
if(flags & PR_SG) {
num = va_arg(args, long long);
} else {
num = va_arg(args, unsigned long long);
}
} else if(flags & PR_16) {
/* h=short=16 bits (signed or unsigned) */
if(flags & PR_SG) {
num = va_arg(args, int);
} else {
num = va_arg(args, unsigned int);
}
} else {
/* no h nor l: sizeof(int) bits (signed or unsigned) */
if(flags & PR_SG) {
num = va_arg(args, int);
} else {
num = va_arg(args, unsigned int);
}
}
/* take care of sign */
if(flags & PR_SG) {
if(num < 0) {
flags |= PR_WS;
num = -num;
}
}
/* convert binary to octal/decimal/hex ASCII */
do {
unsigned long temp;
temp = (unsigned long)num % radix;
where--;
if(temp < 10)
*where = temp + '0';
else if(flags & PR_CA)
*where = temp - 10 + 'A';
else
*where = temp - 10 + 'a';
num = (unsigned long)num / radix;
} while(num != 0);
goto EMIT;
case 'c':
/* disallow pad-left-with-zeroes for %c */
flags &= ~PR_LZ;
where--;
*where = (unsigned char)va_arg(args, int);
actual_wd = 1;
goto EMIT2;
case 's':
/* disallow pad-left-with-zeroes for %s */
flags &= ~PR_LZ;
where = va_arg(args, unsigned char *);
EMIT:
actual_wd = strlen((const char*)where);
if (flags & PR_WS)
actual_wd++;
/* if we pad left with ZEROES, do the sign now */
if ((flags & (PR_WS | PR_LZ)) == (PR_WS | PR_LZ)) {
if (fn('-', &ptr, end)) return count;
count++;
}
/* pad on left with spaces or zeroes (for right justify) */
EMIT2:
if ((flags & PR_LJ) == 0) {
while(given_wd > actual_wd) {
if (fn(flags & PR_LZ ? '0' : ' ', &ptr, end)) return count;
count++;
given_wd--;
}
}
/* if we pad left with SPACES, do the sign now */
if ((flags & (PR_WS | PR_LZ)) == PR_WS) {
if (fn('-', &ptr, end)) return count;
count++;
}
/* emit string/char/converted number */
while (*where != '\0') {
if (fn(*where++, &ptr, end)) return count;
count++;
}
/* pad on right with spaces (for left justify) */
if (given_wd < actual_wd)
given_wd = 0;
else
given_wd -= actual_wd;
for (; given_wd; given_wd--) {
if (fn(' ', &ptr, end)) return count;
count++;
}
break;
default:
break;
}
__attribute__((fallthrough));
default:
state = flags = given_wd = 0;
break;
}
}
return count;
}
static int vsprintf_help(unsigned c, void **ptr, const void* max)
{
char *dst = *ptr;
const char* m = max;
if (dst < m - 1) {
*dst++ = (char)c;
*ptr = dst;
return 0;
}
/* Reached maximum of buffer, terminate string and exit
* with error state
*/
*dst++ = 0;
return 1;
}
int vsprintf(char *buf, const char *fmt, va_list args)
{
int rv;
rv = do_printf(fmt, SIZE_MAX, args, vsprintf_help, (void *)buf);
buf[rv] = '\0';
return rv;
}
int vsnprintf(char *buf, size_t max, const char *fmt, va_list args)
{
int rv;
rv = do_printf(fmt, max, args, vsprintf_help, (void *)buf);
buf[rv] = '\0';
return rv;
}
int sprintf(char *buf, const char *fmt, ...)
{
va_list args;
int rv;
va_start(args, fmt);
rv = vsprintf(buf, fmt, args);
va_end(args);
return rv;
}
int snprintf(char *buf, size_t max, const char *fmt, ...)
{
va_list args;
int rv;
va_start(args, fmt);
rv = vsnprintf(buf, max, fmt, args);
va_end(args);
return rv;
}
int vprintf_help(unsigned c, [[maybe_unused]] void **ptr, [[maybe_unused]] const void* max)
{
put(current_console, c);
return 0;
}
int dvprintf_help(unsigned c, [[maybe_unused]] void **ptr, [[maybe_unused]] const void* max)
{
dput(c);
//put(current_console, c);
return 0;
}
int vprintf(const char *fmt, va_list args)
{
return do_printf(fmt, SIZE_MAX, args, vprintf_help, NULL);
}
int dvprintf(const char *fmt, va_list args)
{
return do_printf(fmt, SIZE_MAX, args, dvprintf_help, NULL);
}
int printf(const char *fmt, ...)
{
va_list args;
int rv;
va_start(args, fmt);
rv = vprintf(fmt, args);
va_end(args);
return rv;
}
int dprintf(const char *fmt, ...)
{
va_list args;
int rv;
va_start(args, fmt);
rv = dvprintf(fmt, args);
va_end(args);
return rv;
}