-
Notifications
You must be signed in to change notification settings - Fork 126
Expand file tree
/
Copy pathutil.go
More file actions
490 lines (420 loc) · 12.4 KB
/
Copy pathutil.go
File metadata and controls
490 lines (420 loc) · 12.4 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
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
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
package validate
import (
"errors"
"fmt"
"reflect"
"strings"
"unicode"
"github.com/gookit/goutil/arrutil"
"github.com/gookit/goutil/reflects"
"github.com/gookit/goutil/strutil"
"github.com/gookit/validate/v2/internal/reflectx"
)
// NilObject represent nil value for calling functions and should be reflected at custom filters as nil variable.
//
// Alias of reflectx.NilObject: keeps the public type identity so that any
// val.(NilObject) assertion and IsNilObj keep working unchanged after the type
// was moved into internal/reflectx.
type NilObject = reflectx.NilObject
// init a reflect nil value
var nilRVal = reflectx.NilRVal
// NilValue TODO a reflect nil value, use for instead of nilRVal
var NilValue = reflect.Zero(reflect.TypeOf((*any)(nil)).Elem())
// From package "text/template" -> text/template/funcs.go
var (
emptyValue = reflect.Value{}
errorType = reflect.TypeOf((*error)(nil)).Elem()
// fmtStringerType = reflect.TypeOf((*fmt.Stringer)(nil)).Elem()
// reflectValueType = reflect.TypeOf((*reflect.Value)(nil)).Elem()
dataFaceType = reflect.TypeOf((*DataFace)(nil)).Elem()
)
// IsNilObj check value is internal NilObject
func IsNilObj(val any) bool {
_, ok := val.(NilObject)
return ok
}
// CallByValue call func by reflect.Value
func CallByValue(fv reflect.Value, args ...any) []reflect.Value {
if fv.Kind() != reflect.Func {
panicf("parameter must be an func type")
}
in := make([]reflect.Value, len(args))
for k, v := range args {
// NOTICE: reflect.Call emit panic if kind is Invalid
if in[k] = reflect.ValueOf(v); in[k].Kind() == reflect.Invalid {
in[k] = nilRVal
}
}
// NOTICE: CallSlice()与Call() 不一样的是,参数的最后一个会被展开
// f.CallSlice()
return fv.Call(in)
}
func parseArgString(argStr string) (ss []string) {
if argStr == "" { // no arg
return
}
if len(argStr) == 1 { // one char
return []string{argStr}
}
return stringSplit(argStr, ",")
}
func splitRules(rules string) (ss []string) {
if rules = strings.TrimSpace(rules); len(rules) == 0 {
return
}
var (
sep = "|"
esc = "\\"
)
for _, val := range strings.Split(rules, sep) {
if val = strings.TrimSpace(val); len(val) > 0 {
if len(ss) > 0 {
if last := ss[len(ss)-1]; strings.HasSuffix(last, esc) {
ss[len(ss)-1] = strings.TrimSuffix(last, esc) + sep + val
continue
}
}
ss = append(ss, val)
}
}
return
}
func stringSplit(str, sep string) []string {
return strutil.Split(str, sep)
}
func strings2Args(ss []string) []any {
return arrutil.StringsToAnys(ss)
}
func args2strings(args []any) []string {
return arrutil.SliceToStrings(args)
}
func buildArgs(val any, args []any) []any {
newArgs := make([]any, len(args)+1)
newArgs[0] = val
// as[1:] = args // error
copy(newArgs[1:], args)
return newArgs
}
var anyType = reflect.TypeOf((*any)(nil)).Elem()
// FlatSlice flatten multi-level slice to given depth-level slice.
//
// Example:
//
// FlatSlice([]any{ []any{3, 4}, []any{5, 6} }, 1) // Output: []any{3, 4, 5, 6}
//
// always return reflect.Value of []any. NOTE: maybe flatSl.Cap != flatSl.Len
func flatSlice(sl reflect.Value, depth int) reflect.Value {
items := make([]reflect.Value, 0, sl.Cap())
slCap := addSliceItem(sl, depth, func(item reflect.Value) {
if item.IsValid() {
items = append(items, item)
} else { // fix: if sub elem is nil, item will an invalid kind.
items = append(items, NilValue)
}
})
flatSl := reflect.MakeSlice(reflect.SliceOf(anyType), 0, slCap)
flatSl = reflect.Append(flatSl, items...)
return flatSl
}
func addSliceItem(sl reflect.Value, depth int, collector func(item reflect.Value)) (c int) {
for i := 0; i < sl.Len(); i++ {
v := reflects.Elem(sl.Index(i))
if depth > 0 {
if v.Kind() != reflect.Slice {
panic(fmt.Sprintf("depth: %d, the value of index %d is not slice", depth, i))
}
c += addSliceItem(v, depth-1, collector)
} else {
collector(v)
}
}
if depth == 0 {
c = sl.Cap()
}
return c
}
// indexPathToWildcard replaces each purely-numeric path segment with "*".
// eg: "Tags.0.Id" -> "Tags.*.Id". hasIdx reports whether any numeric segment was
// found; callers skip wildcard scene matching when it is false (the common case),
// keeping the hot path cheap. (#283)
func indexPathToWildcard(path string) (string, bool) {
// cheap pre-gate: no digit at all -> no index segment, avoid the split.
if !strings.ContainsFunc(path, func(r rune) bool { return r >= '0' && r <= '9' }) {
return path, false
}
segs := strings.Split(path, ".")
hasIdx := false
for i, s := range segs {
if isAllDigits(s) {
segs[i] = "*"
hasIdx = true
}
}
if !hasIdx {
return path, false
}
return strings.Join(segs, "."), true
}
// isAllDigits reports whether s is non-empty and all ASCII digits.
func isAllDigits(s string) bool {
if s == "" {
return false
}
for i := 0; i < len(s); i++ {
if s[i] < '0' || s[i] > '9' {
return false
}
}
return true
}
// bracketKeyReplacer turns bracket form keys into dot paths. (#324)
var bracketKeyReplacer = strings.NewReplacer("[", ".", "]", "")
// normalizeFormKey converts bracket-style form keys into the library's dot-path
// model so nested form fields can be validated and bound. eg:
//
// "address[street]" -> "address.street"
// "address[street][no]" -> "address.street.no"
//
// Keys without "[" are returned unchanged (fast path). The array-append form
// "name[]" is left untouched — array-of-struct binding via numeric brackets is
// not handled yet (see docs/issues/v2.0-324-nested-form-binding-design.md §4),
// and numeric segments here bind as object keys, not slice indices.
func normalizeFormKey(key string) string {
if !strings.ContainsRune(key, '[') {
return key
}
if strings.Contains(key, "[]") {
return key
}
return bracketKeyReplacer.Replace(key)
}
// ErrConvertFail error
var ErrConvertFail = errors.New("convert value is failure")
// CalcLength for input value
func CalcLength(val any) int {
if val == nil {
return -1
}
return reflects.Len(reflect.ValueOf(val))
}
func panicf(format string, args ...any) {
panic("validate: " + fmt.Sprintf(format, args...))
}
// checkValidatorFunc 校验自定义校验器函数签名(至少 1 个入参、唯一返回值为 bool)。
// R3: func(FieldCtx) bool 形态天然满足这些约束(NumIn==1、NumOut==1 且 bool),无需额外分支。
func checkValidatorFunc(name string, fn any) reflect.Value {
if !goodName(name) {
panicf("validate name %s is not a valid identifier", name)
}
fv := reflect.ValueOf(fn)
if fn == nil || fv.Kind() != reflect.Func { // is nil or not is func
panicf("validator '%s'. 2th parameter is invalid, it must be an func", name)
}
ft := fv.Type()
if ft.NumIn() == 0 {
panicf("validator '%s' func at least one parameter position", name)
}
// TODO support return error as validate error.
if ft.NumOut() != 1 || ft.Out(0).Kind() != reflect.Bool {
panicf("validator '%s' func must be return a bool value", name)
}
return fv
}
func checkFilterFunc(name string, fn any) reflect.Value {
if !goodName(name) {
panicf("filter name %s is not a valid identifier", name)
}
fv := reflect.ValueOf(fn)
if fn == nil || fv.Kind() != reflect.Func { // is nil or not is func
panicf("filter '%s'. 2th parameter is invalid, it must be an func", name)
}
ft := fv.Type()
if ft.NumIn() == 0 {
panicf("filter '%s' func at least one parameter position", name)
}
if !goodFunc(ft) {
panicf("can't install method/function %q with %d results", name, ft.NumOut())
}
return fv
}
// goodFunc reports whether the function or method has the right result signature.
func goodFunc(typ reflect.Type) bool {
// We allow functions with 1 result or 2 results where the second is an error.
switch {
case typ.NumOut() == 1:
return true
case typ.NumOut() == 2 && typ.Out(1) == errorType:
return true
}
return false
}
// goodName reports whether the function name is a valid identifier.
func goodName(name string) bool {
if name == "" {
return false
}
for i, r := range name {
switch {
case r == '_':
case i == 0 && !unicode.IsLetter(r):
return false
case !unicode.IsLetter(r) && !unicode.IsDigit(r):
return false
}
}
return true
}
/*************************************************************
* Comparison:
* From package "text/template" -> text/template/funcs.go
*************************************************************/
var (
errBadComparisonType = errors.New("invalid type for operation")
// errBadComparison = errors.New("incompatible types for comparison")
// errNoComparison = errors.New("missing argument for comparison")
)
type kind int
// base kinds
const (
invalidKind kind = iota
boolKind
complexKind
intKind
floatKind
stringKind
uintKind
)
func basicKindV2(kind reflect.Kind) (kind, error) {
switch kind {
case reflect.Bool:
return boolKind, nil
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
return intKind, nil
case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:
return uintKind, nil
case reflect.Float32, reflect.Float64:
return floatKind, nil
case reflect.Complex64, reflect.Complex128:
return complexKind, nil
case reflect.String:
return stringKind, nil
default:
// like: slice, array, map ...
return invalidKind, errBadComparisonType
}
}
// eq evaluates the comparison a == b
func eq(arg1 reflect.Value, arg2 reflect.Value) (bool, error) {
v1 := indirectInterface(arg1)
k1, err := basicKindV2(v1.Kind())
if err != nil {
return false, err
}
v2 := indirectInterface(arg2)
k2, err := basicKindV2(v2.Kind())
if err != nil {
return false, err
}
truth := false
if k1 != k2 {
// Special case: Can compare integer values regardless of type's sign.
switch {
case k1 == intKind && k2 == uintKind:
truth = v1.Int() >= 0 && uint64(v1.Int()) == v2.Uint()
case k1 == uintKind && k2 == intKind:
truth = v2.Int() >= 0 && v1.Uint() == uint64(v2.Int())
// default:
// return false, errBadComparison
}
return truth, nil
}
switch k1 {
case boolKind:
truth = v1.Bool() == v2.Bool()
case complexKind:
truth = v1.Complex() == v2.Complex()
case floatKind:
truth = v1.Float() == v2.Float()
case intKind:
truth = v1.Int() == v2.Int()
case stringKind:
truth = v1.String() == v2.String()
case uintKind:
truth = v1.Uint() == v2.Uint()
// default:
// panic("invalid kind")
}
return truth, nil
}
// from package: github.com/stretchr/testify/assert/assertions.go
func includeElement(list, element any) (ok, found bool) {
listValue := reflect.ValueOf(list)
elementValue := reflect.ValueOf(element)
listKind := listValue.Type().Kind()
// string contains check
if listKind == reflect.String {
return true, strings.Contains(listValue.String(), elementValue.String())
}
defer func() {
if e := recover(); e != nil {
ok = false // call Value.Len() panic.
found = false
}
}()
if listKind == reflect.Map {
mapKeys := listValue.MapKeys()
for i := 0; i < len(mapKeys); i++ {
if IsEqual(mapKeys[i].Interface(), element) {
return true, true
}
}
return true, false
}
for i := 0; i < listValue.Len(); i++ {
if IsEqual(listValue.Index(i).Interface(), element) {
return true, true
}
}
return true, false
}
/*************************************************************
* Reflection:
* From package(go 1.13) "reflect" -> reflect/value.go
*************************************************************/
// IsZero reports whether v is the zero value for its type.
// It panics if the argument is invalid.
//
// NOTICE: this built-in method in reflect/value.go since go 1.13
func IsZero(v reflect.Value) bool {
return v.IsZero()
}
// Remove type multiple pointer
func removeTypePtr(t reflect.Type) reflect.Type {
for t.Kind() == reflect.Ptr {
t = t.Elem()
}
return t
}
// ---- From package "text/template" -> text/template/exec.go
// indirect returns the item at the end of indirection, and a bool to indicate if it's nil.
// func indirect(v reflect.Value) (rv reflect.Value, isNil bool) {
// for ; v.Kind() == reflect.Ptr || v.Kind() == reflect.Interface; v = v.Elem() {
// if v.IsNil() {
// return v, true
// }
// }
// return v, false
// }
// indirectInterface returns the concrete value in an interface value,
// or else the zero reflect.Value.
// That is, if v represents the interface value x, the result is the same as reflect.ValueOf(x):
// the fact that x was an interface value is forgotten.
func indirectInterface(v reflect.Value) reflect.Value {
if v.Kind() != reflect.Interface {
return v
}
if v.IsNil() {
return emptyValue
}
return v.Elem()
}