forked from buildpacks/lifecycle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdetector.go
459 lines (402 loc) · 10.2 KB
/
detector.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
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
package lifecycle
import (
"bytes"
"fmt"
"io/ioutil"
"os"
"os/exec"
"path/filepath"
"sync"
"syscall"
"github.com/BurntSushi/toml"
"github.com/pkg/errors"
)
const (
CodeDetectPass = 0
CodeDetectFail = 100
)
var ErrFail = errors.New("no buildpacks participating")
type BuildPlan struct {
Entries []BuildPlanEntry `toml:"entries"`
}
type BuildPlanEntry struct {
Providers []Buildpack `toml:"providers"`
Requires []Require `toml:"requires"`
}
func (be BuildPlanEntry) noOpt() BuildPlanEntry {
var out []Buildpack
for _, p := range be.Providers {
out = append(out, p.noOpt())
}
be.Providers = out
return be
}
type Require struct {
Name string `toml:"name" json:"name"`
Version string `toml:"version" json:"version"`
Metadata map[string]interface{} `toml:"metadata" json:"metadata"`
}
type Provide struct {
Name string `toml:"name"`
}
type DetectConfig struct {
FullEnv []string
ClearEnv []string
AppDir string
PlatformDir string
BuildpacksDir string
Logger Logger
runs *sync.Map
}
func (c *DetectConfig) process(done []Buildpack) ([]Buildpack, []BuildPlanEntry, error) {
var runs []detectRun
for _, bp := range done {
t, ok := c.runs.Load(bp.String())
if !ok {
return nil, nil, errors.Errorf("missing detection of '%s'", bp)
}
run := t.(detectRun)
if len(run.Output) > 0 {
c.Logger.Debugf("======== Output: %s ========", bp)
c.Logger.Debug(string(run.Output))
}
if run.Err != nil {
c.Logger.Debugf("======== Error: %s ========", bp)
c.Logger.Debug(run.Err.Error())
}
runs = append(runs, run)
}
c.Logger.Debugf("======== Results ========")
results := detectResults{}
detected := true
for i, bp := range done {
run := runs[i]
switch run.Code {
case CodeDetectPass:
c.Logger.Debugf("pass: %s", bp)
results = append(results, detectResult{bp, run})
case CodeDetectFail:
if bp.Optional {
c.Logger.Debugf("skip: %s", bp)
} else {
c.Logger.Debugf("fail: %s", bp)
}
detected = detected && bp.Optional
case -1:
c.Logger.Debugf("err: %s", bp)
detected = detected && bp.Optional
default:
c.Logger.Debugf("err: %s (%d)", bp, run.Code)
detected = detected && bp.Optional
}
}
if !detected {
return nil, nil, ErrFail
}
i := 0
deps, trial, err := results.runTrials(func(trial detectTrial) (depMap, detectTrial, error) {
i++
return c.runTrial(i, trial)
})
if err != nil {
return nil, nil, err
}
if len(done) != len(trial) {
c.Logger.Infof("%d of %d buildpacks participating", len(trial), len(done))
}
maxLength := 0
for _, t := range trial {
l := len(t.ID)
if l > maxLength {
maxLength = l
}
}
f := fmt.Sprintf("%%-%ds %%s", maxLength)
for _, t := range trial {
c.Logger.Infof(f, t.ID, t.Version)
}
var found []Buildpack
for _, r := range trial {
found = append(found, r.Buildpack.noOpt())
}
var plan []BuildPlanEntry
for _, dep := range deps {
plan = append(plan, dep.BuildPlanEntry.noOpt())
}
return found, plan, nil
}
func (c *DetectConfig) runTrial(i int, trial detectTrial) (depMap, detectTrial, error) {
c.Logger.Debugf("Resolving plan... (try #%d)", i)
var deps depMap
retry := true
for retry {
retry = false
deps = newDepMap(trial)
if err := deps.eachUnmetRequire(func(name string, bp Buildpack) error {
retry = true
if !bp.Optional {
c.Logger.Debugf("fail: %s requires %s", bp, name)
return ErrFail
}
c.Logger.Debugf("skip: %s requires %s", bp, name)
trial = trial.remove(bp)
return nil
}); err != nil {
return nil, nil, err
}
if err := deps.eachUnmetProvide(func(name string, bp Buildpack) error {
retry = true
if !bp.Optional {
c.Logger.Debugf("fail: %s provides unused %s", bp, name)
return ErrFail
}
c.Logger.Debugf("skip: %s provides unused %s", bp, name)
trial = trial.remove(bp)
return nil
}); err != nil {
return nil, nil, err
}
}
if len(trial) == 0 {
c.Logger.Debugf("fail: no viable buildpacks in group")
return nil, nil, ErrFail
}
return deps, trial, nil
}
func (bp *buildpackTOML) Detect(c *DetectConfig) detectRun {
appDir, err := filepath.Abs(c.AppDir)
if err != nil {
return detectRun{Code: -1, Err: err}
}
platformDir, err := filepath.Abs(c.PlatformDir)
if err != nil {
return detectRun{Code: -1, Err: err}
}
planDir, err := ioutil.TempDir("", "plan.")
if err != nil {
return detectRun{Code: -1, Err: err}
}
defer os.RemoveAll(planDir)
planPath := filepath.Join(planDir, "plan.toml")
if err := ioutil.WriteFile(planPath, nil, 0777); err != nil {
return detectRun{Code: -1, Err: err}
}
out := &bytes.Buffer{}
cmd := exec.Command(
filepath.Join(bp.Path, "bin", "detect"),
platformDir,
planPath,
)
cmd.Dir = appDir
cmd.Stdout = out
cmd.Stderr = out
cmd.Env = c.FullEnv
if bp.Buildpack.ClearEnv {
cmd.Env = c.ClearEnv
}
if err := cmd.Run(); err != nil {
if err, ok := err.(*exec.ExitError); ok {
if status, ok := err.Sys().(syscall.WaitStatus); ok {
return detectRun{Code: status.ExitStatus(), Output: out.Bytes()}
}
}
return detectRun{Code: -1, Err: err, Output: out.Bytes()}
}
var t detectRun
if _, err := toml.DecodeFile(planPath, &t); err != nil {
return detectRun{Code: -1, Err: err}
}
t.Output = out.Bytes()
return t
}
type BuildpackGroup struct {
Group []Buildpack `toml:"group"`
}
func (bg BuildpackGroup) Detect(c *DetectConfig) (BuildpackGroup, BuildPlan, error) {
if c.runs == nil {
c.runs = &sync.Map{}
}
bps, entries, err := bg.detect(nil, &sync.WaitGroup{}, c)
return BuildpackGroup{Group: bps}, BuildPlan{Entries: entries}, err
}
func (bg BuildpackGroup) detect(done []Buildpack, wg *sync.WaitGroup, c *DetectConfig) ([]Buildpack, []BuildPlanEntry, error) {
for i, bp := range bg.Group {
key := bp.String()
if hasID(done, bp.ID) {
continue
}
info, err := bp.lookup(c.BuildpacksDir)
if err != nil {
return nil, nil, err
}
if info.Order != nil {
// TODO: double-check slice safety here
// FIXME: cyclical references lead to infinite recursion
return info.Order.detect(done, bg.Group[i+1:], bp.Optional, wg, c)
}
done = append(done, bp)
wg.Add(1)
go func() {
if _, ok := c.runs.Load(key); !ok {
c.runs.Store(key, info.Detect(c))
}
wg.Done()
}()
}
wg.Wait()
return c.process(done)
}
func (bg BuildpackGroup) append(group ...BuildpackGroup) BuildpackGroup {
for _, g := range group {
bg.Group = append(bg.Group, g.Group...)
}
return bg
}
type BuildpackOrder []BuildpackGroup
func (bo BuildpackOrder) Detect(c *DetectConfig) (BuildpackGroup, BuildPlan, error) {
if c.runs == nil {
c.runs = &sync.Map{}
}
bps, entries, err := bo.detect(nil, nil, false, &sync.WaitGroup{}, c)
return BuildpackGroup{Group: bps}, BuildPlan{Entries: entries}, err
}
func (bo BuildpackOrder) detect(done, next []Buildpack, optional bool, wg *sync.WaitGroup, c *DetectConfig) ([]Buildpack, []BuildPlanEntry, error) {
ngroup := BuildpackGroup{Group: next}
for _, group := range bo {
// FIXME: double-check slice safety here
found, plan, err := group.append(ngroup).detect(done, wg, c)
if err == ErrFail {
wg = &sync.WaitGroup{}
continue
}
return found, plan, err
}
if optional {
return ngroup.detect(done, wg, c)
}
return nil, nil, ErrFail
}
func hasID(bps []Buildpack, id string) bool {
for _, bp := range bps {
if bp.ID == id {
return true
}
}
return false
}
type detectRun struct {
planSections
Or []planSections `toml:"or"`
Output []byte `toml:"-"`
Code int `toml:"-"`
Err error `toml:"-"`
}
type planSections struct {
Requires []Require `toml:"requires"`
Provides []Provide `toml:"provides"`
}
type detectResult struct {
Buildpack
detectRun
}
func (r *detectResult) options() []detectOption {
var out []detectOption
for i, sections := range append([]planSections{r.planSections}, r.Or...) {
bp := r.Buildpack
bp.Optional = bp.Optional && i == len(r.Or)
out = append(out, detectOption{bp, sections})
}
return out
}
type detectResults []detectResult
type trialFunc func(detectTrial) (depMap, detectTrial, error)
func (rs detectResults) runTrials(f trialFunc) (depMap, detectTrial, error) {
return rs.runTrialsFrom(nil, f)
}
func (rs detectResults) runTrialsFrom(prefix detectTrial, f trialFunc) (depMap, detectTrial, error) {
if len(rs) == 0 {
deps, trial, err := f(prefix)
return deps, trial, err
}
var lastErr error
for _, option := range rs[0].options() {
deps, trial, err := rs[1:].runTrialsFrom(append(prefix, option), f)
if err == nil {
return deps, trial, nil
}
lastErr = err
}
return nil, nil, lastErr
}
type detectOption struct {
Buildpack
planSections
}
type detectTrial []detectOption
func (ts detectTrial) remove(bp Buildpack) detectTrial {
var out detectTrial
for _, t := range ts {
if t.Buildpack != bp {
out = append(out, t)
}
}
return out
}
type depEntry struct {
BuildPlanEntry
earlyRequires []Buildpack
extraProvides []Buildpack
}
type depMap map[string]depEntry
func newDepMap(trial detectTrial) depMap {
m := depMap{}
for _, option := range trial {
for _, p := range option.Provides {
m.provide(option.Buildpack, p)
}
for _, r := range option.Requires {
m.require(option.Buildpack, r)
}
}
return m
}
func (m depMap) provide(bp Buildpack, provide Provide) {
entry := m[provide.Name]
entry.extraProvides = append(entry.extraProvides, bp)
m[provide.Name] = entry
}
func (m depMap) require(bp Buildpack, require Require) {
entry := m[require.Name]
entry.Providers = append(entry.Providers, entry.extraProvides...)
entry.extraProvides = nil
if len(entry.Providers) == 0 {
entry.earlyRequires = append(entry.earlyRequires, bp)
} else {
entry.Requires = append(entry.Requires, require)
}
m[require.Name] = entry
}
func (m depMap) eachUnmetProvide(f func(name string, bp Buildpack) error) error {
for name, entry := range m {
if len(entry.extraProvides) != 0 {
for _, bp := range entry.extraProvides {
if err := f(name, bp); err != nil {
return err
}
}
}
}
return nil
}
func (m depMap) eachUnmetRequire(f func(name string, bp Buildpack) error) error {
for name, entry := range m {
if len(entry.earlyRequires) != 0 {
for _, bp := range entry.earlyRequires {
if err := f(name, bp); err != nil {
return err
}
}
}
}
return nil
}