Skip to content
This repository was archived by the owner on Sep 9, 2020. It is now read-only.

Commit 4f991d4

Browse files
committed
Prefetch and log output during InitializeRootManifestAndLock
1 parent ac1a162 commit 4f991d4

File tree

1 file changed

+69
-0
lines changed

1 file changed

+69
-0
lines changed

cmd/dep/root_analyzer.go

+69
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,22 @@
55
package main
66

77
import (
8+
"context"
89
"io/ioutil"
910
"log"
11+
"strings"
12+
13+
"golang.org/x/sync/errgroup"
1014

1115
"github.com/golang/dep"
1216
fb "github.com/golang/dep/internal/feedback"
1317
"github.com/golang/dep/internal/gps"
18+
"github.com/golang/dep/internal/gps/paths"
1419
"github.com/golang/dep/internal/importers"
1520
)
1621

22+
const concurrency = 4
23+
1724
// rootAnalyzer supplies manifest/lock data from both dep and external tool's
1825
// configuration files.
1926
// * 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
4552

4653
if rootM == nil {
4754
rootM = dep.NewManifest()
55+
if err := a.cacheDeps(pr); err != nil {
56+
return nil, nil, err
57+
}
4858
}
4959
if rootL == nil {
5060
rootL = &dep.Lock{}
@@ -53,6 +63,65 @@ func (a *rootAnalyzer) InitializeRootManifestAndLock(dir string, pr gps.ProjectR
5363
return
5464
}
5565

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+
56125
func (a *rootAnalyzer) importManifestAndLock(dir string, pr gps.ProjectRoot, suppressLogs bool) (*dep.Manifest, *dep.Lock, error) {
57126
logger := a.ctx.Err
58127
if suppressLogs {

0 commit comments

Comments
 (0)