mirror of
https://github.com/golang/go
synced 2024-11-19 02:04:42 -07:00
596a85b56b
This updates overlays immeditely, and uses the handle identity change to correctly update the content on demand. Fixes golang/go#32348 Change-Id: I3125a6350cac358b7c0f7dc11f2bd11ae1f41031 Reviewed-on: https://go-review.googlesource.com/c/tools/+/179922 Run-TryBot: Ian Cottrell <iancottrell@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Rebecca Stambler <rstambler@golang.org>
144 lines
3.3 KiB
Go
144 lines
3.3 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
|
|
isTrimmed bool
|
|
}
|
|
|
|
func (f *goFile) GetToken(ctx context.Context) *token.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
|
|
}
|
|
}
|
|
return f.token
|
|
}
|
|
|
|
func (f *goFile) GetTrimmedAST(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
|
|
}
|
|
}
|
|
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
|
|
}
|
|
}
|
|
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
|
|
}
|
|
}
|
|
return f.pkg
|
|
}
|
|
|
|
// 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 || f.imports == nil || 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[string]struct{}) // visited packages
|
|
results := make(map[*goFile]struct{})
|
|
f.view.reverseDeps(ctx, seen, results, 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[string]struct{}, results map[*goFile]struct{}, pkgPath string) {
|
|
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)
|
|
}
|
|
}
|