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 ())
70 Predefined_virtuals.load_predefined_virtuals ();
71 Predefined_virtuals.load_predefined_classes ();
72 gui#sourceView#source_buffer#begin_not_undoable_action ();
75 gui#sourceView#source_buffer#end_not_undoable_action ();
80 let cic_math_view = MatitaMathView.cicMathView_instance () in
81 let sequents_viewer = MatitaMathView.sequentsViewer_instance () in
82 sequents_viewer#load_logo;
83 cic_math_view#set_href_callback
87 `Uri (UriManager.uri_of_string uri)
89 UriManager.IllFormedUri _ ->
90 `NRef (NReference.reference_of_string uri)
92 (MatitaMathView.cicBrowser ())#load uri));
93 let browser_observer _ = MatitaMathView.refresh_all_browsers () in
94 let sequents_observer grafite_status =
95 sequents_viewer#reset;
96 match grafite_status#proof_status with
97 | Incomplete_proof ({ stack = stack } as incomplete_proof) ->
98 sequents_viewer#load_sequents grafite_status incomplete_proof;
100 script#setGoal (Some (Continuationals.Stack.find_goal stack));
102 match script#goal with
106 sequents_viewer#goto_sequent grafite_status goal
107 with Failure _ -> script#setGoal None);
108 | Proof proof -> sequents_viewer#load_logo_with_qed
110 (match grafite_status#ng_mode with
112 sequents_viewer#nload_sequents grafite_status;
115 (Some (Continuationals.Stack.find_goal grafite_status#stack));
117 match script#goal with
121 sequents_viewer#goto_sequent grafite_status goal
122 with Failure _ -> script#setGoal None);
123 | `CommandMode -> sequents_viewer#load_logo
125 | Intermediate _ -> assert false (* only the engine may be in this state *)
127 script#addObserver sequents_observer;
128 script#addObserver browser_observer
132 if BuildTimeConf.debug ||
133 Helm_registry.get_bool "matita.debug_menu"
135 gui#main#debugMenu#misc#show ();
136 let addDebugItem ~label callback =
138 GMenu.menu_item ~packing:gui#main#debugMenu_menu#append ~label () in
139 ignore (item#connect#activate callback) in
140 let addDebugSeparator () =
141 ignore (GMenu.separator_item ~packing:gui#main#debugMenu_menu#append ())
143 addDebugItem "dump aliases" (fun _ ->
144 let status = script#grafite_status in
145 LexiconEngine.dump_aliases HLog.debug "" status);
147 addDebugItem "dump interpretations" (fun _ ->
148 let status = script#lexicon_status in
150 List.filter (function LexiconAst.Interpretation _ -> true | _ -> false)
152 HLog.debug (String.concat "\n"
154 (fun x l -> (LexiconAstPp.pp_command x)::l)
155 (filter status.LexiconEngine.lexicon_content_rev) [])));
157 addDebugItem "dump environment to \"env.dump\"" (fun _ ->
158 let oc = open_out "env.dump" in
159 CicEnvironment.dump_to_channel oc;
161 addDebugItem "load environment from \"env.dump\"" (fun _ ->
162 let ic = open_in "env.dump" in
163 CicEnvironment.restore_from_channel ic;
165 addDebugItem "dump universes" (fun _ ->
166 List.iter (fun (u,_,g) ->
167 prerr_endline (UriManager.string_of_uri u);
168 CicUniv.print_ugraph g) (CicEnvironment.list_obj ())
170 addDebugItem "dump environment content" (fun _ ->
171 List.iter (fun (u,_,_) ->
172 prerr_endline (UriManager.string_of_uri u))
173 (CicEnvironment.list_obj ()));
174 addDebugItem "dump script status" script#dump;
175 addDebugItem "dump configuration file to ./foo.conf.xml" (fun _ ->
176 Helm_registry.save_to "./foo.conf.xml");
177 addDebugItem "dump metasenv"
179 if script#onGoingProof () then
180 HLog.debug (CicMetaSubst.ppmetasenv [] script#proofMetasenv));
181 addDebugItem "print top-level grammar entries"
182 CicNotationParser.print_l2_pattern;
183 addDebugItem "dump moo to stderr" (fun _ ->
184 let grafite_status = (MatitaScript.current ())#grafite_status in
185 let moo = grafite_status#moo_content_rev in
189 (GrafiteAstPp.pp_command
190 ~term_pp:(fun t -> CicPp.ppterm t)
191 ~obj_pp:(fun _ -> assert false)
194 addDebugItem "print metasenv goals and stack to stderr"
196 prerr_endline ("metasenv goals: " ^ String.concat " "
197 (List.map (fun (g, _, _) -> string_of_int g)
198 (MatitaScript.current ())#proofMetasenv));
199 prerr_endline ("stack: " ^ Continuationals.Stack.pp
200 (GrafiteTypes.get_stack (MatitaScript.current ())#grafite_status)));
201 addDebugItem "Print current proof term"
206 (MatitaScript.current ())#grafite_status#proof_status
208 | GrafiteTypes.No_proof -> (Cic.Implicit None)
209 | Incomplete_proof i ->
210 let _,_,_subst,p,_, _ = i.GrafiteTypes.proof in
212 | Proof p -> let _,_,_subst,p,_, _ = p in Lazy.force p
213 | Intermediate _ -> assert false)));
214 addDebugItem "Print current proof (natural language) to stderr"
217 (ApplyTransformation.txt_of_cic_object 120 []
218 ~map_unicode_to_tex:(Helm_registry.get_bool
219 "matita.paste_unicode_as_tex")
221 (MatitaScript.current ())#grafite_status#proof_status
223 | GrafiteTypes.No_proof -> assert false
224 | Incomplete_proof i ->
225 let _,m,_subst,p,ty, attrs = i.GrafiteTypes.proof in
226 Cic.CurrentProof ("current (incomplete) proof",m,Lazy.force p,ty,[],attrs)
227 | Proof (_,m,_subst,p,ty, attrs) ->
228 Cic.CurrentProof ("current proof",m,Lazy.force p,ty,[],attrs)
229 | Intermediate _ -> assert false)));
230 (* addDebugItem "ask record choice"
232 HLog.debug (string_of_int
233 (MatitaGtkMisc.ask_record_choice ~gui ~title:"title" ~message:"msg"
234 ~fields:["a"; "b"; "c"]
236 ["0"; "0"; "0"]; ["0"; "0"; "1"]; ["0"; "1"; "0"]; ["0"; "1"; "1"];
237 ["1"; "0"; "0"]; ["1"; "0"; "1"]; ["1"; "1"; "0"]; ["1"; "1"; "1"]]
239 (* addDebugItem "rotate light bulbs"
241 let nb = gui#main#hintNotebook in
242 nb#goto_page ((nb#current_page + 1) mod 3)); *)
243 addDebugSeparator ();
245 addDebugItem "meets between L and R"
247 let l = CoercDb.coerc_carr_of_term (CicUtil.term_of_uri
248 (UriManager.uri_of_string "cic:/matita/test/L.ind#xpointer(1/1)" ))
250 let r = CoercDb.coerc_carr_of_term (CicUtil.term_of_uri
251 (UriManager.uri_of_string "cic:/matita/test/R.ind#xpointer(1/1)" ))
253 let meets = CoercGraph.meets l r in
254 prerr_endline "MEETS:";
255 List.iter (fun carr -> prerr_endline (CicPp.ppterm (CoercDb.term_of_carr
258 addDebugSeparator ();
260 addDebugItem "disable high level pretty printer"
261 (fun _ -> CicMetaSubst.use_low_level_ppterm_in_context := true);
262 addDebugItem "enable high level pretty printer"
263 (fun _ -> CicMetaSubst.use_low_level_ppterm_in_context := false);
264 (* ZACK moved to the View menu
265 addDebugItem "disable all (pretty printing) notations"
266 (fun _ -> CicNotation.set_active_notations []);
267 addDebugItem "enable all (pretty printing) notations"
269 CicNotation.set_active_notations
270 (List.map fst (CicNotation.get_all_notations ())));
272 addDebugSeparator ();
273 addDebugItem "enable multiple disambiguation passes (default)"
274 (fun _ -> MultiPassDisambiguator.only_one_pass := false);
275 addDebugItem "enable only one disambiguation pass"
276 (fun _ -> MultiPassDisambiguator.only_one_pass := true);
277 addDebugItem "always show all disambiguation errors"
278 (fun _ -> MatitaGui.all_disambiguation_passes := true);
279 addDebugItem "prune disambiguation errors"
280 (fun _ -> MatitaGui.all_disambiguation_passes := false);
281 addDebugSeparator ();
282 (* ZACK moved to the View menu
283 addDebugItem "enable coercions hiding"
284 (fun _ -> Acic2content.hide_coercions := true);
285 addDebugItem "disable coercions hiding"
286 (fun _ -> Acic2content.hide_coercions := false);
288 addDebugItem "show coercions graph" (fun _ ->
289 let c = MatitaMathView.cicBrowser () in
290 c#load (`About `Coercions));
291 addDebugItem "show coercions graph (full)" (fun _ ->
292 let c = MatitaMathView.cicBrowser () in
293 c#load (`About `CoercionsFull));
294 addDebugItem "dump coercions Db" (fun _ ->
300 (fun u,saturations,_ ->
301 UriManager.name_of_uri u ^
302 "(" ^ string_of_int saturations ^ ")")
304 ^ CoercDb.string_of_carr s ^ " -> " ^ CoercDb.string_of_carr t))
305 (CoercDb.to_list (CoercDb.dump ())));
306 addDebugSeparator ();
307 let mview () = (MatitaMathView.sequentsViewer_instance ())#cicMathView in
308 (* addDebugItem "save (sequent) MathML to matita.xml"
309 (fun _ -> ignore ((Gdome.domImplementation ())#saveDocumentToFile
310 ~doc:(HExtlib.unopt (mview ())#get_document) ~name:"matita.xml" ())); *)
311 addDebugItem "load (sequent) MathML from matita.xml"
312 (fun _ -> (mview ())#load_uri ~filename:"matita.xml");
313 addDebugSeparator ();
314 addDebugItem "Expand virtuals"
315 (fun _ -> (MatitaScript.current ())#expandAllVirtuals);
322 at_exit (fun () -> print_endline "\nThanks for using Matita!\n");
323 Sys.catch_break true;
324 let args = Helm_registry.get_list Helm_registry.string "matita.args" in
325 (try gui#loadScript (List.hd args) with Failure _ -> ());
326 gui#main#mainWin#show ();
330 Sys.set_signal Sys.sigint
333 prerr_endline "Still cleaning the library: don't be impatient!"));
334 prerr_endline "Matita is cleaning up. Please wait.";
336 (MatitaScript.current ())#grafite_status#baseuri
338 LibraryClean.clean_baseuris [baseuri]
340 (* vim:set foldmethod=marker: *)