-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathPrintfTest.cpp
302 lines (244 loc) · 6.79 KB
/
PrintfTest.cpp
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
#include <stdio.h>
#include <string.h>
#include <stdarg.h>
#include <stdint.h>
char outBuf[256];
uint16_t curPos = 0;
//////////////////////////////////////////////////
// Begin of tested code. Copy stuff from PrintUtils.cpp and PrintUtils.h here
//////////////////////////////////////////////////
//////////// PrintUtils.h
// Base class for char consumer functor
struct CharConsumer
{
virtual void operator()(char c) = 0;
virtual void operator()(const char *buffer, size_t size, bool reverse = false)
{
// Copy data to the buffer
for(size_t i=0; i < size; i++)
{
if(reverse)
--buffer;
operator()(*buffer);
if(!reverse)
buffer++;
}
}
};
///////////// PrintUtils.cpp
// Stores provided chars into the buffer (respecting capacity and terminating zeroes)
struct CharBufConsumer : public CharConsumer
{
char * m_buf;
size_t m_capacityLeft;
CharBufConsumer(char * buf, size_t n)
: m_buf(buf), m_capacityLeft(n)
{}
virtual void operator()(char c)
{
// For the last slot we can set only terminating zero (regardless of input)
if(m_capacityLeft <= 1)
{
*m_buf = '\0';
return;
}
*m_buf = c;
m_buf++;
m_capacityLeft--;
}
};
// sprintf implementation takes more than 10kb and adding heap to the project. I think this is
// too much for the functionality I need
//
// Below is a homebrew printf-like dumping function which accepts:
// - %d for digits
// - %x for numbers as HEX
// - %s for strings
// - %% for percent symbol
//
// Implementation supports also value width as well as zero padding
// Print the number to the buffer (in reverse order)
// Returns number of printed symbols
static size_t PrintNum(unsigned int value, uint8_t radix, char * buf, uint8_t width, char padSymbol)
{
//TODO check negative here
size_t len = 0;
// Print the number
do
{
char digit = value % radix;
*(buf++) = digit < 10 ? '0' + digit : 'A' - 10 + digit;
value /= radix;
len++;
}
while (value > 0);
// Add zero padding
while(len < width)
{
*(buf++) = padSymbol;
len++;
}
return len;
}
void print(CharConsumer & consumeChars, const char * fmt, va_list args)
{
const char * chunkStart = fmt;
size_t chunkSize = 0;
char ch;
do
{
// Get the next byte
ch = *(fmt++);
// Just copy the regular characters
if(ch != '%')
{
chunkSize++;
continue;
}
// We hit a special symbol. Dump string that we processed so far
if(chunkSize)
consumeChars(chunkStart, chunkSize);
// Process special symbols
// Check if zero padding requested
char padSymbol = ' ';
ch = *(fmt++);
if(ch == '0')
{
padSymbol = '0';
ch = *(fmt++);
}
// Check if width specified
uint8_t width = 0;
if(ch > '0' && ch <= '9')
{
width = ch - '0';
ch = *(fmt++);
}
// check the format
switch(ch)
{
case 'd':
case 'u':
{
char buf[12];
size_t len = PrintNum(va_arg(args, int), 10, buf, width, padSymbol);
consumeChars(buf + len, len, true);
break;
}
case 'x':
case 'X':
{
char buf[9];
size_t len = PrintNum(va_arg(args, int), 16, buf, width, padSymbol);
consumeChars(buf + len, len, true);
break;
}
case 's':
{
char * str = va_arg(args, char*);
consumeChars(str, strlen(str));
break;
}
case '%':
{
consumeChars(fmt-1, 1);
break;
}
default:
// Otherwise store it like a regular symbol as a part of next chunk
fmt--;
break;
}
chunkStart = fmt;
chunkSize=0;
}
while(ch != 0);
if(chunkSize)
consumeChars(chunkStart, chunkSize); // Including terminating NULL
}
void cprintf(CharConsumer & consumeChars, const char * fmt, ...)
{
va_list args;
va_start(args, fmt);
print(consumeChars, fmt, args);
va_end(args);
}
void bufprint(char * buf, size_t n, const char * fmt, ...)
{
va_list args;
va_start(args, fmt);
CharBufConsumer cons(buf, n);
print(cons, fmt, args);
va_end(args);
}
//////////////////////////////////////////////////
// End of tested code
//////////////////////////////////////////////////
void printBuffer()
{
outBuf[255] = 0;
printf("%s\n", outBuf);
}
void verifyBuffer(const char * expectedStr)
{
outBuf[255] = 0;
if(!strcmp(expectedStr, outBuf))
printf("OK: \"%s\"\n", expectedStr);
else
printf("FAILED: expected \"%s\" but got \"%s\"\n", expectedStr, outBuf);
// Prepare for the next test
curPos = 0;
}
int main()
{
printf("Running tests\n");
bufprint(outBuf, 256, "A test string");
verifyBuffer("A test string");
bufprint(outBuf, 256, "An string '%s' value", "Test String");
verifyBuffer("An string 'Test String' value");
bufprint(outBuf, 256, "An string '%s' value", "");
verifyBuffer("An string '' value");
bufprint(outBuf, 256, "A percent '%%' symbol");
verifyBuffer("A percent '%' symbol");
bufprint(outBuf, 256, "An integer '%d' value", 0);
verifyBuffer("An integer '0' value");
bufprint(outBuf, 256, "An integer '%d' value", 5);
verifyBuffer("An integer '5' value");
bufprint(outBuf, 256, "An integer '%d' value", 12345678);
verifyBuffer("An integer '12345678' value");
bufprint(outBuf, 256, "An integer '%4d' with width", 0);
verifyBuffer("An integer ' 0' with width");
bufprint(outBuf, 256, "An integer '%04d' with width", 0);
verifyBuffer("An integer '0000' with width");
bufprint(outBuf, 256, "An integer '%4d' with width", 7);
verifyBuffer("An integer ' 7' with width");
bufprint(outBuf, 256, "An integer '%04d' with width", 8);
verifyBuffer("An integer '0008' with width");
bufprint(outBuf, 256, "An integer '%4d' with width", 123);
verifyBuffer("An integer ' 123' with width");
bufprint(outBuf, 256, "An integer '%04d' with width", 456);
verifyBuffer("An integer '0456' with width");
bufprint(outBuf, 256, "An integer '%4d' with width", 4321);
verifyBuffer("An integer '4321' with width");
bufprint(outBuf, 256, "An integer '%04d' with width", 8765);
verifyBuffer("An integer '8765' with width");
bufprint(outBuf, 256, "An integer '%4d' with width", 123456); //Value does not fit to 4 digits, but will be printed as 6 digit one
verifyBuffer("An integer '123456' with width");
bufprint(outBuf, 256, "A hex '%x' value", 0);
verifyBuffer("A hex '0' value");
bufprint(outBuf, 256, "A hex '%x' value", 0xA);
verifyBuffer("A hex 'A' value");
bufprint(outBuf, 256, "A hex '%x' value", 0xABCDEF01);
verifyBuffer("A hex 'ABCDEF01' value");
bufprint(outBuf, 256, "A hex '%03x' value", 0xc);
verifyBuffer("A hex '00C' value");
bufprint(outBuf, 256, "A hex '%3x' value", 0xd);
verifyBuffer("A hex ' D' value");
bufprint(outBuf, 256, "A hex '%03x' value", 0xDEF);
verifyBuffer("A hex 'DEF' value");
bufprint(outBuf, 256, "A hex '%03x' value", 0xABCD); //Value does not fit to 3 digits, but will be printed as 4 digit one
verifyBuffer("A hex 'ABCD' value");
bufprint(outBuf, 256, "Multiple '%d' Integer '%d' values", 3, 5);
verifyBuffer("Multiple '3' Integer '5' values");
printf("\nTests Finished\n");
}