package monolith

  1. Overview
  2. Docs

Source file Debug.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
(******************************************************************************)
(*                                                                            *)
(*                                  Monolith                                  *)
(*                                                                            *)
(*                              François Pottier                              *)
(*                                                                            *)
(*  Copyright Inria. All rights reserved. This file is distributed under the  *)
(*  terms of the GNU Lesser General Public License as published by the Free   *)
(*  Software Foundation, either version 3 of the License, or (at your         *)
(*  option) any later version, as described in the file LICENSE.              *)
(*                                                                            *)
(******************************************************************************)

module[@inline] Make (X : sig
  val debug : bool
end) = struct

  let indentation =
    ref 0

  let[@inline] section k =
    if X.debug then begin
      indentation := !indentation + 2;
      match k() with
      | y ->
          indentation := !indentation - 2;
          y
      | exception e ->
          indentation := !indentation - 2;
          raise e
    end
    else
      k()

  let[@inline] log format =
    if X.debug then begin
      for _ = 1 to !indentation do
        Printf.fprintf stderr " "
      done;
      Printf.fprintf stderr format
    end
    else
      Printf.ifprintf stderr format

end
OCaml

Innovation. Community. Security.