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