]> matita.cs.unibo.it Git - helm.git/blob - helm/software/helena/src/common/options.ml
bugfix in uri's: missing "/" added to baseuri's where necessary
[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 xdir = ref ""
22
23 let kernel = ref Brg
24
25 let si = ref false           (* use sort inclusion *)
26
27 let cover = ref ""           (* initial uri segment *)
28
29 let cc = ref false           (* activate conversion constraints *)
30
31 let expand = ref false       (* always expand global definitions *)
32
33 let indexes = ref false      (* show de Bruijn indexes *)
34
35 let icm = ref 0              (* complexity measure of relocated terms *)
36
37 let unquote = ref false      (* do not quote identifiers when lexing *)
38
39 let debug_parser = ref false (* output parser debug information *)
40
41 let debug_lexer = ref false  (* output lexer debug information *)
42
43 let kernel_id () = 
44    let id = match !kernel with
45       | Crg -> "crg"
46       | Brg -> "brg"
47       | Bag -> "bag"
48    in
49    let si = if !si then "_si" else "" in
50    id ^ si
51
52 let get_baseuri () =
53    String.concat "/" ["ld:"; kernel_id (); !cover; "" ]
54
55 let get_mk_uri () =
56    let bu = get_baseuri () in
57    fun s -> F.concat bu (s ^ ".ld")
58
59 let clear () =
60    xdir := ""; kernel := Brg; si := false; cover := ""; 
61    expand := false; indexes := false; icm := 0; unquote := false;
62    debug_parser := false; debug_lexer := false