]> matita.cs.unibo.it Git - helm.git/blob - helm/software/helena/src/common/options.ml
additional commit for version 0.8.2
[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 KF = Filename
13
14 module C = Cps
15
16 type uri_generator = string -> string
17
18 type kernel = V4 | V3 | V0
19
20 type manager = Quiet
21              | Matita
22              | Coq
23
24 (* interface functions ******************************************************)
25
26 let version_string = "Helena 0.8.2 M (February 2015)"
27
28 let stage = ref 3            (* stage *)
29
30 let trace = ref 0            (* trace level *)
31
32 let summary = ref false      (* log summary information *)
33
34 let xdir = ref ""            (* directory for XML output *)
35
36 let kernel = ref V3          (* kernel type *)
37
38 let si = ref false           (* use sort inclusion *)
39
40 let cover = ref ""           (* initial uri segment *)
41
42 let cc = ref false           (* activate conversion constraints *)
43
44 let expand = ref false       (* always expand global definitions *)
45
46 let indexes = ref false      (* show de Bruijn indexes *)
47
48 let icm = ref 0              (* complexity measure of relocated terms *)
49
50 let unquote = ref false      (* do not quote identifiers when lexing *)
51
52 let debug_parser = ref false (* output parser debug information *)
53
54 let debug_lexer = ref false  (* output lexer debug information *)
55
56 let manager_dir = ref ""     (* output directory for manager *)
57
58 let manager = ref Quiet      (* manager *)
59
60 let preamble = ref ""        (* preamble file for manager *)
61
62 let alpha = ref ""           (* prefix of numeric identifiers *)
63
64 let kernel_id () = 
65    let id = match !kernel with
66       | V4 -> "Environment"
67       | V3 -> "Environment_V3"
68       | V0 -> "Environment_V0"
69    in
70    let si = if !si then "_si" else "" in
71    id ^ si
72
73 let get_baseuri () =
74    String.concat "/" ["ld:"; kernel_id (); !cover; "" ]
75
76 let get_mk_uri () =
77    let bu = get_baseuri () in
78    fun s -> KF.concat bu (s ^ ".ld")
79
80 let clear () =
81    stage := 3; trace := 0; summary := false; 
82    xdir := ""; kernel := V3; si := false; cover := ""; 
83    expand := false; indexes := false; icm := 0; unquote := false;
84    debug_parser := false; debug_lexer := false;
85    manager_dir := ""; manager := Quiet