catala/compiler/lcalc/to_ocaml.ml

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

543 lines
22 KiB
OCaml
Raw Normal View History

2021-01-28 02:28:28 +03:00
(* This file is part of the Catala compiler, a specification language for tax
and social benefits computation rules. Copyright (C) 2020 Inria, contributor:
Denis Merigoux <denis.merigoux@inria.fr>
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
open Shared_ast
2021-01-28 02:28:28 +03:00
open Ast
2021-02-12 19:20:14 +03:00
module D = Dcalc.Ast
2021-01-28 02:28:28 +03:00
let find_struct (s : StructName.t) (ctx : decl_ctx) : typ StructField.Map.t =
try StructName.Map.find s ctx.ctx_structs
with Not_found ->
let s_name, pos = StructName.get_info s in
Errors.raise_spanned_error pos
"Internal Error: Structure %s was not found in the current environment."
s_name
let find_enum (en : EnumName.t) (ctx : decl_ctx) : typ EnumConstructor.Map.t =
try EnumName.Map.find en ctx.ctx_enums
with Not_found ->
let en_name, pos = EnumName.get_info en in
Errors.raise_spanned_error pos
"Internal Error: Enumeration %s was not found in the current environment."
en_name
let format_lit (fmt : Format.formatter) (l : lit Marked.pos) : unit =
match Marked.unmark l with
| LBool b -> Print.lit fmt (LBool b)
| LInt i ->
Format.fprintf fmt "integer_of_string@ \"%s\"" (Runtime.integer_to_string i)
| LUnit -> Print.lit fmt LUnit
| LRat i -> Format.fprintf fmt "decimal_of_string \"%a\"" Print.lit (LRat i)
| LMoney e ->
Format.fprintf fmt "money_of_cents_string@ \"%s\""
(Runtime.integer_to_string (Runtime.money_to_cents e))
| LDate d ->
2022-07-22 20:02:09 +03:00
Format.fprintf fmt "date_of_numbers (%d) (%d) (%d)"
(Runtime.integer_to_int (Runtime.year_of_date d))
(Runtime.integer_to_int (Runtime.month_number_of_date d))
(Runtime.integer_to_int (Runtime.day_of_month_of_date d))
| LDuration d ->
2021-06-20 23:07:39 +03:00
let years, months, days = Runtime.duration_to_years_months_days d in
2022-07-22 20:02:09 +03:00
Format.fprintf fmt "duration_of_numbers (%d) (%d) (%d)" years months days
2021-01-28 02:28:28 +03:00
2021-04-03 18:58:31 +03:00
let format_uid_list (fmt : Format.formatter) (uids : Uid.MarkedString.info list)
: unit =
Format.fprintf fmt "@[<hov 2>[%a]@]"
(Format.pp_print_list
~pp_sep:(fun fmt () -> Format.fprintf fmt ";@ ")
(fun fmt info ->
2022-11-21 12:46:17 +03:00
Format.fprintf fmt "\"%a\"" Uid.MarkedString.format info))
2021-04-03 18:58:31 +03:00
uids
let format_string_list (fmt : Format.formatter) (uids : string list) : unit =
2022-07-22 20:02:09 +03:00
let sanitize_quotes = Re.compile (Re.char '"') in
2021-04-03 18:58:31 +03:00
Format.fprintf fmt "@[<hov 2>[%a]@]"
(Format.pp_print_list
~pp_sep:(fun fmt () -> Format.fprintf fmt ";@ ")
2022-07-22 20:02:09 +03:00
(fun fmt info ->
Format.fprintf fmt "\"%s\""
(Re.replace sanitize_quotes ~f:(fun _ -> "\\\"") info)))
2021-04-03 18:58:31 +03:00
uids
2021-03-10 18:50:54 +03:00
let avoid_keywords (s : string) : string =
2022-07-22 20:02:09 +03:00
match s with
(* list taken from
http://caml.inria.fr/pub/docs/manual-ocaml/lex.html#sss:keywords *)
| "and" | "as" | "assert" | "asr" | "begin" | "class" | "constraint" | "do"
| "done" | "downto" | "else" | "end" | "exception" | "external" | "false"
| "for" | "fun" | "function" | "functor" | "if" | "in" | "include" | "inherit"
| "initializer" | "land" | "lazy" | "let" | "lor" | "lsl" | "lsr" | "lxor"
| "match" | "method" | "mod" | "module" | "mutable" | "new" | "nonrec"
| "object" | "of" | "open" | "or" | "private" | "rec" | "sig" | "struct"
| "then" | "to" | "true" | "try" | "type" | "val" | "virtual" | "when"
| "while" | "with" | "Stdlib" | "Runtime" | "Oper" ->
2022-07-22 20:02:09 +03:00
s ^ "_user"
| _ -> s
2021-03-10 18:50:54 +03:00
let format_struct_name (fmt : Format.formatter) (v : StructName.t) : unit =
Format.asprintf "%a" StructName.format_t v
|> String.to_ascii
|> String.to_snake_case
|> avoid_keywords
|> Format.fprintf fmt "%s"
let format_to_module_name
(fmt : Format.formatter)
(name : [< `Ename of EnumName.t | `Sname of StructName.t ]) =
(match name with
| `Ename v -> Format.asprintf "%a" EnumName.format_t v
| `Sname v -> Format.asprintf "%a" StructName.format_t v)
|> String.to_ascii
|> String.to_snake_case
|> avoid_keywords
|> String.split_on_char '_'
|> List.map String.capitalize_ascii
|> String.concat ""
|> Format.fprintf fmt "%s"
2021-01-28 20:30:01 +03:00
let format_struct_field_name
(fmt : Format.formatter)
((sname_opt, v) : StructName.t option * StructField.t) : unit =
(match sname_opt with
| Some sname ->
Format.fprintf fmt "%a.%s" format_to_module_name (`Sname sname)
| None -> Format.fprintf fmt "%s")
2022-11-24 20:00:45 +03:00
(avoid_keywords
(String.to_ascii (Format.asprintf "%a" StructField.format_t v)))
2021-01-28 02:28:28 +03:00
let format_enum_name (fmt : Format.formatter) (v : EnumName.t) : unit =
2021-01-28 02:28:28 +03:00
Format.fprintf fmt "%s"
2021-03-10 18:50:54 +03:00
(avoid_keywords
2022-11-24 20:00:45 +03:00
(String.to_snake_case
(String.to_ascii (Format.asprintf "%a" EnumName.format_t v))))
2021-01-28 20:30:01 +03:00
let format_enum_cons_name (fmt : Format.formatter) (v : EnumConstructor.t) :
unit =
2021-03-10 18:50:54 +03:00
Format.fprintf fmt "%s"
(avoid_keywords
(String.to_ascii (Format.asprintf "%a" EnumConstructor.format_t v)))
2021-01-28 02:28:28 +03:00
let rec typ_embedding_name (fmt : Format.formatter) (ty : typ) : unit =
match Marked.unmark ty with
| TLit TUnit -> Format.fprintf fmt "embed_unit"
| TLit TBool -> Format.fprintf fmt "embed_bool"
| TLit TInt -> Format.fprintf fmt "embed_integer"
| TLit TRat -> Format.fprintf fmt "embed_decimal"
| TLit TMoney -> Format.fprintf fmt "embed_money"
| TLit TDate -> Format.fprintf fmt "embed_date"
| TLit TDuration -> Format.fprintf fmt "embed_duration"
| TStruct s_name -> Format.fprintf fmt "embed_%a" format_struct_name s_name
| TEnum e_name -> Format.fprintf fmt "embed_%a" format_enum_name e_name
| TArray ty -> Format.fprintf fmt "embed_array (%a)" typ_embedding_name ty
2021-04-09 00:23:10 +03:00
| _ -> Format.fprintf fmt "unembeddable"
let typ_needs_parens (e : typ) : bool =
match Marked.unmark e with TArrow _ | TArray _ -> true | _ -> false
2021-02-01 11:54:48 +03:00
let rec format_typ (fmt : Format.formatter) (typ : typ) : unit =
let format_typ_with_parens (fmt : Format.formatter) (t : typ) =
2021-02-01 11:54:48 +03:00
if typ_needs_parens t then Format.fprintf fmt "(%a)" format_typ t
else Format.fprintf fmt "%a" format_typ t
2021-01-28 02:28:28 +03:00
in
match Marked.unmark typ with
| TLit l -> Format.fprintf fmt "%a" Print.tlit l
| TTuple ts ->
2021-01-28 02:28:28 +03:00
Format.fprintf fmt "@[<hov 2>(%a)@]"
(Format.pp_print_list
~pp_sep:(fun fmt () -> Format.fprintf fmt "@ *@ ")
format_typ_with_parens)
2021-01-28 02:28:28 +03:00
ts
| TStruct s -> Format.fprintf fmt "%a.t" format_to_module_name (`Sname s)
| TOption t ->
2022-02-21 13:58:26 +03:00
Format.fprintf fmt "@[<hov 2>(%a)@] %a" format_typ_with_parens t
format_enum_name Ast.option_enum
| TEnum e -> Format.fprintf fmt "%a.t" format_to_module_name (`Ename e)
2021-01-28 02:28:28 +03:00
| TArrow (t1, t2) ->
2021-02-01 11:54:48 +03:00
Format.fprintf fmt "@[<hov 2>%a ->@ %a@]" format_typ_with_parens t1
format_typ_with_parens t2
| TArray t1 -> Format.fprintf fmt "@[%a@ array@]" format_typ_with_parens t1
2021-01-28 02:28:28 +03:00
| TAny -> Format.fprintf fmt "_"
let format_var (fmt : Format.formatter) (v : 'm Var.t) : unit =
2022-11-24 20:00:45 +03:00
let lowercase_name =
String.to_snake_case (String.to_ascii (Bindlib.name_of v))
in
2021-01-28 15:58:59 +03:00
let lowercase_name =
Re.Pcre.substitute ~rex:(Re.Pcre.regexp "\\.")
~subst:(fun _ -> "_dot_")
lowercase_name
in
let lowercase_name = avoid_keywords (String.to_ascii lowercase_name) in
if
List.mem lowercase_name ["handle_default"; "handle_default_opt"]
|| String.begins_with_uppercase (Bindlib.name_of v)
then Format.pp_print_string fmt lowercase_name
else if lowercase_name = "_" then Format.pp_print_string fmt lowercase_name
else (
Cli.debug_print "lowercase_name: %s " lowercase_name;
Format.fprintf fmt "%s_" lowercase_name)
2021-01-28 02:28:28 +03:00
let needs_parens (e : 'm expr) : bool =
match Marked.unmark e with
| EApp { f = EAbs _, _; _ }
2021-04-03 12:49:13 +03:00
| ELit (LBool _ | LUnit)
| EVar _ | ETuple _ | EOp _ ->
false
2021-02-01 11:54:48 +03:00
| _ -> true
2021-01-28 02:28:28 +03:00
let format_exception (fmt : Format.formatter) (exc : except Marked.pos) : unit =
match Marked.unmark exc with
| ConflictError ->
let pos = Marked.get_mark exc in
Format.fprintf fmt
"(ConflictError@ @[<hov 2>{filename = \"%s\";@ start_line=%d;@ \
start_column=%d;@ end_line=%d; end_column=%d;@ law_headings=%a}@])"
(Pos.get_file pos) (Pos.get_start_line pos) (Pos.get_start_column pos)
(Pos.get_end_line pos) (Pos.get_end_column pos) format_string_list
(Pos.get_law_info pos)
2021-06-09 01:21:06 +03:00
| EmptyError -> Format.fprintf fmt "EmptyError"
| Crash -> Format.fprintf fmt "Crash"
| NoValueProvided ->
let pos = Marked.get_mark exc in
2021-06-09 01:21:06 +03:00
Format.fprintf fmt
"(NoValueProvided@ @[<hov 2>{filename = \"%s\";@ start_line=%d;@ \
start_column=%d;@ end_line=%d; end_column=%d;@ law_headings=%a}@])"
(Pos.get_file pos) (Pos.get_start_line pos) (Pos.get_start_column pos)
(Pos.get_end_line pos) (Pos.get_end_column pos) format_string_list
(Pos.get_law_info pos)
let rec format_expr (ctx : decl_ctx) (fmt : Format.formatter) (e : 'm expr) :
unit =
2021-01-28 02:28:28 +03:00
let format_expr = format_expr ctx in
let format_with_parens (fmt : Format.formatter) (e : 'm expr) =
2021-01-28 02:28:28 +03:00
if needs_parens e then Format.fprintf fmt "(%a)" format_expr e
else Format.fprintf fmt "%a" format_expr e
in
match Marked.unmark e with
| EVar v -> Format.fprintf fmt "%a" format_var v
| ETuple es ->
2021-01-28 02:28:28 +03:00
Format.fprintf fmt "@[<hov 2>(%a)@]"
(Format.pp_print_list
~pp_sep:(fun fmt () -> Format.fprintf fmt ",@ ")
2021-02-01 11:54:48 +03:00
(fun fmt e -> Format.fprintf fmt "%a" format_with_parens e))
2021-01-28 02:28:28 +03:00
es
| EStruct { name = s; fields = es } ->
if StructField.Map.is_empty es then Format.fprintf fmt "()"
2021-02-03 12:53:21 +03:00
else
Format.fprintf fmt "{@[<hov 2>%a@]}"
2021-01-28 02:28:28 +03:00
(Format.pp_print_list
~pp_sep:(fun fmt () -> Format.fprintf fmt ";@ ")
(fun fmt (struct_field, e) ->
2021-02-03 12:53:21 +03:00
Format.fprintf fmt "@[<hov 2>%a =@ %a@]" format_struct_field_name
(Some s, struct_field) format_with_parens e))
(StructField.Map.bindings es)
2021-01-28 02:28:28 +03:00
| EArray es ->
Format.fprintf fmt "@[<hov 2>[|%a|]@]"
2021-01-28 02:28:28 +03:00
(Format.pp_print_list
~pp_sep:(fun fmt () -> Format.fprintf fmt ";@ ")
2021-02-01 11:54:48 +03:00
(fun fmt e -> Format.fprintf fmt "%a" format_with_parens e))
2021-01-28 02:28:28 +03:00
es
| ETupleAccess { e; index; size } ->
Format.fprintf fmt "let@ %a@ = %a@ in@ x"
(Format.pp_print_list
~pp_sep:(fun fmt () -> Format.fprintf fmt ",@ ")
(fun fmt i ->
Format.pp_print_string fmt (if i = index then "x" else "_")))
(List.init size Fun.id) format_with_parens e
| EStructAccess { e; field; name } ->
Format.fprintf fmt "%a.%a" format_with_parens e format_struct_field_name
(Some name, field)
| EInj { e; cons; name } ->
Format.fprintf fmt "@[<hov 2>%a.%a@ %a@]" format_to_module_name
(`Ename name) format_enum_cons_name cons format_with_parens e
| EMatch { e; cases; name } ->
Format.fprintf fmt "@[<hv>@[<hov 2>match@ %a@]@ with@\n| %a@]"
format_with_parens e
2021-01-28 02:28:28 +03:00
(Format.pp_print_list
~pp_sep:(fun fmt () -> Format.fprintf fmt "@ | ")
(fun fmt (c, e) ->
Format.fprintf fmt "@[<hov 2>%a.%a %a@]" format_to_module_name
(`Ename name) format_enum_cons_name c
2021-01-28 02:28:28 +03:00
(fun fmt e ->
match Marked.unmark e with
| EAbs { binder; _ } ->
2021-01-28 02:28:28 +03:00
let xs, body = Bindlib.unmbind binder in
Format.fprintf fmt "%a ->@ %a"
2021-01-28 02:28:28 +03:00
(Format.pp_print_list
~pp_sep:(fun fmt () -> Format.fprintf fmt "@,")
(fun fmt x -> Format.fprintf fmt "%a" format_var x))
2021-02-01 11:54:48 +03:00
(Array.to_list xs) format_with_parens body
2021-01-28 02:28:28 +03:00
| _ -> assert false
(* should not happen *))
e))
(EnumConstructor.Map.bindings cases)
| ELit l -> Format.fprintf fmt "%a" format_lit (Marked.mark (Expr.pos e) l)
| EApp { f = EAbs { binder; tys }, _; args } ->
2021-01-28 02:28:28 +03:00
let xs, body = Bindlib.unmbind binder in
let xs_tau = List.map2 (fun x tau -> x, tau) (Array.to_list xs) tys in
2021-01-28 02:28:28 +03:00
let xs_tau_arg = List.map2 (fun (x, tau) arg -> x, tau, arg) xs_tau args in
Format.fprintf fmt "(%a%a)"
2021-01-28 02:28:28 +03:00
(Format.pp_print_list
~pp_sep:(fun fmt () -> Format.fprintf fmt "")
2021-01-28 02:28:28 +03:00
(fun fmt (x, tau, arg) ->
2021-02-01 11:54:48 +03:00
Format.fprintf fmt "@[<hov 2>let@ %a@ :@ %a@ =@ %a@]@ in@\n"
format_var x format_typ tau format_with_parens arg))
xs_tau_arg format_with_parens body
| EAbs { binder; tys } ->
2021-01-28 02:28:28 +03:00
let xs, body = Bindlib.unmbind binder in
let xs_tau = List.map2 (fun x tau -> x, tau) (Array.to_list xs) tys in
2021-01-28 02:28:28 +03:00
Format.fprintf fmt "@[<hov 2>fun@ %a ->@ %a@]"
(Format.pp_print_list
~pp_sep:(fun fmt () -> Format.fprintf fmt "@ ")
(fun fmt (x, tau) ->
Format.fprintf fmt "@[<hov 2>(%a:@ %a)@]" format_var x format_typ tau))
xs_tau format_expr body
| EApp
{
f = EApp { f = EOp { op = Log (BeginCall, info); _ }, _; args = [f] }, _;
args = [arg];
}
2021-04-03 18:58:31 +03:00
when !Cli.trace_flag ->
Format.fprintf fmt "(log_begin_call@ %a@ %a)@ %a" format_uid_list info
2021-02-01 11:54:48 +03:00
format_with_parens f format_with_parens arg
| EApp { f = EOp { op = Log (VarDef tau, info); _ }, _; args = [arg1] }
when !Cli.trace_flag ->
2021-04-09 00:23:10 +03:00
Format.fprintf fmt "(log_variable_definition@ %a@ (%a)@ %a)" format_uid_list
info typ_embedding_name (tau, Pos.no_pos) format_with_parens arg1
| EApp { f = EOp { op = Log (PosRecordIfTrueBool, _); _ }, m; args = [arg1] }
2021-04-03 18:58:31 +03:00
when !Cli.trace_flag ->
let pos = Expr.mark_pos m in
2021-04-03 18:58:31 +03:00
Format.fprintf fmt
"(log_decision_taken@ @[<hov 2>{filename = \"%s\";@ start_line=%d;@ \
start_column=%d;@ end_line=%d; end_column=%d;@ law_headings=%a}@]@ %a)"
(Pos.get_file pos) (Pos.get_start_line pos) (Pos.get_start_column pos)
(Pos.get_end_line pos) (Pos.get_end_column pos) format_string_list
(Pos.get_law_info pos) format_with_parens arg1
| EApp { f = EOp { op = Log (EndCall, info); _ }, _; args = [arg1] }
when !Cli.trace_flag ->
2021-04-05 20:06:32 +03:00
Format.fprintf fmt "(log_end_call@ %a@ %a)" format_uid_list info
2021-04-03 18:58:31 +03:00
format_with_parens arg1
| EApp { f = EOp { op = Log _; _ }, _; args = [arg1] } ->
2021-02-01 11:54:48 +03:00
Format.fprintf fmt "%a" format_with_parens arg1
| EApp { f = EVar x, pos; args }
when Var.compare x (Var.translate Ast.handle_default) = 0
|| Var.compare x (Var.translate Ast.handle_default_opt) = 0 ->
Format.fprintf fmt
"@[<hov 2>%a@ @[<hov 2>{filename = \"%s\";@ start_line=%d;@ \
start_column=%d;@ end_line=%d; end_column=%d;@ law_headings=%a}@]@ %a@]"
format_var x
(Pos.get_file (Expr.mark_pos pos))
(Pos.get_start_line (Expr.mark_pos pos))
(Pos.get_start_column (Expr.mark_pos pos))
(Pos.get_end_line (Expr.mark_pos pos))
(Pos.get_end_column (Expr.mark_pos pos))
format_string_list
(Pos.get_law_info (Expr.mark_pos pos))
(Format.pp_print_list
~pp_sep:(fun fmt () -> Format.fprintf fmt "@ ")
format_with_parens)
args
| EApp { f; args } ->
2021-02-01 11:54:48 +03:00
Format.fprintf fmt "@[<hov 2>%a@ %a@]" format_with_parens f
2021-01-28 02:28:28 +03:00
(Format.pp_print_list
~pp_sep:(fun fmt () -> Format.fprintf fmt "@ ")
format_with_parens)
args
| EIfThenElse { cond; etrue; efalse } ->
2021-01-28 02:28:28 +03:00
Format.fprintf fmt
"@[<hov 2> if@ @[<hov 2>%a@]@ then@ @[<hov 2>%a@]@ else@ @[<hov 2>%a@]@]"
format_with_parens cond format_with_parens etrue format_with_parens efalse
| EOp { op; _ } -> Format.pp_print_string fmt (Operator.name op)
| EAssert e' ->
2021-04-03 15:38:38 +03:00
Format.fprintf fmt
"@[<hov 2>if@ %a@ then@ ()@ else@ raise (AssertionFailed @[<hov \
2>{filename = \"%s\";@ start_line=%d;@ start_column=%d;@ end_line=%d; \
end_column=%d;@ law_headings=%a}@])@]"
2021-02-01 11:54:48 +03:00
format_with_parens e'
(Pos.get_file (Expr.pos e'))
(Pos.get_start_line (Expr.pos e'))
(Pos.get_start_column (Expr.pos e'))
(Pos.get_end_line (Expr.pos e'))
(Pos.get_end_column (Expr.pos e'))
format_string_list
(Pos.get_law_info (Expr.pos e'))
| ERaise exc ->
Format.fprintf fmt "raise@ %a" format_exception (exc, Expr.pos e)
| ECatch { body; exn; handler } ->
Format.fprintf fmt
"@,@[<hv>@[<hov 2>try@ %a@]@ with@]@ @[<hov 2>%a@ ->@ %a@]"
format_with_parens body format_exception
(exn, Expr.pos e)
format_with_parens handler
2021-01-28 02:28:28 +03:00
2021-04-09 00:23:10 +03:00
let format_struct_embedding
(fmt : Format.formatter)
((struct_name, struct_fields) : StructName.t * typ StructField.Map.t) =
if StructField.Map.is_empty struct_fields then
Format.fprintf fmt "let embed_%a (_: %a.t) : runtime_value = Unit@\n@\n"
format_struct_name struct_name format_to_module_name (`Sname struct_name)
2021-04-09 00:23:10 +03:00
else
Format.fprintf fmt
"@[<hov 2>let embed_%a (x: %a.t) : runtime_value =@ Struct([\"%a\"],@ \
2021-04-09 00:23:10 +03:00
@[<hov 2>[%a]@])@]@\n\
@\n"
format_struct_name struct_name format_to_module_name (`Sname struct_name)
StructName.format_t struct_name
2021-04-09 00:23:10 +03:00
(Format.pp_print_list
~pp_sep:(fun fmt () -> Format.fprintf fmt ";@\n")
(fun _fmt (struct_field, struct_field_type) ->
Format.fprintf fmt "(\"%a\",@ %a@ x.%a)" StructField.format_t
2021-04-09 00:23:10 +03:00
struct_field typ_embedding_name struct_field_type
format_struct_field_name
(Some struct_name, struct_field)))
(StructField.Map.bindings struct_fields)
2021-04-09 00:23:10 +03:00
let format_enum_embedding
(fmt : Format.formatter)
((enum_name, enum_cases) : EnumName.t * typ EnumConstructor.Map.t) =
if EnumConstructor.Map.is_empty enum_cases then
Format.fprintf fmt "let embed_%a (_: %a.t) : runtime_value = Unit@\n@\n"
format_to_module_name (`Ename enum_name) format_enum_name enum_name
2021-04-09 00:23:10 +03:00
else
Format.fprintf fmt
"@[<hv 2>@[<hov 2>let embed_%a@ @[<hov 2>(x:@ %a.t)@]@ : runtime_value \
=@]@ Enum([\"%a\"],@ @[<hov 2>match x with@ %a@])@]@\n\
2021-04-09 00:23:10 +03:00
@\n"
format_enum_name enum_name format_to_module_name (`Ename enum_name)
EnumName.format_t enum_name
2021-04-09 00:23:10 +03:00
(Format.pp_print_list
~pp_sep:(fun fmt () -> Format.fprintf fmt "@\n")
(fun _fmt (enum_cons, enum_cons_type) ->
Format.fprintf fmt "@[<hov 2>| %a x ->@ (\"%a\", %a x)@]"
format_enum_cons_name enum_cons EnumConstructor.format_t enum_cons
2021-04-09 00:23:10 +03:00
typ_embedding_name enum_cons_type))
(EnumConstructor.Map.bindings enum_cases)
2021-04-09 00:23:10 +03:00
let format_ctx
(type_ordering : Scopelang.Dependency.TVertex.t list)
(fmt : Format.formatter)
(ctx : decl_ctx) : unit =
let format_struct_decl fmt (struct_name, struct_fields) =
if StructField.Map.is_empty struct_fields then
Format.fprintf fmt
"@[<v 2>module %a = struct@\n@[<hov 2>type t = unit@]@]@\nend@\n"
format_to_module_name (`Sname struct_name)
2021-02-03 12:53:21 +03:00
else
Format.fprintf fmt
"@[<v>@[<v 2>module %a = struct@ @[<hv 2>type t = {@,\
%a@;\
<0-2>}@]@]@ end@]@\n"
format_to_module_name (`Sname struct_name)
2021-02-03 12:53:21 +03:00
(Format.pp_print_list
~pp_sep:(fun fmt () -> Format.fprintf fmt ";@ ")
2021-02-03 12:53:21 +03:00
(fun _fmt (struct_field, struct_field_type) ->
Format.fprintf fmt "@[<hov 2>%a:@ %a@]" format_struct_field_name
(None, struct_field) format_typ struct_field_type))
(StructField.Map.bindings struct_fields);
2021-04-09 00:23:10 +03:00
if !Cli.trace_flag then
format_struct_embedding fmt (struct_name, struct_fields)
in
let format_enum_decl fmt (enum_name, enum_cons) =
Format.fprintf fmt
"module %a = struct@\n@[<hov 2>@ type t =@\n@[<hov 2> %a@]@\nend@]@\n"
format_to_module_name (`Ename enum_name)
(Format.pp_print_list
~pp_sep:(fun fmt () -> Format.fprintf fmt "@\n")
(fun _fmt (enum_cons, enum_cons_type) ->
Format.fprintf fmt "@[<hov 2>| %a@ of@ %a@]" format_enum_cons_name
enum_cons format_typ enum_cons_type))
(EnumConstructor.Map.bindings enum_cons);
2021-04-09 00:23:10 +03:00
if !Cli.trace_flag then format_enum_embedding fmt (enum_name, enum_cons)
in
let is_in_type_ordering s =
List.exists
(fun struct_or_enum ->
match struct_or_enum with
| Scopelang.Dependency.TVertex.Enum _ -> false
| Scopelang.Dependency.TVertex.Struct s' -> s = s')
type_ordering
in
let scope_structs =
List.map
(fun (s, _) -> Scopelang.Dependency.TVertex.Struct s)
(StructName.Map.bindings
(StructName.Map.filter
(fun s _ -> not (is_in_type_ordering s))
ctx.ctx_structs))
in
List.iter
(fun struct_or_enum ->
match struct_or_enum with
| Scopelang.Dependency.TVertex.Struct s ->
Format.fprintf fmt "%a@\n" format_struct_decl (s, find_struct s ctx)
| Scopelang.Dependency.TVertex.Enum e ->
Format.fprintf fmt "%a@\n" format_enum_decl (e, find_enum e ctx))
(type_ordering @ scope_structs)
2021-01-28 02:28:28 +03:00
2022-04-26 17:06:36 +03:00
let rec format_scope_body_expr
(ctx : decl_ctx)
2022-04-26 17:06:36 +03:00
(fmt : Format.formatter)
(scope_lets : 'm Ast.expr scope_body_expr) : unit =
2022-04-26 17:06:36 +03:00
match scope_lets with
| Result e -> format_expr ctx fmt e
| ScopeLet scope_let ->
2022-04-26 17:06:36 +03:00
let scope_let_var, scope_let_next =
Bindlib.unbind scope_let.scope_let_next
in
Format.fprintf fmt "@[<hov 2>let %a: %a = %a in@]@\n%a" format_var
scope_let_var format_typ scope_let.scope_let_typ (format_expr ctx)
scope_let.scope_let_expr
(format_scope_body_expr ctx)
scope_let_next
let rec format_scopes
(ctx : decl_ctx)
2022-04-26 17:06:36 +03:00
(fmt : Format.formatter)
(scopes : 'm Ast.expr scopes) : unit =
2022-04-26 17:06:36 +03:00
match scopes with
| Nil -> ()
| ScopeDef scope_def ->
2022-04-26 17:06:36 +03:00
let scope_input_var, scope_body_expr =
Bindlib.unbind scope_def.scope_body.scope_body_expr
in
let scope_var, scope_next = Bindlib.unbind scope_def.scope_next in
Format.fprintf fmt "@\n@\n@[<hov 2>let %a (%a: %a.t) : %a.t =@\n%a@]%a"
format_var scope_var format_var scope_input_var format_to_module_name
(`Sname scope_def.scope_body.scope_body_input_struct)
format_to_module_name
(`Sname scope_def.scope_body.scope_body_output_struct)
2022-04-26 17:06:36 +03:00
(format_scope_body_expr ctx)
scope_body_expr (format_scopes ctx) scope_next
let format_program
(fmt : Format.formatter)
(p : 'm Ast.program)
(type_ordering : Scopelang.Dependency.TVertex.t list) : unit =
2022-07-20 17:51:28 +03:00
Cli.call_unstyled (fun _ ->
Format.fprintf fmt
"(** This file has been generated by the Catala compiler, do not edit! \
*)@\n\
@\n\
open Runtime_ocaml.Runtime@\n\
@\n\
[@@@@@@ocaml.warning \"-4-26-27-32-41-42\"]@\n\
@\n\
%a%a@\n\
@?"
2022-07-20 17:51:28 +03:00
(format_ctx type_ordering) p.decl_ctx (format_scopes p.decl_ctx)
p.scopes)