代码拉取完成,页面将自动刷新
package drivers
import (
"fmt"
"io"
"os"
"os/exec"
"path"
"strings"
"github.com/pkg/errors"
"github.com/sirupsen/logrus"
)
type DynamicDriver struct {
BaseDriver
}
var DockerMachineDriverPrefix = "docker-machine-driver-"
func NewDynamicDriver(builtin bool, name, url, hash string) *DynamicDriver {
d := &DynamicDriver{
BaseDriver{
Builtin: builtin,
DriverName: name,
URL: url,
DriverHash: hash,
BinaryPrefix: DockerMachineDriverPrefix,
},
}
if !strings.HasPrefix(d.DriverName, DockerMachineDriverPrefix) {
d.DriverName = DockerMachineDriverPrefix + d.DriverName
}
return d
}
func (d *DynamicDriver) Install() error {
if d.Builtin {
return nil
}
binaryPath := path.Join(binDir(), d.DriverName)
tmpPath := binaryPath + "-tmp"
f, err := os.OpenFile(tmpPath, os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0755)
if err != nil {
return errors.Wrapf(err, "Couldn't open %v for writing", tmpPath)
}
defer f.Close()
src, err := os.Open(d.srcBinName())
if err != nil {
return errors.Wrapf(err, "Couldn't open %v for copying", d.srcBinName())
}
defer src.Close()
logrus.Infof("Copying %v => %v", d.srcBinName(), tmpPath)
_, err = io.Copy(f, src)
if err != nil {
return errors.Wrapf(err, "Couldn't copy %v to %v", d.srcBinName(), tmpPath)
}
err = os.Rename(tmpPath, binaryPath)
if err != nil {
return errors.Wrapf(err, "Couldn't copy driver %v to %v", d.Name(), binaryPath)
}
return nil
}
func (d *BaseDriver) Excutable() error {
if d.DriverName == "" {
return fmt.Errorf("Empty driver name")
}
if d.Builtin {
return nil
}
binaryPath := path.Join(binDir(), d.DriverName)
_, err := os.Stat(binaryPath)
if err != nil {
return fmt.Errorf("Driver %s not found", binaryPath)
}
err = exec.Command(binaryPath).Start()
if err != nil {
return errors.Wrapf(err, "Driver binary %s couldn't execute", binaryPath)
}
return nil
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。