Source file ppx_lwt.ml
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
open Migrate_parsetree
open OCaml_404.Ast
open Ast_mapper
open Ast_helper
open Asttypes
open Parsetree
open Ast_convenience_404
(** {2 Convenient stuff} *)
let with_loc f {txt ; loc = _loc} =
(f txt) [@metaloc _loc]
let def_loc txt =
{ txt; loc = !default_loc }
(** Test if a case is a catchall. *)
let is_catchall case =
let rec is_catchall_pat p = match p.ppat_desc with
| Ppat_any | Ppat_var _ -> true
| Ppat_alias (p, _) -> is_catchall_pat p
| _ -> false
in
case.pc_guard = None && is_catchall_pat case.pc_lhs
(** Add a wildcard case in there is none. Useful for exception handlers. *)
let add_wildcard_case cases =
let has_wildcard =
List.exists is_catchall cases
in
if not has_wildcard
then cases @ [Exp.case [%pat? exn] [%expr Lwt.fail exn]] [@metaloc Location.none]
else cases
(** {3 Internal names} *)
let lwt_prefix = "__ppx_lwt_"
(** {2 Here we go!} *)
let warn_let_lwt_rec loc attrs =
let attr = attribute_of_warning loc "\"let%lwt rec\" is not a recursive Lwt binding" in
attr :: attrs
let debug = ref true
let log = ref false
let sequence = ref true
let strict_seq = ref true
(** let%lwt related functions *)
let gen_name i = lwt_prefix ^ string_of_int i
(** [p = x] ≡ [__ppx_lwt_$i = x] *)
let gen_bindings l =
let aux i binding =
{ binding with
pvb_pat = pvar ~loc:binding.pvb_expr.pexp_loc (gen_name i)
}
in
List.mapi aux l
(** [p = x] and e ≡ [Lwt.bind __ppx_lwt_$i (fun p -> e)] *)
let gen_binds e_loc l e =
let rec aux i bindings =
match bindings with
| [] -> e
| binding :: t ->
let name =
evar ~loc:binding.pvb_expr.pexp_loc (gen_name i)
in
let fun_ =
[%expr (fun [%p binding.pvb_pat] -> [%e aux (i+1) t])] [@metaloc e_loc]
in
let new_exp =
if !debug then
[%expr Lwt.backtrace_bind (fun exn -> try raise exn with exn -> exn)
[%e name] [%e fun_]] [@metaloc e_loc]
else
[%expr Lwt.bind [%e name] [%e fun_]] [@metaloc e_loc]
in
{ new_exp with pexp_attributes = binding.pvb_attributes }
in aux 0 l
(** [p = x and p' = x' and ...] ≡
[p, p', ... = Lwt_main.run (
Lwt.bind x (fun __ppx_lwt_$i ->
Lwt.bind x' (fun __ppx_lwt_$i' ->
...
Lwt.return (__ppx_lwt_$i, __ppx_lwt_$i', ...))))] *)
let gen_top_binds vbs =
let gen_exp vbs i =
match vbs with
| {pvb_expr; _}::_rest ->
if !debug then
[%expr Lwt.backtrace_bind (fun exn -> try raise exn with exn -> exn)
[%e pvb_expr] (fun [%p pvar (gen_name i)] -> gen_exp _rest (i + 1))]
else
[%expr Lwt.bind [%e pvb_expr] (fun [%p pvar (gen_name i)] -> gen_exp rest (i + 1))]
| [] ->
let rec names i =
if i >= 0 then evar (gen_name i) :: names (i - 1) else []
in Exp.tuple (names i)
in
[Vb.mk (Pat.tuple (vbs |> List.map (fun { pvb_pat; _ } -> pvb_pat)))
[%expr Lwt_main.run [%e gen_exp vbs 0]]]
(** For expressions only *)
let lwt_expression mapper exp attributes =
default_loc := exp.pexp_loc;
let pexp_attributes = attributes @ exp.pexp_attributes in
match exp.pexp_desc with
| Pexp_let (Nonrecursive, vbl , e) ->
let new_exp =
Exp.let_
Nonrecursive
(gen_bindings vbl)
(gen_binds exp.pexp_loc vbl e)
in mapper.expr mapper { new_exp with pexp_attributes }
| Pexp_match (e, cases) ->
let exns, cases =
cases |> List.partition (
function
| {pc_lhs = [%pat? exception [%p? _]]; _} -> true
| _ -> false)
in
let exns =
exns |> List.map (
function
| {pc_lhs = [%pat? exception [%p? pat]]; _} as case ->
{ case with pc_lhs = pat }
| _ -> assert false)
in
let exns = add_wildcard_case exns in
let new_exp =
match exns with
| [] -> [%expr Lwt.bind [%e e] [%e Exp.function_ cases]]
| _ -> [%expr Lwt.try_bind (fun () -> [%e e])
[%e Exp.function_ cases]
[%e Exp.function_ exns]]
in
mapper.expr mapper { new_exp with pexp_attributes }
| Pexp_assert e ->
let new_exp =
[%expr try Lwt.return (assert [%e e]) with exn -> Lwt.fail exn]
in mapper.expr mapper { new_exp with pexp_attributes }
| Pexp_while (cond, body) ->
let new_exp =
[%expr
let rec __ppx_lwt_loop () =
if [%e cond] then Lwt.bind [%e body] __ppx_lwt_loop
else Lwt.return_unit
in __ppx_lwt_loop ()
]
in mapper.expr mapper { new_exp with pexp_attributes }
| Pexp_for ({ppat_desc = Ppat_var p_var; _} as p, start, bound, dir, body) ->
let comp, op = match dir with
| Upto -> evar ">", evar "+"
| Downto -> evar "<", evar "-"
in
let p' = with_loc (fun s -> evar s) p_var in
let exp_bound = [%expr __ppx_lwt_bound] [@metaloc bound.pexp_loc] in
let pat_bound = [%pat? __ppx_lwt_bound] [@metaloc bound.pexp_loc] in
let new_exp =
[%expr
let [%p pat_bound] : int = [%e bound] in
let rec __ppx_lwt_loop [%p p] =
if [%e comp] [%e p'] [%e exp_bound] then Lwt.return_unit
else Lwt.bind [%e body] (fun () -> __ppx_lwt_loop ([%e op] [%e p'] 1))
in __ppx_lwt_loop [%e start]
]
in mapper.expr mapper { new_exp with pexp_attributes }
| Pexp_try (expr, cases) ->
let cases = add_wildcard_case cases in
let new_exp =
if !debug then
[%expr Lwt.backtrace_catch (fun exn -> try raise exn with exn -> exn)
(fun () -> [%e expr]) [%e Exp.function_ cases]]
else
[%expr Lwt.catch (fun () -> [%e expr]) [%e Exp.function_ cases]]
in
mapper.expr mapper { new_exp with pexp_attributes }
| Pexp_ifthenelse (cond, e1, e2) ->
let e2 = match e2 with None -> [%expr Lwt.return_unit] | Some e -> e in
let cases =
[
Exp.case [%pat? true] e1 ;
Exp.case [%pat? false] e2 ;
]
in
let new_exp = [%expr Lwt.bind [%e cond] [%e Exp.function_ cases]] in
mapper.expr mapper { new_exp with pexp_attributes }
| _ ->
let exp =
match exp with
| { pexp_loc; pexp_desc=Pexp_let (Recursive, _, _); pexp_attributes } ->
let attr = attribute_of_warning pexp_loc "\"let%lwt rec\" is not a recursive Lwt binding" in
{ exp with pexp_attributes = attr :: pexp_attributes }
| _ -> exp
in
let new_exp =
if !debug then
[%expr Lwt.backtrace_catch (fun exn -> try raise exn with exn -> exn)
(fun () -> [%e exp]) Lwt.fail]
else
[%expr Lwt.catch (fun () -> [%e exp]) Lwt.fail]
in
mapper.expr mapper { new_exp with pexp_attributes }
let make_loc {Location.loc_start; _} =
let (file, line, char) = Location.get_pos_info loc_start in
[%expr ([%e str file], [%e int line], [%e int char])]
(**
[Lwt_log.error "message"] ≡
[let __pa_log_section = Lwt_log.Section.main in
if Lwt_log.Error >= (Lwt_log.Section.level __pa_log_section)
then Lwt_log.error ~location:("foo.ml", 1, 0) ~section:__pa_log_section "message"
else Lwt.return_unit];
[Lwt_log.error ~section "message"] ≡
[let __pa_log_section = section in ...].
Additionally, remove debug-level statements if -no-debug is given. **)
let lwt_log mapper fn args attrs loc =
let open Longident in
match fn with
| {pexp_desc = Pexp_ident {txt = Ldot (Lident "Lwt_log", func); _}; _} ->
let len = String.length func in
let fmt = len >= 2 && func.[len - 2] = '_' && func.[len - 1] = 'f'
and ign = len >= 4 && func.[0] = 'i' && func.[1] = 'g' && func.[2] = 'n' && func.[3] = '_' in
let level =
match fmt, ign with
| false, false -> func
| true, false -> String.sub func 0 (len - 2)
| false, true -> String.sub func 4 (len - 4)
| true, true -> String.sub func 4 (len - 6)
in
let level = (String.capitalize [@ocaml.warning "-3"]) level in
if level = "Debug" && (not !debug) then
let new_exp = if ign then [%expr ()] else [%expr Lwt.return_unit] in
mapper.expr mapper { new_exp with pexp_attributes = attrs }
else if List.mem level ["Fatal"; "Error"; "Warning"; "Notice"; "Info"; "Debug"] then
let args = List.map (fun (l,e) -> l, mapper.expr mapper e) args in
let new_exp =
let args = (Label.labelled "location", make_loc loc) ::
(Label.labelled "section", [%expr __pa_log_section]) ::
List.remove_assoc (Label.labelled "section") args in
[%expr
if [%e Exp.construct (def_loc (Ldot (Lident "Lwt_log", level))) None] >=
Lwt_log.Section.level __pa_log_section then
[%e Exp.apply (Exp.ident (def_loc (Ldot (Lident "Lwt_log", func)))) args]
else
[%e if ign then [%expr ()] else [%expr Lwt.return_unit]]]
in
try
let section = List.assoc (Label.labelled "section") args in
[%expr let __pa_log_section = [%e section] in [%e new_exp]]
with Not_found ->
[%expr let __pa_log_section = Lwt_log.Section.main in [%e new_exp]]
else default_mapper.expr mapper (Exp.apply ~attrs fn args)
| _ -> default_mapper.expr mapper (Exp.apply ~attrs fn args)
let mapper =
{ default_mapper with
expr = (fun mapper expr ->
match expr with
| [%expr [%lwt [%e? exp]]] ->
lwt_expression mapper exp expr.pexp_attributes
| [%expr [%e? exp ] [%finally [%e? finally]] ]
| [%expr [%e? exp ] [%lwt.finally [%e? finally]] ] ->
let new_exp =
if !debug then
[%expr Lwt.backtrace_finalize (fun exn -> try raise exn with exn -> exn)
(fun () -> [%e exp])
(fun () -> [%e finally])]
else
[%expr Lwt.finalize (fun () -> [%e exp]) (fun () -> [%e finally])]
in
mapper.expr mapper
{ new_exp with
pexp_attributes = expr.pexp_attributes @ exp.pexp_attributes
}
| [%expr [%finally [%e? _ ]]]
| [%expr [%lwt.finally [%e? _ ]]] ->
raise (Location.Error (
Location.errorf
~loc:expr.pexp_loc
"Lwt's finally should be used only with the syntax: \"(<expr>)[%%finally ...]\"."
))
| [%expr [%e? lhs] >> [%e? rhs]] as e ->
if !sequence then
let pat = if !strict_seq then [%pat? ()] else [%pat? _] in
let lhs, rhs = mapper.expr mapper lhs, mapper.expr mapper rhs in
let op = match e.Parsetree.pexp_desc with
| Parsetree.Pexp_apply (op, _) -> op
| _ -> assert false
in
if !debug then
Ast_helper.Exp.attr
[%expr Lwt.backtrace_bind (fun exn -> try raise exn with exn -> exn)
[%e lhs]
(fun [%p pat] -> [%e rhs])
]
(Ast_mapper.attribute_of_warning op.Parsetree.pexp_loc
"The operator >> is deprecated")
else
Ast_helper.Exp.attr
[%expr (Lwt.bind [%e lhs] (fun [%p pat] -> [%e rhs]))]
(Ast_mapper.attribute_of_warning op.Parsetree.pexp_loc
"The operator >> is deprecated")
else
default_mapper.expr mapper expr
| { pexp_desc = Pexp_apply (fn, args); pexp_attributes; pexp_loc } when !log ->
default_loc := pexp_loc;
lwt_log mapper fn args pexp_attributes pexp_loc
| _ ->
default_mapper.expr mapper expr);
structure_item = (fun mapper stri ->
default_loc := stri.pstr_loc;
match stri with
| [%stri let%lwt [%p? var] = [%e? exp]] ->
[%stri let [%p var] = Lwt_main.run [%e mapper.expr mapper exp]]
| {pstr_desc = Pstr_extension (({txt = "lwt"; _}, PStr [
{pstr_desc = Pstr_value (Recursive, _); _}]) as content, attrs); pstr_loc} ->
{stri with pstr_desc =
Pstr_extension (content, warn_let_lwt_rec pstr_loc attrs)}
| {pstr_desc = Pstr_extension (({txt = "lwt"; _}, PStr [
{pstr_desc = Pstr_value (Nonrecursive, vbs); _}]), _); _} ->
mapper.structure_item mapper (Str.value Nonrecursive (gen_top_binds vbs))
| x -> default_mapper.structure_item mapper x);
}
let args =
Arg.([
"-no-debug", Clear debug, "disable debug mode";
"-log", Set log, "enable logging";
"-no-log", Clear log, "disable logging";
"-no-sequence", Clear sequence, "disable sequence operator";
"-no-strict-sequence", Clear strict_seq, "allow non-unit sequence operations";
])
let () =
Driver.register ~name:"ppx_lwt" ~args Versions.ocaml_404
(fun _config _cookies -> mapper)