-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbalancer.go
37 lines (31 loc) · 902 Bytes
/
balancer.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
package balancer
import (
"errors"
)
var (
NoHostError = errors.New("no host")
AlgorithmNotSupportedError = errors.New("algorithm not supported")
)
// Balancer interface is the load balancer for the reverse proxy
type Balancer interface {
Add(string, int)
Remove(string)
Balance(string) (string, error)
Inc(string)
Done(string)
}
// Factory is the factory that generates Balancer,
// and the factory design pattern is used here
type Factory func([]string, []int) Balancer
var factories = make(map[string]Factory)
// Build generates the corresponding Balancer according to the algorithm
func Build(algorithm string, hosts []string, hostsWeights []int) (Balancer, error) {
if len(hosts) == 0 {
return nil, NoHostError
}
balancerBuilder, ok := factories[algorithm]
if !ok {
return nil, AlgorithmNotSupportedError
}
return balancerBuilder(hosts, hostsWeights), nil
}