-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstruct.go
91 lines (81 loc) · 1.68 KB
/
struct.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
package disorder
import (
"fmt"
"reflect"
"strings"
"sync"
)
var (
structsMap = make(map[reflect.Type]*structInfo)
structsMapMutex sync.RWMutex
)
type structInfo struct {
fieldsMap map[string]*fieldInfo
fieldsList []*fieldInfo
}
type fieldInfo struct {
key string
index int
}
func getStructInfo(typ reflect.Type) (*structInfo, error) {
structsMapMutex.RLock()
s, exists := structsMap[typ]
structsMapMutex.RUnlock()
if exists {
return s, nil
}
count := typ.NumField()
s = &structInfo{
fieldsMap: map[string]*fieldInfo{},
fieldsList: make([]*fieldInfo, 0, count),
}
for i := 0; i < count; i++ {
field := typ.Field(i)
if field.PkgPath != "" && !field.Anonymous {
continue // Private field
}
f := &fieldInfo{
index: i,
}
tag := field.Tag.Get("disorder")
if tag == "" && !strings.Contains(string(field.Tag), ":") {
tag = string(field.Tag)
}
if tag == "-" {
continue
}
fields := strings.Split(tag, ",")
if len(fields) > 0 {
tag = fields[0]
if len(fields) > 1 {
return nil, fmt.Errorf("unsupported flag %s in tag %s", fields[1], tag)
}
}
if tag != "" {
f.key = tag
} else {
f.key = field.Name
}
if _, exists = s.fieldsMap[f.key]; exists {
return nil, fmt.Errorf("duplicated key '" + f.key + "' in struct " + typ.String())
}
s.fieldsList = append(s.fieldsList, f)
s.fieldsMap[f.key] = f
}
structsMapMutex.Lock()
defer structsMapMutex.Unlock()
structsMap[typ] = s
return s, nil
}
func isNull(value reflect.Value) bool {
if !value.IsValid() {
return true
}
switch value.Kind() {
case reflect.Interface, reflect.Ptr, reflect.Slice, reflect.Map:
if value.IsNil() {
return true
}
}
return false
}