gomod2nix/schema/schema.go
adisbladis 1ffea526a0 Add package generation for non development packages
This makes it possible to generate packages that you do not have a
local checkout for, e.g. running:
`gomod2nix generate --outdir example/ golang.org/x/tools/cmd/stringer`

This will be useful for packaging dependencies that you are not
developing, but just simply packaging.
2022-06-14 05:15:43 +08:00

79 lines
1.5 KiB
Go

package types
import (
"bytes"
"github.com/BurntSushi/toml"
"os"
)
const SchemaVersion = 2
type Package struct {
GoPackagePath string `toml:"-"`
Version string `toml:"version"`
Hash string `toml:"hash"`
ReplacedPath string `toml:"replaced,omitempty"`
}
type Output struct {
SchemaVersion int `toml:"schema"`
Mod map[string]*Package `toml:"mod"`
// Packages with passed import paths trigger `go install` based on this list
Install []string `toml:"install,omitempty"`
// Packages with passed import paths has a "default package" which pname & version is inherit from
GoPackagePath string `toml:"goPackagePath,omitempty"`
}
func Marshal(pkgs []*Package, goPackagePath string, install []string) ([]byte, error) {
out := &Output{
SchemaVersion: SchemaVersion,
Mod: make(map[string]*Package),
Install: install,
GoPackagePath: goPackagePath,
}
for _, pkg := range pkgs {
out.Mod[pkg.GoPackagePath] = pkg
}
var buf bytes.Buffer
e := toml.NewEncoder(&buf)
err := e.Encode(out)
if err != nil {
return nil, err
}
return buf.Bytes(), nil
}
func ReadCache(filePath string) map[string]*Package {
ret := make(map[string]*Package)
if filePath == "" {
return ret
}
b, err := os.ReadFile(filePath)
if err != nil {
return ret
}
var output Output
_, err = toml.Decode(string(b), &output)
if err != nil {
return ret
}
if output.SchemaVersion != SchemaVersion {
return ret
}
for k, v := range output.Mod {
v.GoPackagePath = k
ret[k] = v
}
return ret
}