]> matita.cs.unibo.it Git - helm.git/blob - helm/matita/matita.ml
- de-ALB-ing
[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   CicEnvironment.set_trust (* environment trust *)
42     (let trust = Helm_registry.get_bool "matita.environment_trust" in
43      fun _ -> trust);
44   Paramodulation.Saturation.init ()
45
46 (** {2 GUI callbacks} *)
47
48 let gui = MatitaGui.instance ()
49
50 let script =
51   let s = 
52     MatitaScript.script 
53       ~source_view:gui#sourceView
54       ~init:(Lazy.force MatitaEngine.initial_status) 
55       ~mathviewer:(MatitaMathView.mathViewer ())
56       ~urichooser:(fun uris ->
57         try
58           MatitaGui.interactive_uri_choice ~selection_mode:`SINGLE
59           ~title:"Matita: URI chooser" 
60           ~msg:"Select the URI" ~hide_uri_entry:true
61           ~hide_try:true ~ok_label:"_Apply" ~ok_action:`SELECT
62           ~copy_cb:(fun s -> gui#sourceView#buffer#insert ("\n"^s^"\n"))
63           () ~id:"boh?" uris
64         with MatitaTypes.Cancel -> [])
65       ~set_star:gui#setStar
66       ~ask_confirmation:
67         (fun ~title ~message -> 
68             MatitaGtkMisc.ask_confirmation ~title ~message 
69             ~parent:gui#main#toplevel ())
70       ~develcreator:gui#createDevelopment
71       ()
72   in
73   gui#sourceView#source_buffer#begin_not_undoable_action ();
74   s#reset (); 
75   s#template (); 
76   gui#sourceView#source_buffer#end_not_undoable_action ();
77   s
78   
79   (* math viewers *)
80 let _ =
81   let cic_math_view = MatitaMathView.cicMathView_instance () in
82   let sequents_viewer = MatitaMathView.sequentsViewer_instance () in
83   sequents_viewer#load_logo;
84   cic_math_view#set_href_callback
85     (Some (fun uri -> (MatitaMathView.cicBrowser ())#load
86       (`Uri (UriManager.uri_of_string uri))));
87   let browser_observer _ = MatitaMathView.refresh_all_browsers () in
88   let sequents_observer status =
89     sequents_viewer#reset;
90     match status.proof_status with
91     | Incomplete_proof ((proof, goal) as status) ->
92         sequents_viewer#load_sequents status;
93         sequents_viewer#goto_sequent goal
94     | Proof proof -> 
95         sequents_viewer#load_logo_with_qed
96     | No_proof -> 
97         sequents_viewer#load_logo
98     | Intermediate _ -> 
99         assert false (* only the engine may be in this state *)
100   in
101   script#addObserver sequents_observer;
102   script#addObserver browser_observer
103
104   (** <DEBUGGING> *)
105 let _ =
106   if BuildTimeConf.debug then begin
107     gui#main#debugMenu#misc#show ();
108     let addDebugItem ~label callback =
109       let item =
110         GMenu.menu_item ~packing:gui#main#debugMenu_menu#append ~label ()
111       in
112       ignore (item#connect#activate callback)
113     in
114     addDebugItem "dump environment to \"env.dump\"" (fun _ ->
115       let oc = open_out "env.dump" in
116       CicEnvironment.dump_to_channel oc;
117       close_out oc);
118     addDebugItem "load environment from \"env.dump\"" (fun _ ->
119       let ic = open_in "env.dump" in
120       CicEnvironment.restore_from_channel ic;
121       close_in ic);
122     addDebugItem "dump universes" (fun _ ->
123       List.iter (fun (u,_,g) -> 
124         prerr_endline (UriManager.string_of_uri u); 
125         CicUniv.print_ugraph g) (CicEnvironment.list_obj ())
126       );
127     addDebugItem "dump environment content" (fun _ ->
128       List.iter (fun (u,_,_) -> 
129         prerr_endline (UriManager.string_of_uri u)) 
130         (CicEnvironment.list_obj ()));
131     addDebugItem "print selections" (fun () ->
132       let cicMathView = MatitaMathView.cicMathView_instance () in
133       List.iter MatitaLog.debug (cicMathView#string_of_selections));
134     addDebugItem "dump getter settings" (fun _ ->
135       prerr_endline (Http_getter_env.env_to_string ()));
136     addDebugItem "getter: getalluris" (fun _ ->
137       List.iter prerr_endline (Http_getter.getalluris ()));
138     addDebugItem "dump script status" script#dump;
139     addDebugItem "dump metasenv"
140       (fun _ ->
141          if script#onGoingProof () then
142            MatitaLog.debug (CicMetaSubst.ppmetasenv script#proofMetasenv []));
143     addDebugItem "dump coercions Db" (fun _ ->
144       List.iter
145         (fun (s,t,u) -> 
146           MatitaLog.debug
147             (UriManager.name_of_uri u ^ ":"
148              ^ UriManager.name_of_uri s ^ " -> " ^ UriManager.name_of_uri t))
149         (CoercDb.to_list ()));
150     addDebugItem "print top-level grammar entries"
151       CicNotationParser.print_l2_pattern;
152     addDebugItem "rotate light bulbs"
153       (fun _ ->
154          let nb = gui#main#hintNotebook in
155          nb#goto_page ((nb#current_page + 1) mod 3));
156   end
157
158   (** </DEBUGGING> *)
159
160 let _ =
161   at_exit (fun () -> print_endline "\nThanks for using Matita!\n");
162   Sys.catch_break true;
163   if Filename.basename Sys.argv.(0) = "cicbrowser" then begin (* cicbrowser *)
164     Helm_registry.set "matita.mode" "cicbrowser";
165     let browser = MatitaMathView.cicBrowser () in
166     let entry =
167       try
168         `Uri (UriManager.uri_of_string Sys.argv.(1))
169       with Invalid_argument _ -> `Dir "cic:/"
170     in
171     browser#load entry
172   end else begin  (* matita *)
173     Helm_registry.set "matita.mode" "matita";
174     (try
175        gui#loadScript Sys.argv.(1);
176      with Invalid_argument _ -> ());
177     gui#main#mainWin#show ();
178   end;
179   try
180     GtkThread.main ()
181   with Sys.Break -> ()
182