-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcahe.go
388 lines (337 loc) · 9.44 KB
/
cahe.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
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
package validator
import (
"bytes"
"fmt"
"reflect"
"strings"
"sync"
"unicode"
)
// A field represents a single field found in a struct.
type field struct {
name string
nameBytes []byte // []byte(name)
structName string
structNameBytes []byte // []byte(structName)
attribute string
defaultAttribute string
tag bool
index []int
requiredTags requiredTags
validTags otherValidTags
typ reflect.Type
omitEmpty bool
}
// A ValidTag represents parse validTag into field struct.
type ValidTag struct {
name string
params []string
messageName string
messageParameters MessageParameters
}
// A otherValidTags represents parse validTag into field struct when validTag is not required...
type otherValidTags []*ValidTag
// A requiredTags represents parse validTag into field struct when validTag is required...
type requiredTags []*ValidTag
var fieldCache sync.Map // map[reflect.Type][]field
// cachedTypefields is like typefields but uses a cache to avoid repeated work.
func cachedTypefields(t reflect.Type) []field {
if f, ok := fieldCache.Load(t); ok {
return f.([]field)
}
f, _ := fieldCache.LoadOrStore(t, typefields(t))
return f.([]field)
}
// typefields returns a list of fields that Validator should recognize for the given type.
// The algorithm is breadth-first search over the set of structs to include - the top struct
// and then any reachable anonymous structs.
func typefields(t reflect.Type) []field {
current := []field{}
next := []field{{typ: t}}
// Count of queued names for current level and the next.
count := map[reflect.Type]int{}
nextCount := map[reflect.Type]int{}
// Types already visited at an earlier level.
visited := map[reflect.Type]bool{}
var fields []field
for len(next) > 0 {
current, next = next, current[:0]
count, nextCount = nextCount, map[reflect.Type]int{}
for _, f := range current {
if visited[f.typ] {
continue
}
visited[f.typ] = true
for i := 0; i < f.typ.NumField(); i++ {
sf := f.typ.Field(i)
isUnexported := sf.PkgPath != ""
if sf.Anonymous {
t := sf.Type
if t.Kind() == reflect.Ptr {
t = t.Elem()
}
if isUnexported && t.Kind() != reflect.Struct {
// Ignore embedded fields of unexported non-struct types.
continue
}
// Do not ignore embedded fields of unexported struct types
// since they may have exported fields.
} else if isUnexported {
// Ignore unexported non-embedded fields.
continue
}
validTag := sf.Tag.Get(tagName)
name := sf.Tag.Get("json")
if !f.isvalidTag(name) {
name = ""
}
if validTag == "-" {
continue
}
index := make([]int, len(f.index)+1)
copy(index, f.index)
index[len(f.index)] = i
ft := sf.Type
if validTag == "" && ft.Kind() != reflect.Slice && ft.Kind() != reflect.Array {
continue
}
if ft.Name() == "" && ft.Kind() == reflect.Ptr {
// Follow pointer.
ft = ft.Elem()
}
// Record found field and index sequence.
if name != "" || !sf.Anonymous || ft.Kind() != reflect.Struct {
tagged := name != ""
if name == "" {
name = sf.Name
}
requiredTags, otherValidTags, defaultAttribute := f.parseTagIntoSlice(validTag, ft)
fields = append(fields, field{
name: name,
nameBytes: []byte(name),
structName: t.Name() + "." + sf.Name,
structNameBytes: []byte(t.Name() + "." + sf.Name),
attribute: sf.Name,
defaultAttribute: defaultAttribute,
tag: tagged,
index: index,
requiredTags: requiredTags,
validTags: otherValidTags,
typ: ft,
omitEmpty: strings.Contains(validTag, "omitempty"),
})
if count[f.typ] > 1 {
// If there were multiple instances, add a second,
// so that the annihilation code will see a duplicate.
// It only cares about the distinction between 1 or 2,
// so don't bother generating any more copies.
fields = append(fields, fields[len(fields)-1])
}
continue
}
// Record new anonymous struct to explore in next round.
nextCount[ft]++
if nextCount[ft] == 1 {
requiredTags, otherValidTags, defaultAttribute := f.parseTagIntoSlice(validTag, ft)
next = append(next, field{
name: sf.Name,
nameBytes: []byte(sf.Name),
structName: t.Name() + "." + sf.Name,
structNameBytes: []byte(t.Name() + "." + sf.Name),
attribute: sf.Name,
defaultAttribute: defaultAttribute,
index: index,
requiredTags: requiredTags,
validTags: otherValidTags,
typ: ft,
omitEmpty: strings.Contains(validTag, "omitempty"),
})
}
}
}
}
return fields
}
func (f *field) parseTagIntoSlice(tag string, ft reflect.Type) (requiredTags, otherValidTags, string) {
options := strings.Split(tag, ",")
var otherValidTags otherValidTags
var requiredTags requiredTags
defaultAttribute := ""
for _, option := range options {
option = strings.TrimSpace(option)
if !f.isvalidTag(option) {
continue
}
tag := strings.Split(option, "=")
var params []string
if len(tag) == 2 {
params = strings.Split(tag[1], "|")
}
switch tag[0] {
case "attribute":
if len(tag) == 2 {
defaultAttribute = tag[1]
}
continue
case "required", "requiredIf", "requiredUnless", "requiredWith", "requiredWithAll", "requiredWithout", "requiredWithoutAll":
requiredTags = append(requiredTags, &ValidTag{
name: tag[0],
params: params,
messageName: f.parseMessageName(tag[0], ft),
messageParameters: f.parseMessageParameterIntoSlice(tag[0], params...),
})
continue
}
otherValidTags = append(otherValidTags, &ValidTag{
name: tag[0],
params: params,
messageName: f.parseMessageName(tag[0], ft),
messageParameters: f.parseMessageParameterIntoSlice(tag[0], params...),
})
}
return requiredTags, otherValidTags, defaultAttribute
}
func (f *field) isvalidTag(s string) bool {
if s == "" {
return false
}
for _, c := range s {
switch {
case strings.ContainsRune("\\'\"!#$%&()*+-./:<=>?@[]^_{|}~ ", c):
// Backslash and quote chars are reserved, but
// otherwise any punctuation chars are allowed
// in a tag name.
default:
if !unicode.IsLetter(c) && !unicode.IsDigit(c) {
return false
}
}
}
return true
}
func (f *field) isvalidAttribute(s string) bool {
if s == "" {
return false
}
return true
}
func (f *field) parseMessageName(rule string, ft reflect.Type) string {
messageName := rule
switch rule {
case "between", "gt", "gte", "lt", "lte", "min", "max", "size":
switch ft.Kind() {
case reflect.Int, reflect.Int8, reflect.Int16,
reflect.Int32, reflect.Int64,
reflect.Uint, reflect.Uint8, reflect.Uint16,
reflect.Uint32, reflect.Uint64,
reflect.Float32, reflect.Float64:
return messageName + ".numeric"
case reflect.String:
return messageName + ".string"
case reflect.Array, reflect.Slice, reflect.Map:
return messageName + ".array"
case reflect.Struct, reflect.Ptr:
return messageName
default:
return messageName
}
default:
return messageName
}
}
type messageParameter struct {
Key string
Value string
}
// A MessageParameters represents store message parameter into field struct.
type MessageParameters []messageParameter
func (f *field) parseMessageParameterIntoSlice(rule string, params ...string) MessageParameters {
var messageParameters MessageParameters
switch rule {
case "requiredUnless":
if len(params) < 2 {
panic(fmt.Sprintf("validator: " + rule + " format is not valid"))
}
first := true
var buff bytes.Buffer
for _, v := range params[1:] {
if first {
first = false
} else {
buff.WriteByte(' ')
buff.WriteByte(',')
buff.WriteByte(' ')
}
buff.WriteString(v)
}
messageParameters = append(
messageParameters,
messageParameter{
Key: "Values",
Value: buff.String(),
},
)
case "between", "digitsBetween":
if len(params) != 2 {
panic(fmt.Sprintf("validator: " + rule + " format is not valid"))
}
messageParameters = append(
messageParameters,
messageParameter{
Key: "Min",
Value: params[0],
}, messageParameter{
Key: "Max",
Value: params[1],
},
)
case "gt", "gte", "lt", "lte":
if len(params) != 1 {
panic(fmt.Sprintf("validator: " + rule + " format is not valid"))
}
messageParameters = append(
messageParameters,
messageParameter{
Key: "Value",
Value: params[0],
},
)
case "max":
if len(params) != 1 {
panic(fmt.Sprintf("validator: " + rule + " format is not valid"))
}
messageParameters = append(
messageParameters,
messageParameter{
Key: "Max",
Value: params[0],
},
)
case "min":
if len(params) != 1 {
panic(fmt.Sprintf("validator: " + rule + " format is not valid"))
}
messageParameters = append(
messageParameters,
messageParameter{
Key: "Min",
Value: params[0],
},
)
case "size":
if len(params) != 1 {
panic(fmt.Sprintf("validator: " + rule + " format is not valid"))
}
messageParameters = append(
messageParameters,
messageParameter{
Key: "Size",
Value: params[0],
},
)
}
if messageParameters != nil && len(messageParameters) > 0 {
return messageParameters
}
return nil
}