package catala
Compiler and library for the literate programming language for tax code specification
Install
Dune Dependency
Authors
Maintainers
Sources
0.7.0.tar.gz
md5=6dbbc2f50c23693f26ab6f048e78172f
sha512=a5701e14932d8a866e2aa3731f76df85ff2a68b4fa943fd510c535913573274d66eaec1ae6fcae17f20b475876048a9ab196ef6d8c23d4ea6b90b986aa0a6daa
doc/src/catala.utils/cli.ml.html
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 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498
(* This file is part of the Catala compiler, a specification language for tax and social benefits computation rules. Copyright (C) 2020 Inria, contributors: Denis Merigoux <denis.merigoux@inria.fr>, Emile Rolley <emile.rolley@tuta.io> Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. *) type backend_lang = En | Fr | Pl type backend_option_builtin = [ `Latex | `Makefile | `Html | `Interpret | `Typecheck | `OCaml | `Python | `Scalc | `Lcalc | `Dcalc | `Scopelang | `Proof ] type 'a backend_option = [ backend_option_builtin | `Plugin of 'a ] let backend_option_to_string = function | `Interpret -> "Interpret" | `Makefile -> "Makefile" | `OCaml -> "Ocaml" | `Scopelang -> "Scopelang" | `Dcalc -> "Dcalc" | `Latex -> "Latex" | `Proof -> "Proof" | `Html -> "Html" | `Python -> "Python" | `Typecheck -> "Typecheck" | `Scalc -> "Scalc" | `Lcalc -> "Lcalc" | `Plugin s -> s let backend_option_of_string backend = match String.lowercase_ascii backend with | "interpret" -> `Interpret | "makefile" -> `Makefile | "ocaml" -> `OCaml | "scopelang" -> `Scopelang | "dcalc" -> `Dcalc | "latex" -> `Latex | "proof" -> `Proof | "html" -> `Html | "python" -> `Python | "typecheck" -> `Typecheck | "scalc" -> `Scalc | "lcalc" -> `Lcalc | s -> `Plugin s (** Source files to be compiled *) let source_files : string list ref = ref [] let locale_lang : backend_lang ref = ref En let contents : string ref = ref "" (** Prints debug information *) let debug_flag = ref false (* Styles the terminal output *) let style_flag = ref true (* Max number of digits to show for decimal results *) let max_prec_digits = ref 20 let trace_flag = ref false let optimize_flag = ref false let disable_counterexamples = ref false let avoid_exceptions_flag = ref false open Cmdliner let file = Arg.( required & pos 1 (some file) None & info [] ~docv:"FILE" ~doc:"Catala master file to be compiled.") let debug = Arg.(value & flag & info ["debug"; "d"] ~doc:"Prints debug information.") type when_enum = Auto | Always | Never let when_opt = Arg.enum ["auto", Auto; "always", Always; "never", Never] let color = Arg.( value & opt ~vopt:Always when_opt Auto & info ["color"] ~doc: "Allow output of colored and styled text. If set to $(i,auto), \ enabled when the standard output is to a terminal.") let unstyled = Arg.( value & flag & info ["unstyled"; "u"] ~doc: "Removes styling (colors, etc.) from terminal output. Equivalent to \ $(b,--color=never)") let optimize = Arg.(value & flag & info ["optimize"; "O"] ~doc:"Run compiler optimizations.") let trace_opt = Arg.( value & flag & info ["trace"; "t"] ~doc: "Displays a trace of the interpreter's computation or generates \ logging instructions in translate programs.") let avoid_exceptions = Arg.( value & flag & info ["avoid_exceptions"] ~doc:"Compiles the default calculus without exceptions") let closure_conversion = Arg.( value & flag & info ["closure_conversion"] ~doc:"Performs closure conversion on the lambda calculus") let wrap_weaved_output = Arg.( value & flag & info ["wrap"; "w"] ~doc:"Wraps literate programming output with a minimal preamble.") let print_only_law = Arg.( 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 backend = Arg.( required & pos 0 (some string) None & info [] ~docv:"COMMAND" ~doc: "Backend selection (see the list of commands for available options).") let plugins_dirs = let doc = "Set the given directory to be searched for backend plugins." in let env = Cmd.Env.info "CATALA_PLUGINS" ~doc in let default = let ( / ) = Filename.concat in [Sys.executable_name / ".." / "lib" / "catala" / "plugins"] in Arg.(value & opt_all dir default & info ["plugin-dir"] ~docv:"DIR" ~env ~doc) let language = Arg.( value & opt (some string) None & info ["l"; "language"] ~docv:"LANG" ~doc:"Input language among: en, fr, pl.") let max_prec_digits_opt = Arg.( value & opt (some int) None & info ["p"; "max_digits_printed"] ~docv:"DIGITS" ~doc: "Maximum number of significant digits printed for decimal results \ (default 20).") let disable_counterexamples_opt = Arg.( value & flag & info ["disable_counterexamples"] ~doc: "Disables the search for counterexamples in proof mode. Useful when \ you want a deterministic output from the Catala compiler, since \ provers can have some randomness in them.") let ex_scope = Arg.( value & opt (some string) None & info ["s"; "scope"] ~docv:"SCOPE" ~doc:"Scope to be focused on.") let output = Arg.( value & opt (some string) None & info ["output"; "o"] ~docv:"OUTPUT" ~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.") type options = { debug : bool; color : when_enum; wrap_weaved_output : bool; avoid_exceptions : bool; backend : string; plugins_dirs : string list; language : string option; max_prec_digits : int option; trace : bool; disable_counterexamples : bool; optimize : bool; ex_scope : string option; output_file : string option; closure_conversion : bool; print_only_law : bool; } let options = let make debug color unstyled wrap_weaved_output avoid_exceptions closure_conversion backend plugins_dirs language max_prec_digits trace disable_counterexamples optimize ex_scope output_file print_only_law : options = { debug; color = (if unstyled then Never else color); wrap_weaved_output; avoid_exceptions; backend; plugins_dirs; language; max_prec_digits; trace; disable_counterexamples; optimize; ex_scope; output_file; closure_conversion; print_only_law; } in Term.( const make $ debug $ color $ unstyled $ wrap_weaved_output $ avoid_exceptions $ closure_conversion $ backend $ plugins_dirs $ language $ max_prec_digits_opt $ trace_opt $ disable_counterexamples_opt $ optimize $ ex_scope $ output $ print_only_law) let catala_t f = Term.(const f $ file $ options) let set_option_globals options : unit = debug_flag := options.debug; (style_flag := match options.color with | Always -> true | Never -> false | Auto -> Unix.isatty Unix.stdout); trace_flag := options.trace; optimize_flag := options.optimize; disable_counterexamples := options.disable_counterexamples; avoid_exceptions_flag := options.avoid_exceptions let version = "0.7.0" let info = let doc = "Compiler for Catala, a specification language for tax and social benefits \ computation rules." in let man = [ `S Manpage.s_description; `P "Catala is a domain-specific language for deriving \ faithful-by-construction algorithms from legislative texts."; `S Manpage.s_commands; `I ( "$(b,Intepret)", "Runs the interpreter on the Catala program, executing the scope \ specified by the $(b,-s) option assuming no additional external \ inputs." ); `I ( "$(b,Typecheck)", "Parses and typechecks a Catala program, without interpreting it." ); `I ( "$(b,Proof)", "Generates and proves verification conditions about the well-behaved \ execution of the Catala program." ); `I ("$(b,OCaml)", "Generates an OCaml translation of the Catala program."); `I ("$(b,Python)", "Generates a Python translation of the Catala program."); `I ( "$(b,LaTeX)", "Weaves a LaTeX literate programming output of the Catala program." ); `I ( "$(b,HTML)", "Weaves an HTML literate programming output of the Catala program." ); `I ( "$(b,Makefile)", "Generates a Makefile-compatible list of the file dependencies of a \ Catala program." ); `I ( "$(b,Scopelang)", "Prints a debugging verbatim of the scope language intermediate \ representation of the Catala program. Use the $(b,-s) option to \ restrict the output to a particular scope." ); `I ( "$(b,Dcalc)", "Prints a debugging verbatim of the default calculus intermediate \ representation of the Catala program. Use the $(b,-s) option to \ restrict the output to a particular scope." ); `I ( "$(b,Lcalc)", "Prints a debugging verbatim of the lambda calculus intermediate \ representation of the Catala program. Use the $(b,-s) option to \ restrict the output to a particular scope." ); `I ( "$(b,Scalc)", "Prints a debugging verbatim of the statement calculus intermediate \ representation of the Catala program. Use the $(b,-s) option to \ restrict the output to a particular scope." ); `S Manpage.s_authors; `P "The authors are listed by alphabetical order."; `P "Nicolas Chataing <nicolas.chataing@ens.fr>"; `P "Alain Delaët-Tixeuil <alain.delaet--tixeuil@inria.fr>"; `P "Aymeric Fromherz <aymeric.fromherz@inria.fr>"; `P "Louis Gesbert <louis.gesbert@ocamlpro.com>"; `P "Denis Merigoux <denis.merigoux@inria.fr>"; `P "Emile Rolley <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 (**{1 Terminal formatting}*) (**{2 Markers}*) let time : float ref = ref (Unix.gettimeofday ()) let with_style (styles : ANSITerminal.style list) (str : ('a, unit, string) format) = if !style_flag then ANSITerminal.sprintf styles str else Printf.sprintf str let format_with_style (styles : ANSITerminal.style list) fmt (str : string) = if !style_flag then Format.pp_print_as fmt (String.length str) (ANSITerminal.sprintf styles "%s" str) else Format.pp_print_string fmt str let call_unstyled f = let prev = !style_flag in style_flag := false; let res = f () in style_flag := prev; res let time_marker () = let new_time = Unix.gettimeofday () in let old_time = !time in time := new_time; let delta = (new_time -. old_time) *. 1000. in if delta > 50. then Printf.printf "%s" (with_style [ANSITerminal.Bold; ANSITerminal.black] "[TIME] %.0f ms\n" delta) (** Prints [\[DEBUG\]] in purple on the terminal standard output *) let debug_marker () = time_marker (); with_style [ANSITerminal.Bold; ANSITerminal.magenta] "[DEBUG] " (** Prints [\[ERROR\]] in red on the terminal error output *) let error_marker () = with_style [ANSITerminal.Bold; ANSITerminal.red] "[ERROR] " (** Prints [\[WARNING\]] in yellow on the terminal standard output *) let warning_marker () = with_style [ANSITerminal.Bold; ANSITerminal.yellow] "[WARNING] " (** Prints [\[RESULT\]] in green on the terminal standard output *) let result_marker () = with_style [ANSITerminal.Bold; ANSITerminal.green] "[RESULT] " (** Prints [\[LOG\]] in red on the terminal error output *) let log_marker () = with_style [ANSITerminal.Bold; ANSITerminal.black] "[LOG] " (**{2 Printers}*) (** All the printers below print their argument after the correct marker *) let concat_with_line_depending_prefix_and_suffix (prefix : int -> string) (suffix : int -> string) (ss : string list) = match ss with | hd :: rest -> let out, _ = List.fold_left (fun (acc, i) s -> ( (acc ^ prefix i ^ s ^ if i = List.length ss - 1 then "" else suffix i), i + 1 )) ((prefix 0 ^ hd ^ if 0 = List.length ss - 1 then "" else suffix 0), 1) rest in out | [] -> prefix 0 (** The int argument of the prefix corresponds to the line number, starting at 0 *) let add_prefix_to_each_line (s : string) (prefix : int -> string) = concat_with_line_depending_prefix_and_suffix (fun i -> prefix i) (fun _ -> "\n") (String.split_on_char '\n' s) let debug_print (format : ('a, out_channel, unit) format) = if !debug_flag then Printf.printf ("%s" ^^ format ^^ "\n%!") (debug_marker ()) else Printf.ifprintf stdout format let debug_format (format : ('a, Format.formatter, unit) format) = if !debug_flag then Format.printf ("%s@[<hov>" ^^ format ^^ "@]@.") (debug_marker ()) else Format.ifprintf Format.std_formatter format let error_print (format : ('a, out_channel, unit) format) = Printf.eprintf ("%s" ^^ format ^^ "\n%!") (error_marker ()) let warning_print (format : ('a, out_channel, unit) format) = Printf.printf ("%s" ^^ format ^^ "\n%!") (warning_marker ()) let result_print (format : ('a, out_channel, unit) format) = Printf.printf ("%s" ^^ format ^^ "\n%!") (result_marker ()) let result_format (format : ('a, Format.formatter, unit) format) = Format.printf ("%s" ^^ format ^^ "\n%!") (result_marker ()) let log_print (format : ('a, out_channel, unit) format) = Printf.printf ("%s" ^^ format ^^ "\n%!") (log_marker ()) let log_format (format : ('a, Format.formatter, unit) format) = Format.printf ("%s@[<hov>" ^^ format ^^ "@]@.") (log_marker ())
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>