2016-05-04 00:06:19 +03:00
|
|
|
package selector
|
|
|
|
|
|
|
|
import (
|
2018-12-29 18:44:51 +03:00
|
|
|
"time"
|
|
|
|
|
2020-01-30 14:39:00 +03:00
|
|
|
"github.com/micro/go-micro/v2/registry"
|
|
|
|
"github.com/micro/go-micro/v2/registry/cache"
|
2016-05-04 00:06:19 +03:00
|
|
|
)
|
|
|
|
|
2018-12-29 18:44:51 +03:00
|
|
|
type registrySelector struct {
|
2019-02-13 12:47:31 +03:00
|
|
|
so Options
|
2019-05-31 18:00:44 +03:00
|
|
|
rc cache.Cache
|
2018-12-29 18:44:51 +03:00
|
|
|
}
|
|
|
|
|
2019-05-31 18:00:44 +03:00
|
|
|
func (c *registrySelector) newCache() cache.Cache {
|
|
|
|
ropts := []cache.Option{}
|
2019-02-13 12:47:31 +03:00
|
|
|
if c.so.Context != nil {
|
|
|
|
if t, ok := c.so.Context.Value("selector_ttl").(time.Duration); ok {
|
2019-05-31 18:00:44 +03:00
|
|
|
ropts = append(ropts, cache.WithTTL(t))
|
2018-12-29 18:44:51 +03:00
|
|
|
}
|
|
|
|
}
|
2019-05-31 18:00:44 +03:00
|
|
|
return cache.New(c.so.Registry, ropts...)
|
2018-12-29 18:44:51 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *registrySelector) Init(opts ...Option) error {
|
2016-05-04 00:06:19 +03:00
|
|
|
for _, o := range opts {
|
2018-12-29 18:44:51 +03:00
|
|
|
o(&c.so)
|
2016-05-04 00:06:19 +03:00
|
|
|
}
|
2018-12-29 18:44:51 +03:00
|
|
|
|
2019-02-13 12:47:31 +03:00
|
|
|
c.rc.Stop()
|
2019-05-31 18:00:44 +03:00
|
|
|
c.rc = c.newCache()
|
2018-12-29 18:44:51 +03:00
|
|
|
|
2016-05-04 00:06:19 +03:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-12-29 18:44:51 +03:00
|
|
|
func (c *registrySelector) Options() Options {
|
|
|
|
return c.so
|
2016-05-04 00:06:19 +03:00
|
|
|
}
|
|
|
|
|
2018-12-29 18:44:51 +03:00
|
|
|
func (c *registrySelector) Select(service string, opts ...SelectOption) (Next, error) {
|
2020-06-30 12:07:52 +03:00
|
|
|
sopts := SelectOptions{Strategy: c.so.Strategy}
|
2016-05-04 00:06:19 +03:00
|
|
|
for _, opt := range opts {
|
|
|
|
opt(&sopts)
|
|
|
|
}
|
|
|
|
|
2020-06-30 12:07:52 +03:00
|
|
|
// a specific domain was requested, only lookup the services in that domain
|
|
|
|
if len(sopts.Domain) > 0 {
|
|
|
|
services, err := c.rc.GetService(service, registry.GetDomain(sopts.Domain))
|
|
|
|
if err != nil && err != registry.ErrNotFound {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
for _, filter := range sopts.Filters {
|
|
|
|
services = filter(services)
|
|
|
|
}
|
|
|
|
if len(services) == 0 {
|
|
|
|
return nil, ErrNoneAvailable
|
|
|
|
}
|
|
|
|
return sopts.Strategy(services), nil
|
|
|
|
}
|
|
|
|
|
2020-06-25 17:40:23 +03:00
|
|
|
// get the service. Because the service could be running in the current or the default domain,
|
|
|
|
// we call both. For example, go.micro.service.foo could be running in the services current domain,
|
|
|
|
// however the runtime (go.micro.runtime) will always be run in the default domain.
|
|
|
|
services, err := c.rc.GetService(service, registry.GetDomain(c.so.Domain))
|
|
|
|
if err != nil && err != registry.ErrNotFound {
|
2016-05-04 00:06:19 +03:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2020-06-25 17:40:23 +03:00
|
|
|
if c.so.Domain != registry.DefaultDomain {
|
|
|
|
srvs, err := c.rc.GetService(service, registry.GetDomain(registry.DefaultDomain))
|
|
|
|
if err != nil && err != registry.ErrNotFound {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if err == nil {
|
|
|
|
services = append(services, srvs...)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if services == nil {
|
|
|
|
return nil, ErrNoneAvailable
|
|
|
|
}
|
|
|
|
|
2016-05-04 00:06:19 +03:00
|
|
|
// apply the filters
|
|
|
|
for _, filter := range sopts.Filters {
|
|
|
|
services = filter(services)
|
|
|
|
}
|
|
|
|
|
|
|
|
// if there's nothing left, return
|
|
|
|
if len(services) == 0 {
|
2016-05-07 02:04:08 +03:00
|
|
|
return nil, ErrNoneAvailable
|
2016-05-04 00:06:19 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return sopts.Strategy(services), nil
|
|
|
|
}
|
|
|
|
|
2018-12-29 18:44:51 +03:00
|
|
|
func (c *registrySelector) Mark(service string, node *registry.Node, err error) {
|
2016-05-04 00:06:19 +03:00
|
|
|
}
|
|
|
|
|
2018-12-29 18:44:51 +03:00
|
|
|
func (c *registrySelector) Reset(service string) {
|
2016-05-04 00:06:19 +03:00
|
|
|
}
|
|
|
|
|
2018-12-29 18:44:51 +03:00
|
|
|
// Close stops the watcher and destroys the cache
|
|
|
|
func (c *registrySelector) Close() error {
|
2019-02-13 12:47:31 +03:00
|
|
|
c.rc.Stop()
|
2018-12-29 18:44:51 +03:00
|
|
|
|
2016-05-04 00:06:19 +03:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-12-29 18:44:51 +03:00
|
|
|
func (c *registrySelector) String() string {
|
|
|
|
return "registry"
|
2016-05-04 00:06:19 +03:00
|
|
|
}
|
|
|
|
|
2018-12-29 18:44:51 +03:00
|
|
|
func NewSelector(opts ...Option) Selector {
|
2016-05-04 00:06:19 +03:00
|
|
|
sopts := Options{
|
|
|
|
Strategy: Random,
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, opt := range opts {
|
|
|
|
opt(&sopts)
|
|
|
|
}
|
|
|
|
|
|
|
|
if sopts.Registry == nil {
|
|
|
|
sopts.Registry = registry.DefaultRegistry
|
|
|
|
}
|
|
|
|
|
2019-02-13 12:47:31 +03:00
|
|
|
s := ®istrySelector{
|
|
|
|
so: sopts,
|
2018-12-29 18:44:51 +03:00
|
|
|
}
|
2019-05-31 18:00:44 +03:00
|
|
|
s.rc = s.newCache()
|
2018-12-29 18:44:51 +03:00
|
|
|
|
2019-02-13 12:47:31 +03:00
|
|
|
return s
|
2016-05-04 00:06:19 +03:00
|
|
|
}
|