-
Notifications
You must be signed in to change notification settings - Fork 23
/
reflector.go
259 lines (225 loc) · 5.21 KB
/
reflector.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
// Copyright 2018 Alexander Poltoratskiy. All rights reserved.
// Use of this source code is governed by the Apache 2.0
// license that can be found in the LICENSE file.
package fast
import (
"errors"
"reflect"
"strconv"
)
const structTag = "fast"
var regCache = make(map[string]*register)
type register struct {
prefer bool // true for map by id
byName map[string]int
byID map[int]int
}
type reflector struct {
current *register
values []reflect.Value
index int
}
func makeMsg(msg interface{}) (m *reflector) {
rv := reflect.ValueOf(msg)
if rv.Kind() != reflect.Ptr || rv.IsNil() {
panic(errors.New("message is not pointer or nil"))
}
m = &reflector{values: []reflect.Value{rv}}
rt := reflect.TypeOf(msg).Elem()
var ok bool
name := rt.PkgPath() + "." + rt.Name()
if m.current, ok = regCache[name]; !ok {
m.current = ®ister{byName: make(map[string]int), byID: make(map[int]int)}
countID, countName := parseType(rt, m.current)
if countID >= countName {
m.current.prefer = true
}
regCache[name] = m.current
}
return
}
func (m *reflector) Lock(field *Field) bool {
v, ok := m.lookUpRField(field)
if !ok {
return false
}
if v.Kind() == reflect.Slice {
v = extractValue(v.Index(field.Value.(int)))
m.values = append(m.values, v.Addr())
} else {
v = extractValue(v)
m.values = append(m.values, v.Addr())
}
m.index++
return true
}
func (m *reflector) Unlock() {
m.values = m.values[:m.index]
m.index--
}
// find value in message and assign to field
func (m *reflector) GetValue(field *Field) {
if rField, ok := m.lookUpRField(field); ok {
if rField.Kind() == reflect.Ptr {
if !rField.IsNil() {
field.Value = rField.Elem().Interface()
}
} else {
field.Value = rField.Interface()
}
}
}
// find slice len in message and assign to field
func (m *reflector) GetLength(field *Field) {
if rField, ok := m.lookUpRField(field); ok {
field.Value = rField.Len()
}
}
func (m *reflector) SetLength(field *Field) {
if rField, ok := m.lookUpRField(field); ok {
length := field.Value.(int)
if length > rField.Cap() {
newValue := reflect.MakeSlice(rField.Type(), length, length)
reflect.Copy(newValue, rField)
rField.Set(newValue)
}
if length > rField.Len() {
rField.SetLen(length)
}
}
}
// find template id in message and return
func (m *reflector) GetTemplateID() uint {
index, ok := m.current.byName["*"]
if !ok {
return 0
}
return uint(m.values[m.index].Elem().Field(index).Uint())
}
// set template id to message
func (m *reflector) SetTemplateID(tid uint) {
index, ok := m.current.byName["*"]
if !ok {
return
}
rField := m.values[m.index].Elem().Field(index)
m.set(rField, reflect.ValueOf(tid))
}
// set field value to message
func (m *reflector) SetValue(field *Field) {
if rField, ok := m.lookUpRField(field); ok {
m.set(rField, reflect.ValueOf(field.Value))
}
}
func (m *reflector) set(field reflect.Value, value reflect.Value) {
if field.Kind() == reflect.Ptr {
field.Set(reflect.New(field.Type().Elem()))
field = field.Elem()
}
if field.Kind() == reflect.Slice {
newValue := reflect.MakeSlice(field.Type(), value.Len(), value.Len())
reflect.Copy(newValue, value)
field.Set(newValue)
} else {
field.Set(value)
}
}
func (m *reflector) lookUpRField(field *Field) (v reflect.Value, ok bool) {
if field.index == nil {
m.lookUpIndex(field)
}
if field.index == nil {
return
}
v = extractValue(m.values[m.index])
v = extractValue(v.Field(*field.index))
ok = true
return
}
func (m *reflector) lookUpIndex(field *Field) {
var v int
var ok bool
if m.current.prefer {
if v, ok = m.current.byID[int(field.ID)]; ok {
field.index = &v
return
}
if v, ok = m.current.byName[field.Name]; ok {
field.index = &v
return
}
}
if v, ok = m.current.byName[field.Name]; ok {
field.index = &v
return
}
if v, ok = m.current.byID[int(field.ID)]; ok {
field.index = &v
}
}
func parseType(rt reflect.Type, current *register) (countID, countName int) {
var (
field reflect.StructField
tmp reflect.Type
name string
id int
err error
ok bool
)
for i := 0; i < rt.NumField(); i++ {
field = rt.Field(i)
name = lookUpTag(field)
if name == "" {
continue
}
id, err = strconv.Atoi(name)
if err == nil {
countID++
if _, ok = current.byID[id]; ok {
panic(errors.New("found duplicate struct field"))
}
current.byID[id] = i
} else {
countName++
if _, ok = current.byName[name]; ok {
panic(errors.New("found duplicate struct field"))
}
current.byName[name] = i
}
tmp = extractType(field.Type)
// extract first element of slice
if tmp.Kind() == reflect.Slice {
tmp = extractType(tmp.Elem())
}
if tmp.Kind() == reflect.Struct {
d, n := parseType(tmp, current)
countID += d
countID += n
}
}
return
}
func extractValue(rv reflect.Value) reflect.Value {
if rv.Kind() == reflect.Ptr {
if rv.IsNil() {
rv.Set(reflect.New(rv.Type().Elem()))
}
return rv.Elem()
}
return rv
}
func extractType(rt reflect.Type) reflect.Type {
if rt.Kind() == reflect.Ptr {
return rt.Elem()
}
return rt
}
func lookUpTag(field reflect.StructField) string {
if tag, ok := field.Tag.Lookup(structTag); ok && tag != "" {
if tag == "-" {
return ""
}
return tag
}
return field.Name
}