Skip to content

Commit f8153fc

Browse files
author
Bryan C. Mills
committed
cmd/go/internal/modload: skip fetches of replaced modules in moduleInfo
Fixes #27859 Change-Id: Ibb459cf41c3a8fe41bb008f60ef6cdd3437a37b1 Reviewed-on: https://go-review.googlesource.com/c/140860 Run-TryBot: Bryan C. Mills <[email protected]> TryBot-Result: Gobot Gobot <[email protected]> Reviewed-by: Russ Cox <[email protected]>
1 parent 160ee5d commit f8153fc

File tree

3 files changed

+93
-24
lines changed

3 files changed

+93
-24
lines changed

src/cmd/go/internal/modload/build.go

+27-23
Original file line numberDiff line numberDiff line change
@@ -145,34 +145,38 @@ func moduleInfo(m module.Version, fromBuildList bool) *modinfo.ModulePublic {
145145
}
146146
}
147147
}
148-
if cfg.BuildMod == "vendor" {
149-
m.Dir = filepath.Join(ModRoot, "vendor", m.Path)
150-
}
151148
}
152149

153-
complete(info)
150+
if !fromBuildList {
151+
complete(info)
152+
return info
153+
}
154154

155-
if fromBuildList {
156-
if r := Replacement(m); r.Path != "" {
157-
info.Replace = &modinfo.ModulePublic{
158-
Path: r.Path,
159-
Version: r.Version,
160-
GoVersion: info.GoVersion,
161-
}
162-
if r.Version == "" {
163-
if filepath.IsAbs(r.Path) {
164-
info.Replace.Dir = r.Path
165-
} else {
166-
info.Replace.Dir = filepath.Join(ModRoot, r.Path)
167-
}
168-
}
169-
complete(info.Replace)
170-
info.Dir = info.Replace.Dir
171-
info.GoMod = filepath.Join(info.Dir, "go.mod")
172-
info.Error = nil // ignore error loading original module version (it has been replaced)
173-
}
155+
r := Replacement(m)
156+
if r.Path == "" {
157+
complete(info)
158+
return info
174159
}
175160

161+
// Don't hit the network to fill in extra data for replaced modules.
162+
// The original resolved Version and Time don't matter enough to be
163+
// worth the cost, and we're going to overwrite the GoMod and Dir from the
164+
// replacement anyway. See https://golang.org/issue/27859.
165+
info.Replace = &modinfo.ModulePublic{
166+
Path: r.Path,
167+
Version: r.Version,
168+
GoVersion: info.GoVersion,
169+
}
170+
if r.Version == "" {
171+
if filepath.IsAbs(r.Path) {
172+
info.Replace.Dir = r.Path
173+
} else {
174+
info.Replace.Dir = filepath.Join(ModRoot, r.Path)
175+
}
176+
}
177+
complete(info.Replace)
178+
info.Dir = info.Replace.Dir
179+
info.GoMod = filepath.Join(info.Dir, "go.mod")
176180
return info
177181
}
178182

src/cmd/go/testdata/script/mod_replace.txt

+27-1
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,41 @@
11
env GO111MODULE=on
22

3+
cp go.mod go.mod.orig
4+
5+
# Make sure the test builds without replacement.
36
go build -o a1.exe .
47
exec ./a1.exe
58
stdout 'Don''t communicate by sharing memory'
69

710
# Modules can be replaced by local packages.
11+
cp go.mod.orig go.mod
812
go mod edit -replace=rsc.io/quote/v3=./local/rsc.io/quote/v3
913
go build -o a2.exe .
1014
exec ./a2.exe
1115
stdout 'Concurrency is not parallelism.'
1216

1317
# The module path of the replacement doesn't need to match.
1418
# (For example, it could be a long-running fork with its own import path.)
19+
cp go.mod.orig go.mod
1520
go mod edit -replace=rsc.io/quote/v3=./local/not-rsc.io/quote/v3
1621
go build -o a3.exe .
1722
exec ./a3.exe
1823
stdout 'Clear is better than clever.'
1924

2025
# However, the same module can't be used as two different paths.
21-
go mod edit -dropreplace=rsc.io/quote/v3 -replace=not-rsc.io/quote/[email protected]=rsc.io/quote/[email protected] -require=not-rsc.io/quote/[email protected]
26+
cp go.mod.orig go.mod
27+
go mod edit -replace=not-rsc.io/quote/[email protected]=rsc.io/quote/[email protected] -require=not-rsc.io/quote/[email protected]
2228
! go build -o a4.exe .
2329
stderr 'rsc.io/quote/[email protected] used for two different module paths \(not-rsc.io/quote/v3 and rsc.io/quote/v3\)'
2430

31+
# Modules that do not (yet) exist upstream can be replaced too.
32+
cp go.mod.orig go.mod
33+
go mod edit -require not-rsc.io/quote/[email protected] -replace=not-rsc.io/quote/v3=./local/rsc.io/quote/v3
34+
go build -o a5.exe ./usenewmodule
35+
! stderr 'finding not-rsc.io/quote/v3'
36+
exec ./a5.exe
37+
stdout 'Concurrency is not parallelism.'
38+
2539
-- go.mod --
2640
module quoter
2741

@@ -39,6 +53,18 @@ func main() {
3953
fmt.Println(quote.GoV3())
4054
}
4155

56+
-- usenewmodule/main.go --
57+
package main
58+
59+
import (
60+
"fmt"
61+
"not-rsc.io/quote/v3"
62+
)
63+
64+
func main() {
65+
fmt.Println(quote.GoV3())
66+
}
67+
4268
-- local/rsc.io/quote/v3/go.mod --
4369
module rsc.io/quote/v3
4470

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
env GO111MODULE=on
2+
3+
# Before vendoring, we expect to see the original directory.
4+
go list -f '{{.Version}} {{.Dir}}' -m rsc.io/quote/v3
5+
stdout 'v3.0.0'
6+
stdout '.*[/\\]not-rsc.io[/\\]quote[/\\]v3'
7+
8+
# Since all dependencies are replaced, 'go mod vendor' should not
9+
# have to download anything from the network.
10+
go mod vendor
11+
! stderr 'downloading'
12+
! stderr 'finding'
13+
14+
# After vendoring, we expect to see the replacement in the vendor directory,
15+
# without attempting to look up the non-replaced version.
16+
cmp vendor/rsc.io/quote/v3/quote.go local/not-rsc.io/quote/v3/quote.go
17+
18+
go list -mod=vendor -f '{{.Version}} {{.Dir}}' -m rsc.io/quote/v3
19+
stdout 'v3.0.0'
20+
stdout '.*[/\\]vendor[/\\]rsc.io[/\\]quote[/\\]v3'
21+
! stderr 'finding'
22+
! stderr 'lookup disabled'
23+
24+
-- go.mod --
25+
module example.com/replace
26+
27+
require rsc.io/quote/v3 v3.0.0
28+
replace rsc.io/quote/v3 => ./local/not-rsc.io/quote/v3
29+
30+
-- imports.go --
31+
package replace
32+
33+
import _ "rsc.io/quote/v3"
34+
35+
-- local/not-rsc.io/quote/v3/go.mod --
36+
module not-rsc.io/quote/v3
37+
38+
-- local/not-rsc.io/quote/v3/quote.go --
39+
package quote

0 commit comments

Comments
 (0)