mirror of
https://github.com/golang/go
synced 2024-11-19 02:04:42 -07:00
6050b95026
This change replaces the strings that were previously used for both the ID and package path fields. This is a precursor to the change that will replace the uses of package path with package ID. Change-Id: I353e98aedede9b85c7a183fdd49048ff43b1e26d Reviewed-on: https://go-review.googlesource.com/c/tools/+/181757 Run-TryBot: Rebecca Stambler <rstambler@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Ian Cottrell <iancottrell@google.com>
171 lines
4.0 KiB
Go
171 lines
4.0 KiB
Go
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
|
|
|
|
ast *astFile
|
|
|
|
pkg *pkg
|
|
meta *metadata
|
|
imports []*ast.ImportSpec
|
|
}
|
|
|
|
type astFile struct {
|
|
file *ast.File
|
|
err error // parse errors
|
|
isTrimmed bool
|
|
}
|
|
|
|
func (f *goFile) GetToken(ctx context.Context) *token.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
|
|
}
|
|
}
|
|
if unexpectedAST(ctx, f) {
|
|
return nil
|
|
}
|
|
return f.token
|
|
}
|
|
|
|
func (f *goFile) GetAnyAST(ctx context.Context) *ast.File {
|
|
f.view.mu.Lock()
|
|
defer f.view.mu.Unlock()
|
|
|
|
if f.isDirty() {
|
|
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
|
|
}
|
|
}
|
|
if f.ast == nil {
|
|
return nil
|
|
}
|
|
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
|
|
}
|
|
}
|
|
if unexpectedAST(ctx, f) {
|
|
return nil
|
|
}
|
|
return f.ast.file
|
|
}
|
|
|
|
func (f *goFile) GetPackage(ctx context.Context) source.Package {
|
|
f.view.mu.Lock()
|
|
defer f.view.mu.Unlock()
|
|
|
|
if f.isDirty() || f.astIsTrimmed() {
|
|
if errs, err := f.view.loadParseTypecheck(ctx, f); err != nil {
|
|
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 {
|
|
return &pkg{errors: errs}
|
|
}
|
|
return nil
|
|
}
|
|
}
|
|
if unexpectedAST(ctx, f) {
|
|
return nil
|
|
}
|
|
return f.pkg
|
|
}
|
|
|
|
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
|
|
}
|
|
|
|
// 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 {
|
|
return f.meta == nil || len(f.meta.missingImports) > 0 || f.token == nil || f.ast == nil || f.pkg == nil
|
|
}
|
|
|
|
func (f *goFile) astIsTrimmed() bool {
|
|
return f.ast != nil && f.ast.isTrimmed
|
|
}
|
|
|
|
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()
|
|
|
|
seen := make(map[packagePath]struct{}) // visited packages
|
|
results := make(map[*goFile]struct{})
|
|
f.view.reverseDeps(ctx, seen, results, packagePath(pkg.PkgPath()))
|
|
|
|
var files []source.GoFile
|
|
for rd := range results {
|
|
if rd == nil {
|
|
continue
|
|
}
|
|
// Don't return any of the active files in this package.
|
|
if rd.pkg != nil && rd.pkg == pkg {
|
|
continue
|
|
}
|
|
files = append(files, rd)
|
|
}
|
|
return files
|
|
}
|
|
|
|
func (v *view) reverseDeps(ctx context.Context, seen map[packagePath]struct{}, results map[*goFile]struct{}, pkgPath packagePath) {
|
|
if _, ok := seen[pkgPath]; ok {
|
|
return
|
|
}
|
|
seen[pkgPath] = struct{}{}
|
|
m, ok := v.mcache.packages[pkgPath]
|
|
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{}{}
|
|
}
|
|
}
|
|
for parentPkgPath := range m.parents {
|
|
v.reverseDeps(ctx, seen, results, parentPkgPath)
|
|
}
|
|
}
|