]> matita.cs.unibo.it Git - helm.git/blob - helm/software/lambda-delta/toplevel/top.ml
869b1386ac2115dbc9c9df10a5b2dde4fd3a415b
[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.old_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.1 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 cc = ref false in
119    let export = ref false in
120    let graph = ref (H.graph_of_string C.err C.start "Z2") in
121    let set_hierarchy s = 
122       let err () = L.warn (P.sprintf "Unknown type hierarchy: %s" s) in
123       let f g = graph := g in
124       H.graph_of_string err f s
125    in
126    let set_kernel = function
127       | "brg" -> kernel := Brg
128       | "bag" -> kernel := Bag
129       | s     -> L.warn (P.sprintf "Unknown kernel version: %s" s)
130    in
131    let set_summary i = L.level := i in
132    let print_version () = L.warn (version_string ^ "\n"); exit 0 in
133    let set_stage i = stage := i in
134    let set_meta_file name =
135       let f och = moch := Some och in
136       ML.open_out f name
137    in
138    let close = function
139       | None     -> ()
140       | Some och -> ML.close_out C.start och
141    in
142    let read_file name =
143       if !L.level > 0 then T.gmtime version_string;      
144       if !L.level > 1 then
145          L.warn (P.sprintf "Processing file: %s" name);
146       if !L.level > 0 then T.utime_stamp "started";
147       let base_name = Filename.chop_extension (Filename.basename name) in
148       if !meta then set_meta_file base_name;
149       let ich = open_in name in
150       let lexbuf = Lexing.from_channel ich in
151       let book = AutParser.book AutLexer.token lexbuf in
152       close_in ich;
153       if !L.level > 0 then T.utime_stamp "parsed";
154       let rec aux st = function
155          | []         -> st
156          | entity :: tl ->
157 (* stage 3 *)
158             let f st = function
159                | None        -> st
160                | Some (i, u) -> 
161                   if !progress then 
162                      L.warn (P.sprintf "[%u] %s" i (U.string_of_uri u)); 
163                   st
164             in
165 (* stage 2 *)       
166             let f st entity =
167                let st = count_entity st entity in
168                if !export then export_entity !si !graph entity;
169                if !stage > 2 then type_check f st !si !graph entity else st
170             in
171 (* stage 1 *)       
172             let f st mst entity = 
173                let st = {st with
174                   mst = mst; mc = count MO.count_entity st.mc entity
175                } in
176                begin match !moch with
177                   | None     -> ()
178                   | Some och -> ML.write_entity C.start och entity
179                end;
180                if !stage > 1 then kernel_of_meta f st entity else st 
181             in  
182 (* stage 0 *)       
183             let st = {st with ac = count AO.count_entity st.ac entity} in
184             let f st entity =
185                let st = 
186                   if !stage > 0 then MA.meta_of_aut (f st) st.mst entity else st
187                in
188                aux st tl
189             in
190             if !process then process_entity f st entity else f st entity
191       in
192       O.clear_reductions ();
193       let cover = if !use_cover then base_name else "" in
194       let st = aux (initial_status cover) book in
195       if !L.level > 0 then T.utime_stamp "processed";
196       if !L.level > 2 then AO.print_counters C.start st.ac;
197       if !L.level > 2 && !process then AO.print_process_counters C.start st.ast;
198       if !L.level > 2 && !stage > 0 then MO.print_counters C.start st.mc;
199       if !L.level > 2 && !stage > 1 then print_counters st;
200       if !L.level > 2 && !stage > 1 then O.print_reductions ()
201    in
202    let exit () =
203       close !moch;
204       if !L.level > 0 then T.utime_stamp "at exit";
205       flush ()
206    in
207    let help = 
208       "Usage: helena [ -Vcijmpux | -Ss <number> | -hk <string> ] <file> ...\n\n" ^
209       "Summary levels: 0 just errors (default), 1 time stamps, 2 processed file names, \
210        3 data information, 4 typing information, 5 reduction information\n\n" ^
211        "Stages: 0 parsing, 1 to intermediate, 2 to untrusted, 3 to trusted (default)\n"
212    in
213    let help_S = "<number>  set summary level (see above)" in
214    let help_V = " show version information" in   
215
216    let help_c = " output conversion constraints" in
217    let help_h = "<string>  set type hierarchy (default: Z2)" in
218    let help_i = " show local references by index" in
219    let help_j = " show URI of processed kernel objects" in
220    let help_k = "<string>  set kernel version (default: brg)" in
221    let help_m = " output intermediate representation (HAL)" in
222    let help_p = " preprocess Automath source" in
223    let help_r = " disable initial segment of URI hierarchy" in
224    let help_s = "<number>  set translation stage (see above)" in
225    let help_u = " activate sort inclusion" in
226    let help_x = " export kernel objects (XML)" in
227    L.box 0; L.box_err ();
228    H.set_sorts ignore ["Set"; "Prop"] 0;
229    at_exit exit;
230    Arg.parse [
231       ("-S", Arg.Int set_summary, help_S);
232       ("-V", Arg.Unit print_version, help_V);
233       ("-c", Arg.Set cc, help_c);
234       ("-h", Arg.String set_hierarchy, help_h);
235       ("-i", Arg.Set O.indexes, help_i);
236       ("-j", Arg.Set progress, help_j);      
237       ("-k", Arg.String set_kernel, help_k);
238       ("-m", Arg.Set meta, help_m); 
239       ("-p", Arg.Set process, help_p);      
240       ("-r", Arg.Clear use_cover, help_r);
241       ("-s", Arg.Int set_stage, help_s);
242       ("-u", Arg.Set si, help_u);
243       ("-x", Arg.Set export, help_x)
244    ] read_file help;
245 with BagT.TypeError msg -> bag_error "Type Error" msg