]> matita.cs.unibo.it Git - helm.git/blob - matita/matita.ml
- cheanges for the new coercion stuff (including the generated graph)
[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 _ = MatitaInit.initialize_all ()
36 (* let _ = Saturation.init () (* ALB to link paramodulation *) *)
37
38 (** {2 GUI callbacks} *)
39
40 let gui = MatitaGui.instance ()
41
42 let script =
43   let s = 
44     MatitaScript.script 
45       ~source_view:gui#sourceView
46       ~mathviewer:(MatitaMathView.mathViewer ())
47       ~urichooser:(fun uris ->
48         try
49           MatitaGui.interactive_uri_choice ~selection_mode:`SINGLE
50           ~title:"Matita: URI chooser" 
51           ~msg:"Select the URI" ~hide_uri_entry:true
52           ~hide_try:true ~ok_label:"_Apply" ~ok_action:`SELECT
53           ~copy_cb:(fun s -> gui#sourceView#buffer#insert ("\n"^s^"\n"))
54           () ~id:"boh?" uris
55         with MatitaTypes.Cancel -> [])
56       ~set_star:gui#setStar
57       ~ask_confirmation:
58         (fun ~title ~message -> 
59             MatitaGtkMisc.ask_confirmation ~title ~message 
60             ~parent:gui#main#toplevel ())
61       ~develcreator:gui#createDevelopment
62       ()
63   in
64   gui#sourceView#source_buffer#begin_not_undoable_action ();
65   s#reset (); 
66   s#template (); 
67   gui#sourceView#source_buffer#end_not_undoable_action ();
68   s
69   
70   (* math viewers *)
71 let _ =
72   let cic_math_view = MatitaMathView.cicMathView_instance () in
73   let sequents_viewer = MatitaMathView.sequentsViewer_instance () in
74   sequents_viewer#load_logo;
75   cic_math_view#set_href_callback
76     (Some (fun uri -> (MatitaMathView.cicBrowser ())#load
77       (`Uri (UriManager.uri_of_string uri))));
78   let browser_observer _ _ = MatitaMathView.refresh_all_browsers () in
79   let sequents_observer _ grafite_status =
80     sequents_viewer#reset;
81     match grafite_status.proof_status with
82     | Incomplete_proof ({ stack = stack } as incomplete_proof) ->
83         sequents_viewer#load_sequents incomplete_proof;
84         (try
85           script#setGoal (Some (Continuationals.Stack.find_goal stack));
86           let goal =
87            match script#goal with
88               None -> assert false
89             | Some n -> n
90           in
91            sequents_viewer#goto_sequent goal
92         with Failure _ -> script#setGoal None);
93     | Proof proof -> sequents_viewer#load_logo_with_qed
94     | No_proof -> sequents_viewer#load_logo
95     | Intermediate _ -> assert false (* only the engine may be in this state *)
96   in
97   script#addObserver sequents_observer;
98   script#addObserver browser_observer
99
100   (** {{{ Debugging *)
101 let _ =
102   if BuildTimeConf.debug then begin
103     gui#main#debugMenu#misc#show ();
104     let addDebugItem ~label callback =
105       let item =
106         GMenu.menu_item ~packing:gui#main#debugMenu_menu#append ~label () in
107       ignore (item#connect#activate callback) in
108     let addDebugSeparator () =
109       ignore (GMenu.separator_item ~packing:gui#main#debugMenu_menu#append ())
110     in
111     addDebugItem "dump environment to \"env.dump\"" (fun _ ->
112       let oc = open_out "env.dump" in
113       CicEnvironment.dump_to_channel oc;
114       close_out oc);
115     addDebugItem "load environment from \"env.dump\"" (fun _ ->
116       let ic = open_in "env.dump" in
117       CicEnvironment.restore_from_channel ic;
118       close_in ic);
119     addDebugItem "dump universes" (fun _ ->
120       List.iter (fun (u,_,g) -> 
121         prerr_endline (UriManager.string_of_uri u); 
122         CicUniv.print_ugraph g) (CicEnvironment.list_obj ())
123       );
124     addDebugItem "dump environment content" (fun _ ->
125       List.iter (fun (u,_,_) -> 
126         prerr_endline (UriManager.string_of_uri u)) 
127         (CicEnvironment.list_obj ()));
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            HLog.debug (CicMetaSubst.ppmetasenv [] script#proofMetasenv));
135     addDebugItem "print top-level grammar entries"
136       CicNotationParser.print_l2_pattern;
137     addDebugItem "dump moo to stderr" (fun _ ->
138       let grafite_status = (MatitaScript.current ())#grafite_status in
139       let moo = grafite_status.moo_content_rev in
140       List.iter
141         (fun cmd ->
142           prerr_endline (GrafiteAstPp.pp_command ~obj_pp:(fun _ -> assert false)
143             cmd))
144         (List.rev moo));
145     addDebugItem "print metasenv goals and stack to stderr"
146       (fun _ ->
147         prerr_endline ("metasenv goals: " ^ String.concat " "
148           (List.map (fun (g, _, _) -> string_of_int g)
149             (MatitaScript.current ())#proofMetasenv));
150         prerr_endline ("stack: " ^ Continuationals.Stack.pp
151           (GrafiteTypes.get_stack (MatitaScript.current ())#grafite_status)));
152      addDebugItem "Print current proof term" 
153        (fun _ -> 
154         HLog.debug
155           (CicPp.ppterm 
156             (match 
157             (MatitaScript.current ())#grafite_status.GrafiteTypes.proof_status
158             with
159             | GrafiteTypes.No_proof -> (Cic.Implicit None)
160             | Incomplete_proof i -> let _,_,p,_ = i.GrafiteTypes.proof in p
161             | Proof p -> let _,_,p,_ = p in p
162             | Intermediate _ -> assert false)));
163      addDebugItem "Print current proof (natural language) to stderr" 
164        (fun _ -> 
165         prerr_endline 
166           (ObjPp.obj_to_string 120 
167             (match 
168             (MatitaScript.current ())#grafite_status.GrafiteTypes.proof_status
169             with
170             | GrafiteTypes.No_proof -> assert false
171             | Incomplete_proof i -> 
172                 let _,m,p,ty = i.GrafiteTypes.proof in 
173                 Cic.CurrentProof ("current (incomplete) proof",m,p,ty,[],[])
174             | Proof (_,m,p,ty) -> 
175                 Cic.CurrentProof ("current proof",m,p,ty,[],[])
176             | Intermediate _ -> assert false)));
177 (*     addDebugItem "ask record choice"
178       (fun _ ->
179         HLog.debug (string_of_int
180           (MatitaGtkMisc.ask_record_choice ~gui ~title:"title" ~message:"msg"
181           ~fields:["a"; "b"; "c"]
182           ~records:[
183             ["0"; "0"; "0"]; ["0"; "0"; "1"]; ["0"; "1"; "0"]; ["0"; "1"; "1"];
184             ["1"; "0"; "0"]; ["1"; "0"; "1"]; ["1"; "1"; "0"]; ["1"; "1"; "1"]]
185           ()))); *)
186 (*     addDebugItem "rotate light bulbs"
187       (fun _ ->
188          let nb = gui#main#hintNotebook in
189          nb#goto_page ((nb#current_page + 1) mod 3)); *)
190     addDebugSeparator ();
191     addDebugItem "disable all (pretty printing) notations"
192       (fun _ -> CicNotation.set_active_notations []);
193     addDebugItem "enable all (pretty printing) notations"
194       (fun _ ->
195         CicNotation.set_active_notations
196           (List.map fst (CicNotation.get_all_notations ())));
197     addDebugSeparator ();
198     addDebugItem "enable multiple disambiguation passes (default)"
199       (fun _ -> GrafiteDisambiguator.only_one_pass := false);
200     addDebugItem "enable only one disambiguation pass"
201       (fun _ -> GrafiteDisambiguator.only_one_pass := true);
202     addDebugSeparator ();
203     addDebugItem "enable coercions hiding"
204       (fun _ -> Acic2content.hide_coercions := true);
205     addDebugItem "disable coercions hiding"
206       (fun _ -> Acic2content.hide_coercions := false);
207     addDebugItem "show coercions graph" (fun _ ->
208       let c = MatitaMathView.cicBrowser () in
209       c#load (`About `Coercions));
210     addDebugItem "dump coercions Db" (fun _ ->
211       List.iter
212       (fun (s,t,ul) -> 
213           HLog.debug
214            ((String.concat "," (List.map UriManager.name_of_uri ul)) ^ ":"
215              ^ CoercDb.name_of_carr s ^ " -> " ^ CoercDb.name_of_carr t))
216         (CoercDb.to_list ()));
217     addDebugSeparator ();
218     let mview () = (MatitaMathView.sequentsViewer_instance ())#cicMathView in
219 (*     addDebugItem "save (sequent) MathML to matita.xml"
220       (fun _ -> ignore ((Gdome.domImplementation ())#saveDocumentToFile
221         ~doc:(HExtlib.unopt (mview ())#get_document) ~name:"matita.xml" ())); *)
222     addDebugItem "load (sequent) MathML from matita.xml"
223       (fun _ -> (mview ())#load_uri ~filename:"matita.xml");
224   end
225   (** Debugging }}} *)
226
227   (** {2 Command line parsing} *)
228
229 let set_matita_mode () =
230   let matita_mode =
231     if Filename.basename Sys.argv.(0) = "cicbrowser" || 
232        Filename.basename Sys.argv.(0) = "cicbrowser.opt"
233     then "cicbrowser"
234     else "matita"
235   in
236   Helm_registry.set "matita.mode" matita_mode
237
238   (** {2 Main} *)
239
240 let _ =
241   set_matita_mode ();
242   at_exit (fun () -> print_endline "\nThanks for using Matita!\n");
243   Sys.catch_break true;
244   let args = Helm_registry.get_list Helm_registry.string "matita.args" in
245   if Helm_registry.get "matita.mode" = "cicbrowser" then  (* cicbrowser *)
246     let browser = MatitaMathView.cicBrowser () in
247     let uri = match args with [] -> "cic:/" | _ -> String.concat " " args in
248     browser#loadInput uri
249   else begin  (* matita *)
250     (try gui#loadScript (List.hd args) with Failure _ -> ());
251     gui#main#mainWin#show ();
252   end;
253   try
254     GtkThread.main ()
255   with Sys.Break -> ()
256
257 (* vim:set foldmethod=marker: *)