File: tprintf.c

package info (click to toggle)
sollya 8.0%2Bds-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 17,592 kB
  • sloc: ansic: 124,655; yacc: 7,543; lex: 2,440; makefile: 888; cpp: 77
file content (715 lines) | stat: -rw-r--r-- 37,448 bytes parent folder | download | duplicates (2)
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
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
#define _BSD_SOURCE
#define _DEFAULT_SOURCE
#include <stdio.h>
#include <string.h>
#include <inttypes.h>
#include <stdint.h>
#include <unistd.h>
#include <stddef.h>
#include <sollya.h>

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#if defined(__clang__)
#pragma clang diagnostic ignored "-Wformat-security"
#endif

#ifdef SYSTEM_DOES_NOT_ALLOW_COMPLETE_PRINTF
int main(void) { return 77; }

#else

#define SIZE 32
#define BUFSIZE 256

typedef signed char hh_t;
typedef unsigned char hhu_t;
typedef short int h_t;
typedef unsigned short int hu_t;
typedef long int l_t;
typedef unsigned long int lu_t;
typedef long long int ll_t;
typedef unsigned long long int llu_t;
typedef intmax_t j_t;
typedef intmax_t ju_t;
typedef size_t z_t;
typedef ssize_t zu_t;
typedef ptrdiff_t t_t;

int counter = 0;

size_t my_strnlen(const char *s, size_t lngmax) {
  int i;
  for(i=0;(size_t)(i)<lngmax;i++) {
    if (s[i]=='\0') return strlen(s);
  }
  return lngmax;
}

int wrapper_sollya_sprintf(char *str, const char *format, ...) {
  va_list va;
  int r;
  counter++;
  va_start(va, format);
  r = sollya_lib_v_sprintf(str, format, va);
  va_end(va);
  return r;
}

int wrapper_sollya_snprintf(char *str, size_t size, const char *format, ...) {
  va_list va;
  int r;
  counter++;
  va_start(va, format);
  r = sollya_lib_v_snprintf(str, size, format, va);
  va_end(va);
  return r;
}

void clean_simple_tab(char tab[SIZE]) {
  int j;
  for(j=0;j<SIZE;j++) tab[j] = 5;
}

void clean_buffer(char tab[BUFSIZE]) {
  int j;
  for(j=0;j<BUFSIZE;j++) tab[j] = 'a';
}

void clean(char tab1[2][SIZE], char tab2[2][SIZE], char res[2][BUFSIZE]) {
  clean_simple_tab(tab1[0]); clean_simple_tab(tab1[1]);
  clean_simple_tab(tab2[0]); clean_simple_tab(tab2[1]);
  clean_buffer(res[0]); clean_buffer(res[1]);
}

/* Variable all_tests is a boolean indicating if all tests should be performed.
   Typically, if snprintf has been used and the output is truncated, some tests
   should be avoided: the returned value is not equal to the length of the
   written string for instance, which is one of the tests performed.

   In the case when not all tests are performed, size_snprintf indicates what
   size argument were passed to snprintf, allowing for specific tests.
*/
int verif(int r[2], char result[2][BUFSIZE], char test1[2][SIZE], char test2[2][SIZE], int length, int all_tests, size_t size_snprintf) {
  int test = 1;
  int i;
  int counter[2];
  char test3[2][SIZE];
  char *ptr;
  int n = 0; /* Compiler happiness */

  for(i=0;i<2;i++) {
    counter[i] = my_strnlen(result[i], BUFSIZE);
    if (counter[i]==BUFSIZE) counter[i] = -1;
  }

  if (all_tests) {
    if (counter[0] != r[0]) {
      test = 0;
      printf("First function returned %d but %d characters have been written. ", r[0], counter[0]);
    }
    if (counter[1] != r[1]) {
      test = 0;
      printf("Second function returned %d but %d characters have been written. ", r[1], counter[1]);
    }
  }
  else {
    if (size_snprintf == 0) {
      for(i=0;i<BUFSIZE-1;i++) { if (result[0][i] != 'a') test=0;}
      if (result[0][BUFSIZE-1] != '\0') test = 0;
      if (!test)
        printf("The pointer should have been left intact by the first function, but is now indeed %s\n", result[0]);
      for(i=0;i<BUFSIZE-1;i++) { if (result[1][i] != 'a') test=0;}
      if (result[1][BUFSIZE-1] != '\0') test = 0;
      if (!test)
        printf("The pointer should have been left intact by the second function, but is now indeed %s\n", result[1]);
    }
    else {
      if (counter[0] != (int)(size_snprintf)-1) {
        test = 0;
        printf("First function wrote %d characters but at most %d characters should have been written. ", counter[0], (int)(size_snprintf)-1);
      }
      if (counter[1] != (int)(size_snprintf)-1) {
        test = 0;
        printf("Second function wrote %d characters but (at most) %d characters should have been written. ", counter[0], (int)(size_snprintf)-1);
      }
    }
  }
  if (r[0] != r[1]) {
    test = 0;
    printf("First function returned %d and second function returned %d. ", r[0], r[1]);
  }

  for(i=0;i<SIZE;i++) {
    if(test1[0][i] != test1[1][i]) {
      test = 0;
      printf("The first %%n does not lead to the same value with both implementation. ");
      break;
    }
  }

  if (all_tests) {
    clean_simple_tab(test3[0]); clean_simple_tab(test3[1]);
    ptr = strstr(result[0], " Hello");
    if (ptr==NULL) {
      test = 0;
      printf("The string returned by the first function does not contain ' Hello'. ");
    }
    else {
      n = ptr-result[0];
      switch(length) {
      case 0: *((hh_t *)(test3[0]+8)) = (hh_t)n; break;
      case 1: *((hhu_t *)(test3[0]+8)) = (hhu_t)n; break;
      case 2: *((h_t *)(test3[0]+8)) = (h_t)n; break;
      case 3: *((hu_t *)(test3[0]+8)) = (hu_t)n; break;
      case 4: *((l_t *)(test3[0]+8)) = (l_t)n; break;
      case 5: *((lu_t *)(test3[0]+8)) = (lu_t)n; break;
      case 6: *((ll_t *)(test3[0]+8)) = (ll_t)n; break;
      case 7: *((llu_t *)(test3[0]+8)) = (llu_t)n; break;
      case 8: *((j_t *)(test3[0]+8)) = (j_t)n; break;
      case 9: *((ju_t *)(test3[0]+8)) = (ju_t)n; break;
      case 10: *((z_t *)(test3[0]+8)) = (z_t)n; break;
      case 11: *((zu_t *)(test3[0]+8)) = (zu_t)n; break;
      default: *((t_t *)(test3[0]+8)) = (t_t)n; break;
      }
    }

    for(i=0;i<SIZE;i++) {
      if(test1[0][i] != test3[0][i]) {
        test = 0;
        printf("The first %%n of the first function did not return the expected value (%d). ", n);
        break;
      }
    }
  }

  for(i=0;i<SIZE;i++) {
    if(test2[0][i] != test2[1][i]) {
      test = 0;
      printf("The second %%n does not lead to the same value with both implementation. ");
      break;
    }
  }

  if (all_tests) {
    ptr = strstr(result[0]+n+1, " Hello");
    if (ptr==NULL) {
      test = 0;
      printf("The string returned by the first function does not contain two instances of ' Hello'. ");
    }
    else {
      n = ptr-result[0];
      switch(length) {
      case 0: *((hh_t *)(test3[1]+8)) = (hh_t)n; break;
      case 1: *((hhu_t *)(test3[1]+8)) = (hhu_t)n; break;
      case 2: *((h_t *)(test3[1]+8)) = (h_t)n; break;
      case 3: *((hu_t *)(test3[1]+8)) = (hu_t)n; break;
      case 4: *((l_t *)(test3[1]+8)) = (l_t)n; break;
      case 5: *((lu_t *)(test3[1]+8)) = (lu_t)n; break;
      case 6: *((ll_t *)(test3[1]+8)) = (ll_t)n; break;
      case 7: *((llu_t *)(test3[1]+8)) = (llu_t)n; break;
      case 8: *((j_t *)(test3[1]+8)) = (j_t)n; break;
      case 9: *((ju_t *)(test3[1]+8)) = (ju_t)n; break;
      case 10: *((z_t *)(test3[1]+8)) = (z_t)n; break;
      case 11: *((zu_t *)(test3[1]+8)) = (zu_t)n; break;
      default: *((t_t *)(test3[1]+8)) = (t_t)n; break;
      }
    }

    for(i=0;i<SIZE;i++) {
      if(test2[0][i] != test3[1][i]) {
        test = 0;
        printf("The second %%n of the first function did not return the expected value (%d). ", n);
        break;
      }
    }
  }

  if(strcmp(result[0], result[1])) {
    test = 0;
    printf("Both implementations did not return the same string. ");
  }

  if(strchr(result[0], '%')) {
    test = 0;
    printf("The format string has not been understood by the first function. ");
  }

  if (!test) {
    printf("Below: first the string returned by the first function, then the string returned by the second function.\n");
    printf("%s [returned value: %d]\n", result[0], r[0]);
    printf("%s [returned value: %d]\n", result[1], r[1]);

    for(i=0;i<SIZE-1;i++) printf("%hhu-", test1[0][i]);
    printf("%hhu. [First %%n returned by the first function]\n", test1[0][SIZE-1]);

    for(i=0;i<SIZE-1;i++) printf("%hhu-", test1[1][i]);
    printf("%hhu. [First %%n returned by the second function]\n", test1[1][SIZE-1]);

    for(i=0;i<SIZE-1;i++) printf("%hhu-", test3[0][i]);
    printf("%hhu. [Expected first %%n returned by the first function]\n", test3[0][SIZE-1]);

    for(i=0;i<SIZE-1;i++) printf("%hhu-", test2[0][i]);
    printf("%hhu. [Second %%n returned by the first function]\n", test2[0][SIZE-1]);

    for(i=0;i<SIZE-1;i++) printf("%hhu-", test2[1][i]);
    printf("%hhu. [Second %%n returned by the second function]\n", test2[1][SIZE-1]);

    for(i=0;i<SIZE-1;i++) printf("%hhu-", test3[1][i]);
    printf("%hhu. [Expected second %%n returned by the first function]\n", test3[1][SIZE-1]);
  }

  return test;
}

#define DO_TESTS(cast)                                                  \
  clean(test1, test2, result);                                          \
  if (p!=1)                                                             \
    sprintf(format, "|%%%s%.0d.%d%s%c| %%%sn %%s |%%%s%.0d.%d%s%c| %%%sn %%s", \
            flags, width[w], prec[p], length[L], conv[c], length[L],    \
            flags, width[w], prec[p], length[L], conv[c], length[L]);   \
  else                                                                  \
    sprintf(format, "|%%%s%.0d.%s%c| %%%sn %%s |%%%s%.0d.%s%c| %%%sn %%s", \
            flags, width[w], length[L], conv[c], length[L],             \
            flags, width[w], length[L], conv[c], length[L]);            \
  for(i=0;i<2;i++)                                                      \
    r[i] = prntf[i](result[i], format,                                  \
                    (cast)(val[v]), (cast *)(test1[i]+8), str,          \
                    (cast)(val[v]), (cast *)(test2[i]+8), str);         \
  if(!verif(r, result, test1, test2, 2*L+(!c), 1, 17))                  \
    printf("Tested format string was: \"%s\", %d\n\n", format, val[v]); \
  snlength[3] = (size_t)(r[0]); snlength[4] = (size_t)(r[0])+1;         \
  for(j=0;j<5;j++) {                                                    \
    clean(test1, test2, result);                                        \
    for(i=0;i<2;i++) {                                                  \
      r[i] = snprntf[i]( (j==0)?NULL:result[i], snlength[j], format,    \
                         (cast)(val[v]), (cast *)(test1[i]+8), str,     \
                         (cast)(val[v]), (cast *)(test2[i]+8), str);    \
      result[i][BUFSIZE-1] = '\0';                                      \
    }                                                                   \
    if(!verif(r, result, test1, test2, 2*L+(!c), (j==4), snlength[j]))  \
      printf("Tested format string was: \"%s\", %d\n\n", format, val[v]); \
  }                                                                     \
                                                                        \
                                                                        \
                                                                        \
  clean(test1, test2, result);                                          \
  if (p!=1)                                                             \
    sprintf(format, "|%%%s*.%d%s%c| %%%sn %%s |%%%s*.%d%s%c| %%%sn %%s", \
            flags, prec[p], length[L], conv[c], length[L],              \
            flags, prec[p], length[L], conv[c], length[L]);             \
  else                                                                  \
    sprintf(format, "|%%%s*.%s%c| %%%sn %%s |%%%s*.%s%c| %%%sn %%s",    \
            flags, length[L], conv[c], length[L],                       \
            flags, length[L], conv[c], length[L]);                      \
  for(i=0;i<2;i++)                                                      \
    r[i] = prntf[i](result[i], format,                                  \
                    width[w], (cast)(val[v]), (cast *)(test1[i]+8), str, \
                    width[w], (cast)(val[v]), (cast *)(test2[i]+8), str); \
  if(!verif(r, result, test1, test2, 2*L+(!c), 1, 17))                  \
    printf("Tested format string was: \"%s\", %d, %d\n\n", format, width[w], val[v]); \
  snlength[3] = (size_t)(r[0]); snlength[4] = (size_t)(r[0])+1;         \
  for(j=0;j<5;j++) {                                                    \
    clean(test1, test2, result);                                        \
    for(i=0;i<2;i++) {                                                  \
      r[i] = snprntf[i]( (j==0)?NULL:result[i], snlength[j], format,    \
                         width[w], (cast)(val[v]), (cast *)(test1[i]+8), str, \
                         width[w], (cast)(val[v]), (cast *)(test2[i]+8), str); \
      result[i][BUFSIZE-1] = '\0';                                      \
    }                                                                   \
    if(!verif(r, result, test1, test2, 2*L+(!c), (j==4), snlength[j]))  \
      printf("Tested format string was: \"%s\", %d, %d\n\n", format, width[w], val[v]); \
  }                                                                     \
                                                                        \
  clean(test1, test2, result);                                          \
  sprintf(format, "|%%%s%.0d.*%s%c| %%%sn %%s |%%%s%.0d.*%s%c| %%%sn %%s", \
          flags, width[w], length[L], conv[c], length[L],               \
          flags, width[w], length[L], conv[c], length[L]);              \
  for(i=0;i<2;i++)                                                      \
    r[i] = prntf[i](result[i], format,                                  \
                    prec[p], (cast)(val[v]), (cast *)(test1[i]+8), str, \
                    prec[p], (cast)(val[v]), (cast *)(test2[i]+8), str); \
  if(!verif(r, result, test1, test2, 2*L+(!c), 1, 17))                  \
    printf("Tested format string was: \"%s\", %d, %d\n\n", format, prec[p], val[v]); \
  snlength[3] = (size_t)(r[0]); snlength[4] = (size_t)(r[0])+1;         \
  for(j=0;j<5;j++) {                                                    \
    clean(test1, test2, result);                                        \
    for(i=0;i<2;i++) {                                                  \
      r[i] = snprntf[i]( (j==0)?NULL:result[i], snlength[j], format,    \
                         prec[p], (cast)(val[v]), (cast *)(test1[i]+8), str, \
                         prec[p], (cast)(val[v]), (cast *)(test2[i]+8), str); \
      result[i][BUFSIZE-1] = '\0';                                      \
    }                                                                   \
    if(!verif(r, result, test1, test2, 2*L+(!c), (j==4), snlength[j]))  \
      printf("Tested format string was: \"%s\", %d, %d\n\n", format, prec[p], val[v]); \
  }                                                                     \
                                                                        \
                                                                        \
  clean(test1, test2, result);                                          \
  sprintf(format, "|%%%s*.*%s%c| %%%sn %%s |%%%s*.*%s%c| %%%sn %%s",    \
          flags, length[L], conv[c], length[L],                         \
          flags, length[L], conv[c], length[L]);                        \
  for(i=0;i<2;i++)                                                      \
    r[i] = prntf[i](result[i], format,                                  \
                    width[w], prec[p], (cast)(val[v]), (cast *)(test1[i]+8), str, \
                    width[w], prec[p], (cast)(val[v]), (cast *)(test2[i]+8), str); \
  if(!verif(r, result, test1, test2, 2*L+(!c), 1, 17))                  \
    printf("Tested format string was: \"%s\", %d, %d, %d\n\n", format, width[w], prec[p], val[v]); \
  snlength[3] = (size_t)(r[0]); snlength[4] = (size_t)(r[0])+1;         \
  for(j=0;j<5;j++) {                                                    \
    clean(test1, test2, result);                                        \
    for(i=0;i<2;i++) {                                                  \
      r[i] = snprntf[i]( (j==0)?NULL:result[i], snlength[j], format,    \
                         width[w], prec[p], (cast)(val[v]), (cast *)(test1[i]+8), str, \
                         width[w], prec[p], (cast)(val[v]), (cast *)(test2[i]+8), str); \
      result[i][BUFSIZE-1] = '\0';                                      \
    }                                                                   \
    if(!verif(r, result, test1, test2, 2*L+(!c), (j==4), snlength[j]))  \
      printf("Tested format string was: \"%s\", %d, %d, %d\n\n", format, width[w], prec[p], val[v]); \
  }                                                                     \




#define DO_SOLLYA_TESTS(cast)                                           \
  /* format where the only possible flag character is '-'.                                 */ \
  /* Since it is the only flag character accepted by Sollya, this serves as a reference.   */ \
  /* Other formats, made with other possible flag characters must behave exactly the same. */ \
  sprintf(flags, (i==0)?"":"-");                                        \
  if (p!=1)                                                             \
    sprintf(format, "|%%%s%.0d.%d%c| %%ln %%s |%%%s%.0d.%d%c| %%ln %%s", flags, width[w], prec[p], sollya_modifier[v], flags, width[w], prec[p], sollya_modifier[v]); \
  else                                                                  \
    sprintf(format, "|%%%s%.0d.%c| %%ln %%s |%%%s%.0d.%c| %%ln %%s", flags, width[w], sollya_modifier[v], flags, width[w], sollya_modifier[v]); \
  clean_simple_tab(test1[0]); clean_simple_tab(test2[0]); clean_buffer(result[0]); \
  r[0] = sollya_lib_sprintf(result[0], format, *((cast *)(a[v])), (long int *)(test1[0]+8), str, *((cast *)(a[v])), (long int *)(test2[0]+8), str); \
  snlength[3] = (size_t)(r[0]); snlength[4] = (size_t)(r[0])+1;         \
  sprintf(log_format, "%%s  [Given by format \"%%s\", %%%c]\n", sollya_modifier[v]); \
  sollya_lib_printf(log_format, result[0], format, *((cast *)(a[v])));  \
  for(flag=0;flag<16;flag++) {                                          \
    flag2 = (2*flag+i);                                                 \
    sprintf(flags, "%s%s%s%s%s", (flag2 & 1)?"-":"", (flag2 & 2)?"#":"", (flag2 & 4)?"+":"", (flag2 & 8)?" ":"", (flag2 & 16)?"0":""); \
    if (p!=1)                                                           \
      sprintf(format, "|%%%s%.0d.%d%c| %%ln %%s |%%%s%.0d.%d%c| %%ln %%s", flags, width[w], prec[p], sollya_modifier[v], flags, width[w], prec[p], sollya_modifier[v]); \
    else                                                                \
      sprintf(format, "|%%%s%.0d.%c| %%ln %%s |%%%s%.0d.%c| %%ln %%s", flags, width[w], sollya_modifier[v], flags, width[w], sollya_modifier[v]); \
    clean_simple_tab(test1[1]); clean_simple_tab(test2[1]); clean_buffer(result[1]); \
    r[1] = sollya_lib_sprintf(result[1], format, *((cast *)(a[v])), (long int *)(test1[1]+8), str, *((cast *)(a[v])), (long int *)(test2[1]+8), str); \
    /* 4 is for long int conversion in %n */                            \
    if(!verif(r, result, test1, test2, 4, 1, 17)) {                     \
      sprintf(log_format, "Flag characters are not ignored as they should be. Format string was: \"%%s\", %%%c\n\n", sollya_modifier[v]); \
      sollya_lib_printf(log_format, format, *((cast *)(a[v])));         \
    }                                                                   \
                                                                        \
    for(j=0;j<5;j++) {                                                  \
      clean_simple_tab(test1[1]); clean_simple_tab(test2[1]); clean_buffer(result[1]); \
      sollya_lib_snprintf( (j==0)?NULL:result[1], snlength[j], format, *((cast *)(a[v])), (long int *)(test1[1]+8), str, *((cast *)(a[v])), (long int *)(test2[1]+8), str); \
                                                                        \
      /* 4 is for long iny converstion in %n */                         \
      sprintf(str_bak, result[0]);                                      \
      clean_buffer(result[0]);                                          \
      r[0] = snprintf(result[0], snlength[j], str_bak);                 \
      result[0][BUFSIZE-1] = '\0'; result[1][BUFSIZE-1] = '\0';         \
      if(!verif(r, result, test1, test2, 4, (j==4), snlength[j])) {     \
        sprintf(log_format, "Tested format string was: \"%%s\", %%%c\n\n", sollya_modifier[v]); \
        sollya_lib_printf(log_format, format, *((cast *)(a[v])));       \
      }                                                                 \
      sprintf(result[0], str_bak);                                      \
    }                                                                   \
  }                                                                     \
                                                                        \
                                                                        \
  sprintf(flags, (i==0)?"":"-");                                        \
  if (p!=1)                                                             \
    sprintf(format, "|%%%s*.%d%c| %%ln %%s |%%%s*.%d%c| %%ln %%s", flags, prec[p], sollya_modifier[v], flags, prec[p], sollya_modifier[v]); \
  else                                                                  \
    sprintf(format, "|%%%s*.%c| %%ln %%s |%%%s*.%c| %%ln %%s", flags, sollya_modifier[v], flags, sollya_modifier[v]); \
  clean_simple_tab(test1[0]); clean_simple_tab(test2[0]); clean_buffer(result[0]); \
  r[0] = sollya_lib_sprintf(result[0], format, width[w], *((cast *)(a[v])), (long int *)(test1[0]+8), str, width[w], *((cast *)(a[v])), (long int *)(test2[0]+8), str); \
  snlength[3] = (size_t)(r[0]); snlength[4] = (size_t)(r[0])+1;         \
  sprintf(log_format, "%%s  [Given by format \"%%s\", %%d, %%%c]\n", sollya_modifier[v]); \
  sollya_lib_printf(log_format, result[0], format, width[w], *((cast *)(a[v]))); \
  for(flag=0;flag<16;flag++) {                                          \
    flag2 = (2*flag+i);                                                 \
    sprintf(flags, "%s%s%s%s%s", (flag2 & 1)?"-":"", (flag2 & 2)?"#":"", (flag2 & 4)?"+":"", (flag2 & 8)?" ":"", (flag2 & 16)?"0":""); \
    if (p!=1)                                                           \
      sprintf(format, "|%%%s*.%d%c| %%ln %%s |%%%s*.%d%c| %%ln %%s", flags, prec[p], sollya_modifier[v], flags, prec[p], sollya_modifier[v]); \
    else                                                                \
      sprintf(format, "|%%%s*.%c| %%ln %%s |%%%s*.%c| %%ln %%s", flags, sollya_modifier[v], flags, sollya_modifier[v]); \
    clean_simple_tab(test1[1]); clean_simple_tab(test2[1]); clean_buffer(result[1]); \
    r[1] = sollya_lib_sprintf(result[1], format, width[w], *((cast *)(a[v])), (long int *)(test1[1]+8), str, width[w], *((cast *)(a[v])), (long int *)(test2[1]+8), str); \
  /* 4 is for long int conversion in %n */                              \
    if(!verif(r, result, test1, test2, 4, 1, 17)) {                     \
      sprintf(log_format, "Flag characters are not ignored as they should be. Format string was: \"%%s\", %%%c\n\n", sollya_modifier[v]); \
      sollya_lib_printf(log_format, format, *((cast *)(a[v])));         \
    }                                                                   \
                                                                        \
    for(j=0;j<5;j++) {                                                  \
      clean_simple_tab(test1[1]); clean_simple_tab(test2[1]); clean_buffer(result[1]); \
      sollya_lib_snprintf( (j==0)?NULL:result[1], snlength[j], format, width[w], *((cast *)(a[v])), (long int *)(test1[1]+8), str, width[w], *((cast *)(a[v])), (long int *)(test2[1]+8), str); \
                                                                        \
      /* 4 is for long iny converstion in %n */                         \
      sprintf(str_bak, result[0]);                                      \
      clean_buffer(result[0]);                                          \
      r[0] = snprintf(result[0], snlength[j], str_bak);                 \
      result[0][BUFSIZE-1] = '\0'; result[1][BUFSIZE-1] = '\0';         \
      if(!verif(r, result, test1, test2, 4, (j==4), snlength[j])) {     \
        sprintf(log_format, "Tested format string was: \"%%s\", %%%c\n\n", sollya_modifier[v]); \
        sollya_lib_printf(log_format, format, *((cast *)(a[v])));       \
      }                                                                 \
      sprintf(result[0], str_bak);                                      \
    }                                                                   \
  }                                                                     \
                                                                        \
  sprintf(flags, (i==0)?"":"-");                                        \
  sprintf(format, "|%%%s%.0d.*%c| %%ln %%s |%%%s%.0d.*%c| %%ln %%s", flags, width[w], sollya_modifier[v], flags, width[w], sollya_modifier[v]); \
  clean_simple_tab(test1[0]); clean_simple_tab(test2[0]); clean_buffer(result[0]); \
  r[0] = sollya_lib_sprintf(result[0], format, prec[p], *((cast *)(a[v])), (long int *)(test1[0]+8), str, prec[p], *((cast *)(a[v])), (long int *)(test2[0]+8), str); \
  snlength[3] = (size_t)(r[0]); snlength[4] = (size_t)(r[0])+1;         \
  sprintf(log_format, "%%s  [Given by format \"%%s\", %%d, %%%c]\n", sollya_modifier[v]); \
  sollya_lib_printf(log_format, result[0], format, prec[p], *((cast *)(a[v]))); \
  for(flag=0;flag<16;flag++) {                                          \
    flag2 = (2*flag+i);                                                 \
    sprintf(flags, "%s%s%s%s%s", (flag2 & 1)?"-":"", (flag2 & 2)?"#":"", (flag2 & 4)?"+":"", (flag2 & 8)?" ":"", (flag2 & 16)?"0":""); \
    sprintf(format, "|%%%s%.0d.*%c| %%ln %%s |%%%s%.0d.*%c| %%ln %%s", flags, width[w], sollya_modifier[v], flags, width[w], sollya_modifier[v]); \
    clean_simple_tab(test1[1]); clean_simple_tab(test2[1]); clean_buffer(result[1]); \
    r[1] = sollya_lib_sprintf(result[1], format, prec[p], *((cast *)(a[v])), (long int *)(test1[1]+8), str, prec[p], *((cast *)(a[v])), (long int *)(test2[1]+8), str); \
    /* 4 is for long int conversion in %n */                            \
    if(!verif(r, result, test1, test2, 4, 1, 17)) {                     \
      sprintf(log_format, "Flag characters are not ignored as they should be. Format string was: \"%%s\", %%%c\n\n", sollya_modifier[v]); \
      sollya_lib_printf(log_format, format, *((cast *)(a[v])));         \
    }                                                                   \
                                                                        \
    for(j=0;j<5;j++) {                                                  \
      clean_simple_tab(test1[1]); clean_simple_tab(test2[1]); clean_buffer(result[1]); \
      sollya_lib_snprintf( (j==0)?NULL:result[1], snlength[j], format, prec[p], *((cast *)(a[v])), (long int *)(test1[1]+8), str, prec[p], *((cast *)(a[v])), (long int *)(test2[1]+8), str); \
                                                                        \
      /* 4 is for long iny converstion in %n */                         \
      sprintf(str_bak, result[0]);                                      \
      clean_buffer(result[0]);                                          \
      r[0] = snprintf(result[0], snlength[j], str_bak);                 \
      result[0][BUFSIZE-1] = '\0'; result[1][BUFSIZE-1] = '\0';         \
      if(!verif(r, result, test1, test2, 4, (j==4), snlength[j])) {     \
        sprintf(log_format, "Tested format string was: \"%%s\", %%%c\n\n", sollya_modifier[v]); \
        sollya_lib_printf(log_format, format, *((cast *)(a[v])));       \
      }                                                                 \
      sprintf(result[0], str_bak);                                      \
    }                                                                   \
  }                                                                     \
                                                                        \
                                                                        \
  sprintf(flags, (i==0)?"":"-");                                        \
  sprintf(format, "|%%%s*.*%c| %%ln %%s |%%%s*.*%c| %%ln %%s", flags, sollya_modifier[v], flags, sollya_modifier[v]); \
  clean_simple_tab(test1[0]); clean_simple_tab(test2[0]); clean_buffer(result[0]); \
  r[0] = sollya_lib_sprintf(result[0], format, width[w], prec[p], *((cast *)(a[v])), (long int *)(test1[0]+8), str, width[w], prec[p], *((cast *)(a[v])), (long int *)(test2[0]+8), str); \
  snlength[3] = (size_t)(r[0]); snlength[4] = (size_t)(r[0])+1;         \
  sprintf(log_format, "%%s  [Given by format \"%%s\", %%d, %%d, %%%c]\n", sollya_modifier[v]); \
  sollya_lib_printf(log_format, result[0], format, width[w], prec[p], *((cast *)(a[v]))); \
  for(flag=0;flag<16;flag++) {                                          \
    flag2 = (2*flag+i);                                                 \
    sprintf(flags, "%s%s%s%s%s", (flag2 & 1)?"-":"", (flag2 & 2)?"#":"", (flag2 & 4)?"+":"", (flag2 & 8)?" ":"", (flag2 & 16)?"0":""); \
    sprintf(format, "|%%%s*.*%c| %%ln %%s |%%%s*.*%c| %%ln %%s", flags, sollya_modifier[v], flags, sollya_modifier[v]); \
    clean_simple_tab(test1[1]); clean_simple_tab(test2[1]); clean_buffer(result[1]); \
    r[1] = sollya_lib_sprintf(result[1], format, width[w], prec[p], *((cast *)(a[v])), (long int *)(test1[1]+8), str, width[w], prec[p], *((cast *)(a[v])), (long int *)(test2[1]+8), str); \
    /* 4 is for long int conversion in %n */                            \
    if(!verif(r, result, test1, test2, 4, 1, 17)) {                     \
      sprintf(log_format, "Flag characters are not ignored as they should be. Format string was: \"%%s\", %%%c\n\n", sollya_modifier[v]); \
      sollya_lib_printf(log_format, format, *((cast *)(a[v])));         \
    }                                                                   \
                                                                        \
    for(j=0;j<5;j++) {                                                  \
      clean_simple_tab(test1[1]); clean_simple_tab(test2[1]); clean_buffer(result[1]); \
      sollya_lib_snprintf( (j==0)?NULL:result[1], snlength[j], format, width[w], prec[p], *((cast *)(a[v])), (long int *)(test1[1]+8), str, width[w], prec[p], *((cast *)(a[v])), (long int *)(test2[1]+8), str); \
                                                                        \
      /* 4 is for long int conversion in %n */                          \
      sprintf(str_bak, result[0]);                                      \
      clean_buffer(result[0]);                                          \
      r[0] = snprintf(result[0], snlength[j], str_bak);                 \
      result[0][BUFSIZE-1] = '\0'; result[1][BUFSIZE-1] = '\0';         \
      if(!verif(r, result, test1, test2, 4, (j==4), snlength[j])) {     \
        sprintf(log_format, "Tested format string was: \"%%s\", %%%c\n\n", sollya_modifier[v]); \
        sollya_lib_printf(log_format, format, *((cast *)(a[v])));       \
      }                                                                 \
      sprintf(result[0], str_bak);                                      \
    }                                                                   \
  }                                                                     \



#define DO_SPECIAL_TESTS(cast)                                          \
  clean_buffer(result[0]); r[0] = -1; r[1] = -1;                        \
  sprintf(format, "Hello|%%-25%c| %%n|%%d|", sollya_modifier[v]);       \
  r[1] = sollya_lib_snprintf(result[0], positions[i], format, *((cast *)(a[v])), &r[0], 42); \
  sollya_lib_printf("%s [value stored in %%n: %d; returned value: %d]\n", result[0], r[0], r[1]); \


int main(void) {
  int flag, flag2;
  char flags[6];
  int w;
  int width[4] = {-17, 0, 1, 17};
  int p;
  int prec[4] = {0, -5, 1, 17};
  int c;
  char conv[6] = {'u', 'd','i', 'o', 'x', 'X'};
  int v;
  int val[3] = {-42, 0, 42};
  int L;
  char *length[7] = {"hh", "h", "l", "ll", "j", "z", "t" };
  char *str = "Hello, world!";
  char format[BUFSIZE];
  char log_format[BUFSIZE];
  char test1[2][SIZE];
  char test2[2][SIZE];
  int r[2];
  char result[2][BUFSIZE];
  char str_bak[BUFSIZE];
  int (*prntf[2])(char *str, const char *formats, ...);
  prntf[0] = sprintf; prntf[1] = wrapper_sollya_sprintf;
  int (*snprntf[2])(char *str, size_t size, const char *formats, ...);
  snprntf[0] = snprintf; snprntf[1] = wrapper_sollya_snprintf;
  size_t snlength[5] = {0, 0, 1, 42, 42};
  int i, j;
  void *a[6];
  char sollya_modifier[6] = {'v', 'w', 'r', 'b', 'b', 'k'};
  int positions[6] = {6, 7, 8, 34, 35, 36};
  mpfr_t tmp1;
  mpfi_t tmp2;
  mpq_t tmp3;
  sollya_obj_t tmp4, tmp5;
  mpz_t tmp6;
  sollya_obj_t tmp_sollya_obj;

  /*  mpfi_t x[2]; */

  sollya_lib_init();

  /* Format : % [[attr1] ... [attrn]] [width] [.prec] [length] conv
     with
       attr in #|0|+|-|' '
       width an integer (or * and an integer argument)
       prec an integer (or * and an integer argument)
        length in hh|h|l|ll|L|q|j|z|t
       conv in d|i|o|u|x|X|e|E|f|F|g|G|a|A|c|s|p|n
  */
  for(flag=0;flag<32;flag++) {
    sprintf(flags, "%s%s%s%s%s", (flag & 1)?"-":"", (flag & 2)?"#":"", (flag & 4)?"+":"", (flag & 8)?" ":"", (flag & 16)?"0":"");
    for(w=0;w<4;w++) {
      for(p=0;p<4;p++) {
        for(v=0; v<3; v++) {
          for(c=0; c<6; c++) {
            for(L=0;L< (7-(!c)); L++) {  /* The trick 7-(!c) ensures that L ranges from 0 to 6 when c!=0
                                            i.e., length can be any of 'h', 'hh', 'l', 'll', 'j', 'z,' or 't' when the conversion is unsigned,
                                            but ranges from 0 to 5 when c==0,
                                            i.e. length 't' is excluded when the conversion is 'u'
                                         */
              /* The trick 2*L+(!c) permits us to consider 0 for hh, 1 for hhu,    2 for h, 3 for hu, etc. */
              switch(2*L+(!c)) {
              case 0: DO_TESTS(hh_t) break;
              case 1: DO_TESTS(hhu_t) break;
              case 2: DO_TESTS(h_t) break;
              case 3: DO_TESTS(hu_t) break;
              case 4: DO_TESTS(l_t) break;
              case 5: DO_TESTS(lu_t) break;
              case 6: DO_TESTS(ll_t) break;
              case 7: DO_TESTS(llu_t) break;
              case 8: DO_TESTS(j_t) break;
              case 9: DO_TESTS(ju_t) break;
              case 10: DO_TESTS(z_t) break;
              case 11: DO_TESTS(zu_t) break;
              default: DO_TESTS(t_t) break;
              }
            }
          }
        }
      }
    }
  }
  printf("Performed %d tests.\n", counter);

  mpfr_init2(tmp1, 53); mpfr_set_d(tmp1, 3.141592653589793, GMP_RNDN); a[0] = (void *)(&tmp1);
  mpfi_init2(tmp2, 53); mpfi_const_pi(tmp2); a[1] = (void *)(&tmp2);
  mpq_init(tmp3);
  mpz_init(tmp6);
  mpq_set_ui(tmp3, 2, 3); a[2] = (void *)(&tmp3);
  tmp4 = sollya_lib_build_list(SOLLYA_COS(SOLLYA_ADD(SOLLYA_X_, SOLLYA_CONST(42))), NULL); a[3] = (void *)(&tmp4);
  tmp5 = SOLLYA_CONST(17); a[4] = (void *)(&tmp5);
  mpz_set_si(tmp6, -17); a[5] = (void *)(&tmp6);

  tmp_sollya_obj = sollya_lib_on();
  sollya_lib_set_midpointmode(tmp_sollya_obj);
  sollya_lib_clear_obj(tmp_sollya_obj);

  prec[3] = 5;
  for(v=0; v<6; v++) {
    if(v==4) { tmp_sollya_obj = sollya_lib_hexadecimal(); sollya_lib_set_display(tmp_sollya_obj); sollya_lib_clear_obj(tmp_sollya_obj); }
    for(w=0;w<4;w++) {
      for(p=0;p<4;p++) {
        for(i=0;i<2;i++) {
          switch(v) {
          case 0: DO_SOLLYA_TESTS(mpfr_t) break;
          case 1: DO_SOLLYA_TESTS(mpfi_t) break;
          case 2: DO_SOLLYA_TESTS(mpq_t) break;
          case 3: DO_SOLLYA_TESTS(sollya_obj_t) break;
          case 4: DO_SOLLYA_TESTS(sollya_obj_t) break;
          case 5: DO_SOLLYA_TESTS(mpz_t) break;
          default: break;
          }
        }
      }
    }
  }
  printf("End of Sollya specific tests.\n");


  /* Testing what happens when snprintf must stop just at the beginning of a conversion */
  mpfr_set_ui(tmp1, 17, GMP_RNDN);
  mpfi_set_ui(tmp2, 17);

  w=17; a[4] = (void *)(&w); sollya_modifier[4] = 'd';
  for(v=0; v<6; v++) {
    for(i=0;i<6; i++) {
          switch(v) {
          case 0: DO_SPECIAL_TESTS(mpfr_t) break;
          case 1: DO_SPECIAL_TESTS(mpfi_t) break;
          case 2: DO_SPECIAL_TESTS(mpq_t) break;
          case 3: DO_SPECIAL_TESTS(sollya_obj_t) break;
          case 4: DO_SPECIAL_TESTS(int) break;
          case 5: DO_SPECIAL_TESTS(mpz_t) break;
          default: break;
          }
    }
  }

  /* Miscellanous tests */
  sollya_lib_printf("%b (should be NULL)\n", NULL);
  sollya_lib_printf("%% (should display the character percent)\n", NULL);

  sollya_lib_clear_obj(tmp4);
  tmp4 = sollya_lib_build_list(sollya_lib_string("Hello\nyou"), NULL);
  sollya_lib_printf("%b\n", tmp4);

  sollya_lib_clear_obj(tmp4);
  tmp4 = sollya_lib_build_list(sollya_lib_string("Hello\012you"), NULL);
  sollya_lib_printf("%b\n", tmp4);

  sollya_lib_clear_obj(tmp4);
  tmp4 = sollya_lib_parse_string("[|\"Hello\\012you\"|]");
  sollya_lib_printf("%b\n", tmp4);

  sollya_lib_clear_obj(tmp4);
  tmp4 = sollya_lib_build_list(sollya_lib_string("Hello\0you"), NULL);
  sollya_lib_printf("%b\n", tmp4);

  mpfr_clear(tmp1);
  mpfi_clear(tmp2);
  mpq_clear(tmp3);
  sollya_lib_clear_obj(tmp4);
  sollya_lib_clear_obj(tmp5);
  mpz_clear(tmp6);

  sollya_lib_close();
  return 0;
}
#endif /* SYSTEM_DOES_NOT_ALLOW_COMPLETE_PRINTF */