Page
Library
Module
Module type
Parameter
Class
Class type
Source
Ppx_lwtPpx syntax extension for Lwt
This Ppx extension adds various syntactic shortcut for lwt programming. It needs OCaml >= 4.02 and ppx_tools.
To use it, simply use the ocamlfind package lwt_ppx.
This extension adds the following syntax:
let%lwt ch = get_char stdin in
codeis the same as bind (get_char stdin) (fun ch -> code).
Moreover, it supports parallel binding:
let%lwt x = do_something1 ()
and y = do_something2 in
codewill run do_something1 () and do_something2 (), then bind their results to x and y. It is the same as:
let t1 = do_something1
and t2 = do_something2 in
bind t1 (fun x -> bind t2 (fun y -> code))Due to a bug in the OCaml parser, if you'd like to put a type constraint on the variable, please write
let (foo : int) = do_something in
codeNot using parentheses will confuse the OCaml parser.
try%lwt
  <expr>
with
  <branches>For example:
try%lwt
  f x
with
  | Failure msg ->
      prerr_endline msg;
      return ()is expanded to:
catch (fun () -> f x)
  (function
    | Failure msg ->
        prerr_endline msg;
        return ()
    | exn ->
        Lwt.fail exn)Note that the exn -> Lwt.fail exn branch is automatically added when needed.
  (<expr>) [%finally <expr>]You can use [%lwt.finally ...] instead of [%finally ...].
  assert%lwt <expr>for%lwt i = <expr> to <expr> do
  <expr>
doneand:
for%lwt i = <expr> downto <expr> do
  <expr>
donewhile%lwt <expr> do
  <expr>
donematch%lwt <expr> with
  | <patt_1> -> <expr_1>
      ...
  | <patt_n> -> <expr_n>Exception cases are also supported:
match%lwt <expr> with
  | exception <exn> -> <expr_1>
  | <patt_2> -> <expr_2>
      ...
  | <patt_n> -> <expr_n>if%lwt <expr> then
  <expr_1>
else
  <expr_2>and
  if%lwt <expr> then <expr_1>For all other expression, the construct
  [%lwt <expr>]is expanded to:
  Lwt.catch (fun () -> <expr>) Lwt.failIt allows to encode the old raise_lwt <e> as [%lwt raise <e>], and offers a convenient way to interact with non-Lwt code.
The logging syntax extension is enabled with -log. It will replace expressions of the form:
  Lwt_log.info_f ~section "x = %d" xby
if Lwt_log.Section.level section <= Lwt_log.Info then
  Lwt_log.info_f ~section "x = %d" x
else
  return ()Notes:
Log.info "%d" will make compilation fail.