-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmultierror.go
364 lines (343 loc) · 10.8 KB
/
multierror.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
358
359
360
361
362
363
364
package errors
// Attribution: portions of the below code and documentation are
// modeled directly on the https://github.com/uber-go/multierr library,
// used with the permission available under the software license (MIT):
// https://github.com/uber-go/multierr/blob/master/LICENSE.txt
import (
"bytes"
"fmt"
"io"
)
// A simple interface for identifying an error wrapper for multiple
// errors (including MultiError). This is the [standard interface] as
// defined in Go.
//
// [standard interface]: https://pkg.go.dev/[email protected]#pkg-overview
type multierror interface {
Unwrap() []error
}
// MultiError is a list of errors. For compatibility, this type also
// implements the standard library error interface we refer to in this
// documentation as "multierror:"
//
// type interface {
// Unwrap() []error
// }
//
// MultiError includes helpers for managing groups of errors using Go
// patterns. They are not synchronized for concurrent use, but can be
// used in concurrent code if the user manages synchronization.
//
// The MultiError pattern is for top-level collection of error groups
// only, and are flattened when appended: no errors contained in its
// list are a multierror. (This is the major difference with the
// standard library implementation, which stores errors as a tree if
// they are progressively built). This flattening is not recursive,
// however: if a multierror is wrapped inside another error, it is not
// flattened, since this could cause us to lose information or context.
//
// Unlike some error collection / multiple-error packages, we rely on an
// exported MultiError type to make it obvious how it should be handled
// in the codebase. While it can be treated as an error when necessary,
// we must be vigilant about nil-checking with MultiError:
//
// if merr := errors.NewMultiError(nil); merr != nil {
// // This will always be true!
// }
//
// // Instead, check the length of the errors:
// if merr := errors.NewMultiError(nil); len(merr.Unwrap()) > 0 {
// // This works ...
// }
//
// // Or use ErrorsOrNil to get a clean error interface:
// if merr := errors.NewMultiError(nil); merr.ErrorOrNil() != nil {
// // This works ...
// }
//
// For simple error-joining, use Append or AppendInto, which only speak
// in the error interface.
type MultiError struct {
errors []error
}
var _ interface { // Assert interface implementation.
error
multierror
fmt.Formatter
} = (*MultiError)(nil)
// NewMultiError returns a MultiError from a group of errors. Nil error
// values are not included, so the size of the MultiError may be less
// than the number of errors passed to the function.
//
// If any of the given errors is a multierror, it is flattened into the
// new MultiError, allowing "append-like" behavior.
func NewMultiError(errs ...error) (merr *MultiError) {
merr = new(MultiError)
for _, err := range errs {
if err == nil {
continue
}
if mm, ok := err.(multierror); ok {
for _, err := range mm.Unwrap() {
if err == nil { // Sanity check: we don't know the implementation.
continue
}
merr.errors = append(merr.errors, err)
}
continue
}
merr.errors = append(merr.errors, err)
}
return
}
func (merr *MultiError) Error() string {
buf := new(bytes.Buffer)
formatMessages(buf, merr, [2]string{"[", "]"})
return buf.String()
}
// Unwrap returns the underlying value of the MultiError: a slice of
// errors. It returns a nil slice if the error is nil or has no errors.
//
// This interface may be used to handle multierrors in code that may not
// want to expect a MultiError type directly:
//
// if merr, ok := err.(interface{ Unwrap() [] error }); ok {
// // ...
// }
//
// Do not modify the returned errors and expect the MultiError to remain
// stable.
func (merr *MultiError) Unwrap() []error {
return merr.errors
}
// Errors is the version v0.1 interface for multierrors. This pre-dated
// the release of Go 1.20, so Unwrap() []error was not a clear standard
// yet. It now is.
//
// Deprecated: use Unwrap instead.
func (merr *MultiError) Errors() []error {
return merr.Unwrap()
}
// ErrorOrNil is used to get a clean error interface for reflection, nil
// checking and other comparisons. If the MultiError is empty it returns
// nil, and if there is a single error then it is unnested. Otherwise,
// it returns a MultiError retyped for the error interface.
//
// Retrieving the MultiError is simple, since NewMultiError flattens
// MultiErrors passed to it:
//
// err := errors.NewMultiError(e1, e2, e3).ErrorOrNil()
// newMErr := errors.NewMultiError(err)
// newMErr.Errors() // => []error{e1, e2, e3}
func (merr *MultiError) ErrorOrNil() error {
if len(merr.errors) == 0 {
return nil
}
if len(merr.errors) == 1 {
return merr.errors[0]
}
return merr
}
func (merr *MultiError) Format(s fmt.State, verb rune) {
switch verb {
case 'v':
switch {
case s.Flag('+'):
size := len(merr.Unwrap())
if size < 1 {
io.WriteString(s, "empty errors: []")
return
}
buf := new(bytes.Buffer)
io.WriteString(s, "multiple errors:\n")
for i, err := range merr.errors {
if i > 0 {
io.WriteString(s, "\n")
}
fmt.Fprintf(buf, "\n* error %d of %d: %+v", i+1, size, err)
s.Write(buf.Bytes())
buf.Reset()
}
io.WriteString(s, "\n")
case s.Flag('#'):
io.WriteString(s, "*errors.MultiError")
formatMessages(s, merr, [2]string{"{", "}"})
default:
formatMessages(s, merr, [2]string{"[", "]"})
}
case 's':
formatMessages(s, merr, [2]string{"[", "]"})
case 'q':
formatMessages(s, merr, [2]string{`"[`, `]"`})
default:
// empty
}
}
func formatMessages(w io.Writer, merr multierror, delimiters [2]string) {
first := true
io.WriteString(w, delimiters[0])
for _, err := range merr.Unwrap() {
if !first {
io.WriteString(w, "; ")
}
io.WriteString(w, err.Error())
first = false
}
io.WriteString(w, delimiters[1])
}
// ErrorsFrom returns a list of errors that the supplied error is
// composed of. If the error is a multierror then Unwrap is called on
// it. If the given error is nil, a nil slice is returned. If the error
// is not composed of other errors, the returned slice contains just the
// error that was passed in.
//
// ErrorsFrom is useful when it is unknown if a given error is a
// multierror or not.
//
// Callers of this function are free to modify the returned slice, but
// modifications to the errors themselves may race.
func ErrorsFrom(err error) []error {
if err == nil {
return nil
}
if merr, ok := err.(multierror); ok {
errs := merr.Unwrap()
result := make([]error, len(errs))
copy(result, errs)
return result
}
return []error{err}
}
// Append is a version of NewMultiError optimized for the common case of
// merging a small group of errors and expecting the outcome to be an
// error or nil, akin to the standard library's errors.Join (and it is,
// in fact, used for this library's implementation of Join).
//
// The following pattern may also be used to record failure of deferred
// operations without losing information about the original error.
//
// func doSomething(..) (err error) {
// f := acquireResource()
// defer func() {
// err = errors.Append(err, f.Close())
// }()
func Append(errs ...error) error {
if len(errs) == 0 {
return nil
}
// Optimized cases: 1 or 2 errors.
var singleErr error
switch {
case len(errs) == 1:
singleErr = errs[0]
case len(errs) == 2 && errs[0] == nil:
singleErr = errs[1]
case len(errs) == 2 && errs[1] == nil:
singleErr = errs[0]
}
if singleErr != nil {
// Ensure we flatten.
if mm, ok := singleErr.(multierror); ok {
return NewMultiError(mm.Unwrap()...).ErrorOrNil()
}
return singleErr
}
// Do the work.
return NewMultiError(errs...).ErrorOrNil()
}
// AppendInto appends an error into the destination of an error pointer
// and returns whether the error being appended was non-nil.
//
// var err error
// errors.AppendInto(&err, r.Close())
// errors.AppendInto(&err, w.Close())
//
// The above is equivalent to,
//
// err := errors.Append(r.Close(), w.Close())
//
// As AppendInto reports whether the provided error was non-nil, it may
// be used to build an errors error in a loop more ergonomically. For
// example:
//
// var err error
// for line := range lines {
// var item Item
// if errors.AppendInto(&err, parse(line, &item)) {
// continue
// }
// items = append(items, item)
// }
// if err != nil {
// log.Fatal(err)
// }
func AppendInto(receivingErr *error, appendingErr error) bool {
if receivingErr == nil {
// We panic if 'into' is nil. This is not documented above
// because suggesting that the pointer must be non-nil may
// confuse users into thinking that the error that it points
// to must be non-nil.
panic(NewWithStackTrace(
"errors.AppendInto used incorrectly: receiving pointer must not be nil"))
}
if appendingErr == nil {
return false
}
*receivingErr = Append(*receivingErr, appendingErr)
return true
}
// ErrorResulter is a function that may fail with an error. Use it with
// AppendResult to append the result of calling the function into an
// error. This allows you to conveniently defer capture of failing
// operations.
type ErrorResulter func() error
// AppendResult appends the result of calling the given ErrorResulter
// into the provided error pointer. Use it with named returns to safely
// defer invocation of fallible operations until a function returns, and
// capture the resulting errors.
//
// func doSomething(...) (err error) {
// // ...
// f, err := openFile(..)
// if err != nil {
// return err
// }
//
// // errors will call f.Close() when this function returns, and if the
// // operation fails it will append its error into the returned error.
// defer errors.AppendInvoke(&err, f.Close)
//
// scanner := bufio.NewScanner(f)
// // Similarly, this scheduled scanner.Err to be called and inspected
// // when the function returns and append its error into the returned
// // error.
// defer errors.AppendResult(&err, scanner.Err)
//
// // ...
// }
//
// Without defer, AppendResult behaves exactly like AppendInto.
//
// err := // ...
// errors.AppendResult(&err, errorableFn)
//
// // ...is roughly equivalent to...
//
// err := // ...
// errors.AppendInto(&err, errorableFn())
//
// The advantage of the indirection introduced by ErrorResulter is to
// make it easy to defer the invocation of a function. Without this
// indirection, the invoked function will be evaluated at the time of
// the defer block rather than when the function returns.
//
// // BAD: This is likely not what the caller intended. This will evaluate
// // foo() right away and append its result into the error when the
// // function returns.
// defer errors.AppendInto(&err, errorableFn())
//
// // GOOD: This will defer invocation of foo until the function returns.
// defer errors.AppendResult(&err, errorableFn)
func AppendResult(receivingErr *error, resulterFn ErrorResulter) {
AppendInto(receivingErr, resulterFn())
}