-
Notifications
You must be signed in to change notification settings - Fork 3
/
map.go
240 lines (193 loc) · 5.06 KB
/
map.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
package struct2
import (
"reflect"
"strings"
)
type configMap struct {
omitNested bool
}
// MapOmitNested converts given struct to the map[string]interface{} without looking nested object.
// Panic if input not a struct type.
func (d *Decoder) MapOmitNested(input interface{}) map[string]interface{} {
return d.convertMap(input, configMap{omitNested: true})
}
// Map converts given struct to the map[string]interface{}.
// Panic if input not a struct type.
func (d *Decoder) Map(input interface{}) map[string]interface{} {
return d.convertMap(input, configMap{})
}
func (d *Decoder) convertMap(input interface{}, config configMap) map[string]interface{} {
inputV := reflect.ValueOf(input)
if isNil(inputV) {
return nil
}
v := value2StructValue(inputV)
out := make(map[string]interface{})
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 interface{}
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.Ptr && 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.Ptr && 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.Ptr {
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]interface{}) {
out[k] = finalVal.(map[string]interface{})[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) interface{} {
var finalVal interface{}
v := reflect.ValueOf(val.Interface())
if v.Kind() == reflect.Ptr {
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.Ptr, reflect.Array, reflect.Map,
reflect.Slice, reflect.Chan:
mapElem = val.Type().Elem()
if mapElem.Kind() == reflect.Ptr {
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]interface{}, 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.Ptr {
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.Ptr && val.Type().Elem().Elem().Kind() == reflect.Struct) {
finalVal = val.Interface()
break
}
slices := make([]interface{}, val.Len())
for x := 0; x < val.Len(); x++ {
slices[x] = d.nested(val.Index(x))
}
finalVal = slices
default:
finalVal = val.Interface()
}
return finalVal
}