clash/adapter/outboundgroup/fallback.go

101 lines
2.3 KiB
Go
Raw Normal View History

2019-12-08 04:17:24 +00:00
package outboundgroup
import (
"context"
"encoding/json"
2021-06-10 06:05:56 +00:00
"github.com/Dreamacro/clash/adapter/outbound"
"github.com/Dreamacro/clash/common/singledo"
2019-12-08 04:17:24 +00:00
C "github.com/Dreamacro/clash/constant"
"github.com/Dreamacro/clash/constant/provider"
2019-12-08 04:17:24 +00:00
)
type Fallback struct {
*outbound.Base
disableUDP bool
single *singledo.Single
providers []provider.ProxyProvider
2019-12-08 04:17:24 +00:00
}
func (f *Fallback) Now() string {
proxy := f.findAliveProxy(false)
2019-12-08 04:17:24 +00:00
return proxy.Name()
}
2021-04-29 03:23:14 +00:00
// DialContext implements C.ProxyAdapter
2019-12-08 04:17:24 +00:00
func (f *Fallback) DialContext(ctx context.Context, metadata *C.Metadata) (C.Conn, error) {
proxy := f.findAliveProxy(true)
2019-12-08 04:17:24 +00:00
c, err := proxy.DialContext(ctx, metadata)
if err == nil {
c.AppendToChains(f)
}
return c, err
}
// ListenPacketContext implements C.ProxyAdapter
func (f *Fallback) ListenPacketContext(ctx context.Context, metadata *C.Metadata) (C.PacketConn, error) {
proxy := f.findAliveProxy(true)
pc, err := proxy.ListenPacketContext(ctx, metadata)
2019-12-08 04:17:24 +00:00
if err == nil {
pc.AppendToChains(f)
}
2020-01-31 06:43:54 +00:00
return pc, err
2019-12-08 04:17:24 +00:00
}
2021-04-29 03:23:14 +00:00
// SupportUDP implements C.ProxyAdapter
2019-12-08 04:17:24 +00:00
func (f *Fallback) SupportUDP() bool {
if f.disableUDP {
return false
}
proxy := f.findAliveProxy(false)
2019-12-08 04:17:24 +00:00
return proxy.SupportUDP()
}
2021-04-29 03:23:14 +00:00
// MarshalJSON implements C.ProxyAdapter
2019-12-08 04:17:24 +00:00
func (f *Fallback) MarshalJSON() ([]byte, error) {
var all []string
for _, proxy := range f.proxies(false) {
2019-12-08 04:17:24 +00:00
all = append(all, proxy.Name())
}
return json.Marshal(map[string]interface{}{
"type": f.Type().String(),
"now": f.Now(),
"all": all,
})
}
2021-04-29 03:23:14 +00:00
// Unwrap implements C.ProxyAdapter
func (f *Fallback) Unwrap(metadata *C.Metadata) C.Proxy {
proxy := f.findAliveProxy(true)
return proxy
}
func (f *Fallback) proxies(touch bool) []C.Proxy {
elm, _, _ := f.single.Do(func() (interface{}, error) {
return getProvidersProxies(f.providers, touch), nil
})
return elm.([]C.Proxy)
2019-12-08 04:17:24 +00:00
}
func (f *Fallback) findAliveProxy(touch bool) C.Proxy {
proxies := f.proxies(touch)
for _, proxy := range proxies {
if proxy.Alive() {
return proxy
2019-12-08 04:17:24 +00:00
}
}
return proxies[0]
2019-12-08 04:17:24 +00:00
}
func NewFallback(options *GroupCommonOption, providers []provider.ProxyProvider) *Fallback {
2019-12-08 04:17:24 +00:00
return &Fallback{
Base: outbound.NewBase(options.Name, "", C.Fallback, false),
single: singledo.NewSingle(defaultGetProxiesDuration),
providers: providers,
disableUDP: options.DisableUDP,
2019-12-08 04:17:24 +00:00
}
}