packer-cn/config.go

79 lines
1.8 KiB
Go
Raw Normal View History

package main
import (
2013-05-08 21:13:15 -04:00
"github.com/BurntSushi/toml"
"github.com/mitchellh/packer/packer"
"github.com/mitchellh/packer/packer/plugin"
"log"
"os/exec"
)
2013-05-08 21:13:15 -04:00
// This is the default, built-in configuration that ships with
// Packer.
const defaultConfig = `
[commands]
build = "packer-command-build"
`
type config struct {
2013-05-08 21:13:15 -04:00
Builders map[string]string
Commands map[string]string
}
2013-05-08 23:37:07 -04:00
// Merge the configurations. Anything in the "new" configuration takes
// precedence over the "old" configuration.
func mergeConfig(a, b *config) *config {
configs := []*config{a, b}
result := newConfig()
for _, config := range configs {
for k, v := range config.Builders {
result.Builders[k] = v
}
for k, v := range config.Commands {
result.Commands[k] = v
}
}
return result
}
// Creates and initializes a new config struct.
func newConfig() *config {
result := new(config)
result.Builders = make(map[string]string)
result.Commands = make(map[string]string)
return result
}
2013-05-08 21:13:15 -04:00
// Parses a configuration file and returns a proper configuration
// struct.
func parseConfig(data string) (result *config, err error) {
result = new(config)
2013-05-08 21:13:15 -04:00
_, err = toml.Decode(data, &result)
return
}
2013-05-08 21:13:15 -04:00
// Returns an array of defined command names.
func (c *config) CommandNames() (result []string) {
result = make([]string, 0, len(c.Commands))
for name, _ := range c.Commands {
result = append(result, name)
}
return
}
2013-05-08 21:13:15 -04:00
// This is a proper packer.CommandFunc that can be used to load packer.Command
// implementations from the defined plugins.
func (c *config) LoadCommand(name string) (packer.Command, error) {
log.Printf("Loading command: %s\n", name)
2013-05-08 21:13:15 -04:00
commandBin, ok := c.Commands[name]
if !ok {
log.Printf("Command not found: %s\n", name)
return nil, nil
}
return plugin.Command(exec.Command(commandBin))
}