-
Notifications
You must be signed in to change notification settings - Fork 8
/
int.go
458 lines (401 loc) · 9.14 KB
/
int.go
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
package cvt
import (
"fmt"
"math"
"strconv"
)
// Uint64 convert an interface to an uint64 type, with default value
func Uint64(v interface{}, def ...uint64) uint64 {
if v, err := Uint64E(v); err == nil {
return v
}
if len(def) > 0 {
return def[0]
}
return 0
}
// Uint64E convert an interface to an uint64 type
func Uint64E(val interface{}) (uint64, error) {
v, e := convUint64(val)
if e := catch("uint64", val, e); e != nil {
return 0, e
}
return v, nil
}
// Uint32 convert an interface to an uint32 type, with default value
func Uint32(v interface{}, def ...uint32) uint32 {
if v, err := Uint32E(v); err == nil {
return v
}
if len(def) > 0 {
return def[0]
}
return 0
}
// Uint32E convert an interface to an uint32 type
func Uint32E(val interface{}) (uint32, error) {
v, e := convUint64(val)
if e := catch("uint32", val, e); e != nil {
return 0, e
}
if v > math.MaxUint32 {
return 0, fmt.Errorf(formatOutOfLimitInt, newErr(val, "uint32"), uint32(math.MaxUint32))
}
return uint32(v), nil
}
// Uint16 convert an interface to an uint16 type, with default value
func Uint16(v interface{}, def ...uint16) uint16 {
if v, err := Uint16E(v); err == nil {
return v
}
if len(def) > 0 {
return def[0]
}
return 0
}
// Uint16E convert an interface to an uint16 type
func Uint16E(val interface{}) (uint16, error) {
v, e := convUint64(val)
if e := catch("uint16", val, e); e != nil {
return 0, e
}
if v > math.MaxUint16 {
return 0, fmt.Errorf(formatOutOfLimitInt, newErr(val, "uint16"), uint16(math.MaxUint16))
}
return uint16(v), nil
}
// Uint8 convert an interface to an uint8 type, with default value
func Uint8(v interface{}, def ...uint8) uint8 {
if v, err := Uint8E(v); err == nil {
return v
}
if len(def) > 0 {
return def[0]
}
return 0
}
// Uint8E convert an interface to an uint8 type
func Uint8E(val interface{}) (uint8, error) {
v, e := convUint64(val)
if e := catch("uint8", val, e); e != nil {
return 0, e
}
if v > math.MaxUint8 {
return 0, fmt.Errorf(formatOutOfLimitInt, newErr(val, "uint8"), uint8(math.MaxUint8))
}
return uint8(v), nil
}
// Uint convert an interface to an uint type, with default value
func Uint(v interface{}, def ...uint) uint {
if v, err := UintE(v); err == nil {
return v
}
if len(def) > 0 {
return def[0]
}
return 0
}
// UintE convert an interface to an uint type
func UintE(val interface{}) (uint, error) {
v, e := convUint64(val)
if e := catch("uint", val, e); e != nil {
return 0, e
}
if v > uint64(^uint(0)) {
return 0, fmt.Errorf(formatOutOfLimitInt, newErr(val, "uint"), ^uint(0))
}
return uint(v), nil
}
// Int64 convert an interface to an int64 type, with default value
func Int64(v interface{}, def ...int64) int64 {
if v, err := Int64E(v); err == nil {
return v
}
if len(def) > 0 {
return def[0]
}
return 0
}
// Int64E convert an interface to an int64 type
func Int64E(val interface{}) (int64, error) {
v, e := convInt64(val)
if e := catch("int64", val, e); e != nil {
return 0, e
}
return v, nil
}
// Int32 convert an interface to an int32 type, with default value
func Int32(v interface{}, def ...int32) int32 {
if v, err := Int32E(v); err == nil {
return v
}
if len(def) > 0 {
return def[0]
}
return 0
}
// Int32E convert an interface to an int32 type
func Int32E(val interface{}) (int32, error) {
v, e := convInt64(val)
if e := catch("int32", val, e); e != nil {
return 0, e
}
if v > math.MaxInt32 {
return 0, fmt.Errorf(formatOutOfLimitInt, newErr(val, "int32"), int32(math.MaxInt32))
}
return int32(v), nil
}
// Int16 convert an interface to an int16 type, with default value
func Int16(v interface{}, def ...int16) int16 {
if v, err := Int16E(v); err == nil {
return v
}
if len(def) > 0 {
return def[0]
}
return 0
}
// Int16E convert an interface to an int16 type
func Int16E(val interface{}) (int16, error) {
v, e := convInt64(val)
if e := catch("int16", val, e); e != nil {
return 0, e
}
if v > math.MaxInt16 {
return 0, fmt.Errorf(formatOutOfLimitInt, newErr(val, "int16"), int16(math.MaxInt16))
}
return int16(v), nil
}
// Int8 convert an interface to an int8 type, with default value
func Int8(v interface{}, def ...int8) int8 {
if v, err := Int8E(v); err == nil {
return v
}
if len(def) > 0 {
return def[0]
}
return 0
}
// Int8E convert an interface to an int8 type
func Int8E(val interface{}) (int8, error) {
v, e := convInt64(val)
if e := catch("int8", val, e); e != nil {
return 0, e
}
if v > math.MaxInt8 {
return 0, fmt.Errorf(formatOutOfLimitInt, newErr(val, "int8"), int8(math.MaxInt8))
}
return int8(v), nil
}
// Int convert an interface to an int type, with default value
func Int(v interface{}, def ...int) int {
if v, err := IntE(v); err == nil {
return v
}
if len(def) > 0 {
return def[0]
}
return 0
}
// IntE convert an interface to an int type
func IntE(val interface{}) (int, error) {
v, e := convInt64(val)
if e := catch("int", val, e); e != nil {
return 0, e
}
// 32bit system
if strconv.IntSize == 32 && v > math.MaxInt32 {
return 0, fmt.Errorf(formatOutOfLimitInt, newErr(val, "int"), int32(math.MaxInt32))
}
return int(v), nil
}
// convert any value to uint64
func convUint64(val interface{}) (uint64, error) {
// direct type(for improve performance)
switch vv := val.(type) {
case int:
if vv < 0 {
return 0, errConvFail
}
return uint64(vv), nil
case int64:
if vv < 0 {
return 0, errConvFail
}
return uint64(vv), nil
case int32:
if vv < 0 {
return 0, errConvFail
}
return uint64(vv), nil
case int16:
if vv < 0 {
return 0, errConvFail
}
return uint64(vv), nil
case int8:
if vv < 0 {
return 0, errConvFail
}
return uint64(vv), nil
case uint:
return uint64(vv), nil
case uint64:
return vv, nil
case uint32:
return uint64(vv), nil
case uint16:
return uint64(vv), nil
case uint8:
return uint64(vv), nil
case float64:
if vv > math.MaxUint64 || vv < 0 {
return 0, errConvFail
}
return uint64(math.Trunc(vv)), nil
case float32:
if vv > math.MaxUint64 || vv < 0 {
return 0, errConvFail
}
return uint64(vv), nil
case nil:
return 0, nil
case bool:
if vv {
return 1, nil
}
return 0, nil
case string:
vvv, err := strconv.ParseFloat(vv, 64)
if err == nil && vvv >= 0 && vvv <= math.MaxUint64 {
return uint64(math.Trunc(vvv)), nil
}
case []byte:
vvv, err := strconv.ParseFloat(string(vv), 64)
if err == nil && vvv >= 0 && vvv <= math.MaxUint64 {
return uint64(math.Trunc(vvv)), nil
}
}
// indirect type
v, _, rv := indirect(val)
switch vv := v.(type) {
case nil:
return 0, nil
case bool:
if vv {
return 1, nil
}
return 0, nil
case string:
vvv, err := strconv.ParseFloat(vv, 64)
if err == nil && vvv >= 0 && vvv <= math.MaxUint64 {
return uint64(math.Trunc(vvv)), nil
}
case []byte:
vvv, err := strconv.ParseFloat(string(vv), 64)
if err == nil && vvv >= 0 && vvv <= math.MaxUint64 {
return uint64(math.Trunc(vvv)), nil
}
case uint, uint8, uint16, uint32, uint64:
return rv.Uint(), nil
case int, int8, int16, int32, int64:
if rv.Int() >= 0 {
return uint64(rv.Int()), nil
}
case float32, float64:
if rv.Float() >= 0 && rv.Float() <= math.MaxUint64 {
return uint64(math.Trunc(rv.Float())), nil
}
}
return 0, errConvFail
}
// convert any value to int64
func convInt64(val interface{}) (int64, error) {
// direct type(for improve performance)
switch vv := val.(type) {
case int:
return int64(vv), nil
case int64:
return vv, nil
case int32:
return int64(vv), nil
case int16:
return int64(vv), nil
case int8:
return int64(vv), nil
case uint:
if strconv.IntSize == 32 && vv > math.MaxInt32 {
return 0, errConvFail
}
return int64(vv), nil
case uint64:
if vv > math.MaxInt64 {
return 0, errConvFail
}
return int64(vv), nil
case uint32:
return int64(vv), nil
case uint16:
return int64(vv), nil
case uint8:
return int64(vv), nil
case float64:
if vv > math.MaxInt64 {
return 0, errConvFail
}
return int64(math.Trunc(vv)), nil
case float32:
return int64(vv), nil
case nil:
return 0, nil
case bool:
if vv {
return 1, nil
}
return 0, nil
case string:
vvv, err := strconv.ParseFloat(vv, 64)
if err == nil && vvv <= math.MaxInt64 {
return int64(math.Trunc(vvv)), nil
}
return 0, errConvFail
case []byte:
vvv, err := strconv.ParseFloat(string(vv), 64)
if err == nil && vvv <= math.MaxInt64 {
return int64(math.Trunc(vvv)), nil
}
return 0, errConvFail
}
// indirect type
v, _, rv := indirect(val)
switch vv := v.(type) {
case nil:
return 0, nil
case bool:
if vv {
return 1, nil
}
return 0, nil
case string:
vvv, err := strconv.ParseFloat(vv, 64)
if err == nil && vvv <= math.MaxInt64 {
return int64(math.Trunc(vvv)), nil
}
case []byte:
vvv, err := strconv.ParseFloat(string(vv), 64)
if err == nil && vvv <= math.MaxInt64 {
return int64(math.Trunc(vvv)), nil
}
case uint, uint8, uint16, uint32, uint64, uintptr:
if rv.Uint() <= math.MaxInt64 {
return int64(rv.Uint()), nil
}
case int, int8, int16, int32, int64:
return rv.Int(), nil
case float32, float64:
if rv.Float() <= math.MaxInt64 {
return int64(math.Trunc(rv.Float())), nil
}
}
return 0, errConvFail
}