Alan Donovan | 3cded4a | 2014-09-09 18:39:26 -0400 | [diff] [blame] | 1 | // Copyright 2014 The Go Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style |
| 3 | // license that can be found in the LICENSE file. |
| 4 | |
| 5 | // Package importgraph computes the forward and reverse import |
| 6 | // dependency graphs for all packages in a Go workspace. |
David Symonds | 24257c8 | 2014-12-09 15:00:58 +1100 | [diff] [blame] | 7 | package importgraph // import "golang.org/x/tools/refactor/importgraph" |
Alan Donovan | 3cded4a | 2014-09-09 18:39:26 -0400 | [diff] [blame] | 8 | |
| 9 | import ( |
| 10 | "go/build" |
| 11 | "sync" |
| 12 | |
Andrew Gerrand | 5ebbcd1 | 2014-11-10 08:50:40 +1100 | [diff] [blame] | 13 | "golang.org/x/tools/go/buildutil" |
Alan Donovan | 3cded4a | 2014-09-09 18:39:26 -0400 | [diff] [blame] | 14 | ) |
| 15 | |
| 16 | // A Graph is an import dependency graph, either forward or reverse. |
| 17 | // |
| 18 | // The graph maps each node (a package import path) to the set of its |
| 19 | // successors in the graph. For a forward graph, this is the set of |
| 20 | // imported packages (prerequisites); for a reverse graph, it is the set |
| 21 | // of importing packages (clients). |
| 22 | // |
| 23 | type Graph map[string]map[string]bool |
| 24 | |
| 25 | func (g Graph) addEdge(from, to string) { |
| 26 | edges := g[from] |
| 27 | if edges == nil { |
| 28 | edges = make(map[string]bool) |
| 29 | g[from] = edges |
| 30 | } |
| 31 | edges[to] = true |
| 32 | } |
| 33 | |
| 34 | // Search returns all the nodes of the graph reachable from |
| 35 | // any of the specified roots, by following edges forwards. |
| 36 | // Relationally, this is the reflexive transitive closure. |
| 37 | func (g Graph) Search(roots ...string) map[string]bool { |
| 38 | seen := make(map[string]bool) |
| 39 | var visit func(x string) |
| 40 | visit = func(x string) { |
| 41 | if !seen[x] { |
| 42 | seen[x] = true |
| 43 | for y := range g[x] { |
| 44 | visit(y) |
| 45 | } |
| 46 | } |
| 47 | } |
| 48 | for _, root := range roots { |
| 49 | visit(root) |
| 50 | } |
| 51 | return seen |
| 52 | } |
| 53 | |
Alan Donovan | e079f6c | 2015-01-21 14:13:33 -0500 | [diff] [blame] | 54 | // Build scans the specified Go workspace and builds the forward and |
Alan Donovan | 3cded4a | 2014-09-09 18:39:26 -0400 | [diff] [blame] | 55 | // reverse import dependency graphs for all its packages. |
| 56 | // It also returns a mapping from import paths to errors for packages |
Alan Donovan | a986643 | 2015-06-04 18:38:33 -0400 | [diff] [blame^] | 57 | // whose loading was not entirely successful. |
| 58 | // A package may appear in the graph and in the errors mapping. |
Alan Donovan | 3cded4a | 2014-09-09 18:39:26 -0400 | [diff] [blame] | 59 | func Build(ctxt *build.Context) (forward, reverse Graph, errors map[string]error) { |
Alan Donovan | 41f0d01 | 2014-12-03 09:56:23 -0500 | [diff] [blame] | 60 | type importEdge struct { |
| 61 | from, to string |
| 62 | } |
Alan Donovan | 3cded4a | 2014-09-09 18:39:26 -0400 | [diff] [blame] | 63 | type pathError struct { |
| 64 | path string |
| 65 | err error |
| 66 | } |
Alan Donovan | 41f0d01 | 2014-12-03 09:56:23 -0500 | [diff] [blame] | 67 | |
| 68 | ch := make(chan interface{}) |
Alan Donovan | 3cded4a | 2014-09-09 18:39:26 -0400 | [diff] [blame] | 69 | |
| 70 | var wg sync.WaitGroup |
Alan Donovan | 66176e2 | 2014-09-11 14:33:37 -0400 | [diff] [blame] | 71 | buildutil.ForEachPackage(ctxt, func(path string, err error) { |
Alan Donovan | 3cded4a | 2014-09-09 18:39:26 -0400 | [diff] [blame] | 72 | wg.Add(1) |
Alan Donovan | 41f0d01 | 2014-12-03 09:56:23 -0500 | [diff] [blame] | 73 | go func() { |
Alan Donovan | 3cded4a | 2014-09-09 18:39:26 -0400 | [diff] [blame] | 74 | defer wg.Done() |
Alan Donovan | 41f0d01 | 2014-12-03 09:56:23 -0500 | [diff] [blame] | 75 | if err != nil { |
| 76 | ch <- pathError{path, err} |
| 77 | return |
| 78 | } |
Alan Donovan | a986643 | 2015-06-04 18:38:33 -0400 | [diff] [blame^] | 79 | |
Alan Donovan | 3cded4a | 2014-09-09 18:39:26 -0400 | [diff] [blame] | 80 | bp, err := ctxt.Import(path, "", 0) |
Alan Donovan | 3cded4a | 2014-09-09 18:39:26 -0400 | [diff] [blame] | 81 | if err != nil { |
Alan Donovan | a986643 | 2015-06-04 18:38:33 -0400 | [diff] [blame^] | 82 | if _, ok := err.(*build.NoGoError); ok { |
| 83 | // empty directory is not an error |
| 84 | } else { |
| 85 | ch <- pathError{path, err} |
| 86 | } |
| 87 | // Even in error cases, Import usually returns a package. |
Alan Donovan | 3cded4a | 2014-09-09 18:39:26 -0400 | [diff] [blame] | 88 | } |
Alan Donovan | a986643 | 2015-06-04 18:38:33 -0400 | [diff] [blame^] | 89 | if bp != nil { |
| 90 | for _, imp := range bp.Imports { |
| 91 | ch <- importEdge{path, imp} |
| 92 | } |
| 93 | for _, imp := range bp.TestImports { |
| 94 | ch <- importEdge{path, imp} |
| 95 | } |
| 96 | for _, imp := range bp.XTestImports { |
| 97 | ch <- importEdge{path, imp} |
| 98 | } |
Alan Donovan | 3cded4a | 2014-09-09 18:39:26 -0400 | [diff] [blame] | 99 | } |
Alan Donovan | 41f0d01 | 2014-12-03 09:56:23 -0500 | [diff] [blame] | 100 | }() |
Alan Donovan | 3cded4a | 2014-09-09 18:39:26 -0400 | [diff] [blame] | 101 | }) |
Alan Donovan | 41f0d01 | 2014-12-03 09:56:23 -0500 | [diff] [blame] | 102 | go func() { |
| 103 | wg.Wait() |
| 104 | close(ch) |
| 105 | }() |
Alan Donovan | 3cded4a | 2014-09-09 18:39:26 -0400 | [diff] [blame] | 106 | |
Alan Donovan | 41f0d01 | 2014-12-03 09:56:23 -0500 | [diff] [blame] | 107 | forward = make(Graph) |
| 108 | reverse = make(Graph) |
| 109 | |
| 110 | for e := range ch { |
| 111 | switch e := e.(type) { |
| 112 | case pathError: |
| 113 | if errors == nil { |
| 114 | errors = make(map[string]error) |
| 115 | } |
| 116 | errors[e.path] = e.err |
| 117 | |
| 118 | case importEdge: |
| 119 | if e.to == "C" { |
| 120 | continue // "C" is fake |
| 121 | } |
| 122 | forward.addEdge(e.from, e.to) |
| 123 | reverse.addEdge(e.to, e.from) |
| 124 | } |
| 125 | } |
Alan Donovan | 3cded4a | 2014-09-09 18:39:26 -0400 | [diff] [blame] | 126 | |
| 127 | return forward, reverse, errors |
| 128 | } |