-
Notifications
You must be signed in to change notification settings - Fork 2
/
builder.go
89 lines (74 loc) · 2.09 KB
/
builder.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
package main
import (
"errors"
"log"
"github.com/hashicorp/packer/common"
"github.com/hashicorp/packer/packer"
"github.com/hashicorp/packer/helper/multistep"
)
type Builder struct {
config *Config
runner multistep.Runner
}
func NewBuilder() *Builder {
return &Builder{}
}
func (b *Builder) Prepare(raws ...interface{}) ([]string, error) {
c, warnings, errs := NewConfig(raws...)
if errs != nil {
return warnings, errs
}
b.config = c
//
// Quick fix to pass -force flag down to the wrapped builder
//
// https://github.com/themalkolm/packer-builder-vagrant/issues/2
//
b.config.BuilderConfig["packer_force"] = b.config.PackerForce
b.config.BuilderConfig["packer_debug"] = b.config.PackerDebug
b.config.BuilderConfig["packer_on_error"] = b.config.PackerOnError
b.config.BuilderConfig["packer_user_variables"] = b.config.PackerUserVars
return warnings, nil
}
func (b *Builder) Run(ui packer.Ui, hook packer.Hook, cache packer.Cache) (packer.Artifact, error) {
// Set up the state.
state := new(multistep.BasicStateBag)
state.Put("ui", ui)
state.Put("hook", hook)
state.Put("cache", cache)
// Build the steps.
steps := []multistep.Step{
&StepFetchBox{
URL: b.config.URL,
Name: b.config.Name,
Version: b.config.Version,
Provider: b.config.Provider,
BoxFile: b.config.BoxFile,
BuilderConfig: b.config.BuilderConfig,
},
&StepBuilder{
BuilderConfig: b.config.BuilderConfig,
},
}
// Run the steps.
b.runner = common.NewRunnerWithPauseFn(steps, b.config.PackerConfig, ui, state)
b.runner.Run(state)
// Report any errors.
if err, ok := state.GetOk("error"); ok {
return nil, err.(error)
}
// If we were interrupted or cancelled, then just exit.
if _, ok := state.GetOk(multistep.StateCancelled); ok {
return nil, errors.New("Build was cancelled.")
}
if _, ok := state.GetOk(multistep.StateHalted); ok {
return nil, errors.New("Build was halted.")
}
return state.Get("artifact").(packer.Artifact), nil
}
func (b *Builder) Cancel() {
if b.runner != nil {
log.Println("Cancelling the step runner...")
b.runner.Cancel()
}
}