2013-08-09 18:10:24 -04:00
|
|
|
package command
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"github.com/mitchellh/packer/packer"
|
|
|
|
"log"
|
|
|
|
)
|
|
|
|
|
2013-08-09 18:21:24 -04:00
|
|
|
// BuildOptions is a set of options related to builds that can be set
|
|
|
|
// from the command line.
|
|
|
|
type BuildOptions struct {
|
2013-08-09 18:41:40 -04:00
|
|
|
UserVars map[string]string
|
|
|
|
Except []string
|
|
|
|
Only []string
|
2013-08-09 18:10:24 -04:00
|
|
|
}
|
|
|
|
|
2013-08-09 18:21:24 -04:00
|
|
|
// Validate validates the options
|
|
|
|
func (f *BuildOptions) Validate() error {
|
2013-08-09 18:10:24 -04:00
|
|
|
if len(f.Except) > 0 && len(f.Only) > 0 {
|
|
|
|
return errors.New("Only one of '-except' or '-only' may be specified.")
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Builds returns the builds out of the given template that pass the
|
2013-08-09 18:21:24 -04:00
|
|
|
// configured options.
|
|
|
|
func (f *BuildOptions) Builds(t *packer.Template, cf *packer.ComponentFinder) ([]packer.Build, error) {
|
2013-08-09 18:10:24 -04:00
|
|
|
buildNames := t.BuildNames()
|
|
|
|
builds := make([]packer.Build, 0, len(buildNames))
|
|
|
|
for _, buildName := range buildNames {
|
|
|
|
if len(f.Except) > 0 {
|
|
|
|
found := false
|
|
|
|
for _, except := range f.Except {
|
|
|
|
if buildName == except {
|
|
|
|
found = true
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if found {
|
|
|
|
log.Printf("Skipping build '%s' because specified by -except.", buildName)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(f.Only) > 0 {
|
|
|
|
found := false
|
|
|
|
for _, only := range f.Only {
|
|
|
|
if buildName == only {
|
|
|
|
found = true
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if !found {
|
|
|
|
log.Printf("Skipping build '%s' because not specified by -only.", buildName)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Printf("Creating build: %s", buildName)
|
|
|
|
build, err := t.Build(buildName, cf)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("Failed to create build '%s': \n\n%s", buildName, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
builds = append(builds, build)
|
|
|
|
}
|
|
|
|
|
|
|
|
return builds, nil
|
|
|
|
}
|