Path: blob/main/vendor/go.uber.org/multierr/error_pre_go120.go
2872 views
// Copyright (c) 2017-2023 Uber Technologies, Inc.1//2// Permission is hereby granted, free of charge, to any person obtaining a copy3// of this software and associated documentation files (the "Software"), to deal4// in the Software without restriction, including without limitation the rights5// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell6// copies of the Software, and to permit persons to whom the Software is7// furnished to do so, subject to the following conditions:8//9// The above copyright notice and this permission notice shall be included in10// all copies or substantial portions of the Software.11//12// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR13// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,14// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE15// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER16// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,17// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN18// THE SOFTWARE.1920//go:build !go1.2021// +build !go1.202223package multierr2425import "errors"2627// Versions of Go before 1.20 did not support the Unwrap() []error method.28// This provides a similar behavior by implementing the Is(..) and As(..)29// methods.30// See the errors.Join proposal for details:31// https://github.com/golang/go/issues/534353233// As attempts to find the first error in the error list that matches the type34// of the value that target points to.35//36// This function allows errors.As to traverse the values stored on the37// multierr error.38func (merr *multiError) As(target interface{}) bool {39for _, err := range merr.Errors() {40if errors.As(err, target) {41return true42}43}44return false45}4647// Is attempts to match the provided error against errors in the error list.48//49// This function allows errors.Is to traverse the values stored on the50// multierr error.51func (merr *multiError) Is(target error) bool {52for _, err := range merr.Errors() {53if errors.Is(err, target) {54return true55}56}57return false58}5960func extractErrors(err error) []error {61if err == nil {62return nil63}6465// Note that we're casting to multiError, not errorGroup. Our contract is66// that returned errors MAY implement errorGroup. Errors, however, only67// has special behavior for multierr-specific error objects.68//69// This behavior can be expanded in the future but I think it's prudent to70// start with as little as possible in terms of contract and possibility71// of misuse.72eg, ok := err.(*multiError)73if !ok {74return []error{err}75}7677return append(([]error)(nil), eg.Errors()...)78}798081