]> matita.cs.unibo.it Git - helm.git/blob - helm/matita/matita.ml
* match.ma removed (it is now splitted in several files in library/*.ma)
[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_file; (* loads gtk rc *)
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   (* font sizes *)
56   ignore (gui#main#increaseFontSizeMenuItem#connect#activate (fun _ ->
57     gui#increaseFontSize ();
58     MatitaMathView.increase_font_size ();
59     MatitaMathView.update_font_sizes ()));
60   ignore (gui#main#decreaseFontSizeMenuItem#connect#activate (fun _ ->
61     gui#decreaseFontSize ();
62     MatitaMathView.decrease_font_size ();
63     MatitaMathView.update_font_sizes ()));
64   ignore (gui#main#normalFontSizeMenuItem#connect#activate (fun _ ->
65     gui#resetFontSize ();
66     MatitaMathView.reset_font_size ();
67     MatitaMathView.update_font_sizes ()));
68   MatitaMathView.reset_font_size ();
69   (* disambiguator callback *)
70   MatitaDisambiguator.set_choose_uris_callback
71     (MatitaGui.interactive_uri_choice ());
72   MatitaDisambiguator.set_choose_interp_callback
73     (MatitaGui.interactive_interp_choice ())
74
75 let script =
76   MatitaScript.script 
77     ~buffer:gui#sourceView#buffer
78     ~init:(Lazy.force MatitaEngine.initial_status) 
79     ~mathviewer:(MatitaMathView.mathViewer ())
80     ~urichooser:(fun uris ->
81       try
82         MatitaGui.interactive_uri_choice ~selection_mode:`SINGLE
83         ~title:"Matita: URI chooser" 
84         ~msg:"Select the URI" ~hide_uri_entry:true
85         ~hide_try:true ~ok_label:"_Apply" ~ok_action:`SELECT
86         ~copy_cb:(fun s -> gui#sourceView#buffer#insert ("\n"^s^"\n"))
87         () ~id:"boh?" uris
88       with MatitaTypes.Cancel -> [])
89     ~set_star:gui#setStar
90     ()
91
92   (* math viewers *)
93 let _ =
94   let sequent_viewer = MatitaMathView.sequentViewer_instance () in
95   let sequents_viewer = MatitaMathView.sequentsViewer_instance () in
96   sequent_viewer#set_href_callback
97     (Some (fun uri -> (MatitaMathView.cicBrowser ())#load (`Uri (UriManager.uri_of_string uri))));
98   let browser_observer _ = MatitaMathView.refresh_all_browsers () in
99   let sequents_observer status =
100     sequents_viewer#reset;
101     match status.proof_status with
102     | Incomplete_proof ((proof, goal) as status) ->
103         sequents_viewer#load_sequents status;
104         sequents_viewer#goto_sequent goal
105     | Proof proof -> 
106         prerr_endline "sequents_viewer#load_logo_with_qed (no proof)"; ()
107     | No_proof -> 
108         prerr_endline "sequents_viewer#load_logo (no proof)"; ()
109     | Intermediate _ -> 
110         assert false (* only the engine may be in this state *)
111   in
112   script#addObserver sequents_observer;
113   script#addObserver browser_observer
114
115   (** <DEBUGGING> *)
116 let _ =
117   if BuildTimeConf.debug then begin
118     gui#main#debugMenu#misc#show ();
119     let addDebugItem ~label callback =
120       let item =
121         GMenu.menu_item ~packing:gui#main#debugMenu_menu#append ~label ()
122       in
123       ignore (item#connect#activate callback)
124     in
125     addDebugItem "dump environment to \"env.dump\"" (fun _ ->
126       let oc = open_out "env.dump" in
127       CicEnvironment.dump_to_channel oc;
128       close_out oc);
129     addDebugItem "load environment from \"env.dump\"" (fun _ ->
130       let ic = open_in "env.dump" in
131       CicEnvironment.restore_from_channel ic;
132       close_in ic);
133     addDebugItem "dump universes" (fun _ ->
134       List.iter (fun (u,_,g) -> 
135         prerr_endline (UriManager.string_of_uri u); 
136         CicUniv.print_ugraph g) (CicEnvironment.list_obj ())
137       );
138     addDebugItem "print selected terms" (fun () ->
139       let i = ref 0 in
140       List.iter
141         (fun t ->
142            incr i;
143            MatitaLog.debug (sprintf "%d: %s" !i (CicPp.ppterm t)))
144         (MatitaMathView.sequentViewer_instance ())#get_selected_terms);
145     addDebugItem "dump getter settings" (fun _ ->
146       prerr_endline (Http_getter_env.env_to_string ()));
147     addDebugItem "getter: update"
148       (fun _ ->
149          ignore (Thread.create (fun () ->
150            MatitaLog.message "Rebuilding getter maps in background ...";
151            Http_getter.update ();
152            MatitaLog.message "Getter maps successfully rebuilt.") ()));
153     addDebugItem "getter: getalluris" (fun _ ->
154       List.iter prerr_endline (Http_getter.getalluris ()));
155     addDebugItem "dump script status" script#dump;
156     addDebugItem "dump metasenv"
157       (fun _ ->
158          if script#onGoingProof () then
159            MatitaLog.debug (CicMetaSubst.ppmetasenv script#proofMetasenv []));
160     addDebugItem "dump coercions Db" (fun _ ->
161       List.iter (
162         fun (s,t,u) -> 
163           MatitaLog.debug (
164             UriManager.name_of_uri u ^ ":" ^ 
165             UriManager.name_of_uri s ^ " -> " ^ UriManager.name_of_uri t))
166       (CoercDb.to_list ())
167     );
168     addDebugItem "rotate light bulbs"
169       (fun _ ->
170          let nb = gui#main#hintNotebook in
171          nb#goto_page ((nb#current_page + 1) mod 3));
172          (*
173     addDebugItem "print (on stdout) \"statement\" grammar entry"
174       (fun _ ->
175         Grammar.print_entry Format.std_formatter
176           (Grammar.Entry.obj CicTextualParser2.statement);
177         Format.pp_print_flush Format.std_formatter ());*)
178   end
179
180   (** </DEBUGGING> *)
181
182 let _ =
183   at_exit
184     (fun () ->
185        Http_getter_logger.log "Sync map tree to disk...";
186        Http_getter.sync_dump_file ();
187        print_endline "\nThanks for using Matita!\n");
188   Sys.catch_break true;
189   (try
190      gui#loadScript Sys.argv.(1);
191    with Invalid_argument _ -> ());
192   if Filename.basename Sys.argv.(0) = "cicbrowser" then begin (* cicbrowser *)
193     Helm_registry.set "matita.mode" "cicbrowser";
194     let browser = MatitaMathView.cicBrowser () in
195     let entry =
196       try
197         `Uri (UriManager.uri_of_string Sys.argv.(1))
198       with Invalid_argument _ -> `Dir "cic:/"
199     in
200     browser#load entry
201   end else begin  (* matita *)
202     Helm_registry.set "matita.mode" "matita";
203     gui#main#mainWin#show ();
204   end;
205   try
206     GtkThread.main ()
207   with Sys.Break -> ()
208