File: numconv.c

package info (click to toggle)
libuninum 2.7-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 1,968 kB
  • ctags: 1,031
  • sloc: ansic: 9,967; sh: 8,715; tcl: 553; makefile: 78
file content (381 lines) | stat: -rw-r--r-- 10,545 bytes parent folder | download | duplicates (3)
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
/* Time-stamp: <2007-09-22 19:46:06 poser>
 *
 * Copyright (C) 2006, 2007 William J. Poser (billposer@alum.mit.edu)
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of version 2 of the GNU General Public License as
 * published by the Free Software Foundation.
 *
 * 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, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 * or go to the web page:  http://www.gnu.org/licenses/gpl.txt.
 */

#include "config.h"
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <gmp.h>
#include <math.h>
#ifdef HAVE_GETOPT_LONG
#define _GNU_SOURCE
#include <getopt.h>
#endif
#include "unicode.h"
#include "uninum.h"
#include "nsdefs.h"
#include "utf8error.h"
#include "exitcode.h"
#include "input.h"

#ifndef HAVE_GETOPT_LONG

struct option
{
# if (defined __STDC__ && __STDC__) || defined __cplusplus
  const char *name;
# else
  char *name;
# endif
  /* has_arg can't be an enum because some compilers complain about
     type mismatches in all the code that assumes it is an int.  */
  int has_arg;
  int *flag;
  int val;
};

int
getopt_long(int ac,
	    char *const *av,
	    const char * sopts,
	    const struct option *lopts, 
	    int *lind){

  return(getopt(ac,av,sopts));
}
#endif

struct option opts[]={
  {"help",0,NULL,'h'},
  {"version",0,NULL,'v'},
  {"input-base",1,NULL,'b'},
  {"output-base",1,NULL,'B'},
  {"from",1,NULL,'f'},
  {"group-size",1,NULL,'g'},
  {"low-group-size",1,NULL,'G'},
  {"identify",1,NULL,'I'},
  {"input-file",1,NULL,'i'},
  {"roman-use-macron",0,NULL,'m'},
  {"output-file",1,NULL,'o'},
  {"use-locale-group-info",0,NULL,'L'},
  {"list-number-systems",0,NULL,'l'},
  {"list-number-system-cover-terms",0,NULL,'c'},
  {"group-separator",1,NULL,'s'},
  {"to",1,NULL,'t'},
   {0,0,0,0}
};

#define MSGSIZE 512
#define INPUT_TEXT_SIZE_INIT 32

char *pgname ="numconv";
char compdate[]="Compiled " __DATE__ " " __TIME__ ;

void ShowNumberSystems(int which) {
  char *ds;
  while (ds = ListNumberSystems(1,which)) printf("%s\n",ds);
}

void
Usage(FILE *fp){
  fprintf(fp,"Filter to convert integers from one number system to another.\n");
  fprintf(fp,"%s [options]\n",pgname);
  fprintf(fp,"If the number system is 'all', the number system will be autodetected\nfor each input line and the output will consist of the original string,\nthe name of the number system, and the result of the conversion.\nIf the number system is 'any', the number system of the first input\nline will be autodetected and assumed for all subsequent lines.\n");
  fprintf(fp,"Options:\n");
  fprintf(fp,"\t-b\t<input base>\t\t\n");
  fprintf(fp,"\t-B\t<output base>\t\t\n");
  fprintf(fp,"\t-c\tList the available number system cover terms.\n");
  fprintf(fp,"\t-f\t<input number system>\t\t\n");
  fprintf(fp,"\t-g\t<output general group size>\t\t\n");
  fprintf(fp,"\t-G\t<output low group size>\t\t\n");
  fprintf(fp,"\t-h\tPrint help information.\n");
  fprintf(fp,"\t-i\t<input file name>\t\t\n");
  fprintf(fp,"\t-I\tIdentify the number system of the input.\n");
#ifdef HAVE_LOCALECONV
  fprintf(fp,"\t-L\tSet output grouping parameters according to current locale.\n");
#endif
  fprintf(fp,"\t-l\tList the available number systems.\n");
  fprintf(fp,"\t-m\tUse bar for thousands in roman numerals.\n");
  fprintf(fp,"\t-o\t<output file name>\t\t\n");
  fprintf(fp,"\t-s\t<output group separator>\t\t\n");
  fprintf(fp,"\t-t\t<output number system>\t\t\n");
  fprintf(fp,"\t-v\tPrint version information.\n");
}

void
ShowVersion(FILE *fp){
  fprintf(fp,"%s  %s\n",pgname,VERSION);
  fprintf(fp,"  lib uninum  %s\n",uninum_version());
  fprintf(fp,"  lib gmp     %s\n",gmp_version);
  fprintf(fp,"%s\n",compdate);
  fprintf(fp,"Copyright (C) 2006-2007 William J. Poser\n");
  fprintf(stderr,"This program is free software; you can redistribute it and/or modify\n");
  fprintf(stderr,"it under the terms of version 2 of the GNU General Public License\n");
  fprintf(stderr,"as published by the Free Software Foundation.\n");
  fprintf(stderr,"Report bugs to: billposer@alum.mit.edu\n");
}

char *StripSeparators(char *s, char d) {
  char *t;
  char *o;
  char c;
  o = t = s;

  while ((c = *s++) != '\0') if (c != d) *t++ = c;
  *t = '\0';
  return o;
}

char msg[MSGSIZE+1];

int main(int ac, char **av) {
  UTF32 *line = NULL;
  int nr;
  int oc;
  unsigned long num;
  unsigned long LineCnt = 0L;
  int Base;
  int gns;
  int ins;
  int ons;
  int ans;
  FILE *infp;
  FILE *outfp;
  int lgoindex;			/* Unused but needed by getopt_long */
  short IdentifyOnlyP = 0;
#ifdef HAVE_LOCALECONV
  short UseLocaleGroupInfoP = 0;
#endif
  char *numstr;
  union ns_rval val;
  UTF32 *ptr = NULL;
  char *InputNumberSystem = NULL;
  char *OutputNumberSystem = NULL;
  char *InputFileName = NULL; 
  char *OutputFileName = NULL; 
  int InputTextSize = INPUT_TEXT_SIZE_INIT;
  int LineLength = 0;
  char *maxptr;

  extern int optind;
  extern char *optarg;
  extern int optopt;
  extern int opterr;

  extern int getopt(int,char * const [],const char *);
  extern void putu8s(UTF32 *,FILE *);
  extern void fputu8(UTF32,FILE *);
  extern UTF32 *wcgetline(FILE *, int *,unsigned long);

  opterr = 0;
  while( (oc = getopt_long(ac,av,":B:b:cf:G:g:hi:IlLmo:s:t:v",opts,&lgoindex)) != EOF){
    switch(oc){
    case 'b':
      Uninum_Input_Base = atoi(optarg);
      break;
    case 'B':
      Uninum_Output_Base = atoi(optarg);
      break;
    case 'f':
      InputNumberSystem = optarg;
      break;
    case 'g':
      Uninum_Output_General_Group_Size = atoi(optarg);
      break;
    case 'G':
      Uninum_Output_First_Group_Size = atoi(optarg);
      break;
    case 'i':
      InputFileName = optarg;
      break;
    case 'm':
      Uninum_Generate_Roman_With_Bar_P = 1;
      break;
    case 'o':
      OutputFileName = optarg;
      break;
    case 's':
      Uninum_Output_Group_Separator = optarg[0];
      break;
    case 't':
      OutputNumberSystem = optarg;
      break;
    case 'h':
      Usage(stdout);
      exit(2);
    case 'I':
      IdentifyOnlyP = 1;
      break;
#ifdef HAVE_LOCALECONV
    case 'L':
      UseLocaleGroupInfoP = 1;
      break;
#endif
    case 'c':
     ShowNumberSystems(1);
      exit(2);
    case 'l':
     ShowNumberSystems(0);
     exit(2);
    case 'v':
      ShowVersion(stdout);
      exit(2);
    case ':':
       fprintf(stderr,"%s: option flag %c requires an argument.\n",pgname,optopt);
       exit(1);
    case '?':
      fprintf(stderr,"%s: invalid option flag %c\n",pgname,optopt);
      exit(1);
    }
  }

  if(InputNumberSystem == NULL)  InputNumberSystem = "all";
  if(OutputNumberSystem == NULL) OutputNumberSystem = "Western_Lower";

  if(InputFileName) {
    infp = fopen(InputFileName,"r");
    if(infp == NULL) {
      snprintf(msg,MSGSIZE,"Unable to open input file %s",InputFileName);
      perror(msg);
      exit(OPENERROR);
    }
  }
  else infp = stdin;

  if(OutputFileName) {
    outfp = fopen(OutputFileName,"w");
    if(outfp == NULL) {
      snprintf(msg,MSGSIZE,"Unable to open output file %s",OutputFileName);
      perror(msg);
      exit(OPENERROR);
    }
  }
  else outfp = stdout;

  if(!IdentifyOnlyP) {
    ins = StringToNumberSystem(InputNumberSystem);
    if(ins == NS_UNKNOWN) {
      fprintf(stderr,"Number system %s not recognized.\n",InputNumberSystem);
      exit(1);
    }
    ons = StringToNumberSystem(OutputNumberSystem);
    if(ons == NS_UNKNOWN) {
      fprintf(stderr,"Number system %s not recognized.\n",OutputNumberSystem);
      exit(1);
    }
    if(uninum_ns_type != NS_TYPE_SAFE) {
      fprintf(stderr,"Number system %s is not suitable for string generation.\n",
	      OutputNumberSystem);
      exit(1);
    }
  }

#ifdef HAVE_LOCALECONV
  if(UseLocaleGroupInfoP) GetLocaleGroupInfo();
#endif

  while (1) {
    if(line) free(line);
    if(ptr) free(ptr);
    line=wcgetline(infp, &LineLength,LineCnt);
    if(LineLength == -1) { /* EOF */
      break;
    }
    if(LineLength == 0) {
      LineCnt++; 
      putchar('\n');
      continue;
    }
    LineCnt++; 

    if(IdentifyOnlyP) {
      gns = GuessNumberSystem(line);
      if ( (gns == NS_UNKNOWN) || (gns == NS_ALLZERO)) {
	printf("Cannot identify number system.\n");
	continue;
      }
      else {
	fprintf(outfp,"%s\n",NumberSystemToString(gns));
	continue;
      }
    }

    if (ins == NS_ALL) {
      gns = GuessNumberSystem(line);
      if(gns == NS_UNKNOWN) {
	printf("Cannot identify input number system.\n");
	continue;
      }
      ans = gns;
    }
    else ans = ins;

    if(ans != NS_ALLZERO) {
      StringToInt(&val,line,NS_TYPE_STRING,ans);
      if(uninum_err == NS_ERROR_BADCHARACTER) {
	fprintf(stderr,"Character ");
	fputu8(uninum_badchar,stderr);
	fprintf(stderr,
		"U+%04X illegal in number system %s detected at line %d.\n",
		uninum_badchar,
		NumberSystemToString(ans),
		LineCnt);
	continue;
      }
      if(uninum_err == NS_ERROR_NOTCONSISTENTWITHBASE) {
	fprintf(stderr,"Input contains a character inconsistent with the base.\n");
	continue;
      }
      if(uninum_err == NS_ERROR_OKAY) {
	ptr = IntToString(&val,ons,NS_TYPE_STRING);
      }
    } 
    else {
      val.u = 0L;
      ptr = IntToString(&val,ons,NS_TYPE_ULONG);
    }
    switch(uninum_err) {
    case NS_ERROR_RANGE:
      fprintf(stderr,"%s falls outside the range of the %s number system\n",
	      val.s,NumberSystemToString(ons));
      maxptr = UninumStringMaximumValue(ons);
      if(maxptr) {
	fprintf(stderr,"Values must be non-negative. The maximum expressible is: %s\n",maxptr);
	free(maxptr);
      }
      break;
    case NS_ERROR_NOZERO:
      fprintf(stderr,"The %s number system cannot represent zero in base %d.\n",
	      NumberSystemToString(ons),Uninum_Output_Base);
      break;
    case NS_ERROR_OUTOFMEMORY:
      fprintf(stderr,"Failed to allocate memory.\n");
      exit(OUTOFMEMORY); 
      break;			/* NOTREACHED */
    case NS_ERROR_OKAY:
      if(ptr != NULL) {putu8s(ptr,outfp);putc('\n',outfp);}
      else fprintf(stderr,"Pointer is null.\n");
      break;
    default:
      fprintf(stderr,"Unknown error.\n");
      break;
    }
  } /* End of while loop over input lines */
  exit(0);
}