-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
float.go
169 lines (144 loc) · 4.4 KB
/
float.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
package henge
import (
"reflect"
"strconv"
)
type (
// FloatConverter is a converter that converts a float type to another type.
FloatConverter struct {
*baseConverter
value float64
err error
}
// FloatPtrConverter is a converter that converts a pointer of float type to another type.
FloatPtrConverter struct {
*baseConverter
value *float64
err error
}
)
// --------------------------------------------------------------------- //
// ValueConverter
// --------------------------------------------------------------------- //
// Float converts the input to float type.
func (c *ValueConverter) Float() *FloatConverter {
var (
value float64
err error
)
inV := reflect.Indirect(c.reflectValue)
if inV.IsValid() {
inT := inV.Type()
outT := reflect.TypeOf(value)
if inT.ConvertibleTo(outT) {
value = inV.Convert(outT).Interface().(float64)
} else if inT.Kind() == reflect.String {
value, err = strconv.ParseFloat(inV.Interface().(string), 64)
} else if inT.Kind() == reflect.Bool {
if inV.Interface().(bool) == true {
value = 1
}
} else {
err = ErrUnsupportedType
}
} else {
err = ErrInvalidValue
}
if err != nil {
err = c.wrapConvertError(c.value, reflect.ValueOf((*float64)(nil)).Type().Elem(), err)
}
return &FloatConverter{baseConverter: c.baseConverter, value: value, err: err}
}
// FloatPtr converts the input to pointer of float type.
func (c *ValueConverter) FloatPtr() *FloatPtrConverter {
return c.Float().Ptr()
}
// --------------------------------------------------------------------- //
// FloatConverter
// --------------------------------------------------------------------- //
// Int converts the input to int type.
func (c *FloatConverter) Int() *IntegerConverter {
if c.err != nil {
return &IntegerConverter{baseConverter: c.baseConverter, value: 0, err: c.err}
}
return c.new(c.value, c.field).Int()
}
// Uint converts the input to uint type.
func (c *FloatConverter) Uint() *UnsignedIntegerConverter {
if c.err != nil {
return &UnsignedIntegerConverter{baseConverter: c.baseConverter, value: 0, err: c.err}
}
return c.new(c.value, c.field).Uint()
}
// Ptr converts the input to ptr type.
func (c *FloatConverter) Ptr() *FloatPtrConverter {
if c.err != nil || c.isNil {
return &FloatPtrConverter{baseConverter: c.baseConverter, value: nil, err: c.err}
}
return &FloatPtrConverter{baseConverter: c.baseConverter, value: &c.value, err: c.err}
}
// Convert converts the input to the out type and assigns it.
// If the conversion fails, the method returns an error.
func (c *FloatConverter) Convert(out interface{}) error {
outV := reflect.ValueOf(out)
if outV.Kind() != reflect.Ptr {
panic("out must be ptr")
}
return c.convert(outV.Elem())
}
func (c *FloatConverter) convert(outV reflect.Value) error {
if c.err != nil {
return c.wrapConvertError(c.value, outV.Type(), c.err)
}
if c.isNil {
return nil
}
elemOutV := toInitializedNonPtrValue(outV)
switch elemOutV.Kind() {
case reflect.Float32:
if float64(float32(c.value)) != c.value {
return c.wrapConvertError(c.value, outV.Type(), ErrOverflow)
}
elemOutV.Set(reflect.ValueOf(c.value).Convert(elemOutV.Type()))
case reflect.Float64:
elemOutV.Set(reflect.ValueOf(c.value).Convert(elemOutV.Type()))
default:
return c.new(c.value, c.field).convert(outV)
}
return nil
}
// Result returns the conversion result and error.
func (c *FloatConverter) Result() (float64, error) {
return c.value, c.err
}
// Value returns the conversion result.
func (c *FloatConverter) Value() float64 {
return c.value
}
// Interface returns the conversion result of interface type.
func (c *FloatConverter) Interface() interface{} {
return c.value
}
// Error returns an error if the conversion fails
func (c *FloatConverter) Error() error {
return c.err
}
// --------------------------------------------------------------------- //
// FloatPtrConverter
// --------------------------------------------------------------------- //
// Result returns the conversion result and error.
func (c *FloatPtrConverter) Result() (*float64, error) {
return c.value, c.err
}
// Value returns the conversion result.
func (c *FloatPtrConverter) Value() *float64 {
return c.value
}
// Interface returns the conversion result of interface type.
func (c *FloatPtrConverter) Interface() interface{} {
return c.value
}
// Error returns an error if the conversion fails.
func (c *FloatPtrConverter) Error() error {
return c.err
}