/usr/lib/ocaml/lwt/lwt.mli is in liblwt-ocaml-dev 2.5.0+1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 | (* Lightweight thread library for OCaml
* http://www.ocsigen.org/lwt
* Interface Lwt
* Copyright (C) 2005-2008 Jérôme Vouillon
* Laboratoire PPS - CNRS Université Paris Diderot
* 2009-2012 Jérémie Dimino
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation, with linking exceptions;
* either version 2.1 of the License, or (at your option) any later
* version. See COPYING file for details.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
* 02111-1307, USA.
*)
(** Module [Lwt]: cooperative light-weight threads. *)
(** This module defines {e cooperative light-weight threads} with
their primitives. A {e light-weight thread} represent a
computation that may be not terminated, for example because it is
waiting for some event to happen.
Lwt threads are cooperative in the sense that switching to another
thread is awlays explicit (with {!wakeup} or {!wakeup_exn}). When a
thread is running, it executes as much as possible, and then
returns (a value or an error) or sleeps.
Note that inside a Lwt thread, exceptions must be raised with
{!fail} instead of [raise]. Also the [try ... with ...]
construction will not catch Lwt errors. You must use {!catch}
instead. You can also use {!wrap} for functions that may raise
normal exception.
Lwt also provides the syntax extension {!Pa_lwt} to make code
using Lwt more readable.
*)
(** {2 Definitions and basics} *)
type +'a t
(** The type of threads returning a result of type ['a]. *)
val return : 'a -> 'a t
(** [return e] is a thread whose return value is the value of the
expression [e]. *)
val fail : exn -> 'a t
(** [fail e] is a thread that fails with the exception [e]. *)
val fail_with : string -> 'a t
(** [fail_with msg] is a thread that fails with the exception
[Failure msg]. *)
val fail_invalid_arg : string -> 'a t
(** [fail_invalid_arg msg] is a thread that fails with the exception
[Invalid_argument msg]. *)
val bind : 'a t -> ('a -> 'b t) -> 'b t
(** [bind t f] is a thread which first waits for the thread [t] to
terminate and then, if the thread succeeds, behaves as the
application of function [f] to the return value of [t]. If the
thread [t] fails, [bind t f] also fails, with the same
exception.
The expression [bind t (fun x -> t')] can intuitively be read as
[let x = t in t'], and if you use the {e lwt.syntax} syntax
extension, you can write a bind operation like that: [lwt x = t in t'].
Note that [bind] is also often used just for synchronization
purpose: [t'] will not execute before [t] is terminated.
The result of a thread can be bound several times. *)
val (>>=) : 'a t -> ('a -> 'b t) -> 'b t
(** [t >>= f] is an alternative notation for [bind t f]. *)
val (=<<) : ('a -> 'b t) -> 'a t -> 'b t
(** [f =<< t] is [t >>= f] *)
val map : ('a -> 'b) -> 'a t -> 'b t
(** [map f m] maps the result of a thread. This is the same as [bind
m (fun x -> return (f x))] *)
val (>|=) : 'a t -> ('a -> 'b) -> 'b t
(** [m >|= f] is [map f m] *)
val (=|<) : ('a -> 'b) -> 'a t -> 'b t
(** [f =|< m] is [map f m] *)
(** {3 Pre-allocated threads} *)
val return_unit : unit t
(** [return_unit = return ()] *)
val return_none : 'a option t
(** [return_none = return None] *)
val return_some : 'a -> 'a option t
(** [return_some x = return (Some x)] *)
val return_nil : 'a list t
(** [return_nil = return \[\]] *)
val return_true : bool t
(** [return_true = return true] *)
val return_false : bool t
(** [return_false = return false] *)
(** {2 Thread storage} *)
type 'a key
(** Type of a key. Keys are used to store local values into
threads. *)
val new_key : unit -> 'a key
(** [new_key ()] creates a new key. *)
val get : 'a key -> 'a option
(** [get key] returns the value associated with [key] in the current
thread. *)
val with_value : 'a key -> 'a option -> (unit -> 'b) -> 'b
(** [with_value key value f] executes [f] with [value] associated to
[key]. [key] is restored to its previous value after [f] terminates. *)
(** {2 Exceptions handling} *)
val catch : (unit -> 'a t) -> (exn -> 'a t) -> 'a t
(** [catch t f] is a thread that behaves as the thread [t ()] if
this thread succeeds. If the thread [t ()] fails with some
exception, [catch t f] behaves as the application of [f] to this
exception. *)
val try_bind : (unit -> 'a t) -> ('a -> 'b t) -> (exn -> 'b t) -> 'b t
(** [try_bind t f g] behaves as [bind (t ()) f] if [t] does not
fail. Otherwise, it behaves as the application of [g] to the
exception associated to [t ()]. *)
val finalize : (unit -> 'a t) -> (unit -> unit t) -> 'a t
(** [finalize f g] returns the same result as [f ()] whether it
fails or not. In both cases, [g ()] is executed after [f]. *)
val wrap : (unit -> 'a) -> 'a t
(** [wrap f] calls [f] and transforms the result into an Lwt thread.
If [f] raises an exception, it is caught and converted to an Lwt
exception.
This is actually the same as:
{[
try
return (f ())
with exn ->
fail exn
]}
*)
val wrap1 : ('a -> 'b) -> 'a -> 'b t
(** [wrap1 f x] applies [f] on [x] and returns the result as a
thread. If the application of [f] to [x] raise an exception it
is catched and a thread is returned.
Note that you must use {!wrap} instead of {!wrap1} if the
evaluation of [x] may raise an exception.
For example, the following code is incorrect:
{[
wrap1 f (Hashtbl.find table key)
]}
and should be written as:
{[
wrap (fun () -> f (Hashtbl.find table key))
]}
*)
val wrap2 : ('a -> 'b -> 'c) -> 'a -> 'b -> 'c t
val wrap3 : ('a -> 'b -> 'c -> 'd) -> 'a -> 'b -> 'c -> 'd t
val wrap4 : ('a -> 'b -> 'c -> 'd -> 'e) -> 'a -> 'b -> 'c -> 'd -> 'e t
val wrap5 : ('a -> 'b -> 'c -> 'd -> 'e -> 'f) -> 'a -> 'b -> 'c -> 'd -> 'e -> 'f t
val wrap6 : ('a -> 'b -> 'c -> 'd -> 'e -> 'f -> 'g) -> 'a -> 'b -> 'c -> 'd -> 'e -> 'f -> 'g t
val wrap7 : ('a -> 'b -> 'c -> 'd -> 'e -> 'f -> 'g -> 'h) -> 'a -> 'b -> 'c -> 'd -> 'e -> 'f -> 'g -> 'h t
(** {2 Multi-threads composition} *)
val choose : 'a t list -> 'a t
(** [choose l] behaves as the first thread in [l] to terminate. If
several threads are already terminated, one is chosen at
random.
Note: {!choose} leaves the local values of the current thread
unchanged. *)
val nchoose : 'a t list -> 'a list t
(** [nchoose l] returns the value of all that have succcessfully
terminated. If all threads are sleeping, it waits for at least
one to terminates. If one the threads of [l] fails, [nchoose]
fails with the same exception.
Note: {!nchoose} leaves the local values of the current thread
unchanged. *)
val nchoose_split : 'a t list -> ('a list * 'a t list) t
(** [nchoose_split l] does the same as {!nchoose} but also retrurns
the list of threads that have not yet terminated. *)
val join : unit t list -> unit t
(** [join l] waits for all threads in [l] to terminate. If one of
the threads fails, then [join l] will fails with the same
exception as the first one to terminate.
Note: {!join} leaves the local values of the current thread
unchanged. *)
val ( <?> ) : 'a t -> 'a t -> 'a t
(** [t <?> t'] is the same as [choose [t; t']] *)
val ( <&> ) : unit t -> unit t -> unit t
(** [t <&> t'] is the same as [join [t; t']] *)
val async : (unit -> 'a t) -> unit
(** [async f] starts a thread without waiting for the result. If it
fails (now or later), the exception is given to
{!async_exception_hook}.
You should use this function if you want to start a thread that
might fail and don't care what its return value is, nor when it
terminates (for instance, because it is looping). *)
val ignore_result : 'a t -> unit
(** [ignore_result t] is like [Pervasives.ignore t] except that:
- if [t] already failed, it raises the exception now,
- if [t] is sleeping and fails later, the exception will be
given to {!async_exception_hook}. *)
val async_exception_hook : (exn -> unit) ref
(** Function called when a asynchronous exception is thrown.
The default behavior is to print an error message with a
backtrace if available and to exit the program.
The behavior is undefined if this function raise an
exception. *)
(** {2 Sleeping and resuming} *)
type 'a u
(** The type of thread wakeners. *)
val wait : unit -> 'a t * 'a u
(** [wait ()] is a pair of a thread which sleeps forever (unless it
is resumed by one of the functions [wakeup], [wakeup_exn] below)
and the corresponding wakener. This thread does not block the
execution of the remainder of the program (except of course, if
another thread tries to wait for its termination). *)
val wakeup : 'a u -> 'a -> unit
(** [wakeup t e] makes the sleeping thread [t] terminate and return
the value of the expression [e]. *)
val wakeup_exn : 'a u -> exn -> unit
(** [wakeup_exn t e] makes the sleeping thread [t] fail with the
exception [e]. *)
val wakeup_later : 'a u -> 'a -> unit
(** Same as {!wakeup} but it is not guaranteed that the thread will
be woken up immediately. *)
val wakeup_later_exn : 'a u -> exn -> unit
(** Same as {!wakeup_exn} but it is not guaranteed that the thread
will be woken up immediately. *)
val waiter_of_wakener : 'a u -> 'a t
(** Returns the thread associated to a wakener. *)
type +'a result
(** Either a value of type ['a], either an exception. *)
val make_value : 'a -> 'a result
(** [value x] creates a result containing the value [x]. *)
val make_error : exn -> 'a result
(** [error e] creates a result containing the exception [e]. *)
val of_result : 'a result -> 'a t
(** Returns a thread from a result. *)
val wakeup_result : 'a u -> 'a result -> unit
(** [wakeup_result t r] makes the sleeping thread [t] terminate with
the result [r]. *)
val wakeup_later_result : 'a u -> 'a result -> unit
(** Same as {!wakeup_result} but it is not guaranteed that the
thread will be woken up immediately. *)
(** {2 Threads state} *)
(** State of a thread *)
type 'a state =
| Return of 'a
(** The thread which has successfully terminated *)
| Fail of exn
(** The thread raised an exception *)
| Sleep
(** The thread is sleeping *)
val state : 'a t -> 'a state
(** [state t] returns the state of a thread *)
val is_sleeping : 'a t -> bool
(** [is_sleeping t] returns [true] iff [t] is sleeping. *)
(** {2 Cancelable threads} *)
(** Cancelable threads are the same as regular threads except that
they can be canceled. *)
exception Canceled
(** Canceled threads fails with this exception *)
val task : unit -> 'a t * 'a u
(** [task ()] is the same as [wait ()] except that threads created
with [task] can be canceled. *)
val on_cancel : 'a t -> (unit -> unit) -> unit
(** [on_cancel t f] executes [f] when [t] is canceled. [f] will be
executed before all other threads waiting on [t].
If [f] raises an exception it is given to
{!async_exception_hook}. *)
val add_task_r : 'a u Lwt_sequence.t -> 'a t
(** [add_task_r seq] creates a sleeping thread, adds its wakener to
the right of [seq] and returns its waiter. When the thread is
canceled, it is removed from [seq]. *)
val add_task_l : 'a u Lwt_sequence.t -> 'a t
(** [add_task_l seq] creates a sleeping thread, adds its wakener to
the left of [seq] and returns its waiter. When the thread is
canceled, it is removed from [seq]. *)
val cancel : 'a t -> unit
(** [cancel t] cancels the threads [t]. This means that the deepest
sleeping thread created with [task] and connected to [t] is
woken up with the exception {!Canceled}.
For example, in the following code:
{[
let waiter, wakener = task () in
cancel (waiter >> printl "plop")
]}
[waiter] will be woken up with {!Canceled}.
*)
val pick : 'a t list -> 'a t
(** [pick l] is the same as {!choose}, except that it cancels all
sleeping threads when one terminates.
Note: {!pick} leaves the local values of the current thread
unchanged. *)
val npick : 'a t list -> 'a list t
(** [npick l] is the same as {!nchoose}, except that it cancels all
sleeping threads when one terminates.
Note: {!npick} leaves the local values of the current thread
unchanged. *)
val protected : 'a t -> 'a t
(** [protected thread] creates a new cancelable thread which behave
as [thread] except that cancelling it does not cancel
[thread]. *)
val no_cancel : 'a t -> 'a t
(** [no_cancel thread] creates a thread which behave as [thread]
except that it cannot be canceled. *)
(** {2 Pause} *)
val pause : unit -> unit t
(** [pause ()] is a sleeping thread which is wake up on the next
call to {!wakeup_paused}. A thread created with [pause] can be
canceled. *)
val wakeup_paused : unit -> unit
(** [wakeup_paused ()] wakes up all threads which suspended
themselves with {!pause}.
This function is called by the scheduler, before entering the
main loop. You usually do not have to call it directly, except
if you are writing a custom scheduler.
Note that if a paused thread resumes and pauses again, it will not
be woken up at this point. *)
val paused_count : unit -> int
(** [paused_count ()] returns the number of currently paused
threads. *)
val register_pause_notifier : (int -> unit) -> unit
(** [register_pause_notifier f] register a function [f] that will be
called each time pause is called. The parameter passed to [f] is
the new number of threads paused. It is usefull to be able to
call {!wakeup_paused} when there is no scheduler *)
(** {2 Misc} *)
val on_success : 'a t -> ('a -> unit) -> unit
(** [on_success t f] executes [f] when [t] terminates without
failing. If [f] raises an exception it is given to
{!async_exception_hook}. *)
val on_failure : 'a t -> (exn -> unit) -> unit
(** [on_failure t f] executes [f] when [t] terminates and fails. If
[f] raises an exception it is given to
{!async_exception_hook}. *)
val on_termination : 'a t -> (unit -> unit) -> unit
(** [on_termination t f] executes [f] when [t] terminates. If [f]
raises an exception it is given to {!async_exception_hook}. *)
val on_any : 'a t -> ('a -> unit) -> (exn -> unit) -> unit
(** [on_any t f g] executes [f] or [g] when [t] terminates. If [f]
or [g] raises an exception it is given to
{!async_exception_hook}. *)
(** Infix operators. You should open only this module. *)
module Infix : sig
val (>>=) : 'a t -> ('a -> 'b t) -> 'b t
(** [t >>= f] is an alternative notation for [bind t f]. *)
val (=<<) : ('a -> 'b t) -> 'a t -> 'b t
(** [f =<< t] is [t >>= f] *)
val (>|=) : 'a t -> ('a -> 'b) -> 'b t
(** [m >|= f] is [map f m] *)
val (=|<) : ('a -> 'b) -> 'a t -> 'b t
(** [f =|< m] is [map f m] *)
val ( <?> ) : 'a t -> 'a t -> 'a t
(** [t <?> t'] is the same as [choose [t; t']] *)
val ( <&> ) : unit t -> unit t -> unit t
(** [t <&> t'] is the same as [join [t; t']] *)
end
(**/**)
(* The functions below are probably not useful for the casual user.
They provide the basic primitives on which can be built multi-
threaded libraries such as Lwt_unix. *)
val poll : 'a t -> 'a option
(* [poll e] returns [Some v] if the thread [e] is terminated and
returned the value [v]. If the thread failed with some
exception, this exception is raised. If the thread is still
running, [poll e] returns [None] without blocking. *)
val apply : ('a -> 'b t) -> 'a -> 'b t
(* [apply f e] apply the function [f] to the expression [e]. If
an exception is raised during this application, it is caught
and the resulting thread fails with this exception. *)
(* Q: Could be called 'glue' or 'trap' or something? *)
val backtrace_bind : (exn -> exn) -> 'a t -> ('a -> 'b t) -> 'b t
val backtrace_catch : (exn -> exn) -> (unit -> 'a t) -> (exn -> 'a t) -> 'a t
val backtrace_try_bind : (exn -> exn) -> (unit -> 'a t) -> ('a -> 'b t) -> (exn -> 'b t) -> 'b t
val backtrace_finalize : (exn -> exn) -> (unit -> 'a t) -> (unit -> unit t) -> 'a t
|