aboutsummaryrefslogtreecommitdiff
path: root/formatting.c
blob: 60f37eec359448a34636eb902d2bc139f78084dd (plain)
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
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464

/* if ever in need of formatting functions like in this file, but signed, they
 * can be found wasted in the version history, commit
 * f975594e55bdc05ee436bc7bdcd6e09aec5357b1. */

#include <math.h>
#include <stdlib.h>
#include <string.h>

#include "intmath.h"
#include "formatting.h"
#include "minitest.h"


size_t int_charcount(int x) {
	size_t n = x < 0;
	x *= -(x < 0) * 2 + 1;
	while (x >= 10) {
		x /= 10;
		n += 1;
	}
	return n + 1;
}

/* Returns `int x` floored to `unsigned int precision` as an `exp_notated`
 * value with given `unsigned int base`.
 *
 * `unsigned int base` affects the precision.
 */
exp_notated ull_floored_exponent_notation_base
(
	unsigned long long x,
	unsigned int precision,
	unsigned int base
) {
	int i = 0;
	while (x >= int_pown(base, precision)) {
		x /= base;
		i++;
	}

	exp_notated res = {
		.mantissa = x,
		.exponent = i,
		.base = base
	};
	return res;
}

exp_notated ull_floored_exponent_notation(
	unsigned long long x,
	unsigned int precision
) {
	return ull_floored_exponent_notation_base(x, precision, 10);
}

exp_notated ull_ceiled_exponent_notation_base(
	unsigned long long x,
	unsigned int precision,
	unsigned int base
) {
	unsigned long long original = x;

	int i = 0;
	while (x >= int_pown(base, precision)) {
		x /= base;
		i++;
	}
	
	if (x * ull_pown(base, i) != original) {
		x += 1;
	}

	exp_notated res = {
		.mantissa = x,
		.exponent = i,
		.base = base
	};
	return res;
}

exp_notated ull_ceiled_exponent_notation(
	unsigned long long x,
	unsigned int precision
) {
	return ull_ceiled_exponent_notation_base(x, precision, 10);
}

unsigned long long exp_notated_to_ull(exp_notated x) {
	return x.mantissa * (unsigned long long) int_pown(x.base, x.exponent);
}

/* Returns the appropriate binary prefix for `exp_notated x`. `x` must have
 * `1024` as its base and its exponent should not be greater than `10` Failing
 * to meet these conditions results in the function returning `NULL`.
 */
const char* binary_prefix(exp_notated x) {
	if (x.base != 1024) return NULL;

	switch (x.exponent) {
		case 0:
			return "";
		case 1:
			return "Ki";
		case 2:
			return "Mi";
		case 3:
			return "Gi";
		case 4:
			return "Ti";
		case 5:
			return "Pi";
		case 6:
			return "Ei";
		case 7:
			return "Zi";
		case 8:
			return "Yi";
		case 9:
			return "Ri";
		case 10:
			return "Qi";
	}

	return NULL;
}

/* Modifies the string pointed to by `char** res` to a string describing the
 * argument `unsigned long long x` floored to the appropriate multiple of 1024
 * followed with a binary prefix (Ki, Mi, Gi...).
 *
 * `size_t* res_bufsize` should point to a value describing the size of the
 * string buffer pointed to by `char** res`. Returns a negative value upon
 * failure in memory allocation or `snprintf`, otherwise returns the length of
 * `char* res`.
 */
int ull_floored_with_binary_prefix(
	char** res,
	size_t* res_bufsize,
	unsigned long long x
) {
	exp_notated x_exp = ull_floored_exponent_notation_base(x, 1, 1024);

	const char* prefix = binary_prefix(x_exp);

	size_t bufsize =
		5 + /* len("-1024") */
		/* length of possible zeroes */
		int_max(0, (x_exp.exponent - 10) * 3) +
		4;  /* len(" Gi\0") */
	if (bufsize > *res_bufsize) {
		free(*res);
		*res = malloc(bufsize);
		*res_bufsize = bufsize;
	}
	if (*res == NULL) return -1;
	return snprintf(*res, *res_bufsize, "%llu %s", x_exp.mantissa, prefix);
}

/* Returns the unit prefix resembling the exponent `int x`. If there is no
 * prefix resembling `x`, NULL is returned, though the special case `x = 0`
 * returns an empty string.
 */
const char* unit_prefix(int exponent) {
	switch (exponent) {
		case -30:
			return "q";
		case -27:
			return "r";
		case -24:
			return "y";
		case -21:
			return "z";
		case -18:
			return "a";
		case -15:
			return "f";
		case -12:
			return "p";
		case -9:
			return "n";
		case -6:
			return "μ";
		case -3:
			return "m";
		case -2:
			return "c";
		case -1:
			return "d";
		case 0:
			return "";
		case 1:
			return "da";
		case 2:
			return "h";
		case 3:
			return "k";
		case 6:
			return "M";
		case 9:
			return "G";
		case 12:
			return "T";
		case 15:
			return "P";
		case 18:
			return "E";
		case 21:
			return "Z";
		case 24:
			return "Y";
		case 27:
			return "R";
		case 30:
			return "Q";
	}

	return NULL;
}

/* Modifies the string pointed to by `char** res` to a string describing the
 * argument `int x` floored to the appropriate precision followed with a unit
 * prefix (k, M, G...).
 *
 * `size_t* res_bufsize` should point to a value describing the size of the
 * string buffer pointed to by `char** res`. Returns a negative value upon
 * failure and the length of `char* res` on success. Failure can be caused by
 * problems in memory allocation or failure in `snprintf`.
 */
int ull_floored_with_prefix(
	char** res,
	size_t* res_bufsize,
	long long unsigned x,
	unsigned int precision
) {
	exp_notated x_exp
		= ull_floored_exponent_notation_base(x, precision, 10);
	double mantissa = (double) x_exp.mantissa * int_pow10(x_exp.exponent % 3);
	unsigned int exponent = x_exp.exponent - x_exp.exponent % 3;

	while (fabs(mantissa) >= 1000) {
		mantissa /= 1000;
		exponent += 3;
	}

	const char* prefix = unit_prefix(exponent);
	size_t prefix_len = strlen(prefix);

	size_t bufsize =
		int_max(precision, 3) /* mantissa */
		+ 4 /* minus, space, decimal dot and NULL byte */
		+ prefix_len;
	if (bufsize > *res_bufsize) {
		free(*res);
		*res_bufsize = bufsize;
		*res = malloc(*res_bufsize);
	}
	if (*res == NULL) return -1;

	return snprintf(
		*res,
		*res_bufsize,
		"%.*f %s",
		int_max(precision - int_charcount((int) fabs(mantissa)), 0),
		mantissa,
		prefix
	);
}

char* test_floored_exponent_notation() {
	const size_t bufsize = 128;
	char* msg = malloc(bufsize);

	exp_notated res = ull_floored_exponent_notation(9489345, 3);
	snprintf(msg, bufsize,
		"ull_floored_exponent_notation(9489345, 3): expected 948*10^4, got %llu*%d^%d",
		res.mantissa, res.base, res.exponent
	);
	mt_assert(
		res.mantissa == 948 &&
		res.base == 10 &&
		res.exponent == 4
	, msg);

	res = ull_floored_exponent_notation_base(3145733, 1, 1024);
	snprintf(msg, bufsize,
		"ull_floored_exponent_notation_base(3145733, 1, 1024): expected 3*1024^2, got %llu*%d^%d",
		res.mantissa, res.base, res.exponent
	);
	mt_assert(
		res.mantissa == 3 &&
		res.base == 1024 &&
		res.exponent == 2
	, msg);

	free(msg);
	return 0;
}

char* test_ceiled_exponent_notation() {
	const size_t bufsize = 128;
	char* msg = malloc(bufsize);

	exp_notated res = ull_ceiled_exponent_notation(9489345, 3);
	snprintf(msg, bufsize,
		"ull_ceiled_exponent_notation(9489345, 3): expected 949*10^4, got %llu*%d^%d",
		res.mantissa, res.base, res.exponent
	);
	mt_assert(
		res.mantissa == 949 &&
		res.base == 10 &&
		res.exponent == 4
	, msg);

	res = ull_ceiled_exponent_notation_base(3145733, 1, 1024);
	snprintf(msg, bufsize,
		"ull_ceiled_exponent_notation_base(3145733, 1, 1024): expected 4*1024^2, got %llu*%d^%d",
		res.mantissa, res.base, res.exponent
	);
	mt_assert(
		res.mantissa == 4 &&
		res.base == 1024 &&
		res.exponent == 2
	, msg);

	free(msg);
	return 0;
}

char* test_exponent_notated_to_ull() {
	exp_notated x = {
		.mantissa = 3,
		.exponent = 2,
		.base = 10
	};
	mt_assert_eq(300, exp_notated_to_ull(x));
	return 0;
}

char* test_floored_with_binary_prefix() {
	const size_t bufsize = 64;
	char* msg = malloc(bufsize);
	size_t res_bufsize = 2;
	char* res = malloc(res_bufsize);

	ull_floored_with_binary_prefix(
		&res,
		&res_bufsize,
		1026
	);
	snprintf(msg, bufsize, "1026 yielded `%s` instead of `1 Ki`", res);
	mt_assert(strcmp(
		res,
		"1 Ki"
	) == 0, msg);

	ull_floored_with_binary_prefix(
		&res,
		&res_bufsize,
		1049088
	);
	snprintf(msg, bufsize, "1049088 yielded `%s` instead of `1 Mi`", res);
	mt_assert(strcmp(
		res,
		"1 Mi"
	) == 0, msg);

	ull_floored_with_binary_prefix(
		&res,
		&res_bufsize,
		5243392
	);
	snprintf(msg, bufsize, "5243392 yielded `%s` instead of `5 Mi`", res);
	mt_assert(strcmp(
		res,
		"5 Mi"
	) == 0, msg);

	free(res);
	free(msg);
	return 0;
}


char* test_floored_with_prefix() {
	const size_t bufsize = 64;
	char* msg = malloc(bufsize);
	size_t res_bufsize = 2;
	char* res = malloc(res_bufsize);

	ull_floored_with_prefix(
		&res,
		&res_bufsize,
		1001,
		3
	);
	snprintf(msg, bufsize, "1001 yielded `%s` instead of `1.00 k`", res);
	mt_assert(strcmp(
		res,
		"1.00 k"
	) == 0, msg);

	ull_floored_with_prefix(
		&res,
		&res_bufsize,
		300,
		1
	);
	snprintf(msg, bufsize, "300 (-p1) yielded `%s` instead of `300 `", res);
	mt_assert(strcmp(
		res,
		"300 "
	) == 0, msg);

	ull_floored_with_prefix(
		&res,
		&res_bufsize,
		1000000,
		2
	);
	snprintf(msg, bufsize, "1 000 000 yielded `%s` instead of `1.0 M`", res);
	mt_assert(strcmp(
		res,
		"1.0 M"
	) == 0, msg);

	ull_floored_with_prefix(
		&res,
		&res_bufsize,
		5243392,
		4
	);
	snprintf(msg, bufsize, "5243692 yielded `%s` instead of `5.243 M`", res);
	mt_assert(strcmp(
		res,
		"5.243 M"
	) == 0, msg);

	free(res);
	free(msg);
	return 0;
}

char* test_int_charcount() {
	mt_assert_eq(int_charcount(5), 1);
	mt_assert_eq(int_charcount(24), 2);
	mt_assert_eq(int_charcount(10), 2);
	mt_assert_eq(int_charcount(0), 1);
	mt_assert_eq(int_charcount(1), 1);
	mt_assert_eq(int_charcount(-1), 2);
	mt_assert_eq(int_charcount(99), 2);
	mt_assert_eq(int_charcount(100), 3);
	return 0;
}


void formatting_tests() {
	mt_run_test(test_int_charcount);
	mt_run_test(test_floored_exponent_notation);
	mt_run_test(test_ceiled_exponent_notation);
	mt_run_test(test_exponent_notated_to_ull);
	mt_run_test(test_floored_with_binary_prefix);
	mt_run_test(test_floored_with_prefix);
}