micro-wrapper-ratelimiter-uber/uber.go

41 lines
1.0 KiB
Go
Raw Normal View History

2016-10-27 14:58:10 +03:00
package ratelimit
import (
2018-03-03 15:28:44 +03:00
"context"
"github.com/unistack-org/micro/v3/client"
"github.com/unistack-org/micro/v3/server"
"go.uber.org/ratelimit"
2016-10-27 14:58:10 +03:00
)
type clientWrapper struct {
r ratelimit.Limiter
client.Client
}
func (c *clientWrapper) Call(ctx context.Context, req client.Request, rsp interface{}, opts ...client.CallOption) error {
c.r.Take()
return c.Client.Call(ctx, req, rsp, opts...)
}
// NewClientWrapper creates a blocking side rate limiter
func NewClientWrapper(rate int, opts ...ratelimit.Option) client.Wrapper {
r := ratelimit.New(rate, opts...)
2016-10-27 14:58:10 +03:00
return func(c client.Client) client.Client {
return &clientWrapper{r, c}
}
}
// NewHandlerWrapper creates a blocking server side rate limiter
func NewServerHandlerWrapper(rate int, opts ...ratelimit.Option) server.HandlerWrapper {
r := ratelimit.New(rate, opts...)
2016-10-27 14:58:10 +03:00
return func(h server.HandlerFunc) server.HandlerFunc {
return func(ctx context.Context, req server.Request, rsp interface{}) error {
r.Take()
return h(ctx, req, rsp)
}
}
}