-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinterfaceHelpers.go
449 lines (413 loc) · 9.69 KB
/
interfaceHelpers.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
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
package templateManager
/*
Functions to assist with interfaces
*/
import (
"math"
"reflect"
"strconv"
"strings"
"fmt"
)
/*
Gets the "type" of the interface (e.g. int8, map[string]int or templateManager.TemplateManager)
*/
func interfaceHelperType(value any) string {
switch value.(type) {
case int, *int:
return "int"
case int8, *int8:
return "int8"
case int16, *int16:
return "int16"
case int32, *int32:
return "int32"
case int64, *int64:
return "int64"
case uint, *uint:
return "uint"
case uint8, *uint8:
return "uint8"
case uint16, *uint16:
return "uint16"
case uint32, *uint32:
return "uint32"
case uint64, *uint64:
return "uint64"
case uintptr, *uintptr:
return "uintptr"
case float32, *float32:
return "float32"
case float64, *float64:
return "float64"
case bool, *bool:
return "bool"
case string, *string:
return "string"
}
typ := fmt.Sprintf("%T", value)
// Not concerned about pointers here
if string(typ[0]) == "*" {
typ = typ[1:]
}
return typ
}
/*
Gets the underlying "kind" of the interface (e.g. int8, map or struct)
*/
func interfaceHelperKind(value any) string {
switch value.(type) {
case int, *int:
return "int"
case int8, *int8:
return "int8"
case int16, *int16:
return "int16"
case int32, *int32:
return "int32"
case int64, *int64:
return "int64"
case uint, *uint:
return "uint"
case uint8, *uint8:
return "uint8"
case uint16, *uint16:
return "uint16"
case uint32, *uint32:
return "uint32"
case uint64, *uint64:
return "uint64"
case uintptr, *uintptr:
return "uintptr"
case float32, *float32:
return "float32"
case float64, *float64:
return "float64"
case bool, *bool:
return "bool"
case string, *string:
return "string"
}
kind := fmt.Sprintf("%T", value)
// Not concerned about pointers here
if string(kind[0]) == "*" {
kind = kind[1:]
}
if found, err := interfaceHelperParseKind(kind); err == nil {
return found
}
// Custom type, need reflection
kind = reflect.ValueOf(value).Kind().String()
if kind == "ptr" {
kind = reflect.ValueOf(value).Elem().Kind().String()
}
if found, err := interfaceHelperParseKind(kind); err == nil {
return found
}
return kind
}
/*
Checks if the kind string is a more complex standard type and simplifies its representation
*/
func interfaceHelperParseKind(kind string) (string, error) {
if strings.HasPrefix(kind, "map[") {
return "map", nil
} else if strings.HasPrefix(kind, "struct {") {
return "struct", nil
} else if string(kind[0]) == "[" {
if string(kind[1]) != "]" {
return "array", nil
}
return "slice", nil
}
return "", fmt.Errorf("not a standard complex type")
}
/*
Converts the underlying type to another and returns an interface for it
Only works with simple types (i.e. numbers / bools / strings)
*/
/*
func interfaceHelperConvertUnderlying(value any, to string) (any, error) {
t := interfaceHelperType(value)
if t == to {
return value, nil
}
switch to {
case "int":
return interfaceHelperConvertToInt(value)
case "int8":
return interfaceHelperConvertToInt8(value)
case "int16":
return interfaceHelperConvertToInt16(value)
case "int32":
return interfaceHelperConvertToInt32(value)
case "int64":
return interfaceHelperConvertToInt64(value)
}
return "", fmt.Errorf("could not convert value of type: %v to type: %v", t, to)
}
*/
/*
Creates the absolute value of a float
*/
func interfaceHelperAbsFloat64(value any) (float64, error) {
switch v := value.(type) {
case int:
val := float64(v)
if v < 0 { return -val, nil }
return val, nil
case int8:
val := float64(v)
if v < 0 { return -val, nil }
return val, nil
case int16:
val := float64(v)
if v < 0 { return -val, nil }
return val, nil
case int32:
val := float64(v)
if v < 0 { return -val, nil }
return val, nil
case int64:
val := float64(v)
if v < 0 { return -val, nil }
return val, nil
case uint:
return float64(v), nil
case uint8:
return float64(v), nil
case uint16:
return float64(v), nil
case uint32:
return float64(v), nil
case uint64:
return float64(v), nil
case uintptr:
return float64(v), nil
case float32:
return math.Abs(roundFloat(float64(v), 0)), nil
case float64:
return math.Abs(roundFloat(v, 0)), nil
case bool:
if v {
return float64(1), nil
}
return float64(0), nil
case string:
val, err := strconv.ParseFloat(v, 64)
if err != nil {
return float64(0), fmt.Errorf("can't convert type string to a float")
}
if val < 0 { return -val, nil }
return val, nil
}
return float64(0), fmt.Errorf("can't convert type %T to an float64", value)
}
/*
Creates the absolute value of an integer
*/
func interfaceHelperAbsInt64(value any) (int64, error) {
switch v := value.(type) {
case int:
val := int64(v)
if v < 0 { return -val, nil }
return val, nil
case int8:
val := int64(v)
if v < 0 { return -val, nil }
return val, nil
case int16:
val := int64(v)
if v < 0 { return -val, nil }
return val, nil
case int32:
val := int64(v)
if v < 0 { return -val, nil }
return val, nil
case int64:
if v < 0 { return -v, nil }
return v, nil
case uint:
return int64(v), nil
case uint8:
return int64(v), nil
case uint16:
return int64(v), nil
case uint32:
return int64(v), nil
case uint64:
return int64(v), nil
case uintptr:
return int64(v), nil
case float32:
return int64(math.Abs(roundFloat(float64(v), 0))), nil
case float64:
return int64(math.Abs(roundFloat(v, 0))), nil
case bool:
if v {
return int64(1), nil
}
return int64(0), nil
case string:
tmp, err := strconv.Atoi(v)
if err != nil {
return int64(0), fmt.Errorf("can't convert type string to an int")
}
val := int64(tmp)
if val < 0 { return -val, nil }
return val, nil
}
return int64(0), fmt.Errorf("can't convert type %T to an int", value)
}
/*
Converts an `interface{}` to an `int64` if possible.
*/
func interfaceHelperConvertToInt64(value any) (int64, error) {
var intValue int64
switch v := value.(type) {
case int:
intValue = int64(v)
case int8:
intValue = int64(v)
case int16:
intValue = int64(v)
case int32:
intValue = int64(v)
case int64:
intValue = int64(v)
case uint:
intValue = int64(v)
case uint8:
intValue = int64(v)
case uint16:
intValue = int64(v)
case uint32:
intValue = int64(v)
case uint64:
intValue = int64(v)
case uintptr:
intValue = int64(v)
case float32:
intValue = int64(roundFloat(float64(v), 0))
case float64:
intValue = int64(roundFloat(v, 0))
case bool:
if v {
intValue = int64(1)
} else {
intValue = int64(0)
}
case string:
tmp, err := strconv.Atoi(v)
if err != nil {
return int64(0), fmt.Errorf("can't convert type string to an int")
}
intValue = int64(tmp)
default:
return int64(0), fmt.Errorf("can't convert type %T to an int", value)
}
return intValue, nil
}
/*
Converts an `interface{}` to an `int` if possible.
*/
func interfaceHelperConvertToInt(value any) (int, error) {
int64Value, err := interfaceHelperConvertToInt64(value)
return int(int64Value), err
}
/*
Converts an `interface{}` to a `uint64` if possible.
*/
func interfaceHelperConvertToUint64(value any) (uint64, error) {
var intValue uint64
switch v := value.(type) {
case int:
tmp, _ := interfaceHelperAbsInt64(v)
intValue = uint64(tmp)
case int8:
tmp, _ := interfaceHelperAbsInt64(v)
intValue = uint64(tmp)
case int16:
tmp, _ := interfaceHelperAbsInt64(v)
intValue = uint64(tmp)
case int32:
tmp, _ := interfaceHelperAbsInt64(v)
intValue = uint64(tmp)
case int64:
tmp, _ := interfaceHelperAbsInt64(v)
intValue = uint64(tmp)
case uint:
intValue = uint64(v)
case uint8:
intValue = uint64(v)
case uint16:
intValue = uint64(v)
case uint32:
intValue = uint64(v)
case uint64:
intValue = uint64(v)
case uintptr:
intValue = uint64(v)
case float32:
intValue = uint64(math.Abs(roundFloat(float64(v), 0)))
case float64:
intValue = uint64(math.Abs(roundFloat(v, 0)))
case bool:
tmp, _ := interfaceHelperAbsInt64(v)
intValue = uint64(tmp)
case string:
tmp, _ := interfaceHelperAbsInt64(v)
intValue = uint64(tmp)
default:
return uint64(0), fmt.Errorf("can't convert type %T to a uint", value)
}
return intValue, nil
}
/*
Converts an `interface{}` to a `uint` if possible.
*/
func interfaceHelperConvertToUint(value any) (uint, error) {
int64Value, err := interfaceHelperConvertToUint64(value)
return uint(int64Value), err
}
/*
Converts an `interface{}` to a `string` if possible.
*/
func interfaceHelperConvertToString(value any) (string, error) {
var stringValue string
switch v := value.(type) {
case int:
stringValue = strconv.Itoa(v)
case int8:
stringValue = strconv.FormatInt(int64(v), 10)
case int16:
stringValue = strconv.FormatInt(int64(v), 10)
case int32:
stringValue = strconv.FormatInt(int64(v), 10)
case int64:
stringValue = strconv.FormatInt(v, 10)
case uint:
stringValue = strconv.FormatUint(uint64(v), 10)
case uint8:
stringValue = strconv.FormatUint(uint64(v), 10)
case uint16:
stringValue = strconv.FormatUint(uint64(v), 10)
case uint32:
stringValue = strconv.FormatUint(uint64(v), 10)
case uint64:
stringValue = strconv.FormatUint(v, 10)
case uintptr:
stringValue = strconv.FormatUint(uint64(v), 10)
case float32:
stringValue = strconv.FormatFloat(float64(v), 'g', -1, 64)
case float64:
stringValue = strconv.FormatFloat(v, 'g', -1, 64)
case bool:
stringValue = strconv.FormatBool(v)
case string:
stringValue = v
default:
return "", fmt.Errorf("can't convert type %T to a string", value)
}
return stringValue, nil
}