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

Commit 8915341

Browse files
committed
Remove gopath from analyzers & adapt new feedback
1 parent 23a8675 commit 8915341

File tree

3 files changed

+41
-46
lines changed

3 files changed

+41
-46
lines changed

cmd/dep/gopath_scanner.go

+1-13
Original file line numberDiff line numberDiff line change
@@ -25,19 +25,17 @@ type gopathScanner struct {
2525
ctx *dep.Ctx
2626
directDeps map[string]bool
2727
sm gps.SourceManager
28-
gopath bool
2928

3029
pd projectData
3130
origM *dep.Manifest
3231
origL *dep.Lock
3332
}
3433

35-
func newGopathScanner(ctx *dep.Ctx, directDeps map[string]bool, sm gps.SourceManager, gopath bool) *gopathScanner {
34+
func newGopathScanner(ctx *dep.Ctx, directDeps map[string]bool, sm gps.SourceManager) *gopathScanner {
3635
return &gopathScanner{
3736
ctx: ctx,
3837
directDeps: directDeps,
3938
sm: sm,
40-
gopath: gopath,
4139
}
4240
}
4341

@@ -46,11 +44,6 @@ func newGopathScanner(ctx *dep.Ctx, directDeps map[string]bool, sm gps.SourceMan
4644
// constraints. Respect any initial constraints defined in the root manifest and
4745
// lock.
4846
func (g *gopathScanner) InitializeRootManifestAndLock(rootM *dep.Manifest, rootL *dep.Lock) error {
49-
// No operation in network mode
50-
if !g.gopath {
51-
return nil
52-
}
53-
5447
var err error
5548

5649
g.ctx.Err.Println("Searching GOPATH for projects...")
@@ -142,11 +135,6 @@ func (g *gopathScanner) overlay(rootM *dep.Manifest, rootL *dep.Lock) {
142135
}
143136

144137
func (g *gopathScanner) FinalizeRootManifestAndLock(m *dep.Manifest, l *dep.Lock) {
145-
// No operation in network mode
146-
if !g.gopath {
147-
return
148-
}
149-
150138
// Iterate through the new projects in solved lock and add them to manifest
151139
// if direct deps and log feedback for all the new projects.
152140
for _, x := range l.Projects() {

cmd/dep/init.go

+10-6
Original file line numberDiff line numberDiff line change
@@ -121,16 +121,18 @@ func (cmd *initCommand) Run(ctx *dep.Ctx, args []string) error {
121121
defer sm.Release()
122122

123123
// Initialize with imported data, then fill in the gaps using the GOPATH
124-
rootAnalyzer := newRootAnalyzer(cmd.skipTools, cmd.gopath, ctx, directDeps, sm)
124+
rootAnalyzer := newRootAnalyzer(cmd.skipTools, ctx, directDeps, sm)
125125
m, l, err := rootAnalyzer.InitializeRootManifestAndLock(root, gps.ProjectRoot(cpr))
126126
if err != nil {
127127
return err
128128
}
129129

130-
gs := newGopathScanner(ctx, directDeps, sm, cmd.gopath)
131-
err = gs.InitializeRootManifestAndLock(m, l)
132-
if err != nil {
133-
return err
130+
gs := newGopathScanner(ctx, directDeps, sm)
131+
if cmd.gopath {
132+
err = gs.InitializeRootManifestAndLock(m, l)
133+
if err != nil {
134+
return err
135+
}
134136
}
135137

136138
rootAnalyzer.skipTools = true // Don't import external config during solve for now
@@ -160,7 +162,9 @@ func (cmd *initCommand) Run(ctx *dep.Ctx, args []string) error {
160162
l = dep.LockFromSolution(soln)
161163

162164
rootAnalyzer.FinalizeRootManifestAndLock(m, l)
163-
gs.FinalizeRootManifestAndLock(m, l)
165+
if cmd.gopath {
166+
gs.FinalizeRootManifestAndLock(m, l)
167+
}
164168

165169
// Run gps.Prepare with appropriate constraint solutions from solve run
166170
// to generate the final lock memo.

cmd/dep/root_analyzer.go

+30-27
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import (
99
"log"
1010

1111
"github.com/golang/dep"
12+
fb "github.com/golang/dep/internal/feedback"
1213
"github.com/golang/dep/internal/gps"
1314
"github.com/pkg/errors"
1415
)
@@ -28,25 +29,22 @@ type importer interface {
2829
// then external tools.
2930
type rootAnalyzer struct {
3031
skipTools bool
31-
gopath bool
3232
ctx *dep.Ctx
3333
sm gps.SourceManager
3434
directDeps map[string]bool
3535
}
3636

37-
func newRootAnalyzer(skipTools bool, gopath bool, ctx *dep.Ctx, directDeps map[string]bool, sm gps.SourceManager) *rootAnalyzer {
37+
func newRootAnalyzer(skipTools bool, ctx *dep.Ctx, directDeps map[string]bool, sm gps.SourceManager) *rootAnalyzer {
3838
return &rootAnalyzer{
3939
skipTools: skipTools,
40-
gopath: gopath,
4140
ctx: ctx,
4241
sm: sm,
4342
directDeps: directDeps,
4443
}
4544
}
4645

4746
func (a *rootAnalyzer) InitializeRootManifestAndLock(dir string, pr gps.ProjectRoot) (rootM *dep.Manifest, rootL *dep.Lock, err error) {
48-
// Use importer tools only in gopath mode
49-
if a.gopath && !a.skipTools {
47+
if !a.skipTools {
5048
rootM, rootL, err = a.importManifestAndLock(dir, pr, false)
5149
if err != nil {
5250
return
@@ -129,33 +127,38 @@ func (a *rootAnalyzer) DeriveManifestAndLock(dir string, pr gps.ProjectRoot) (gp
129127
}
130128

131129
func (a *rootAnalyzer) FinalizeRootManifestAndLock(m *dep.Manifest, l *dep.Lock) {
132-
if a.gopath {
133-
// Remove dependencies from the manifest that aren't used
134-
for pr := range m.Constraints {
135-
var used bool
136-
for _, y := range l.Projects() {
137-
if pr == y.Ident().ProjectRoot {
138-
used = true
139-
break
140-
}
141-
}
142-
if !used {
143-
delete(m.Constraints, pr)
130+
// Remove dependencies from the manifest that aren't used
131+
for pr := range m.Constraints {
132+
var used bool
133+
for _, y := range l.Projects() {
134+
if pr == y.Ident().ProjectRoot {
135+
used = true
136+
break
144137
}
145138
}
146-
} else {
147-
// Pick the direct dependencies from the solution lock and add to manifest.
148-
// This is done in network mode to fill up the manifest constraints with
149-
// the dependencies solved over the network.
150-
for _, y := range l.Projects() {
151-
pr := y.Ident().ProjectRoot
152-
if _, ok := a.directDeps[string(pr)]; ok {
153-
m.Constraints[pr] = getProjectPropertiesFromVersion(y.Version())
154-
feedback(y.Version(), pr, fb.DepTypeDirect, a.ctx.Err)
139+
if !used {
140+
delete(m.Constraints, pr)
141+
}
142+
}
143+
// Pick the direct dependencies from the solution lock and add to manifest.
144+
// This is done to fill up the manifest constraints with the dependencies
145+
// solved over the network.
146+
for _, y := range l.Projects() {
147+
var f *fb.ConstraintFeedback
148+
pr := y.Ident().ProjectRoot
149+
if _, ok := a.directDeps[string(pr)]; ok {
150+
pp := getProjectPropertiesFromVersion(y.Version())
151+
if pp.Constraint != nil {
152+
m.Constraints[pr] = pp
153+
pc := gps.ProjectConstraint{Ident: y.Ident(), Constraint: pp.Constraint}
154+
f = fb.NewConstraintFeedback(pc, fb.DepTypeDirect)
155155
} else {
156-
feedback(y.Version(), pr, fb.DepTypeTransitive, a.ctx.Err)
156+
f = fb.NewLockedProjectFeedback(y, fb.DepTypeDirect)
157157
}
158+
} else {
159+
f = fb.NewLockedProjectFeedback(y, fb.DepTypeTransitive)
158160
}
161+
f.LogFeedback(a.ctx.Err)
159162
}
160163
}
161164

0 commit comments

Comments
 (0)