File: options.c

package info (click to toggle)
numdiff 5.9.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,680 kB
  • sloc: ansic: 10,808; sh: 3,383; makefile: 276
file content (996 lines) | stat: -rw-r--r-- 38,053 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
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
/*
    Numdiff - compare putatively similar files, 
    ignoring small numeric differences
    Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017  Ivano Primi  <ivprimi@libero.it>

    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/

#define GDIFF_OPTIONS 1

/* Leave this inclusion at the begin, otherwise problems */
/* with the symbol __USE_FILE_OFFSET64                   */
#include"numdiff.h"
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<ctype.h>
#include<float.h>
#include"getopt.h"
#include"error.h"
#include"linesplit.h"
#include"xalloc.h"

#ifdef _DMALLOC_
#include <dmalloc.h> /* Useful only for the debugging */
#endif

void print_version (const char* progname)
{
  printf ("%s %s\n", progname, VERSION);
  printf ("Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017  %s <ivprimi@libero.it>\n", 
	  /* TRANSLATORS: This is a proper name.  See the gettext
	     manual, section Names.
	     Pronounciation is like "evaa-no pree-me".  */
	  _("Ivano Primi"));
  printf (_("\
License GPLv3+: GNU GPL version 3 or later,\n\
see <http://gnu.org/licenses/gpl.html>.\n\
This is free software: you are free to change and redistribute it.\n\
There is NO WARRANTY, to the extent permitted by law.\n"));
#ifdef USE_GMP
  printf ("\n%s %s.\n", _("The software has been linked against\n\
the GNU Multiple Precision Arithmetic Library,\n\
version number"), gmp_version);
#else  /* not USE_GMP */
  printf ("\n%s.\n", _("The software has been built with\n\
its own internal support for multiple precision arithmetic"));
#endif /* not USE_GMP */
}

void print_help (const char* progname)
{
  puts (_("Usage:"));
  printf ("%s -h|--help|-v|--version   %s\n\n", progname, _("or"));
  printf ("%s %s\n", progname, "[-s IFS][-D DELIMS][-a THRVAL[:RANGE|:RANGE1:RANGE2]][-r THRVAL[:RANGE|:RANGE1:RANGE2]][-2][-F NUM][-# NUM][-P][-N][-I][-c CURRNAME][-d C1C2][-t C1C2][-g N1N2][-p C1C2][-n C1C2][-e C1C2][-i C1C2][-X 1:RANGE][-X 2:RANGE][-E][-U][-b][-V][-O[NUM]][--raw][-q][-S][-z 1:RANGE][-z 2:RANGE][-Z 1:RANGE][-Z 2:RANGE][-m][-H][-f[NUM]][-T][-B][-l PATH][-o PATH] FILE1 FILE2");
  printf (_("\nCompare putatively similar files line by line and field by field,\nignoring small numeric differences or/and different numeric formats.\n\n"));
  printf (_("RANGE, RANGE1 and RANGE2 stay for a positive integer value or\nfor a range of integer values, like 1-, 3-5 or -7.\n"));
  printf ("%s\n%s\n%s\n\n%s\n\n",
	  _("The two arguments after the options are the names of the files to compare."),
	  _("The complete paths of the files should be given,\na directory name is not accepted."),
	  _("The given paths cannot refer to the same file\nbut one of them can be \"-\", which refers to stdin."),
	  _("Exit status: 1 if files differ, 0 if they are equal, -1 (255) in case of error"));
  /* %%% */
  printf ("-s, --separators=IFS\n    %s\n    %s\n    %s\n",
	  _("Specify the set of characters to use as delimiters\n    while splitting the input lines into fields"),
	  _("(The default set of delimiters is space, tab and newline)."),
	  _("If IFS is prefixed with 1: or 2:, use the given delimiter set\n    only for the lines from the first or the second file respectively"));
  printf ("-D, --delimiters=DELIMS\n    %s\n    %s\n    %s\n",
	  _("Specify the set of strings to use as delimiters\n    while splitting the input lines into fields"),
	  _("(The default set of delimiters is space, tab and newline)."),
	  _("If DELIMS is prefixed with 1: or 2:, use the given delimiter set\n    only for the lines from the first or the second file respectively"));
  printf ("-a, --absolute-tolerance=THRVAL[:RANGE|:RANGE1:RANGE2]\n    %s\n    %s\n    %s\n", 
	  _("Set to THRVAL the maximum absolute difference permitted\n    before two numeric fields are regarded as different\n    (The default value is zero)."),
	  _("If a RANGE is given, use the specified\n    threshold only when comparing fields whose positions lie in RANGE."),
	  _("If both RANGE1 and RANGE2 are given and have the same length,\n    then use the specified threshold when comparing a field of FILE1\n    lying in RANGE1 with the corresponding field of FILE2 in RANGE2"));
  printf ("-r, --relative-tolerance=THRVAL[:RANGE|:RANGE1:RANGE2]\n    %s\n    %s\n    %s\n", 
	  _("Set to THRVAL the maximum relative difference permitted\n    before two numeric fields are regarded as different\n    (The default value is zero)."),
	  _("If a RANGE is given, use the specified\n    threshold only when comparing fields whose positions lie in RANGE."),
	  _("If both RANGE1 and RANGE2 are given and have the same length,\n    then use the specified threshold when comparing a field of FILE1\n    lying in RANGE1 with the corresponding field of FILE2 in RANGE2"));
  printf ("-2, --strict\n    %s\n",
	  _("Consider two numerical values as equal only if\n    both absolute and relative difference do not exceed\n    the respective tolerance threshold"));
  printf ("-F, --formula=NUM\n    %s\n    %s\n    %s\n    %s\n",
	  _("Use the formula indicated by NUM to compute the relative errors."),
	  _("If \'NUM\' is 0 use the classic formula."),
	  _("If \'NUM\' is 1 compute the relative errors by considering\n    the values in FILE1 as sample values."),
	  _("If \'NUM\' is 2 compute the relative errors by considering\n    the values in FILE2 as sample values."));
  printf ("-#, --digits=NUM\n    %s\n",
	  _("Set to NUM the number of digits in the significands\n    used in multiple precision arithmetic"));
  printf ("-P, --positive-differences\n    %s\n",
	  _("Ignore all differences due to numeric fields of the second file that\n    are less than the corresponding numeric fields in the first file"));
  printf ("-N, --negative-differences\n    %s\n",
	  _("Ignore all differences due to numeric fields of the second file that\n    are greater than the corresponding numeric fields in the first file"));
  printf ("-I, --ignore-case\n    %s\n",
	  _("Ignore changes in case while doing literal comparisons"));
  printf ("-c, --currency=CURRNAME\n    %s\n    %s\n",
	  _("Set to CURRNAME the currency name for the two files to compare."),
	  _("CURRNAME must be prefixed with 1: or 2: to specify the\n    currency name only for the first or the second file"));
  printf ("-d, --decimal-point=C1C2\n    %s\n",
	  _("Specify the characters representing the decimal point\n    in the two files to compare"));
  printf ("-t, --thousands-separator=C1C2\n    %s\n",
	  _("Specify the characters representing the thousands separator\n    in the two files to compare"));
  printf ("-g, --group-length=N1N2\n    %s\n",
	  _("Specify the number of digits forming each group of thousands\n    in the two files to compare"));
  printf ("-p, --plus-prefix=C1C2\n    %s\n",
	  _("Specify the (optional) prefixes for positive values\n    used in the two files to compare"));
  printf ("-n, --minus-prefix=C1C2\n    %s\n",
	  _("Specify the prefixes for negative values\n    used in the two files to compare"));
  printf ("-e, --exponent-letter=C1C2\n    %s\n",
	  _("Specify the exponent letters\n    used in the two files to compare"));
  printf ("-i, --imaginary-unit=C1C2\n    %s\n",
	  _("Specify the characters representing the imaginary unit\n    in the two files to compare"));
  printf ("-X, --exclude=1:RANGE\n    %s\n",
	  _("Select the fields of the first file that have to be ignored"));
  printf ("-X, --exclude=2:RANGE\n    %s\n",
	  _("Select the fields of the second file that have to be ignored"));
  printf ("-E, --essential\n    %s\n",
	  _("While printing the differences between the two compared files\n    show only the numerical ones"));
  printf ("-U, --dummy\n    %s\n",
	  _("While printing the differences between the two compared files\n    neglect all the numerical ones (dummy mode)"));
  printf ("-b, --brief\n    %s\n",
	  _("Suppress all messages concerning the differences discovered\n    in the structures of the two files"));
  printf ("-V, --verbose\n    %s\n",
	  _("For every couple of lines which differ in at least one field print\n    an header to show how these lines appear in the two compared files"));
  printf ("-O, --overview[=NUM]\n    %s\n    %s\n    %s\n    %s\n",
	  _("Display a side by side difference listing of the two files\n    showing which lines are present only in one file, which\n    lines are present in both files but with one or more differing fields,\n    and which lines are identical."),
	  _("If \'NUM\' is zero or is not specified, output at most 130 columns per line."),
	  _("If \'NUM\' is a positive number, output at most \'NUM\' columns per line."),
	  _("If \'NUM\' is a negative number, do not output common lines\n    and display at most -\'NUM\' columns per line."));
  printf ("--raw\n    %s\n",
	  _("Display the differences between the two compared files\n    in raw format (not very convenient for humans)"));
  printf ("-q, --quiet, --silent\n    %s\n",
	  _("Suppress all the standard output"));
  printf ("-S, --statistics\n    %s\n",
	  _("Add some statistics to the standard output"));
  printf ("-z, --blur-if-numerical=1:RANGE\n    %s\n",
	  _("Select the fields of the first file that have to be\n    blurred during the synchronization procedure\n    only if they turn out to be numeric"));
  printf ("-z, --blur-if-numerical=2:RANGE\n    %s\n",
	  _("Select the fields of the second file that have to be\n    blurred during the synchronization procedure\n    only if they turn out to be numeric"));
  printf ("-Z, --blur-unconditionally=1:RANGE\n    %s\n",
	  _("Select the fields of the first file that have to be\n    unconditionally blurred during the synchronization procedure"));
  printf ("-Z, --blur-unconditionally=2:RANGE\n    %s\n",
	  _("Select the fields of the second file that have to be\n    unconditionally blurred during the synchronization procedure"));
  printf ("-m, --minimal\n    %s\n",
	  _("During synchronization try hard to find a smaller set of changes"));
  printf ("-H, --speed-large-files\n    %s\n",
	  _("During synchronization assume large files and\n    many scattered small changes"));
  printf ("-f, --test-filter[=NUM]\n    %s\n    %s\n    %s\n    %s\n",
	  _("Run only the filter and then show the results of its\n    attempt to synchronize the two files."),
	  _("If \'NUM\' is zero or is not specified, output at most 130 columns per line."),
	  _("If \'NUM\' is a positive number, output at most \'NUM\' columns per line."),
	  _("If \'NUM\' is a negative number, do not output common lines\n    and display at most -\'NUM\' columns per line."));
  printf ("-T, --expand-tabs\n    %s\n",
	  _("Expand tabs to spaces in output while displaying the results of the\n    synchronization procedure (meaningful only together with option -O or -f)"));
  printf ("-B, --binary\n    %s\n",
	  _("Treat both files as binary files (only meaningful under Doz/Windoz)"));
  printf ("-l, --warnings-to=PATH\n    %s\n",
	  _("Redirect warning and error messages from stderr to the indicated file"));
  printf ("-o, --output=PATH\n    %s\n",
	  _("Redirect output from stdout to the indicated file"));
  printf ("-h, --help\n    %s\n", _("Show help message and predefined settings"));
  printf ("-v, --version\n    %s\n", _("Show version number, Copyright, Distribution Terms and NO-Warranty"));
  /* %%% */
  puts (_("\n  Default numeric format (for both files to compare):\n"));
  printf (_("Currency name = \"%s\"\n"), CURRENCY);
  printf (_("Decimal point = `%c\'\n"), DP);

  printf (_("Thousands separator = `%c\'\n"), THSEP);
  printf (_("Number of digits in each thousands group = %u\n"), GROUPING);

  printf (_("Leading positive sign = `%c\'\n"), POS_SIGN);
  printf (_("Leading negative sign = `%c\'\n"), NEG_SIGN);
  printf (_("Prefix for decimal exponent = `%c\'\n"), ECH);
  printf (_("Symbol used to denote the imaginary unit = `%c\'\n\n"), IU);
}

static
int nfset (int opt_ch, const char* opt_arg, argslist* arg_list)
{
  if (strlen(opt_arg) <= 2)
    {
      char _1st = *opt_arg, _2nd = *(opt_arg+1);

      switch (opt_ch)
	{
	case 'd':
	  if ( (is_punct(_1st)) && (_2nd == '\0' || is_punct(_2nd)) )
	    {
	      setBitAtPosition (&arg_list->optmask, _D_MASK, BIT_ON);      
	      arg_list->nf1.dp = _1st;
	      arg_list->nf2.dp = (_2nd) ? _2nd : _1st; 
	      return 0;
	    }
	  break;
	case 't':
	  if ( (is_punct(_1st)) && (_2nd == '\0' || is_punct(_2nd)) )
	    {
	      setBitAtPosition (&arg_list->optmask, _T_MASK, BIT_ON);      
	      arg_list->nf1.thsep = _1st;
	      arg_list->nf2.thsep = (_2nd) ? _2nd : _1st;
	      return 0;
	    }
	  break;
	case 'e':
	  if ( is_print(_1st) && (_2nd == '\0' || is_print(_2nd)) )
	    {
	      setBitAtPosition (&arg_list->optmask, _E_MASK, BIT_ON);      
	      arg_list->nf1.ech = _1st;
	      arg_list->nf2.ech = (_2nd) ? _2nd : _1st;
	      return 0;
	    }
	  break;
	case 'n':
	  if ( is_print(_1st) && (_2nd == '\0' || is_print(_2nd)) )
	    {
	      setBitAtPosition (&arg_list->optmask, _N_MASK, BIT_ON);      
	      arg_list->nf1.neg_sign = _1st;
	      arg_list->nf2.neg_sign = (_2nd) ? _2nd : _1st;
	      return 0;
	    }
	  break;
	case 'i':
	  if ( is_print(_1st) && (_2nd == '\0' || is_print(_2nd)) )
	    {
	      setBitAtPosition (&arg_list->optmask, _I_MASK, BIT_ON);      
	      arg_list->nf1.iu = _1st;
	      arg_list->nf2.iu = (_2nd) ? _2nd : _1st;
	      return 0;
	    }
	  break;
	case 'p':
	  if ( is_print(_1st) && (_2nd == '\0' || is_print(_2nd)) )
	    {
	      setBitAtPosition (&arg_list->optmask, _P_MASK, BIT_ON);      
	      arg_list->nf1.pos_sign = _1st;
	      arg_list->nf2.pos_sign = (_2nd) ? _2nd : _1st;
	      return 0;
	    }
	  break;
	case 'g':
	  if ( (is_digit(_1st)) && (_2nd == '\0' || is_digit(_2nd)) )
	    {
	      setBitAtPosition (&arg_list->optmask, _G_MASK, BIT_ON);     
	      arg_list->nf1.grouping = _1st - '0';
	      arg_list->nf2.grouping = (_2nd) ? _2nd - '0': _1st - '0';
	      return 0;
	    }
	  break;
	}
    }
  return -1;
}

static
int fselect (const char* str, unsigned char* mask, int mask_size)
{
  long beg, end;
  unsigned long n;
  char *ptr, *endptr;

  beg = end = -1;
  if (!str || !*str)
    return 0; /* no field selected */
  /* If we arrive here we are sure that *str != '\0' ! */
  if ( strcmp (str, "@") == 0 )
    {
      /* select all fields */
      for (mask_size /= 8; mask_size > 0; mask_size--, mask[mask_size] = 0xFF);       
      return 1;
    }
  if ((beg = strtol (str, &endptr, 10)) == 0
      || beg > mask_size || beg < -mask_size)
    return -1; /* illegal input */
  else if (beg < 0)
    {
      if (*endptr == '\0')
	{
	  end = -beg;
	  beg = 1;
	}
      else
	return -1;
    }
  else if (*endptr == '\0')
    end = beg;
  else if (*endptr == '-')
    {
      if (*(ptr = endptr + 1) == '\0')
	end = mask_size; 
      else
	{
	  if ((end = strtol (ptr, &endptr, 10)) <= 0
	      || *endptr != '\0' || end > mask_size)
	    return -1; /* illegal input */
	}
    }
  if (beg > end)
    return -1;
  else
    {
      /* Remark: internally the field numbers
	 start from zero, not from one */
      for (n = beg - 1; n <= end - 1; n++)
	mask[n >> 3] |= 0x80 >> (n & 0x7);
      return 1;
    }
}

#define VALID_NUMFMT      0
#define INVALID_NUMFMT   -1
#define INVALID_CURRENCY -2

static
int is_numfmt_valid (const struct numfmt* pnf)
{
  char store[NUMFMT_CHARS];
  char *ptr;
  int i, j;

  for (ptr = pnf->currency; 
       *ptr != '\0' && 
	 (!is_digit(*ptr)) &&
	 *ptr != pnf->dp &&
	 *ptr != pnf->thsep &&
	 *ptr != pnf->pos_sign &&
	 *ptr != pnf->neg_sign; ptr++);
  if (*ptr != '\0')
    return INVALID_CURRENCY;
  store[0] = pnf->dp;
  store[1] = pnf->thsep;
  store[2] = pnf->pos_sign;
  store[3] = pnf->neg_sign;
  store[4] = pnf->ech;
  store[5] = pnf->iu;
  for (i=0; i < NUMFMT_CHARS; i++)
    {
      for (j = i+1; j < NUMFMT_CHARS; j++)
	if (store[i] == store[j])
	  return INVALID_NUMFMT;
    }
  return VALID_NUMFMT;
}

extern int optind;

int setargs (int argc, char* argv[], argslist *list)
{
  const int mask_size = FIELDMASK_SIZE*8;
  const char *optstring = "h2F:bBVO::qUESIPNz:Z:mHT#:s:D:a:r:c:d:t:g:p:n:e:i:f::X:l:o:v";
  struct option long_options[] = {
    {"help",                 0, NULL, 'h'},
    {"strict",               0, NULL, '2'},
    {"formula",              1, NULL, 'F'},
    {"brief",                0, NULL, 'b'},
    {"binary",               0, NULL, 'B'},
    {"verbose",              0, NULL, 'V'},
    {"overview",             2, NULL, 'O'},
    {"quiet",                0, NULL, 'q'},
    {"silent",               0, NULL, 'q'},
    {"dummy",                0, NULL, 'U'},
    {"essential",            0, NULL, 'E'},
    {"statistics",           0, NULL, 'S'},
    {"ignore-case",          0, NULL, 'I'},
    {"positive-differences", 0, NULL, 'P'},
    {"negative-differences", 0, NULL, 'N'},
    {"blur-if-numerical",    1, NULL, 'z'},
    {"blur-unconditionally", 1, NULL, 'Z'},
    {"minimal",              0, NULL, 'm'},
    {"speed-large-files",    0, NULL, 'H'},
    {"expand-tabs",          0, NULL, 'T'},
    {"digits",               1, NULL, '#'},
    {"separators",           1, NULL, 's'},
    {"delimiters",           1, NULL, 'D'},
    {"absolute-tolerance",   1, NULL, 'a'},
    {"relative-tolerance",   1, NULL, 'r'},
    {"currency",             1, NULL, 'c'},
    {"decimal-point",        1, NULL, 'd'},
    {"thousands-separator",  1, NULL, 't'},
    {"group-length",         1, NULL, 'g'},
    {"plus-prefix",          1, NULL, 'p'},
    {"minus-prefix",         1, NULL, 'n'},
    {"exponent-letter",      1, NULL, 'e'},
    {"imaginary-unit",       1, NULL, 'i'},
    {"test-filter",          2, NULL, 'f'},
    {"exclude",              1, NULL, 'X'},
    {"warnings-to",          1, NULL, 'l'},
    {"output",               1, NULL, 'o'},
    {"raw",                  0, NULL, 1000},
    {"version",              0, NULL, 'v'},
    {0, 0, 0, 0}
  };
  int option_index=0;
  char *tail;
  int cmpRes, optch, off, rv; 
  unsigned int t, file_id;
  long w = DEF_ATMOST_NCOLS;
  unsigned char *bitmask;  

  while ( (optch = getopt_long (argc, argv, optstring, long_options, &option_index)) != -1 )
    {
      switch (optch)
	{
	case 'h':
	  setBitAtPosition (&list->optmask, _H_MASK, BIT_ON);
	  break;
	case '2':
	  setBitAtPosition (&list->optmask, _2_MASK, BIT_ON);	  
	  break;	  
	case 'F':
	  setBitAtPosition (&list->optmask, _SF_MASK, BIT_ON);	  
	  if (strncmp ("0", optarg, 1) == 0)
	    list->relerr_formula = CLASSIC_FORMULA;	      
	  else if (strncmp ("1", optarg, 1) == 0)
	    list->relerr_formula = WR_TO_FIRST_FILE;	      
	  else if (strncmp ("2", optarg, 1) == 0)
	    list->relerr_formula = WR_TO_SECOND_FILE;
	  else
	    {
	      fprintf (stderr, _("%s: invalid argument after `-%c\' option\n"),
		       PACKAGE, optch);
	      return -1;
	    }
	  break;
	case 'b':
	  setBitAtPosition (&list->optmask, _B_MASK, BIT_ON);	  
	  break;
	case 'B':
	  setBitAtPosition (&list->optmask, _SB_MASK, BIT_ON);	  
	  binary = 1;
	  break;
	case 'V':
	  setBitAtPosition (&list->optmask, _SV_MASK, BIT_ON);	  
	  break;
	case 'q':
	  setBitAtPosition (&list->optmask, _Q_MASK, BIT_ON);	  
	  break;
	case 'U':
	  setBitAtPosition (&list->optmask, _SU_MASK, BIT_ON);
	  break;
	case 'E':
	  setBitAtPosition (&list->optmask, _SE_MASK, BIT_ON);
	  break;
	case 'S':
	  setBitAtPosition (&list->optmask, _SS_MASK, BIT_ON);
	  break;
	case 'I':
	  setBitAtPosition (&list->optmask, _SI_MASK, BIT_ON);	  
	  break;
	case 'P':
	  setBitAtPosition (&list->optmask, _SP_MASK, BIT_ON);	  
	  list->flag = 1;
	  break;
	case 'N':
	  setBitAtPosition (&list->optmask, _SN_MASK, BIT_ON);	  
	  list->flag = -1;
	  break;
	case 'z':
	  if ( (cmpRes = strncmp (optarg, "1:", 2)) && (strncmp (optarg, "2:", 2)) )
	    {
	      /*
		None of the prefixes 1: and 2: has been used,
		then we have to select fields for both files
	      */
	      if (fselect (optarg, list->pblurmask1, mask_size) <= 0)
		{
		  fprintf (stderr, _("%s: invalid argument after `-%c\' option\n"),
			   PACKAGE, optch);
		  return -1;
		}
	      else
		{
		  fselect (optarg, list->pblurmask2, mask_size);
		  setBitAtPosition (&list->optmask, _Z_MASK, BIT_ON);
		}
	    }
	  else 
	    {
	      bitmask = (cmpRes == 0 ? list->pblurmask1 : list->pblurmask2);
	      if (fselect (optarg+2, bitmask, mask_size) <= 0)
		{
		  fprintf (stderr, _("%s: invalid argument after `-%c\' option\n"),
			   PACKAGE, optch);
		  return -1;
		}
	      else
		setBitAtPosition (&list->optmask, _Z_MASK, BIT_ON);
	    }
	  break;
	case 'Z':
	  if ( (cmpRes = strncmp (optarg, "1:", 2)) && (strncmp (optarg, "2:", 2)) )
	    {
	      /*
		None of the prefixes 1: and 2: has been used,
		then we have to select fields for both files
	      */
	      if (fselect (optarg, list->tblurmask1, mask_size) <= 0)
		{
		  fprintf (stderr, _("%s: invalid argument after `-%c\' option\n"),
			   PACKAGE, optch);
		  return -1;
		}
	      else
		{
		  fselect (optarg, list->tblurmask2, mask_size);
		  setBitAtPosition (&list->optmask, _SZ_MASK, BIT_ON);  
		}
	    }
	  else 
	    {
	      bitmask = (cmpRes == 0 ? list->tblurmask1 : list->tblurmask2);
	      if (fselect (optarg+2, bitmask, mask_size) <= 0)
		{
		  fprintf (stderr, _("%s: invalid argument after `-%c\' option\n"),
			   PACKAGE, optch);
		  return -1;
		}
	      else
		setBitAtPosition (&list->optmask, _SZ_MASK, BIT_ON);
	    }
	  break;
	case 'm':
	  setBitAtPosition (&list->optmask, _M_MASK, BIT_ON);	  
	  break;
	case 'H':
	  setBitAtPosition (&list->optmask, _SH_MASK, BIT_ON);	  
	  speed_large_files = 1;
	  break;
	case 'T':
	  setBitAtPosition (&list->optmask, _ST_MASK, BIT_ON);	  
	  expand_tabs = 1;
	  break;
	case '#':
	  list->iscale = strtol (optarg, &tail, 10);
	  if (*tail != '\0' || list->iscale < 0 || list->iscale > MAX_ISCALE)
	    {
	      fprintf (stderr, _("%s: invalid argument after `-%c\' option\n"),
		       PACKAGE, optch);
	      return -1;
	    }
	  else
	    setBitAtPosition (&list->optmask, _X_MASK, BIT_ON);	    
	  break;
	case 's':
	  if (*optarg == '1' && *(optarg+1) == ':')
	    {
              if ((list->ifs1))
                {
                  delete_string_vector (list->ifs1);
                  list->ifs1 = NULL;
                }
              list->ifs1 = ssplit_former_way (optarg+2);
              if (!list->ifs1)
                {
                  fprintf (stderr, _("%s: memory exhausted\n"), PACKAGE);
                  return -1;
                }
	    }
	  else if (*optarg == '2' && *(optarg+1) == ':')
	    {
              if ((list->ifs2))
                {
                  delete_string_vector (list->ifs2);
                  list->ifs2 = NULL;
                }
              list->ifs2 = ssplit_former_way (optarg+2);
              if (!list->ifs2)
                {
                  fprintf (stderr, _("%s: memory exhausted\n"), PACKAGE);
                  return -1;
                }
	    }
	  else
	    {
              if ((list->ifs1))
                {
                  delete_string_vector (list->ifs1);
                  list->ifs1 = NULL;
                }
              if ((list->ifs2))
                {
                  delete_string_vector (list->ifs2);
                  list->ifs2 = NULL;
                }
              list->ifs1 = ssplit_former_way (optarg);
              list->ifs2 = ssplit_former_way (optarg);
              if (!list->ifs1 || !list->ifs2)
                {
                  fprintf (stderr, _("%s: memory exhausted\n"), PACKAGE);
                  return -1;
                }
	    }

          if ( ((list->ifs1) && !is_string_in_vector(NEWLINE_STR, (const char**) list->ifs1)) ||
               ((list->ifs2) && !is_string_in_vector(NEWLINE_STR, (const char**) list->ifs2)) )
	    {
	      fprintf (stderr, _("%s: invalid argument after `-%c\' option:\n"),
		       PACKAGE, optch);
	      fprintf (stderr, _("  The list of field delimiters can not be empty and\n  must always include the newline character (\'\\n\')\n"));
	      return -1;
	    }
	  else
            {
              remove_duplicates_from_string_vector (list->ifs1);
              remove_duplicates_from_string_vector (list->ifs2);
              sort_string_vector (list->ifs1); /* This is not strictly necessary */
              sort_string_vector (list->ifs2); /* This is not strictly necessary */
	      setBitAtPosition (&list->optmask, _S_MASK, BIT_ON);      
            }
	  break;
        case 'D':
	  if (*optarg == '1' && *(optarg+1) == ':')
	    {
              if ((list->ifs1))
                {
                  delete_string_vector (list->ifs1);
                  list->ifs1 = NULL;
                }
              list->ifs1 = ssplit (optarg+2, I_DEF_SEP);
              if (!list->ifs1)
                {
                  fprintf (stderr, _("%s: memory exhausted\n"), PACKAGE);
                  return -1;
                }
	    }
	  else if (*optarg == '2' && *(optarg+1) == ':')
	    {
              if ((list->ifs2))
                {
                  delete_string_vector (list->ifs2);
                  list->ifs2 = NULL;
                }
              list->ifs2 = ssplit (optarg+2, I_DEF_SEP);
              if (!list->ifs2)
                {
                  fprintf (stderr, _("%s: memory exhausted\n"), PACKAGE);
                  return -1;
                }
	    }
	  else
	    {
              if ((list->ifs1))
                {
                  delete_string_vector (list->ifs1);
                  list->ifs1 = NULL;
                }
              if ((list->ifs2))
                {
                  delete_string_vector (list->ifs2);
                  list->ifs2 = NULL;
                }
              list->ifs1 = ssplit (optarg, I_DEF_SEP);
              list->ifs2 = ssplit (optarg, I_DEF_SEP);
              if (!list->ifs1 || !list->ifs2)
                {
                  fprintf (stderr, _("%s: memory exhausted\n"), PACKAGE);
                  return -1;
                }
	    }
          if ( ((list->ifs1) && is_char_in_vector(NEWLINE, (const char**) list->ifs1) != 1) ||
               ((list->ifs2) && is_char_in_vector(NEWLINE, (const char**) list->ifs2) != 1) )
	    {
	      fprintf (stderr, _("%s: invalid argument after `-%c\' option:\n"),
		       PACKAGE, optch);
	      fprintf (stderr, _("  The list of field delimiters cannot be empty and\n  must always include the newline string (\"\\n\").\n  Care that the newline character cannot appear\n  in any other delimiter than the newline string\n"));
	      return -1;
	    }
	  else
            {
              remove_duplicates_from_string_vector (list->ifs1);
              remove_duplicates_from_string_vector (list->ifs2);
              sort_string_vector (list->ifs1); 
              sort_string_vector (list->ifs2);
	      setBitAtPosition (&list->optmask, _SD_MASK, BIT_ON);      
            }
          break;
	case 'a':
	  rv = thrlist_add (&list->maxabserr, optarg);
	  if (rv == THRLIST_INVALID_FORMAT)
	    {
	      fprintf (stderr, _("%s: invalid argument after `-%c\' option:\n"),
		       PACKAGE, optch);
	      fprintf (stderr, _("  The format specification has not been respected\n"));
	      return -1;
	    }
	  else if (rv == THRLIST_INVALID_RANGES)
	    {
	      fprintf (stderr, _("%s: invalid argument after `-%c\' option:\n"),
		       PACKAGE, optch);
	      fprintf (stderr, _("  The specified ranges do not have the same length\n"));
	      return -1;
	    }
	  else
	    setBitAtPosition (&list->optmask, _A_MASK, BIT_ON);	    
	  break;
	case 'r':
	  rv = thrlist_add (&list->maxrelerr, optarg);
	  if (rv == THRLIST_INVALID_FORMAT)
	    {
	      fprintf (stderr, _("%s: invalid argument after `-%c\' option:\n"),
		       PACKAGE, optch);
	      fprintf (stderr, _("  The format specification has not been respected\n"));
	      return -1;
	    }
	  else if (rv == THRLIST_INVALID_RANGES)
	    {
	      fprintf (stderr, _("%s: invalid argument after `-%c\' option:\n"),
		       PACKAGE, optch);
	      fprintf (stderr, _("  The specified ranges do not have the same length\n"));
	      return -1;
	    }
	  else
	    setBitAtPosition (&list->optmask, _R_MASK, BIT_ON);	    
	  break;
	case 'c':
	  file_id = 0x0;
	  if (*optarg == '1' && *(optarg+1) == ':')
	    {
	      if ((list->nf1.currency))
		free((void*)list->nf1.currency);
	      list->nf1.currency = get_separating_string (optarg+2);
              file_id = 0x1;
	    }
	  else if (*optarg == '2' && *(optarg+1) == ':')
	    {
	      if ((list->nf2.currency))
		free((void*)list->nf2.currency);
	      list->nf2.currency = get_separating_string (optarg+2);
	      file_id = 0x2;
	    }
	  else
	    {
	      if ((list->nf1.currency))
		free((void*)list->nf1.currency);
	      list->nf1.currency = get_separating_string (optarg);
	      if ((list->nf2.currency))
		free((void*)list->nf2.currency);
	      list->nf2.currency = get_separating_string (optarg);
	      file_id = 0x3;
	    }
	  if ( (strlen(list->nf1.currency) == 0 && ((file_id & 0x3) == 0x1))
	    || (strlen(list->nf2.currency) == 0 && ((file_id & 0x3) == 0x2)) )
	    {
	      fprintf (stderr, _("%s: invalid argument after `-%c\' option:\n"),
		       PACKAGE, optch);
	      fprintf (stderr, _("  you have missed to specify the currency name\n"));
	      return -1;
	    }
	  setBitAtPosition (&list->optmask, _C_MASK, BIT_ON);
	  break;
	case 'd':
	case 't':
	case 'g':
	case 'p':
	case 'n':
	case 'e':
	case 'i':
	  if (nfset (optch, optarg, list) < 0)
	    {
	      fprintf (stderr, _("%s: invalid argument after `-%c\' option\n"),
		       PACKAGE, optch);
	      return -1;
	    }
	  break;
	case 'f':
	case 'O':
	  if (getBitAtPosition (&list->optmask, _F_MASK) == BIT_OFF &&
	      getBitAtPosition (&list->optmask, _SO_MASK) == BIT_OFF)
	    {
	      if(!optarg)
		{
		  /* There is no optional argument, then set */
		  /* 'w' to 'DEF_ATMOST_NCOLS'.              */
		  if (optch == 'f')
		    setBitAtPosition (&list->optmask, _F_MASK, BIT_ON); 
		  else
		    setBitAtPosition (&list->optmask, _SO_MASK, BIT_ON);
		  w = DEF_ATMOST_NCOLS;
		}
	      else
		{
		  /* An argument follows */
		  w = strtol (optarg, &tail, 10);
		  /* If the argument of the option is not a valid number, */
		  /* then exit after printing a suitable error message.   */
		  if (*tail != '\0')
		    {
		      fprintf (stderr, _("%s: invalid argument after `-%c\' option\n"),
			       PACKAGE, optch);
		      return -1;
		    }
		  else
		    {
		      if (optch == 'f')
			setBitAtPosition (&list->optmask, _F_MASK, BIT_ON); 
		      else
			setBitAtPosition (&list->optmask, _SO_MASK, BIT_ON);
		    }
		  /* Otherwise you have to set 'w' appropriately. */
		  /* If the given argument is less than -MAX_ATMOST_NCOLS */
		  /* then set 'w' to 'DEF_ATMOST_NCOLS' and 'suppress_common_lines' to 'TRUE'. */
		  if (w < -MAX_ATMOST_NCOLS)
		    {
		      w = DEF_ATMOST_NCOLS;
		      suppress_common_lines = 1;
		    }
		  /* If the argument were negative, then remove the sign */
		  /* and set 'suppress_common_lines' to 'TRUE'.          */
		  if (w < 0)
		    {
		      w *= -1;
		      suppress_common_lines = 1;
		    }
		  /* If the given argument is too small or too big in absolute value, */
		  /* then set 'w' to 'DEF_ATMOST_NCOLS'.                              */
		  if (w < MIN_ATMOST_NCOLS || w > MAX_ATMOST_NCOLS)
		    w = DEF_ATMOST_NCOLS;
		  /* Otherwise leave 'w' set to the value of the argument. */
		} /* end optarg != 0 */
	    }
	  break;
	case 'X':
	  if ( (cmpRes = strncmp (optarg, "1:", 2)) && (strncmp (optarg, "2:", 2)) )
	    {
	      /*
		None of the prefixes 1: and 2: has been used,
		then we have to select fields for both files
	      */
	      if (fselect (optarg, list->ghostmask1, mask_size) <= 0)
		{
		  fprintf (stderr, _("%s: invalid argument after `-%c\' option\n"),
			   PACKAGE, optch);
		  return -1;
		}
	      else
		{
		  fselect (optarg, list->ghostmask2, mask_size);
		  setBitAtPosition (&list->optmask, _SX_MASK, BIT_ON);
		}
	    }
	  else 
	    {
	      bitmask = (cmpRes == 0 ? list->ghostmask1 : list->ghostmask2);
	      if (fselect (optarg+2, bitmask, mask_size) <= 0)
		{
		  fprintf (stderr, _("%s: invalid argument after `-%c\' option\n"),
			   PACKAGE, optch);
		  return -1;
		}
	      else
		setBitAtPosition (&list->optmask, _SX_MASK, BIT_ON);
	    }
	  break;
	case 'l':
	  if (!freopen (optarg, "w", stderr))
	    {
	      fprintf (stderr, _("%s: cannot open file \"%s\":\n"),
		       PACKAGE, optarg);
	      perror(0);
	      return -1;
	    }
	  setBitAtPosition (&list->optmask, _L_MASK, BIT_ON);	  
	  break;
	case 'o':
	  if (!freopen (optarg, "w", stdout))
	    {
	      fprintf (stderr, _("%s: cannot open file \"%s\":\n"),
		       PACKAGE, optarg);
	      perror(0);
	      return -1;
	    }
	  setBitAtPosition (&list->optmask, _O_MASK, BIT_ON);	  
	  break;
	case 1000:
	  setBitAtPosition (&list->optmask, _RAW_MASK, BIT_ON);
	  break;
	case 'v':
	  setBitAtPosition (&list->optmask, _V_MASK, BIT_ON);	  
	  break;
	default:
	  /* 	  
		  fprintf (stderr, 
		  _("%s: unrecognized option `-%c\' \n"), PACKAGE, optch); 
	  */
	  return -1;
	}
    }

  t = expand_tabs ? 1 : TAB_WIDTH;
  off = (w + t + 3) / (2 * t)  *  t;
  sdiff_half_width = MAX (0, MIN (off - 3, w - off)),
    sdiff_column2_offset = sdiff_half_width ? off : w;

  if (getBitAtPosition (&list->optmask, _SV_MASK) == BIT_ON)
    list->output_mode = OUTMODE_VERBOSE;
  if (getBitAtPosition (&list->optmask, _B_MASK) == BIT_ON)
    list->output_mode = OUTMODE_BRIEF;
  if (getBitAtPosition (&list->optmask, _B_MASK) == BIT_ON &&
      getBitAtPosition (&list->optmask, _SV_MASK) == BIT_ON)
    list->output_mode = OUTMODE_COINCISE;
  if (getBitAtPosition (&list->optmask, _SO_MASK) == BIT_ON)
    list->output_mode = OUTMODE_OVERVIEW;
  if (getBitAtPosition (&list->optmask, _RAW_MASK) == BIT_ON)
    list->output_mode = OUTMODE_RAW;  
  if (getBitAtPosition (&list->optmask, _Q_MASK) == BIT_ON)
    list->output_mode = OUTMODE_QUIET;

  if (getBitAtPosition (&list->optmask, _H_MASK) == BIT_OFF &&
      getBitAtPosition (&list->optmask, _V_MASK) == BIT_OFF &&
      argc - optind != 2)
    {
      print_help (PACKAGE);
      return -1;
    }
  else if ( (rv = is_numfmt_valid(&list->nf1)) == INVALID_NUMFMT )
    {
      fprintf (stderr, 
	       _("The numeric format specified for the first file is illegal,\n"));
      fprintf (stderr,
	       _("the following symbols should be all different\nwhile two or more of them are actually equal:\n"));
      fprintf (stderr, _("\nDecimal point = `%c\'\n"), list->nf1.dp);
      fprintf (stderr, _("Thousands separator = `%c\'\n"), list->nf1.thsep);
      fprintf (stderr, _("Leading positive sign = `%c\'\n"), list->nf1.pos_sign);
      fprintf (stderr, _("Leading negative sign = `%c\'\n"), list->nf1.neg_sign);
      fprintf (stderr, _("Prefix for decimal exponent = `%c\'\n"), 
	       list->nf1.ech);
      fprintf (stderr, 
	       _("Symbol used to denote the imaginary unit = `%c\'\n\n"), 
	       list->nf1.iu);
      return -1;
    }
  else if ( rv == INVALID_CURRENCY )
    {
      fprintf (stderr, 
	       _("The numeric format specified for the first file is illegal:\n"));
      fprintf (stderr,
	       _("the name of the currency may not contain digits,\n"));
      fprintf (stderr,
	       _("the symbol for the leading positive sign (`%c\'),\n"), list->nf1.pos_sign);
      fprintf (stderr,
	       _("the symbol for the leading negative sign (`%c\'),\n"), list->nf1.neg_sign);
      fprintf (stderr,
	       _("the decimal point (`%c\'), or the thousands separator (`%c\')\n"), list->nf1.dp, list->nf1.thsep);
      return -1;
    }
  else if ( (rv = is_numfmt_valid(&list->nf2)) == INVALID_NUMFMT )
    {
      fprintf (stderr, 
	       _("The numeric format specified for the second file is illegal,\n"));
      fprintf (stderr,
	       _("the following symbols should be all different\nwhile two or more of them are actually equal:\n"));
      fprintf (stderr, _("\nDecimal point = `%c\'\n"), list->nf2.dp);
      fprintf (stderr, _("Thousands separator = `%c\'\n"), list->nf2.thsep);
      fprintf (stderr, _("Leading positive sign = `%c\'\n"), list->nf2.pos_sign);
      fprintf (stderr, _("Leading negative sign = `%c\'\n"), list->nf2.neg_sign);
      fprintf (stderr, _("Prefix for decimal exponent = `%c\'\n"), 
	       list->nf2.ech);
      fprintf (stderr, 
	       _("Symbol used to denote the imaginary unit = `%c\'\n\n"), 
	       list->nf2.iu);
      return -1;
    }
  else if ( rv == INVALID_CURRENCY )
    {
      fprintf (stderr, 
	       _("The numeric format specified for the second file is illegal:\n"));
      fprintf (stderr,
	       _("the name of the currency may not contain digits,\n"));
      fprintf (stderr,
	       _("the symbol for the leading positive sign (`%c\'),\n"), list->nf2.pos_sign);
      fprintf (stderr,
	       _("the symbol for the leading negative sign (`%c\'),\n"), list->nf2.neg_sign);
      fprintf (stderr,
	       _("the decimal point (`%c\'), or the thousands separator (`%c\')\n"), list->nf2.dp, list->nf2.thsep);
      return -1;
    }
  else
    {
      if(getBitAtPosition (&list->optmask, _H_MASK) == BIT_OFF &&
	 getBitAtPosition (&list->optmask, _V_MASK) == BIT_OFF)
	{
	  list->file1 = (const char*) argv[optind];
	  list->file2 = (const char*) argv[optind+1];
	}
      return 0;
    }
}