-
Notifications
You must be signed in to change notification settings - Fork 3
/
structs.go
332 lines (302 loc) · 6.72 KB
/
structs.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
// Package structs implements simple functions to manipulate structs in Golang.
package structs
import (
"errors"
"reflect"
)
var (
float32Type = reflect.TypeOf(float32(0))
float64Type = reflect.TypeOf(float64(0))
stringType = reflect.TypeOf("")
intType = reflect.TypeOf(int(0))
int8Type = reflect.TypeOf(int8(0))
int16Type = reflect.TypeOf(int16(0))
int32Type = reflect.TypeOf(int32(0))
int64Type = reflect.TypeOf(int64(0))
uintType = reflect.TypeOf(uint(0))
uint8Type = reflect.TypeOf(uint8(0))
uint16Type = reflect.TypeOf(uint16(0))
uint32Type = reflect.TypeOf(uint32(0))
uint64Type = reflect.TypeOf(uint64(0))
// add uintptr
// add complex types
complex64Type = reflect.TypeOf(complex64(0))
complex128Type = reflect.TypeOf(complex128(0))
// add byte array type
// add rune type
boolType = reflect.TypeOf(true)
errorType = reflect.TypeOf(errors.New(""))
)
// Contains reports whether value is within s
func Contains(s, value interface{}) bool {
v := reflect.ValueOf(s)
for i := 0; i < v.NumField(); i++ {
field := v.Field(i)
typeOfField := field.Type()
switch typeOfField {
case stringType:
if containsString(field.String(), value) {
return true
}
case intType, int8Type, int16Type, int32Type, int64Type:
if containsInt(field.Int(), value) {
return true
}
case boolType:
if containsBool(field.Bool(), value) {
return true
}
case float32Type:
if containsFloat32(field.Interface().(float32), value) {
return true
}
case float64Type:
if containsFloat64(field.Interface().(float64), value) {
return true
}
case complex64Type:
if containsComplex64(field.Interface().(complex64), value) {
return true
}
case complex128Type:
if containsComplex128(field.Interface().(complex128), value) {
return true
}
}
}
return false
}
// Compare returns a boolean comparing two struct
func Compare(a, b interface{}) bool {
return reflect.DeepEqual(a, b)
}
// Index returns the index of the first instance of the value in s
func Index(s, value interface{}) int {
v1 := reflect.ValueOf(s)
v2 := reflect.ValueOf(value)
for i := 0; i < v1.NumField(); i++ {
f := v1.Field(i)
if f.Type() == v2.Type() {
switch f.Type() {
case stringType:
if f.String() == v2.String() {
return i
}
case intType, int8Type, int16Type, int32Type, int64Type:
if f.Int() == v2.Int() {
return i
}
case boolType:
if f.Bool() == v2.Bool() {
return i
}
case float32Type:
if f.Interface().(float32) == v2.Interface().(float32) {
return i
}
case float64Type:
if f.Float() == v2.Float() {
return i
}
case complex64Type:
if f.Interface().(complex64) == v2.Interface().(complex64) {
return i
}
case complex128Type:
if f.Complex() == v2.Complex() {
return i
}
}
}
}
return -1
}
// FieldNameByValue returns the field's name of the first instance of the value in s
func FieldNameByValue(s, value interface{}) string {
v1 := reflect.ValueOf(s)
t1 := reflect.TypeOf(s)
v2 := reflect.ValueOf(value)
for i := 0; i < v1.NumField(); i++ {
f := v1.Field(i)
if f.Type() == v2.Type() {
switch f.Type() {
case stringType:
if f.String() == v2.String() {
return t1.Field(i).Name
}
case intType, int8Type, int16Type, int32Type, int64Type:
if f.Int() == v2.Int() {
return t1.Field(i).Name
}
case boolType:
if f.Bool() == v2.Bool() {
return t1.Field(i).Name
}
case float32Type:
if f.Interface().(float32) == v2.Interface().(float32) {
return t1.Field(i).Name
}
case float64Type:
if f.Float() == v2.Float() {
return t1.Field(i).Name
}
case complex64Type:
if f.Interface().(complex64) == v2.Interface().(complex64) {
return t1.Field(i).Name
}
case complex128Type:
if f.Complex() == v2.Complex() {
return t1.Field(i).Name
}
}
}
}
return ""
}
func Map(s interface{}, handler func(reflect.Value) error) (interface{}, error) {
v := reflect.Indirect(reflect.ValueOf(s))
for i := 0; i < v.NumField(); i++ {
f := v.Field(i)
if f.CanSet() {
err := handler(f)
if err != nil {
return nil, err
}
}
}
return s, nil
}
// Replace returns a copy of the struct s with the first n non-overlapping instance of old replaced by new
func Replace(s, old, new interface{}, n int) (interface{}, error) {
v1 := reflect.Indirect(reflect.ValueOf(s))
//t1 := reflect.TypeOf(s)
oldV := reflect.ValueOf(old)
newV := reflect.ValueOf(new)
if oldV.Type() != newV.Type() {
return nil, errReplaceTypesNotMatching
}
var c = 0
for i := 0; i < v1.NumField(); i++ {
if n != -1 && c >= n {
return s, nil
}
f := v1.Field(i)
switch f.Type() {
case stringType:
if oldV.Type() == stringType &&
f.String() == oldV.String() {
f.SetString(newV.String())
c++
}
case intType, int8Type, int16Type, int32Type, int64Type:
if oldV.Type() == intType &&
f.Int() == oldV.Int() {
f.SetInt(newV.Int())
c++
}
case boolType:
if oldV.Type() == boolType &&
f.Bool() == oldV.Bool() {
f.SetBool(newV.Bool())
c++
}
case float32Type, float64Type:
if oldV.Type() == float32Type &&
f.Float() == oldV.Float() {
f.SetFloat(newV.Float())
c++
}
// @todo add float64
case complex64Type, complex128Type:
if oldV.Type() == complex64Type &&
f.Complex() == oldV.Complex() {
f.SetComplex(newV.Complex())
c++
}
// @todo add complex128
}
}
return s, nil
}
/*
Contains helper functions
*/
func containsString(s string, v interface{}) bool {
switch v.(type) {
case string:
if v.(string) == s {
return true
}
}
return false
}
func containsInt(s int64, v interface{}) bool {
switch v.(type) {
case int64:
if v.(int64) == s {
return true
}
case int32:
if int64(v.(int32)) == s {
return true
}
case int16:
if int64(v.(int16)) == s {
return true
}
case int8:
if int64(v.(int8)) == s {
return true
}
case int:
if int64(v.(int)) == s {
return true
}
}
return false
}
func containsBool(s bool, v interface{}) bool {
switch v.(type) {
case bool:
if v.(bool) == s {
return true
}
}
return false
}
func containsFloat32(s float32, v interface{}) bool {
switch v.(type) {
case float32:
if v.(float32) == s {
return true
}
}
return false
}
func containsFloat64(s float64, v interface{}) bool {
switch v.(type) {
case float64:
if v.(float64) == s {
return true
}
}
return false
}
func containsComplex64(s complex64, v interface{}) bool {
switch v.(type) {
case complex64:
if v.(complex64) == s {
return true
}
}
return false
}
func containsComplex128(s complex128, v interface{}) bool {
switch v.(type) {
case complex128:
if v.(complex128) == s {
return true
}
}
return false
}