2013-11-07 15:28:41 -05:00
|
|
|
package vmware
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
)
|
|
|
|
|
|
|
|
// OutputDir is an interface type that abstracts the creation and handling
|
|
|
|
// of the output directory for VMware-based products. The abstraction is made
|
|
|
|
// so that the output directory can be properly made on remote (ESXi) based
|
|
|
|
// VMware products as well as local.
|
|
|
|
type OutputDir interface {
|
2013-11-08 00:18:25 -05:00
|
|
|
DirExists() (bool, error)
|
|
|
|
MkdirAll() error
|
|
|
|
RemoveAll() error
|
|
|
|
SetOutputDir(string)
|
2013-11-07 15:28:41 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// localOutputDir is an OutputDir implementation where the directory
|
|
|
|
// is on the local machine.
|
2013-11-08 00:18:25 -05:00
|
|
|
type localOutputDir struct {
|
|
|
|
dir string
|
|
|
|
}
|
2013-11-07 15:28:41 -05:00
|
|
|
|
2013-11-08 00:18:25 -05:00
|
|
|
func (d *localOutputDir) DirExists() (bool, error) {
|
|
|
|
_, err := os.Stat(d.dir)
|
2013-11-08 14:48:04 -05:00
|
|
|
return err == nil, nil
|
2013-11-07 15:28:41 -05:00
|
|
|
}
|
|
|
|
|
2013-11-08 00:18:25 -05:00
|
|
|
func (d *localOutputDir) MkdirAll() error {
|
|
|
|
return os.MkdirAll(d.dir, 0755)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (d *localOutputDir) RemoveAll() error {
|
|
|
|
return os.RemoveAll(d.dir)
|
2013-11-07 15:28:41 -05:00
|
|
|
}
|
|
|
|
|
2013-11-08 00:18:25 -05:00
|
|
|
func (d *localOutputDir) SetOutputDir(path string) {
|
|
|
|
d.dir = path
|
2013-11-07 15:28:41 -05:00
|
|
|
}
|