9
9
"log"
10
10
11
11
"github.com/golang/dep"
12
+ fb "github.com/golang/dep/internal/feedback"
12
13
"github.com/golang/dep/internal/gps"
13
14
"github.com/pkg/errors"
14
15
)
@@ -28,25 +29,22 @@ type importer interface {
28
29
// then external tools.
29
30
type rootAnalyzer struct {
30
31
skipTools bool
31
- gopath bool
32
32
ctx * dep.Ctx
33
33
sm gps.SourceManager
34
34
directDeps map [string ]bool
35
35
}
36
36
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 {
38
38
return & rootAnalyzer {
39
39
skipTools : skipTools ,
40
- gopath : gopath ,
41
40
ctx : ctx ,
42
41
sm : sm ,
43
42
directDeps : directDeps ,
44
43
}
45
44
}
46
45
47
46
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 {
50
48
rootM , rootL , err = a .importManifestAndLock (dir , pr , false )
51
49
if err != nil {
52
50
return
@@ -129,33 +127,38 @@ func (a *rootAnalyzer) DeriveManifestAndLock(dir string, pr gps.ProjectRoot) (gp
129
127
}
130
128
131
129
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
144
137
}
145
138
}
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 )
155
155
} else {
156
- feedback ( y . Version (), pr , fb .DepTypeTransitive , a . ctx . Err )
156
+ f = fb .NewLockedProjectFeedback ( y , fb . DepTypeDirect )
157
157
}
158
+ } else {
159
+ f = fb .NewLockedProjectFeedback (y , fb .DepTypeTransitive )
158
160
}
161
+ f .LogFeedback (a .ctx .Err )
159
162
}
160
163
}
161
164
0 commit comments