]> matita.cs.unibo.it Git - helm.git/blob - helm/matita/matita.ml
added support for (textual) cut and paste of mathml/boxml markup
[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 sequent_viewer = MatitaMathView.sequentViewer_instance () in
84   let sequents_viewer = MatitaMathView.sequentsViewer_instance () in
85   sequent_viewer#set_href_callback
86     (Some (fun uri -> (MatitaMathView.cicBrowser ())#load
87       (`Uri (UriManager.uri_of_string uri))));
88   let browser_observer _ = MatitaMathView.refresh_all_browsers () in
89   let sequents_observer status =
90     sequents_viewer#reset;
91     match status.proof_status with
92     | Incomplete_proof ((proof, goal) as status) ->
93         sequents_viewer#load_sequents status;
94         sequents_viewer#goto_sequent goal
95     | Proof proof -> 
96         prerr_endline "sequents_viewer#load_logo_with_qed (no proof)"; ()
97     | No_proof -> 
98         prerr_endline "sequents_viewer#load_logo (no proof)"; ()
99     | Intermediate _ -> 
100         assert false (* only the engine may be in this state *)
101   in
102   script#addObserver sequents_observer;
103   script#addObserver browser_observer
104
105   (** <DEBUGGING> *)
106 let _ =
107   if BuildTimeConf.debug then begin
108     gui#main#debugMenu#misc#show ();
109     let addDebugItem ~label callback =
110       let item =
111         GMenu.menu_item ~packing:gui#main#debugMenu_menu#append ~label ()
112       in
113       ignore (item#connect#activate callback)
114     in
115     addDebugItem "dump environment to \"env.dump\"" (fun _ ->
116       let oc = open_out "env.dump" in
117       CicEnvironment.dump_to_channel oc;
118       close_out oc);
119     addDebugItem "load environment from \"env.dump\"" (fun _ ->
120       let ic = open_in "env.dump" in
121       CicEnvironment.restore_from_channel ic;
122       close_in ic);
123     addDebugItem "dump universes" (fun _ ->
124       List.iter (fun (u,_,g) -> 
125         prerr_endline (UriManager.string_of_uri u); 
126         CicUniv.print_ugraph g) (CicEnvironment.list_obj ())
127       );
128     addDebugItem "dump environment content" (fun _ ->
129       List.iter (fun (u,_,_) -> 
130         prerr_endline (UriManager.string_of_uri u)) 
131         (CicEnvironment.list_obj ()));
132     addDebugItem "print selections" (fun () ->
133       let sequentViewer = MatitaMathView.sequentViewer_instance () in
134       List.iter MatitaLog.debug (sequentViewer#string_of_selections));
135     addDebugItem "dump getter settings" (fun _ ->
136       prerr_endline (Http_getter_env.env_to_string ()));
137     addDebugItem "getter: getalluris" (fun _ ->
138       List.iter prerr_endline (Http_getter.getalluris ()));
139     addDebugItem "dump script status" script#dump;
140     addDebugItem "dump metasenv"
141       (fun _ ->
142          if script#onGoingProof () then
143            MatitaLog.debug (CicMetaSubst.ppmetasenv script#proofMetasenv []));
144     addDebugItem "dump coercions Db" (fun _ ->
145       List.iter
146         (fun (s,t,u) -> 
147           MatitaLog.debug
148             (UriManager.name_of_uri u ^ ":"
149              ^ UriManager.name_of_uri s ^ " -> " ^ UriManager.name_of_uri t))
150         (CoercDb.to_list ()));
151     addDebugItem "rotate light bulbs"
152       (fun _ ->
153          let nb = gui#main#hintNotebook in
154          nb#goto_page ((nb#current_page + 1) mod 3))
155   end
156
157   (** </DEBUGGING> *)
158
159 let _ =
160   at_exit (fun () -> print_endline "\nThanks for using Matita!\n");
161   Sys.catch_break true;
162   if Filename.basename Sys.argv.(0) = "cicbrowser" then begin (* cicbrowser *)
163     Helm_registry.set "matita.mode" "cicbrowser";
164     let browser = MatitaMathView.cicBrowser () in
165     let entry =
166       try
167         `Uri (UriManager.uri_of_string Sys.argv.(1))
168       with Invalid_argument _ -> `Dir "cic:/"
169     in
170     browser#load entry
171   end else begin  (* matita *)
172     Helm_registry.set "matita.mode" "matita";
173     (try
174        gui#loadScript Sys.argv.(1);
175      with Invalid_argument _ -> ());
176     gui#main#mainWin#show ();
177   end;
178   try
179     GtkThread.main ()
180   with Sys.Break -> ()
181