This repository was archived by the owner on Feb 3, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathmaybe_source.go
209 lines (181 loc) · 4.78 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
package gps
import (
"bytes"
"fmt"
"net/url"
"path/filepath"
"github.com/Masterminds/vcs"
)
// 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 kills two birds with one stone:
//
// * 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(cachedir string, an ProjectAnalyzer) (source, string, error)
}
type maybeSources []maybeSource
func (mbs maybeSources) try(cachedir string, an ProjectAnalyzer) (source, string, error) {
var e sourceFailures
for _, mb := range mbs {
src, ident, err := mb.try(cachedir, an)
if err == nil {
return src, ident, nil
}
e = append(e, sourceSetupFailure{
ident: ident,
err: err,
})
}
return nil, "", e
}
type sourceSetupFailure struct {
ident string
err error
}
func (e sourceSetupFailure) Error() string {
return fmt.Sprintf("failed to set up %q, error %s", e.ident, e.err.Error())
}
type sourceFailures []sourceSetupFailure
func (sf sourceFailures) Error() string {
var buf bytes.Buffer
fmt.Fprintf(&buf, "no valid source could be created:")
for _, e := range sf {
fmt.Fprintf(&buf, "\n\t%s", e.Error())
}
return buf.String()
}
type maybeGitSource struct {
url *url.URL
}
func (m maybeGitSource) try(cachedir string, an ProjectAnalyzer) (source, string, error) {
ustr := m.url.String()
path := filepath.Join(cachedir, "sources", sanitizer.Replace(ustr))
r, err := vcs.NewGitRepo(ustr, path)
if err != nil {
return nil, ustr, unwrapVcsErr(err)
}
src := &gitSource{
baseVCSSource: baseVCSSource{
an: an,
dc: newMetaCache(),
crepo: &repo{
r: &gitRepo{r},
rpath: path,
},
},
}
src.baseVCSSource.lvfunc = src.listVersions
if !r.CheckLocal() {
_, err = src.listVersions()
if err != nil {
return nil, ustr, unwrapVcsErr(err)
}
}
return src, ustr, nil
}
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
}
func (m maybeGopkginSource) try(cachedir string, an ProjectAnalyzer) (source, string, 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.
path := filepath.Join(cachedir, "sources", sanitizer.Replace(m.url.Scheme+"/"+m.opath))
ustr := m.url.String()
r, err := vcs.NewGitRepo(ustr, path)
if err != nil {
return nil, ustr, unwrapVcsErr(err)
}
src := &gopkginSource{
gitSource: gitSource{
baseVCSSource: baseVCSSource{
an: an,
dc: newMetaCache(),
crepo: &repo{
r: &gitRepo{r},
rpath: path,
},
},
},
major: m.major,
}
src.baseVCSSource.lvfunc = src.listVersions
if !r.CheckLocal() {
_, err = src.listVersions()
if err != nil {
return nil, ustr, unwrapVcsErr(err)
}
}
return src, ustr, nil
}
type maybeBzrSource struct {
url *url.URL
}
func (m maybeBzrSource) try(cachedir string, an ProjectAnalyzer) (source, string, error) {
ustr := m.url.String()
path := filepath.Join(cachedir, "sources", sanitizer.Replace(ustr))
r, err := vcs.NewBzrRepo(ustr, path)
if err != nil {
return nil, ustr, unwrapVcsErr(err)
}
if !r.Ping() {
return nil, ustr, fmt.Errorf("remote repository at %s does not exist, or is inaccessible", ustr)
}
src := &bzrSource{
baseVCSSource: baseVCSSource{
an: an,
dc: newMetaCache(),
ex: existence{
s: existsUpstream,
f: existsUpstream,
},
crepo: &repo{
r: &bzrRepo{r},
rpath: path,
},
},
}
src.baseVCSSource.lvfunc = src.listVersions
return src, ustr, nil
}
type maybeHgSource struct {
url *url.URL
}
func (m maybeHgSource) try(cachedir string, an ProjectAnalyzer) (source, string, error) {
ustr := m.url.String()
path := filepath.Join(cachedir, "sources", sanitizer.Replace(ustr))
r, err := vcs.NewHgRepo(ustr, path)
if err != nil {
return nil, ustr, unwrapVcsErr(err)
}
if !r.Ping() {
return nil, ustr, fmt.Errorf("remote repository at %s does not exist, or is inaccessible", ustr)
}
src := &hgSource{
baseVCSSource: baseVCSSource{
an: an,
dc: newMetaCache(),
ex: existence{
s: existsUpstream,
f: existsUpstream,
},
crepo: &repo{
r: &hgRepo{r},
rpath: path,
},
},
}
src.baseVCSSource.lvfunc = src.listVersions
return src, ustr, nil
}