2021-08-21 01:20:40 -04:00
|
|
|
//go:build !confonly
|
2019-02-01 14:08:21 -05:00
|
|
|
// +build !confonly
|
|
|
|
|
2018-11-07 15:08:20 -05:00
|
|
|
package router
|
|
|
|
|
|
|
|
import (
|
2021-04-08 15:55:25 -04:00
|
|
|
"context"
|
|
|
|
|
2021-02-16 15:31:50 -05:00
|
|
|
"github.com/v2fly/v2ray-core/v4/common/dice"
|
2021-04-08 15:55:25 -04:00
|
|
|
"github.com/v2fly/v2ray-core/v4/features/extension"
|
2021-02-16 15:31:50 -05:00
|
|
|
"github.com/v2fly/v2ray-core/v4/features/outbound"
|
2018-11-07 15:08:20 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
type BalancingStrategy interface {
|
|
|
|
PickOutbound([]string) string
|
|
|
|
}
|
|
|
|
|
2021-05-19 17:28:52 -04:00
|
|
|
type RandomStrategy struct{}
|
2018-11-07 15:08:20 -05:00
|
|
|
|
|
|
|
func (s *RandomStrategy) PickOutbound(tags []string) string {
|
|
|
|
n := len(tags)
|
|
|
|
if n == 0 {
|
|
|
|
panic("0 tags")
|
|
|
|
}
|
|
|
|
|
|
|
|
return tags[dice.Roll(n)]
|
|
|
|
}
|
|
|
|
|
|
|
|
type Balancer struct {
|
|
|
|
selectors []string
|
|
|
|
strategy BalancingStrategy
|
|
|
|
ohm outbound.Manager
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *Balancer) PickOutbound() (string, error) {
|
|
|
|
hs, ok := b.ohm.(outbound.HandlerSelector)
|
|
|
|
if !ok {
|
|
|
|
return "", newError("outbound.Manager is not a HandlerSelector")
|
|
|
|
}
|
|
|
|
tags := hs.Select(b.selectors)
|
|
|
|
if len(tags) == 0 {
|
|
|
|
return "", newError("no available outbounds selected")
|
|
|
|
}
|
|
|
|
tag := b.strategy.PickOutbound(tags)
|
2019-06-14 09:47:28 -04:00
|
|
|
if tag == "" {
|
2018-11-07 15:08:20 -05:00
|
|
|
return "", newError("balancing strategy returns empty tag")
|
|
|
|
}
|
|
|
|
return tag, nil
|
|
|
|
}
|
2021-05-19 17:28:52 -04:00
|
|
|
|
2021-04-08 15:55:25 -04:00
|
|
|
func (b *Balancer) InjectContext(ctx context.Context) {
|
|
|
|
if contextReceiver, ok := b.strategy.(extension.ContextReceiver); ok {
|
|
|
|
contextReceiver.InjectContext(ctx)
|
|
|
|
}
|
|
|
|
}
|