forked from openshift/origin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
errors.go
48 lines (42 loc) · 1.02 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
package exec
import (
"bytes"
"fmt"
"github.com/openshift/origin/pkg/oc/clusterup/docker/errors"
)
type execError struct {
error
stdOut string
stdErr string
container string
cmd []string
rc int
}
func newExecError(cause error, rc int, stdOut, errOut string, container string, cmd []string) error {
return &execError{
error: errors.NewError("Docker exec error").WithCause(cause),
stdOut: stdOut,
stdErr: errOut,
container: container,
cmd: cmd,
rc: rc,
}
}
func (e *execError) Details() string {
out := &bytes.Buffer{}
fmt.Fprintf(out, "Container: %s\n", e.container)
fmt.Fprintf(out, "Command: %v\n", e.cmd)
fmt.Fprintf(out, "Result Code: %d\n", e.rc)
if len(e.stdOut) > 0 {
errors.PrintLog(out, "Output", e.stdOut)
}
if len(e.stdErr) > 0 {
errors.PrintLog(out, "Error Output", e.stdErr)
}
return out.String()
}
// IsExecError returns true if the given error is an execError
func IsExecError(err error) bool {
_, isExec := err.(*execError)
return isExec
}