2023-06-28 16:57:52 +03:00
|
|
|
(* This file is part of the Catala compiler, a specification language for tax
|
|
|
|
and social benefits computation rules. Copyright (C) 2023 Inria,
|
|
|
|
contributors: Denis Merigoux <denis.merigoux@inria.fr>, Louis Gesbert
|
|
|
|
<louis.gesbert@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. *)
|
|
|
|
|
2023-05-30 16:41:49 +03:00
|
|
|
(** Error formatting and helper functions *)
|
|
|
|
|
2023-05-30 16:51:44 +03:00
|
|
|
(**{1 Terminal formatting}*)
|
|
|
|
|
2023-06-07 19:10:50 +03:00
|
|
|
(* Adds handling of color tags in the formatter *)
|
2023-06-08 13:06:27 +03:00
|
|
|
let color_formatter ppf =
|
2023-06-07 19:10:50 +03:00
|
|
|
Ocolor_format.prettify_formatter ppf;
|
|
|
|
ppf
|
|
|
|
|
|
|
|
(* Sets handling of tags in the formatter to ignore them (don't print any color
|
|
|
|
codes) *)
|
|
|
|
let unstyle_formatter ppf =
|
|
|
|
Format.pp_set_mark_tags ppf false;
|
|
|
|
ppf
|
2023-06-07 19:15:14 +03:00
|
|
|
|
2023-06-07 19:10:50 +03:00
|
|
|
(* SIDE EFFECT AT MODULE LOAD: this turns on handling of tags in
|
|
|
|
[Format.sprintf] etc. functions (ignoring them) *)
|
|
|
|
let () = ignore (unstyle_formatter Format.str_formatter)
|
2023-06-08 13:06:27 +03:00
|
|
|
|
2023-06-07 19:10:50 +03:00
|
|
|
(* Note: we could do the same for std_formatter, err_formatter... but we'd
|
|
|
|
rather promote the use of the formatting functions of this module and the
|
|
|
|
below std_ppf / err_ppf *)
|
|
|
|
|
2023-06-08 13:06:27 +03:00
|
|
|
let has_color oc =
|
2024-03-15 16:23:30 +03:00
|
|
|
match Global.options.color with
|
|
|
|
| Global.Never -> false
|
2023-06-07 19:10:50 +03:00
|
|
|
| Always -> true
|
2023-06-08 13:06:27 +03:00
|
|
|
| Auto -> Unix.(isatty (descr_of_out_channel oc))
|
2023-06-07 19:10:50 +03:00
|
|
|
|
2023-06-08 13:06:27 +03:00
|
|
|
(* Here we create new formatters to stderr/stdout that remain separate from the
|
|
|
|
ones used by [Format.printf] / [Format.eprintf] (which remain unchanged) *)
|
2023-06-07 19:10:50 +03:00
|
|
|
|
2023-06-08 13:06:27 +03:00
|
|
|
let formatter_of_out_channel oc =
|
|
|
|
let ppf = Format.formatter_of_out_channel oc in
|
|
|
|
if has_color oc then color_formatter ppf else unstyle_formatter ppf
|
2023-06-07 19:10:50 +03:00
|
|
|
|
2023-06-08 13:06:27 +03:00
|
|
|
let std_ppf = lazy (formatter_of_out_channel stdout)
|
|
|
|
let err_ppf = lazy (formatter_of_out_channel stderr)
|
2023-06-07 19:10:50 +03:00
|
|
|
let ignore_ppf = lazy (Format.make_formatter (fun _ _ _ -> ()) (fun () -> ()))
|
|
|
|
|
|
|
|
let unformat (f : Format.formatter -> unit) : string =
|
|
|
|
let buf = Buffer.create 1024 in
|
|
|
|
let ppf = unstyle_formatter (Format.formatter_of_buffer buf) in
|
|
|
|
Format.pp_set_margin ppf max_int;
|
|
|
|
(* We won't print newlines anyways, but better not have them in the first
|
|
|
|
place (this wouldn't remove cuts in a vbox for example) *)
|
|
|
|
let out_funs = Format.pp_get_formatter_out_functions ppf () in
|
|
|
|
Format.pp_set_formatter_out_functions ppf
|
|
|
|
{
|
|
|
|
out_funs with
|
|
|
|
Format.out_newline = (fun () -> out_funs.out_string " " 0 1);
|
|
|
|
Format.out_indent = (fun _ -> ());
|
|
|
|
};
|
|
|
|
f ppf;
|
|
|
|
Format.pp_print_flush ppf ();
|
|
|
|
Buffer.contents buf
|
|
|
|
|
|
|
|
(**{2 Message types and output helpers *)
|
2023-05-30 16:51:44 +03:00
|
|
|
|
2024-04-09 14:30:01 +03:00
|
|
|
type level = Error | Warning | Debug | Log | Result
|
2023-06-07 19:10:50 +03:00
|
|
|
|
|
|
|
let get_ppf = function
|
|
|
|
| Result -> Lazy.force std_ppf
|
2024-03-15 16:23:30 +03:00
|
|
|
| Debug when not Global.options.debug -> Lazy.force ignore_ppf
|
|
|
|
| Warning when Global.options.disable_warnings -> Lazy.force ignore_ppf
|
2023-06-07 19:10:50 +03:00
|
|
|
| Error | Log | Debug | Warning -> Lazy.force err_ppf
|
|
|
|
|
|
|
|
(**{3 Markers}*)
|
2023-05-30 16:51:44 +03:00
|
|
|
|
2023-06-07 19:10:50 +03:00
|
|
|
let print_time_marker =
|
|
|
|
let time : float ref = ref (Unix.gettimeofday ()) in
|
|
|
|
fun ppf () ->
|
2023-05-30 16:51:44 +03:00
|
|
|
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
|
2023-06-28 16:57:52 +03:00
|
|
|
Format.fprintf ppf "@{<bold;black>[TIME] %.0fms@}@\n" delta
|
2023-06-07 19:10:50 +03:00
|
|
|
|
2023-06-08 15:36:28 +03:00
|
|
|
let pp_marker target ppf =
|
2023-06-07 19:10:50 +03:00
|
|
|
let open Ocolor_types in
|
|
|
|
let tags, str =
|
|
|
|
match target with
|
|
|
|
| Debug -> [Bold; Fg (C4 magenta)], "[DEBUG]"
|
|
|
|
| Error -> [Bold; Fg (C4 red)], "[ERROR]"
|
|
|
|
| Warning -> [Bold; Fg (C4 yellow)], "[WARNING]"
|
|
|
|
| Result -> [Bold; Fg (C4 green)], "[RESULT]"
|
|
|
|
| Log -> [Bold; Fg (C4 black)], "[LOG]"
|
|
|
|
in
|
|
|
|
if target = Debug then print_time_marker ppf ();
|
|
|
|
Format.pp_open_stag ppf (Ocolor_format.Ocolor_styles_tag tags);
|
|
|
|
Format.pp_print_string ppf str;
|
|
|
|
Format.pp_close_stag ppf ()
|
2023-05-30 16:51:44 +03:00
|
|
|
|
|
|
|
(**{2 Printers}*)
|
|
|
|
|
2023-05-30 16:41:49 +03:00
|
|
|
(** {1 Message content} *)
|
|
|
|
|
2023-05-30 17:22:05 +03:00
|
|
|
module Content = struct
|
2023-06-07 19:10:50 +03:00
|
|
|
type message = Format.formatter -> unit
|
|
|
|
type position = { pos_message : message option; pos : Pos.t }
|
2023-05-30 17:22:05 +03:00
|
|
|
|
2023-06-19 18:08:16 +03:00
|
|
|
type message_element =
|
|
|
|
| MainMessage of message
|
|
|
|
| Position of position
|
2023-07-09 18:58:07 +03:00
|
|
|
| Suggestion of string list
|
2024-04-09 14:30:01 +03:00
|
|
|
| Outcome of message
|
2023-06-19 14:59:56 +03:00
|
|
|
|
2023-06-19 18:08:16 +03:00
|
|
|
type t = message_element list
|
2023-06-07 19:15:14 +03:00
|
|
|
|
2023-06-19 18:08:16 +03:00
|
|
|
let of_message (message : message) : t = [MainMessage message]
|
2024-04-09 14:30:01 +03:00
|
|
|
let of_result (message : message) : t = [Outcome message]
|
2023-06-19 18:08:16 +03:00
|
|
|
let prepend_message (content : t) prefix : t = MainMessage prefix :: content
|
2023-06-13 21:10:42 +03:00
|
|
|
|
2023-06-19 18:08:16 +03:00
|
|
|
let to_internal_error (content : t) : t =
|
|
|
|
let internal_error_prefix ppf =
|
|
|
|
Format.pp_print_string ppf
|
|
|
|
"Internal Error, please report to \
|
|
|
|
https://github.com/CatalaLang/catala/issues."
|
|
|
|
in
|
|
|
|
prepend_message content internal_error_prefix
|
2023-06-13 21:10:42 +03:00
|
|
|
|
2023-07-09 18:58:07 +03:00
|
|
|
let add_suggestion (content : t) (suggestion : string list) =
|
2023-06-19 18:08:16 +03:00
|
|
|
content @ [Suggestion suggestion]
|
2023-06-13 21:10:42 +03:00
|
|
|
|
2024-01-17 18:03:20 +03:00
|
|
|
let add_position
|
|
|
|
(content : t)
|
2024-04-09 14:30:01 +03:00
|
|
|
?(message : message option)
|
2024-01-17 18:03:20 +03:00
|
|
|
(position : Pos.t) =
|
|
|
|
content @ [Position { pos = position; pos_message = message }]
|
|
|
|
|
2023-06-19 18:08:16 +03:00
|
|
|
let of_string (s : string) : t =
|
2024-04-09 14:30:01 +03:00
|
|
|
[MainMessage (fun ppf -> Format.pp_print_text ppf s)]
|
2023-06-19 18:08:16 +03:00
|
|
|
|
2024-04-09 14:30:01 +03:00
|
|
|
let emit (content : t) (target : level) : unit =
|
2024-03-15 16:23:30 +03:00
|
|
|
match Global.options.message_format with
|
|
|
|
| Global.Human ->
|
2023-06-19 18:08:16 +03:00
|
|
|
let ppf = get_ppf target in
|
|
|
|
Format.fprintf ppf "@[<hv>%t%t%a@]@." (pp_marker target)
|
|
|
|
(fun (ppf : Format.formatter) ->
|
|
|
|
match content, target with
|
|
|
|
| MainMessage _ :: _, (Result | Error) -> Format.pp_print_space ppf ()
|
|
|
|
| _ -> Format.pp_print_char ppf ' ')
|
|
|
|
(fun (ppf : Format.formatter) (message_elements : t) ->
|
|
|
|
Format.pp_print_list
|
2023-07-12 14:57:58 +03:00
|
|
|
~pp_sep:(fun ppf () -> Format.fprintf ppf "@,@,")
|
2023-06-19 18:08:16 +03:00
|
|
|
(fun ppf (elt : message_element) ->
|
|
|
|
match elt with
|
|
|
|
| Position pos ->
|
|
|
|
Option.iter
|
2023-07-06 13:44:44 +03:00
|
|
|
(fun msg -> Format.fprintf ppf "%t@," msg)
|
2023-06-19 18:08:16 +03:00
|
|
|
pos.pos_message;
|
|
|
|
Pos.format_loc_text ppf pos.pos
|
|
|
|
| MainMessage msg -> msg ppf
|
2024-04-09 14:30:01 +03:00
|
|
|
| Outcome msg -> msg ppf
|
2023-07-09 18:58:07 +03:00
|
|
|
| Suggestion suggestions_list ->
|
2023-07-12 17:32:55 +03:00
|
|
|
Suggestions.format ppf suggestions_list)
|
2023-06-19 18:08:16 +03:00
|
|
|
ppf message_elements)
|
|
|
|
content
|
2024-03-15 16:23:30 +03:00
|
|
|
| Global.GNU ->
|
2023-07-12 14:57:58 +03:00
|
|
|
(* The top message doesn't come with a position, which is not something
|
|
|
|
the GNU standard allows. So we look the position list and put the top
|
|
|
|
message everywhere there is not a more precise message. If we can't
|
|
|
|
find a position without a more precise message, we just take the first
|
|
|
|
position in the list to pair with the message. *)
|
|
|
|
let ppf = get_ppf target in
|
|
|
|
Format.pp_print_list ~pp_sep:Format.pp_print_newline
|
|
|
|
(fun ppf elt ->
|
2023-07-12 17:32:55 +03:00
|
|
|
let pos, message =
|
|
|
|
match elt with
|
|
|
|
| MainMessage m ->
|
|
|
|
let pos =
|
|
|
|
List.find_map
|
|
|
|
(function
|
|
|
|
| Position { pos_message = None; pos } -> Some pos
|
|
|
|
| _ -> None)
|
|
|
|
content
|
|
|
|
|> function
|
|
|
|
| None ->
|
|
|
|
List.find_map
|
|
|
|
(function
|
|
|
|
| Position { pos_message = _; pos } -> Some pos
|
|
|
|
| _ -> None)
|
|
|
|
content
|
|
|
|
| some -> some
|
|
|
|
in
|
|
|
|
pos, m
|
|
|
|
| Position { pos_message; pos } ->
|
|
|
|
let message =
|
|
|
|
match pos_message with Some m -> m | None -> fun _ -> ()
|
|
|
|
in
|
|
|
|
Some pos, message
|
2024-04-09 14:30:01 +03:00
|
|
|
| Outcome m -> None, m
|
2023-07-12 17:32:55 +03:00
|
|
|
| Suggestion sl -> None, fun ppf -> Suggestions.format ppf sl
|
|
|
|
in
|
|
|
|
Option.iter
|
|
|
|
(fun pos ->
|
|
|
|
Format.fprintf ppf "@{<blue>%s@}: " (Pos.to_string_short pos))
|
|
|
|
pos;
|
|
|
|
pp_marker target ppf;
|
|
|
|
Format.pp_print_char ppf ' ';
|
|
|
|
Format.pp_print_string ppf (unformat message))
|
2023-07-12 14:57:58 +03:00
|
|
|
ppf content;
|
|
|
|
Format.pp_print_newline ppf ()
|
2023-05-30 17:22:05 +03:00
|
|
|
end
|
2023-05-30 16:41:49 +03:00
|
|
|
|
2023-06-07 19:10:50 +03:00
|
|
|
open Content
|
|
|
|
|
2023-05-30 16:41:49 +03:00
|
|
|
(** {1 Error exception} *)
|
|
|
|
|
2023-05-30 17:22:05 +03:00
|
|
|
exception CompilerError of Content.t
|
2023-05-30 16:41:49 +03:00
|
|
|
|
|
|
|
(** {1 Error printing} *)
|
|
|
|
|
2023-06-07 19:10:50 +03:00
|
|
|
let raise_spanned_error
|
|
|
|
?(span_msg : Content.message option)
|
2023-07-12 17:32:55 +03:00
|
|
|
?(suggestion = ([] : string list))
|
2023-06-07 19:10:50 +03:00
|
|
|
(span : Pos.t)
|
|
|
|
format =
|
2023-06-26 17:30:08 +03:00
|
|
|
let continuation (message : Format.formatter -> unit) =
|
|
|
|
raise
|
|
|
|
(CompilerError
|
|
|
|
([MainMessage message; Position { pos_message = span_msg; pos = span }]
|
2023-07-12 17:32:55 +03:00
|
|
|
@ match suggestion with [] -> [] | sugg -> [Suggestion sugg]))
|
2023-06-26 17:30:08 +03:00
|
|
|
in
|
|
|
|
Format.kdprintf continuation format
|
2023-05-30 16:41:49 +03:00
|
|
|
|
2023-06-07 19:10:50 +03:00
|
|
|
let raise_multispanned_error_full
|
2023-07-12 17:32:55 +03:00
|
|
|
?(suggestion = ([] : string list))
|
2023-06-07 19:10:50 +03:00
|
|
|
(spans : (Content.message option * Pos.t) list)
|
|
|
|
format =
|
|
|
|
Format.kdprintf
|
|
|
|
(fun message ->
|
2023-05-30 16:41:49 +03:00
|
|
|
raise
|
|
|
|
(CompilerError
|
2023-06-19 18:08:16 +03:00
|
|
|
(MainMessage message
|
2023-07-06 13:44:44 +03:00
|
|
|
:: List.map
|
|
|
|
(fun (pos_message, pos) -> Position { pos_message; pos })
|
|
|
|
spans
|
2023-07-12 17:32:55 +03:00
|
|
|
@ match suggestion with [] -> [] | sugg -> [Suggestion sugg])))
|
2023-05-30 16:41:49 +03:00
|
|
|
format
|
|
|
|
|
2023-07-06 13:44:44 +03:00
|
|
|
let raise_multispanned_error
|
2023-07-12 17:32:55 +03:00
|
|
|
?(suggestion = ([] : string list))
|
2023-07-06 13:44:44 +03:00
|
|
|
(spans : (string option * Pos.t) list)
|
|
|
|
format =
|
2023-07-12 17:32:55 +03:00
|
|
|
raise_multispanned_error_full ~suggestion
|
2023-06-07 19:10:50 +03:00
|
|
|
(List.map
|
|
|
|
(fun (msg, pos) ->
|
|
|
|
Option.map (fun s ppf -> Format.pp_print_string ppf s) msg, pos)
|
|
|
|
spans)
|
|
|
|
format
|
|
|
|
|
2023-05-30 16:41:49 +03:00
|
|
|
let raise_error format =
|
2023-06-07 19:10:50 +03:00
|
|
|
Format.kdprintf
|
2023-06-19 18:08:16 +03:00
|
|
|
(fun message -> raise (CompilerError [MainMessage message]))
|
2023-05-30 16:41:49 +03:00
|
|
|
format
|
|
|
|
|
|
|
|
let raise_internal_error format =
|
2023-06-19 18:08:16 +03:00
|
|
|
Format.kdprintf
|
|
|
|
(fun message ->
|
|
|
|
raise (CompilerError (Content.to_internal_error [MainMessage message])))
|
|
|
|
format
|
2023-05-30 16:41:49 +03:00
|
|
|
|
|
|
|
(** {1 Warning printing}*)
|
|
|
|
|
|
|
|
let assert_internal_error condition fmt =
|
|
|
|
if condition then raise_internal_error ("assertion failed: " ^^ fmt)
|
|
|
|
else Format.ifprintf (Format.formatter_of_out_channel stdout) fmt
|
|
|
|
|
2023-06-07 19:10:50 +03:00
|
|
|
let emit_multispanned_warning
|
|
|
|
(pos : (Content.message option * Pos.t) list)
|
|
|
|
format =
|
|
|
|
Format.kdprintf
|
|
|
|
(fun message ->
|
2023-06-19 18:08:16 +03:00
|
|
|
Content.emit
|
|
|
|
(MainMessage message
|
|
|
|
:: List.map
|
|
|
|
(fun (pos_message, pos) -> Position { pos_message; pos })
|
|
|
|
pos)
|
2023-05-30 16:41:49 +03:00
|
|
|
Warning)
|
|
|
|
format
|
|
|
|
|
2023-06-07 19:10:50 +03:00
|
|
|
let emit_spanned_warning
|
|
|
|
?(span_msg : Content.message option)
|
|
|
|
(span : Pos.t)
|
|
|
|
format =
|
2023-05-30 16:41:49 +03:00
|
|
|
emit_multispanned_warning [span_msg, span] format
|
|
|
|
|
|
|
|
let emit_warning format = emit_multispanned_warning [] format
|
2023-05-30 17:08:25 +03:00
|
|
|
|
|
|
|
let emit_log format =
|
2023-06-19 18:08:16 +03:00
|
|
|
Format.kdprintf (fun message -> Content.emit [MainMessage message] Log) format
|
2023-05-30 17:08:25 +03:00
|
|
|
|
|
|
|
let emit_debug format =
|
2023-06-07 19:10:50 +03:00
|
|
|
Format.kdprintf
|
2023-06-19 18:08:16 +03:00
|
|
|
(fun message -> Content.emit [MainMessage message] Debug)
|
2023-05-30 17:08:25 +03:00
|
|
|
format
|
|
|
|
|
|
|
|
let emit_result format =
|
2023-06-07 19:10:50 +03:00
|
|
|
Format.kdprintf
|
2023-06-19 18:08:16 +03:00
|
|
|
(fun message -> Content.emit [MainMessage message] Result)
|
2023-05-30 17:08:25 +03:00
|
|
|
format
|
2024-04-09 14:30:01 +03:00
|
|
|
|
|
|
|
|
|
|
|
(** New concise interface *)
|
|
|
|
|
|
|
|
type ('a, 'b) emitter =
|
|
|
|
?header:Content.message ->
|
|
|
|
?internal:bool ->
|
|
|
|
?pos:Pos.t ->
|
|
|
|
?pos_msg:Content.message ->
|
|
|
|
?extra_pos:(string option * Pos.t) list ->
|
|
|
|
?fmt_pos:(Content.message option * Pos.t) list ->
|
|
|
|
?suggestion:string list ->
|
|
|
|
('a, Format.formatter, unit, 'b) format4 ->
|
|
|
|
'a
|
|
|
|
|
|
|
|
let make ?header ?(internal=false) ?pos ?pos_msg ?extra_pos ?fmt_pos ?suggestion ~cont ~level =
|
|
|
|
Format.kdprintf @@ fun message ->
|
|
|
|
let t = match level with Result -> of_result message | _ -> of_message message in
|
|
|
|
let t = match header with Some h -> prepend_message t h | None -> t in
|
|
|
|
let t = if internal then to_internal_error t else t in
|
|
|
|
let t = match pos with Some p -> add_position t ?message:pos_msg p | None -> t in
|
|
|
|
let t = match extra_pos with
|
|
|
|
| Some pl ->
|
|
|
|
List.fold_left (fun t (message, p) ->
|
|
|
|
let message = Option.map (fun m ppf -> Format.pp_print_text ppf m) message in
|
|
|
|
add_position t ?message p)
|
|
|
|
t
|
|
|
|
pl
|
|
|
|
| None -> t
|
|
|
|
in
|
|
|
|
let t = match fmt_pos with
|
|
|
|
| Some pl ->
|
|
|
|
List.fold_left (fun t (message, p) -> add_position t ?message p) t pl
|
|
|
|
| None -> t
|
|
|
|
in
|
|
|
|
let t = match suggestion with Some s -> add_suggestion t s | None -> t in
|
|
|
|
cont t level
|
|
|
|
|
|
|
|
let debug = make ~level:Debug ~cont:emit
|
|
|
|
let log = make ~level:Log ~cont:emit
|
|
|
|
let result = make ~level:Result ~cont:emit
|
|
|
|
let warning = make ~level:Warning ~cont:emit
|
|
|
|
let error = make ~level:Error ~cont:(fun m _ -> raise (CompilerError m))
|
|
|
|
|