]> matita.cs.unibo.it Git - helm.git/blob - helm/matita/matita.ml
blocked undo of authomatic text (template)
[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 BuildTimeConf.matita_conf;
36   CicNotation.load_notation BuildTimeConf.core_notation_script;
37   Http_getter.init ();
38   MetadataTypes.ownerize_tables (Helm_registry.get "matita.owner");
39   MatitaDb.create_owner_environment ();
40   MatitamakeLib.initialize ();
41   GtkMain.Rc.add_default_file BuildTimeConf.gtkrc_file; (* loads gtk rc *)
42   ignore (GMain.Main.init ());
43   CicEnvironment.set_trust (* environment trust *)
44     (let trust = Helm_registry.get_bool "matita.environment_trust" in
45      fun _ -> trust)
46
47 (** {2 GUI callbacks} *)
48
49 let gui = MatitaGui.instance ()
50
51 let _ =
52   ignore (gui#main#newCicBrowserMenuItem#connect#activate (fun _ ->
53     ignore (MatitaMathView.cicBrowser ())));
54   (* font sizes *)
55   ignore (gui#main#increaseFontSizeMenuItem#connect#activate (fun _ ->
56     gui#increaseFontSize ();
57     MatitaMathView.increase_font_size ();
58     MatitaMathView.update_font_sizes ()));
59   ignore (gui#main#decreaseFontSizeMenuItem#connect#activate (fun _ ->
60     gui#decreaseFontSize ();
61     MatitaMathView.decrease_font_size ();
62     MatitaMathView.update_font_sizes ()));
63   ignore (gui#main#normalFontSizeMenuItem#connect#activate (fun _ ->
64     gui#resetFontSize ();
65     MatitaMathView.reset_font_size ();
66     MatitaMathView.update_font_sizes ()));
67   MatitaMathView.reset_font_size ();
68   (* disambiguator callback *)
69   MatitaDisambiguator.set_choose_uris_callback
70     (MatitaGui.interactive_uri_choice ());
71   MatitaDisambiguator.set_choose_interp_callback
72     (MatitaGui.interactive_interp_choice ())
73
74 let script =
75   let s = 
76     MatitaScript.script 
77       ~view:(gui#sourceView :> GText.view)
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       ~ask_confirmation:
91         (fun ~title ~message -> 
92             MatitaGtkMisc.ask_confirmation ~title ~message 
93             ~parent:gui#main#toplevel ())
94       ~develcreator:gui#createDevelopment
95       ()
96   in
97   gui#sourceView#source_buffer#begin_not_undoable_action ();
98   s#reset (); 
99   s#template (); 
100   gui#sourceView#source_buffer#end_not_undoable_action ();
101   s
102   
103
104   (* math viewers *)
105 let _ =
106   let sequent_viewer = MatitaMathView.sequentViewer_instance () in
107   let sequents_viewer = MatitaMathView.sequentsViewer_instance () in
108   sequent_viewer#set_href_callback
109     (Some (fun uri -> (MatitaMathView.cicBrowser ())#load (`Uri (UriManager.uri_of_string uri))));
110   let browser_observer _ = MatitaMathView.refresh_all_browsers () in
111   let sequents_observer status =
112     sequents_viewer#reset;
113     match status.proof_status with
114     | Incomplete_proof ((proof, goal) as status) ->
115         sequents_viewer#load_sequents status;
116         sequents_viewer#goto_sequent goal
117     | Proof proof -> 
118         prerr_endline "sequents_viewer#load_logo_with_qed (no proof)"; ()
119     | No_proof -> 
120         prerr_endline "sequents_viewer#load_logo (no proof)"; ()
121     | Intermediate _ -> 
122         assert false (* only the engine may be in this state *)
123   in
124   script#addObserver sequents_observer;
125   script#addObserver browser_observer
126
127   (** <DEBUGGING> *)
128 let _ =
129   if BuildTimeConf.debug then begin
130     gui#main#debugMenu#misc#show ();
131     let addDebugItem ~label callback =
132       let item =
133         GMenu.menu_item ~packing:gui#main#debugMenu_menu#append ~label ()
134       in
135       ignore (item#connect#activate callback)
136     in
137     addDebugItem "dump environment to \"env.dump\"" (fun _ ->
138       let oc = open_out "env.dump" in
139       CicEnvironment.dump_to_channel oc;
140       close_out oc);
141     addDebugItem "load environment from \"env.dump\"" (fun _ ->
142       let ic = open_in "env.dump" in
143       CicEnvironment.restore_from_channel ic;
144       close_in ic);
145     addDebugItem "dump universes" (fun _ ->
146       List.iter (fun (u,_,g) -> 
147         prerr_endline (UriManager.string_of_uri u); 
148         CicUniv.print_ugraph g) (CicEnvironment.list_obj ())
149       );
150     addDebugItem "print selected terms" (fun () ->
151       let i = ref 0 in
152       List.iter
153         (fun t ->
154            incr i;
155            MatitaLog.debug (sprintf "%d: %s" !i (CicPp.ppterm t)))
156         (MatitaMathView.sequentViewer_instance ())#get_selected_terms);
157     addDebugItem "dump getter settings" (fun _ ->
158       prerr_endline (Http_getter_env.env_to_string ()));
159     addDebugItem "getter: getalluris" (fun _ ->
160       List.iter prerr_endline (Http_getter.getalluris ()));
161     addDebugItem "dump script status" script#dump;
162     addDebugItem "dump metasenv"
163       (fun _ ->
164          if script#onGoingProof () then
165            MatitaLog.debug (CicMetaSubst.ppmetasenv script#proofMetasenv []));
166     addDebugItem "dump coercions Db" (fun _ ->
167       List.iter
168         (fun (s,t,u) -> 
169           MatitaLog.debug
170             (UriManager.name_of_uri u ^ ":"
171              ^ UriManager.name_of_uri s ^ " -> " ^ UriManager.name_of_uri t))
172         (CoercDb.to_list ()));
173     addDebugItem "rotate light bulbs"
174       (fun _ ->
175          let nb = gui#main#hintNotebook in
176          nb#goto_page ((nb#current_page + 1) mod 3))
177   end
178
179   (** </DEBUGGING> *)
180
181 let _ =
182   at_exit (fun () -> print_endline "\nThanks for using Matita!\n");
183   Sys.catch_break true;
184   (try
185      gui#loadScript Sys.argv.(1);
186    with Invalid_argument _ -> ());
187   if Filename.basename Sys.argv.(0) = "cicbrowser" then begin (* cicbrowser *)
188     Helm_registry.set "matita.mode" "cicbrowser";
189     let browser = MatitaMathView.cicBrowser () in
190     let entry =
191       try
192         `Uri (UriManager.uri_of_string Sys.argv.(1))
193       with Invalid_argument _ -> `Dir "cic:/"
194     in
195     browser#load entry
196   end else begin  (* matita *)
197     Helm_registry.set "matita.mode" "matita";
198     gui#main#mainWin#show ();
199   end;
200   try
201     GtkThread.main ()
202   with Sys.Break -> ()
203