-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuint.go
126 lines (113 loc) · 2.11 KB
/
uint.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
package to
import (
"encoding/json"
"github.com/rsb/failure"
"golang.org/x/exp/constraints"
"reflect"
"strconv"
)
type UintData[T constraints.Unsigned] struct {
item *T
typeName string
}
func NewUintData[T constraints.Unsigned](v *T) UintData[T] {
t := reflect.TypeOf(v)
n := UintData[T]{
item: v,
typeName: t.Name(),
}
return n
}
func (d *UintData[T]) Item() *T {
return d.item
}
func (d *UintData[T]) Set(v string) error {
i, err := Uint[T](v)
if err != nil {
return failure.Wrap(err, "Int[%v] failed", d.typeName)
}
d.item = &i
return nil
}
func (d *UintData[T]) Type() string {
return d.typeName
}
func (d *UintData[T]) String() string {
return String(d.item)
}
func Uint[T constraints.Unsigned](i any) (T, error) {
i = indirect(i)
v, ok := integer(i)
if ok {
if v < 0 {
return 0, NegativeNumberFailure
}
return T(v), nil
}
switch s := i.(type) {
case int8:
if s < 0 {
return 0, NegativeNumberFailure
}
return T(s), nil
case int16:
if s < 0 {
return 0, NegativeNumberFailure
}
return T(s), nil
case int32:
if s < 0 {
return 0, NegativeNumberFailure
}
return T(s), nil
case int64:
if s < 0 {
return 0, NegativeNumberFailure
}
return T(s), nil
case uint:
return T(s), nil
case uint8:
return T(s), nil
case uint16:
return T(s), nil
case uint32:
return T(s), nil
case uint64:
return T(s), nil
case float32:
if s < 0 {
return 0, NegativeNumberFailure
}
return T(s), nil
case float64:
if s < 0 {
return 0, NegativeNumberFailure
}
return T(s), nil
case string:
v, err := strconv.ParseInt(s, 0, 0)
if err != nil {
return 0, failure.ToInvalidParam(err, "unable to cast %#v of type %T to uint", i, i)
}
if v < 0 {
return 0, NegativeNumberFailure
}
return T(v), nil
case json.Number:
v, err := Uint[T](string(s))
if err != nil {
return 0, failure.ToInvalidParam(err, "Uint failed for json.Number (%v)", i)
}
return v, nil
case bool:
if s {
return 1, nil
}
return 0, nil
case nil:
return 0, nil
default:
return 0, failure.InvalidParam("unable to cast %#v of type %T to int", i, i)
}
}