-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbool.go
140 lines (117 loc) · 3.41 KB
/
bool.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
package henge
import (
"reflect"
)
type (
// BoolConverter is a converter that converts a bool type to another type.
BoolConverter struct {
*baseConverter
value bool
err error
}
// BoolPtrConverter is a converter that converts a pointer of bool type to another type.
BoolPtrConverter struct {
*baseConverter
value *bool
err error
}
)
// --------------------------------------------------------------------- //
// ValueConverter
// --------------------------------------------------------------------- //
// Bool converts the input to bool type.
func (c *ValueConverter) Bool() *BoolConverter {
var (
value bool
err error
)
inV := reflect.Indirect(c.reflectValue)
if inV.IsValid() {
switch inV.Type().Kind() {
case reflect.Bool:
value = inV.Interface().(bool)
default:
value = !inV.IsZero()
}
} else {
err = ErrInvalidValue
}
if err != nil {
err = c.wrapConvertError(c.value, reflect.ValueOf((*bool)(nil)).Type().Elem(), err)
}
return &BoolConverter{baseConverter: c.baseConverter, value: value, err: err}
}
// BoolPtr converts the input to pointer of bool type.
func (c *ValueConverter) BoolPtr() *BoolPtrConverter {
return c.Bool().Ptr()
}
// --------------------------------------------------------------------- //
// BoolConverter
// --------------------------------------------------------------------- //
// Ptr converts the input to ptr type.
func (c *BoolConverter) Ptr() *BoolPtrConverter {
if c.err != nil || c.isNil {
return &BoolPtrConverter{baseConverter: c.baseConverter, value: nil, err: c.err}
}
return &BoolPtrConverter{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 *BoolConverter) 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 *BoolConverter) 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.Bool:
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 *BoolConverter) Result() (bool, error) {
return c.value, c.err
}
// Value returns the conversion result.
func (c *BoolConverter) Value() bool {
return c.value
}
// Interface returns the conversion result of interface type.
func (c *BoolConverter) Interface() interface{} {
return c.value
}
// Error returns an error if the conversion fails
func (c *BoolConverter) Error() error {
return c.err
}
// --------------------------------------------------------------------- //
// BoolPtrConverter
// --------------------------------------------------------------------- //
// Result returns the conversion result and error.
func (c *BoolPtrConverter) Result() (*bool, error) {
return c.value, c.err
}
// Value returns the conversion result.
func (c *BoolPtrConverter) Value() *bool {
return c.value
}
// Interface returns the conversion result of interface type.
func (c *BoolPtrConverter) Interface() interface{} {
return c.value
}
// Error returns an error if the conversion fails.
func (c *BoolPtrConverter) Error() error {
return c.err
}