2019-12-16 13:40:24 -07:00
|
|
|
// Copyright 2019 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package cache
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"io"
|
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"golang.org/x/tools/internal/lsp/source"
|
2019-12-19 08:20:43 -07:00
|
|
|
"golang.org/x/tools/internal/lsp/telemetry"
|
|
|
|
"golang.org/x/tools/internal/telemetry/log"
|
2019-12-16 13:40:24 -07:00
|
|
|
errors "golang.org/x/xerrors"
|
|
|
|
)
|
|
|
|
|
|
|
|
// This function will return the main go.mod file for this folder if it exists and whether the -modfile
|
|
|
|
// flag exists for this version of go.
|
|
|
|
func modfileFlagExists(ctx context.Context, folder string, env []string) (string, bool, error) {
|
2019-12-23 09:07:19 -07:00
|
|
|
var tempEnv []string
|
|
|
|
for i := range env {
|
|
|
|
tempEnv = append(tempEnv, env[i])
|
|
|
|
if strings.Contains(env[i], "GO111MODULE") {
|
|
|
|
tempEnv[i] = "GO111MODULE=off"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Borrowed from (internal/imports/mod.go:620)
|
|
|
|
const format = `{{range context.ReleaseTags}}{{if eq . "go1.14"}}{{.}}{{end}}{{end}}`
|
|
|
|
// Check the go version by running "go list" with modules off.
|
|
|
|
stdout, err := source.InvokeGo(ctx, folder, tempEnv, "list", "-f", format)
|
2019-12-16 13:40:24 -07:00
|
|
|
if err != nil {
|
|
|
|
return "", false, err
|
|
|
|
}
|
|
|
|
lines := strings.Split(stdout.String(), "\n")
|
|
|
|
if len(lines) < 2 {
|
|
|
|
return "", false, errors.Errorf("unexpected stdout: %q", stdout)
|
|
|
|
}
|
2019-12-23 09:07:19 -07:00
|
|
|
// Get the go.mod file associated with this module.
|
|
|
|
b, err := source.InvokeGo(ctx, folder, env, "env", "GOMOD")
|
|
|
|
if err != nil {
|
|
|
|
return "", false, err
|
|
|
|
}
|
|
|
|
modfile := strings.TrimSpace(b.String())
|
|
|
|
if modfile == os.DevNull {
|
|
|
|
return "", false, errors.Errorf("go env GOMOD did not detect a go.mod file in this folder")
|
|
|
|
}
|
|
|
|
return modfile, lines[0] == "go1.14", nil
|
2019-12-16 13:40:24 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// The function getModfiles will return the go.mod files associated with the directory that is passed in.
|
2019-12-19 08:20:43 -07:00
|
|
|
func getModfiles(ctx context.Context, folder string, options source.Options) (*modfiles, error) {
|
2019-12-20 11:50:28 -07:00
|
|
|
if !options.TempModfile {
|
2019-12-19 08:20:43 -07:00
|
|
|
log.Print(ctx, "using the -modfile flag is disabled", telemetry.Directory.Of(folder))
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
modfile, flagExists, err := modfileFlagExists(ctx, folder, options.Env)
|
2019-12-16 13:40:24 -07:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if !flagExists {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
if modfile == "" || modfile == os.DevNull {
|
|
|
|
return nil, errors.Errorf("go env GOMOD cannot detect a go.mod file in this folder")
|
|
|
|
}
|
2019-12-23 09:07:19 -07:00
|
|
|
tempFile, err := ioutil.TempFile("", "go.*.mod")
|
2019-12-16 13:40:24 -07:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2019-12-23 09:07:19 -07:00
|
|
|
defer tempFile.Close()
|
2019-12-16 13:40:24 -07:00
|
|
|
// Copy the current go.mod file into the temporary go.mod file.
|
|
|
|
origFile, err := os.Open(modfile)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
defer origFile.Close()
|
2019-12-23 09:07:19 -07:00
|
|
|
if _, err := io.Copy(tempFile, origFile); err != nil {
|
2019-12-16 13:40:24 -07:00
|
|
|
return nil, err
|
|
|
|
}
|
2019-12-23 09:07:19 -07:00
|
|
|
return &modfiles{real: modfile, temp: tempFile.Name()}, nil
|
2019-12-16 13:40:24 -07:00
|
|
|
}
|