-
Notifications
You must be signed in to change notification settings - Fork 388
/
error.go
290 lines (238 loc) · 5.38 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
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
package errcode
import (
"fmt"
"io"
"golang.org/x/xerrors"
"google.golang.org/grpc/codes"
"google.golang.org/grpc/status"
)
type WithCode interface {
error
Code() ErrCode
}
// Codes returns a list of wrapped codes
func Codes(err error) []ErrCode {
if err == nil {
return nil
}
codes := []ErrCode{}
if st := getGRPCStatus(err); st != nil {
return codesFromGRPCStatus(st)
}
if code := Code(err); code != -1 {
codes = []ErrCode{code}
}
if cause := genericCause(err); cause != nil {
causeCodes := Codes(cause)
if len(causeCodes) > 0 {
codes = append(codes, Codes(cause)...)
}
}
return codes
}
// Has returns true if one of the error is or contains (wraps) an expected errcode
func Has(err error, code WithCode) bool {
if Code(err) == code.Code() {
return true
}
if cause := genericCause(err); cause != nil {
return Has(cause, code)
}
return false
}
// Is returns true if the top-level error (not the FirstCode) is actually an ErrCode of the same value
func Is(err error, code WithCode) bool {
return Code(err) == code.Code()
}
// Code returns the code of the actual error without trying to unwrap it, or -1.
func Code(err error) ErrCode {
if err == nil {
return -1
}
if typed, ok := err.(WithCode); ok {
return typed.Code()
}
if st := getGRPCStatus(err); st != nil {
codes := codesFromGRPCStatus(st)
if len(codes) > 0 {
return codes[0]
}
return -1
}
return -1
}
// LastCode walks the passed error and returns the code of the latest ErrCode, or -1.
func LastCode(err error) ErrCode {
if err == nil {
return -1
}
if cause := genericCause(err); cause != nil {
if ret := LastCode(cause); ret != -1 {
return ret
}
}
if st := getGRPCStatus(err); st != nil {
codes := codesFromGRPCStatus(st)
if len(codes) > 0 {
return codes[len(codes)-1]
}
return -1
}
return Code(err)
}
// FirstCode walks the passed error and returns the code of the first ErrCode met, or -1.
func FirstCode(err error) ErrCode {
if err == nil {
return -1
}
if code := Code(err); code != -1 {
return code
}
if cause := genericCause(err); cause != nil {
return FirstCode(cause)
}
return -1
}
func genericCause(err error) error {
type causer interface{ Cause() error }
type wrapper interface{ Unwrap() error }
if causer, ok := err.(causer); ok {
return causer.Cause()
}
if wrapper, ok := err.(wrapper); ok {
return wrapper.Unwrap()
}
return nil
}
//
// Error
//
func (e ErrCode) Error() string {
name, ok := ErrCode_name[int32(e)]
if ok {
return fmt.Sprintf("%s(#%d)", name, e)
}
return fmt.Sprintf("UNKNOWN_ERRCODE(#%d)", e)
}
func (e ErrCode) Code() ErrCode {
return e
}
func (e ErrCode) Wrap(inner error) WithCode {
return wrappedError{
code: e,
inner: inner,
frame: xerrors.Caller(1),
}
}
func (e ErrCode) GRPCStatus() *status.Status {
code := grpcCodeFromWithCode(e)
st, _ := status.New(code, e.Error()).WithDetails(
&ErrDetails{Codes: Codes(e)},
)
return st
}
//
// ConfigurableError
//
type wrappedError struct {
code ErrCode
inner error
frame xerrors.Frame
}
func (e wrappedError) Error() string {
return fmt.Sprintf("%s: %v", e.code, e.inner)
}
func (e wrappedError) Code() ErrCode {
return e.code
}
// Cause returns the inner error (github.com/pkg/errors)
func (e wrappedError) Cause() error {
return e.inner
}
// Unwrap returns the inner error (go1.13)
func (e wrappedError) Unwrap() error {
return e.inner
}
func (e wrappedError) GRPCStatus() *status.Status {
code := grpcCodeFromWithCode(e)
st, _ := status.New(code, e.Error()).WithDetails(
&ErrDetails{Codes: Codes(e)},
)
return st
}
func (e wrappedError) Format(f fmt.State, c rune) {
xerrors.FormatError(e, f, c)
if f.Flag('+') {
_, _ = io.WriteString(f, "\n")
if sub := genericCause(e); sub != nil {
if typed, ok := sub.(wrappedError); ok {
sub = lightWrappedError{wrappedError: typed}
}
formatter, ok := sub.(fmt.Formatter)
if ok {
formatter.Format(f, c)
}
}
}
}
func (e wrappedError) FormatError(p xerrors.Printer) error {
p.Print(e.Error())
if p.Detail() {
e.frame.Format(p)
}
return nil
}
//
// light wrapper (used to make prettier (less verbose) stacks)
//
type lightWrappedError struct {
wrappedError
deepness int
}
func (e lightWrappedError) Error() string { return "" }
func (e lightWrappedError) Format(f fmt.State, c rune) {
xerrors.FormatError(e, f, c)
if f.Flag('+') {
_, _ = io.WriteString(f, "\n")
if sub := genericCause(e); sub != nil {
if typed, ok := sub.(wrappedError); ok {
sub = lightWrappedError{wrappedError: typed, deepness: e.deepness + 1}
}
formatter, ok := sub.(fmt.Formatter)
if ok {
formatter.Format(f, c)
}
}
}
}
func (e lightWrappedError) FormatError(p xerrors.Printer) error {
p.Printf("#%d", e.deepness+1)
e.frame.Format(p)
return nil
}
//
// gRPC helpers
//
func codesFromGRPCStatus(st *status.Status) []ErrCode {
details := st.Details()
for _, detail := range details {
if typed, ok := detail.(*ErrDetails); ok {
return typed.Codes
}
}
return nil
}
func grpcCodeFromWithCode(err WithCode) codes.Code {
// here, we can do a big switch case if we plan to make accurate gRPC codes
// but we probably don't care
return codes.Unavailable
}
type gRPCStatus interface{ GRPCStatus() *status.Status }
func getGRPCStatus(err error) *status.Status {
if _, ok := err.(WithCode); !ok {
if typed, ok := err.(gRPCStatus); ok {
return typed.GRPCStatus()
}
}
return nil
}