-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherrors.go
357 lines (292 loc) · 8.58 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
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
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
// Package errors wraps github.com/pkg/errors with some custom error functionality.
// Originally based on https://hackernoon.com/golang-handling-errors-gracefully-8e27f1db729f with
// some heavy modifications and bug fixes.
package errors
import (
stderrors "errors"
"fmt"
"strings"
pkgerrors "github.com/pkg/errors"
)
// ErrorType is the type of an error
type ErrorType uint
const (
// NoType error
NoType ErrorType = iota
// NotFound error
NotFound
// InvalidParameter error
InvalidParameter
// MissingParameter error
MissingParameter
// Validation error
Validation
// Forbidden error
Forbidden
// Public error
Public
// BadRequest error
BadRequest
// Unauthorized error
Unauthorized
)
type customError struct {
errorType ErrorType
// originalError may be a customError or other error. Storing this is necessary for our Unwrap
// method to work properly.
originalError error
// pkgError is always the github.com/pkg/errors error, used primarily for stack traces
// error cause, and Error() messages.
pkgError error
context errorContext
}
// Is provides a custom implementation of stderrors.Is(), which reports whether any error in
// customError's chain matches err.
//
// An error is considered to match if customError.originalError or customError.pkgError is
// equal to error.
//
// This is necessary to handle the special cases of stderrors.Is() with our pkg/errors wrapping for
// stack traces and Error() messages.
func (e *customError) Is(err error) bool {
target := e.originalError
for {
if target == err {
return true
}
if pkgerrors.Is(e.pkgError, err) {
return true
}
if target = stderrors.Unwrap(target); target == nil {
return false
}
}
}
// Unwrap returns the next error in the chain
func (e *customError) Unwrap() error {
return e.originalError
}
// Format delegates the fmt.Formatter support to the pkgError for Stack Trace support from
// github.com/pkg/errors.
func (e *customError) Format(s fmt.State, verb rune) {
if ferr, ok := e.pkgError.(fmt.Formatter); ok {
ferr.Format(s, verb)
}
}
// Error returns the message of a customError
func (e customError) Error() string {
errKey := Key(&e)
errDetail := Detail(&e)
origErr := e.pkgError.Error()
// Avoid duplication of detail/original error message e.g. from NewWithDetail()
components := []string{}
if !strings.Contains(origErr, errKey) {
components = append(components, errKey)
}
if !strings.Contains(origErr, errDetail) {
components = append(components, errDetail)
}
components = append(components, origErr)
nonEmptyComps := make([]string, 0)
for _, c := range components {
if c != "" {
nonEmptyComps = append(nonEmptyComps, c)
}
}
return strings.Join(nonEmptyComps, ": ")
}
type errorContext map[string]string
// New creates a new customError
func (errorType ErrorType) New(msg string) error {
origErr := pkgerrors.New(msg)
return &customError{
errorType: errorType,
originalError: origErr,
pkgError: origErr,
}
}
// NewWithDetail creates a new customError with detail
func (errorType ErrorType) NewWithDetail(msg string) error {
return WithDetail(errorType.New(msg), msg)
}
// NewWithKeyAndDetail creates a new customError with a name
func (errorType ErrorType) NewWithKeyAndDetail(key string, msg string) error {
return WithKeyAndDetail(errorType.New(msg), key, msg)
}
// Newf creates a new customError with formatted message
func (errorType ErrorType) Newf(msg string, args ...interface{}) error {
origErr := pkgerrors.New(fmt.Sprintf(msg, args...))
return &customError{
errorType: errorType,
originalError: origErr,
pkgError: origErr,
}
}
// NewWithDetailf creates a new customError with formatted detail
func (errorType ErrorType) NewWithDetailf(msg string, args ...interface{}) error {
return WithDetail(errorType.Newf(msg, args...), fmt.Sprintf(msg, args...))
}
// Wrap creates a new wrapped error
func (errorType ErrorType) Wrap(err error, msg string) error {
return errorType.Wrapf(err, msg)
}
// Wrapf creates a new wrapped error with formatted message
func (errorType ErrorType) Wrapf(err error, msg string, args ...interface{}) error {
if customErr, ok := err.(*customError); ok {
return &customError{
errorType: errorType,
originalError: err,
pkgError: pkgerrors.Wrapf(customErr.pkgError, msg, args...),
context: customErr.context,
}
}
return &customError{
errorType: errorType,
originalError: err,
pkgError: pkgerrors.Wrapf(err, msg, args...),
}
}
// New creates a NoType error
func New(msg string) error {
origErr := pkgerrors.New(msg)
return &customError{
errorType: NoType,
originalError: origErr,
pkgError: origErr,
}
}
// Newf creates a no type error with formatted message
func Newf(msg string, args ...interface{}) error {
origErr := pkgerrors.New(fmt.Sprintf(msg, args...))
return &customError{
errorType: NoType,
originalError: origErr,
pkgError: origErr,
}
}
// Wrap an error with a string
func Wrap(err error, msg string) error {
return Wrapf(err, msg)
}
// Wrapf an error with format string
func Wrapf(err error, msg string, args ...interface{}) error {
if customErr, ok := err.(*customError); ok {
return customErr.errorType.Wrapf(err, msg, args...)
}
return NoType.Wrapf(err, msg, args...)
}
// WithCause wraps causeErr with err. This is useful for wrapping an internal error
// with a sentinel error, for example.
func WithCause(err, causeErr error) error {
mergedErrContext := make(errorContext)
var errorType ErrorType
if customErr, ok := causeErr.(*customError); ok {
for k, v := range customErr.context {
mergedErrContext[k] = v
}
errorType = customErr.errorType
}
if customErr, ok := err.(*customError); ok {
for k, v := range customErr.context {
mergedErrContext[k] = v
}
if customErr.errorType != NoType {
errorType = customErr.errorType
}
}
return &customError{
errorType: errorType,
originalError: err,
pkgError: pkgerrors.Wrap(causeErr, err.Error()),
context: mergedErrContext,
}
}
// Cause gives the original error
func Cause(err error) error {
if customErr, ok := err.(*customError); ok {
return Cause(pkgerrors.Cause(customErr.pkgError))
}
return pkgerrors.Cause(err)
}
// AddErrorContext adds a context to an error
func AddErrorContext(err error, key, message string) error {
var context errorContext
if customErr, ok := err.(*customError); ok {
context = customErr.context
if context == nil {
context = make(errorContext)
}
context[key] = message
return &customError{
errorType: customErr.errorType,
originalError: customErr.originalError,
pkgError: customErr.pkgError,
context: context,
}
}
context = errorContext{key: message}
return &customError{
errorType: NoType,
originalError: err,
pkgError: err,
context: context,
}
}
// GetErrorContext returns the error context
func GetErrorContext(err error) map[string]string {
if customErr, ok := err.(*customError); ok {
return customErr.context
}
return nil
}
// GetErrorContextValue returns an error context value
func GetErrorContextValue(err error, key string) string {
if errContext := GetErrorContext(err); errContext != nil {
return errContext[key]
}
return ""
}
// GetType returns the error type
func GetType(err error) ErrorType {
if customErr, ok := err.(*customError); ok {
return customErr.errorType
}
return NoType
}
// WithPointer adds a pointer to the error
func WithPointer(err error, pointer string) error {
return AddErrorContext(err, "pointer", pointer)
}
// WithDetail adds detail to the error
func WithDetail(err error, detail string) error {
return AddErrorContext(err, "detail", detail)
}
// WithKey adds key to the error
func WithKey(err error, key string) error {
return AddErrorContext(err, "key", key)
}
// WithKeyAndDetail adds key and detail to a message
func WithKeyAndDetail(err error, key string, detail string) error {
err = WithKey(err, key)
return WithDetail(err, detail)
}
// Pointer returns the error pointer
func Pointer(err error) string {
return GetErrorContextValue(err, "pointer")
}
// Detail returns the error detail
func Detail(err error) string {
return GetErrorContextValue(err, "detail")
}
// Key returns the error key
func Key(err error) string {
return GetErrorContextValue(err, "key")
}
// WithFailFast signifies that err is fail fast (i.e. not resolvable by retries)
func WithFailFast(err error) error {
return AddErrorContext(err, "failfast", "true")
}
// IsFailFast returns whether the error is fail fast (i.e. not resolvable by retries)
func IsFailFast(err error) bool {
return GetErrorContextValue(err, "failfast") == "true"
}