Skip to content

Commit 0c1c8ea

Browse files
committed
dep: update calculatePrune to not assume "/" as separtor
dep.calculatePrune assumes "/" is the file separtor. This change fixes an issue caused by that on Windows. Fixes golang#775 Signed-off-by: Ibrahim AshShohail <[email protected]>
1 parent 0584d8c commit 0c1c8ea

File tree

2 files changed

+160
-1
lines changed

2 files changed

+160
-1
lines changed

semver.go

+158
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,158 @@
1+
package dep
2+
3+
import (
4+
"fmt"
5+
"os"
6+
"path/filepath"
7+
"strconv"
8+
"strings"
9+
10+
"encoding/hex"
11+
"github.com/golang/dep/internal/gps"
12+
"github.com/pkg/errors"
13+
)
14+
15+
func main() {
16+
args := os.Args
17+
if len(args) != 2 {
18+
fmt.Println("Usage: semver pkg[:source]@constraint")
19+
os.Exit(1)
20+
}
21+
22+
GOPATH := "/Users/ibrahim/Code/go"
23+
sm, err := gps.NewSourceManager(filepath.Join(GOPATH, "pkg", "dep"))
24+
if err != nil {
25+
fmt.Println(err)
26+
os.Exit(1)
27+
}
28+
sm.UseDefaultSignalHandling()
29+
defer sm.Release()
30+
31+
arg := args[1]
32+
33+
// try to split on '@'
34+
// When there is no `@`, use any version
35+
versionStr := "*"
36+
atIndex := strings.Index(arg, "@")
37+
if atIndex > 0 {
38+
parts := strings.SplitN(arg, "@", 2)
39+
arg = parts[0]
40+
versionStr = parts[1]
41+
}
42+
43+
// TODO: if we decide to keep equals.....
44+
45+
// split on colon if there is a network location
46+
var source string
47+
colonIndex := strings.Index(arg, ":")
48+
if colonIndex > 0 {
49+
parts := strings.SplitN(arg, ":", 2)
50+
arg = parts[0]
51+
source = parts[1]
52+
}
53+
54+
pr, err := sm.DeduceProjectRoot(arg)
55+
if err != nil {
56+
fmt.Println(errors.Wrapf(err, "could not infer project root from dependency path: %s", arg))
57+
os.Exit(1)
58+
}
59+
60+
if string(pr) != arg {
61+
fmt.Println(errors.Errorf("dependency path %s is not a project root, try %s instead", arg, pr))
62+
os.Exit(1)
63+
}
64+
65+
pi := gps.ProjectIdentifier{ProjectRoot: pr, Source: source}
66+
67+
c, err := deduceTheConstraint(versionStr, pi, sm)
68+
if err != nil {
69+
fmt.Println(err)
70+
os.Exit(1)
71+
}
72+
73+
//pc := gps.ProjectConstraint{Ident: pi, Constraint: c}
74+
75+
versions, err := sm.ListVersions(pi)
76+
if err != nil {
77+
fmt.Println(err)
78+
os.Exit(1)
79+
}
80+
gps.SortPairedForUpgrade(versions)
81+
fmt.Printf("%v\n", versions)
82+
83+
//var matchingVersions []gps.PairedVersion
84+
for _, v := range versions {
85+
if c.Matches(v) {
86+
//matchingVersions := append(matchingVersions, v)
87+
fmt.Printf("%v\n", v)
88+
}
89+
}
90+
91+
os.Exit(0)
92+
}
93+
94+
// deduceConstraint tries to puzzle out what kind of version is given in a string -
95+
// semver, a revision, or as a fallback, a plain tag
96+
func deduceTheConstraint(s string, pi gps.ProjectIdentifier, sm gps.SourceManager) (gps.Constraint, error) {
97+
if s == "" {
98+
// Find the default branch
99+
versions, err := sm.ListVersions(pi)
100+
if err != nil {
101+
return nil, errors.Wrapf(err, "list versions for %s(%s)", pi.ProjectRoot, pi.Source) // means repo does not exist
102+
}
103+
104+
gps.SortPairedForUpgrade(versions)
105+
for _, v := range versions {
106+
if v.Type() == gps.IsBranch {
107+
return v.Unpair(), nil
108+
}
109+
}
110+
}
111+
112+
// always semver if we can
113+
c, err := gps.NewSemverConstraintIC(s)
114+
if err == nil {
115+
return c, nil
116+
}
117+
118+
slen := len(s)
119+
if slen == 40 {
120+
if _, err = hex.DecodeString(s); err == nil {
121+
// Whether or not it's intended to be a SHA1 digest, this is a
122+
// valid byte sequence for that, so go with Revision. This
123+
// covers git and hg
124+
return gps.Revision(s), nil
125+
}
126+
}
127+
// Next, try for bzr, which has a three-component GUID separated by
128+
// dashes. There should be two, but the email part could contain
129+
// internal dashes
130+
if strings.Count(s, "-") >= 2 {
131+
// Work from the back to avoid potential confusion from the email
132+
i3 := strings.LastIndex(s, "-")
133+
// Skip if - is last char, otherwise this would panic on bounds err
134+
if slen == i3+1 {
135+
return gps.NewVersion(s), nil
136+
}
137+
138+
i2 := strings.LastIndex(s[:i3], "-")
139+
if _, err = strconv.ParseUint(s[i2+1:i3], 10, 64); err == nil {
140+
// Getting this far means it'd pretty much be nuts if it's not a
141+
// bzr rev, so don't bother parsing the email.
142+
return gps.Revision(s), nil
143+
}
144+
}
145+
146+
// call out to network and get the package's versions
147+
versions, err := sm.ListVersions(pi)
148+
if err != nil {
149+
return nil, errors.Wrapf(err, "list versions for %s(%s)", pi.ProjectRoot, pi.Source) // means repo does not exist
150+
}
151+
152+
for _, version := range versions {
153+
if s == version.String() {
154+
return version.Unpair(), nil
155+
}
156+
}
157+
return nil, errors.Errorf("%s is not a valid version for the package %s(%s)", s, pi.ProjectRoot, pi.Source)
158+
}

txn_writer.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -530,6 +530,7 @@ fail:
530530
return failerr
531531
}
532532

533+
// calculatePrune returns the paths of the packages to be deleted from vendorDir.
533534
func calculatePrune(vendorDir string, keep []string, logger *log.Logger) ([]string, error) {
534535
if logger != nil {
535536
logger.Println("Calculating prune. Checking the following packages:")
@@ -547,7 +548,7 @@ func calculatePrune(vendorDir string, keep []string, logger *log.Logger) ([]stri
547548
return nil
548549
}
549550

550-
name := strings.TrimPrefix(path, vendorDir+"/")
551+
name := filepath.ToSlash(strings.TrimPrefix(path, vendorDir+string(filepath.Separator)))
551552
if logger != nil {
552553
logger.Printf(" %s", name)
553554
}

0 commit comments

Comments
 (0)