2020-07-16 18:32:37 +03:00
|
|
|
package client
|
|
|
|
|
|
|
|
import (
|
2020-08-18 00:44:45 +03:00
|
|
|
"context"
|
2020-08-18 01:09:24 +03:00
|
|
|
"sort"
|
2020-07-16 18:32:37 +03:00
|
|
|
|
2020-07-27 15:22:00 +03:00
|
|
|
"github.com/micro/go-micro/v3/errors"
|
|
|
|
"github.com/micro/go-micro/v3/router"
|
2020-07-16 18:32:37 +03:00
|
|
|
)
|
|
|
|
|
2020-08-18 00:44:45 +03:00
|
|
|
// LookupFunc is used to lookup routes for a service
|
|
|
|
type LookupFunc func(context.Context, Request, CallOptions) ([]string, error)
|
|
|
|
|
2020-07-16 18:32:37 +03:00
|
|
|
// LookupRoute for a request using the router and then choose one using the selector
|
2020-08-18 00:44:45 +03:00
|
|
|
func LookupRoute(ctx context.Context, req Request, opts CallOptions) ([]string, error) {
|
2020-07-30 17:22:36 +03:00
|
|
|
// check to see if an address was provided as a call option
|
|
|
|
if len(opts.Address) > 0 {
|
2020-08-18 00:44:45 +03:00
|
|
|
return opts.Address, nil
|
2020-07-16 18:32:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// construct the router query
|
|
|
|
query := []router.QueryOption{router.QueryService(req.Service())}
|
|
|
|
|
|
|
|
// if a custom network was requested, pass this to the router. By default the router will use it's
|
|
|
|
// own network, which is set during initialisation.
|
|
|
|
if len(opts.Network) > 0 {
|
|
|
|
query = append(query, router.QueryNetwork(opts.Network))
|
|
|
|
}
|
|
|
|
|
|
|
|
// lookup the routes which can be used to execute the request
|
|
|
|
routes, err := opts.Router.Lookup(query...)
|
|
|
|
if err == router.ErrRouteNotFound {
|
|
|
|
return nil, errors.InternalServerError("go.micro.client", "service %s: %s", req.Service(), err.Error())
|
|
|
|
} else if err != nil {
|
|
|
|
return nil, errors.InternalServerError("go.micro.client", "error getting next %s node: %s", req.Service(), err.Error())
|
|
|
|
}
|
|
|
|
|
2020-08-18 01:09:24 +03:00
|
|
|
// sort by lowest metric first
|
|
|
|
sort.Slice(routes, func(i, j int) bool {
|
|
|
|
return routes[i].Metric < routes[j].Metric
|
|
|
|
})
|
|
|
|
|
2020-08-18 00:44:45 +03:00
|
|
|
var addrs []string
|
|
|
|
|
|
|
|
for _, route := range routes {
|
|
|
|
addrs = append(addrs, route.Address)
|
2020-07-16 18:32:37 +03:00
|
|
|
}
|
2020-08-18 00:44:45 +03:00
|
|
|
|
|
|
|
return addrs, nil
|
2020-07-16 18:32:37 +03:00
|
|
|
}
|