mirror of
https://github.com/golang/go
synced 2024-11-18 23:05:06 -07:00
ea99b82c7b
This change uses the missing imports detection to return diagnostics and warning messages to the user. Updates golang/go#34484 Change-Id: If7bb7e702b8bdbd7e1ad5e26f93acc50d16209b0 Reviewed-on: https://go-review.googlesource.com/c/tools/+/196985 Run-TryBot: Rebecca Stambler <rstambler@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Ian Cottrell <iancottrell@google.com>
103 lines
2.3 KiB
Go
103 lines
2.3 KiB
Go
// 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.
|
|
|
|
package cache
|
|
|
|
import (
|
|
"context"
|
|
"go/ast"
|
|
"sync"
|
|
|
|
"golang.org/x/tools/internal/lsp/source"
|
|
"golang.org/x/tools/internal/lsp/telemetry"
|
|
"golang.org/x/tools/internal/span"
|
|
errors "golang.org/x/xerrors"
|
|
)
|
|
|
|
// goFile holds all of the information we know about a Go file.
|
|
type goFile struct {
|
|
fileBase
|
|
|
|
// mu protects all mutable state of the Go file,
|
|
// which can be modified during type-checking.
|
|
mu sync.Mutex
|
|
|
|
imports []*ast.ImportSpec
|
|
}
|
|
|
|
type packageKey struct {
|
|
id packageID
|
|
mode source.ParseMode
|
|
}
|
|
|
|
func (f *goFile) CheckPackageHandles(ctx context.Context) (results []source.CheckPackageHandle, err error) {
|
|
ctx = telemetry.File.With(ctx, f.URI())
|
|
fh := f.Handle(ctx)
|
|
|
|
var dirty bool
|
|
meta, pkgs := f.view.getSnapshot(f.URI())
|
|
if len(meta) == 0 {
|
|
dirty = true
|
|
}
|
|
for _, m := range meta {
|
|
if len(m.missingDeps) != 0 {
|
|
dirty = true
|
|
}
|
|
}
|
|
for _, cph := range pkgs {
|
|
// If we're explicitly checking if a file needs to be type-checked,
|
|
// we need it to be fully parsed.
|
|
if cph.mode() != source.ParseFull {
|
|
continue
|
|
}
|
|
// Check if there is a fully-parsed package to which this file belongs.
|
|
for _, file := range cph.Files() {
|
|
if file.File().Identity() == fh.Identity() {
|
|
results = append(results, cph)
|
|
}
|
|
}
|
|
}
|
|
if dirty || len(results) == 0 {
|
|
cphs, err := f.view.loadParseTypecheck(ctx, f, fh)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if cphs == nil {
|
|
return results, nil
|
|
}
|
|
results = cphs
|
|
}
|
|
if len(results) == 0 {
|
|
return nil, errors.Errorf("no CheckPackageHandles for %s", f.URI())
|
|
}
|
|
return results, nil
|
|
}
|
|
|
|
func (v *view) GetActiveReverseDeps(ctx context.Context, uri span.URI) (results []source.CheckPackageHandle) {
|
|
var (
|
|
rdeps = v.reverseDependencies(ctx, uri)
|
|
files = v.openFiles(ctx, rdeps)
|
|
seen = make(map[span.URI]struct{})
|
|
)
|
|
for _, f := range files {
|
|
if _, ok := seen[f.URI()]; ok {
|
|
continue
|
|
}
|
|
gof, ok := f.(source.GoFile)
|
|
if !ok {
|
|
continue
|
|
}
|
|
cphs, err := gof.CheckPackageHandles(ctx)
|
|
if err != nil {
|
|
continue
|
|
}
|
|
cph := source.WidestCheckPackageHandle(cphs)
|
|
for _, ph := range cph.Files() {
|
|
seen[ph.File().Identity().URI] = struct{}{}
|
|
}
|
|
results = append(results, cph)
|
|
}
|
|
return results
|
|
}
|