builder/vmware/common: Fusion6Driver

This commit is contained in:
Mitchell Hashimoto 2013-12-26 14:54:26 -07:00
parent f23d66a1b9
commit 8fecdf179d
2 changed files with 66 additions and 0 deletions

View File

@ -62,6 +62,12 @@ func NewDriver(config *SSHConfig) (Driver, error) {
switch runtime.GOOS { switch runtime.GOOS {
case "darwin": case "darwin":
drivers = []Driver{ drivers = []Driver{
&Fusion6Driver{
Fusion5Driver: Fusion5Driver{
AppPath: "/Applications/VMware Fusion.app",
SSHConfig: config,
},
},
&Fusion5Driver{ &Fusion5Driver{
AppPath: "/Applications/VMware Fusion.app", AppPath: "/Applications/VMware Fusion.app",
SSHConfig: config, SSHConfig: config,

View File

@ -0,0 +1,60 @@
package common
import (
"bytes"
"errors"
"fmt"
"log"
"os"
"os/exec"
"path/filepath"
"regexp"
"strings"
)
// Fusion6Driver is a driver that can run VMWare Fusion 5.
type Fusion6Driver struct {
Fusion5Driver
}
func (d *Fusion6Driver) Clone(dst, src string) error {
return errors.New("Cloning is not supported with Fusion 5. Please use Fusion 6+.")
}
func (d *Fusion6Driver) Verify() error {
if err := d.Fusion5Driver.Verify(); err != nil {
return err
}
vmxpath := filepath.Join(d.AppPath, "Contents", "Library", "vmware-vmx")
if _, err := os.Stat(vmxpath); err != nil {
if os.IsNotExist(err) {
return fmt.Errorf("vmware-vmx could not be found at path: %s",
vmxpath)
}
return err
}
var stderr bytes.Buffer
cmd := exec.Command(vmxpath, "-v")
cmd.Stderr = &stderr
if err := cmd.Run(); err != nil {
return err
}
versionRe := regexp.MustCompile(`(?i)VMware [a-z0-9-]+ (\d+\.\d+\.\d+)\s`)
matches := versionRe.FindStringSubmatch(stderr.String())
if matches == nil {
return fmt.Errorf(
"Couldn't find VMware version in output: %s", stderr.String())
}
log.Printf("Detected VMware version: %s", matches[1])
if !strings.HasPrefix(matches[1], "6.") {
return fmt.Errorf(
"Fusion 6 not detected. Got version: %s", matches[1])
}
return nil
}