Source file cli.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
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
open Global
(** Associates a {!type: Global.backend_lang} with its string represtation. *)
let languages = ["en", En; "fr", Fr; "pl", Pl]
let language_code =
let rl = List.map (fun (a, b) -> b, a) languages in
fun l -> List.assoc l rl
let message_format_opt = ["human", Human; "gnu", GNU]
open Cmdliner
let when_opt = Arg.enum ["auto", Auto; "always", Always; "never", Never]
let raw_file =
Arg.conv ~docv:"FILE"
( (fun f -> Result.map raw_file (Arg.conv_parser Arg.string f)),
fun ppf f -> Format.pp_print_string ppf (f :> string) )
let extensions = [".catala_fr", Fr; ".catala_en", En; ".catala_pl", Pl]
let file_lang filename =
List.assoc_opt (Filename.extension filename) extensions
|> function
| Some lang -> lang
| None -> (
match Global.options.language with
| Some lang -> lang
| None ->
Format.kasprintf failwith
"Could not infer language variant from the extension of \
@{<yellow>%s@}, and @{<bold>--language@} was not specified"
filename)
let exec_dir =
let cmd = Sys.argv.(0) in
if String.contains cmd '/' then
Filename.dirname cmd
else
Filename.dirname Sys.executable_name
(** CLI flags and options *)
module Flags = struct
open Cmdliner
open Arg
module Global = struct
let info = info ~docs:Manpage.s_common_options
let input_src =
let converter =
conv ~docv:"FILE"
( (fun s ->
if s = "-" then Ok (Stdin (Global.raw_file "-stdin-"))
else
Result.map
(fun f -> FileName (Global.raw_file f))
(conv_parser non_dir_file s)),
fun ppf -> function
| Stdin _ -> Format.pp_print_string ppf "-"
| FileName f -> conv_printer non_dir_file ppf (f :> file)
| _ -> assert false )
in
required
& pos 0 (some converter) None
& Arg.info [] ~docv:"FILE" ~docs:Manpage.s_arguments
~doc:"Catala master file to be compiled ($(b,-) for stdin)."
let language =
value
& opt (some (enum languages)) None
& info ["l"; "language"] ~docv:"LANG"
~doc:
"Locale variant of the input language to use when it can not be \
inferred from the file extension."
let debug =
value
& flag
& info ["debug"; "d"]
~env:(Cmd.Env.info "CATALA_DEBUG")
~doc:"Prints debug information."
let color =
let unstyled =
value
& flag
& info ["unstyled"]
~doc:"Removes styling (colors, etc.) from terminal output."
~deprecated:"Use $(b,--color=)$(i,never) instead"
in
let color =
value
& opt ~vopt:Always when_opt Auto
& info ["color"]
~env:(Cmd.Env.info "CATALA_COLOR")
~doc:
"Allow output of colored and styled text. Use $(i,auto), to \
enable when the standard output is to a terminal, $(i,never) to \
disable."
in
Term.(
const (fun color unstyled -> if unstyled then Never else color)
$ color
$ unstyled)
let message_format =
value
& opt (enum message_format_opt) Human
& info ["message-format"]
~doc:
"Selects the format of error and warning messages emitted by the \
compiler. If set to $(i,human), the messages will be nicely \
displayed and meant to be read by a human. If set to $(i, gnu), \
the messages will be rendered according to the GNU coding \
standards."
let trace =
value
& flag
& info ["trace"; "t"]
~env:(Cmd.Env.info "CATALA_TRACE")
~doc:
"Displays a trace of the interpreter's computation or generates \
logging instructions in translate programs."
let plugins_dirs =
let doc = "Set the given directory to be searched for backend plugins." in
let env = Cmd.Env.info "CATALA_PLUGINS" in
let default =
let ( / ) = Filename.concat in
let dev_plugin_dir = exec_dir / "plugins" in
if Sys.file_exists dev_plugin_dir then
[dev_plugin_dir]
else
[Filename.(dirname exec_dir) / "lib" / "catala" / "plugins"]
in
value & opt_all string default & info ["plugin-dir"] ~docv:"DIR" ~env ~doc
let disable_warnings =
value
& flag
& info ["disable-warnings"]
~doc:"Disable all the warnings emitted by the compiler."
let max_prec_digits =
value
& opt int 20
& info
["p"; "max-digits-printed"]
~docv:"NUM"
~doc:
"Maximum number of significant digits printed for decimal results."
let name_flag =
value
& opt (some string) None
& info ["name"] ~docv:"FILE"
~doc:
"Treat the input as coming from a file with the given name. Useful \
e.g. when reading from stdin"
let directory =
value
& opt (some dir) None
& info ["C"; "directory"] ~docv:"DIR"
~doc:
"Behave as if run from the given directory for file and error \
reporting. Does not affect resolution of files in arguments."
let flags =
let make
language
debug
color
message_format
trace
plugins_dirs
disable_warnings
max_prec_digits
directory : options =
if debug then Printexc.record_backtrace true;
let path_rewrite =
match directory with
| None -> fun (f : Global.raw_file) -> (f :> file)
| Some to_dir -> (
fun (f : Global.raw_file) ->
match (f :> file) with
| "-" -> "-"
| f -> File.reverse_path ~to_dir f)
in
Global.enforce_options ~language ~debug ~color ~message_format ~trace
~plugins_dirs ~disable_warnings ~max_prec_digits ~path_rewrite ()
in
Term.(
const make
$ language
$ debug
$ color
$ message_format
$ trace
$ plugins_dirs
$ disable_warnings
$ max_prec_digits
$ directory)
let options =
let make input_src name directory options : options =
let input_src =
let rename f =
match name with None -> f | Some n -> Global.raw_file n
in
match input_src with
| FileName f -> FileName (options.path_rewrite f)
| Contents (str, f) -> Contents (str, options.path_rewrite (rename f))
| Stdin f -> Stdin (options.path_rewrite (rename f))
in
Option.iter Sys.chdir directory;
Global.enforce_options ~input_src ()
in
Term.(const make $ input_src $ name_flag $ directory $ flags)
end
let include_dirs =
let arg =
Arg.(
value
& opt_all (list ~sep:':' raw_file) []
& info ["I"; "include"] ~docv:"DIR"
~env:(Cmd.Env.info "CATALA_INCLUDE")
~doc:
"Make modules from the given directory available from \
everywhere. Several dirs can be specified by repeating the flag \
or separating them with '$(b,:)'.")
in
Term.(const List.flatten $ arg)
let check_invariants =
value
& flag
& info ["check-invariants"] ~doc:"Check structural invariants on the AST."
let no_typing =
value
& flag
& info ["no-typing"] ~doc:"Don't check the consistency of types"
let wrap_weaved_output =
value
& flag
& info ["wrap"; "w"]
~doc:"Wraps literate programming output with a minimal preamble."
let print_only_law =
value
& flag
& info ["print-only-law"]
~doc:
"In literate programming output, skip all code and metadata sections \
and print only the text of the law."
let ex_scope =
required
& opt (some string) None
& info ["s"; "scope"] ~docv:"SCOPE" ~doc:"Scope to be focused on."
let ex_scope_opt =
value
& opt (some string) None
& info ["s"; "scope"] ~docv:"SCOPE" ~doc:"Scope to be focused on."
let ex_variable =
required
& opt (some string) None
& info ["v"; "variable"] ~docv:"VARIABLE" ~doc:"Variable to be focused on."
let output =
value
& opt (some raw_file) None
& info ["output"; "o"] ~docv:"OUTPUT"
~env:(Cmd.Env.info "CATALA_OUT")
~doc:
"$(i, OUTPUT) is the file that will contain the output of the \
compiler. Defaults to $(i,FILE).$(i,EXT) where $(i,EXT) depends on \
the chosen backend. Use $(b,-o -) for stdout."
let optimize =
value
& flag
& info ["optimize"; "O"]
~env:(Cmd.Env.info "CATALA_OPTIMIZE")
~doc:"Run compiler optimizations."
let avoid_exceptions =
value
& flag
& info ["avoid-exceptions"]
~env:(Cmd.Env.info "CATALA_AVOID_EXCEPTIONS")
~doc:"Compiles the default calculus without exceptions."
let keep_special_ops =
value
& flag
& info ["keep-special-ops"]
~doc:
"During the Lcalc->Scalc translation, uses special AST nodes for \
higher-order operators rather than nested closures (useful for C)."
let monomorphize_types =
value
& flag
& info ["monomorphize-types"]
~doc:
"In LCalc, replaces the polymorphic option type by monomorphized \
versions of the enumeration, and transform tuples into named \
structs. "
let dead_value_assignment =
value
& flag
& info ["dead-value-assignment"]
~doc:
"During the Lcalc->Scalc translation, insert dummy variable \
assignments before raising terminal exception to please gradual \
typing tools that check exhaustivity of variable definitions in \
every code branch."
let no_struct_literals =
value
& flag
& info ["no-struct-literals"]
~doc:
"During the Lcalc->Scalc translation, insert temporary variable \
assignments to hold the result of structure initializations \
(matches the absence of struct literals of C89)."
let closure_conversion =
value
& flag
& info ["closure-conversion"]
~doc:
"Performs closure conversion on the lambda calculus. Implies \
$(b,--avoid-exceptions)."
let disable_counterexamples =
value
& flag
& info
["disable-counterexamples"]
~doc:
"Disables the search for counterexamples. Useful when you want a \
deterministic output from the Catala compiler, since provers can \
have some randomness in them."
let =
value
& pos_right 0 file []
& Arg.info [] ~docv:"FILES" ~docs:Manpage.s_arguments
~doc:"Additional input files."
let lcalc =
value
& flag
& info ["lcalc"]
~doc:
"Compile all the way to lcalc before interpreting (the default is to \
interpret at dcalc stage). For debugging purposes."
let extension =
value
& opt_all string []
& info ["extension"; "e"] ~docv:"EXT"
~doc:
"Replace the original file extensions with $(i,.EXT). If repeated, \
the file will be listed once which each supplied extension."
let prefix =
value
& opt (some string) None
& info ["prefix"] ~docv:"PATH"
~doc:"Prepend the given path to each of the files in the returned list."
end
let version = Version.v
let s_plugins = "INSTALLED PLUGINS"
let info =
let doc =
"Compiler for Catala, a specification language for tax and social benefits \
computation rules."
in
let man =
[
`S Manpage.s_synopsis;
`P "$(mname) [$(i,COMMAND)] $(i,FILE) [$(i,OPTION)]…";
`P
"Use $(mname) [$(i,COMMAND)] $(b,--hel)p for documentation on a \
specific command";
`S Manpage.s_description;
`P
"Catala is a domain-specific language for deriving \
faithful-by-construction algorithms from legislative texts.";
`S Manpage.s_commands;
`S s_plugins;
`S Manpage.s_authors;
`P "The authors are listed by alphabetical order:";
`P "Nicolas Chataing <$(i,nicolas.chataing@ens.fr)>";
`Noblank;
`P "Alain Delaët-Tixeuil <$(i,alain.delaet--tixeuil@inria.fr)>";
`Noblank;
`P "Aymeric Fromherz <$(i,aymeric.fromherz@inria.fr)>";
`Noblank;
`P "Louis Gesbert <$(i,louis.gesbert@ocamlpro.com)>";
`Noblank;
`P "Denis Merigoux <$(i,denis.merigoux@inria.fr)>";
`Noblank;
`P "Emile Rolley <$(i,erolley@tutamail.com)>";
`S Manpage.s_examples;
`Pre "catala Interpret -s Foo file.catala_en";
`Pre "catala Ocaml -o target/file.ml file.catala_en";
`S Manpage.s_bugs;
`P
"Please file bug reports at https://github.com/CatalaLang/catala/issues";
]
in
let exits = Cmd.Exit.defaults @ [Cmd.Exit.info ~doc:"on error." 1] in
Cmd.info "catala" ~version ~doc ~exits ~man
exception Exit_with of int