forked from mailru/easyjson
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstructs.go
139 lines (121 loc) · 3.83 KB
/
structs.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
package gen
import (
"fmt"
"reflect"
"strconv"
"strings"
)
const PartialValidKey = "PartialValid"
const PartialSetKey = "PartialSet"
func (g *PartialGenerator) getStructName(t reflect.Type) string {
return g.structName("Partial", t)
}
func (g *PartialGenerator) getBoolStructName(t reflect.Type) string {
return g.structName("PartialBool", t)
}
func (g *PartialGenerator) genPartialStruct(t reflect.Type) error {
switch t.Kind() {
case reflect.Struct:
return g.genStructPartialStruct(t)
default:
return fmt.Errorf("cannot generate partial struct for %v, it is not struct type", t)
}
}
func (g *PartialGenerator) genStructPartialStruct(t reflect.Type) error {
if t.Kind() != reflect.Struct {
return fmt.Errorf("cannot generate encoder/decoder for %v, not a struct type", t)
}
sname := g.getStructName(t)
bname := g.getBoolStructName(t)
fmt.Fprintln(g.out, "type "+sname+" struct {")
for i := 0; i < t.NumField(); i++ {
g.genFieldPartialStruct(t.Field(i), 1)
}
fmt.Fprintln(g.out, " "+PartialValidKey+" "+bname+"`bson:\"-\" json:\"-\"`")
fmt.Fprintln(g.out, " "+PartialSetKey+" "+bname+"`bson:\"-\" json:\"-\"`")
fmt.Fprintln(g.out, "}")
fmt.Fprintln(g.out, "")
return nil
}
func (g *PartialGenerator) genFieldPartialStruct(f reflect.StructField, indent int) {
ws := strings.Repeat(" ", indent)
fmt.Fprint(g.out, ws+f.Name+" ")
if !f.Anonymous {
g.genTypePartial(f.Type, indent+1)
}
if len(string(f.Tag)) > 0 {
fmt.Fprintln(g.out, " `"+string(f.Tag)+"`")
} else {
fmt.Fprintln(g.out, "")
}
}
// If the type/it's elem is not anonymous it will return the type name and true
// Else it will return an empty string and false
func (g *PartialGenerator) genTypePartial(t reflect.Type, indent int) {
ws := strings.Repeat(" ", indent)
// non-defined and pre-defined types and anonymous types
if t.PkgPath() == "" {
// pre-defined types
if t.Name() != "" {
fmt.Fprint(g.out, t.Kind())
}
// composite/non-defined types
switch t.Kind() {
case reflect.Ptr:
fmt.Fprint(g.out, "*")
g.genTypePartial(t.Elem(), indent+1)
case reflect.Slice:
fmt.Fprint(g.out, " []")
g.genTypePartial(t.Elem(), indent+1)
case reflect.Array:
fmt.Fprint(g.out, " ["+strconv.Itoa(t.Len())+"]")
g.genTypePartial(t.Elem(), indent+1)
case reflect.Map:
fmt.Fprint(g.out, " map[")
g.genTypePartial(t.Key(), indent+1)
fmt.Fprint(g.out, "]")
g.genTypePartial(t.Elem(), indent+1)
case reflect.Struct:
fmt.Fprint(g.out, " struct {")
for i := 0; i < t.NumField(); i++ {
g.genFieldPartialStruct(t.Field(i), indent+1)
}
fmt.Fprintln(g.out, ws+" "+PartialValidKey+" struct {")
for i := 0; i < t.NumField(); i++ {
fmt.Fprintln(g.out, ws+" "+t.Field(i).Name+" bool")
}
fmt.Fprintln(g.out, ws+" } `bson:\"-\" json:\"-\"`")
fmt.Fprintln(g.out, ws+" "+PartialSetKey+" struct {")
for i := 0; i < t.NumField(); i++ {
fmt.Fprintln(g.out, ws+" "+t.Field(i).Name+" bool")
}
fmt.Fprintln(g.out, ws+" } `bson:\"-\" json:\"-\"`")
fmt.Fprint(g.out, ws+"}")
}
} else if t.PkgPath() == g.pkgPath {
fmt.Fprint(g.out, g.getStructName(t))
} else {
fmt.Fprint(g.out, g.pkgAlias(t.PkgPath())+"."+t.Name())
}
}
func (g *PartialGenerator) genPartialBoolStruct(t reflect.Type) error {
switch t.Kind() {
case reflect.Struct:
return g.genStructPartialBoolStruct(t)
default:
return fmt.Errorf("cannot generate partial bool struct for %v, it is not struct type", t)
}
}
func (g *PartialGenerator) genStructPartialBoolStruct(t reflect.Type) error {
if t.Kind() != reflect.Struct {
return fmt.Errorf("cannot generate encoder/decoder for %v, not a struct type", t)
}
bname := g.getBoolStructName(t)
fmt.Fprintln(g.out, "type "+bname+" struct {")
for i := 0; i < t.NumField(); i++ {
fmt.Fprintln(g.out, " "+t.Field(i).Name+" bool")
}
fmt.Fprintln(g.out, "}")
fmt.Fprintln(g.out, "")
return nil
}