gomod2nix/generate/generate.go

138 lines
2.5 KiB
Go
Raw Normal View History

2020-07-20 11:38:32 +00:00
package fetch
2020-07-20 10:52:58 +00:00
import (
"bytes"
2020-07-20 10:52:58 +00:00
"encoding/json"
"fmt"
"io"
2020-07-20 11:29:04 +00:00
"io/ioutil"
2020-07-20 10:52:58 +00:00
"os/exec"
"path"
"strings"
2022-05-27 17:06:48 +00:00
"sync"
log "github.com/sirupsen/logrus"
2022-05-27 17:06:48 +00:00
"github.com/tweag/gomod2nix/lib"
2022-05-27 17:25:35 +00:00
schema "github.com/tweag/gomod2nix/schema"
"golang.org/x/mod/modfile"
2020-07-20 10:52:58 +00:00
)
type goModDownload struct {
Path string
Version string
Info string
GoMod string
Zip string
Dir string
Sum string
GoModSum string
2020-07-20 11:38:32 +00:00
}
2022-05-27 17:25:35 +00:00
func GeneratePkgs(goModPath string, goMod2NixPath string, numWorkers int) ([]*schema.Package, error) {
2020-07-20 10:52:58 +00:00
2020-07-21 09:42:32 +00:00
log.WithFields(log.Fields{
"modPath": goModPath,
}).Info("Parsing go.mod")
2020-07-20 11:29:04 +00:00
// Read go.mod
data, err := ioutil.ReadFile(goModPath)
if err != nil {
return nil, err
}
// Parse go.mod
mod, err := modfile.Parse(goModPath, data, nil)
if err != nil {
return nil, err
}
// Map repos -> replacement repo
replace := make(map[string]string)
for _, repl := range mod.Replace {
replace[repl.New.Path] = repl.Old.Path
2020-07-20 11:29:04 +00:00
}
var modDownloads []*goModDownload
{
2022-05-27 17:25:35 +00:00
log.Info("Downloading dependencies")
stdout, err := exec.Command(
"go", "mod", "download", "--json",
).Output()
if err != nil {
return nil, err
2020-07-20 11:29:04 +00:00
}
dec := json.NewDecoder(bytes.NewReader(stdout))
for {
var dl *goModDownload
err := dec.Decode(&dl)
if err == io.EOF {
break
2020-07-20 11:29:04 +00:00
}
modDownloads = append(modDownloads, dl)
2020-07-20 11:29:04 +00:00
}
2022-05-27 17:25:35 +00:00
log.Info("Done downloading dependencies")
}
2022-05-27 17:06:48 +00:00
executor := lib.NewParallellExecutor(numWorkers)
var mux sync.Mutex
2022-05-27 17:25:35 +00:00
packages := []*schema.Package{}
for _, dl := range modDownloads {
2022-05-27 17:06:48 +00:00
dl := dl
2022-05-27 17:06:48 +00:00
executor.Add(func() error {
goPackagePath, hasReplace := replace[dl.Path]
if !hasReplace {
goPackagePath = dl.Path
}
var storePath string
{
stdout, err := exec.Command(
"nix", "eval", "--impure", "--expr",
fmt.Sprintf("builtins.path { name = \"%s_%s\"; path = \"%s\"; }", path.Base(goPackagePath), dl.Version, dl.Dir),
).Output()
if err != nil {
return err
}
storePath = string(stdout)[1 : len(stdout)-2]
}
stdout, err := exec.Command(
2022-05-27 17:06:48 +00:00
"nix-store", "--query", "--hash", storePath,
).Output()
if err != nil {
2022-05-27 17:06:48 +00:00
return err
}
2022-05-27 17:06:48 +00:00
hash := strings.TrimSpace(string(stdout))
2020-07-21 09:42:32 +00:00
2022-05-27 17:25:35 +00:00
pkg := &schema.Package{
2022-05-27 17:06:48 +00:00
GoPackagePath: goPackagePath,
Version: dl.Version,
Hash: hash,
}
if hasReplace {
pkg.ReplacedPath = dl.Path
}
2022-05-27 17:06:48 +00:00
mux.Lock()
packages = append(packages, pkg)
mux.Unlock()
return nil
})
}
2022-05-27 17:06:48 +00:00
err = executor.Wait()
if err != nil {
return nil, err
}
return packages, nil
2020-07-20 10:52:58 +00:00
}