-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy patherrors.go
72 lines (63 loc) · 2.22 KB
/
errors.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
package zfs
import (
"errors"
"regexp"
"strings"
)
var (
BadPropGet = regexp.MustCompile(`bad property list: invalid property '.+'$`)
BadPropSet = regexp.MustCompile(`cannot set property for '.+': invalid property '.+'$`)
NeedRec = regexp.MustCompile(`cannot destroy '.+': filesystem has children$`)
NotExist = regexp.MustCompile(`cannot open '.+': dataset does not exist$`)
NotMounted = regexp.MustCompile(`^filesystem successfully created, but not mounted`)
NeedSudo = regexp.MustCompile(`need sudo`)
AllreadyExists = regexp.MustCompile(`fs .+ already exists$`)
PromoteNotClone = regexp.MustCompile(`cannot promote '.+': not a cloned filesystem$`)
InvalidDataset = regexp.MustCompile(`invalid( dataset)? name$`)
ReceiverExists = regexp.MustCompile(`cannot receive new filesystem stream: destination '.+' exists$`)
MostRecentNotMatch = regexp.MustCompile(`cannot receive incremental stream: most recent snapshot of '.+' does not`)
BrokenPipe = regexp.MustCompile(`broken pipe$`)
PoolError = errors.New("error creating clone: source and target in different pools")
)
func joinErrs(errs []string) string {
return strings.Join(errs, "; ")
}
func parseError(err error, stderr []byte) error {
if err == nil {
return nil
}
var errs []string
if stderr != nil {
errs = strings.Split(string(stderr), "\n")
} else {
errs = strings.Split(string(err.Error()), "\n")
}
if strings.Contains(errs[0], "exit status") {
if len(errs) > 1 {
errs = errs[1:]
} else {
errs = []string{errs[0]}
}
}
if errs[len(errs)-1] == "" {
errs = errs[:len(errs)-1]
}
switch {
case BadPropGet.MatchString(errs[0]):
return errors.New(errs[0])
case NeedRec.MatchString(errs[0]):
return errors.New(errs[0])
case NotExist.MatchString(errs[0]):
return errors.New(errs[0])
case NotMounted.MatchString(errs[len(errs)-1]):
return errors.New(errs[len(errs)-1] + " need sudo to mount")
case InvalidDataset.MatchString(errs[0]):
return errors.New(errs[0])
case ReceiverExists.MatchString(errs[0]):
return errors.New(errs[0])
case MostRecentNotMatch.MatchString(errs[0]):
return errors.New(strings.Join(errs, " "))
default:
return errors.New(joinErrs(errs))
}
}