]> matita.cs.unibo.it Git - helm.git/blob - helm/software/lambda-delta/toplevel/top.ml
some renaming. final commit for version 0.8.0
[helm.git] / helm / software / lambda-delta / toplevel / top.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 P    = Printf
13 module U    = NUri
14 module C    = Cps
15 module L    = Log
16 module T    = Time
17 module H    = Hierarchy
18 module O    = Output
19 module AP   = AutProcess
20 module AO   = AutOutput
21 module MA   = MetaAut
22 module MO   = MetaOutput
23 module ML   = MetaLibrary
24 module MBrg = MetaBrg
25 module G    = Library
26 module BrgO = BrgOutput
27 module BrgR = BrgReduction
28 module BrgU = BrgUntrusted
29 module MBag = MetaBag
30 module BagO = BagOutput
31 module BagT = BagType
32 module BagU = BagUntrusted
33
34 type status = {
35    ast : AP.status;
36    mst : MA.status;
37    ac  : AO.counters;
38    mc  : MO.counters;
39    brgc: BrgO.counters;
40    bagc: BagO.counters
41 }
42
43 let initial_status cover = {
44    ac   = AO.initial_counters;
45    mc   = MO.initial_counters;
46    brgc = BrgO.initial_counters;
47    bagc = BagO.initial_counters;
48    mst  = MA.initial_status ~cover ();
49    ast  = AP.initial_status
50 }
51
52 let count count_fun c entity =
53    if !L.level > 2 then count_fun C.start c entity else c
54
55 let flush () = L.flush 0; L.flush_err ()
56
57 let bag_error s msg =
58    L.error BagO.specs (L.Warn s :: L.Loc :: msg); flush () 
59
60 let brg_error s msg =
61    L.error BrgR.specs (L.Warn s :: L.Loc :: msg); flush () 
62
63 let process_entity f st =
64    let f ast = f {st with ast = ast} in
65    AP.process_entity f st.ast
66
67 (* kernel related ***********************************************************)
68
69 type kernel = Brg | Bag
70
71 type kernel_entity = BrgEntity of Brg.entity
72                    | BagEntity of Bag.entity
73
74 let kernel = ref Brg
75
76 let print_counters st = match !kernel with
77    | Brg -> BrgO.print_counters C.start st.brgc
78    | Bag -> BagO.print_counters C.start st.bagc
79
80 let kernel_of_meta f st entity = match !kernel with
81    | Brg -> 
82       let f entity = f st (BrgEntity entity) in
83       MBrg.brg_of_meta f entity
84    | Bag -> 
85       let f entity = f st (BagEntity entity) in
86       MBag.bag_of_meta f entity  
87
88 let count_entity st = function
89    | BrgEntity entity -> {st with brgc = count BrgO.count_entity st.brgc entity}
90    | BagEntity entity -> {st with bagc = count BagO.count_entity st.bagc entity}
91
92 let export_entity si g = function
93    | BrgEntity entity -> G.export_entity BrgO.export_entry si g entity
94    | BagEntity _    -> ()
95
96 let type_check f st si g k =
97    let brg_err msg = brg_error "Type Error" msg; failwith "Interrupted" in
98    let f _ = function
99       | None           -> f st None 
100       | Some (i, u, _) -> f st (Some (i, u))
101    in
102    match k with
103       | BrgEntity entity -> BrgU.type_check brg_err f ~si g entity
104       | BagEntity entity -> BagU.type_check f ~si g entity
105
106 (****************************************************************************)
107
108 let main =
109 try 
110    let version_string = "Helena 0.8.0 M - September 2009" in
111    let stage = ref 3 in
112    let moch = ref None in
113    let meta = ref false in
114    let progress = ref false in
115    let process = ref false in
116    let use_cover = ref true in
117    let si = ref false in
118    let export = ref false in
119    let graph = ref (H.graph_of_string C.err C.start "Z2") in
120    let set_hierarchy s = 
121       let err () = L.warn (P.sprintf "Unknown type hierarchy: %s" s) in
122       let f g = graph := g in
123       H.graph_of_string err f s
124    in
125    let set_kernel = function
126       | "brg" -> kernel := Brg
127       | "bag" -> kernel := Bag
128       | s     -> L.warn (P.sprintf "Unknown kernel version: %s" s)
129    in
130    let set_summary i = L.level := i in
131    let print_version () = L.warn (version_string ^ "\n"); exit 0 in
132    let set_stage i = stage := i in
133    let set_meta_file name =
134       let f och = moch := Some och in
135       ML.open_out f name
136    in
137    let close = function
138       | None     -> ()
139       | Some och -> ML.close_out C.start och
140    in
141    let read_file name =
142       if !L.level > 0 then T.gmtime version_string;      
143       if !L.level > 1 then
144          L.warn (P.sprintf "Processing file: %s" name);
145       if !L.level > 0 then T.utime_stamp "started";
146       let base_name = Filename.chop_extension (Filename.basename name) in
147       if !meta then set_meta_file base_name;
148       let ich = open_in name in
149       let lexbuf = Lexing.from_channel ich in
150       let book = AutParser.book AutLexer.token lexbuf in
151       close_in ich;
152       if !L.level > 0 then T.utime_stamp "parsed";
153       let rec aux st = function
154          | []         -> st
155          | entity :: tl ->
156 (* stage 3 *)
157             let f st = function
158                | None        -> st
159                | Some (i, u) -> 
160                   if !progress then 
161                      L.warn (P.sprintf "[%u] %s" i (U.string_of_uri u)); 
162                   st
163             in
164 (* stage 2 *)       
165             let f st entity =
166                let st = count_entity st entity in
167                if !export then export_entity !si !graph entity;
168                if !stage > 2 then type_check f st !si !graph entity else st
169             in
170 (* stage 1 *)       
171             let f st mst entity = 
172                let st = {st with
173                   mst = mst; mc = count MO.count_entity st.mc entity
174                } in
175                begin match !moch with
176                   | None     -> ()
177                   | Some och -> ML.write_entity C.start och entity
178                end;
179                if !stage > 1 then kernel_of_meta f st entity else st 
180             in  
181 (* stage 0 *)       
182             let st = {st with ac = count AO.count_entity st.ac entity} in
183             let f st entity =
184                let st = 
185                   if !stage > 0 then MA.meta_of_aut (f st) st.mst entity else st
186                in
187                aux st tl
188             in
189             if !process then process_entity f st entity else f st entity
190       in
191       O.clear_reductions ();
192       let cover = if !use_cover then base_name else "" in
193       let st = aux (initial_status cover) book in
194       if !L.level > 0 then T.utime_stamp "processed";
195       if !L.level > 2 then AO.print_counters C.start st.ac;
196       if !L.level > 2 && !process then AO.print_process_counters C.start st.ast;
197       if !L.level > 2 && !stage > 0 then MO.print_counters C.start st.mc;
198       if !L.level > 2 && !stage > 1 then print_counters st;
199       if !L.level > 2 && !stage > 1 then O.print_reductions ()
200    in
201    let exit () =
202       close !moch;
203       if !L.level > 0 then T.utime_stamp "at exit";
204       flush ()
205    in
206    let help = 
207       "Usage: helena [ -Vcijmpux | -Ss <number> | -hk <string> ] <file> ...\n\n" ^
208       "Summary levels: 0 just errors (default), 1 time stamps, 2 processed file names, \
209        3 data information, 4 typing information, 5 reduction information\n\n" ^
210        "Stages: 0 parsing, 1 to intermediate, 2 to untrusted, 3 to trusted (default)\n"
211    in
212    let help_S = "<number>  set summary level (see above)" in
213    let help_V = " show version information" in   
214
215    let help_c = " disable initial segment of URI hierarchy" in
216    let help_h = "<string>  set type hierarchy (default: Z2)" in
217    let help_i = " show local references by index" in
218    let help_j = " show URI of processed kernel objects" in
219    let help_k = "<string>  set kernel version (default: brg)" in
220    let help_m = " output intermediate representation (HAL)" in
221    let help_p = " preprocess Automath source" in
222    let help_u = " activate sort inclusion" in
223    let help_s = "<number>  set translation stage (see above)" in
224    let help_x = " export kernel objects (XML)" in
225    L.box 0; L.box_err ();
226    H.set_sorts ignore ["Set"; "Prop"] 0;
227    at_exit exit;
228    Arg.parse [
229       ("-S", Arg.Int set_summary, help_S);
230       ("-V", Arg.Unit print_version, help_V);
231       ("-c", Arg.Clear use_cover, help_c);
232       ("-h", Arg.String set_hierarchy, help_h);
233       ("-i", Arg.Set O.indexes, help_i);
234       ("-j", Arg.Set progress, help_j);      
235       ("-k", Arg.String set_kernel, help_k);
236       ("-m", Arg.Set meta, help_m); 
237       ("-p", Arg.Set process, help_p);      
238       ("-u", Arg.Set si, help_u);
239       ("-s", Arg.Int set_stage, help_s);
240       ("-x", Arg.Set export, help_x)
241    ] read_file help;
242 with BagT.TypeError msg -> bag_error "Type Error" msg