-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathfs.go
230 lines (181 loc) · 4.7 KB
/
fs.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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
package zfs
import (
"errors"
"fmt"
"io"
"strconv"
"strings"
"github.com/theairkit/runcmd"
)
type RecursiveFlag int
const (
RF_No RecursiveFlag = iota
RF_Soft
RF_Hard
)
type ZfsEntry interface {
GetProperty(string) (string, error)
GetPropertyInt(string) (int64, error)
SetProperty(string, string) error
GetPool() string
GetLastPath() string
Destroy(RecursiveFlag) error
Exists() (bool, error)
Receive() (runcmd.CmdWorker, io.WriteCloser, error)
getPath() string
}
type zfsEntryBase struct {
runner Zfs
Path string
}
func (z zfsEntryBase) GetProperty(prop string) (string, error) {
c := z.runner.Command("zfs", "get", "-Hp", "-o", "value", prop, z.Path)
stdout, stderr, err := c.Output()
if err != nil {
return "", parseError(err, stderr)
}
return strings.Split(string(stdout), "\n")[0], nil
}
func (z zfsEntryBase) GetPropertyInt(prop string) (int64, error) {
c := z.runner.Command("zfs", "get", "-Hp", "-o", "value", prop, z.Path)
stdout, stderr, err := c.Output()
if err != nil {
return 0, parseError(err, stderr)
}
val, err := strconv.ParseInt(strings.Split(string(stdout), "\n")[0], 10, 64)
if err != nil {
return 0, errors.New("error converting to int: " + err.Error())
}
return val, nil
}
func (z zfsEntryBase) getPath() string {
return z.Path
}
func (z zfsEntryBase) SetProperty(prop, value string) error {
c := z.runner.Command("zfs", "set", prop+"="+value, z.Path)
if _, stderr, err := c.Output(); err != nil {
return parseError(err, stderr)
}
out, err := z.GetProperty(prop)
if err != nil {
return err
}
if out != value {
return errors.New("property " + prop + " not set")
}
return nil
}
func (z zfsEntryBase) Destroy(recursive RecursiveFlag) error {
args := []string{"destroy"}
switch recursive {
case RF_Soft:
args = append(args, "-r")
case RF_Hard:
args = append(args, "-R")
}
args = append(args, z.Path)
c := z.runner.Command("zfs", args...)
_, stderr, err := c.Output()
return parseError(err, stderr)
}
func (z zfsEntryBase) Exists() (bool, error) {
c := z.runner.Command("zfs", "list", "-H", "-o", "name", z.Path)
stdout, stderr, err := c.Output()
if err == nil && strings.Split(string(stdout), "\n")[0] == z.Path {
return true, nil
}
err = parseError(err, stderr)
if err != nil && NotExist.MatchString(err.Error()) {
return false, nil
}
return false, err
}
func (z zfsEntryBase) Receive() (runcmd.CmdWorker, io.WriteCloser, error) {
c := z.runner.Command("zfs", "create", "-p", z.Path)
_, stderr, err := c.Output()
if err != nil {
return nil, nil, parseError(err, stderr)
}
c = z.runner.Command("zfs", "receive", "-F", z.Path)
stdinPipe, err := c.StdinPipe()
if err != nil {
return nil, nil, err
}
return c, stdinPipe, c.Start()
}
func (z zfsEntryBase) GetPool() string {
buf := strings.SplitN(z.Path, "/", 2)
return buf[0]
}
func (z zfsEntryBase) GetLastPath() string {
buf := strings.Split(z.Path, "/")
return buf[len(buf)-1]
}
type Fs struct {
zfsEntryBase
}
// See Zfs.CreateFs
func CreateFs(zfsPath string) (Fs, error) {
return std.CreateFs(zfsPath)
}
// Actually creates filesystem
func (z Zfs) CreateFs(zfsPath string) (Fs, error) {
fs := NewFs(zfsPath)
ok, err := fs.Exists()
if err != nil {
return z.NewFs(zfsPath), err
}
if ok {
return z.NewFs(zfsPath), errors.New(fmt.Sprintf("fs %s already exists", zfsPath))
}
c := z.Command("zfs", "create", "-p", zfsPath)
_, stderr, err := c.Output()
return z.NewFs(zfsPath), parseError(err, stderr)
}
// See Zfs.NewFs
func NewFs(zfsPath string) Fs {
return std.NewFs(zfsPath)
}
// Return Fs wrapper without any checks and actualy creation
func (z Zfs) NewFs(zfsPath string) Fs {
return Fs{zfsEntryBase{z, zfsPath}}
}
// See Zfs.ListFs
func ListFs(path string) ([]Fs, error) {
return std.ListFs(path)
}
// Return list of all found filesystems
func (z Zfs) ListFs(path string) ([]Fs, error) {
c := z.Command("zfs", "list", "-Hr", "-o", "name", path)
stdout, stderr, err := c.Output()
if err != nil {
err := parseError(err, stderr)
if NotExist.MatchString(err.Error()) {
return []Fs{}, nil
}
return []Fs{}, parseError(err, stderr)
}
filesystems := []Fs{}
for _, fs := range strings.Split(strings.TrimSpace(string(stdout)), "\n") {
if fs == "" {
continue
}
filesystems = append(filesystems, z.NewFs(fs))
}
return filesystems, nil
}
func (f Fs) Promote() error {
c := f.runner.Command("zfs", "promote", f.Path)
_, stderr, err := c.Output()
return parseError(err, stderr)
}
func (f Fs) Mount() error {
c := f.runner.Command("zfs", "mount", f.Path)
_, stderr, err := c.Output()
return parseError(err, stderr)
}
func (f Fs) Unmount() error {
c := f.runner.Command("zfs", "unmount", f.Path)
_, stderr, err := c.Output()
return parseError(err, stderr)
}