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