-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindexer.go
264 lines (213 loc) · 4.77 KB
/
indexer.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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
package main
import (
"bytes"
"fmt"
"go/ast"
"go/parser"
"go/printer"
"go/token"
"os"
"path/filepath"
"strings"
)
type ElementKind int
const (
ekFunction ElementKind = iota
ekStruct
ekInterface
ekType
ekConst
ekVariable
)
func (ek ElementKind) String() string {
switch ek {
case ekFunction:
return "Function"
case ekStruct:
return "Struct"
case ekInterface:
return "Interface"
case ekType:
return "Type"
case ekConst:
return "Const"
case ekVariable:
return "Variable"
}
return ""
}
type Element struct {
Package string
FilePath string
Name, name string
Kind string
Source string
Doc string
recv string
}
func printNode(fset *token.FileSet, node interface{}) string {
var buf bytes.Buffer
printer.Fprint(&buf, fset, node)
return buf.String()
}
func printFieldList(fset *token.FileSet, fields *ast.FieldList) string {
r := "("
for _, f := range fields.List {
if len(r) > 1 {
r += ", "
}
r += printNode(fset, f.Type)
}
return r + ")"
}
func getFilePath(fset *token.FileSet, path string, pos token.Pos) string {
onDiskFile := fset.File(pos)
if onDiskFile != nil {
if rel, err := filepath.Rel(path, onDiskFile.Name()); err == nil {
return rel
} else {
return onDiskFile.Name()
}
}
return ""
}
func index(base string) ([]*Element, error) {
elements := make([]*Element, 0)
err := filepath.Walk(base, func(path string, info os.FileInfo, err error) error {
if err != nil {
return err
}
if info.IsDir() {
if strings.ToLower(info.Name()) == "testdata" {
return filepath.SkipDir
}
e, err := parse(path, base)
if err != nil {
fmt.Printf("Couldn't parse Go files in directory %s. %s\n\n", path, err)
return nil
}
elements = append(elements, e...)
}
return nil
})
if err != nil {
return nil, err
}
return elements, nil
}
type makeElement func() *Element
func parse(path, basePath string) ([]*Element, error) {
elements := make([]*Element, 0)
fset := token.NewFileSet()
filter := func(f os.FileInfo) bool {
return !f.IsDir() &&
strings.HasSuffix(f.Name(), ".go") &&
!strings.HasSuffix(f.Name(), "_test.go")
}
pkgs, err := parser.ParseDir(fset, path, filter, parser.ParseComments)
if err != nil {
return nil, err
}
for _, pkg := range pkgs {
ast.PackageExports(pkg)
for _, file := range pkg.Files {
p := getFilePath(fset, basePath, file.Package)
mE := func() *Element {
return &Element{
Package: pkg.Name,
FilePath: p,
}
}
for _, decl := range file.Decls {
switch t := decl.(type) {
case *ast.FuncDecl:
e := mE()
indexFunc(e, fset, t)
elements = append(elements, e)
case *ast.GenDecl:
es := indexGen(mE, fset, t)
elements = append(elements, es...)
}
}
}
}
return elements, nil
}
func indexFunc(e *Element, fset *token.FileSet, t *ast.FuncDecl) {
e.Kind = ekFunction.String()
e.Source = printNode(fset, t.Type)
if t.Body != nil {
e.Source += " " + printNode(fset, t.Body)
}
if t.Doc != nil {
e.Doc = t.Doc.Text()
}
e.Name = t.Name.Name
e.name = strings.ToLower(e.Name)
if t.Recv != nil {
e.Name += " " + printFieldList(fset, t.Recv)
expr := t.Recv.List[0].Type
switch exprT := expr.(type) {
case *ast.Ident:
e.recv = strings.ToLower(exprT.Name)
case *ast.StarExpr:
ident := exprT.X.(*ast.Ident)
e.recv = strings.ToLower(ident.Name)
}
}
}
func indexGen(mE makeElement, fset *token.FileSet, t *ast.GenDecl) []*Element {
es := make([]*Element, 0)
switch t.Tok {
case token.TYPE:
for _, spec := range t.Specs {
tSpec := spec.(*ast.TypeSpec)
e := mE()
indexType(e, fset, t, tSpec)
es = append(es, e)
}
case token.CONST, token.VAR:
for _, spec := range t.Specs {
vSpec := spec.(*ast.ValueSpec)
e := mE()
indexConstOrVar(e, fset, t, vSpec)
es = append(es, e)
}
}
return es
}
func indexType(e *Element, fset *token.FileSet, d *ast.GenDecl, t *ast.TypeSpec) {
if t.Doc != nil {
e.Doc = t.Doc.Text()
} else if d.Doc != nil {
e.Doc = d.Doc.Text()
}
// need to inspect t.Type to determine whether its a struct,interface,etc...
e.Source = printNode(fset, t)
e.Name = t.Name.Name
e.name = strings.ToLower(e.Name)
switch t.Type.(type) {
case *ast.InterfaceType:
e.Kind = ekInterface.String()
case *ast.StructType:
e.Kind = ekStruct.String()
default:
e.Kind = ekType.String()
}
}
func indexConstOrVar(e *Element, fset *token.FileSet, d *ast.GenDecl, v *ast.ValueSpec) {
if v.Doc != nil {
e.Doc = v.Doc.Text()
} else if d.Doc != nil {
e.Doc = d.Doc.Text()
}
e.Source = printNode(fset, v)
e.Name = v.Names[0].Name // AFAIK this is always len == 1 for consts
e.name = strings.ToLower(e.Name)
switch d.Tok {
case token.CONST:
e.Kind = ekConst.String()
case token.VAR:
e.Kind = ekVariable.String()
}
}