2019-01-24 20:15:10 +00:00
|
|
|
// Copyright (C) 2019 Storj Labs, Inc.
|
2018-08-01 15:15:38 +01:00
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
|
|
|
package utils
|
|
|
|
|
|
|
|
import (
|
2018-10-17 21:23:44 +01:00
|
|
|
"time"
|
2019-02-06 16:40:55 +00:00
|
|
|
|
|
|
|
"github.com/zeebo/errs"
|
2018-08-01 15:15:38 +01:00
|
|
|
)
|
|
|
|
|
2018-09-05 17:10:35 +01:00
|
|
|
// CombineErrors combines multiple errors to a single error
|
2018-09-11 14:57:12 +01:00
|
|
|
func CombineErrors(errs ...error) error {
|
2018-12-11 18:24:31 +00:00
|
|
|
var errlist ErrorGroup
|
|
|
|
errlist.Add(errs...)
|
|
|
|
return errlist.Finish()
|
2018-09-11 14:57:12 +01:00
|
|
|
}
|
2018-09-05 17:10:35 +01:00
|
|
|
|
|
|
|
type combinedError []error
|
|
|
|
|
|
|
|
func (errs combinedError) Cause() error {
|
|
|
|
if len(errs) > 0 {
|
|
|
|
return errs[0]
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (errs combinedError) Error() string {
|
|
|
|
if len(errs) > 0 {
|
|
|
|
limit := 5
|
|
|
|
if len(errs) < limit {
|
|
|
|
limit = len(errs)
|
|
|
|
}
|
|
|
|
allErrors := errs[0].Error()
|
|
|
|
for _, err := range errs[1:limit] {
|
|
|
|
allErrors += "\n" + err.Error()
|
|
|
|
}
|
|
|
|
return allErrors
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
2018-10-17 21:23:44 +01:00
|
|
|
|
2018-12-11 18:24:31 +00:00
|
|
|
// ErrorGroup contains a set of non-nil errors
|
2019-02-06 16:40:55 +00:00
|
|
|
type ErrorGroup errs.Group
|
2018-12-11 18:24:31 +00:00
|
|
|
|
|
|
|
// Add adds an error to the ErrorGroup if it is non-nil
|
2019-02-06 16:40:55 +00:00
|
|
|
func (e *ErrorGroup) Add(errrs ...error) {
|
|
|
|
(*errs.Group)(e).Add(errrs...)
|
2018-12-11 18:24:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Finish returns nil if there were no non-nil errors, the first error if there
|
|
|
|
// was only one non-nil error, or the result of CombineErrors if there was more
|
|
|
|
// than one non-nil error.
|
2019-02-06 16:40:55 +00:00
|
|
|
func (e *ErrorGroup) Finish() error {
|
|
|
|
return (*errs.Group)(e).Err()
|
2018-12-11 18:24:31 +00:00
|
|
|
}
|
|
|
|
|
2018-10-17 21:23:44 +01:00
|
|
|
// CollectErrors returns first error from channel and all errors that happen within duration
|
|
|
|
func CollectErrors(errch chan error, duration time.Duration) error {
|
|
|
|
errch = discardNil(errch)
|
|
|
|
errs := []error{<-errch}
|
|
|
|
timeout := time.After(duration)
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case err := <-errch:
|
|
|
|
errs = append(errs, err)
|
|
|
|
case <-timeout:
|
|
|
|
return CombineErrors(errs...)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// discard nil errors that are returned from services
|
|
|
|
func discardNil(ch chan error) chan error {
|
|
|
|
r := make(chan error)
|
|
|
|
go func() {
|
|
|
|
for err := range ch {
|
|
|
|
if err == nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
r <- err
|
|
|
|
}
|
|
|
|
close(r)
|
|
|
|
}()
|
|
|
|
return r
|
|
|
|
}
|