Don't define NDEBUG, now that it's done via configure's --disable-assert option.
[pspp] / lib / xstrtol.c
1 /* A more useful interface to strtol.
2    Copyright (C) 1995, 1996, 1998 Free Software Foundation, Inc.
3
4    This program is free software; you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation; either version 2, or (at your option)
7    any later version.
8
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program; if not, write to the Free Software Foundation,
16    Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
17
18 /* Written by Jim Meyering. */
19
20 #if HAVE_CONFIG_H
21 # include <config.h>
22 #endif
23
24 #if STDC_HEADERS
25 # include <stdlib.h>
26 #endif
27
28 #if HAVE_STRING_H
29 # include <string.h>
30 #else
31 # include <strings.h>
32 # ifndef strchr
33 #  define strchr index
34 # endif
35 #endif
36
37 #include <assert.h>
38
39 #include <errno.h>
40 #ifndef errno
41 extern int errno;
42 #endif
43
44 #if HAVE_LIMITS_H
45 # include <limits.h>
46 #endif
47
48 #ifndef CHAR_BIT
49 # define CHAR_BIT 8
50 #endif
51
52 /* The extra casts work around common compiler bugs.  */
53 #define TYPE_SIGNED(t) (! ((t) 0 < (t) -1))
54 /* The outer cast is needed to work around a bug in Cray C 5.0.3.0.
55    It is necessary at least when t == time_t.  */
56 #define TYPE_MINIMUM(t) ((t) (TYPE_SIGNED (t) \
57                               ? ~ (t) 0 << (sizeof (t) * CHAR_BIT - 1) : (t) 0))
58 #define TYPE_MAXIMUM(t) (~ (t) 0 - TYPE_MINIMUM (t))
59
60 #ifndef ULONG_MAX
61 # define ULONG_MAX TYPE_MAXIMUM (unsigned long int)
62 #endif
63
64 #ifndef LONG_MAX
65 # define LONG_MAX TYPE_MAXIMUM (long int)
66 #endif
67
68 #include "xstrtol.h"
69
70 __unsigned long int __strtol ();
71
72 static int
73 bkm_scale (__unsigned long int *x, int scale_factor)
74 {
75   __unsigned long int product = *x * scale_factor;
76   if (*x != product / scale_factor)
77     return 1;
78   *x = product;
79   return 0;
80 }
81
82 static int
83 bkm_scale_by_power (__unsigned long int *x, int base, int power)
84 {
85   while (power--)
86     if (bkm_scale (x, base))
87       return 1;
88
89   return 0;
90 }
91
92 /* FIXME: comment.  */
93
94 strtol_error
95 __xstrtol (const char *s, char **ptr, int strtol_base,
96            __unsigned long int *val, const char *valid_suffixes)
97 {
98   char *t_ptr;
99   char **p;
100   __unsigned long int tmp;
101
102   assert (0 <= strtol_base && strtol_base <= 36);
103
104   p = (ptr ? ptr : &t_ptr);
105
106   errno = 0;
107   tmp = __strtol (s, p, strtol_base);
108   if (errno != 0)
109     return LONGINT_OVERFLOW;
110   if (*p == s)
111     return LONGINT_INVALID;
112
113   /* Let valid_suffixes == NULL mean `allow any suffix'.  */
114   /* FIXME: update all callers except the one in tail.c changing
115      last parameter NULL to `""'.  */
116   if (!valid_suffixes)
117     {
118       *val = tmp;
119       return LONGINT_OK;
120     }
121
122   if (**p != '\0')
123     {
124       int base = 1024;
125       int suffixes = 1;
126       int overflow;
127
128       if (!strchr (valid_suffixes, **p))
129         return LONGINT_INVALID_SUFFIX_CHAR;
130
131       if (strchr (valid_suffixes, '0'))
132         {
133           /* The ``valid suffix'' '0' is a special flag meaning that
134              an optional second suffix is allowed, which can change
135              the base, e.g. "100MD" for 100 megabytes decimal.  */
136
137           switch (p[0][1])
138             {
139             case 'B':
140               suffixes++;
141               break;
142
143             case 'D':
144               base = 1000;
145               suffixes++;
146               break;
147             }
148         }
149
150       switch (**p)
151         {
152         case 'b':
153           overflow = bkm_scale (&tmp, 512);
154           break;
155
156         case 'B':
157           overflow = bkm_scale (&tmp, 1024);
158           break;
159
160         case 'c':
161           overflow = 0;
162           break;
163
164         case 'E': /* Exa */
165           overflow = bkm_scale_by_power (&tmp, base, 6);
166           break;
167
168         case 'G': /* Giga */
169           overflow = bkm_scale_by_power (&tmp, base, 3);
170           break;
171
172         case 'k': /* kilo */
173           overflow = bkm_scale_by_power (&tmp, base, 1);
174           break;
175
176         case 'M': /* Mega */
177         case 'm': /* 'm' is undocumented; for backward compatibility only */
178           overflow = bkm_scale_by_power (&tmp, base, 2);
179           break;
180
181         case 'P': /* Peta */
182           overflow = bkm_scale_by_power (&tmp, base, 5);
183           break;
184
185         case 'T': /* Tera */
186           overflow = bkm_scale_by_power (&tmp, base, 4);
187           break;
188
189         case 'w':
190           overflow = bkm_scale (&tmp, 2);
191           break;
192
193         case 'Y': /* Yotta */
194           overflow = bkm_scale_by_power (&tmp, base, 8);
195           break;
196
197         case 'Z': /* Zetta */
198           overflow = bkm_scale_by_power (&tmp, base, 7);
199           break;
200
201         default:
202           return LONGINT_INVALID_SUFFIX_CHAR;
203           break;
204         }
205
206       if (overflow)
207         return LONGINT_OVERFLOW;
208
209       (*p) += suffixes;
210     }
211
212   *val = tmp;
213   return LONGINT_OK;
214 }
215
216 #ifdef TESTING_XSTRTO
217
218 # include <stdio.h>
219 # include "error.h"
220
221 char *program_name;
222
223 int
224 main (int argc, char** argv)
225 {
226   strtol_error s_err;
227   int i;
228
229   program_name = argv[0];
230   for (i=1; i<argc; i++)
231     {
232       char *p;
233       __unsigned long int val;
234
235       s_err = __xstrtol (argv[i], &p, 0, &val, "bckmw");
236       if (s_err == LONGINT_OK)
237         {
238           printf ("%s->%lu (%s)\n", argv[i], val, p);
239         }
240       else
241         {
242           STRTOL_FATAL_ERROR (argv[i], "arg", s_err);
243         }
244     }
245   exit (0);
246 }
247
248 #endif /* TESTING_XSTRTO */