]> matita.cs.unibo.it Git - helm.git/blob - helm/matita/matita.ml
added dump/restore environment to the debug menu
[helm.git] / helm / matita / matita.ml
1 (* Copyright (C) 2004-2005, HELM Team.
2  * 
3  * This file is part of HELM, an Hypertextual, Electronic
4  * Library of Mathematics, developed at the Computer Science
5  * Department, University of Bologna, Italy.
6  * 
7  * HELM is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License
9  * as published by the Free Software Foundation; either version 2
10  * of the License, or (at your option) any later version.
11  * 
12  * HELM is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with HELM; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place - Suite 330, Boston,
20  * MA  02111-1307, USA.
21  * 
22  * For details, see the HELM World-Wide-Web page,
23  * http://helm.cs.unibo.it/
24  *)
25
26 open Printf
27
28 open MatitaGtkMisc
29 open MatitaTypes
30 open MatitaMisc
31
32 (** {2 Initialization} *)
33
34 let _ =
35   Helm_registry.load_from "matita.conf.xml";  (* read conf *)
36   Http_getter.init ();
37   MetadataTypes.ownerize_tables (Helm_registry.get "matita.owner");
38   MatitaDb.clean_owner_environment ();
39   MatitaDb.create_owner_environment ();
40   GtkMain.Rc.add_default_file BuildTimeConf.gtkrc;  (* loads gtk rc files *)
41   ignore (GMain.Main.init ());
42
43   (* environment trust *)
44   CicEnvironment.set_trust
45     (let trust = Helm_registry.get_bool "matita.environment_trust" in
46      fun _ -> trust)
47
48 (** {2 GUI callbacks} *)
49
50 let gui = MatitaGui.instance ()
51
52 let _ =
53   ignore (gui#main#newCicBrowserMenuItem#connect#activate (fun _ ->
54     ignore (MatitaMathView.cicBrowser ())));
55   (* disambiguator callback *)
56   MatitaDisambiguator.set_choose_uris_callback
57     (MatitaGui.interactive_uri_choice ());
58   MatitaDisambiguator.set_choose_interp_callback
59     (MatitaGui.interactive_interp_choice ())
60
61 let script =
62   MatitaScript.script 
63     ~buffer:gui#main#scriptTextView#buffer
64     ~init:(Lazy.force MatitaEngine.initial_status) 
65     ~mathviewer:(MatitaMathView.mathViewer ())
66     ()
67
68   (* math viewers *)
69 let _ =
70   let sequent_viewer = MatitaMathView.sequentViewer_instance () in
71   let sequents_viewer = MatitaMathView.sequentsViewer_instance () in
72   sequent_viewer#set_href_callback
73     (Some (fun uri -> (MatitaMathView.cicBrowser ())#loadUri uri));
74   let browser_observer _ = MatitaMathView.refresh_all_browsers () in
75   let sequents_observer status =
76     sequents_viewer#reset;
77     match status.proof_status with
78     | Incomplete_proof ((proof, goal) as status) ->
79         sequents_viewer#load_sequents status;
80         sequents_viewer#goto_sequent goal
81     | Proof proof -> 
82         prerr_endline "sequents_viewer#load_logo_with_qed (no proof)"; ()
83     | No_proof -> 
84         prerr_endline "sequents_viewer#load_logo (no proof)"; ()
85     | Intermediate _ -> 
86         assert false (* only the engine may be in this state *)
87   in
88   script#addObserver sequents_observer;
89   script#addObserver browser_observer
90
91   (** <DEBUGGING> *)
92 let _ =
93   if BuildTimeConf.debug then begin
94     gui#main#debugMenu#misc#show ();
95     let addDebugItem ~label callback =
96       let item =
97         GMenu.menu_item ~packing:gui#main#debugMenu_menu#append ~label ()
98       in
99       ignore (item#connect#activate callback)
100     in
101     addDebugItem "dump environment to \"env.dump\"" (fun _ ->
102       let oc = open_out "env.dump" in
103       CicEnvironment.dump_to_channel oc;
104       close_out oc);
105     addDebugItem "load environment from \"env.dump\"" (fun _ ->
106       let ic = open_in "env.dump" in
107       CicEnvironment.restore_from_channel ic;
108       close_in ic);
109     addDebugItem "dump universes" (fun _ ->
110       List.iter (fun (u,_,g) -> 
111         prerr_endline (UriManager.string_of_uri u); 
112         CicUniv.print_ugraph g) (CicEnvironment.list_obj ())
113       );
114     addDebugItem "print selected terms" (fun () ->
115       let i = ref 0 in
116       List.iter
117         (fun t ->
118            incr i;
119            MatitaLog.debug (sprintf "%d: %s" !i (CicPp.ppterm t)))
120         (MatitaMathView.sequentViewer_instance ())#get_selected_terms);
121     addDebugItem "dump getter settings" (fun _ ->
122       prerr_endline (Http_getter_env.env_to_string ()));
123     addDebugItem "getter: update"
124       (fun _ ->
125          ignore (Thread.create (fun () ->
126            MatitaLog.message "Rebuilding getter maps in background ...";
127            Http_getter.update ();
128            MatitaLog.message "Getter maps successfully rebuilt.") ()));
129     addDebugItem "getter: getalluris" (fun _ ->
130       List.iter prerr_endline (Http_getter.getalluris ()));
131     addDebugItem "dump script status" script#dump;
132     addDebugItem "dump metasenv"
133       (fun _ ->
134          if script#onGoingProof () then
135            MatitaLog.debug (CicMetaSubst.ppmetasenv script#proofMetasenv []));
136     addDebugItem "rotate light bulbs"
137       (fun _ ->
138          let nb = gui#main#hintNotebook in
139          nb#goto_page ((nb#current_page + 1) mod 3));
140   end
141
142   (** </DEBUGGING> *)
143
144 let _ =
145   at_exit
146     (fun () ->
147        Http_getter_logger.log "Sync map tree to disk...";
148        Http_getter.sync_dump_file ();
149        print_endline "\nThanks for using Matita!\n");
150   Sys.catch_break true;
151   (try
152      script#loadFrom Sys.argv.(1);
153    with Invalid_argument _ -> ());
154   if Filename.basename Sys.argv.(0) = "cicbrowser" then begin (* cicbrowser *)
155     Helm_registry.set "matita.mode" "cicbrowser";
156     let browser = MatitaMathView.cicBrowser () in
157     try
158       browser#loadUri Sys.argv.(1)
159     with Invalid_argument _ -> ()
160   end else begin  (* matita *)
161     Helm_registry.set "matita.mode" "matita";
162     gui#main#mainWin#show ();
163   end;
164   try
165     GtkThread.main ()
166   with Sys.Break -> ()
167