Source file Domain_local_await.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
type t = { release : unit -> unit; await : unit -> unit }
module Default = struct
type t = { mutex : Mutex.t; condition : Condition.t }
let init () =
let t =
let mutex = Mutex.create () and condition = Condition.create () in
{ mutex; condition }
in
fun () ->
let released = ref false in
let release () =
if not !released then (
Mutex.lock t.mutex;
if not !released then (
released := true;
Mutex.unlock t.mutex;
Condition.broadcast t.condition)
else Mutex.unlock t.mutex)
and await () =
if not !released then (
Mutex.lock t.mutex;
while not !released do
Condition.wait t.condition t.mutex
done;
Mutex.unlock t.mutex)
in
{ release; await }
end
module type Thread = sig
type t
val self : unit -> t
val id : t -> int
end
type 'handle thread = (module Thread with type t = 'handle)
type config =
| Per_domain : (unit -> t) -> config
| Per_thread : {
default : unit -> t;
self : unit -> 'handle;
id : 'handle -> int;
id_to_prepare : (int, unit -> t) Hashtbl.t;
}
-> config
let key = Domain.DLS.new_key @@ fun () -> Per_domain (Default.init ())
let per_thread (type handle) ((module Thread) : handle thread) =
match Domain.DLS.get key with
| Per_thread _ ->
failwith "Domain_local_await: per_thread called twice on a single domain"
| Per_domain default ->
let open Thread in
let id_to_prepare = Hashtbl.create ~random:true 16 in
Domain.DLS.set key (Per_thread { default; self; id; id_to_prepare })
let using ~prepare_for_await ~while_running =
match Domain.DLS.get key with
| Per_domain _ as previous ->
let current = Per_domain prepare_for_await in
Domain.DLS.set key current;
Fun.protect while_running ~finally:(fun () -> Domain.DLS.set key previous)
| Per_thread { self; id; id_to_prepare; _ } ->
let id = id (self ()) in
Hashtbl.add id_to_prepare id prepare_for_await;
Fun.protect while_running ~finally:(fun () ->
Hashtbl.remove id_to_prepare id)
let prepare_for_await () =
match Domain.DLS.get key with
| Per_domain default -> default ()
| Per_thread { default; id; self; id_to_prepare } -> (
match Hashtbl.find id_to_prepare (id (self ())) with
| prepare -> prepare ()
| exception Not_found -> default ())