]> matita.cs.unibo.it Git - helm.git/blob - helm/software/helena/src/common/options.ml
new message reporting system improves performance significatively
[helm.git] / helm / software / helena / src / common / options.ml
1 (*
2     ||M||  This file is part of HELM, an Hypertextual, Electronic        
3     ||A||  Library of Mathematics, developed at the Computer Science     
4     ||T||  Department, University of Bologna, Italy.                     
5     ||I||                                                                
6     ||T||  HELM is free software; you can redistribute it and/or         
7     ||A||  modify it under the terms of the GNU General Public License   
8     \   /  version 2 or (at your option) any later version.              
9      \ /   This software is distributed as is, NO WARRANTY.              
10       V_______________________________________________________________ *)
11
12 module F = Filename
13 module C = Cps
14
15 type uri_generator = string -> string
16
17 type kernel = Crg | Brg | Bag
18
19 (* interface functions ******************************************************)
20
21 let stage = ref 3            (* stage *)
22
23 let trace = ref 0            (* trace level *)
24
25 let summary = ref false      (* log summary information *)
26
27 let xdir = ref ""            (* directory for XML output *)
28
29 let kernel = ref Brg         (* kernel type *)
30
31 let si = ref false           (* use sort inclusion *)
32
33 let cover = ref ""           (* initial uri segment *)
34
35 let cc = ref false           (* activate conversion constraints *)
36
37 let expand = ref false       (* always expand global definitions *)
38
39 let indexes = ref false      (* show de Bruijn indexes *)
40
41 let icm = ref 0              (* complexity measure of relocated terms *)
42
43 let unquote = ref false      (* do not quote identifiers when lexing *)
44
45 let debug_parser = ref false (* output parser debug information *)
46
47 let debug_lexer = ref false  (* output lexer debug information *)
48
49 let kernel_id () = 
50    let id = match !kernel with
51       | Crg -> "crg"
52       | Brg -> "brg"
53       | Bag -> "bag"
54    in
55    let si = if !si then "_si" else "" in
56    id ^ si
57
58 let get_baseuri () =
59    String.concat "/" ["ld:"; kernel_id (); !cover; "" ]
60
61 let get_mk_uri () =
62    let bu = get_baseuri () in
63    fun s -> F.concat bu (s ^ ".ld")
64
65 let clear () =
66    stage := 3; trace := 0; summary := false; 
67    xdir := ""; kernel := Brg; si := false; cover := ""; 
68    expand := false; indexes := false; icm := 0; unquote := false;
69    debug_parser := false; debug_lexer := false