123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264 |
- package validator
-
- import (
- "fmt"
- "reflect"
- "strings"
- "sync"
- "sync/atomic"
- )
-
- type tagType uint8
-
- const (
- typeDefault tagType = iota
- typeOmitEmpty
- typeNoStructLevel
- typeStructOnly
- typeDive
- typeOr
- typeExists
- )
-
- type structCache struct {
- lock sync.Mutex
- m atomic.Value // map[reflect.Type]*cStruct
- }
-
- func (sc *structCache) Get(key reflect.Type) (c *cStruct, found bool) {
- c, found = sc.m.Load().(map[reflect.Type]*cStruct)[key]
- return
- }
-
- func (sc *structCache) Set(key reflect.Type, value *cStruct) {
-
- m := sc.m.Load().(map[reflect.Type]*cStruct)
-
- nm := make(map[reflect.Type]*cStruct, len(m)+1)
- for k, v := range m {
- nm[k] = v
- }
- nm[key] = value
- sc.m.Store(nm)
- }
-
- type tagCache struct {
- lock sync.Mutex
- m atomic.Value // map[string]*cTag
- }
-
- func (tc *tagCache) Get(key string) (c *cTag, found bool) {
- c, found = tc.m.Load().(map[string]*cTag)[key]
- return
- }
-
- func (tc *tagCache) Set(key string, value *cTag) {
-
- m := tc.m.Load().(map[string]*cTag)
-
- nm := make(map[string]*cTag, len(m)+1)
- for k, v := range m {
- nm[k] = v
- }
- nm[key] = value
- tc.m.Store(nm)
- }
-
- type cStruct struct {
- Name string
- fields map[int]*cField
- fn StructLevelFunc
- }
-
- type cField struct {
- Idx int
- Name string
- AltName string
- cTags *cTag
- }
-
- type cTag struct {
- tag string
- aliasTag string
- actualAliasTag string
- param string
- hasAlias bool
- typeof tagType
- hasTag bool
- fn Func
- next *cTag
- }
-
- func (v *Validate) extractStructCache(current reflect.Value, sName string) *cStruct {
-
- v.structCache.lock.Lock()
- defer v.structCache.lock.Unlock() // leave as defer! because if inner panics, it will never get unlocked otherwise!
-
- typ := current.Type()
-
- // could have been multiple trying to access, but once first is done this ensures struct
- // isn't parsed again.
- cs, ok := v.structCache.Get(typ)
- if ok {
- return cs
- }
-
- cs = &cStruct{Name: sName, fields: make(map[int]*cField), fn: v.structLevelFuncs[typ]}
-
- numFields := current.NumField()
-
- var ctag *cTag
- var fld reflect.StructField
- var tag string
- var customName string
-
- for i := 0; i < numFields; i++ {
-
- fld = typ.Field(i)
-
- if !fld.Anonymous && fld.PkgPath != blank {
- continue
- }
-
- tag = fld.Tag.Get(v.tagName)
-
- if tag == skipValidationTag {
- continue
- }
-
- customName = fld.Name
-
- if v.fieldNameTag != blank {
-
- name := strings.SplitN(fld.Tag.Get(v.fieldNameTag), ",", 2)[0]
-
- // dash check is for json "-" (aka skipValidationTag) means don't output in json
- if name != "" && name != skipValidationTag {
- customName = name
- }
- }
-
- // NOTE: cannot use shared tag cache, because tags may be equal, but things like alias may be different
- // and so only struct level caching can be used instead of combined with Field tag caching
-
- if len(tag) > 0 {
- ctag, _ = v.parseFieldTagsRecursive(tag, fld.Name, blank, false)
- } else {
- // even if field doesn't have validations need cTag for traversing to potential inner/nested
- // elements of the field.
- ctag = new(cTag)
- }
-
- cs.fields[i] = &cField{Idx: i, Name: fld.Name, AltName: customName, cTags: ctag}
- }
-
- v.structCache.Set(typ, cs)
-
- return cs
- }
-
- func (v *Validate) parseFieldTagsRecursive(tag string, fieldName string, alias string, hasAlias bool) (firstCtag *cTag, current *cTag) {
-
- var t string
- var ok bool
- noAlias := len(alias) == 0
- tags := strings.Split(tag, tagSeparator)
-
- for i := 0; i < len(tags); i++ {
-
- t = tags[i]
-
- if noAlias {
- alias = t
- }
-
- if v.hasAliasValidators {
- // check map for alias and process new tags, otherwise process as usual
- if tagsVal, found := v.aliasValidators[t]; found {
-
- if i == 0 {
- firstCtag, current = v.parseFieldTagsRecursive(tagsVal, fieldName, t, true)
- } else {
- next, curr := v.parseFieldTagsRecursive(tagsVal, fieldName, t, true)
- current.next, current = next, curr
-
- }
-
- continue
- }
- }
-
- if i == 0 {
- current = &cTag{aliasTag: alias, hasAlias: hasAlias, hasTag: true}
- firstCtag = current
- } else {
- current.next = &cTag{aliasTag: alias, hasAlias: hasAlias, hasTag: true}
- current = current.next
- }
-
- switch t {
-
- case diveTag:
- current.typeof = typeDive
- continue
-
- case omitempty:
- current.typeof = typeOmitEmpty
- continue
-
- case structOnlyTag:
- current.typeof = typeStructOnly
- continue
-
- case noStructLevelTag:
- current.typeof = typeNoStructLevel
- continue
-
- case existsTag:
- current.typeof = typeExists
- continue
-
- default:
-
- // if a pipe character is needed within the param you must use the utf8Pipe representation "0x7C"
- orVals := strings.Split(t, orSeparator)
-
- for j := 0; j < len(orVals); j++ {
-
- vals := strings.SplitN(orVals[j], tagKeySeparator, 2)
-
- if noAlias {
- alias = vals[0]
- current.aliasTag = alias
- } else {
- current.actualAliasTag = t
- }
-
- if j > 0 {
- current.next = &cTag{aliasTag: alias, actualAliasTag: current.actualAliasTag, hasAlias: hasAlias, hasTag: true}
- current = current.next
- }
-
- current.tag = vals[0]
- if len(current.tag) == 0 {
- panic(strings.TrimSpace(fmt.Sprintf(invalidValidation, fieldName)))
- }
-
- if current.fn, ok = v.validationFuncs[current.tag]; !ok {
- panic(strings.TrimSpace(fmt.Sprintf(undefinedValidation, fieldName)))
- }
-
- if len(orVals) > 1 {
- current.typeof = typeOr
- }
-
- if len(vals) > 1 {
- current.param = strings.Replace(strings.Replace(vals[1], utf8HexComma, ",", -1), utf8Pipe, "|", -1)
- }
- }
- }
- }
-
- return
- }
|