This repository has been archived by the owner on Jul 7, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.go
391 lines (351 loc) · 8.83 KB
/
package.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
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
package humanize
import (
"fmt"
"go/ast"
"io/ioutil"
"os"
"path/filepath"
"runtime"
"strings"
"sync"
)
// pkg is list of files
type Package struct {
Files []*File
Path string
Name string
resolved bool
}
var (
packageCache = make(map[string]*Package)
lock = sync.RWMutex{}
vendor []string
)
func setCache(path string, p *Package) {
lock.Lock()
defer lock.Unlock()
packageCache[path] = p
}
func getCache(path string) *Package {
lock.RLock()
defer lock.RUnlock()
return packageCache[path]
}
// FindType return a base type interface base on the string name of the type
func (p Package) FindType(t string) (*TypeName, error) {
for i := range p.Files {
for j := range p.Files[i].Types {
if p.Files[i].Types[j].Name == t {
return p.Files[i].Types[j], nil
}
}
}
return nil, fmt.Errorf("type with name %s not found", t)
}
// FindVariable try to find a package level variable
func (p Package) FindVariable(t string) (*Variable, error) {
for i := range p.Files {
for j := range p.Files[i].Variables {
if p.Files[i].Variables[j].Name == t {
return p.Files[i].Variables[j], nil
}
}
}
return nil, fmt.Errorf("var with name %s not found", t)
}
// FindConstant try to find a package level variable
func (p Package) FindConstant(t string) (*Constant, error) {
for i := range p.Files {
for j := range p.Files[i].Constants {
if p.Files[i].Constants[j].Name == t {
return p.Files[i].Constants[j], nil
}
}
}
return nil, fmt.Errorf("const with name %s not found", t)
}
// FindFunction try to find a package level variable
func (p Package) FindFunction(t string) (*Function, error) {
for i := range p.Files {
for j := range p.Files[i].Functions {
if p.Files[i].Functions[j].Name == t {
return p.Files[i].Functions[j], nil
}
}
}
return nil, fmt.Errorf("func with name %s not found", t)
}
// FindImport try to find an import by its full import path
func (p Package) FindImport(t string) (*Import, error) {
if t == "" || t == "_" || t == "." {
return nil, fmt.Errorf("import with path _/. or empty is invalid")
}
for i := range p.Files {
for j := range p.Files[i].Imports {
if p.Files[i].Imports[j].Name == t || p.Files[i].Imports[j].Path == t {
return p.Files[i].Imports[j], nil
}
}
}
return nil, fmt.Errorf("import with name or path %s not found", t)
}
func translateToFullPath(path string) (string, error) {
root := runtime.GOROOT()
gopath := strings.Split(os.Getenv("GOPATH"), ":")
gopath = append([]string{root}, gopath...)
var (
test string
r os.FileInfo
err error
)
for i := range vendor {
test = filepath.Join(vendor[i], path)
r, err = os.Stat(test)
if err == nil && r.IsDir() {
return test, nil
}
}
for i := range gopath {
test = filepath.Join(gopath[i], "src", path)
r, err = os.Stat(test)
if err == nil && r.IsDir() {
return test, nil
}
}
return "", fmt.Errorf("%s is not found in GOROOT or GOPATH", path)
}
func checkTypeCast(p *Package, bi *Package, args []ast.Expr, name string) (Type, error) {
if len(args) != 1 {
return nil, fmt.Errorf("it can not be a typecast : %s", name)
}
t, err := bi.FindType(name)
if err == nil {
return t.Type, nil
}
// if the type is in this package, then simply pass an ident type
// not the actual type, since the actual type is the definition of
// the type
_, err = p.FindType(name)
if err == nil {
return &IdentType{Ident: name, srcBase: srcBase{pkg: p}}, nil
}
return nil, fmt.Errorf("can not find the call for %s", name)
}
func lateBind(p *Package) (res error) {
builtin, err := ParsePackage("builtin")
assertNil(err)
for f := range p.Files {
// Try to find variable with null type and change them to real type
thebigLoop:
for v := range p.Files[f].Variables {
if p.Files[f].Variables[v].caller != nil {
switch c := p.Files[f].Variables[v].caller.Fun.(type) {
case *ast.Ident:
name := nameFromIdent(c)
bl, err := builtin.FindFunction(name)
if err == nil {
p.Files[f].Variables[v].Type = bl.Type
} else {
var t Type
fn, err := p.FindFunction(name)
if err == nil {
if len(fn.Type.Results) <= p.Files[f].Variables[v].indx {
return fmt.Errorf("%d result is available but want the %d", len(fn.Type.Results), p.Files[f].Variables[v].indx)
}
t = fn.Type.Results[p.Files[f].Variables[v].indx].Type
} else {
t, err = checkTypeCast(p, builtin, p.Files[f].Variables[v].caller.Args, name)
if err != nil {
return err
}
}
p.Files[f].Variables[v].Type = t
}
case *ast.SelectorExpr:
var pkg string
switch c.X.(type) {
case *ast.Ident:
pkg = nameFromIdent(c.X.(*ast.Ident))
case *ast.CallExpr: // TODO : Don't know why, no time for check
continue thebigLoop
}
typ := nameFromIdent(c.Sel)
imprt, err := p.FindImport(pkg)
if err != nil {
// TODO : package currently is not capable of parsing build tags. so ignore this :/
continue thebigLoop
}
pkgDef, err := ParsePackage(imprt.Path)
if err != nil {
return err
}
var t Type
fn, err := pkgDef.FindFunction(typ)
if err == nil {
if len(fn.Type.Results) <= p.Files[f].Variables[v].indx {
return fmt.Errorf("%d result is available but want the %d", len(fn.Type.Results), p.Files[f].Variables[v].indx)
}
t = fn.Type.Results[p.Files[f].Variables[v].indx].Type
} else {
t, err = checkTypeCast(pkgDef, builtin, p.Files[f].Variables[v].caller.Args, typ)
if err != nil {
return err
}
}
foreignTyp := t
star := false
if sType, ok := foreignTyp.(*StarType); ok {
foreignTyp = sType.Target
star = true
}
switch ft := foreignTyp.(type) {
case *IdentType:
// this is a simple hack. if the type is begin with
// upper case, then its type on that package, else its a global type
name := ft.Ident
c := name[0]
if c >= 'A' && c <= 'Z' {
if star {
foreignTyp = &StarType{
ft.srcBase,
foreignTyp,
}
}
p.Files[f].Variables[v].Type = &SelectorType{
srcBase: srcBase{p, ""}, // TODO : source?
pkg: getImport(imprt.Name, p.Files[f]),
Type: foreignTyp,
}
} else {
if star {
foreignTyp = &StarType{
ft.srcBase,
foreignTyp,
}
}
p.Files[f].Variables[v].Type = foreignTyp
}
default:
// the type is foreign to that package too
p.Files[f].Variables[v].Type = ft
}
}
}
}
}
return nil
}
func findMethods(p *Package) {
if p.resolved {
return
}
p.resolved = true
for _, f := range p.Files {
for _, fn := range f.Functions {
if fn.Receiver != nil {
t := fn.Receiver.Type
var pointer bool
if t2, ok := t.(*StarType); ok {
t = t2.Target
pointer = true
}
nt, err := p.FindType(t.GetDefinition())
if err != nil {
continue
}
if pointer {
nt.StarMethods = append(nt.StarMethods, fn)
} else {
nt.Methods = append(nt.Methods, fn)
}
}
}
}
}
func getGoFileContent(path, folder string, f os.FileInfo) (string, error) {
if f.IsDir() {
if path != folder {
return "", filepath.SkipDir
} else {
return "", nil
}
}
if filepath.Ext(path) != ".go" {
return "", nil
}
// ignore test files (for now?)
_, filename := filepath.Split(path)
if len(filename) > 8 && filename[len(filename)-8:] == "_test.go" {
return "", nil
}
r, err := os.Open(path)
if err != nil {
return "", err
}
defer r.Close()
data, err := ioutil.ReadAll(r)
if err != nil {
return "", err
}
return string(data), nil
}
// ParsePackage is here for loading a single package and parse all files in it
func ParsePackage(path string) (*Package, error) {
if p := getCache(path); p != nil {
return p, nil
}
var p = &Package{}
p.Path = path
folder, err := translateToFullPath(path)
if err != nil {
return nil, err
}
gopath := strings.Split(os.Getenv("GOPATH"), ":")
tmp := folder
bigLoop:
for {
// this is not correct, I need to rewrite the entire package :/
vendor = append(vendor, filepath.Join(tmp, "vendor"))
for i := range gopath {
if gopath[i] == tmp {
break bigLoop
}
}
if tmp == "" || tmp == "/" {
break
}
tmp = filepath.Dir(tmp)
}
err = filepath.Walk(
folder,
func(path string, f os.FileInfo, err error) error {
data, err := getGoFileContent(path, folder, f)
if err != nil || data == "" {
return err
}
fl, err := ParseFile(string(data), p)
if err != nil {
return err
}
fl.FileName = path
p.Files = append(p.Files, fl)
p.Name = fl.PackageName
return nil
},
)
if err != nil {
return nil, err
}
setCache(path, p)
err = lateBind(p)
if err != nil {
return nil, err
}
findMethods(p)
return p, nil
}
func assertNil(e interface{}) {
if e != nil {
panic(e)
}
}