forked from golang/dep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
maybe_source.go
262 lines (216 loc) · 6.87 KB
/
maybe_source.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
// Copyright 2017 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 gps
import (
"bytes"
"context"
"fmt"
"net/url"
"path/filepath"
"github.com/Masterminds/vcs"
"github.com/pkg/errors"
)
// A maybeSource represents a set of information that, given some
// typically-expensive network effort, could be transformed into a proper source.
//
// Wrapping these up as their own type achieves two goals:
//
// * Allows control over when deduction logic triggers network activity
// * Makes it easy to attempt multiple URLs for a given import path
type maybeSource interface {
try(ctx context.Context, cachedir string, c singleSourceCache, superv *supervisor) (source, sourceState, error)
possibleURLs() []*url.URL
}
type errorSlice []error
func (errs *errorSlice) Error() string {
var buf bytes.Buffer
for _, err := range *errs {
fmt.Fprintf(&buf, "\n\t%s", err)
}
return buf.String()
}
type maybeSources []maybeSource
func (mbs maybeSources) try(ctx context.Context, cachedir string, c singleSourceCache, superv *supervisor) (source, sourceState, error) {
var errs errorSlice
for _, mb := range mbs {
src, state, err := mb.try(ctx, cachedir, c, superv)
if err == nil {
return src, state, nil
}
urls := ""
for _, url := range mb.possibleURLs() {
urls += url.String() + "\n"
}
errs = append(errs, errors.Wrapf(err, "failed to set up sources from the following URLs:\n%s", urls))
}
return nil, 0, errors.Wrap(&errs, "no valid source could be created")
}
// This really isn't generally intended to be used - the interface is for
// maybeSources to be able to interrogate its members, not other things to
// interrogate a maybeSources.
func (mbs maybeSources) possibleURLs() []*url.URL {
urlslice := make([]*url.URL, 0, len(mbs))
for _, mb := range mbs {
urlslice = append(urlslice, mb.possibleURLs()...)
}
return urlslice
}
// sourceCachePath returns a url-sanitized source cache dir path.
func sourceCachePath(cacheDir, sourceURL string) string {
return filepath.Join(cacheDir, "sources", sanitizer.Replace(sourceURL))
}
type maybeGitSource struct {
url *url.URL
}
func (m maybeGitSource) try(ctx context.Context, cachedir string, c singleSourceCache, superv *supervisor) (source, sourceState, error) {
ustr := m.url.String()
r, err := newCtxRepo(vcs.Git, ustr, sourceCachePath(cachedir, ustr))
if err != nil {
return nil, 0, unwrapVcsErr(err)
}
src := &gitSource{
baseVCSSource: baseVCSSource{
repo: r,
},
}
// Pinging invokes the same action as calling listVersions, so just do that.
var vl []PairedVersion
if err := superv.do(ctx, "git:lv:maybe", ctListVersions, func(ctx context.Context) error {
var err error
vl, err = src.listVersions(ctx)
return errors.Wrapf(err, "remote repository at %s does not exist, or is inaccessible", ustr)
}); err != nil {
return nil, 0, err
}
state := sourceIsSetUp | sourceExistsUpstream | sourceHasLatestVersionList
if r.CheckLocal() {
state |= sourceExistsLocally
if err := superv.do(ctx, "git", ctValidateLocal, func(ctx context.Context) error {
// If repository already exists on disk, make a pass to be sure
// everything's clean.
return src.ensureClean(ctx)
}); err != nil {
return nil, 0, err
}
}
c.setVersionMap(vl)
return src, state, nil
}
func (m maybeGitSource) possibleURLs() []*url.URL {
return []*url.URL{m.url}
}
type maybeGopkginSource struct {
// the original gopkg.in import path. this is used to create the on-disk
// location to avoid duplicate resource management - e.g., if instances of
// a gopkg.in project are accessed via different schemes, or if the
// underlying github repository is accessed directly.
opath string
// the actual upstream URL - always github
url *url.URL
// the major version to apply for filtering
major uint64
// whether or not the source package is "unstable"
unstable bool
}
func (m maybeGopkginSource) try(ctx context.Context, cachedir string, c singleSourceCache, superv *supervisor) (source, sourceState, error) {
// We don't actually need a fully consistent transform into the on-disk path
// - just something that's unique to the particular gopkg.in domain context.
// So, it's OK to just dumb-join the scheme with the path.
aliasURL := m.url.Scheme + "://" + m.opath
path := sourceCachePath(cachedir, aliasURL)
ustr := m.url.String()
r, err := newCtxRepo(vcs.Git, ustr, path)
if err != nil {
return nil, 0, unwrapVcsErr(err)
}
src := &gopkginSource{
gitSource: gitSource{
baseVCSSource: baseVCSSource{
repo: r,
},
},
major: m.major,
unstable: m.unstable,
aliasURL: aliasURL,
}
var vl []PairedVersion
if err := superv.do(ctx, "git:lv:maybe", ctListVersions, func(ctx context.Context) error {
var err error
vl, err = src.listVersions(ctx)
return errors.Wrapf(err, "remote repository at %s does not exist, or is inaccessible", ustr)
}); err != nil {
return nil, 0, err
}
c.setVersionMap(vl)
state := sourceIsSetUp | sourceExistsUpstream | sourceHasLatestVersionList
if r.CheckLocal() {
state |= sourceExistsLocally
}
return src, state, nil
}
func (m maybeGopkginSource) possibleURLs() []*url.URL {
return []*url.URL{m.url}
}
type maybeBzrSource struct {
url *url.URL
}
func (m maybeBzrSource) try(ctx context.Context, cachedir string, c singleSourceCache, superv *supervisor) (source, sourceState, error) {
ustr := m.url.String()
r, err := newCtxRepo(vcs.Bzr, ustr, sourceCachePath(cachedir, ustr))
if err != nil {
return nil, 0, unwrapVcsErr(err)
}
if err := superv.do(ctx, "bzr:ping", ctSourcePing, func(ctx context.Context) error {
if !r.Ping() {
return fmt.Errorf("remote repository at %s does not exist, or is inaccessible", ustr)
}
return nil
}); err != nil {
return nil, 0, err
}
state := sourceIsSetUp | sourceExistsUpstream
if r.CheckLocal() {
state |= sourceExistsLocally
}
src := &bzrSource{
baseVCSSource: baseVCSSource{
repo: r,
},
}
return src, state, nil
}
func (m maybeBzrSource) possibleURLs() []*url.URL {
return []*url.URL{m.url}
}
type maybeHgSource struct {
url *url.URL
}
func (m maybeHgSource) try(ctx context.Context, cachedir string, c singleSourceCache, superv *supervisor) (source, sourceState, error) {
ustr := m.url.String()
r, err := newCtxRepo(vcs.Hg, ustr, sourceCachePath(cachedir, ustr))
if err != nil {
return nil, 0, unwrapVcsErr(err)
}
if err := superv.do(ctx, "hg:ping", ctSourcePing, func(ctx context.Context) error {
if !r.Ping() {
return fmt.Errorf("remote repository at %s does not exist, or is inaccessible", ustr)
}
return nil
}); err != nil {
return nil, 0, err
}
state := sourceIsSetUp | sourceExistsUpstream
if r.CheckLocal() {
state |= sourceExistsLocally
}
src := &hgSource{
baseVCSSource: baseVCSSource{
repo: r,
},
}
return src, state, nil
}
func (m maybeHgSource) possibleURLs() []*url.URL {
return []*url.URL{m.url}
}