refactor/importgraph: don't ignore imports in packages with errors.
And in gomvpkg, don't stop just because some packages had errors.
This is inevitable in a large GOPATH tree.
Fixes issue golang/go#10907
Change-Id: I9a60b070228d06d44880202eeef54394e914f5d5
Reviewed-on: https://go-review.googlesource.com/10715
Reviewed-by: Sameer Ajmani <sameer@golang.org>
diff --git a/refactor/importgraph/graph.go b/refactor/importgraph/graph.go
index df73e23..8ad8014 100644
--- a/refactor/importgraph/graph.go
+++ b/refactor/importgraph/graph.go
@@ -54,7 +54,8 @@
// Build scans the specified Go workspace and builds the forward and
// reverse import dependency graphs for all its packages.
// It also returns a mapping from import paths to errors for packages
-// that could not be loaded.
+// whose loading was not entirely successful.
+// A package may appear in the graph and in the errors mapping.
func Build(ctxt *build.Context) (forward, reverse Graph, errors map[string]error) {
type importEdge struct {
from, to string
@@ -75,22 +76,26 @@
ch <- pathError{path, err}
return
}
+
bp, err := ctxt.Import(path, "", 0)
- if _, ok := err.(*build.NoGoError); ok {
- return // empty directory is not an error
- }
if err != nil {
- ch <- pathError{path, err}
- return
+ if _, ok := err.(*build.NoGoError); ok {
+ // empty directory is not an error
+ } else {
+ ch <- pathError{path, err}
+ }
+ // Even in error cases, Import usually returns a package.
}
- for _, imp := range bp.Imports {
- ch <- importEdge{path, imp}
- }
- for _, imp := range bp.TestImports {
- ch <- importEdge{path, imp}
- }
- for _, imp := range bp.XTestImports {
- ch <- importEdge{path, imp}
+ if bp != nil {
+ for _, imp := range bp.Imports {
+ ch <- importEdge{path, imp}
+ }
+ for _, imp := range bp.TestImports {
+ ch <- importEdge{path, imp}
+ }
+ for _, imp := range bp.XTestImports {
+ ch <- importEdge{path, imp}
+ }
}
}()
})