123 lines
2.5 KiB
Go
123 lines
2.5 KiB
Go
// Copyright (C) 2019 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
package utils
|
|
|
|
import (
|
|
"bytes"
|
|
"encoding/gob"
|
|
"fmt"
|
|
"strings"
|
|
"time"
|
|
)
|
|
|
|
// GetBytes transforms an empty interface type into a byte slice
|
|
func GetBytes(key interface{}) ([]byte, error) {
|
|
var buf bytes.Buffer
|
|
enc := gob.NewEncoder(&buf)
|
|
err := enc.Encode(key)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return buf.Bytes(), nil
|
|
}
|
|
|
|
// SplitDBURL returns the driver and DSN portions of a URL
|
|
func SplitDBURL(s string) (string, string, error) {
|
|
// consider https://github.com/xo/dburl if this ends up lacking
|
|
parts := strings.SplitN(s, "://", 2)
|
|
if len(parts) != 2 {
|
|
return "", "", fmt.Errorf("Could not parse DB URL %s", s)
|
|
}
|
|
if parts[0] == "postgres" {
|
|
parts[1] = s // postgres wants full URLS for its DSN
|
|
}
|
|
return parts[0], parts[1], nil
|
|
}
|
|
|
|
// CombineErrors combines multiple errors to a single error
|
|
func CombineErrors(errs ...error) error {
|
|
var errlist ErrorGroup
|
|
errlist.Add(errs...)
|
|
return errlist.Finish()
|
|
}
|
|
|
|
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 ""
|
|
}
|
|
|
|
// ErrorGroup contains a set of non-nil errors
|
|
type ErrorGroup []error
|
|
|
|
// Add adds an error to the ErrorGroup if it is non-nil
|
|
func (e *ErrorGroup) Add(errs ...error) {
|
|
for _, err := range errs {
|
|
if err != nil {
|
|
*e = append(*e, err)
|
|
}
|
|
}
|
|
}
|
|
|
|
// 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.
|
|
func (e ErrorGroup) Finish() error {
|
|
if len(e) == 0 {
|
|
return nil
|
|
}
|
|
if len(e) == 1 {
|
|
return e[0]
|
|
}
|
|
return combinedError(e)
|
|
}
|
|
|
|
// 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
|
|
}
|