This repository has been archived by the owner on Oct 24, 2023. It is now read-only.
forked from mattermost/mattermost
-
Notifications
You must be signed in to change notification settings - Fork 1
/
delayer.go
109 lines (90 loc) · 3.14 KB
/
delayer.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
package throttled
import "time"
// The Quota interface defines the method to implement to describe
// a time-window quota, as required by the RateLimit throttler.
type Quota interface {
// Quota returns a number of requests allowed, and a duration.
Quota() (int, time.Duration)
}
// The Delayer interface defines the method to implement to describe
// a delay as required by the Interval throttler.
type Delayer interface {
// Delay returns a duration.
Delay() time.Duration
}
// PerSec represents a number of requests per second.
type PerSec int
// Delay returns the duration to wait before the next request can go through,
// so that PerSec(n) == n requests per second at regular intervals.
func (ps PerSec) Delay() time.Duration {
if ps <= 0 {
return 0
}
return time.Duration(1.0 / float64(ps) * float64(time.Second))
}
// Quota returns the number of requests allowed in a 1 second time window,
// so that PerSec(n) == n requests allowed per second.
func (ps PerSec) Quota() (int, time.Duration) {
return int(ps), time.Second
}
// PerMin represents a number of requests per minute.
type PerMin int
// Delay returns the duration to wait before the next request can go through,
// so that PerMin(n) == n requests per minute at regular intervals.
func (pm PerMin) Delay() time.Duration {
if pm <= 0 {
return 0
}
return time.Duration(1.0 / float64(pm) * float64(time.Minute))
}
// Quota returns the number of requests allowed in a 1 minute time window,
// so that PerMin(n) == n requests allowed per minute.
func (pm PerMin) Quota() (int, time.Duration) {
return int(pm), time.Minute
}
// PerHour represents a number of requests per hour.
type PerHour int
// Delay returns the duration to wait before the next request can go through,
// so that PerHour(n) == n requests per hour at regular intervals.
func (ph PerHour) Delay() time.Duration {
if ph <= 0 {
return 0
}
return time.Duration(1.0 / float64(ph) * float64(time.Hour))
}
// Quota returns the number of requests allowed in a 1 hour time window,
// so that PerHour(n) == n requests allowed per hour.
func (ph PerHour) Quota() (int, time.Duration) {
return int(ph), time.Hour
}
// PerDay represents a number of requests per day.
type PerDay int
// Delay returns the duration to wait before the next request can go through,
// so that PerDay(n) == n requests per day at regular intervals.
func (pd PerDay) Delay() time.Duration {
if pd <= 0 {
return 0
}
return time.Duration(1.0 / float64(pd) * float64(24*time.Hour))
}
// Quota returns the number of requests allowed in a 1 day time window,
// so that PerDay(n) == n requests allowed per day.
func (pd PerDay) Quota() (int, time.Duration) {
return int(pd), 24 * time.Hour
}
// D represents a custom delay.
type D time.Duration
// Delay returns the duration to wait before the next request can go through,
// which is the custom duration represented by the D value.
func (d D) Delay() time.Duration {
return time.Duration(d)
}
// Q represents a custom quota.
type Q struct {
Requests int
Window time.Duration
}
// Quota returns the number of requests allowed and the custom time window.
func (q Q) Quota() (int, time.Duration) {
return q.Requests, q.Window
}