Source file rate_limiter_impl.ml
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
module type S = sig
module IO : Types.IO
type t
type clock
module Addr : Types.ADDR
val check : t -> Addr.t Request.t -> Response.t IO.t option
val make :
clock -> ?period:int -> int -> [ `Second | `Minute | `Hour | `Day ] -> t
end
module Make (Clock : Types.PCLOCK) (IO : Types.IO) (Addr : Types.ADDR) :
S with module IO = IO and module Addr = Addr and type clock = Clock.t = struct
module IO = IO
module Addr = Addr
module AddrMap = Stdlib.Map.Make (Addr)
type clock = Clock.t
type t = {
clock : clock;
mutable requests : int;
period : int;
mutable next_timestamp : int;
mutable history : int AddrMap.t;
}
let now clock =
let _, ps = Clock.now_d_ps clock in
Int64.div ps (Int64.of_float (10. ** 12.)) |> Int64.to_int
let reset t =
t.next_timestamp <- now t.clock + t.period;
t.history <- AddrMap.empty
let check t req =
let time_left = t.next_timestamp - now t.clock in
if time_left <= 0 then reset t;
let addr = Request.ip req in
let n = AddrMap.find_opt addr t.history |> Option.fold ~none:1 ~some:succ in
t.history <- AddrMap.add addr n t.history;
if n > t.requests then
Response.(response Status.slow_down time_left) |> IO.return |> Option.some
else None
let make clock ?(period = 1) requests duration =
let period =
period
*
match duration with
| `Second -> 1
| `Minute -> 60
| `Hour -> 3600
| `Day -> 3600 * 24
in
let t =
{ clock; requests; period; next_timestamp = 0; history = AddrMap.empty }
in
reset t;
t
end