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