-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathprimatives.go
348 lines (336 loc) · 6.52 KB
/
primatives.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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
package coerce
import (
"encoding/json"
"fmt"
"github.com/araddon/dateparse"
"strconv"
"time"
)
// ToString coerce a value to a string
func ToString(val interface{}) (string, error) {
switch t := val.(type) {
case string:
return t, nil
case *string:
return *t, nil
case int:
return strconv.Itoa(t), nil
case int64:
return strconv.FormatInt(t, 10), nil
case float32:
return strconv.FormatFloat(float64(t), 'f', -1, 64), nil
case float64:
return strconv.FormatFloat(t, 'f', -1, 64), nil
case json.Number:
return t.String(), nil
case bool:
return strconv.FormatBool(t), nil
case nil:
return "", nil
case []byte:
return string(t), nil
case time.Time:
b, err := t.MarshalText()
if err != nil {
return "", err
}
return string(b), nil
default:
b, err := json.Marshal(t)
if err != nil {
return "", fmt.Errorf("unable to coerce %#v to string", t)
}
return string(b), nil
}
}
// ToInt coerce a value to an int
func ToInt(val interface{}) (int, error) {
switch t := val.(type) {
case int:
return t, nil
case uint:
return int(t), nil
case int8:
return int(t), nil
case uint8:
return int(t), nil
case int16:
return int(t), nil
case uint16:
return int(t), nil
case int32:
return int(t), nil
case uint32:
return int(t), nil
case int64:
return int(t), nil
case uint64:
return int(t), nil
case float32:
return int(t), nil
case float64:
return int(t), nil
case json.Number:
i, err := t.Int64()
return int(i), err
case string:
return strconv.Atoi(t)
case bool:
if t {
return 1, nil
}
return 0, nil
case nil:
return 0, nil
default:
return 0, fmt.Errorf("unable to coerce %#v to int", val)
}
}
// ToInteger coerce a value to an integer
func ToInt32(val interface{}) (int32, error) {
switch t := val.(type) {
case int:
return int32(t), nil
case uint:
return int32(t), nil
case int8:
return int32(t), nil
case uint8:
return int32(t), nil
case int16:
return int32(t), nil
case uint16:
return int32(t), nil
case int32:
return t, nil
case uint32:
return int32(t), nil
case int64:
return int32(t), nil
case uint64:
return int32(t), nil
case float32:
return int32(t), nil
case float64:
return int32(t), nil
case json.Number:
i, err := t.Int64()
return int32(i), err
case string:
i, err := strconv.Atoi(t)
return int32(i), err
case bool:
if t {
return 1, nil
}
return 0, nil
case nil:
return 0, nil
default:
return 0, fmt.Errorf("unable to coerce %#v to int32", val)
}
}
// ToInteger coerce a value to an integer
func ToInt64(val interface{}) (int64, error) {
switch t := val.(type) {
case int:
return int64(t), nil
case uint:
return int64(t), nil
case int8:
return int64(t), nil
case uint8:
return int64(t), nil
case int16:
return int64(t), nil
case uint16:
return int64(t), nil
case int32:
return int64(t), nil
case uint32:
return int64(t), nil
case int64:
return t, nil
case uint64:
return int64(t), nil
case float32:
return int64(t), nil
case float64:
return int64(t), nil
case json.Number:
return t.Int64()
case string:
return strconv.ParseInt(t, 10, 64)
case bool:
if t {
return 1, nil
}
return 0, nil
case nil:
return 0, nil
default:
return 0, fmt.Errorf("unable to coerce %#v to integer", val)
}
}
// ToFloat32 coerce a value to a double/float32
func ToFloat32(val interface{}) (float32, error) {
switch t := val.(type) {
case float32:
return t, nil
case float64:
return float32(t), nil
case int:
return float32(t), nil
case int8:
return float32(t), nil
case int32:
return float32(t), nil
case int64:
return float32(t), nil
case uint:
return float32(t), nil
case uint8:
return float32(t), nil
case uint16:
return float32(t), nil
case uint32:
return float32(t), nil
case uint64:
return float32(t), nil
case json.Number:
f, err := t.Float64()
return float32(f), err
case string:
f, err := strconv.ParseFloat(t, 32)
return float32(f), err
case bool:
if t {
return 1.0, nil
}
return 0.0, nil
case nil:
return 0.0, nil
default:
return 0.0, fmt.Errorf("unable to coerce %#v to float32", val)
}
}
// ToFloat64 coerce a value to a double/float64
func ToFloat64(val interface{}) (float64, error) {
switch t := val.(type) {
case float32:
return float64(t), nil
case float64:
return t, nil
case int:
return float64(t), nil
case int8:
return float64(t), nil
case int32:
return float64(t), nil
case int64:
return float64(t), nil
case uint:
return float64(t), nil
case uint8:
return float64(t), nil
case uint16:
return float64(t), nil
case uint32:
return float64(t), nil
case uint64:
return float64(t), nil
case json.Number:
return t.Float64()
case string:
return strconv.ParseFloat(t, 64)
case bool:
if t {
return 1.0, nil
}
return 0.0, nil
case nil:
return 0.0, nil
default:
return 0.0, fmt.Errorf("unable to coerce %#v to float64", val)
}
}
// ToBool coerce a value to a boolean
func ToBool(val interface{}) (bool, error) {
switch t := val.(type) {
case bool:
return t, nil
case int:
return t != 0, nil
case uint:
return t != 0, nil
case int8:
return t != 0, nil
case uint8:
return t != 0, nil
case int16:
return t != 0, nil
case uint16:
return t != 0, nil
case int32:
return t != 0, nil
case uint32:
return t != 0, nil
case int64:
return t != 0, nil
case uint64:
return t != 0, nil
case float64:
return t != 0.0, nil
case json.Number:
i, err := t.Int64()
return i != 0, err
case string:
return strconv.ParseBool(t)
case nil:
return false, nil
default:
str, err := ToString(val)
if err != nil {
return false, fmt.Errorf("unable to coerce %#v to bool", val)
}
return strconv.ParseBool(str)
}
}
// ToBytes coerce a value to a byte array
func ToBytes(val interface{}) ([]byte, error) {
switch t := val.(type) {
case []byte:
return t, nil
case string:
return []byte(t), nil
case nil:
return nil, nil
default:
//for now just convert everything to string then bytes
s, err := ToString(val)
if err != nil {
return nil, fmt.Errorf("unable to coerce %#v to bytes", t)
}
return []byte(s), nil
}
}
func ToDateTime(val interface{}) (time.Time, error) {
switch t := val.(type) {
case time.Time:
return t, nil
case int64:
return time.Unix(t, 0), nil
case float64:
return time.Unix(int64(t), 0), nil
default:
dateVal, err := ToString(val)
if err != nil {
return time.Time{}, nil
}
tm, err := dateparse.ParseAny(dateVal)
if err != nil {
return tm, fmt.Errorf("parse [%s] to time error: %s", dateVal, err.Error())
}
return tm, nil
}
}