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
|
# Setting up the environment
```ocaml
# #require "eio.mock";;
```
```ocaml
open Eio.Std
let run (fn : Switch.t -> _) =
Eio_mock.Backend.run @@ fun () ->
Switch.run fn
let fork_sub ~sw ~on_error fn =
Fiber.fork ~sw (fun () ->
try Switch.run fn
with
| Eio.Cancel.Cancelled _ -> ()
| ex -> on_error ex
)
```
# Test cases
A very basic example:
```ocaml
# run (fun _sw ->
traceln "Running"
);;
+Running
- : unit = ()
```
Turning off a switch still allows you to perform clean-up operations:
```ocaml
# run (fun sw ->
traceln "Running";
Switch.fail sw (Failure "Cancel");
traceln "Clean up"
);;
+Running
+Clean up
Exception: Failure "Cancel".
```
`Fiber.both`, both fibers pass:
```ocaml
# run (fun _sw ->
Fiber.both
(fun () -> for i = 1 to 2 do traceln "i = %d" i; Fiber.yield () done)
(fun () -> for j = 1 to 2 do traceln "j = %d" j; Fiber.yield () done)
);;
+i = 1
+j = 1
+i = 2
+j = 2
- : unit = ()
```
`Fiber.both`, only 1st succeeds:
```ocaml
# run (fun sw ->
Fiber.both
(fun () -> for i = 1 to 5 do traceln "i = %d" i; Fiber.yield () done)
(fun () -> failwith "Failed")
);;
+i = 1
Exception: Failure "Failed".
```
`Fiber.both`, only 2nd succeeds:
```ocaml
# run (fun sw ->
Fiber.both
(fun () -> Fiber.yield (); failwith "Failed")
(fun () -> for i = 1 to 5 do traceln "i = %d" i; Fiber.yield () done)
);;
+i = 1
Exception: Failure "Failed".
```
`Fiber.both`, first fails immediately and the other doesn't start:
```ocaml
# run (fun sw ->
Fiber.both (fun () -> failwith "Failed") (fun () -> traceln "Second OK");
traceln "Not reached"
);;
Exception: Failure "Failed".
```
`Fiber.both`, second fails but the other doesn't stop:
```ocaml
# run (fun sw ->
Fiber.both ignore (fun () -> failwith "Failed");
traceln "not reached"
);;
Exception: Failure "Failed".
```
`Fiber.both`, both fibers fail:
```ocaml
# run (fun sw ->
Fiber.both
(fun () -> Eio.Cancel.protect Fiber.yield; failwith "Failed 1")
(fun () -> Eio.Cancel.protect Fiber.yield; failwith "Failed 2")
);;
Exception: Multiple exceptions:
- Failure("Failed 1")
- Failure("Failed 2")
```
The switch is already turned off when we try to fork. The new fiber doesn't start:
```ocaml
# run (fun sw ->
Switch.fail sw (Failure "Cancel");
Fiber.fork ~sw (fun () -> traceln "Not reached");
traceln "Main continues"
);;
+Main continues
Exception: Failure "Cancel".
```
You can't use a switch after leaving its scope:
```ocaml
# let sw = run Fun.id;;
val sw : Switch.t = <abstr>
# Switch.check sw;;
Exception: Invalid_argument "Switch finished!".
```
Wait for either a promise or a cancellation; cancellation first:
```ocaml
# run (fun sw ->
let p, r = Promise.create () in
Fiber.fork ~sw (fun () ->
Fiber.both
(fun () -> traceln "Waiting"; Promise.await p; traceln "Resolved")
(fun () -> failwith "Cancelled")
);
Fiber.yield ();
Promise.resolve r ();
traceln "Main thread done";
);;
+Waiting
+Main thread done
Exception: Failure "Cancelled".
```
Wait for either a promise or a switch; promise resolves first:
```ocaml
# run (fun sw ->
let p, r = Promise.create () in
Fiber.fork ~sw (fun () -> traceln "Waiting"; Promise.await p; traceln "Resolved");
Promise.resolve r ();
Fiber.yield ();
traceln "Now cancelling...";
Switch.fail sw (Failure "Cancelled")
);;
+Waiting
+Resolved
+Now cancelling...
Exception: Failure "Cancelled".
```
Wait for either a promise or a switch; switch cancelled first. Result version.
```ocaml
# run (fun sw ->
let p, r = Promise.create () in
Fiber.fork ~sw (fun () -> traceln "Waiting"; Promise.await p; traceln "Resolved");
Switch.fail sw (Failure "Cancelled");
Promise.resolve r ()
);;
+Waiting
Exception: Failure "Cancelled".
```
Wait for either a promise or a switch; promise resolves first but switch off without yielding:
```ocaml
# run (fun sw ->
let p, r = Promise.create () in
Fiber.fork ~sw (fun () -> traceln "Waiting"; Promise.await p; traceln "Resolved");
Promise.resolve r ();
traceln "Now cancelling...";
Switch.fail sw (Failure "Cancelled")
);;
+Waiting
+Now cancelling...
+Resolved
Exception: Failure "Cancelled".
```
Child switches are cancelled when the parent is cancelled, but `on_error` isn't notified:
```ocaml
# run (fun sw ->
let p, _ = Promise.create () in
let on_error ex = traceln "child: %s" (Printexc.to_string ex) in
fork_sub ~sw ~on_error (fun sw -> traceln "Child 1"; Promise.await p);
fork_sub ~sw ~on_error (fun sw -> traceln "Child 2"; Promise.await p);
Switch.fail sw (Failure "Cancel parent")
);;
+Child 1
+Child 2
Exception: Failure "Cancel parent".
```
A child can fail independently of the parent:
```ocaml
# run (fun sw ->
let p1, r1 = Promise.create () in
let p2, r2 = Promise.create () in
let on_error ex = traceln "child: %s" (Printexc.to_string ex) in
fork_sub ~sw ~on_error (fun sw -> traceln "Child 1"; Promise.await_exn p1);
fork_sub ~sw ~on_error (fun sw -> traceln "Child 2"; Promise.await_exn p2);
Promise.resolve_error r1 (Failure "Child error");
Promise.resolve_ok r2 ();
Fiber.yield ();
traceln "Parent fiber is still running"
);;
+Child 1
+Child 2
+child: Failure("Child error")
+Parent fiber is still running
- : unit = ()
```
A child can be cancelled independently of the parent:
```ocaml
# run (fun sw ->
let p, _ = Promise.create () in
let on_error ex = traceln "child: %s" (Printexc.to_string ex) in
let child = ref None in
fork_sub ~sw ~on_error (fun sw ->
traceln "Child 1";
child := Some sw;
Promise.await ~sw p
);
Switch.fail (Option.get !child) (Failure "Cancel child");
Fiber.yield ();
traceln "Parent fiber is still running"
);;
+Child 1
+child: Failure("Cancel child")
+Parent fiber is still running
- : unit = ()
```
A child error handler raises:
```ocaml
# run (fun sw ->
let p, r = Promise.create () in
let on_error = raise in
fork_sub ~sw ~on_error (fun sw -> traceln "Child"; Promise.await_exn p);
Promise.resolve_error r (Failure "Child error escapes");
Fiber.yield ();
traceln "Not reached"
);;
+Child
Exception: Failure "Child error escapes".
```
A child error handler deals with the exception:
```ocaml
# run (fun sw ->
let p, r = Promise.create () in
let on_error = traceln "caught: %a" Fmt.exn in
fork_sub ~sw ~on_error (fun sw -> traceln "Child"; Promise.await_exn p);
Promise.resolve_error r (Failure "Child error is caught");
Fiber.yield ();
traceln "Still running"
);;
+Child
+caught: Failure("Child error is caught")
+Still running
- : unit = ()
```
# Release handlers
```ocaml
let release label = Fiber.yield (); traceln "release %s" label
```
Release on success:
```ocaml
# run (fun sw ->
Switch.on_release sw (fun () -> release "1");
Switch.on_release sw (fun () -> release "2");
);;
+release 2
+release 1
- : unit = ()
```
Release on error:
```ocaml
# run (fun sw ->
Switch.on_release sw (fun () -> release "1");
Switch.on_release sw (fun () -> release "2");
failwith "Test error"
);;
+release 2
+release 1
Exception: Failure "Test error".
```
A release operation itself fails:
```ocaml
# run (fun sw ->
Switch.on_release sw (fun () -> release "1"; failwith "failure 1");
Switch.on_release sw (fun () -> release "2");
Switch.on_release sw (fun () -> release "3"; failwith "failure 3");
);;
+release 3
+release 2
+release 1
Exception: Multiple exceptions:
- Failure("failure 3")
- Failure("failure 1")
```
Attaching a release handler to a finished switch from a cancelled context:
```ocaml
# run @@ fun sw ->
let sub = Switch.run Fun.id in (* A finished switch *)
Switch.fail sw (Failure "Parent cancelled too!");
Switch.on_release sub (fun () -> release "1");;
+release 1
Exception:
Multiple exceptions:
- Failure("Parent cancelled too!")
- Invalid_argument("Switch finished!")
```
Attaching resources to a switch from inside release handler fails
(possibly forking with it should be disallowed in future too):
```ocaml
# run (fun sw ->
Switch.on_release sw (fun () ->
Fiber.fork ~sw (fun () ->
traceln "Starting release 1";
Fiber.yield ();
traceln "Finished release 1"
);
);
Switch.on_release sw (fun () ->
Fiber.fork ~sw (fun () ->
traceln "Starting release 2";
begin
try
Switch.on_release sw (fun () -> traceln "Immediate release");
with Invalid_argument msg ->
traceln "on_release refused: %s" msg
end;
Fiber.yield ();
traceln "Finished release 2"
);
);
traceln "Main fiber done"
);;
+Main fiber done
+Starting release 2
+Immediate release
+on_release refused: Switch finished!
+Starting release 1
+Finished release 2
+Finished release 1
- : unit = ()
```
# Error reporting
All release hooks run, even if some fail, and all errors are reported:
```ocaml
# run (fun sw ->
Fiber.fork ~sw (fun () -> try Fiber.await_cancel () with _ -> failwith "cancel1 failed");
Fiber.fork ~sw (fun () -> try Fiber.await_cancel () with _ -> failwith "cancel2 failed");
raise Exit
);;
Exception:
Multiple exceptions:
- Stdlib.Exit
- Failure("cancel1 failed")
- Failure("cancel2 failed")
```
# Errors during cleanup are reported during cancellation
```ocaml
# run (fun sw ->
Fiber.fork ~sw (fun () ->
Switch.run @@ fun sw ->
try Fiber.await_cancel () with _ -> failwith "cleanup failed");
Fiber.fork ~sw (fun () -> failwith "simulated error")
);;
Exception:
Multiple exceptions:
- Failure("simulated error")
- Failure("cleanup failed")
```
|