mirror of https://github.com/v2ray/v2ray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
872 B
45 lines
872 B
6 years ago
|
package router
|
||
|
|
||
|
import (
|
||
|
"v2ray.com/core/common/dice"
|
||
|
"v2ray.com/core/features/outbound"
|
||
|
)
|
||
|
|
||
|
type BalancingStrategy interface {
|
||
|
PickOutbound([]string) string
|
||
|
}
|
||
|
|
||
|
type RandomStrategy struct {
|
||
|
}
|
||
|
|
||
|
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)
|
||
|
if len(tag) == 0 {
|
||
|
return "", newError("balancing strategy returns empty tag")
|
||
|
}
|
||
|
return tag, nil
|
||
|
}
|