Skip to content

Instantly share code, notes, and snippets.

@dmitris
Created October 5, 2018 15:48
Show Gist options
  • Save dmitris/0f26fe1c3ad786d0125b25bc3d05844d to your computer and use it in GitHub Desktop.
Save dmitris/0f26fe1c3ad786d0125b25bc3d05844d to your computer and use it in GitHub Desktop.
src/cmd/go/internal/modconv/dep.go - to include replacements when creating go.mod
// Copyright 2018 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 modconv
import (
"fmt"
"strconv"
"strings"
"cmd/go/internal/modfile"
"cmd/go/internal/module"
"cmd/go/internal/semver"
)
func ParseGopkgLock(file string, data []byte) (*modfile.File, error) {
mf := new(modfile.File)
var list []module.Version
var r *module.Version
replacements := map[string]string{}
versions := map[string]string{}
for lineno, line := range strings.Split(string(data), "\n") {
lineno++
if i := strings.Index(line, "#"); i >= 0 {
line = line[:i]
}
line = strings.TrimSpace(line)
if line == "[[projects]]" {
list = append(list, module.Version{})
r = &list[len(list)-1]
continue
}
if strings.HasPrefix(line, "[") {
r = nil
continue
}
if r == nil {
continue
}
i := strings.Index(line, "=")
if i < 0 {
continue
}
key := strings.TrimSpace(line[:i])
val := strings.TrimSpace(line[i+1:])
if len(val) >= 2 && val[0] == '"' && val[len(val)-1] == '"' {
q, err := strconv.Unquote(val) // Go unquoting, but close enough for now
if err != nil {
return nil, fmt.Errorf("%s:%d: invalid quoted string: %v", file, lineno, err)
}
val = q
}
switch key {
case "name":
r.Path = val
case "revision", "version":
// Note: key "version" should take priority over "revision",
// and it does, because dep writes toml keys in alphabetical order,
// so we see version (if present) second.
if key == "version" {
if !semver.IsValid(val) || semver.Canonical(val) != val {
break
}
}
r.Version = val
versions[r.Path] = val
case "source":
if strings.HasPrefix(val, `https://`) {
val = strings.Replace(val, `https://`, "", 1)
} else if strings.HasPrefix(val, `ssh://git@`) {
val = strings.Replace(val, `ssh://git@`, "", 1)
} else if strings.HasPrefix(val, `git@`) {
// transform git@foobar.com:org/repo to foobar.com/org/repo etc.
val = strings.Replace(val, `git@`, "", 1)
val = strings.Replace(val, `:`, `/`, 1)
}
replacements[r.Path] = val
}
}
for _, r := range list {
if r.Path == "" || r.Version == "" {
return nil, fmt.Errorf("%s: empty [[projects]] stanza (%s)", file, r.Path)
}
mf.Require = append(mf.Require, &modfile.Require{Mod: r})
if newpath, ok := replacements[r.Path]; ok {
newmod := module.Version{Path: newpath}
if p, ok := versions[r.Path]; ok {
newmod.Version = p
}
mf.Replace = append(mf.Replace, &modfile.Replace{
Old: module.Version{Path: r.Path},
New: newmod,
})
}
}
return mf, nil
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment