1 package liquibase.util;
2
3 import java.math.BigDecimal;
4 import java.math.BigInteger;
5 import java.text.NumberFormat;
6 import java.text.ParseException;
7
8
9
10
11
12
13
14
15
16 public abstract class NumberUtils {
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37 public static Number convertNumberToTargetClass(Number number, Class targetClass) throws IllegalArgumentException {
38
39 if (targetClass.isInstance(number)) {
40 return number;
41 } else if (targetClass.equals(Byte.class)) {
42 long value = number.longValue();
43 if (value < Byte.MIN_VALUE || value > Byte.MAX_VALUE) {
44 raiseOverflowException(number, targetClass);
45 }
46 return number.byteValue();
47 } else if (targetClass.equals(Short.class)) {
48 long value = number.longValue();
49 if (value < Short.MIN_VALUE || value > Short.MAX_VALUE) {
50 raiseOverflowException(number, targetClass);
51 }
52 return number.shortValue();
53 } else if (targetClass.equals(Integer.class)) {
54 long value = number.longValue();
55 if (value < Integer.MIN_VALUE || value > Integer.MAX_VALUE) {
56 raiseOverflowException(number, targetClass);
57 }
58 return number.intValue();
59 } else if (targetClass.equals(Long.class)) {
60 return number.longValue();
61 } else if (targetClass.equals(Float.class)) {
62 return number.floatValue();
63 } else if (targetClass.equals(Double.class)) {
64 return number.doubleValue();
65 } else if (targetClass.equals(BigInteger.class)) {
66 return BigInteger.valueOf(number.longValue());
67 } else if (targetClass.equals(BigDecimal.class)) {
68
69
70 return new BigDecimal(number.toString());
71 } else {
72 throw new IllegalArgumentException("Could not convert number [" + number + "] of type ["
73 + number.getClass().getName() + "] to unknown target class [" + targetClass.getName() + "]");
74 }
75 }
76
77
78
79
80
81
82
83
84
85 private static void raiseOverflowException(Number number, Class targetClass) {
86 throw new IllegalArgumentException("Could not convert number [" + number + "] of type ["
87 + number.getClass().getName() + "] to target class [" + targetClass.getName() + "]: overflow");
88 }
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111 public static Number parseNumber(String text, Class targetClass) {
112 String trimmed = text.trim();
113
114 if (targetClass.equals(Byte.class)) {
115 return Byte.decode(trimmed);
116 } else if (targetClass.equals(Short.class)) {
117 return Short.decode(trimmed);
118 } else if (targetClass.equals(Integer.class)) {
119 return Integer.decode(trimmed);
120 } else if (targetClass.equals(Long.class)) {
121 return Long.decode(trimmed);
122 } else if (targetClass.equals(BigInteger.class)) {
123 return decodeBigInteger(trimmed);
124 } else if (targetClass.equals(Float.class)) {
125 return Float.valueOf(trimmed);
126 } else if (targetClass.equals(Double.class)) {
127 return Double.valueOf(trimmed);
128 } else if (targetClass.equals(BigDecimal.class) || targetClass.equals(Number.class)) {
129 return new BigDecimal(trimmed);
130 } else {
131 throw new IllegalArgumentException("Cannot convert String [" + text + "] to target class ["
132 + targetClass.getName() + "]");
133 }
134 }
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154 public static Number parseNumber(String text, Class targetClass, NumberFormat numberFormat) {
155 if (numberFormat != null) {
156 try {
157 Number number = numberFormat.parse(text.trim());
158 return convertNumberToTargetClass(number, targetClass);
159 } catch (ParseException ex) {
160 throw new IllegalArgumentException(ex.getMessage());
161 }
162 } else {
163 return parseNumber(text, targetClass);
164 }
165 }
166
167
168
169
170
171
172 private static BigInteger decodeBigInteger(String value) {
173 int radix = 10;
174 int index = 0;
175 boolean negative = false;
176
177
178 if (value.startsWith("-")) {
179 negative = true;
180 index++;
181 }
182
183
184 if (value.startsWith("0x", index) || value.startsWith("0X", index)) {
185 index += 2;
186 radix = 16;
187 } else if (value.startsWith("#", index)) {
188 index++;
189 radix = 16;
190 } else if (value.startsWith("0", index) && value.length() > 1 + index) {
191 index++;
192 radix = 8;
193 }
194
195 BigInteger result = new BigInteger(value.substring(index), radix);
196 return (negative ? result.negate() : result);
197 }
198
199 }