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