-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy patherror.go
57 lines (50 loc) · 1.17 KB
/
error.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
package pipe
import (
"errors"
"fmt"
"strings"
)
// ErrorRun is returned if runner was successfully started, but execution
// and/or flush failed.
type ErrorRun struct {
ErrExec error
ErrFlush error
}
func (e *ErrorRun) Error() string {
switch {
case e.ErrExec != nil && e.ErrFlush != nil:
return fmt.Sprintf("flush error: %v after execute error: %v", e.ErrFlush, e.ErrExec)
case e.ErrExec != nil:
return fmt.Sprintf("execute error: %v", e.ErrFlush)
case e.ErrFlush != nil:
return fmt.Sprintf("flush error: %v", e.ErrFlush)
}
return ""
}
// Is checks if any of errors match provided sentinel error.q
func (e *ErrorRun) Is(err error) bool {
if e.ErrExec != nil && errors.Is(e.ErrExec, err) {
return true
}
if e.ErrFlush != nil && errors.Is(e.ErrFlush, err) {
return true
}
return false
}
// execErrors wraps errors that might occure when multiple executors
// are failing.
type execErrors []error
func (e execErrors) Error() string {
s := []string{}
for _, se := range e {
s = append(s, se.Error())
}
return strings.Join(s, ",")
}
// ret returns untyped nil if error is list is empty.
func (e execErrors) ret() error {
if len(e) > 0 {
return e
}
return nil
}