]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/software/lambda-delta/toplevel/top.ml
Support for the new auto tactics //
[helm.git] / helm / software / lambda-delta / toplevel / top.ml
index dff0bbe10864d38ff3ee1b0f2afd554aa2b25b61..515e6590ee03c4113efb02d24a72bb5b4e43c894 100644 (file)
@@ -18,6 +18,7 @@ module H    = Hierarchy
 module O    = Output
 module Y    = Entity
 module X    = Library
+module AL   = AutLexer
 module AP   = AutProcess
 module AO   = AutOutput
 module DA   = CrgAut
@@ -42,17 +43,19 @@ type status = {
    ac  : AO.counters;
    mc  : MO.counters;
    brgc: BrgO.counters;
-   bagc: BagO.counters
+   bagc: BagO.counters;
+   kst : Y.status
 }
 
-let initial_status mk_uri cover = {
+let initial_status mk_uri cover g expand si = {
    ac   = AO.initial_counters;
    mc   = MO.initial_counters;
    brgc = BrgO.initial_counters;
    bagc = BagO.initial_counters;
    mst  = MA.initial_status ~cover ();
-   dst  = DA.initial_status (mk_uri cover);
-   ast  = AP.initial_status
+   dst  = DA.initial_status (mk_uri si cover);
+   ast  = AP.initial_status;
+   kst  = Y.initial_status g expand si
 }
 
 let flush_all () = L.flush 0; L.flush_err ()
@@ -120,12 +123,12 @@ let export_entity si g moch = function
       end
    | BagEntity _  -> ()
 
-let type_check st si g k =
+let type_check st k =
    let brg_err msg = brg_error "Type Error" msg; failwith "Interrupted" in
    let ok _ _ = st in
    match k with
-      | BrgEntity entity -> BrgU.type_check brg_err ok ~si g entity
-      | BagEntity entity -> BagU.type_check ok ~si g entity
+      | BrgEntity entity -> BrgU.type_check brg_err ok st.kst entity
+      | BagEntity entity -> BagU.type_check ok st.kst entity
       | CrgEntity _
       | MetaEntity _     -> st
 
@@ -138,6 +141,7 @@ let progress = ref false
 let preprocess = ref false
 let use_cover = ref true
 let si = ref false
+let expand = ref false
 let cc = ref false
 let export = ref false
 let graph = ref (H.graph_of_string C.err C.start "Z2")
@@ -146,7 +150,7 @@ let old = ref false
 let process_2 st entity =
    let st = if !L.level > 2 then count_entity st entity else st in
    if !export then export_entity !si !graph !moch entity;
-   if !stage > 2 then type_check st !si !graph entity else st
+   if !stage > 2 then type_check st entity else st
            
 let process_1 st entity = 
    if !progress then pp_progress entity;
@@ -178,7 +182,7 @@ let rec process st = function
 
 let main =
 try 
-   let version_string = "Helena 0.8.1 M - October 2009" in
+   let version_string = "Helena 0.8.1 M - January 2010" in
    let set_hierarchy s = 
       let err () = L.warn (P.sprintf "Unknown type hierarchy: %s" s) in
       let f g = graph := g in
@@ -196,6 +200,9 @@ try
       let f och = moch := Some och in
       ML.open_out f name
    in
+   let unquote () =
+      AL.unquote := true
+   in
    let close = function
       | None     -> ()
       | Some och -> ML.close_out C.start och
@@ -220,7 +227,8 @@ try
            | Bag -> Bag.mk_uri
       in
       let cover = if !use_cover then base_name else "" in
-      let st = process (initial_status mk_uri cover) book in
+      let st = initial_status mk_uri cover !graph !expand !si in
+      let st = process st book in
       if !L.level > 0 then T.utime_stamp "processed";
       if !L.level > 2 then begin
          AO.print_counters C.start st.ac;
@@ -236,7 +244,7 @@ try
       flush_all ()
    in
    let help = 
-      "Usage: helena [ -Vcijmopux | -Ss <number> | -hk <string> ] <file> ...\n\n" ^
+      "Usage: helena [ -Vcgijmopqrux | -Ss <number> | -hk <string> ] <file> ...\n\n" ^
       "Summary levels: 0 just errors (default), 1 time stamps, 2 processed file names, \
        3 data information, 4 typing information, 5 reduction information\n\n" ^
        "Stages: 0 parsing, 1 to intermediate, 2 to untrusted, 3 to trusted (default)\n"
@@ -245,6 +253,7 @@ try
    let help_V = " show version information" in   
 
    let help_c = " output conversion constraints" in
+   let help_g = " always expand global definitions" in
    let help_h = "<string>  set type hierarchy (default: Z2)" in
    let help_i = " show local references by index" in
    let help_j = " show URI of processed kernel objects" in
@@ -252,6 +261,7 @@ try
    let help_m = " output intermediate representation (HAL)" in
    let help_o = " use old abstract language instead of crg" in   
    let help_p = " preprocess Automath source" in
+   let help_q = " disable quotation of identifiers" in
    let help_r = " disable initial segment of URI hierarchy" in
    let help_s = "<number>  set translation stage (see above)" in
    let help_u = " activate sort inclusion" in
@@ -263,6 +273,7 @@ try
       ("-S", Arg.Int set_summary, help_S);
       ("-V", Arg.Unit print_version, help_V);
       ("-c", Arg.Set cc, help_c);
+      ("-g", Arg.Set expand, help_g);
       ("-h", Arg.String set_hierarchy, help_h);
       ("-i", Arg.Set O.indexes, help_i);
       ("-j", Arg.Set progress, help_j);      
@@ -270,6 +281,7 @@ try
       ("-m", Arg.Set meta, help_m); 
       ("-o", Arg.Set old, help_o);      
       ("-p", Arg.Set preprocess, help_p);      
+      ("-q", Arg.Unit unquote, help_q);      
       ("-r", Arg.Clear use_cover, help_r);
       ("-s", Arg.Int set_stage, help_s);
       ("-u", Arg.Set si, help_u);