gf/net/gsel/gsel_selector_round_robin.go

48 lines
1.0 KiB
Go

// Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
//
// This Source Code Form is subject to the terms of the MIT License.
// If a copy of the MIT was not distributed with this file,
// You can obtain one at https://github.com/gogf/gf.
package gsel
import (
"context"
"sync"
"github.com/gogf/gf/v2/internal/intlog"
)
type selectorRoundRobin struct {
mu sync.Mutex
nodes Nodes
next int
}
func NewSelectorRoundRobin() Selector {
return &selectorRoundRobin{
nodes: make(Nodes, 0),
}
}
func (s *selectorRoundRobin) Update(ctx context.Context, nodes Nodes) error {
intlog.Printf(ctx, `Update nodes: %s`, nodes.String())
s.mu.Lock()
defer s.mu.Unlock()
s.nodes = nodes
s.next = 0
return nil
}
func (s *selectorRoundRobin) Pick(ctx context.Context) (node Node, done DoneFunc, err error) {
s.mu.Lock()
defer s.mu.Unlock()
if len(s.nodes) == 0 {
return
}
node = s.nodes[s.next]
s.next = (s.next + 1) % len(s.nodes)
intlog.Printf(ctx, `Picked node: %s`, node.Address())
return
}