-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreflectutils.go
156 lines (133 loc) · 3.39 KB
/
reflectutils.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
package reflectutils
import (
"reflect"
"strconv"
"strings"
)
var (
sfdCache = map[reflect.Type]map[string]reflect.Type{}
)
func StructFieldData(o interface{}) map[string]reflect.Type {
var oVal = reflect.ValueOf(o).Elem()
var oType = oVal.Type()
// Check cache
fieldMap, ok := sfdCache[oType]
if !ok {
fieldMap = map[string]reflect.Type{}
sfdCache[oType] = fieldMap
}
for i := 0; i < oVal.NumField(); i++ {
var tf = oType.Field(i)
var vf = oVal.Field(i)
fieldMap[tf.Name] = vf.Type()
}
return fieldMap
}
// StructFieldValue returns the value of slotName of struct o.
func StructFieldValue(o interface{}, slotName string) interface{} {
var oVal = reflect.ValueOf(o).Elem()
var fieldVal = oVal.FieldByName(slotName)
if ! fieldVal.IsValid() {
panic("No such slot name" + slotName)
}
return fieldVal.Interface()
}
var stCache = map[reflect.Type]map[string]map[string]string{}
var fidxCache = map[reflect.Type]map[string]int{}
// StructTags returns a map[string]string of the tags and values of the struct.
func StructTags(o interface{}) map[string]map[string]string {
var oVal = reflect.ValueOf(o).Elem()
var oType = oVal.Type()
stMap, ok := stCache[oType]
if !ok {
// fName tagKey tagVal
stMap = map[string]map[string]string{}
// fName fIdx
var fidxMap = map[string]int{}
for i := 0; i < oVal.NumField(); i++ {
field := oType.Field(i)
stMap[field.Name] = parseTags(field.Tag)
fidxMap[field.Name] = i
}
stCache[oType] = stMap
}
return stMap
}
func parseTags(tag reflect.StructTag) map[string]string {
// Copied ruthlessly from src/reflect/type.go
var stMap = map[string]string{}
for tag != "" {
// Skip leading space.
i := 0
for i < len(tag) && tag[i] == ' ' {
i++
}
tag = tag[i:]
if tag == "" {
break
}
// Scan to colon. A space, a quote or a control character is a syntax
// error. Strictly speaking, control chars include the range [0x7f,
// 0x9f], not just [0x00, 0x1f], but in practice, we ignore the
// multi-byte control characters as it is simpler to inspect the tag's
// bytes than the tag's runes.
i = 0
for (i < len(tag) && tag[i] > ' ' && tag[i] != ':' &&
tag[i] != '"' && tag[i] != 0x7f ){
i++
}
if i == 0 || i+1 >= len(tag) || tag[i] != ':' || tag[i+1] != '"' {
break
}
name := string(tag[:i])
tag = tag[i+1:]
// Scan quoted string to find value.
i = 1
for i < len(tag) && tag[i] != '"' {
if tag[i] == '\\' {
i++
}
i++
}
if i >= len(tag) {
break
}
qvalue := string(tag[:i+1])
tag = tag[i+1:]
value, err := strconv.Unquote(qvalue)
if err != nil {
break
}
stMap[name] = value
}
return stMap
}
// GetTagNameToFieldIndexMap returns a map the value of each field's <tagName>
// value to the index of the field it was found in.
//
// Tag values are stripped of anything past the comma (including the comma).
//
// type Foo struct {
// MyThing string `json:"mything,omitempty"`
// OThing string `json:"othing"`
// }
// ->
// map[string]int{
// "mything": 0,
// "othing": 1,
// }
//
func GetTagNameToFieldIndexMap(o interface{}, tagName string) map[string]int {
var oFidxMap = fidxCache[reflect.TypeOf(o)]
var fidxMap = map[string]int{}
for fName, tagMap := range StructTags(o) {
tVal, ok := tagMap[tagName]
if ok {
if idx := strings.Index(tVal, ","); idx != -1 {
tVal = tVal[:idx]
}
fidxMap[tVal] = oFidxMap[fName]
}
}
return fidxMap
}