-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmap.go
More file actions
279 lines (224 loc) · 5.78 KB
/
map.go
File metadata and controls
279 lines (224 loc) · 5.78 KB
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
package struct2
import (
"reflect"
"strings"
)
type configMap struct {
omitNested bool
}
type optionMap func(*configMap)
func WithOmitNested() optionMap {
return func(c *configMap) {
c.omitNested = true
}
}
// MapOmitNested converts given struct to the map[string]any omitting nested structs and maps.
//
// Deprecated: use Map with WithOmitNested option instead.
func (d *Decoder) MapOmitNested(input any) map[string]any {
return d.Map(input, WithOmitNested())
}
// MapSlice converts given slice of structs to []map[string]any.
// Panic if input not a slice or array type.
func (d *Decoder) MapSlice(input any, opts ...optionMap) []map[string]any {
config := configMap{}
for _, opt := range opts {
opt(&config)
}
inputV := reflect.ValueOf(input)
if isNil(inputV) {
return nil
}
if inputV.Kind() != reflect.Slice && inputV.Kind() != reflect.Array {
panic("input not a slice or array type")
}
out := make([]map[string]any, inputV.Len())
for i := 0; i < inputV.Len(); i++ {
out[i] = d.convertMap(inputV.Index(i).Interface(), config)
}
return out
}
// Map converts given struct to the map[string]any.
// Panic if input not a struct type.
func (d *Decoder) Map(input any, opts ...optionMap) map[string]any {
config := configMap{}
for _, opt := range opts {
opt(&config)
}
return d.convertMap(input, config)
}
func (d *Decoder) convertMap(input any, config configMap) map[string]any {
inputV := reflect.ValueOf(input)
if isNil(inputV) {
return nil
}
v := value2StructValue(inputV)
out := make(map[string]any)
var fields []reflect.StructField
d.getFields(v, func(sf reflect.StructField) {
fields = append(fields, sf)
})
FIELDS:
for _, field := range fields {
name := field.Name
val := v.FieldByName(name)
if d.OuputCamelCase {
name = strings.ToLower(name[0:1]) + name[1:]
}
isSubStruct := false
var finalVal any
tagName, tagOpts := d.parseTag(field)
if tagName != "" {
name = tagName
}
// if the value is a zero value and the field is marked as omitempty do
// not include
if tagOpts.Has("omitempty") && val.IsZero() {
continue
}
if d.OmitNilPtr && val.Kind() == reflect.Pointer && val.IsNil() {
continue
}
if tagOpts.Has("string") {
s, err := toStringE(val.Interface())
if err != nil {
continue
}
out[name] = s
continue
}
ptr2 := d.ForcePtr2 || tagOpts.Has("ptr2")
// custom hooks
for _, hook := range d.Hooks {
if hookResult, err := hook(val); err == nil {
if ptr2 {
out[name] = Ptr2Concrete(hookResult)
} else {
out[name] = hookResult
}
continue FIELDS
}
}
// type hook
var hook Hooker
if hookSelect, ok := val.Interface().(Hooker); ok {
hook = hookSelect
} else {
addrVal := reflect.New(val.Type())
reflect.Indirect(addrVal).Set(val)
if hookSelect, ok := addrVal.Interface().(Hooker); ok {
hook = hookSelect
}
}
if hook != nil {
if val.Type().Kind() == reflect.Pointer && val.IsNil() {
// nil pointer call to value receiver
out[name] = nil
continue
}
if ptr2 {
out[name] = Ptr2Concrete(hook.Struct2Hook())
} else {
out[name] = hook.Struct2Hook()
}
continue
}
// nested parts
if !config.omitNested && !tagOpts.Has("omitnested") {
finalVal = d.nested(val)
v := reflect.ValueOf(val.Interface())
if v.Kind() == reflect.Pointer {
v = v.Elem()
}
switch v.Kind() {
case reflect.Map, reflect.Struct:
isSubStruct = true
}
} else {
finalVal = val.Interface()
}
if isSubStruct && (tagOpts.Has("flatten")) {
for k := range finalVal.(map[string]any) {
out[k] = finalVal.(map[string]any)[k]
}
} else {
if ptr2 {
out[name] = Ptr2Concrete(finalVal)
} else {
out[name] = finalVal
}
}
}
return out
}
// nested retrieves recursively all types for the given value and returns the nested value.
func (d *Decoder) nested(val reflect.Value) any {
var finalVal any
v := reflect.ValueOf(val.Interface())
if v.Kind() == reflect.Pointer {
v = v.Elem()
}
switch v.Kind() {
case reflect.Struct:
exportedFieldCount := 0
d.getFields(v, func(sf reflect.StructField) {
if isFieldExported(sf) {
exportedFieldCount++
}
})
if exportedFieldCount > 0 {
finalVal = d.Map(val.Interface())
} else {
finalVal = val.Interface()
}
case reflect.Map:
// get the element type of the map
mapElem := val.Type()
switch val.Type().Kind() {
case reflect.Pointer, reflect.Array, reflect.Map,
reflect.Slice, reflect.Chan:
mapElem = val.Type().Elem()
if mapElem.Kind() == reflect.Pointer {
mapElem = mapElem.Elem()
}
}
// only iterate over struct types, ie: map[string]StructType,
// map[string][]StructType,
if mapElem.Kind() == reflect.Struct ||
(mapElem.Kind() == reflect.Slice && mapElem.Elem().Kind() == reflect.Struct) {
m := make(map[string]any, val.Len())
for _, k := range val.MapKeys() {
m[k.String()] = d.nested(val.MapIndex(k))
}
finalVal = m
break
}
// TODO(arslan): should this be optional?
finalVal = val.Interface()
case reflect.Slice, reflect.Array:
if val.Type().Kind() == reflect.Pointer {
val = val.Elem()
}
if val.Type().Kind() == reflect.Interface {
finalVal = val.Interface()
break
}
// TODO(arslan): should this be optional?
// do not iterate of non struct types, just pass the value. Ie: []int,
// []string, co... We only iterate further if it's a struct.
// i.e []foo or []*foo
if val.Type().Elem().Kind() != reflect.Struct &&
!(val.Type().Elem().Kind() == reflect.Pointer && val.Type().Elem().Elem().Kind() == reflect.Struct) {
finalVal = val.Interface()
break
}
slices := make([]any, val.Len())
for x := 0; x < val.Len(); x++ {
slices[x] = d.nested(val.Index(x))
}
finalVal = slices
default:
finalVal = val.Interface()
}
return finalVal
}