-
Notifications
You must be signed in to change notification settings - Fork 0
/
value.go
65 lines (59 loc) · 1.03 KB
/
value.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
package fork
import (
"fmt"
"reflect"
)
type Value struct {
Raw interface{}
Type reflect.Type
Kind reflect.Kind
}
func NewValue(i interface{}) *Value {
t := reflect.TypeOf(i)
return &Value{
Raw: i,
Type: t,
Kind: t.Kind(),
}
}
func (v *Value) String() string {
if v.Raw != nil {
switch v.Raw.(type) {
case *Selection, []*Selection, []Field, []Form:
return fmt.Sprintf("%+v", v.Raw)
case bool:
return fmt.Sprintf("%t", v.Raw)
case int:
return fmt.Sprintf("%d", v.Raw)
case fmt.Stringer:
return v.String()
default:
return fmt.Sprintf("%s", v.Raw)
}
}
return ""
}
func (v *Value) Integer() int {
if v.Raw != nil {
switch v.Raw.(type) {
case *Selection, []*Selection, []Field, Form, []Form:
return -1
default:
return v.Raw.(int)
}
}
return 0
}
func (v *Value) Bool() bool {
if v.Raw != nil {
switch v.Raw.(type) {
case *Selection:
return v.Raw.(*Selection).Set
case []*Selection, []Field, Form, []Form:
return false
default:
return v.Raw.(bool)
}
}
return false
}