2020-07-26 17:09:05 +08:00
|
|
|
package clientinterceptors
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"path"
|
|
|
|
|
|
|
|
"zero/core/breaker"
|
2020-08-06 20:55:38 +08:00
|
|
|
"zero/rpcx/internal/codes"
|
2020-07-26 17:09:05 +08:00
|
|
|
|
|
|
|
"google.golang.org/grpc"
|
|
|
|
)
|
|
|
|
|
|
|
|
func BreakerInterceptor(ctx context.Context, method string, req, reply interface{},
|
|
|
|
cc *grpc.ClientConn, invoker grpc.UnaryInvoker, opts ...grpc.CallOption) error {
|
|
|
|
breakerName := path.Join(cc.Target(), method)
|
|
|
|
return breaker.DoWithAcceptable(breakerName, func() error {
|
|
|
|
return invoker(ctx, method, req, reply, cc, opts...)
|
2020-08-06 20:55:38 +08:00
|
|
|
}, codes.Acceptable)
|
2020-07-26 17:09:05 +08:00
|
|
|
}
|