mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 11:57:39 +03:00
41 lines
832 B
Go
41 lines
832 B
Go
package exceptions
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"github.com/sagernet/sing/common"
|
|
)
|
|
|
|
// Deprecated: Use errors.Unwrap instead.
|
|
func Unwrap(err error) error {
|
|
return errors.Unwrap(err)
|
|
}
|
|
|
|
func Cast[T any](err error) (T, bool) {
|
|
if err == nil {
|
|
return common.DefaultValue[T](), false
|
|
}
|
|
|
|
for {
|
|
interfaceError, isInterface := err.(T)
|
|
if isInterface {
|
|
return interfaceError, true
|
|
}
|
|
switch x := err.(type) {
|
|
case interface{ Unwrap() error }:
|
|
err = x.Unwrap()
|
|
if err == nil {
|
|
return common.DefaultValue[T](), false
|
|
}
|
|
case interface{ Unwrap() []error }:
|
|
for _, innerErr := range x.Unwrap() {
|
|
if interfaceError, isInterface = Cast[T](innerErr); isInterface {
|
|
return interfaceError, true
|
|
}
|
|
}
|
|
return common.DefaultValue[T](), false
|
|
default:
|
|
return common.DefaultValue[T](), false
|
|
}
|
|
}
|
|
}
|