-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy patherrors.go
81 lines (69 loc) · 1.7 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
73
74
75
76
77
78
79
80
81
package cmdchain
import (
"fmt"
"strings"
)
// MultipleErrors fusions multiple errors into one error. All underlying errors can be accessed.
// Normally the errors are saved by commands sequence. So if the first command in the chain occurs an
// error, this error will be placed at first in the error list.
type MultipleErrors struct {
errorMessage string
errors []error
hasError bool
}
// Errors returns the underlying errors.
func (e MultipleErrors) Errors() []error {
return e.errors
}
// Error fusions all error messages of the underlying errors and return them.
func (e MultipleErrors) Error() string {
sb := strings.Builder{}
sb.WriteString(e.errorMessage)
sb.WriteString(": [")
for i, err := range e.errors {
sb.WriteString(fmt.Sprintf("%d - ", i))
if err != nil {
sb.WriteString(err.Error())
}
if i+1 != len(e.errors) {
sb.WriteString("; ")
}
}
sb.WriteString("]")
return sb.String()
}
func (e *MultipleErrors) addError(err error) {
e.errors = append(e.errors, err)
if err != nil {
if mError, ok := err.(MultipleErrors); ok {
e.hasError = mError.hasError
} else {
e.hasError = true
}
}
}
func (e *MultipleErrors) setError(i int, err error) {
e.errors[i] = err
if err != nil {
if mError, ok := err.(MultipleErrors); ok {
e.hasError = mError.hasError
} else {
e.hasError = true
}
}
}
func runErrors() MultipleErrors {
return MultipleErrors{
errorMessage: "one or more command has returned an error",
}
}
func buildErrors() MultipleErrors {
return MultipleErrors{
errorMessage: "one or more chain build errors occurred",
}
}
func streamErrors() MultipleErrors {
return MultipleErrors{
errorMessage: "one or more command stream copies failed",
}
}