Source file thread_safe.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
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
open Core
open Import
open Raw_scheduler
let debug = Debug.thread_safe
let run_holding_async_lock
(type a b)
?(wakeup_scheduler = true)
t
(f : unit -> a)
~(finish : (a, exn) Result.t -> b)
: b
=
if debug then Debug.log "run_holding_async_lock" t [%sexp_of: t];
if not (am_holding_lock t) then lock t;
protect
~finally:(fun () ->
if wakeup_scheduler then thread_safe_wakeup_scheduler t;
unlock t)
~f:(fun () ->
finish
(with_execution_context t Kernel_scheduler.main_execution_context ~f:(fun () ->
Result.try_with f)))
;;
let ensure_in_a_thread t function_ =
if is_main_thread ()
then raise_s [%message "cannot call from the main thread" (function_ : string)];
if am_holding_lock t
then raise_s [%message "cannot call while holding the async lock" (function_ : string)]
;;
let run_in_async_with_optional_cycle ?wakeup_scheduler t f =
if debug then Debug.log "run_in_async_with_optional_cycle" t [%sexp_of: t];
ensure_in_a_thread t "run_in_async_with_optional_cycle";
run_holding_async_lock ?wakeup_scheduler t f ~finish:(function
| Error exn -> Error exn
| Ok (maybe_run_a_cycle, a) ->
(match maybe_run_a_cycle with
| `Do_not_run_a_cycle -> ()
| `Run_a_cycle -> have_lock_do_cycle t);
Ok a)
;;
let block_on_async t f =
if debug then Debug.log "block_on_async" t [%sexp_of: t];
if i_am_the_scheduler t || (am_holding_lock t && not (is_main_thread ()))
then raise_s [%message "called [block_on_async] from within async"];
let execution_context = Kernel_scheduler.current_execution_context t.kernel_scheduler in
if not t.is_running
then (
t.is_running <- true;
if am_holding_lock t then unlock t;
let scheduler_ran_a_job = Thread_safe_ivar.create () in
upon (return ()) (fun () -> Thread_safe_ivar.fill scheduler_ran_a_job ());
ignore
(Core_thread.create
~on_uncaught_exn:`Print_to_stderr
(fun () ->
Exn.handle_uncaught ~exit:true (fun () ->
let () =
match Linux_ext.pr_set_name_first16 with
| Ok f -> f "async-scheduler"
| Error _ -> ()
in
lock t;
never_returns (be_the_scheduler t)))
()
: Core_thread.t);
Thread_safe_ivar.read scheduler_ran_a_job);
let maybe_blocked =
run_holding_async_lock
t
(fun () ->
Monitor.try_with
~run:
`Schedule
~rest:`Log
f
~name:"block_on_async")
~finish:(fun res ->
match res with
| Error exn -> `Available (Error exn)
| Ok d ->
(match Deferred.peek d with
| Some v -> `Available v
| None ->
have_lock_do_cycle t;
(match Deferred.peek d with
| Some v -> `Available v
| None ->
let q = Squeue.create 1 in
upon d (fun v -> Squeue.push_uncond q v);
`Blocked_wait_on_squeue q)))
in
let res =
match maybe_blocked with
| `Available v -> v
| `Blocked_wait_on_squeue q ->
Squeue.pop q
in
if is_main_thread ()
then (
lock t;
Kernel_scheduler.set_execution_context t.kernel_scheduler execution_context);
res
;;
let block_on_async_exn t f = Result.ok_exn (block_on_async t f)
let reset_scheduler t =
if debug then Debug.log "reset_scheduler" t [%sexp_of: t];
if i_am_the_scheduler t || (am_holding_lock t && not (is_main_thread ()))
then raise_s [%message "called [reset_scheduler] from within async"];
if am_holding_lock t then unlock t;
Raw_scheduler.thread_safe_reset ()
;;
let run_in_async ?wakeup_scheduler t f =
if debug then Debug.log "run_in_async" t [%sexp_of: t];
ensure_in_a_thread t "run_in_async";
run_holding_async_lock ?wakeup_scheduler t f ~finish:Fn.id
;;
let run_in_async_exn ?wakeup_scheduler t f =
Result.ok_exn (run_in_async ?wakeup_scheduler t f)
;;
let run_in_async_wait t f =
if debug then Debug.log "run_in_async_wait" t [%sexp_of: t];
ensure_in_a_thread t "run_in_async_wait";
block_on_async t f
;;
let run_in_async_wait_exn t f = Result.ok_exn (run_in_async_wait t f)
let deferred t =
let ivar =
if am_holding_lock t
then Ivar.create ()
else run_holding_async_lock t Ivar.create ~finish:Result.ok_exn
in
let fill x = run_in_async_exn t (fun () -> Ivar.fill ivar x) in
Ivar.read ivar, fill
;;
let t () = the_one_and_only ()
let am_holding_async_lock () = am_holding_lock (t ())
let deferred () = deferred (t ())
let run_in_async_with_optional_cycle ?wakeup_scheduler f =
run_in_async_with_optional_cycle ?wakeup_scheduler (t ()) f
;;
let run_in_async ?wakeup_scheduler f = run_in_async ?wakeup_scheduler (t ()) f
let run_in_async_exn ?wakeup_scheduler f = run_in_async_exn ?wakeup_scheduler (t ()) f
let block_on_async f = block_on_async (t ()) f
let block_on_async_exn f = block_on_async_exn (t ()) f
let run_in_async_wait f = run_in_async_wait (t ()) f
let run_in_async_wait_exn f = run_in_async_wait_exn (t ()) f
let reset_scheduler () = reset_scheduler (t ())
let ok_to_drop_lock t =
is_main_thread () && not (Kernel_scheduler.in_cycle t.kernel_scheduler)
;;
let without_async_lock f =
let t = t () in
if i_am_the_scheduler t || (am_holding_lock t && not (ok_to_drop_lock t))
then
raise_s
[%message "called [become_helper_thread_and_block_on_async] from within async"]
else if am_holding_lock t
then (
unlock t;
protect ~f ~finally:(fun () -> lock t))
else f ()
;;