]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/matita/matitacLib.ml
matitaclean anapshot
[helm.git] / helm / matita / matitacLib.ml
index 4d04d371c8ea07f4de3d08122d13474d8f05c0fb..ea8888eb706c3fda00f39823bf129626b8308794 100644 (file)
@@ -36,16 +36,14 @@ let usage =
   sprintf "MatitaC v%s\nUsage: matitac [option ...] file\nOptions:"
     BuildTimeConf.version
 
-let _ =
-  Helm_registry.load_from "matita.conf.xml";
-  Http_getter.init ();
-  MetadataTypes.ownerize_tables (Helm_registry.get "matita.owner");
-  MatitaDb.clean_owner_environment ();
-  MatitaDb.create_owner_environment ()
-
-let status = ref (Lazy.force MatitaEngine.initial_status) ;;
+let status = ref None
 
 let run_script is eval_function  =
+  let status = 
+    match !status with
+    | None -> assert false
+    | Some s -> s
+  in
   let slash_n_RE = Pcre.regexp "\\n" in
   let cb status stm = 
     (* dump_status status; *)
@@ -102,6 +100,12 @@ let rec go () =
   | exn -> MatitaLog.error (Printexc.to_string exn); go ()
   
 let main ~mode = 
+  Helm_registry.load_from "matita.conf.xml";
+  Http_getter.init ();
+  MetadataTypes.ownerize_tables (Helm_registry.get "matita.owner");
+  MatitaDb.clean_owner_environment ();
+  MatitaDb.create_owner_environment ();
+  status := Some (ref (Lazy.force MatitaEngine.initial_status));
   at_exit
     (fun () ->
        Http_getter_logger.log "Sync map tree to disk...";
@@ -130,7 +134,11 @@ let main ~mode =
     let hou = 
       if tm.Unix.tm_hour > 0 then (string_of_int tm.Unix.tm_hour ^ "h ") else "" 
     in
-    let proof_status = !status.proof_status in
+    let proof_status = 
+      match !status with
+      | Some s -> !s.proof_status
+      | None -> assert false
+    in
     if proof_status <> MatitaTypes.No_proof then
      begin
       MatitaLog.error