147 lines
3.0 KiB
Go
147 lines
3.0 KiB
Go
package command
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
jsonutil "github.com/mitchellh/packer/common/json"
|
|
"github.com/mitchellh/packer/packer"
|
|
"io/ioutil"
|
|
"log"
|
|
"os"
|
|
)
|
|
|
|
// BuildOptions is a set of options related to builds that can be set
|
|
// from the command line.
|
|
type BuildOptions struct {
|
|
UserVarFiles []string
|
|
UserVars map[string]string
|
|
Except []string
|
|
Only []string
|
|
}
|
|
|
|
// Validate validates the options
|
|
func (f *BuildOptions) Validate() error {
|
|
if len(f.Except) > 0 && len(f.Only) > 0 {
|
|
return errors.New("Only one of '-except' or '-only' may be specified.")
|
|
}
|
|
|
|
if len(f.UserVarFiles) > 0 {
|
|
for _, path := range f.UserVarFiles {
|
|
if _, err := os.Stat(path); err != nil {
|
|
return fmt.Errorf("Cannot access: %s", path)
|
|
}
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// AllUserVars returns the user variables, compiled from both the
|
|
// file paths and the vars on the command line.
|
|
func (f *BuildOptions) AllUserVars() (map[string]string, error) {
|
|
all := make(map[string]string)
|
|
|
|
// Copy in the variables from the files
|
|
for _, path := range f.UserVarFiles {
|
|
fileVars, err := readFileVars(path)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
for k, v := range fileVars {
|
|
all[k] = v
|
|
}
|
|
}
|
|
|
|
// Copy in the command-line vars
|
|
for k, v := range f.UserVars {
|
|
all[k] = v
|
|
}
|
|
|
|
return all, nil
|
|
}
|
|
|
|
// Builds returns the builds out of the given template that pass the
|
|
// configured options.
|
|
func (f *BuildOptions) Builds(t *packer.Template, cf *packer.ComponentFinder) ([]packer.Build, error) {
|
|
buildNames := t.BuildNames()
|
|
|
|
checks := make(map[string][]string)
|
|
checks["except"] = f.Except
|
|
checks["only"] = f.Only
|
|
for t, ns := range checks {
|
|
for _, n := range ns {
|
|
found := false
|
|
for _, actual := range buildNames {
|
|
if actual == n {
|
|
found = true
|
|
break
|
|
}
|
|
}
|
|
|
|
if !found {
|
|
return nil, fmt.Errorf(
|
|
"Unknown build in '%s' flag: %s", t, n)
|
|
}
|
|
}
|
|
}
|
|
|
|
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
|
|
}
|
|
|
|
func readFileVars(path string) (map[string]string, error) {
|
|
bytes, err := ioutil.ReadFile(path)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
vars := make(map[string]string)
|
|
err = jsonutil.Unmarshal(bytes, &vars)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return vars, nil
|
|
}
|