-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstruct.field.go
84 lines (72 loc) · 1.88 KB
/
struct.field.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
package dstruct
import (
"fmt"
"reflect"
"strconv"
)
type StructField struct {
name string
tag reflect.StructTag
value reflect.Value
dstructType reflect.Type
typeHash string
pkgPath string
anonymous bool
jsonName string
qualifiedName string
ptrDepth int
ptrKind reflect.Kind
structIndex *int
numberOfSubFields *int
}
func (f StructField) IsFieldDereferencable() bool {
if f.value.Kind() == reflect.Pointer {
return f.ptrKind != reflect.Invalid
}
return true
}
// GetFieldName returns the name of the field.
func (f StructField) GetFieldName() string {
return f.name
}
// GetValue returns the value of the field.
func (f StructField) GetValue() any {
return f.value.Interface()
}
// GetDstructType returns the Dstruct type of the field which can be different from the Go type (reflect.TypeOf(val))
func (f StructField) GetDstructType() reflect.Type {
return f.dstructType
}
// GetTypeHash returns the hash of the type of the field.
func (f StructField) GetTypeHash() string {
return f.typeHash
}
// GetQualifiedName returns the fully qualified name of the field.
func (f StructField) GetQualifiedName() string {
return f.qualifiedName
}
// GetTag returns the tag of the field.
func (f StructField) GetTag(t string) string {
return f.tag.Get(t)
}
// GetJsonName returns the json name of the field.
func (f StructField) GetJsonName() string {
return f.jsonName
}
// TODO: shoudl this even be here as it is not used ?
func (f StructField) GetEnumValues() (enumValues map[string]int) {
enum, ok := f.tag.Lookup("enum")
if ok {
numEnums, err := strconv.Atoi(enum)
if err != nil {
return
}
enumValues = make(map[string]int)
for i := 1; i <= numEnums; i++ {
if key := f.tag.Get(fmt.Sprintf("enum_%d", i)); key != "" {
enumValues[key] = i
}
}
}
return
}