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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
open Import
module Worker : sig
(** Simple queue that is consumed by its own thread *)
type 'work t
val create : do_:('a -> unit) -> 'a t
type task
val cancel : task -> unit
val add_work : 'a t -> 'a -> (task, [ `Stopped ]) result
val stop : _ t -> unit
end = struct
type state =
| Running of Thread.t
| Stopped of Thread.t
| Finished
type 'a t =
{ work : 'a Removable_queue.t
; mutable state : state
; mutex : Mutex.t
; work_available : Condition.t
}
and task = Task : 'a t * 'a Removable_queue.node -> task
let cancel (Task (t, node)) =
with_mutex t.mutex ~f:(fun () -> Removable_queue.remove node)
let is_running t =
match t.state with
| Running _ -> true
| Stopped _
| Finished ->
false
let run (f, t) =
let rec loop () =
match t.state with
| Stopped _ -> (
match Removable_queue.pop t.work with
| None -> t.state <- Finished
| Some job -> do_work job )
| Finished -> ()
| Running _ -> (
match Removable_queue.pop t.work with
| Some job -> do_work job
| None ->
while Removable_queue.is_empty t.work && is_running t do
Condition.wait t.work_available t.mutex
done;
loop () )
and do_work job =
Mutex.unlock t.mutex;
f job;
Mutex.lock t.mutex;
loop ()
in
with_mutex t.mutex ~f:loop
let create ~do_ =
let t =
{ work = Removable_queue.create ()
; state = Finished
; mutex = Mutex.create ()
; work_available = Condition.create ()
}
in
t.state <- Running (Thread.create run (do_, t));
t
let add_work (type a) (t : a t) (w : a) =
with_mutex t.mutex ~f:(fun () ->
if is_running t then (
let node = Removable_queue.push t.work w in
Condition.signal t.work_available;
Ok (Task (t, node))
) else
Error `Stopped)
let stop (t : _ t) =
with_mutex t.mutex ~f:(fun () ->
match t.state with
| Running th ->
t.state <- Stopped th;
Condition.signal t.work_available
| Stopped _
| Finished ->
())
end
module Timer_id = Id.Make ()
type t =
{ mutable events_pending : int
; events : event Queue.t
; events_mutex : Mutex.t
; time_mutex : Mutex.t
; event_ready : Condition.t
; timers_available : Condition.t
; timers_available_mutex : Mutex.t
; earliest_next_mutex : Mutex.t
; earliest_next_barrier : Barrier.t
; mutable earliest_next : float option
; mutable threads : thread list
; mutable time : Thread.t
; mutable waker : Thread.t
;
timers : (Timer_id.t, active_timer ref) Table.t
}
and event =
| Job_completed : 'a * 'a Fiber.Ivar.t -> event
| Scheduled of active_timer
| Abort
and job =
| Pending :
(unit -> 'a) * ('a, [ `Exn of Exn.t | `Canceled ]) result Fiber.Ivar.t
-> job
and thread =
{ scheduler : t
; worker : job Worker.t
}
and timer =
{ mutable delay : float
; timer_scheduler : t
; timer_id : Timer_id.t
}
and active_timer =
{ scheduled : float
; ivar : [ `Resolved | `Cancelled ] Fiber.Ivar.t
; parent : timer
}
let add_events t = function
| [] -> ()
| events ->
with_mutex t.events_mutex ~f:(fun () ->
List.iter events ~f:(Queue.push t.events);
Condition.signal t.event_ready)
let is_empty table = Table.length table = 0
let me = Fiber.Var.create ()
let scheduler () = Fiber.Var.get_exn me
let signal_timers_available t =
with_mutex t.timers_available_mutex ~f:(fun () ->
Condition.signal t.timers_available)
let time_loop t =
let rec loop () =
let to_run = ref [] in
let earliest_next = ref None in
with_mutex t.time_mutex ~f:(fun () ->
if not (is_empty t.timers) then
let now = Unix.gettimeofday () in
Table.filteri_inplace t.timers ~f:(fun ~key:_ ~data:active_timer ->
let active_timer = !active_timer in
let scheduled_at =
active_timer.scheduled +. active_timer.parent.delay
in
let need_to_run = scheduled_at < now in
if need_to_run then
to_run := active_timer :: !to_run
else
earliest_next :=
Some
( match !earliest_next with
| None -> scheduled_at
| Some v -> min scheduled_at v );
not need_to_run));
let to_run =
List.sort !to_run ~compare:(fun x y ->
Timer_id.compare x.parent.timer_id y.parent.timer_id)
|> List.map ~f:(fun x -> Scheduled x)
in
add_events t to_run;
Option.iter !earliest_next ~f:(fun s ->
with_mutex t.earliest_next_mutex ~f:(fun () ->
t.earliest_next <- Some s);
match Barrier.signal t.earliest_next_barrier with
| Ok () -> ()
| Error `Closed -> assert false);
with_mutex t.timers_available_mutex ~f:(fun () ->
Condition.wait t.timers_available t.timers_available_mutex);
loop ()
in
loop ()
let wake_loop t =
let rec loop timeout =
match Barrier.await t.earliest_next_barrier ?timeout with
| Error (`Closed (`Read b)) -> if b then signal_timers_available t
| Error `Timeout ->
signal_timers_available t;
loop None
| Ok () -> (
let wakeup_at =
with_mutex t.earliest_next_mutex ~f:(fun () ->
let v = t.earliest_next in
t.earliest_next <- None;
v)
in
let now = Unix.gettimeofday () in
match wakeup_at with
| None -> loop None
| Some wakeup_at ->
if now < wakeup_at then
loop (Some (wakeup_at -. now))
else (
signal_timers_available t;
loop None
) )
in
loop None
let create () =
let t =
{ events_pending = 0
; events = Queue.create ()
; events_mutex = Mutex.create ()
; time_mutex = Mutex.create ()
; event_ready = Condition.create ()
; earliest_next_mutex = Mutex.create ()
; earliest_next = None
; earliest_next_barrier = Barrier.create ()
; threads = []
; timers = Table.create (module Timer_id) 10
; timers_available = Condition.create ()
; timers_available_mutex = Mutex.create ()
; time = Thread.self ()
; waker = Thread.self ()
}
in
t.time <- Thread.create time_loop t;
t.waker <- Thread.create wake_loop t;
t
let create_thread scheduler =
let worker =
let do_ (Pending (f, ivar)) =
let res =
match Result.try_with f with
| Ok x -> Ok x
| Error exn -> Error (`Exn exn)
in
add_events scheduler [ Job_completed (res, ivar) ]
in
Worker.create ~do_
in
let t = { scheduler; worker } in
scheduler.threads <- t :: scheduler.threads;
t
let add_pending_events t by =
with_mutex t.events_mutex ~f:(fun () ->
t.events_pending <- t.events_pending + by;
assert (t.events_pending >= 0))
type 'a task =
{ ivar : ('a, [ `Exn of Exn.t | `Canceled ]) result Fiber.Ivar.t
; task : Worker.task
}
let await task = Fiber.Ivar.read task.ivar
let await_no_cancel task =
let open Fiber.O in
let+ res = Fiber.Ivar.read task.ivar in
match res with
| Ok x -> Ok x
| Error `Canceled -> assert false
| Error (`Exn exn) -> Error exn
let cancel_task task =
let open Fiber.O in
let* status = Fiber.Ivar.peek task.ivar in
match status with
| Some _ -> Fiber.return ()
| None ->
Worker.cancel task.task;
Fiber.Ivar.fill task.ivar (Error `Canceled)
let async (t : thread) f =
add_pending_events t.scheduler 1;
let ivar = Fiber.Ivar.create () in
let work = Worker.add_work t.worker (Pending (f, ivar)) in
Result.map work ~f:(fun task -> { ivar; task })
let async_exn t f =
match async t f with
| Error `Stopped -> Code_error.raise "async_exn: stopped thread" []
| Ok task -> task
let stop (t : thread) = Worker.stop t.worker
let cancel_timers t =
let timers = ref [] in
with_mutex t.time_mutex ~f:(fun () ->
Table.filteri_inplace t.timers ~f:(fun ~key:_ ~data:timer ->
timers := !timer.ivar :: !timers;
false));
Fiber.parallel_iter !timers ~f:(fun ivar -> Fiber.Ivar.fill ivar `Cancelled)
let cleanup t =
Barrier.close t.earliest_next_barrier;
List.iter t.threads ~f:stop
type run_error =
| Never
| Abort_requested
| Exn of Exn.t
exception Abort of run_error
let event_next (t : t) : Fiber.fill =
with_mutex t.events_mutex ~f:(fun () ->
while Queue.is_empty t.events do
Condition.wait t.event_ready t.events_mutex
done;
let consume_event () =
let res = Queue.pop_exn t.events in
t.events_pending <- t.events_pending - 1;
assert (t.events_pending >= 0);
res
in
if Queue.is_empty t.events then
Error (Abort Never)
else
match consume_event () with
| Abort -> Error (Abort Abort_requested)
| Job_completed (a, ivar) -> Ok (Fiber.Fill (ivar, a))
| Scheduled active_timer -> Ok (Fill (active_timer.ivar, `Resolved)))
|> Result.ok_exn
let report t =
let status m =
if Mutex.try_lock m then
"was unlocked"
else
"locked"
in
[ ("time_mutex", t.time_mutex)
; ("timers_available_mutex", t.timers_available_mutex)
; ("events_mutex", t.events_mutex)
]
|> List.iter ~f:(fun (name, mutex) ->
Format.eprintf "%s: %s@." name (status mutex));
Format.eprintf "pending events: %d@." t.events_pending;
Format.eprintf "events: %d@." (Queue.length t.events);
Format.eprintf "threads: %d@." (List.length t.threads);
Format.eprintf "timers: %d@." (Table.length t.timers)
let iter (t : t) =
if t.events_pending = 0 then (
let () = assert (Queue.is_empty t.events) in
report t;
raise (Abort Never)
) else
event_next t
let run_result : 'a. t -> 'a Fiber.t -> ('a, _) result =
fun t f ->
let f = Fiber.Var.set me t (fun () -> f) in
let iter () = iter t in
let res =
match Fiber.run f ~iter with
| exception Abort err -> Error err
| exception exn -> Error (Exn exn)
| res ->
assert (t.events_pending = 0);
Ok res
in
cleanup t;
res
let run t f =
match run_result t f with
| Ok s -> s
| Error e -> raise (Abort e)
let create_timer t ~delay =
{ timer_scheduler = t; delay; timer_id = Timer_id.gen () }
let set_delay t ~delay = t.delay <- delay
let schedule (type a) (timer : timer) (f : unit -> a Fiber.t) :
(a, [ `Cancelled ]) result Fiber.t =
let open Fiber.O in
let active_timer =
let scheduled = Unix.gettimeofday () in
{ scheduled; ivar = Fiber.Ivar.create (); parent = timer }
in
let* () =
match
with_mutex timer.timer_scheduler.time_mutex ~f:(fun () ->
match Table.find timer.timer_scheduler.timers timer.timer_id with
| Some active ->
let to_cancel = !active.ivar in
active := active_timer;
`Cancel to_cancel
| None ->
Table.add_exn timer.timer_scheduler.timers timer.timer_id
(ref active_timer);
`Signal_timers_available)
with
| `Cancel ivar -> Fiber.Ivar.fill ivar `Cancelled
| `Signal_timers_available ->
add_pending_events timer.timer_scheduler 1;
signal_timers_available timer.timer_scheduler;
Fiber.return ()
in
let* res = Fiber.Ivar.read active_timer.ivar in
match res with
| `Cancelled as e -> Fiber.return (Error e)
| `Resolved ->
let+ res = f () in
Ok res
let cancel_timer (timer : timer) =
let t = timer.timer_scheduler in
match
with_mutex t.time_mutex ~f:(fun () ->
match Table.find t.timers timer.timer_id with
| None -> None
| Some at ->
Table.remove t.timers timer.timer_id;
Some !at.ivar)
with
| None -> Fiber.return ()
| Some ivar ->
with_mutex t.events_mutex ~f:(fun () ->
t.events_pending <- t.events_pending - 1);
Fiber.Ivar.fill ivar `Cancelled
let abort t =
add_events t [ Abort ]