-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathtype.go
219 lines (165 loc) · 3.73 KB
/
type.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
package json2go
import "time"
const (
nodeTypeInit = nodeInitType(".")
nodeTypeBool = nodeBoolType("bool")
nodeTypeInt = nodeIntType("int")
nodeTypeFloat = nodeFloatType("float")
nodeTypeTime = nodeTimeType("time")
nodeTypeString = nodeStringType("string")
nodeTypeObject = nodeObjectType("object")
nodeTypeInterface = nodeInterfaceType("interface")
// special types
nodeTypeExtracted = nodeExtractedType("extracted")
nodeTypeMap = nodeMapType("map")
)
type nodeType interface {
id() string
fit(interface{}) nodeType
expands(nodeType) bool
}
func growType(t nodeType, v interface{}) nodeType {
if v == nil {
return t
}
new := t.fit(v)
if t.id() != nodeTypeInit.id() && !new.expands(t) {
return nodeTypeInterface
}
return new
}
// Type defs
type nodeInitType string
func (n nodeInitType) id() string {
return string(n)
}
func (n nodeInitType) expands(n2 nodeType) bool {
return n == n2
}
func (n nodeInitType) fit(v interface{}) nodeType {
return nodeTypeBool.fit(v)
}
type nodeBoolType string
func (n nodeBoolType) id() string {
return string(n)
}
func (n nodeBoolType) expands(n2 nodeType) bool {
return n == n2
}
func (n nodeBoolType) fit(v interface{}) nodeType {
switch v.(type) {
case bool:
return n
}
return nodeTypeInt.fit(v)
}
type nodeIntType string
func (n nodeIntType) id() string {
return string(n)
}
func (n nodeIntType) expands(n2 nodeType) bool {
return n == n2
}
func (n nodeIntType) fit(v interface{}) nodeType {
switch typedValue := v.(type) {
case int, int8, int16, int32, int64:
return n
case float32:
if typedValue == float32(int(typedValue)) {
return n
}
case float64:
if typedValue == float64(int(typedValue)) {
return n
}
}
return nodeTypeFloat.fit(v)
}
type nodeFloatType string
func (n nodeFloatType) id() string {
return string(n)
}
func (n nodeFloatType) expands(n2 nodeType) bool {
return n == n2 || n2.id() == nodeTypeInt.id()
}
func (n nodeFloatType) fit(v interface{}) nodeType {
switch v.(type) {
case float32, float64, int, int16, int32, int64:
return n
}
return nodeTypeTime.fit(v)
}
type nodeTimeType string
func (n nodeTimeType) id() string {
return string(n)
}
func (n nodeTimeType) expands(n2 nodeType) bool {
return n == n2
}
func (n nodeTimeType) fit(v interface{}) nodeType {
switch vt := v.(type) {
case string:
if _, err := time.Parse(time.RFC3339, vt); err == nil {
return n
}
}
return nodeTypeString.fit(v)
}
type nodeStringType string
func (n nodeStringType) id() string {
return string(n)
}
func (n nodeStringType) expands(n2 nodeType) bool {
return n == n2 || n2 == nodeTypeTime
}
func (n nodeStringType) fit(v interface{}) nodeType {
switch v.(type) {
case string:
return n
}
return nodeTypeObject.fit(v)
}
type nodeObjectType string
func (n nodeObjectType) id() string {
return string(n)
}
func (n nodeObjectType) expands(n2 nodeType) bool {
return n == n2
}
func (n nodeObjectType) fit(v interface{}) nodeType {
switch v.(type) {
case map[string]interface{}:
return n
}
return nodeTypeInterface.fit(v)
}
type nodeInterfaceType string
func (n nodeInterfaceType) id() string {
return string(n)
}
func (n nodeInterfaceType) expands(n2 nodeType) bool {
return n == n2
}
func (n nodeInterfaceType) fit(v interface{}) nodeType {
return n
}
type nodeExtractedType string
func (n nodeExtractedType) id() string {
return string(n)
}
func (n nodeExtractedType) expands(n2 nodeType) bool {
return n == n2
}
func (n nodeExtractedType) fit(v interface{}) nodeType {
return n
}
type nodeMapType string
func (n nodeMapType) id() string {
return string(n)
}
func (n nodeMapType) expands(n2 nodeType) bool {
return n == n2
}
func (n nodeMapType) fit(v interface{}) nodeType {
return n
}