2021-11-01 21:39:40 +01:00
|
|
|
package util
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
2022-01-12 23:03:28 +01:00
|
|
|
"golang.org/x/time/rate"
|
2022-01-02 23:56:12 +01:00
|
|
|
"io"
|
2021-11-01 21:39:40 +01:00
|
|
|
"sync"
|
2022-01-12 23:03:28 +01:00
|
|
|
"time"
|
2021-11-01 21:39:40 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
// ErrLimitReached is the error returned by the Limiter and LimitWriter when the predefined limit has been reached
|
|
|
|
var ErrLimitReached = errors.New("limit reached")
|
|
|
|
|
2022-01-12 23:03:28 +01:00
|
|
|
// Limiter is an interface that implements a rate limiting mechanism, e.g. based on time or a fixed value
|
|
|
|
type Limiter interface {
|
|
|
|
// Allow adds n to the limiters internal value, or returns ErrLimitReached if the limit has been reached
|
|
|
|
Allow(n int64) error
|
|
|
|
}
|
|
|
|
|
|
|
|
// FixedLimiter is a helper that allows adding values up to a well-defined limit. Once the limit is reached
|
|
|
|
// ErrLimitReached will be returned. FixedLimiter may be used by multiple goroutines.
|
|
|
|
type FixedLimiter struct {
|
2021-11-01 21:39:40 +01:00
|
|
|
value int64
|
|
|
|
limit int64
|
|
|
|
mu sync.Mutex
|
|
|
|
}
|
|
|
|
|
2022-01-12 23:03:28 +01:00
|
|
|
// NewFixedLimiter creates a new Limiter
|
|
|
|
func NewFixedLimiter(limit int64) *FixedLimiter {
|
2023-01-27 04:57:18 +01:00
|
|
|
return NewFixedLimiterWithValue(limit, 0)
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewFixedLimiterWithValue creates a new Limiter and sets the initial value
|
|
|
|
func NewFixedLimiterWithValue(limit, value int64) *FixedLimiter {
|
2022-01-12 23:03:28 +01:00
|
|
|
return &FixedLimiter{
|
2021-11-01 21:39:40 +01:00
|
|
|
limit: limit,
|
2023-01-27 04:57:18 +01:00
|
|
|
value: value,
|
2021-11-01 21:39:40 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-12 23:03:28 +01:00
|
|
|
// Allow adds n to the limiters internal value, but only if the limit has not been reached. If the limit was
|
2021-11-01 21:39:40 +01:00
|
|
|
// exceeded after adding n, ErrLimitReached is returned.
|
2022-01-12 23:03:28 +01:00
|
|
|
func (l *FixedLimiter) Allow(n int64) error {
|
2021-11-01 21:39:40 +01:00
|
|
|
l.mu.Lock()
|
|
|
|
defer l.mu.Unlock()
|
2022-01-08 21:47:08 +01:00
|
|
|
if l.value+n > l.limit {
|
2021-11-01 21:39:40 +01:00
|
|
|
return ErrLimitReached
|
|
|
|
}
|
2022-01-08 21:47:08 +01:00
|
|
|
l.value += n
|
|
|
|
return nil
|
2021-11-01 21:39:40 +01:00
|
|
|
}
|
|
|
|
|
2023-01-27 15:42:54 +01:00
|
|
|
// Value returns the current limiter value
|
|
|
|
func (l *FixedLimiter) Value() int64 {
|
|
|
|
l.mu.Lock()
|
|
|
|
defer l.mu.Unlock()
|
|
|
|
return l.value
|
|
|
|
}
|
|
|
|
|
|
|
|
// Reset sets the limiter's value back to zero
|
|
|
|
func (l *FixedLimiter) Reset() {
|
|
|
|
l.mu.Lock()
|
|
|
|
defer l.mu.Unlock()
|
|
|
|
l.value = 0
|
|
|
|
}
|
|
|
|
|
2022-01-12 23:03:28 +01:00
|
|
|
// RateLimiter is a Limiter that wraps a rate.Limiter, allowing a floating time-based limit.
|
|
|
|
type RateLimiter struct {
|
|
|
|
limiter *rate.Limiter
|
2021-11-01 21:39:40 +01:00
|
|
|
}
|
|
|
|
|
2022-01-12 23:03:28 +01:00
|
|
|
// NewRateLimiter creates a new RateLimiter
|
|
|
|
func NewRateLimiter(r rate.Limit, b int) *RateLimiter {
|
|
|
|
return &RateLimiter{
|
|
|
|
limiter: rate.NewLimiter(r, b),
|
|
|
|
}
|
2021-11-01 21:39:40 +01:00
|
|
|
}
|
|
|
|
|
2022-01-12 23:03:28 +01:00
|
|
|
// NewBytesLimiter creates a RateLimiter that is meant to be used for a bytes-per-interval limit,
|
|
|
|
// e.g. 250 MB per day. And example of the underlying idea can be found here: https://go.dev/play/p/0ljgzIZQ6dJ
|
|
|
|
func NewBytesLimiter(bytes int, interval time.Duration) *RateLimiter {
|
|
|
|
return NewRateLimiter(rate.Limit(bytes)*rate.Every(interval), bytes)
|
2021-11-01 21:39:40 +01:00
|
|
|
}
|
2022-01-02 23:56:12 +01:00
|
|
|
|
2022-01-12 23:03:28 +01:00
|
|
|
// Allow adds n to the limiters internal value, but only if the limit has not been reached. If the limit was
|
|
|
|
// exceeded after adding n, ErrLimitReached is returned.
|
|
|
|
func (l *RateLimiter) Allow(n int64) error {
|
|
|
|
if n <= 0 {
|
|
|
|
return nil // No-op. Can't take back bytes you're written!
|
|
|
|
}
|
|
|
|
if !l.limiter.AllowN(time.Now(), int(n)) {
|
|
|
|
return ErrLimitReached
|
|
|
|
}
|
|
|
|
return nil
|
2022-01-02 23:56:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// LimitWriter implements an io.Writer that will pass through all Write calls to the underlying
|
|
|
|
// writer w until any of the limiter's limit is reached, at which point a Write will return ErrLimitReached.
|
|
|
|
// Each limiter's value is increased with every write.
|
|
|
|
type LimitWriter struct {
|
|
|
|
w io.Writer
|
|
|
|
written int64
|
2022-01-12 23:03:28 +01:00
|
|
|
limiters []Limiter
|
2022-01-02 23:56:12 +01:00
|
|
|
mu sync.Mutex
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewLimitWriter creates a new LimitWriter
|
2022-01-12 23:03:28 +01:00
|
|
|
func NewLimitWriter(w io.Writer, limiters ...Limiter) *LimitWriter {
|
2022-01-02 23:56:12 +01:00
|
|
|
return &LimitWriter{
|
|
|
|
w: w,
|
|
|
|
limiters: limiters,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Write passes through all writes to the underlying writer until any of the given limiter's limit is reached
|
|
|
|
func (w *LimitWriter) Write(p []byte) (n int, err error) {
|
|
|
|
w.mu.Lock()
|
|
|
|
defer w.mu.Unlock()
|
|
|
|
for i := 0; i < len(w.limiters); i++ {
|
2022-01-12 23:03:28 +01:00
|
|
|
if err := w.limiters[i].Allow(int64(len(p))); err != nil {
|
2022-01-02 23:56:12 +01:00
|
|
|
for j := i - 1; j >= 0; j-- {
|
2022-01-12 23:03:28 +01:00
|
|
|
w.limiters[j].Allow(-int64(len(p))) // Revert limiters limits if allowed
|
2022-01-02 23:56:12 +01:00
|
|
|
}
|
|
|
|
return 0, ErrLimitReached
|
|
|
|
}
|
|
|
|
}
|
|
|
|
n, err = w.w.Write(p)
|
|
|
|
w.written += int64(n)
|
|
|
|
return
|
|
|
|
}
|