mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 20:07:38 +03:00
43 lines
723 B
Go
43 lines
723 B
Go
package common
|
|
|
|
import "net"
|
|
|
|
type WithUpstream interface {
|
|
Upstream() any
|
|
}
|
|
|
|
type stdWithUpstreamNetConn interface {
|
|
NetConn() net.Conn
|
|
}
|
|
|
|
func Cast[T any](obj any) (T, bool) {
|
|
if c, ok := obj.(T); ok {
|
|
return c, true
|
|
}
|
|
if u, ok := obj.(WithUpstream); ok {
|
|
return Cast[T](u.Upstream())
|
|
}
|
|
if u, ok := obj.(stdWithUpstreamNetConn); ok {
|
|
return Cast[T](u.NetConn())
|
|
}
|
|
return DefaultValue[T](), false
|
|
}
|
|
|
|
func MustCast[T any](obj any) T {
|
|
value, ok := Cast[T](obj)
|
|
if !ok {
|
|
// make panic
|
|
return obj.(T)
|
|
}
|
|
return value
|
|
}
|
|
|
|
func Top(obj any) any {
|
|
if u, ok := obj.(WithUpstream); ok {
|
|
return Top(u.Upstream())
|
|
}
|
|
if u, ok := obj.(stdWithUpstreamNetConn); ok {
|
|
return Top(u.NetConn())
|
|
}
|
|
return obj
|
|
}
|