1 (* Copyright (C) 2004-2005, HELM Team.
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.
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.
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.
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,
22 * For details, see the HELM World-Wide-Web page,
23 * http://helm.cs.unibo.it/
33 (** {2 Initialization} *)
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 ()
43 (* let _ = Saturation.init () (* ALB to link paramodulation *) *)
45 (** {2 GUI callbacks} *)
47 let gui = MatitaGui.instance ()
52 ~source_view:gui#sourceView
53 ~mathviewer:(MatitaMathView.mathViewer ())
54 ~urichooser:(fun uris ->
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"))
62 with MatitaTypes.Cancel -> [])
65 (fun ~title ~message ->
66 MatitaGtkMisc.ask_confirmation ~title ~message
67 ~parent:gui#main#toplevel ())
68 ~develcreator:gui#createDevelopment
71 gui#sourceView#source_buffer#begin_not_undoable_action ();
74 gui#sourceView#source_buffer#end_not_undoable_action ();
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;
92 script#setGoal (Some (Continuationals.Stack.find_goal stack));
94 match script#goal with
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 *)
104 script#addObserver sequents_observer;
105 script#addObserver browser_observer
109 if BuildTimeConf.debug then begin
110 gui#main#debugMenu#misc#show ();
111 let addDebugItem ~label callback =
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 ())
118 addDebugItem "dump environment to \"env.dump\"" (fun _ ->
119 let oc = open_out "env.dump" in
120 CicEnvironment.dump_to_channel oc;
122 addDebugItem "load environment from \"env.dump\"" (fun _ ->
123 let ic = open_in "env.dump" in
124 CicEnvironment.restore_from_channel 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 ())
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"
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
149 prerr_endline (GrafiteAstPp.pp_command ~obj_pp:(fun _ -> assert false)
152 addDebugItem "print metasenv goals and stack to stderr"
154 prerr_endline ("metasenv goals: " ^ String.concat " "
155 (List.map (fun (g, _, _) -> string_of_int g)
156 (MatitaScript.current ())#proofMetasenv));
157 prerr_endline ("stack: " ^ Continuationals.Stack.pp
158 (GrafiteTypes.get_stack (MatitaScript.current ())#grafite_status)));
159 addDebugItem "Print current proof term"
164 (MatitaScript.current ())#grafite_status.GrafiteTypes.proof_status
166 | GrafiteTypes.No_proof -> (Cic.Implicit None)
167 | Incomplete_proof i -> let _,_,p,_ = i.GrafiteTypes.proof in p
168 | Proof p -> let _,_,p,_ = p in p
169 | Intermediate _ -> assert false)));
170 addDebugItem "Print current proof (natural language) to stderr"
173 (ObjPp.obj_to_string 120
175 (MatitaScript.current ())#grafite_status.GrafiteTypes.proof_status
177 | GrafiteTypes.No_proof -> assert false
178 | Incomplete_proof i ->
179 let _,m,p,ty = i.GrafiteTypes.proof in
180 Cic.CurrentProof ("current (incomplete) proof",m,p,ty,[],[])
181 | Proof (_,m,p,ty) ->
182 Cic.CurrentProof ("current proof",m,p,ty,[],[])
183 | Intermediate _ -> assert false)));
184 (* addDebugItem "ask record choice"
186 HLog.debug (string_of_int
187 (MatitaGtkMisc.ask_record_choice ~gui ~title:"title" ~message:"msg"
188 ~fields:["a"; "b"; "c"]
190 ["0"; "0"; "0"]; ["0"; "0"; "1"]; ["0"; "1"; "0"]; ["0"; "1"; "1"];
191 ["1"; "0"; "0"]; ["1"; "0"; "1"]; ["1"; "1"; "0"]; ["1"; "1"; "1"]]
193 (* addDebugItem "rotate light bulbs"
195 let nb = gui#main#hintNotebook in
196 nb#goto_page ((nb#current_page + 1) mod 3)); *)
197 addDebugSeparator ();
198 addDebugItem "disable all (pretty printing) notations"
199 (fun _ -> CicNotation.set_active_notations []);
200 addDebugItem "enable all (pretty printing) notations"
202 CicNotation.set_active_notations
203 (List.map fst (CicNotation.get_all_notations ())));
204 addDebugSeparator ();
205 addDebugItem "enable multiple disambiguation passes (default)"
206 (fun _ -> GrafiteDisambiguator.only_one_pass := false);
207 addDebugItem "enable only one disambiguation pass"
208 (fun _ -> GrafiteDisambiguator.only_one_pass := true);
209 addDebugSeparator ();
210 addDebugItem "enable coercions hiding"
211 (fun _ -> Acic2content.hide_coercions := true);
212 addDebugItem "disable coercions hiding"
213 (fun _ -> Acic2content.hide_coercions := false);
214 addDebugItem "show coercions graph" (fun _ ->
215 let c = MatitaMathView.cicBrowser () in
216 c#load (`About `Coercions));
217 addDebugItem "dump coercions Db" (fun _ ->
221 ((String.concat "," (List.map UriManager.name_of_uri ul)) ^ ":"
222 ^ CoercDb.name_of_carr s ^ " -> " ^ CoercDb.name_of_carr t))
223 (CoercDb.to_list ()));
224 addDebugSeparator ();
225 let mview () = (MatitaMathView.sequentsViewer_instance ())#cicMathView in
226 (* addDebugItem "save (sequent) MathML to matita.xml"
227 (fun _ -> ignore ((Gdome.domImplementation ())#saveDocumentToFile
228 ~doc:(HExtlib.unopt (mview ())#get_document) ~name:"matita.xml" ())); *)
229 addDebugItem "load (sequent) MathML from matita.xml"
230 (fun _ -> (mview ())#load_uri ~filename:"matita.xml");
234 (** {2 Command line parsing} *)
236 let set_matita_mode () =
238 if Filename.basename Sys.argv.(0) = "cicbrowser" ||
239 Filename.basename Sys.argv.(0) = "cicbrowser.opt"
243 Helm_registry.set "matita.mode" matita_mode
249 at_exit (fun () -> print_endline "\nThanks for using Matita!\n");
250 Sys.catch_break true;
251 let args = Helm_registry.get_list Helm_registry.string "matita.args" in
252 if Helm_registry.get "matita.mode" = "cicbrowser" then (* cicbrowser *)
253 let browser = MatitaMathView.cicBrowser () in
254 let uri = match args with [] -> "cic:/" | _ -> String.concat " " args in
255 browser#loadInput uri
256 else begin (* matita *)
257 (try gui#loadScript (List.hd args) with Failure _ -> ());
258 gui#main#mainWin#show ();
263 Sys.set_signal Sys.sigint
266 prerr_endline "Still cleaning the library: don't be impatient!"));
267 prerr_endline "Matita is cleaning up. Please wait.";
270 GrafiteTypes.get_string_option
271 (MatitaScript.current ())#grafite_status "baseuri"
273 LibraryClean.clean_baseuris [baseuri]
274 with GrafiteTypes.Option_error _ -> ()
276 (* vim:set foldmethod=marker: *)