]> matita.cs.unibo.it Git - helm.git/blob - helm/matita/matita.ml
better dependencies among modules and symlinking of several matitatools to a single...
[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
31 (** {2 Initialization} *)
32
33 let _ = MatitaInit.initialize_all ()
34 let _ = Paramodulation.Saturation.init () (* ALB to link paramodulation *)
35
36 (** {2 GUI callbacks} *)
37
38 let gui = MatitaGui.instance ()
39
40 let script =
41   let s = 
42     MatitaScript.script 
43       ~source_view:gui#sourceView
44       ~init:(Lazy.force MatitaEngine.initial_status) 
45       ~mathviewer:(MatitaMathView.mathViewer ())
46       ~urichooser:(fun uris ->
47         try
48           MatitaGui.interactive_uri_choice ~selection_mode:`SINGLE
49           ~title:"Matita: URI chooser" 
50           ~msg:"Select the URI" ~hide_uri_entry:true
51           ~hide_try:true ~ok_label:"_Apply" ~ok_action:`SELECT
52           ~copy_cb:(fun s -> gui#sourceView#buffer#insert ("\n"^s^"\n"))
53           () ~id:"boh?" uris
54         with MatitaTypes.Cancel -> [])
55       ~set_star:gui#setStar
56       ~ask_confirmation:
57         (fun ~title ~message -> 
58             MatitaGtkMisc.ask_confirmation ~title ~message 
59             ~parent:gui#main#toplevel ())
60       ~develcreator:gui#createDevelopment
61       ()
62   in
63   gui#sourceView#source_buffer#begin_not_undoable_action ();
64   s#reset (); 
65   s#template (); 
66   gui#sourceView#source_buffer#end_not_undoable_action ();
67   s
68   
69   (* math viewers *)
70 let _ =
71   let cic_math_view = MatitaMathView.cicMathView_instance () in
72   let sequents_viewer = MatitaMathView.sequentsViewer_instance () in
73   sequents_viewer#load_logo;
74   cic_math_view#set_href_callback
75     (Some (fun uri -> (MatitaMathView.cicBrowser ())#load
76       (`Uri (UriManager.uri_of_string uri))));
77   let browser_observer _ = MatitaMathView.refresh_all_browsers () in
78   let sequents_observer status =
79     sequents_viewer#reset;
80     match status.proof_status with
81     | Incomplete_proof ({ stack = stack } as incomplete_proof) ->
82         sequents_viewer#load_sequents incomplete_proof;
83         (try
84           script#setGoal (Continuationals.Stack.find_goal stack);
85           sequents_viewer#goto_sequent script#goal
86         with Failure _ -> script#setGoal ~-1);
87     | Proof proof -> sequents_viewer#load_logo_with_qed
88     | No_proof -> sequents_viewer#load_logo
89     | Intermediate _ -> assert false (* only the engine may be in this state *)
90   in
91   script#addObserver sequents_observer;
92   script#addObserver browser_observer
93
94   (** {{{ Debugging *)
95 let _ =
96   if BuildTimeConf.debug then begin
97     gui#main#debugMenu#misc#show ();
98     let addDebugItem ~label callback =
99       let item =
100         GMenu.menu_item ~packing:gui#main#debugMenu_menu#append ~label ()
101       in
102       ignore (item#connect#activate callback)
103     in
104     addDebugItem "dump environment to \"env.dump\"" (fun _ ->
105       let oc = open_out "env.dump" in
106       CicEnvironment.dump_to_channel oc;
107       close_out oc);
108     addDebugItem "load environment from \"env.dump\"" (fun _ ->
109       let ic = open_in "env.dump" in
110       CicEnvironment.restore_from_channel ic;
111       close_in ic);
112     addDebugItem "dump universes" (fun _ ->
113       List.iter (fun (u,_,g) -> 
114         prerr_endline (UriManager.string_of_uri u); 
115         CicUniv.print_ugraph g) (CicEnvironment.list_obj ())
116       );
117     addDebugItem "dump environment content" (fun _ ->
118       List.iter (fun (u,_,_) -> 
119         prerr_endline (UriManager.string_of_uri u)) 
120         (CicEnvironment.list_obj ()));
121     addDebugItem "print selections" (fun () ->
122       let cicMathView = MatitaMathView.cicMathView_instance () in
123       List.iter MatitaLog.debug (cicMathView#string_of_selections));
124     addDebugItem "dump getter settings" (fun _ ->
125       prerr_endline (Http_getter_env.env_to_string ()));
126     addDebugItem "getter: getalluris" (fun _ ->
127       List.iter prerr_endline (Http_getter.getalluris ()));
128     addDebugItem "dump script status" script#dump;
129     addDebugItem "dump configuration file to ./foo.conf.xml" (fun _ ->
130       Helm_registry.save_to "./foo.conf.xml");
131     addDebugItem "dump metasenv"
132       (fun _ ->
133          if script#onGoingProof () then
134            MatitaLog.debug (CicMetaSubst.ppmetasenv [] script#proofMetasenv));
135     addDebugItem "dump coercions Db" (fun _ ->
136       List.iter
137         (fun (s,t,u) -> 
138           MatitaLog.debug
139             (UriManager.name_of_uri u ^ ":"
140              ^ CoercDb.name_of_carr s ^ " -> " ^ CoercDb.name_of_carr t))
141         (CoercDb.to_list ()));
142     addDebugItem "print top-level grammar entries"
143       CicNotationParser.print_l2_pattern;
144     addDebugItem "dump moo to stderr" (fun _ ->
145       let status = (MatitaScript.current ())#status in
146       let moo, metadata = status.moo_content_rev in
147       List.iter (fun cmd -> prerr_endline
148         (GrafiteAstPp.pp_command cmd)) (List.rev moo);
149       List.iter (fun m -> prerr_endline
150         (GrafiteAstPp.pp_metadata m)) metadata);
151     addDebugItem "print metasenv goals and stack to stderr"
152       (fun _ ->
153         prerr_endline ("metasenv goals: " ^ String.concat " "
154           (List.map (fun (g, _, _) -> string_of_int g)
155             (MatitaScript.current ())#proofMetasenv));
156         prerr_endline ("stack: " ^ Continuationals.Stack.pp
157           (MatitaTypes.get_stack (MatitaScript.current ())#status)));
158 (*     addDebugItem "ask record choice"
159       (fun _ ->
160         MatitaLog.debug (string_of_int
161           (MatitaGtkMisc.ask_record_choice ~gui ~title:"title" ~message:"msg"
162           ~fields:["a"; "b"; "c"]
163           ~records:[
164             ["0"; "0"; "0"]; ["0"; "0"; "1"]; ["0"; "1"; "0"]; ["0"; "1"; "1"];
165             ["1"; "0"; "0"]; ["1"; "0"; "1"]; ["1"; "1"; "0"]; ["1"; "1"; "1"]]
166           ()))); *)
167     addDebugItem "rotate light bulbs"
168       (fun _ ->
169          let nb = gui#main#hintNotebook in
170          nb#goto_page ((nb#current_page + 1) mod 3));
171   end
172   (** Debugging }}} *)
173
174   (** {2 Command line parsing} *)
175
176 let set_matita_mode () =
177   let matita_mode =
178     if Filename.basename Sys.argv.(0) = "cicbrowser"
179     then "cicbrowser"
180     else "matita"
181   in
182   Helm_registry.set "matita.mode" matita_mode
183
184   (** {2 Main} *)
185
186 let _ =
187   set_matita_mode ();
188   at_exit (fun () -> print_endline "\nThanks for using Matita!\n");
189   Sys.catch_break true;
190   let args = Helm_registry.get_list Helm_registry.string "matita.args" in
191   if Helm_registry.get "matita.mode" = "cicbrowser" then  (* cicbrowser *)
192     let browser = MatitaMathView.cicBrowser () in
193     let uri = match args with [] -> "cic:/" | _ -> String.concat " " args in
194     browser#loadInput uri
195   else begin  (* matita *)
196     (try gui#loadScript (List.hd args) with Failure _ -> ());
197     gui#main#mainWin#show ();
198   end;
199   try
200     GtkThread.main ()
201   with Sys.Break -> ()
202
203 (* vim:set foldmethod=marker: *)