2019-06-21 15:00:02 -06:00
|
|
|
// Copyright 2019 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2019-05-23 13:03:11 -06:00
|
|
|
package cache
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"go/ast"
|
|
|
|
"go/token"
|
|
|
|
|
|
|
|
"golang.org/x/tools/internal/lsp/source"
|
|
|
|
"golang.org/x/tools/internal/span"
|
|
|
|
)
|
|
|
|
|
|
|
|
// goFile holds all of the information we know about a Go file.
|
|
|
|
type goFile struct {
|
|
|
|
fileBase
|
|
|
|
|
2019-05-23 11:51:56 -06:00
|
|
|
ast *astFile
|
|
|
|
|
2019-06-24 14:34:21 -06:00
|
|
|
// missingImports is the set of unresolved imports for this package.
|
|
|
|
// It contains any packages with `go list` errors.
|
|
|
|
missingImports map[packagePath]struct{}
|
|
|
|
|
|
|
|
// justOpened indicates that the file has just been opened.
|
|
|
|
// We re-run go/packages.Load on just opened files to make sure
|
|
|
|
// that we know about all of their packages.
|
|
|
|
justOpened bool
|
|
|
|
|
|
|
|
pkgs map[packageID]*pkg
|
|
|
|
meta map[packageID]*metadata
|
2019-05-23 13:03:11 -06:00
|
|
|
imports []*ast.ImportSpec
|
|
|
|
}
|
|
|
|
|
2019-05-23 11:51:56 -06:00
|
|
|
type astFile struct {
|
2019-06-21 15:00:02 -06:00
|
|
|
uri span.URI
|
2019-05-23 11:51:56 -06:00
|
|
|
file *ast.File
|
2019-06-07 19:57:42 -06:00
|
|
|
err error // parse errors
|
2019-06-24 14:34:21 -06:00
|
|
|
ph source.ParseGoHandle
|
2019-05-23 11:51:56 -06:00
|
|
|
isTrimmed bool
|
|
|
|
}
|
|
|
|
|
2019-05-23 13:03:11 -06:00
|
|
|
func (f *goFile) GetToken(ctx context.Context) *token.File {
|
|
|
|
f.view.mu.Lock()
|
|
|
|
defer f.view.mu.Unlock()
|
2019-05-23 11:51:56 -06:00
|
|
|
|
2019-06-05 15:44:09 -06:00
|
|
|
if f.isDirty() || f.astIsTrimmed() {
|
2019-05-29 12:59:35 -06:00
|
|
|
if _, err := f.view.loadParseTypecheck(ctx, f); err != nil {
|
2019-05-23 13:03:11 -06:00
|
|
|
f.View().Session().Logger().Errorf(ctx, "unable to check package for %s: %v", f.URI(), err)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
2019-06-05 15:44:09 -06:00
|
|
|
if unexpectedAST(ctx, f) {
|
|
|
|
return nil
|
|
|
|
}
|
2019-05-23 13:03:11 -06:00
|
|
|
return f.token
|
|
|
|
}
|
|
|
|
|
2019-06-05 15:44:09 -06:00
|
|
|
func (f *goFile) GetAnyAST(ctx context.Context) *ast.File {
|
2019-05-23 13:03:11 -06:00
|
|
|
f.view.mu.Lock()
|
|
|
|
defer f.view.mu.Unlock()
|
|
|
|
|
2019-05-29 12:59:35 -06:00
|
|
|
if f.isDirty() {
|
|
|
|
if _, err := f.view.loadParseTypecheck(ctx, f); err != nil {
|
2019-05-23 13:03:11 -06:00
|
|
|
f.View().Session().Logger().Errorf(ctx, "unable to check package for %s: %v", f.URI(), err)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
2019-06-05 15:44:09 -06:00
|
|
|
if f.ast == nil {
|
|
|
|
return nil
|
|
|
|
}
|
2019-05-23 11:51:56 -06:00
|
|
|
return f.ast.file
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *goFile) GetAST(ctx context.Context) *ast.File {
|
|
|
|
f.view.mu.Lock()
|
|
|
|
defer f.view.mu.Unlock()
|
|
|
|
|
|
|
|
if f.isDirty() || f.astIsTrimmed() {
|
|
|
|
if _, err := f.view.loadParseTypecheck(ctx, f); err != nil {
|
|
|
|
f.View().Session().Logger().Errorf(ctx, "unable to check package for %s: %v", f.URI(), err)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
2019-06-05 15:44:09 -06:00
|
|
|
if unexpectedAST(ctx, f) {
|
|
|
|
return nil
|
|
|
|
}
|
2019-05-23 11:51:56 -06:00
|
|
|
return f.ast.file
|
2019-05-23 13:03:11 -06:00
|
|
|
}
|
|
|
|
|
2019-06-24 14:34:21 -06:00
|
|
|
func (f *goFile) GetPackages(ctx context.Context) []source.Package {
|
2019-05-23 13:03:11 -06:00
|
|
|
f.view.mu.Lock()
|
|
|
|
defer f.view.mu.Unlock()
|
|
|
|
|
2019-05-23 11:51:56 -06:00
|
|
|
if f.isDirty() || f.astIsTrimmed() {
|
2019-05-29 12:59:35 -06:00
|
|
|
if errs, err := f.view.loadParseTypecheck(ctx, f); err != nil {
|
2019-05-23 13:03:11 -06:00
|
|
|
f.View().Session().Logger().Errorf(ctx, "unable to check package for %s: %v", f.URI(), err)
|
|
|
|
|
|
|
|
// Create diagnostics for errors if we are able to.
|
|
|
|
if len(errs) > 0 {
|
2019-06-24 14:34:21 -06:00
|
|
|
return []source.Package{&pkg{errors: errs}}
|
2019-05-23 13:03:11 -06:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
2019-06-05 15:44:09 -06:00
|
|
|
if unexpectedAST(ctx, f) {
|
|
|
|
return nil
|
|
|
|
}
|
2019-06-24 14:34:21 -06:00
|
|
|
var pkgs []source.Package
|
|
|
|
for _, pkg := range f.pkgs {
|
|
|
|
pkgs = append(pkgs, pkg)
|
|
|
|
}
|
|
|
|
return pkgs
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *goFile) GetPackage(ctx context.Context) source.Package {
|
|
|
|
pkgs := f.GetPackages(ctx)
|
|
|
|
var result source.Package
|
|
|
|
|
|
|
|
// Pick the "narrowest" package, i.e. the package with the fewest number of files.
|
|
|
|
// This solves the problem of test variants,
|
|
|
|
// as the test will have more files than the non-test package.
|
|
|
|
for _, pkg := range pkgs {
|
|
|
|
if result == nil || len(pkg.GetFilenames()) < len(result.GetFilenames()) {
|
|
|
|
result = pkg
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result
|
2019-05-23 13:03:11 -06:00
|
|
|
}
|
|
|
|
|
2019-06-05 15:44:09 -06:00
|
|
|
func unexpectedAST(ctx context.Context, f *goFile) bool {
|
|
|
|
// If the AST comes back nil, something has gone wrong.
|
|
|
|
if f.ast == nil {
|
|
|
|
f.View().Session().Logger().Errorf(ctx, "expected full AST for %s, returned nil", f.URI())
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
// If the AST comes back trimmed, something has gone wrong.
|
|
|
|
if f.astIsTrimmed() {
|
|
|
|
f.View().Session().Logger().Errorf(ctx, "expected full AST for %s, returned trimmed", f.URI())
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2019-05-29 12:59:35 -06:00
|
|
|
// isDirty is true if the file needs to be type-checked.
|
|
|
|
// It assumes that the file's view's mutex is held by the caller.
|
|
|
|
func (f *goFile) isDirty() bool {
|
2019-06-24 14:34:21 -06:00
|
|
|
// If the the file has just been opened,
|
|
|
|
// it may be part of more packages than we are aware of.
|
|
|
|
//
|
|
|
|
// Note: This must be the first case, otherwise we may not reset the value of f.justOpened.
|
|
|
|
if f.justOpened {
|
|
|
|
f.meta = make(map[packageID]*metadata)
|
|
|
|
f.pkgs = make(map[packageID]*pkg)
|
|
|
|
f.justOpened = false
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
if len(f.meta) == 0 || len(f.pkgs) == 0 {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
if len(f.missingImports) > 0 {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
return f.token == nil || f.ast == nil
|
2019-05-29 12:59:35 -06:00
|
|
|
}
|
|
|
|
|
2019-05-23 11:51:56 -06:00
|
|
|
func (f *goFile) astIsTrimmed() bool {
|
|
|
|
return f.ast != nil && f.ast.isTrimmed
|
|
|
|
}
|
|
|
|
|
2019-05-23 13:03:11 -06:00
|
|
|
func (f *goFile) GetActiveReverseDeps(ctx context.Context) []source.GoFile {
|
|
|
|
pkg := f.GetPackage(ctx)
|
|
|
|
if pkg == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
f.view.mu.Lock()
|
|
|
|
defer f.view.mu.Unlock()
|
|
|
|
|
|
|
|
f.view.mcache.mu.Lock()
|
|
|
|
defer f.view.mcache.mu.Unlock()
|
|
|
|
|
2019-06-24 14:34:21 -06:00
|
|
|
id := packageID(pkg.ID())
|
|
|
|
|
2019-06-11 16:06:27 -06:00
|
|
|
seen := make(map[packageID]struct{}) // visited packages
|
2019-05-23 13:03:11 -06:00
|
|
|
results := make(map[*goFile]struct{})
|
2019-06-24 14:34:21 -06:00
|
|
|
f.view.reverseDeps(ctx, seen, results, id)
|
2019-05-23 13:03:11 -06:00
|
|
|
|
|
|
|
var files []source.GoFile
|
|
|
|
for rd := range results {
|
|
|
|
if rd == nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
// Don't return any of the active files in this package.
|
2019-06-24 14:34:21 -06:00
|
|
|
if _, ok := rd.pkgs[id]; ok {
|
2019-05-23 13:03:11 -06:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
files = append(files, rd)
|
|
|
|
}
|
|
|
|
return files
|
|
|
|
}
|
|
|
|
|
2019-06-11 16:06:27 -06:00
|
|
|
func (v *view) reverseDeps(ctx context.Context, seen map[packageID]struct{}, results map[*goFile]struct{}, id packageID) {
|
|
|
|
if _, ok := seen[id]; ok {
|
2019-05-23 13:03:11 -06:00
|
|
|
return
|
|
|
|
}
|
2019-06-11 16:06:27 -06:00
|
|
|
seen[id] = struct{}{}
|
|
|
|
m, ok := v.mcache.packages[id]
|
2019-05-23 13:03:11 -06:00
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
for _, filename := range m.files {
|
|
|
|
uri := span.FileURI(filename)
|
|
|
|
if f, err := v.getFile(uri); err == nil && v.session.IsOpen(uri) {
|
|
|
|
results[f.(*goFile)] = struct{}{}
|
|
|
|
}
|
|
|
|
}
|
2019-06-11 16:06:27 -06:00
|
|
|
for parentID := range m.parents {
|
|
|
|
v.reverseDeps(ctx, seen, results, parentID)
|
2019-05-23 13:03:11 -06:00
|
|
|
}
|
|
|
|
}
|