2013-03-25 19:29:26 -04:00
|
|
|
package packer
|
|
|
|
|
2013-05-09 16:26:40 -04:00
|
|
|
import "log"
|
|
|
|
|
2013-05-03 23:45:38 -04:00
|
|
|
// A Build represents a single job within Packer that is responsible for
|
|
|
|
// building some machine image artifact. Builds are meant to be parallelized.
|
|
|
|
type Build interface {
|
2013-05-09 14:32:03 -04:00
|
|
|
Name() string
|
2013-05-22 19:20:40 -04:00
|
|
|
Prepare(Ui) error
|
2013-05-22 01:38:41 -04:00
|
|
|
Run(Ui) Artifact
|
2013-05-03 23:45:38 -04:00
|
|
|
}
|
|
|
|
|
2013-03-25 19:29:26 -04:00
|
|
|
// A build struct represents a single build job, the result of which should
|
|
|
|
// be a single machine image artifact. This artifact may be comprised of
|
|
|
|
// multiple files, of course, but it should be for only a single provider
|
|
|
|
// (such as VirtualBox, EC2, etc.).
|
2013-05-03 23:45:38 -04:00
|
|
|
type coreBuild struct {
|
2013-05-22 19:15:57 -04:00
|
|
|
name string
|
|
|
|
builder Builder
|
|
|
|
builderConfig interface{}
|
|
|
|
hooks map[string][]Hook
|
|
|
|
provisioners []coreBuildProvisioner
|
2013-04-20 22:03:53 -04:00
|
|
|
|
|
|
|
prepareCalled bool
|
2013-03-25 19:29:26 -04:00
|
|
|
}
|
|
|
|
|
2013-05-22 19:15:57 -04:00
|
|
|
// Keeps track of the provisioner and the configuration of the provisioner
|
|
|
|
// within the build.
|
|
|
|
type coreBuildProvisioner struct {
|
|
|
|
provisioner Provisioner
|
|
|
|
config interface{}
|
|
|
|
}
|
|
|
|
|
2013-05-09 14:32:03 -04:00
|
|
|
// Returns the name of the build.
|
|
|
|
func (b *coreBuild) Name() string {
|
|
|
|
return b.name
|
|
|
|
}
|
|
|
|
|
2013-04-20 21:55:02 -04:00
|
|
|
// Prepare prepares the build by doing some initialization for the builder
|
|
|
|
// and any hooks. This _must_ be called prior to Run.
|
2013-05-22 19:20:40 -04:00
|
|
|
func (b *coreBuild) Prepare(ui Ui) (err error) {
|
2013-04-20 22:03:53 -04:00
|
|
|
b.prepareCalled = true
|
2013-05-22 19:15:57 -04:00
|
|
|
err = b.builder.Prepare(b.builderConfig)
|
2013-05-09 16:26:40 -04:00
|
|
|
if err != nil {
|
|
|
|
log.Printf("Build '%s' prepare failure: %s\n", b.name, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return
|
2013-04-20 21:55:02 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Runs the actual build. Prepare must be called prior to running this.
|
2013-05-22 01:38:41 -04:00
|
|
|
func (b *coreBuild) Run(ui Ui) Artifact {
|
2013-04-20 22:03:53 -04:00
|
|
|
if !b.prepareCalled {
|
|
|
|
panic("Prepare must be called first")
|
|
|
|
}
|
|
|
|
|
2013-05-11 13:27:07 -04:00
|
|
|
hook := &DispatchHook{b.hooks}
|
2013-05-22 01:38:41 -04:00
|
|
|
return b.builder.Run(ui, hook)
|
2013-04-20 21:55:02 -04:00
|
|
|
}
|