]> matita.cs.unibo.it Git - helm.git/blob - helm/matita/matita.ml
0. core_notation.ma splitted into coq.moo and core_notation.moo
[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 (* ALB to link paramodulation... *)
33 let _ = Paramodulation.Saturation.init ()
34
35 (** {2 Initialization} *)
36
37 let _ =
38   Helm_registry.load_from BuildTimeConf.matita_conf;
39   CicNotation.load_notation BuildTimeConf.core_notation_script;
40   Http_getter.init ();
41   MetadataTypes.ownerize_tables (Helm_registry.get "matita.owner");
42   MatitaDb.create_owner_environment ();
43   MatitamakeLib.initialize ();
44   CicEnvironment.set_trust (* environment 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 script =
53   let s = 
54     MatitaScript.script 
55       ~source_view:gui#sourceView
56       ~init:(Lazy.force MatitaEngine.initial_status) 
57       ~mathviewer:(MatitaMathView.mathViewer ())
58       ~urichooser:(fun uris ->
59         try
60           MatitaGui.interactive_uri_choice ~selection_mode:`SINGLE
61           ~title:"Matita: URI chooser" 
62           ~msg:"Select the URI" ~hide_uri_entry:true
63           ~hide_try:true ~ok_label:"_Apply" ~ok_action:`SELECT
64           ~copy_cb:(fun s -> gui#sourceView#buffer#insert ("\n"^s^"\n"))
65           () ~id:"boh?" uris
66         with MatitaTypes.Cancel -> [])
67       ~set_star:gui#setStar
68       ~ask_confirmation:
69         (fun ~title ~message -> 
70             MatitaGtkMisc.ask_confirmation ~title ~message 
71             ~parent:gui#main#toplevel ())
72       ~develcreator:gui#createDevelopment
73       ()
74   in
75   gui#sourceView#source_buffer#begin_not_undoable_action ();
76   s#reset (); 
77   s#template (); 
78   gui#sourceView#source_buffer#end_not_undoable_action ();
79   s
80   
81   (* math viewers *)
82 let _ =
83   let cic_math_view = MatitaMathView.cicMathView_instance () in
84   let sequents_viewer = MatitaMathView.sequentsViewer_instance () in
85   sequents_viewer#load_logo;
86   cic_math_view#set_href_callback
87     (Some (fun uri -> (MatitaMathView.cicBrowser ())#load
88       (`Uri (UriManager.uri_of_string uri))));
89   let browser_observer _ = MatitaMathView.refresh_all_browsers () in
90   let sequents_observer status =
91     sequents_viewer#reset;
92     match status.proof_status with
93     | Incomplete_proof ((proof, goal) as status) ->
94         sequents_viewer#load_sequents status;
95         sequents_viewer#goto_sequent goal
96     | Proof proof -> 
97         sequents_viewer#load_logo_with_qed
98     | No_proof -> 
99         sequents_viewer#load_logo
100     | Intermediate _ -> 
101         assert false (* only the engine may be in this state *)
102   in
103   script#addObserver sequents_observer;
104   script#addObserver browser_observer
105
106   (** <DEBUGGING> *)
107 let _ =
108   if BuildTimeConf.debug then begin
109     gui#main#debugMenu#misc#show ();
110     let addDebugItem ~label callback =
111       let item =
112         GMenu.menu_item ~packing:gui#main#debugMenu_menu#append ~label ()
113       in
114       ignore (item#connect#activate callback)
115     in
116     addDebugItem "dump environment to \"env.dump\"" (fun _ ->
117       let oc = open_out "env.dump" in
118       CicEnvironment.dump_to_channel oc;
119       close_out oc);
120     addDebugItem "load environment from \"env.dump\"" (fun _ ->
121       let ic = open_in "env.dump" in
122       CicEnvironment.restore_from_channel ic;
123       close_in ic);
124     addDebugItem "dump universes" (fun _ ->
125       List.iter (fun (u,_,g) -> 
126         prerr_endline (UriManager.string_of_uri u); 
127         CicUniv.print_ugraph g) (CicEnvironment.list_obj ())
128       );
129     addDebugItem "dump environment content" (fun _ ->
130       List.iter (fun (u,_,_) -> 
131         prerr_endline (UriManager.string_of_uri u)) 
132         (CicEnvironment.list_obj ()));
133     addDebugItem "print selections" (fun () ->
134       let cicMathView = MatitaMathView.cicMathView_instance () in
135       List.iter MatitaLog.debug (cicMathView#string_of_selections));
136     addDebugItem "dump getter settings" (fun _ ->
137       prerr_endline (Http_getter_env.env_to_string ()));
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 "dump coercions Db" (fun _ ->
146       List.iter
147         (fun (s,t,u) -> 
148           MatitaLog.debug
149             (UriManager.name_of_uri u ^ ":"
150              ^ UriManager.name_of_uri s ^ " -> " ^ UriManager.name_of_uri t))
151         (CoercDb.to_list ()));
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