This repository was archived by the owner on Nov 5, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathprogram.go
206 lines (175 loc) · 4.28 KB
/
program.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
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
package program
import (
"errors"
"go/ast"
"go/parser"
"github.com/fatih/astrewrite"
"golang.org/x/tools/go/loader"
)
type Program struct {
*loader.Program
}
// var (
// ErrPkgNotFound = errors.New("pkg not found")
// ErrStructNotFound = errors.New("struct not found")
// )
func NewProgram(pkgs []string) (*Program, error) {
conf := loader.Config{}
conf.ParserMode |= parser.ParseComments
for _, pkg := range pkgs {
conf.Import(pkg)
}
prog, err := conf.Load()
if err != nil {
return nil, err
}
return &Program{
Program: prog,
}, nil
}
func (p *Program) GetPkgByName(name string) (*loader.PackageInfo, error) {
if name == "" {
return nil, errors.New("empty package name")
}
for _, pkg := range p.InitialPackages() {
if pkg.String() == name {
return pkg, nil
}
}
return nil, errors.New("pkg " + name + " not found")
}
func (p *Program) GetStructByName(pkgName, structName string) (typeSpec *ast.TypeSpec, err error) {
pi, err := p.GetPkgByName(pkgName)
if err != nil {
return nil, err
}
// var typeSpec *ast.TypeSpec
// var err error
for _, file := range pi.Files {
// astrewrite.Walk(file, func(node ast.Node) (ast.Node, bool) {
// ts, ok := node.(*ast.TypeSpec)
// if ok && ts.Name.Name == structName {
// typeSpec = ts
// return node, false
// }
// return node, true
// })
typeSpec, err = GetStructByName(file, structName)
if err == nil {
// return typeSpec, nil
return
}
}
// if typeSpec != nil {
// return typeSpec, nil
// }
// return nil, errors.New("type " + structName + " not found")
return
}
func (p *Program) GetStructByNameFromPkgs(pkgs []string, structName string) (*ast.TypeSpec, error) {
for _, pkg := range pkgs {
if typeSpec, err := p.GetStructByName(pkg, structName); err == nil {
return typeSpec, nil
}
}
return nil, errors.New("type " + structName + " not found")
}
// ExtractStruct extract struct spec to all type spec it depends (including itself)
func (p *Program) ExtractStruct(node ast.Node, sub *[]*ast.TypeSpec) {
// type BarReq struct {
// A int `json:"a"`
// B struct { // struct type
// SubA int `json:"sub_a"`
// } `json:"b"`
// C TC `json:"c"` // ident type
// D models.Group `json:"d"` // select expr
// E map[string]string `json:"e"` // map type
// G *TG // star expr
// }
switch t := node.(type) {
case *ast.TypeSpec:
if !p.containType(t.Name.Name, *sub) {
*sub = append(*sub, t)
p.ExtractStruct(t.Type, sub)
}
case *ast.StructType:
for _, field := range t.Fields.List {
p.ExtractStruct(field.Type, sub)
}
case *ast.StarExpr:
if ident, ok := t.X.(*ast.Ident); ok {
p.ExtractStruct(ident, sub)
}
case *ast.MapType:
p.ExtractStruct(t.Value, sub)
case *ast.Ident:
if t.Obj == nil {
return
}
typeSpec, ok := t.Obj.Decl.(*ast.TypeSpec)
if !ok {
return
}
if p.containType(typeSpec.Name.Name, *sub) {
return
}
*sub = append(*sub, typeSpec)
p.ExtractStruct(typeSpec.Type, sub)
}
}
func (p *Program) containType(name string, types []*ast.TypeSpec) bool {
for _, typ := range types {
if name == typ.Name.Name {
return true
}
}
return false
}
func (p *Program) GetFuncByName(pkgName, funcName string) (*ast.FuncDecl, error) {
pi, err := p.GetPkgByName(pkgName)
if err != nil {
return nil, err
}
var funcDecl *ast.FuncDecl
for _, file := range pi.Files {
astrewrite.Walk(file, func(node ast.Node) (ast.Node, bool) {
fd, ok := node.(*ast.FuncDecl)
if !ok {
return node, true
}
if fd.Name.Name == funcName {
funcDecl = fd
return node, false
}
return node, true
})
}
if funcDecl != nil {
return funcDecl, nil
}
return nil, errors.New("func " + funcName + " not found")
}
func (p *Program) GetValueByName(pkgName, valueName string) (*ast.ValueSpec, error) {
pi, err := p.GetPkgByName(pkgName)
if err != nil {
return nil, err
}
var valueSpec *ast.ValueSpec
for _, file := range pi.Files {
astrewrite.Walk(file, func(node ast.Node) (ast.Node, bool) {
spec, ok := node.(*ast.ValueSpec)
if !ok {
return node, true
}
if spec.Names[0].Name == valueName {
valueSpec = spec
return node, false
}
return node, true
})
}
if valueSpec != nil {
return valueSpec, nil
}
return nil, errors.New("value " + valueName + " not found")
}