-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherrors.go
83 lines (72 loc) · 1.71 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
82
83
package logwhale
import (
"fmt"
"strings"
)
// ErrorState defines a set of concrete error states that can be encountered by the LogManager.
type ErrorState int
// String() returns a string representation of the ErrorState.
func (es ErrorState) String() string {
switch es {
case ErrorStateUnknown:
return "Unknown"
case ErrorStateEndOfStream:
return "End of stream"
case ErrorStateFileNotExist:
return "File does not exist"
case ErrorStateFileRemoved:
return "File removed"
case ErrorStateCancelled:
return "Operation cancelled"
case ErrorStateFSWatcher:
return "FS watch process error"
case ErrorStateFilePath:
return "File path error"
case ErrorStateFileIO:
return "File IO error"
case ErrorStateInternal:
return "Internal exception"
default:
return "Unknown"
}
}
const (
ErrorStateUnknown ErrorState = iota
ErrorStateCancelled
ErrorStateFSWatcher
ErrorStateFilePath
ErrorStateFileNotExist
ErrorStateFileRemoved
ErrorStateFileIO
ErrorStateEndOfStream
ErrorStateInternal
)
type LogWhaleError struct {
State ErrorState
Msg string
Cause error
}
func NewLogWhaleError(state ErrorState, msg string, cause error) *LogWhaleError {
return &LogWhaleError{
State: state,
Msg: msg,
Cause: cause,
}
}
// Error satisfies the error interface.
func (e *LogWhaleError) Error() string {
es := strings.Builder{}
es.WriteString(fmt.Sprintf("state: %s", e.State))
if len(e.Msg) != 0 {
es.WriteString(fmt.Sprintf(" msg: %s", e.Msg))
}
if e.Cause != nil {
es.WriteString(fmt.Sprintf(" cause: %s", e.Cause))
}
return es.String()
}
// Unwrap satisfies the Wrapper interface. It allows the
// LogWhaleError to work with and errors.As.
func (e *LogWhaleError) Unwrap() error {
return e.Cause
}