-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgo_func.go
179 lines (135 loc) · 2.82 KB
/
go_func.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
package gocoder
import (
"go/ast"
"go/token"
)
type GoFunc struct {
rootExpr *GoExpr
decl *ast.FuncDecl
callExprs []*ast.CallExpr
assignments map[string]*GoAssignStmt
goParams *GoFieldList
goResults *GoFieldList
}
func newGoFunc(rootExpr *GoExpr, decl *ast.FuncDecl) (gofunc *GoFunc) {
g := &GoFunc{
rootExpr: rootExpr,
decl: decl,
assignments: make(map[string]*GoAssignStmt),
}
g.load()
gofunc = g
return
}
func (p *GoFunc) Name() string {
return p.decl.Name.String()
}
func (p *GoFunc) Receiver() string {
if p.decl.Recv == nil {
return ""
}
if len(p.decl.Recv.List) == 0 {
return ""
}
nextExpr := p.decl.Recv.List[0].Type
nextCase:
switch vType := nextExpr.(type) {
case *ast.Ident:
{
return vType.Name
}
case *ast.StarExpr:
{
nextExpr = vType.X
goto nextCase
}
}
return ""
}
func (p *GoFunc) Print() error {
return ast.Print(p.rootExpr.astFileSet, p.decl)
}
func (p *GoFunc) Root() *GoExpr {
return p.rootExpr
}
func (p *GoFunc) Params() *GoFieldList {
return p.goParams
}
func (p *GoFunc) Results() *GoFieldList {
return p.goResults
}
func (p *GoFunc) FindCall(funcName string) (call *GoCall, exist bool) {
for i := 0; i < len(p.callExprs); i++ {
if isCallingFuncOf(p.callExprs[i], funcName) {
goCall := newGoCall(p.rootExpr, p.callExprs[i])
return goCall, true
}
}
return nil, false
}
func (p *GoFunc) FindAssigment(identName string) (assignStmt *GoAssignStmt, exist bool) {
assignStmt, exist = p.assignments[identName]
if exist {
return
}
ast.Inspect(p.decl, func(n ast.Node) bool {
if exist {
return false
}
switch node := n.(type) {
case *ast.AssignStmt:
{
if len(node.Lhs) == 0 {
return true
}
ident, ok := node.Lhs[0].(*ast.Ident)
if !ok {
return true
}
if identName != ident.Name {
return true
}
assignStmt = newGoAssignStmt(p.rootExpr, node)
exist = true
p.assignments[ident.Name] = assignStmt
return false
}
}
return true
})
return
}
func (p *GoFunc) GetReturnStmt() *GoReturnStmt {
var stmt *ast.ReturnStmt
ast.Inspect(p.decl, func(n ast.Node) bool {
switch node := n.(type) {
case *ast.ReturnStmt:
{
stmt = node
}
}
return true
})
if stmt != nil {
return newGoReturnStmt(p.rootExpr, stmt)
}
return nil
}
func (p *GoFunc) load() {
ast.Inspect(p.decl, func(n ast.Node) bool {
switch exprType := n.(type) {
case *ast.CallExpr:
{
p.callExprs = append(p.callExprs, exprType)
}
}
return true
})
p.goParams = newFieldList(p.rootExpr, p.decl.Type.Params)
p.goResults = newFieldList(p.rootExpr, p.decl.Type.Results)
}
func (p *GoFunc) goNode() {
}
func (p *GoFunc) Position() (token.Position, token.Position) {
return p.rootExpr.astFileSet.Position(p.decl.Pos()), p.rootExpr.astFileSet.Position(p.decl.End())
}