Library
Module
Module type
Parameter
Class
Class type
Basic Unix.select
based IO event loop for Picos
.
The operations in this module automatically manage a Thread
per domain that runs a Unix.select
loop to support the operations.
⚠️ Signal handlers are unfortunately fundamentally non-compositional. The use of signal handlers in this module has been designed to be configurable, which should allow co-operating with other libraries using signals as long as care is taken at application startup to configure
things.
⚠️ All the usual limitations of the Unix
module apply.
val cancel_after :
_ Picos.Computation.t ->
seconds:float ->
exn ->
Stdlib.Printexc.raw_backtrace ->
unit
cancel_after computation ~seconds exn bt
arranges for computation
to be canceled with given exception and backtrace after given time in seconds
. Completion of the computation
before the specified time effectively cancels the timeout.
ℹ️ You can use cancel_after
to implement the handler for the Cancel_after
effect.
val timeout : seconds:float -> unit Picos_std_event.Event.t
timeout ~seconds
returns an event that, on each time after being synchronized on, can be committed to after the specified number of seconds
.
val return_on :
'a Picos.Computation.t ->
Picos_io_fd.t ->
[ `R | `W | `E ] ->
'a ->
unit
return_on computation fd op value
arranges for computation
to be returned with given value
when fd
becomes available for op
. Completion of the computation
before the fd
becomes available for op
effectively cancels the arrangement.
ℹ️ Using Unix.set_nonblock
and return_on
you can implement direct-style transparently asynchronous IO on top of the Unix
module.
val await_on : Picos_io_fd.t -> [ `R | `W | `E ] -> Picos_io_fd.t
await_on fd op
awaits until fd
becomes available for op
.
val on : Picos_io_fd.t -> [ `R | `W | `E ] -> unit Picos_std_event.Event.t
on fd op
returns an event that can be committed to when fd
becomes available for op
.
module Intr : sig ... end
A mechanism to interrupt blocking Unix
IO operations.
val return_on_sigchld : 'a Picos.Computation.t -> 'a -> unit
return_on_sigchld computation value
arranges for computation
to be returned with given value
on next Sys.sigchld
. Completion of the computation
before a Sys.sigchld
is received effectively cancels the arrangement.
⚠️ The mechanism uses the Sys.sigchld
signal which should not be used for other purposes.
val on_sigchld : unit Picos_std_event.Event.t
on_sigchld
is an event that can be committed to after a Sys.sigchld
signal has occurred.
configure ~intr_sig ~handle_sigchld ()
can, and sometimes must, be called by an application to configure the use of signals by this module.
The optional intr_sig
argument can be used to specify the signal used by the interrupt mechanism. The default is to use Sys.sigusr2
.
The optional handle_sigchld
argument can be used to specify whether this module should setup handling of Sys.sigchld
. The default is true
. When explicitly specified as ~handle_sigchld:false
, the application should arrange to call handle_signal
whenever a Sys.sigchld
signal occurs.
The optional ignore_sigpipe
argument can be used to specify whether Sys.sigpipe
will be configured to be ignored or not. The default is true
.
⚠️ This module must always be configured before use. Unless this module has been explicitly configured, calling a method of this module from the main thread on the main domain will automatically configure this module with default options. In case the application uses multiple threads or multiple domains, the application should arrange to call configure
from the main thread on the main domain before any threads or domains besides the main are created or spawned.
check_configured ()
checks whether this module has already been configured or not and, if not, calls configure
with default arguments. In either case, calling check_configured ()
will (re)configure signal handling for the current thread and perform other required initialization for the thread to use this module.
⚠️ This should be called at the start of every thread using this module.
ℹ️ The intended use case for check_configured ()
is at the point of entry of schedulers and other facilities that use this module. In other words, application code should ideally not need to call this directly.
handle_signal signum
should be called to notify this module of a signal when configured to not handle said signals.
First we open some modules for convenience:
open Picos
open Picos_io
open Picos_std_event
open Picos_std_finally
open Picos_std_structured
Here is an example that awaits for one of multiple alternative events:
# Picos_mux_random.run_on ~n_domains:2 @@ fun () ->
let@ msg_inn1, msg_out1 =
finally Unix.close_pair @@ fun () ->
Unix.socketpair ~cloexec:true
PF_UNIX SOCK_STREAM 0
in
let@ msg_inn2, msg_out2 =
finally Unix.close_pair @@ fun () ->
Unix.socketpair ~cloexec:true
PF_UNIX SOCK_STREAM 0
in
let@ syn_inn, syn_out =
finally Unix.close_pair @@ fun () ->
Unix.socketpair ~cloexec:true
PF_UNIX SOCK_STREAM 0
in
Unix.set_nonblock msg_inn1;
Unix.set_nonblock msg_out1;
Unix.set_nonblock msg_inn2;
Unix.set_nonblock msg_out2;
Unix.set_nonblock syn_inn;
Unix.set_nonblock syn_out;
let read1 fd =
let r =
Unix.read fd (Bytes.create 1) 0 1
in
assert (r = 1)
and write1 fd =
let w =
Unix.write_substring fd "!" 0 1
in
assert (w = 1)
in
Flock.join_after ~on_return:`Terminate begin fun () ->
Flock.fork begin fun () ->
while true do
Event.select [
Picos_io_select.on msg_inn1 `R
|> Event.map begin fun () ->
print_endline "Inn1";
read1 msg_inn1;
write1 syn_out
end;
Picos_io_select.on msg_inn2 `R
|> Event.map begin fun () ->
print_endline "Inn2";
read1 msg_inn2;
write1 syn_out;
end;
Picos_io_select.timeout
~seconds:60.0
|> Event.map begin fun () ->
print_endline "Timeout";
write1 syn_out
end;
]
done
end;
write1 msg_out1;
read1 syn_inn;
write1 msg_out2;
read1 syn_inn;
end
Inn1
Inn2
- : unit = ()
Above we use the Event
module providing composable events.