1
0
mirror of https://github.com/go-micro/go-micro.git synced 2024-12-18 08:26:38 +02:00
go-micro/selector/default.go

124 lines
2.1 KiB
Go
Raw Normal View History

2016-05-03 23:06:19 +02:00
package selector
import (
"sync"
"time"
"github.com/pkg/errors"
2024-06-04 22:40:43 +02:00
"go-micro.dev/v5/registry"
"go-micro.dev/v5/registry/cache"
2016-05-03 23:06:19 +02:00
)
type registrySelector struct {
2019-02-13 11:47:31 +02:00
so Options
2019-05-31 17:00:44 +02:00
rc cache.Cache
mu sync.RWMutex
}
2019-05-31 17:00:44 +02:00
func (c *registrySelector) newCache() cache.Cache {
opts := make([]cache.Option, 0, 1)
2019-02-13 11:47:31 +02:00
if c.so.Context != nil {
if t, ok := c.so.Context.Value("selector_ttl").(time.Duration); ok {
opts = append(opts, cache.WithTTL(t))
}
}
return cache.New(c.so.Registry, opts...)
}
func (c *registrySelector) Init(opts ...Option) error {
c.mu.Lock()
defer c.mu.Unlock()
2016-05-03 23:06:19 +02:00
for _, o := range opts {
o(&c.so)
2016-05-03 23:06:19 +02:00
}
2019-02-13 11:47:31 +02:00
c.rc.Stop()
2019-05-31 17:00:44 +02:00
c.rc = c.newCache()
2016-05-03 23:06:19 +02:00
return nil
}
func (c *registrySelector) Options() Options {
return c.so
2016-05-03 23:06:19 +02:00
}
func (c *registrySelector) Select(service string, opts ...SelectOption) (Next, error) {
c.mu.RLock()
defer c.mu.RUnlock()
2016-05-03 23:06:19 +02:00
sopts := SelectOptions{
Strategy: c.so.Strategy,
2016-05-03 23:06:19 +02:00
}
for _, opt := range opts {
opt(&sopts)
}
// get the service
// try the cache first
// if that fails go directly to the registry
2019-02-13 11:47:31 +02:00
services, err := c.rc.GetService(service)
2016-05-03 23:06:19 +02:00
if err != nil {
if errors.Is(err, registry.ErrNotFound) {
return nil, ErrNotFound
}
2016-05-03 23:06:19 +02:00
return nil, err
}
// apply the filters
for _, filter := range sopts.Filters {
services = filter(services)
}
// if there's nothing left, return
if len(services) == 0 {
return nil, ErrNoneAvailable
2016-05-03 23:06:19 +02:00
}
return sopts.Strategy(services), nil
}
func (c *registrySelector) Mark(service string, node *registry.Node, err error) {
2016-05-03 23:06:19 +02:00
}
func (c *registrySelector) Reset(service string) {
2016-05-03 23:06:19 +02:00
}
2022-09-30 16:27:07 +02:00
// Close stops the watcher and destroys the cache.
func (c *registrySelector) Close() error {
2019-02-13 11:47:31 +02:00
c.rc.Stop()
2016-05-03 23:06:19 +02:00
return nil
}
func (c *registrySelector) String() string {
return "registry"
2016-05-03 23:06:19 +02:00
}
// NewSelector creates a new default selector.
func NewSelector(opts ...Option) Selector {
2016-05-03 23:06:19 +02:00
sopts := Options{
Strategy: Random,
}
for _, opt := range opts {
opt(&sopts)
}
if sopts.Registry == nil {
sopts.Registry = registry.DefaultRegistry
}
2019-02-13 11:47:31 +02:00
s := &registrySelector{
so: sopts,
}
2019-05-31 17:00:44 +02:00
s.rc = s.newCache()
2019-02-13 11:47:31 +02:00
return s
2016-05-03 23:06:19 +02:00
}