catala/compiler/driver.ml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

591 lines
24 KiB
OCaml
Raw Normal View History

2020-04-16 18:47:35 +03:00
(* 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>
2020-03-08 03:52:31 +03:00
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. *)
2022-11-21 12:46:17 +03:00
open Catala_utils
2020-11-23 11:22:47 +03:00
(** Associates a file extension with its corresponding {!type: Cli.backend_lang}
string representation. *)
let extensions = [".catala_fr", "fr"; ".catala_en", "en"; ".catala_pl", "pl"]
let get_scope_uid
(options : Cli.options)
(backend : Plugin.t Cli.backend_option)
(ctxt : Desugared.Name_resolution.context) =
match options.ex_scope, backend with
| None, `Interpret ->
2023-05-30 16:41:49 +03:00
Messages.raise_error "No scope was provided for execution."
| None, _ ->
let _, scope =
try
Shared_ast.IdentName.Map.filter_map
(fun _ -> function
| Desugared.Name_resolution.TScope (uid, _) -> Some uid
| _ -> None)
ctxt.typedefs
|> Shared_ast.IdentName.Map.choose
with Not_found ->
2023-05-30 16:41:49 +03:00
Messages.raise_error "There isn't any scope inside the program."
in
scope
| Some name, _ -> (
match Shared_ast.IdentName.Map.find_opt name ctxt.typedefs with
| Some (Desugared.Name_resolution.TScope (uid, _)) -> uid
| _ ->
2023-05-30 16:41:49 +03:00
Messages.raise_error "There is no scope %a inside the program."
(Cli.format_with_style [ANSITerminal.yellow])
("\"" ^ name ^ "\""))
let get_variable_uid
(options : Cli.options)
(backend : Plugin.t Cli.backend_option)
(ctxt : Desugared.Name_resolution.context)
(scope_uid : Shared_ast.ScopeName.t) =
match options.ex_variable, backend with
| None, `Exceptions ->
2023-05-30 16:41:49 +03:00
Messages.raise_error
"Please specify a variable with the -v option to print its exception \
tree."
| None, _ -> None
| Some name, _ -> (
(* Sometimes the variable selected is of the form [a.b]*)
let first_part, second_part =
match
Re.(
exec_opt
(compile
@@ whole_string
@@ seq [group (rep1 (compl [char '.'])); char '.'; group (rep1 any)]
)
name)
with
| None -> name, None
| Some groups -> Re.Group.get groups 1, Some (Re.Group.get groups 2)
in
match
Shared_ast.IdentName.Map.find_opt first_part
(Shared_ast.ScopeName.Map.find scope_uid ctxt.scopes).var_idmap
with
| None ->
2023-05-30 16:41:49 +03:00
Messages.raise_error "Variable %a not found inside scope %a"
(Cli.format_with_style [ANSITerminal.yellow])
("\"" ^ name ^ "\"")
(Cli.format_with_style [ANSITerminal.yellow])
(Format.asprintf "\"%a\"" Shared_ast.ScopeName.format_t scope_uid)
| Some
(Desugared.Name_resolution.SubScope (subscope_var_name, subscope_name))
-> (
match second_part with
| None ->
2023-05-30 16:41:49 +03:00
Messages.raise_error
"Subscope %a of scope %a cannot be selected by itself, please add \
\".<var>\" where <var> is a subscope variable."
(Cli.format_with_style [ANSITerminal.yellow])
(Format.asprintf "\"%a\"" Shared_ast.SubScopeName.format_t
subscope_var_name)
(Cli.format_with_style [ANSITerminal.yellow])
(Format.asprintf "\"%a\"" Shared_ast.ScopeName.format_t scope_uid)
| Some second_part -> (
match
Shared_ast.IdentName.Map.find_opt second_part
(Shared_ast.ScopeName.Map.find subscope_name ctxt.scopes).var_idmap
with
| Some (Desugared.Name_resolution.ScopeVar v) ->
Some
(Desugared.Ast.ScopeDef.SubScopeVar
(subscope_var_name, v, Pos.no_pos))
| _ ->
2023-05-30 16:41:49 +03:00
Messages.raise_error
"Var %a of subscope %a in scope %a does not exist, please check \
your command line arguments."
(Cli.format_with_style [ANSITerminal.yellow])
("\"" ^ second_part ^ "\"")
(Cli.format_with_style [ANSITerminal.yellow])
(Format.asprintf "\"%a\"" Shared_ast.SubScopeName.format_t
subscope_var_name)
(Cli.format_with_style [ANSITerminal.yellow])
(Format.asprintf "\"%a\"" Shared_ast.ScopeName.format_t scope_uid)))
| Some (Desugared.Name_resolution.ScopeVar v) ->
Some
(Desugared.Ast.ScopeDef.Var
( v,
Option.map
(fun second_part ->
let var_sig = Shared_ast.ScopeVar.Map.find v ctxt.var_typs in
match
Shared_ast.IdentName.Map.find_opt second_part
var_sig.var_sig_states_idmap
with
| Some state -> state
| None ->
2023-05-30 16:41:49 +03:00
Messages.raise_error
"State %a is not found for variable %a of scope %a"
(Cli.format_with_style [ANSITerminal.yellow])
("\"" ^ second_part ^ "\"")
(Cli.format_with_style [ANSITerminal.yellow])
("\"" ^ first_part ^ "\"")
(Cli.format_with_style [ANSITerminal.yellow])
(Format.asprintf "\"%a\"" Shared_ast.ScopeName.format_t
scope_uid))
second_part )))
2021-04-22 12:57:50 +03:00
(** Entry function for the executable. Returns a negative number in case of
error. Usage: [driver source_file options]*)
let driver source_file (options : Cli.options) : int =
2020-08-07 16:29:52 +03:00
try
List.iter
(fun d ->
match Sys.is_directory d with
| true -> Plugin.load_dir d
| false -> ()
| exception Sys_error _ -> ())
options.plugins_dirs;
Cli.set_option_globals options;
if options.debug then Printexc.record_backtrace true;
Messages.emit_debug "Reading files...";
let filename = ref "" in
(match source_file with
| Pos.FileName f -> filename := f
| Contents c -> Cli.contents := c);
let l =
match options.language with
| Some l -> l
| None -> (
(* Try to infer the language from the intput file extension. *)
let ext = Filename.extension !filename in
if ext = "" then
2023-05-30 16:41:49 +03:00
Messages.raise_error
"No file extension found for the file '%s'. (Try to add one or to \
specify the -l flag)"
!filename;
try List.assoc ext extensions with Not_found -> ext)
in
let language =
try List.assoc l Cli.languages
with Not_found ->
2023-05-30 16:41:49 +03:00
Messages.raise_error
"The selected language (%s) is not supported by Catala" l
2020-08-07 16:29:52 +03:00
in
Cli.locale_lang := language;
let backend = options.backend in
2020-08-07 16:29:52 +03:00
let backend =
match Cli.backend_option_of_string backend with
| #Cli.backend_option_builtin as backend -> backend
| `Plugin s -> (
try `Plugin (Plugin.find s)
with Not_found ->
2023-05-30 16:41:49 +03:00
Messages.raise_error
"The selected backend (%s) is not supported by Catala, nor was a \
plugin by this name found under %a"
backend
(Format.pp_print_list
~pp_sep:(fun ppf () -> Format.fprintf ppf "@ or @ ")
(fun ppf dir ->
Format.pp_print_string ppf
(try Unix.readlink dir with _ -> dir)))
options.plugins_dirs)
2022-03-08 18:12:25 +03:00
in
let prgm =
Surface.Parser_driver.parse_top_level_file source_file language
2020-08-07 16:29:52 +03:00
in
let prgm = Surface.Fill_positions.fill_pos_with_legislative_info prgm in
let get_output ?ext =
File.get_out_channel ~source_file ~output_file:options.output_file ?ext
2022-05-31 17:24:37 +03:00
in
let get_output_format ?ext =
File.get_formatter_of_out_channel ~source_file
~output_file:options.output_file ?ext
2022-05-31 17:24:37 +03:00
in
(match backend with
| `Makefile ->
2020-08-07 16:29:52 +03:00
let backend_extensions_list = [".tex"] in
let source_file =
match source_file with
| FileName f -> f
| Contents _ ->
2023-05-30 16:41:49 +03:00
Messages.raise_error
"The Makefile backend does not work if the input is not a file"
in
2022-05-31 17:24:37 +03:00
let output_file, with_output = get_output ~ext:".d" () in
Messages.emit_debug "Writing list of dependencies to %s..."
2022-05-31 17:24:37 +03:00
(Option.value ~default:"stdout" output_file);
with_output
@@ fun oc ->
2020-08-07 16:29:52 +03:00
Printf.fprintf oc "%s:\\\n%s\n%s:"
(String.concat "\\\n"
2022-05-31 17:24:37 +03:00
(Option.value ~default:"stdout" output_file
:: List.map
(fun ext -> Filename.remove_extension source_file ^ ext)
backend_extensions_list))
(String.concat "\\\n" prgm.program_source_files)
(String.concat "\\\n" prgm.program_source_files)
| (`Latex | `Html) as backend ->
Messages.emit_debug "Weaving literate program into %s"
(match backend with `Latex -> "LaTeX" | `Html -> "HTML");
2022-05-31 17:24:37 +03:00
let output_file, with_output =
get_output_format ()
~ext:(match backend with `Latex -> ".tex" | `Html -> ".html")
in
2022-05-31 17:24:37 +03:00
with_output (fun fmt ->
let weave_output =
match backend with
2022-05-26 20:05:06 +03:00
| `Latex ->
Literate.Latex.ast_to_latex language
~print_only_law:options.print_only_law
| `Html ->
Literate.Html.ast_to_html language
~print_only_law:options.print_only_law
in
Messages.emit_debug "Writing to %s"
2022-05-31 17:24:37 +03:00
(Option.value ~default:"stdout" output_file);
if options.wrap_weaved_output then
match backend with
| `Latex ->
Literate.Latex.wrap_latex prgm.Surface.Ast.program_source_files
language fmt (fun fmt -> weave_output fmt prgm)
| `Html ->
Literate.Html.wrap_html prgm.Surface.Ast.program_source_files
language fmt (fun fmt -> weave_output fmt prgm)
else weave_output fmt prgm)
2023-04-05 16:38:46 +03:00
| ( `Interpret | `Interpret_Lcalc | `Typecheck | `OCaml | `Python | `Scalc
| `Lcalc | `Dcalc | `Scopelang | `Exceptions | `Proof | `Plugin _ ) as
backend -> (
Messages.emit_debug "Name resolution...";
let ctxt = Desugared.Name_resolution.form_context prgm in
let scope_uid = get_scope_uid options backend ctxt in
(* This uid is a Desugared identifier *)
let variable_uid = get_variable_uid options backend ctxt scope_uid in
Messages.emit_debug "Desugaring...";
let prgm = Desugared.From_surface.translate_program ctxt prgm in
Messages.emit_debug "Disambiguating...";
let prgm = Desugared.Disambiguate.program prgm in
Messages.emit_debug "Linting...";
2023-03-30 16:48:39 +03:00
Desugared.Linting.lint_program prgm;
Messages.emit_debug "Collecting rules...";
let exceptions_graphs =
Scopelang.From_desugared.build_exceptions_graph prgm
in
let prgm =
Scopelang.From_desugared.translate_program prgm exceptions_graphs
in
2021-01-28 02:28:28 +03:00
match backend with
| `Exceptions ->
let variable_uid =
match variable_uid with
| Some variable_uid -> variable_uid
| None ->
2023-05-30 16:41:49 +03:00
Messages.raise_error
"Please provide a scope variable to analyze with the -v option."
in
2023-04-07 17:35:09 +03:00
Desugared.Print.print_exceptions_graph scope_uid variable_uid
(Desugared.Ast.ScopeDef.Map.find variable_uid exceptions_graphs)
| `Scopelang ->
2022-05-31 17:24:37 +03:00
let _output_file, with_output = get_output_format () in
with_output
@@ fun fmt ->
if Option.is_some options.ex_scope then
Format.fprintf fmt "%a\n"
(Scopelang.Print.scope prgm.program_ctx ~debug:options.debug)
( scope_uid,
Shared_ast.ScopeName.Map.find scope_uid prgm.program_scopes )
else
Format.fprintf fmt "%a\n"
(Scopelang.Print.program ~debug:options.debug)
prgm
2023-04-05 16:38:46 +03:00
| ( `Interpret | `Interpret_Lcalc | `Typecheck | `OCaml | `Python | `Scalc
| `Lcalc | `Dcalc | `Proof | `Plugin _ ) as backend -> (
Messages.emit_debug "Typechecking...";
let type_ordering =
Scopelang.Dependency.check_type_cycles prgm.program_ctx.ctx_structs
prgm.program_ctx.ctx_enums
2021-12-10 00:59:39 +03:00
in
2022-09-28 13:27:47 +03:00
let prgm = Scopelang.Ast.type_program prgm in
Messages.emit_debug "Translating to default calculus...";
let prgm = Dcalc.From_scopelang.translate_program prgm in
2022-01-07 20:36:56 +03:00
let prgm =
if options.optimize then begin
Messages.emit_debug "Optimizing default calculus...";
2023-04-21 12:56:07 +03:00
Shared_ast.Optimizations.optimize_program prgm
2022-01-07 20:36:56 +03:00
end
else prgm
in
(* Messages.emit_debug (Format.asprintf "Typechecking results :@\n%a"
2023-01-05 20:56:19 +03:00
(Print.typ prgm.decl_ctx) typ); *)
match backend with
| `Typecheck ->
Messages.emit_debug "Typechecking again...";
2023-01-05 20:56:19 +03:00
let _ =
2023-03-28 10:38:47 +03:00
try Shared_ast.Typing.program prgm ~leave_unresolved:false
2023-05-30 16:41:49 +03:00
with Messages.CompilerError error_content ->
raise
(Messages.CompilerError
(Messages.to_internal_error error_content))
2023-01-05 20:56:19 +03:00
in
(* That's it! *)
Messages.emit_result "Typechecking successful!"
| `Dcalc ->
2022-05-31 17:24:37 +03:00
let _output_file, with_output = get_output_format () in
with_output
@@ fun fmt ->
if Option.is_some options.ex_scope then
Format.fprintf fmt "%a\n"
(Shared_ast.Print.scope ~debug:options.debug prgm.decl_ctx)
( scope_uid,
Option.get
(Shared_ast.Scope.fold_left ~init:None
~f:(fun acc def _ ->
match def with
| ScopeDef (name, body)
when Shared_ast.ScopeName.equal name scope_uid ->
Some body
| _ -> acc)
prgm.code_items) )
else
let prgrm_dcalc_expr =
Swap boxing and annotations in expressions This was the only reasonable solution I found to the issue raised [here](https://github.com/CatalaLang/catala/pull/334#discussion_r987175884). This was a pretty tedious rewrite, but it should now ensure we are doing things correctly. As a bonus, the "smart" expression constructors are now used everywhere to build expressions (so another refactoring like this one should be much easier) and this makes the code overall feel more straightforward (`Bindlib.box_apply` or `let+` no longer need to be visible!) --- Basically, we were using values of type `gexpr box = naked_gexpr marked box` throughout when (re-)building expressions. This was done 99% of the time by using `Bindlib.box_apply add_mark naked_e` right after building `naked_e`. In lots of places, we needed to recover the annotation of this expression later on, typically to build its parent term (to inherit the position, or build the type). Since it wasn't always possible to wrap these uses within `box_apply` (esp. as bindlib boxes aren't a monad), here and there we had to call `Bindlib.unbox`, just to recover the position or type. This had the very unpleasant effect of forcing the resolution of the whole box (including applying any stored closures) to reach the top-level annotation which isn't even dependant on specific variable bindings. Then, generally, throwing away the result. Therefore, the change proposed here transforms - `naked_gexpr marked Bindlib.box` into - `naked_gexpr Bindlib.box marked` (aliased to `boxed_gexpr` or `gexpr boxed` for convenience) This means only 1. not fitting the mark into the box right away when building, and 2. accessing the top-level mark directly without unboxing The functions for building terms from module `Shared_ast.Expr` could be changed easily. But then they needed to be consistently used throughout, without manually building terms through `Bindlib.apply_box` -- which covers most of the changes in this patch. `Expr.Box.inj` is provided to swap back to a box, before binding for example. Additionally, this gives a 40% speedup on `make -C examples pass_all_tests`, which hints at the amount of unnecessary work we were doing --'
2022-10-06 20:13:45 +03:00
Shared_ast.Expr.unbox (Shared_ast.Program.to_expr prgm scope_uid)
in
Format.fprintf fmt "%a\n"
(Shared_ast.Print.expr ~debug:options.debug ())
prgrm_dcalc_expr
2023-04-05 16:38:46 +03:00
| ( `Interpret | `OCaml | `Python | `Scalc | `Lcalc | `Proof | `Plugin _
| `Interpret_Lcalc ) as backend -> (
Messages.emit_debug "Typechecking again...";
2022-09-28 13:27:47 +03:00
let prgm =
2022-12-13 18:06:36 +03:00
try Shared_ast.Typing.program ~leave_unresolved:false prgm
2023-05-30 16:41:49 +03:00
with Messages.CompilerError error_content ->
raise
(Messages.CompilerError
(Messages.to_internal_error error_content))
2022-09-28 13:27:47 +03:00
in
if !Cli.check_invariants_flag then (
Messages.emit_debug "Checking invariants...";
let result = Dcalc.Invariants.check_all_invariants prgm in
2023-04-18 16:45:30 +03:00
if not result then
raise
2023-05-30 16:41:49 +03:00
(Messages.raise_internal_error
"Some Dcalc invariants are invalid"));
match backend with
| `Proof ->
let vcs =
Verification.Conditions.generate_verification_conditions prgm
(match options.ex_scope with
| None -> None
| Some _ -> Some scope_uid)
in
Verification.Solver.solve_vc prgm.decl_ctx vcs
| `Interpret ->
Messages.emit_debug "Starting interpretation (dcalc)...";
let results =
2023-04-05 17:35:12 +03:00
Shared_ast.Interpreter.interpret_program_dcalc prgm scope_uid
in
let results =
List.sort
(fun ((v1, _), _) ((v2, _), _) -> String.compare v1 v2)
results
in
Messages.emit_debug "End of interpretation";
Messages.emit_result "Computation successful!%s"
(if List.length results > 0 then " Results:" else "");
List.iter
(fun ((var, _), result) ->
Messages.emit_result "@[<hov 2>%s@ =@ %a@]" var
(Shared_ast.Print.expr ~debug:options.debug ())
result)
results
| `Plugin (Plugin.Dcalc p) ->
let output_file, _ = get_output_format ~ext:p.Plugin.extension () in
Messages.emit_debug "Compiling program through backend \"%s\"..."
p.Plugin.name;
p.Plugin.apply ~source_file ~output_file
~scope:
(match options.ex_scope with
| None -> None
| Some _ -> Some scope_uid)
(Shared_ast.Program.untype prgm)
type_ordering
2023-04-05 16:38:46 +03:00
| (`OCaml | `Interpret_Lcalc | `Python | `Lcalc | `Scalc | `Plugin _)
as backend -> (
Messages.emit_debug "Compiling program into lambda calculus...";
let prgm =
if options.trace && options.avoid_exceptions then
2023-05-30 16:41:49 +03:00
Messages.raise_error
"Option --avoid_exceptions is not compatible with option \
--trace";
if options.avoid_exceptions then
2023-03-28 10:55:01 +03:00
Shared_ast.Program.untype
@@ Lcalc.Compile_without_exceptions.translate_program prgm
2023-03-16 19:14:33 +03:00
else
Shared_ast.Program.untype
@@ Lcalc.Compile_with_exceptions.translate_program prgm
in
let prgm =
if options.optimize then begin
Messages.emit_debug "Optimizing lambda calculus...";
Shared_ast.Optimizations.optimize_program prgm
end
else Shared_ast.Program.untype prgm
in
let prgm =
if options.closure_conversion then (
if not options.avoid_exceptions then
2023-05-30 16:41:49 +03:00
Messages.raise_error
2022-12-13 19:21:37 +03:00
"Option --avoid_exceptions must be enabled for \
--closure_conversion";
Messages.emit_debug "Performing closure conversion...";
let prgm = Lcalc.Closure_conversion.closure_conversion prgm in
let prgm = Bindlib.unbox prgm in
2022-12-07 12:55:26 +03:00
let prgm =
if options.optimize then (
Messages.emit_debug "Optimizing lambda calculus...";
Shared_ast.Optimizations.optimize_program prgm)
2022-12-07 12:55:26 +03:00
else prgm
in
Messages.emit_debug "Retyping lambda calculus...";
let prgm =
2022-12-13 18:06:36 +03:00
Shared_ast.Program.untype
(Shared_ast.Typing.program ~leave_unresolved:true prgm)
in
prgm)
else prgm
in
match backend with
| `Lcalc ->
2022-05-31 17:24:37 +03:00
let _output_file, with_output = get_output_format () in
with_output
@@ fun fmt ->
if Option.is_some options.ex_scope then
Format.fprintf fmt "%a\n"
(Shared_ast.Print.scope ~debug:options.debug prgm.decl_ctx)
(scope_uid, Shared_ast.Program.get_scope_body prgm scope_uid)
else
2022-07-22 16:49:57 +03:00
Format.fprintf fmt "%a\n"
(Shared_ast.Print.program ~debug:options.debug)
prgm
2023-04-05 16:38:46 +03:00
| `Interpret_Lcalc ->
Messages.emit_debug "Starting interpretation (lcalc)...";
2023-04-05 16:38:46 +03:00
let results =
2023-04-05 17:35:12 +03:00
Shared_ast.Interpreter.interpret_program_lcalc prgm scope_uid
2023-04-05 16:38:46 +03:00
in
let results =
List.sort
(fun ((v1, _), _) ((v2, _), _) -> String.compare v1 v2)
results
in
Messages.emit_debug "End of interpretation";
Messages.emit_result "Computation successful!%s"
2023-04-05 16:38:46 +03:00
(if List.length results > 0 then " Results:" else "");
List.iter
(fun ((var, _), result) ->
Messages.emit_result "@[<hov 2>%s@ =@ %a@]" var
(Shared_ast.Print.expr ~debug:options.debug ())
2023-04-05 16:38:46 +03:00
result)
results
| (`OCaml | `Python | `Scalc | `Plugin _) as backend -> (
match backend with
| `OCaml ->
2022-05-31 17:24:37 +03:00
let output_file, with_output =
get_output_format ~ext:".ml" ()
in
with_output
@@ fun fmt ->
Messages.emit_debug "Compiling program into OCaml...";
Messages.emit_debug "Writing to %s..."
2022-05-31 17:24:37 +03:00
(Option.value ~default:"stdout" output_file);
Lcalc.To_ocaml.format_program fmt prgm type_ordering
| `Plugin (Plugin.Dcalc _) -> assert false
| `Plugin (Plugin.Lcalc p) ->
let output_file, _ =
get_output_format ~ext:p.Plugin.extension ()
in
Messages.emit_debug
"Compiling program through backend \"%s\"..." p.Plugin.name;
p.Plugin.apply ~source_file ~output_file
~scope:
(match options.ex_scope with
| None -> None
| Some _ -> Some scope_uid)
prgm type_ordering
| (`Python | `Scalc | `Plugin (Plugin.Scalc _)) as backend -> (
let prgm = Scalc.From_lcalc.translate_program prgm in
match backend with
| `Scalc ->
2022-05-31 17:24:37 +03:00
let _output_file, with_output = get_output_format () in
with_output
@@ fun fmt ->
if Option.is_some options.ex_scope then
Format.fprintf fmt "%a\n"
(Scalc.Print.format_item ~debug:options.debug
prgm.decl_ctx)
(List.find
(function
| Scalc.Ast.SScope { scope_body_name; _ } ->
scope_body_name = scope_uid
| _ -> false)
prgm.code_items)
2023-02-10 20:56:40 +03:00
else Scalc.Print.format_program prgm.decl_ctx fmt prgm
| `Python ->
2022-05-31 17:24:37 +03:00
let output_file, with_output =
get_output_format ~ext:".py" ()
in
Messages.emit_debug "Compiling program into Python...";
Messages.emit_debug "Writing to %s..."
2022-05-31 17:24:37 +03:00
(Option.value ~default:"stdout" output_file);
with_output
@@ fun fmt ->
Scalc.To_python.format_program fmt prgm type_ordering
| `Plugin (Plugin.Dcalc _ | Plugin.Lcalc _) -> assert false
| `Plugin (Plugin.Scalc p) ->
2022-05-31 17:24:37 +03:00
let output_file, _ = get_output ~ext:p.Plugin.extension () in
Messages.emit_debug
"Compiling program through backend \"%s\"..." p.Plugin.name;
Messages.emit_debug "Writing to %s..."
2022-05-31 17:24:37 +03:00
(Option.value ~default:"stdout" output_file);
p.Plugin.apply ~source_file ~output_file
~scope:
(match options.ex_scope with
| None -> None
| Some _ -> Some scope_uid)
prgm type_ordering)))))));
0
with
2023-05-30 16:41:49 +03:00
| Messages.CompilerError content ->
let bt = Printexc.get_raw_backtrace () in
2023-05-30 16:41:49 +03:00
Messages.emit_content content Error;
if Printexc.backtrace_status () then Printexc.print_raw_backtrace stderr bt;
2023-05-04 19:28:24 +03:00
-1
| Sys_error msg ->
let bt = Printexc.get_raw_backtrace () in
2023-05-30 17:22:05 +03:00
Messages.emit_content
(Messages.Content.of_message ("System error: " ^ msg))
Error;
if Printexc.backtrace_status () then Printexc.print_raw_backtrace stderr bt;
-1
2020-03-08 03:52:31 +03:00
let main () =
if
Array.length Sys.argv >= 2
&& String.lowercase_ascii Sys.argv.(1) = "pygmentize"
then Literate.Pygmentize.exec ();
let return_code =
2022-05-04 18:37:03 +03:00
Cmdliner.Cmd.eval'
(Cmdliner.Cmd.v Cli.info (Cli.catala_t (fun f -> driver (FileName f))))
in
2022-05-04 18:37:03 +03:00
exit return_code
(* Export module PluginAPI, hide parent module Plugin *)
module Plugin = Plugin.PluginAPI