mirror of
https://github.com/golang/go
synced 2024-11-19 01:04:40 -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>
225 lines
5.9 KiB
Go
225 lines
5.9 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"
|
|
"fmt"
|
|
"go/ast"
|
|
"go/scanner"
|
|
"go/token"
|
|
"go/types"
|
|
|
|
"golang.org/x/tools/go/analysis"
|
|
"golang.org/x/tools/go/packages"
|
|
"golang.org/x/tools/internal/span"
|
|
)
|
|
|
|
type importer struct {
|
|
view *view
|
|
|
|
// seen maintains the set of previously imported packages.
|
|
// If we have seen a package that is already in this map, we have a circular import.
|
|
seen map[packagePath]struct{}
|
|
|
|
// topLevelPkgID is the ID of the package from which type-checking began.
|
|
topLevelPkgID packageID
|
|
|
|
ctx context.Context
|
|
fset *token.FileSet
|
|
}
|
|
|
|
func (imp *importer) Import(pkgPath string) (*types.Package, error) {
|
|
pkg, err := imp.getPkg(packagePath(pkgPath))
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return pkg.types, nil
|
|
}
|
|
|
|
func (imp *importer) getPkg(pkgPath packagePath) (*pkg, error) {
|
|
if _, ok := imp.seen[pkgPath]; ok {
|
|
return nil, fmt.Errorf("circular import detected")
|
|
}
|
|
imp.view.pcache.mu.Lock()
|
|
e, ok := imp.view.pcache.packages[pkgPath]
|
|
|
|
if ok {
|
|
// cache hit
|
|
imp.view.pcache.mu.Unlock()
|
|
// wait for entry to become ready
|
|
<-e.ready
|
|
} else {
|
|
// cache miss
|
|
e = &entry{ready: make(chan struct{})}
|
|
imp.view.pcache.packages[pkgPath] = e
|
|
imp.view.pcache.mu.Unlock()
|
|
|
|
// This goroutine becomes responsible for populating
|
|
// the entry and broadcasting its readiness.
|
|
e.pkg, e.err = imp.typeCheck(pkgPath)
|
|
close(e.ready)
|
|
}
|
|
|
|
if e.err != nil {
|
|
// If the import had been previously canceled, and that error cached, try again.
|
|
if e.err == context.Canceled && imp.ctx.Err() == nil {
|
|
imp.view.pcache.mu.Lock()
|
|
// Clear out canceled cache entry if it is still there.
|
|
if imp.view.pcache.packages[pkgPath] == e {
|
|
delete(imp.view.pcache.packages, pkgPath)
|
|
}
|
|
imp.view.pcache.mu.Unlock()
|
|
return imp.getPkg(pkgPath)
|
|
}
|
|
return nil, e.err
|
|
}
|
|
|
|
return e.pkg, nil
|
|
}
|
|
|
|
func (imp *importer) typeCheck(pkgPath packagePath) (*pkg, error) {
|
|
meta, ok := imp.view.mcache.packages[pkgPath]
|
|
if !ok {
|
|
return nil, fmt.Errorf("no metadata for %v", pkgPath)
|
|
}
|
|
pkg := &pkg{
|
|
id: meta.id,
|
|
pkgPath: meta.pkgPath,
|
|
files: meta.files,
|
|
imports: make(map[packagePath]*pkg),
|
|
typesSizes: meta.typesSizes,
|
|
typesInfo: &types.Info{
|
|
Types: make(map[ast.Expr]types.TypeAndValue),
|
|
Defs: make(map[*ast.Ident]types.Object),
|
|
Uses: make(map[*ast.Ident]types.Object),
|
|
Implicits: make(map[ast.Node]types.Object),
|
|
Selections: make(map[*ast.SelectorExpr]*types.Selection),
|
|
Scopes: make(map[ast.Node]*types.Scope),
|
|
},
|
|
analyses: make(map[*analysis.Analyzer]*analysisEntry),
|
|
}
|
|
// Ignore function bodies for any dependency packages.
|
|
ignoreFuncBodies := imp.topLevelPkgID != pkg.id
|
|
files, parseErrs, err := imp.parseFiles(meta.files, ignoreFuncBodies)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
for _, err := range parseErrs {
|
|
imp.view.appendPkgError(pkg, err)
|
|
}
|
|
|
|
// Use the default type information for the unsafe package.
|
|
if meta.pkgPath == "unsafe" {
|
|
pkg.types = types.Unsafe
|
|
} else if len(files) == 0 { // not the unsafe package, no parsed files
|
|
return nil, fmt.Errorf("no parsed files for package %s", pkg.pkgPath)
|
|
} else {
|
|
pkg.types = types.NewPackage(string(meta.pkgPath), meta.name)
|
|
}
|
|
|
|
pkg.syntax = files
|
|
|
|
// Handle circular imports by copying previously seen imports.
|
|
seen := make(map[packagePath]struct{})
|
|
for k, v := range imp.seen {
|
|
seen[k] = v
|
|
}
|
|
seen[pkgPath] = struct{}{}
|
|
|
|
cfg := &types.Config{
|
|
Error: func(err error) {
|
|
imp.view.appendPkgError(pkg, err)
|
|
},
|
|
IgnoreFuncBodies: ignoreFuncBodies,
|
|
Importer: &importer{
|
|
view: imp.view,
|
|
ctx: imp.ctx,
|
|
fset: imp.fset,
|
|
topLevelPkgID: imp.topLevelPkgID,
|
|
seen: seen,
|
|
},
|
|
}
|
|
check := types.NewChecker(cfg, imp.fset, pkg.types, pkg.typesInfo)
|
|
check.Files(pkg.GetSyntax())
|
|
|
|
// Add every file in this package to our cache.
|
|
imp.cachePackage(imp.ctx, pkg, meta)
|
|
|
|
return pkg, nil
|
|
}
|
|
|
|
func (imp *importer) cachePackage(ctx context.Context, pkg *pkg, meta *metadata) {
|
|
for _, fAST := range pkg.syntax {
|
|
// TODO: If a file is in multiple packages, which package do we store?
|
|
if !fAST.file.Pos().IsValid() {
|
|
imp.view.Session().Logger().Errorf(ctx, "invalid position for file %v", fAST.file.Name)
|
|
continue
|
|
}
|
|
tok := imp.view.Session().Cache().FileSet().File(fAST.file.Pos())
|
|
if tok == nil {
|
|
imp.view.Session().Logger().Errorf(ctx, "no token.File for %v", fAST.file.Name)
|
|
continue
|
|
}
|
|
fURI := span.FileURI(tok.Name())
|
|
f, err := imp.view.getFile(fURI)
|
|
if err != nil {
|
|
imp.view.Session().Logger().Errorf(ctx, "no file: %v", err)
|
|
continue
|
|
}
|
|
gof, ok := f.(*goFile)
|
|
if !ok {
|
|
imp.view.Session().Logger().Errorf(ctx, "%v is not a Go file", f.URI())
|
|
continue
|
|
}
|
|
gof.token = tok
|
|
gof.ast = fAST
|
|
gof.imports = fAST.file.Imports
|
|
gof.pkg = pkg
|
|
}
|
|
|
|
// Set imports of package to correspond to cached packages.
|
|
// We lock the package cache, but we shouldn't get any inconsistencies
|
|
// because we are still holding the lock on the view.
|
|
for importPath := range meta.children {
|
|
importPkg, err := imp.getPkg(importPath)
|
|
if err != nil {
|
|
continue
|
|
}
|
|
pkg.imports[importPath] = importPkg
|
|
}
|
|
}
|
|
|
|
func (v *view) appendPkgError(pkg *pkg, err error) {
|
|
if err == nil {
|
|
return
|
|
}
|
|
var errs []packages.Error
|
|
switch err := err.(type) {
|
|
case *scanner.Error:
|
|
errs = append(errs, packages.Error{
|
|
Pos: err.Pos.String(),
|
|
Msg: err.Msg,
|
|
Kind: packages.ParseError,
|
|
})
|
|
case scanner.ErrorList:
|
|
// The first parser error is likely the root cause of the problem.
|
|
if err.Len() > 0 {
|
|
errs = append(errs, packages.Error{
|
|
Pos: err[0].Pos.String(),
|
|
Msg: err[0].Msg,
|
|
Kind: packages.ParseError,
|
|
})
|
|
}
|
|
case types.Error:
|
|
errs = append(errs, packages.Error{
|
|
Pos: v.Session().Cache().FileSet().Position(err.Pos).String(),
|
|
Msg: err.Msg,
|
|
Kind: packages.TypeError,
|
|
})
|
|
}
|
|
pkg.errors = append(pkg.errors, errs...)
|
|
}
|