1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-08 14:24:36 -04:00
v2fly/app/router/strategy_leastping.go

80 lines
1.9 KiB
Go
Raw Normal View History

//go:build !confonly
2021-04-08 17:04:08 -04:00
// +build !confonly
2021-04-08 15:55:25 -04:00
package router
import (
"context"
2021-04-08 17:04:08 -04:00
2021-04-08 15:55:25 -04:00
core "github.com/v2fly/v2ray-core/v4"
2021-04-08 16:34:52 -04:00
"github.com/v2fly/v2ray-core/v4/app/observatory"
"github.com/v2fly/v2ray-core/v4/common"
2021-10-28 06:34:19 -04:00
"github.com/v2fly/v2ray-core/v4/features"
2021-04-08 15:55:25 -04:00
"github.com/v2fly/v2ray-core/v4/features/extension"
)
type LeastPingStrategy struct {
ctx context.Context
observatory extension.Observatory
config *StrategyLeastPingConfig
2021-04-08 15:55:25 -04:00
}
2021-06-18 19:13:09 -04:00
func (l *LeastPingStrategy) GetPrincipleTarget(strings []string) []string {
return []string{l.PickOutbound(strings)}
}
2021-04-08 15:55:25 -04:00
func (l *LeastPingStrategy) InjectContext(ctx context.Context) {
l.ctx = ctx
}
func (l *LeastPingStrategy) PickOutbound(strings []string) string {
2021-04-08 16:34:52 -04:00
if l.observatory == nil {
common.Must(core.RequireFeatures(l.ctx, func(observatory extension.Observatory) error {
if l.config.ObserverTag != "" {
l.observatory = common.Must2(observatory.(features.TaggedFeatures).GetFeaturesByTag(l.config.ObserverTag)).(extension.Observatory)
} else {
l.observatory = observatory
}
2021-04-08 16:34:52 -04:00
return nil
}))
}
2021-04-08 15:55:25 -04:00
observeReport, err := l.observatory.GetObservation(l.ctx)
if err != nil {
newError("cannot get observe report").Base(err).WriteToLog()
return ""
}
outboundsList := outboundList(strings)
if result, ok := observeReport.(*observatory.ObservationResult); ok {
status := result.Status
leastPing := int64(99999999)
selectedOutboundName := ""
for _, v := range status {
if outboundsList.contains(v.OutboundTag) && v.Alive && v.Delay < leastPing {
selectedOutboundName = v.OutboundTag
2021-05-25 09:48:13 -04:00
leastPing = v.Delay
2021-04-08 15:55:25 -04:00
}
}
return selectedOutboundName
}
2021-04-13 11:06:48 -04:00
// No way to understand observeReport
2021-04-08 15:55:25 -04:00
return ""
}
type outboundList []string
func (o outboundList) contains(name string) bool {
for _, v := range o {
if v == name {
return true
}
}
return false
}
2021-09-07 06:48:24 -04:00
func init() {
common.Must(common.RegisterConfig((*StrategyLeastPingConfig)(nil), nil))
}