forked from rancher/rancher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
kontainer_driver.go
66 lines (55 loc) · 1.44 KB
/
kontainer_driver.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
package drivers
import (
"io"
"os"
"path"
"strings"
"github.com/pkg/errors"
"github.com/sirupsen/logrus"
)
type KontainerDriver struct {
BaseDriver
}
var KontainerDriverPrefix = "kontainer-engine-driver-"
func NewKontainerDriver(builtin bool, name, url, hash string) *KontainerDriver {
d := &KontainerDriver{
BaseDriver{
Builtin: builtin,
DriverName: name,
URL: url,
DriverHash: hash,
BinaryPrefix: KontainerDriverPrefix,
},
}
if !strings.HasPrefix(d.DriverName, KontainerDriverPrefix) {
d.DriverName = KontainerDriverPrefix + d.DriverName
}
return d
}
func (d *KontainerDriver) Install() (string, 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 binaryPath, nil
}