Merge "Optional autogen.sh flag --enable-kdbus-transport added allowing to compile...
[platform/upstream/dbus.git] / tools / strtoull.c
1 /*-
2  * Copyright (c) 1992, 1993
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 4. Neither the name of the University nor the names of its contributors
14  *    may be used to endorse or promote products derived from this software
15  *    without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  */
29
30 #include "config.h"
31
32 #include <limits.h>
33 #ifdef HAVE_ERRNO_H
34 #include <errno.h>
35 #endif
36 #include <stdlib.h>
37 #ifdef DBUS_WINCE
38 #include <windows.h>
39 #endif
40
41 #ifndef isspace
42 #define isspace(c) ((c) == ' ' || (c) == '\t' || (c) == '\r' || (c) == '\n')
43 #endif
44
45 /* Minimum and maximum values a `signed long long int' can hold.  */
46 #ifndef LLONG_MAX
47 #   define LLONG_MAX    9223372036854775807LL
48 #endif
49
50 #ifndef LLONG_MIN
51 #   define LLONG_MIN    (-LLONG_MAX - 1LL)
52 #endif
53 /* Maximum value an `unsigned long long int' can hold.  (Minimum is 0.)  */
54 #ifndef ULLONG_MAX
55 #   define ULLONG_MAX   18446744073709551615ULL
56 #endif
57
58 /*
59  * Convert a string to an unsigned long long integer.
60  *
61  * Assumes that the upper and lower case
62  * alphabets and digits are each contiguous.
63  */
64 unsigned long long strtoull (const char *, char **, int);
65
66 unsigned long long
67 strtoull(const char * nptr, char ** endptr, int base)
68 {
69         const char *s;
70         unsigned long long acc;
71         char c;
72         unsigned long long cutoff;
73         int neg, any, cutlim;
74
75         /*
76          * See strtoq for comments as to the logic used.
77          */
78         s = nptr;
79         do {
80                 c = *s++;
81         } while (isspace((unsigned char)c));
82         if (c == '-') {
83                 neg = 1;
84                 c = *s++;
85         } else {
86                 neg = 0;
87                 if (c == '+')
88                         c = *s++;
89         }
90         if ((base == 0 || base == 16) &&
91             c == '0' && (*s == 'x' || *s == 'X') &&
92             ((s[1] >= '0' && s[1] <= '9') ||
93             (s[1] >= 'A' && s[1] <= 'F') ||
94             (s[1] >= 'a' && s[1] <= 'f'))) {
95                 c = s[1];
96                 s += 2;
97                 base = 16;
98         }
99         if (base == 0)
100                 base = c == '0' ? 8 : 10;
101         acc = any = 0;
102         if (base < 2 || base > 36)
103                 goto noconv;
104
105         cutoff = ULLONG_MAX / base;
106         cutlim = ULLONG_MAX % base;
107         for ( ; ; c = *s++) {
108                 if (c >= '0' && c <= '9')
109                         c -= '0';
110                 else if (c >= 'A' && c <= 'Z')
111                         c -= 'A' - 10;
112                 else if (c >= 'a' && c <= 'z')
113                         c -= 'a' - 10;
114                 else
115                         break;
116                 if (c >= base)
117                         break;
118                 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
119                         any = -1;
120                 else {
121                         any = 1;
122                         acc *= base;
123                         acc += c;
124                 }
125         }
126         if (any < 0) {
127                 acc = ULLONG_MAX;
128 #ifdef DBUS_WINCE
129                 SetLastError (ERROR_ARITHMETIC_OVERFLOW);
130 #else
131                 errno = ERANGE;
132 #endif
133         } else if (!any) {
134 noconv:
135 #ifdef DBUS_WINCE
136                 SetLastError (ERROR_INVALID_PARAMETER);
137 #else
138                 errno = EINVAL;
139 #endif
140         } else if (neg)
141                 acc = -acc;
142         if (endptr != NULL)
143                 *endptr = (char *)(any ? s - 1 : nptr);
144         return (acc);
145 }