This repository has been archived by the owner on May 22, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 158
/
image.go
109 lines (92 loc) · 1.78 KB
/
image.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
package main
import (
"encoding/json"
"fmt"
"os"
"os/exec"
"time"
)
type ExportedImage struct {
Path string
JsonPath string
VersionPath string
LayerTarPath string
LayerDirPath string
LayerConfig *LayerConfig
}
func newLayerConfig(id, parent, comment string) *LayerConfig {
return &LayerConfig{
Id: id,
Parent: parent,
Comment: comment,
Created: time.Now().UTC(),
DockerVersion: "0.1.2",
Architecture: "x86_64",
}
}
func (e *ExportedImage) WriteVersion() error {
fp := e.VersionPath
f, err := os.Create(fp)
if err != nil {
return err
}
defer f.Close()
_, err = f.WriteString("1.0")
if err != nil {
return err
}
return err
}
func (e *ExportedImage) WriteJson() error {
fp := e.JsonPath
f, err := os.Create(fp)
if err != nil {
return err
}
defer f.Close()
jb, err := json.Marshal(e.LayerConfig)
if err != nil {
return err
}
_, err = f.WriteString(string(jb))
if err != nil {
return err
}
return err
}
func (e *ExportedImage) CreateDirs() error {
return os.MkdirAll(e.Path, 0755)
}
func (e *ExportedImage) TarLayer() error {
cwd, err := os.Getwd()
if err != nil {
return err
}
err = os.Chdir(e.LayerDirPath)
if err != nil {
return err
}
defer os.Chdir(cwd)
cmd := exec.Command("sudo", "/bin/sh", "-c", fmt.Sprintf("%s cvf ../layer.tar ./", TarCmd))
out, err := cmd.CombinedOutput()
if err != nil {
println(string(out))
return err
}
return nil
}
func (e *ExportedImage) RemoveLayerDir() error {
return os.RemoveAll(e.LayerDirPath)
}
func (e *ExportedImage) ExtractLayerDir() error {
err := os.MkdirAll(e.LayerDirPath, 0755)
if err != nil {
return err
}
out, err := extractTar(e.LayerTarPath, e.LayerDirPath)
if err != nil {
println(string(out))
return err
}
return nil
}