]> matita.cs.unibo.it Git - helm.git/commitdiff
matitacLib: bugfix in .moo generation
authorFerruccio Guidi <ferruccio.guidi@unibo.it>
Mon, 27 Apr 2009 15:51:31 +0000 (15:51 +0000)
committerFerruccio Guidi <ferruccio.guidi@unibo.it>
Mon, 27 Apr 2009 15:51:31 +0000 (15:51 +0000)
applyTransformation.ml: highlevel prettyprinter disabled when reconstructing inductive types (was re-enabled by mistake)
procedural/Makefile.common: bugfix in entry names
matitaEngine: unused callback removed
lexiconAstPp: output bugfix

The first reconstructed .ma's form library now compile :)))))))

helm/software/components/lexicon/lexiconAstPp.ml
helm/software/matita/applyTransformation.ml
helm/software/matita/contribs/procedural/Makefile.common
helm/software/matita/matitaEngine.ml
helm/software/matita/matitaEngine.mli
helm/software/matita/matitacLib.ml

index 02383f4b8283b9ba96da1c4c467349a7a5d65c48..c11e4f0945440a1d3ee83d5b70ca26125d0c799c 100644 (file)
@@ -58,7 +58,7 @@ let pp_argument_pattern = function
       sprintf "%s%s" (Buffer.contents eta_buf) name
 
 let pp_interpretation dsc symbol arg_patterns cic_appl_pattern = 
-  sprintf "interpretation \"%s\" '%s %s = %s"
+  sprintf "interpretation \"%s\" '%s %s = %s."
     dsc symbol
     (String.concat " " (List.map pp_argument_pattern arg_patterns))
     (CicNotationPp.pp_cic_appl_pattern cic_appl_pattern)
@@ -69,7 +69,7 @@ let pp_dir_opt = function
   | Some `RightToLeft -> "< "
 
 let pp_notation dir_opt l1_pattern assoc prec l2_pattern = 
-  sprintf "notation %s\"%s\" %s %s for %s"
+  sprintf "notation %s\"%s\" %s %s for %s."
     (pp_dir_opt dir_opt)
     (pp_l1_pattern l1_pattern)
     (pp_associativity assoc)
@@ -79,12 +79,11 @@ let pp_notation dir_opt l1_pattern assoc prec l2_pattern =
 let pp_command = function
   | Include (_,_,mode,path) -> (* not precise, since path is absolute *)
       if mode = WithPreferences then
-        "include \"" ^ path ^ "\".\n"
+        "include \"" ^ path ^ "\"."
       else
-        "include' \"" ^ path ^ "\".\n"
+        "include' \"" ^ path ^ "\"."
   | Alias (_,s) -> pp_alias s
   | Interpretation (_, dsc, (symbol, arg_patterns), cic_appl_pattern) ->
       pp_interpretation dsc symbol arg_patterns cic_appl_pattern
   | Notation (_, dir_opt, l1_pattern, assoc, prec, l2_pattern) ->
       pp_notation dir_opt l1_pattern assoc prec l2_pattern
-
index 2309d8fb04f310690d933145bce503fca8ad03e1..5ae773c49de1b72df40b60294b1137e7b55f4543 100644 (file)
@@ -177,13 +177,13 @@ let term2pres ~map_unicode_to_tex n ids_to_inner_sorts annterm =
    let s = BoxPp.render_to_string ~map_unicode_to_tex render n mpres in
    remove_closed_substs s
 
-let enable_notations x = () (* function
+let enable_notations = function
    | true -> 
       CicNotation.set_active_notations
          (List.map fst (CicNotation.get_all_notations ()))
    | false ->
       CicNotation.set_active_notations []
-*)
+
 let txt_of_cic_object 
  ~map_unicode_to_tex ?skip_thm_and_qed ?skip_initial_lambdas
  n style ?flavour prefix obj 
index 9d322ddc04cc693af32806e5f9796446380bd16e..92225d77d00f07406c59c65995592e45d5d80e4b 100644 (file)
@@ -18,15 +18,18 @@ $(DIR).opt opt all.opt:
        $(H)$(RM) $(LOG)
        $(H)$(BIN)matitac.opt $(MATITAOPTIONS) 2>> $(LOG)
 
-%.ma %.mma
+%.ma: 
        $(H)$(RM) $(LOG)
-       $(H)$(BIN)matitac $(MATITAOPTIONS) $@ 2>> $(LOG)
-%.ma.opt
+       $(H)$(BIN)matitac $(MATITAOPTIONS) $*.mma 2>> $(LOG)
+%.mo
        $(H)$(RM) $(LOG)
-       $(H)$(BIN)matitac.opt $(MATITAOPTIONS) $*.ma 2>> $(LOG)
-%.mma.opt: 
+       $(H)$(BIN)matitac $(MATITAOPTIONS) $*.ma 2>> $(LOG)
+%.ma.opt: 
        $(H)$(RM) $(LOG)
        $(H)$(BIN)matitac.opt $(MATITAOPTIONS) $*.mma 2>> $(LOG)
+%.mo.opt: 
+       $(H)$(RM) $(LOG)
+       $(H)$(BIN)matitac.opt $(MATITAOPTIONS) $*.ma 2>> $(LOG)
 
 clean:
        $(H)$(BIN)matitaclean $(MATITAOPTIONS)
index 7e5b20860811c87afe4891317be25770988d22f9..e2bb6feb9349316eb1ec5b0ef29d2e73e5da1622 100644 (file)
@@ -129,10 +129,6 @@ let eval_ast ?do_heavy_checks lexicon_status
 exception TryingToAdd of string
 exception EnrichedWithStatus of exn * LexiconEngine.status * GrafiteTypes.status
 
-let out = ref ignore 
-
-let set_callback f = out := f
-
 let eval_from_stream ~first_statement_only ~include_paths 
  ?do_heavy_checks ?(enforce_no_new_aliases=true)
  ?(watch_statuses=fun _ _ -> ()) lexicon_status grafite_status str cb 
@@ -160,7 +156,6 @@ let eval_from_stream ~first_statement_only ~include_paths
             false, lexicon_status, grafite_status,
              (((grafite_status,lexicon_status),None)::statuses)
          | GrafiteParser.LSome ast ->
-            !out ast;
             cb grafite_status ast;
             let new_statuses =
              eval_ast ?do_heavy_checks lexicon_status
index 9429b00e6db022f8a4e0a3ed19cefa39e352cc6d..d5dcddd61e9be5ee7c6a73b83ca0f3c924e1feb7 100644 (file)
@@ -57,6 +57,3 @@ val eval_from_stream :
    GrafiteAst.statement -> unit) ->
   ((GrafiteTypes.status * LexiconEngine.status) *
    (DisambiguateTypes.domain_item * LexiconAst.alias_spec) option) list
-
-(* this callback is called on every grafite command *)
-val set_callback: (GrafiteParser.ast_statement -> unit) -> unit 
index 7a6d48663927cf590837a30b3516b7677a5f11b8..6c3749db3e13cca73850b0a9421ccd8e44d5c072 100644 (file)
@@ -31,10 +31,6 @@ open GrafiteTypes
 
 exception AttemptToInsertAnAlias of LexiconEngine.status
 
-let out = ref ignore 
-let set_callback f = out := f
-
-
 let slash_n_RE = Pcre.regexp "\\n" ;;
 
 let pp_ast_statement grafite_status stm =
@@ -60,7 +56,6 @@ let dump f =
    let module G = GrafiteAst in
    let module L = LexiconAst in
    let module H = HExtlib in
-   Helm_registry.set_bool "matita.moo" false;
    let floc = H.dummy_floc in
    let nl_ast = G.Comment (floc, G.Note (floc, "")) in
    let pp_statement stm =
@@ -75,33 +70,31 @@ let dump f =
    let nl () =  output_string och (pp_statement nl_ast) in
    MatitaMisc.out_preamble och;
    let grafite_parser_cb status = function
-      | G.Executable (_, G.Macro (_, G.Inline _)) -> ()
-      | stm                                       ->
+      | G.Executable (_, G.Macro (_, G.Inline (_, style, uri, prefix, flavour))) ->
+         let str =
+            ApplyTransformation.txt_of_inline_macro style prefix uri
+               ?flavour
+              ~map_unicode_to_tex:
+                 (Helm_registry.get_bool "matita.paste_unicode_as_tex")
+        in
+         output_string och str
+      | stm ->
          output_string och (pp_statement stm); nl (); nl ()
    in
    let lexicon_parser_cb status cmd =
          output_string och (pp_lexicon cmd); nl (); nl ()
    in
-(*
-   let matita_engine_cb = function
-      | G.Executable (_, G.Macro (_, G.Inline _)) 
-      | G.Executable (_, G.Command (_, G.Include _)) -> ()
-      | ast                                          ->
-*)
-   let matitac_lib_cb = output_string och in
    begin fun () ->
+      Helm_registry.set_bool "matita.moo" false;
       GrafiteParser.set_grafite_callback grafite_parser_cb;
-      GrafiteParser.set_lexicon_callback lexicon_parser_cb;
-(*   
-      MatitaEngine.set_callback matita_engine_cb;
-*)   
-      set_callback matitac_lib_cb
+      GrafiteParser.set_lexicon_callback lexicon_parser_cb
    end, 
    begin fun x ->
       close_out och;
       GrafiteParser.set_grafite_callback (fun _ _ -> ());
       GrafiteParser.set_lexicon_callback (fun _ _ -> ());
-      set_callback ignore; x
+      Helm_registry.set_bool "matita.moo" true;
+      x
    end
 ;;
 
@@ -243,18 +236,19 @@ let compile atstart options fname =
       | [] -> lexicon_status, grafite_status
       | ((grafite,lexicon),None)::_ -> lexicon, grafite
       | ((_,l),Some _)::_ -> raise (AttemptToInsertAnAlias l)
-
      with MatitaEngine.EnrichedWithStatus 
             (GrafiteEngine.Macro (floc, f), lexicon, grafite) as exn ->
             match f (get_macro_context (Some grafite)) with 
             | _, GrafiteAst.Inline (_, style, suri, prefix, flavour) ->
-              let str =
+(*              
+             let str =
                ApplyTransformation.txt_of_inline_macro style prefix suri
                 ?flavour
                ~map_unicode_to_tex:(Helm_registry.get_bool
                   "matita.paste_unicode_as_tex")
              in
               !out str;
+*)
               aux_for_dump x lexicon grafite
             |_-> raise exn
      in
@@ -275,8 +269,7 @@ let compile atstart options fname =
 *)
      clean_exit baseuri false)
     else
-     (if not (Helm_registry.get_bool "matita.moo" && 
-              Filename.check_suffix fname ".mma") then begin
+     (if Helm_registry.get_bool "matita.moo" then begin
         (* FG: we do not generate .moo when dumping .mma files *)
         GrafiteMarshal.save_moo moo_fname moo_content_rev;
         LexiconMarshal.save_lexicon lexicon_fname lexicon_content_rev;