]> matita.cs.unibo.it Git - helm.git/blob - matita/matita.ml
198fad3c57fc54ab90d23ec58eee46e728fdfbe6
[helm.git] / 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 (* $Id$ *)
27
28 open Printf
29
30 open MatitaGtkMisc
31 open GrafiteTypes
32
33 (** {2 Initialization} *)
34
35 let _ = 
36   MatitaInit.add_cmdline_spec
37     ["-tptppath",Arg.String 
38       (fun s -> Helm_registry.set_string "matita.tptppath" s),
39       "Where to find the Axioms/ and Problems/ directory"];
40   MatitaInit.initialize_all ()
41 ;;
42
43 (* let _ = Saturation.init () (* ALB to link paramodulation *) *)
44
45 (** {2 GUI callbacks} *)
46
47 let gui = MatitaGui.instance ()
48
49 let script =
50   let s = 
51     MatitaScript.script 
52       ~source_view:gui#sourceView
53       ~mathviewer:(MatitaMathView.mathViewer ())
54       ~urichooser:(fun uris ->
55         try
56           MatitaGui.interactive_uri_choice ~selection_mode:`SINGLE
57           ~title:"Matita: URI chooser" 
58           ~msg:"Select the URI" ~hide_uri_entry:true
59           ~hide_try:true ~ok_label:"_Apply" ~ok_action:`SELECT
60           ~copy_cb:(fun s -> gui#sourceView#buffer#insert ("\n"^s^"\n"))
61           () ~id:"boh?" uris
62         with MatitaTypes.Cancel -> [])
63       ~set_star:gui#setStar
64       ~ask_confirmation:
65         (fun ~title ~message -> 
66             MatitaGtkMisc.ask_confirmation ~title ~message 
67             ~parent:gui#main#toplevel ())
68       ~rootcreator:gui#createRoot
69       ()
70   in
71   gui#sourceView#source_buffer#begin_not_undoable_action ();
72   s#reset (); 
73   s#template (); 
74   gui#sourceView#source_buffer#end_not_undoable_action ();
75   s
76   
77   (* math viewers *)
78 let _ =
79   let cic_math_view = MatitaMathView.cicMathView_instance () in
80   let sequents_viewer = MatitaMathView.sequentsViewer_instance () in
81   sequents_viewer#load_logo;
82   cic_math_view#set_href_callback
83     (Some (fun uri -> (MatitaMathView.cicBrowser ())#load
84       (`Uri (UriManager.uri_of_string uri))));
85   let browser_observer _ _ = MatitaMathView.refresh_all_browsers () in
86   let sequents_observer _ grafite_status =
87     sequents_viewer#reset;
88     match grafite_status.proof_status with
89     | Incomplete_proof ({ stack = stack } as incomplete_proof) ->
90         sequents_viewer#load_sequents incomplete_proof;
91         (try
92           script#setGoal (Some (Continuationals.Stack.find_goal stack));
93           let goal =
94            match script#goal with
95               None -> assert false
96             | Some n -> n
97           in
98            sequents_viewer#goto_sequent goal
99         with Failure _ -> script#setGoal None);
100     | Proof proof -> sequents_viewer#load_logo_with_qed
101     | No_proof -> sequents_viewer#load_logo
102     | Intermediate _ -> assert false (* only the engine may be in this state *)
103   in
104   script#addObserver sequents_observer;
105   script#addObserver browser_observer
106
107   (** {{{ Debugging *)
108 let _ =
109   if BuildTimeConf.debug then begin
110     gui#main#debugMenu#misc#show ();
111     let addDebugItem ~label callback =
112       let item =
113         GMenu.menu_item ~packing:gui#main#debugMenu_menu#append ~label () in
114       ignore (item#connect#activate callback) in
115     let addDebugSeparator () =
116       ignore (GMenu.separator_item ~packing:gui#main#debugMenu_menu#append ())
117     in
118     addDebugItem "dump environment to \"env.dump\"" (fun _ ->
119       let oc = open_out "env.dump" in
120       CicEnvironment.dump_to_channel oc;
121       close_out oc);
122     addDebugItem "load environment from \"env.dump\"" (fun _ ->
123       let ic = open_in "env.dump" in
124       CicEnvironment.restore_from_channel ic;
125       close_in ic);
126     addDebugItem "dump universes" (fun _ ->
127       List.iter (fun (u,_,g) -> 
128         prerr_endline (UriManager.string_of_uri u); 
129         CicUniv.print_ugraph g) (CicEnvironment.list_obj ())
130       );
131     addDebugItem "dump environment content" (fun _ ->
132       List.iter (fun (u,_,_) -> 
133         prerr_endline (UriManager.string_of_uri u)) 
134         (CicEnvironment.list_obj ()));
135     addDebugItem "dump script status" script#dump;
136     addDebugItem "dump configuration file to ./foo.conf.xml" (fun _ ->
137       Helm_registry.save_to "./foo.conf.xml");
138     addDebugItem "dump metasenv"
139       (fun _ ->
140          if script#onGoingProof () then
141            HLog.debug (CicMetaSubst.ppmetasenv [] script#proofMetasenv));
142     addDebugItem "print top-level grammar entries"
143       CicNotationParser.print_l2_pattern;
144     addDebugItem "dump moo to stderr" (fun _ ->
145       let grafite_status = (MatitaScript.current ())#grafite_status in
146       let moo = grafite_status.moo_content_rev in
147       List.iter
148         (fun cmd ->
149           prerr_endline
150            (GrafiteAstPp.pp_command
151              ~term_pp:(fun _ -> assert false)
152              ~obj_pp:(fun _ -> assert false)
153              cmd))
154         (List.rev moo));
155     addDebugItem "print metasenv goals and stack to stderr"
156       (fun _ ->
157         prerr_endline ("metasenv goals: " ^ String.concat " "
158           (List.map (fun (g, _, _) -> string_of_int g)
159             (MatitaScript.current ())#proofMetasenv));
160         prerr_endline ("stack: " ^ Continuationals.Stack.pp
161           (GrafiteTypes.get_stack (MatitaScript.current ())#grafite_status)));
162      addDebugItem "Print current proof term" 
163        (fun _ -> 
164         HLog.debug
165           (CicPp.ppterm 
166             (match 
167             (MatitaScript.current ())#grafite_status.GrafiteTypes.proof_status
168             with
169             | GrafiteTypes.No_proof -> (Cic.Implicit None)
170             | Incomplete_proof i -> let _,_,_subst,p,_, _ = i.GrafiteTypes.proof in p
171             | Proof p -> let _,_,_subst,p,_, _ = p in p
172             | Intermediate _ -> assert false)));
173      addDebugItem "Print current proof (natural language) to stderr" 
174        (fun _ -> 
175         prerr_endline 
176           (ApplyTransformation.txt_of_cic_object 120 GrafiteAst.Declarative "" 
177             ~map_unicode_to_tex:(Helm_registry.get_bool
178               "matita.paste_unicode_as_tex")
179             (match 
180             (MatitaScript.current ())#grafite_status.GrafiteTypes.proof_status
181             with
182             | GrafiteTypes.No_proof -> assert false
183             | Incomplete_proof i -> 
184                 let _,m,_subst,p,ty, attrs = i.GrafiteTypes.proof in 
185                 Cic.CurrentProof ("current (incomplete) proof",m,p,ty,[],attrs)
186             | Proof (_,m,_subst,p,ty, attrs) -> 
187                 Cic.CurrentProof ("current proof",m,p,ty,[],attrs)
188             | Intermediate _ -> assert false)));
189 (*     addDebugItem "ask record choice"
190       (fun _ ->
191         HLog.debug (string_of_int
192           (MatitaGtkMisc.ask_record_choice ~gui ~title:"title" ~message:"msg"
193           ~fields:["a"; "b"; "c"]
194           ~records:[
195             ["0"; "0"; "0"]; ["0"; "0"; "1"]; ["0"; "1"; "0"]; ["0"; "1"; "1"];
196             ["1"; "0"; "0"]; ["1"; "0"; "1"]; ["1"; "1"; "0"]; ["1"; "1"; "1"]]
197           ()))); *)
198 (*     addDebugItem "rotate light bulbs"
199       (fun _ ->
200          let nb = gui#main#hintNotebook in
201          nb#goto_page ((nb#current_page + 1) mod 3)); *)
202     addDebugSeparator ();
203 (*
204     addDebugItem "meets between L and R" 
205       (fun _ -> 
206         let l = CoercDb.coerc_carr_of_term (CicUtil.term_of_uri
207           (UriManager.uri_of_string "cic:/matita/test/L.ind#xpointer(1/1)" )) 
208         in
209         let r = CoercDb.coerc_carr_of_term (CicUtil.term_of_uri
210           (UriManager.uri_of_string "cic:/matita/test/R.ind#xpointer(1/1)" )) 
211         in
212         let meets = CoercGraph.meets l r in
213         prerr_endline "MEETS:";
214         List.iter (fun carr -> prerr_endline (CicPp.ppterm (CoercDb.term_of_carr
215         carr))) meets
216     );
217     addDebugSeparator ();
218 *)
219     addDebugItem "disable high level pretty printer"
220       (fun _ -> CicMetaSubst.use_low_level_ppterm_in_context := true);
221     addDebugItem "enable high level pretty printer"
222       (fun _ -> CicMetaSubst.use_low_level_ppterm_in_context := false);
223 (* ZACK moved to the View menu
224     addDebugItem "disable all (pretty printing) notations"
225       (fun _ -> CicNotation.set_active_notations []);
226     addDebugItem "enable all (pretty printing) notations"
227       (fun _ ->
228         CicNotation.set_active_notations
229           (List.map fst (CicNotation.get_all_notations ())));
230 *)
231     addDebugSeparator ();
232     addDebugItem "enable multiple disambiguation passes (default)"
233       (fun _ -> GrafiteDisambiguator.only_one_pass := false);
234     addDebugItem "enable only one disambiguation pass"
235       (fun _ -> GrafiteDisambiguator.only_one_pass := true);
236     addDebugItem "always show all disambiguation errors"
237       (fun _ -> MatitaGui.all_disambiguation_passes := true);
238     addDebugItem "prune disambiguation errors"
239       (fun _ -> MatitaGui.all_disambiguation_passes := false);
240     addDebugSeparator ();
241 (* ZACK moved to the View menu
242     addDebugItem "enable coercions hiding"
243       (fun _ -> Acic2content.hide_coercions := true);
244     addDebugItem "disable coercions hiding"
245       (fun _ -> Acic2content.hide_coercions := false);
246 *)
247     addDebugItem "show coercions graph" (fun _ ->
248       let c = MatitaMathView.cicBrowser () in
249       c#load (`About `Coercions));
250     addDebugItem "show coercions graph (full)" (fun _ ->
251       let c = MatitaMathView.cicBrowser () in
252       c#load (`About `CoercionsFull));
253     addDebugItem "dump coercions Db" (fun _ ->
254       List.iter
255       (fun (s,t,ul) -> 
256           HLog.debug
257            ((String.concat ","
258               (List.map
259                 (fun u,saturations ->
260                   UriManager.name_of_uri u ^
261                    "(" ^ string_of_int saturations ^ ")")
262                 ul)) ^ ":"
263              ^ CoercDb.name_of_carr s ^ " -> " ^ CoercDb.name_of_carr t))
264         (CoercDb.to_list ()));
265     addDebugSeparator ();
266     let mview () = (MatitaMathView.sequentsViewer_instance ())#cicMathView in
267 (*     addDebugItem "save (sequent) MathML to matita.xml"
268       (fun _ -> ignore ((Gdome.domImplementation ())#saveDocumentToFile
269         ~doc:(HExtlib.unopt (mview ())#get_document) ~name:"matita.xml" ())); *)
270     addDebugItem "load (sequent) MathML from matita.xml"
271       (fun _ -> (mview ())#load_uri ~filename:"matita.xml");
272     addDebugItem "autoWin"
273     (fun _ -> MatitaAutoGui.auto_dialog Auto.get_auto_status);
274   end
275   (** Debugging }}} *)
276
277   (** {2 Main} *)
278
279 let _ =
280   at_exit (fun () -> print_endline "\nThanks for using Matita!\n");
281   Sys.catch_break true;
282   let args = Helm_registry.get_list Helm_registry.string "matita.args" in
283   (try gui#loadScript (List.hd args) with Failure _ -> ());
284   gui#main#mainWin#show ();
285   try
286    GtkThread.main ()
287   with Sys.Break ->
288    Sys.set_signal Sys.sigint
289     (Sys.Signal_handle
290       (fun _ ->
291         prerr_endline "Still cleaning the library: don't be impatient!"));
292    prerr_endline "Matita is cleaning up. Please wait.";
293    let baseuri = 
294      GrafiteTypes.get_baseuri (MatitaScript.current ())#grafite_status
295    in
296      LibraryClean.clean_baseuris [baseuri]
297
298 (* vim:set foldmethod=marker: *)