5
5
package main
6
6
7
7
import (
8
+ "context"
8
9
"io/ioutil"
9
10
"log"
11
+ "strings"
12
+
13
+ "golang.org/x/sync/errgroup"
10
14
11
15
"github.com/golang/dep"
12
16
fb "github.com/golang/dep/internal/feedback"
13
17
"github.com/golang/dep/internal/gps"
18
+ "github.com/golang/dep/internal/gps/paths"
14
19
"github.com/golang/dep/internal/importers"
15
20
)
16
21
22
+ const concurrency = 4
23
+
17
24
// rootAnalyzer supplies manifest/lock data from both dep and external tool's
18
25
// configuration files.
19
26
// * When used on the root project, it imports only from external tools.
@@ -45,6 +52,9 @@ func (a *rootAnalyzer) InitializeRootManifestAndLock(dir string, pr gps.ProjectR
45
52
46
53
if rootM == nil {
47
54
rootM = dep .NewManifest ()
55
+ if err := a .cacheDeps (pr ); err != nil {
56
+ return nil , nil , err
57
+ }
48
58
}
49
59
if rootL == nil {
50
60
rootL = & dep.Lock {}
@@ -53,6 +63,65 @@ func (a *rootAnalyzer) InitializeRootManifestAndLock(dir string, pr gps.ProjectR
53
63
return
54
64
}
55
65
66
+ func (a * rootAnalyzer ) cacheDeps (pr gps.ProjectRoot ) error {
67
+ deps := make (map [gps.ProjectRoot ]bool )
68
+ logger := a .ctx .Err
69
+ g , ctx := errgroup .WithContext (context .TODO ())
70
+ sem := make (chan struct {}, concurrency )
71
+
72
+ syncDep := func (pr gps.ProjectRoot , sm gps.SourceManager ) error {
73
+ if err := sm .SyncSourceFor (gps.ProjectIdentifier {ProjectRoot : pr }); err != nil {
74
+ logger .Printf ("Unable to cache %s - %s" , pr , err )
75
+ return err
76
+ }
77
+ logger .Printf ("Cached %s" , pr )
78
+ return nil
79
+ }
80
+
81
+ for ip := range a .directDeps {
82
+ logger .Printf ("Package %q, analyzing..." , ip )
83
+ if paths .IsStandardImportPath (ip ) {
84
+ continue
85
+ }
86
+ if hasImportPathPrefix (ip , string (pr )) {
87
+ continue
88
+ }
89
+
90
+ pr , err := a .sm .DeduceProjectRoot (ip )
91
+ if err != nil {
92
+ return err
93
+ }
94
+
95
+ if _ , ok := deps [pr ]; ok {
96
+ continue
97
+ }
98
+
99
+ g .Go (func () error {
100
+ select {
101
+ case sem <- struct {}{}:
102
+ defer func () { <- sem }()
103
+ case <- ctx .Done ():
104
+ return ctx .Err ()
105
+ }
106
+ err := syncDep (pr , a .sm )
107
+ return err
108
+ })
109
+
110
+ deps [pr ] = true
111
+ }
112
+ if err := g .Wait (); err == nil {
113
+ logger .Printf ("Successfully cached all deps." )
114
+ }
115
+ return nil
116
+ }
117
+
118
+ func hasImportPathPrefix (s , prefix string ) bool {
119
+ if s == prefix {
120
+ return true
121
+ }
122
+ return strings .HasPrefix (s , prefix + "/" )
123
+ }
124
+
56
125
func (a * rootAnalyzer ) importManifestAndLock (dir string , pr gps.ProjectRoot , suppressLogs bool ) (* dep.Manifest , * dep.Lock , error ) {
57
126
logger := a .ctx .Err
58
127
if suppressLogs {
0 commit comments