2013-05-08 20:28:05 -04:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2013-06-09 01:26:49 -04:00
|
|
|
"encoding/json"
|
2013-06-17 18:55:21 -04:00
|
|
|
"github.com/mitchellh/osext"
|
2013-05-08 20:28:05 -04:00
|
|
|
"github.com/mitchellh/packer/packer"
|
|
|
|
"github.com/mitchellh/packer/packer/plugin"
|
2013-06-09 01:26:49 -04:00
|
|
|
"io"
|
2013-05-08 20:28:05 -04:00
|
|
|
"log"
|
|
|
|
"os/exec"
|
2013-06-17 18:55:21 -04:00
|
|
|
"path/filepath"
|
2013-05-08 20:28:05 -04:00
|
|
|
)
|
|
|
|
|
2013-05-08 21:13:15 -04:00
|
|
|
// This is the default, built-in configuration that ships with
|
|
|
|
// Packer.
|
|
|
|
const defaultConfig = `
|
2013-06-09 01:26:49 -04:00
|
|
|
{
|
2013-06-11 13:39:06 -04:00
|
|
|
"plugin_min_port": 10000,
|
|
|
|
"plugin_max_port": 25000,
|
|
|
|
|
2013-06-09 01:26:49 -04:00
|
|
|
"builders": {
|
|
|
|
"amazon-ebs": "packer-builder-amazon-ebs",
|
2013-06-18 19:52:22 -04:00
|
|
|
"digitalocean": "packer-builder-digitalocean",
|
2013-06-11 18:12:45 -04:00
|
|
|
"virtualbox": "packer-builder-virtualbox",
|
2013-06-09 01:26:49 -04:00
|
|
|
"vmware": "packer-builder-vmware"
|
|
|
|
},
|
|
|
|
|
|
|
|
"commands": {
|
2013-06-13 13:03:44 -04:00
|
|
|
"build": "packer-command-build",
|
2013-07-14 02:29:19 -04:00
|
|
|
"fix": "packer-command-fix",
|
2013-06-13 13:03:44 -04:00
|
|
|
"validate": "packer-command-validate"
|
2013-06-09 01:26:49 -04:00
|
|
|
},
|
|
|
|
|
2013-06-19 00:18:41 -04:00
|
|
|
"post-processors": {
|
2013-06-27 17:06:14 -04:00
|
|
|
"vagrant": "packer-post-processor-vagrant"
|
2013-06-19 00:18:41 -04:00
|
|
|
},
|
|
|
|
|
2013-06-09 01:26:49 -04:00
|
|
|
"provisioners": {
|
2013-07-02 22:11:30 -04:00
|
|
|
"file": "packer-provisioner-file",
|
2013-06-09 01:26:49 -04:00
|
|
|
"shell": "packer-provisioner-shell"
|
|
|
|
}
|
|
|
|
}
|
2013-05-08 21:13:15 -04:00
|
|
|
`
|
|
|
|
|
2013-05-08 20:28:05 -04:00
|
|
|
type config struct {
|
2013-06-11 13:39:06 -04:00
|
|
|
PluginMinPort uint
|
|
|
|
PluginMaxPort uint
|
|
|
|
|
2013-06-18 14:00:31 -04:00
|
|
|
Builders map[string]string
|
|
|
|
Commands map[string]string
|
|
|
|
PostProcessors map[string]string `json:"post-processors"`
|
|
|
|
Provisioners map[string]string
|
2013-05-08 20:28:05 -04:00
|
|
|
}
|
|
|
|
|
2013-06-09 01:26:49 -04:00
|
|
|
// Decodes configuration in JSON format from the given io.Reader into
|
|
|
|
// the config object pointed to.
|
|
|
|
func decodeConfig(r io.Reader, c *config) error {
|
|
|
|
decoder := json.NewDecoder(r)
|
|
|
|
return decoder.Decode(c)
|
2013-05-08 20:28:05 -04:00
|
|
|
}
|
|
|
|
|
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))
|
2013-06-17 19:36:22 -04:00
|
|
|
for name := range c.Commands {
|
2013-05-08 20:28:05 -04:00
|
|
|
result = append(result, name)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2013-06-09 01:26:49 -04:00
|
|
|
// This is a proper packer.BuilderFunc that can be used to load packer.Builder
|
|
|
|
// implementations from the defined plugins.
|
2013-05-09 00:05:35 -04:00
|
|
|
func (c *config) LoadBuilder(name string) (packer.Builder, error) {
|
|
|
|
log.Printf("Loading builder: %s\n", name)
|
|
|
|
bin, ok := c.Builders[name]
|
|
|
|
if !ok {
|
|
|
|
log.Printf("Builder not found: %s\n", name)
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
2013-06-11 14:06:23 -04:00
|
|
|
return c.pluginClient(bin).Builder()
|
2013-05-09 00:05:35 -04:00
|
|
|
}
|
|
|
|
|
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.
|
2013-05-08 20:28:05 -04:00
|
|
|
func (c *config) LoadCommand(name string) (packer.Command, error) {
|
|
|
|
log.Printf("Loading command: %s\n", name)
|
2013-06-11 14:06:23 -04:00
|
|
|
bin, ok := c.Commands[name]
|
2013-05-08 20:28:05 -04:00
|
|
|
if !ok {
|
|
|
|
log.Printf("Command not found: %s\n", name)
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
2013-06-11 14:06:23 -04:00
|
|
|
return c.pluginClient(bin).Command()
|
2013-05-08 20:28:05 -04:00
|
|
|
}
|
2013-05-11 14:11:40 -04:00
|
|
|
|
2013-06-09 01:26:49 -04:00
|
|
|
// This is a proper implementation of packer.HookFunc that can be used
|
|
|
|
// to load packer.Hook implementations from the defined plugins.
|
2013-05-11 14:11:40 -04:00
|
|
|
func (c *config) LoadHook(name string) (packer.Hook, error) {
|
|
|
|
log.Printf("Loading hook: %s\n", name)
|
2013-06-11 14:06:23 -04:00
|
|
|
return c.pluginClient(name).Hook()
|
2013-05-11 14:11:40 -04:00
|
|
|
}
|
2013-05-24 00:39:00 -04:00
|
|
|
|
2013-06-18 14:00:31 -04:00
|
|
|
// This is a proper packer.PostProcessorFunc that can be used to load
|
|
|
|
// packer.PostProcessor implementations from defined plugins.
|
|
|
|
func (c *config) LoadPostProcessor(name string) (packer.PostProcessor, error) {
|
|
|
|
log.Printf("Loading post-processor: %s", name)
|
|
|
|
bin, ok := c.PostProcessors[name]
|
|
|
|
if !ok {
|
|
|
|
log.Printf("Post-processor not found: %s", name)
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return c.pluginClient(bin).PostProcessor()
|
|
|
|
}
|
|
|
|
|
2013-06-09 01:26:49 -04:00
|
|
|
// This is a proper packer.ProvisionerFunc that can be used to load
|
|
|
|
// packer.Provisioner implementations from defined plugins.
|
2013-05-24 00:39:00 -04:00
|
|
|
func (c *config) LoadProvisioner(name string) (packer.Provisioner, error) {
|
|
|
|
log.Printf("Loading provisioner: %s\n", name)
|
2013-06-11 14:06:23 -04:00
|
|
|
bin, ok := c.Provisioners[name]
|
2013-05-24 00:39:00 -04:00
|
|
|
if !ok {
|
|
|
|
log.Printf("Provisioner not found: %s\n", name)
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
2013-06-11 14:06:23 -04:00
|
|
|
return c.pluginClient(bin).Provisioner()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *config) pluginClient(path string) *plugin.Client {
|
2013-06-17 18:55:21 -04:00
|
|
|
originalPath := path
|
|
|
|
|
|
|
|
// First attempt to find the executable by consulting the PATH.
|
|
|
|
path, err := exec.LookPath(path)
|
|
|
|
if err != nil {
|
|
|
|
// If that doesn't work, look for it in the same directory
|
|
|
|
// as the `packer` executable (us).
|
|
|
|
log.Printf("Plugin could not be found. Checking same directory as executable.")
|
|
|
|
exePath, err := osext.Executable()
|
|
|
|
if err != nil {
|
|
|
|
log.Printf("Couldn't get current exe path: %s", err)
|
|
|
|
} else {
|
|
|
|
log.Printf("Current exe path: %s", exePath)
|
|
|
|
path = filepath.Join(filepath.Dir(exePath), filepath.Base(originalPath))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// If everything failed, just use the original path and let the error
|
|
|
|
// bubble through.
|
|
|
|
if path == "" {
|
|
|
|
path = originalPath
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Printf("Creating plugin client for path: %s", path)
|
2013-06-11 14:06:23 -04:00
|
|
|
var config plugin.ClientConfig
|
|
|
|
config.Cmd = exec.Command(path)
|
|
|
|
config.Managed = true
|
2013-06-11 14:08:21 -04:00
|
|
|
config.MinPort = c.PluginMinPort
|
|
|
|
config.MaxPort = c.PluginMaxPort
|
2013-06-11 14:06:23 -04:00
|
|
|
return plugin.NewClient(&config)
|
2013-05-24 00:39:00 -04:00
|
|
|
}
|