]> matita.cs.unibo.it Git - helm.git/blob - helm/matita/matita.ml
attached macros: hint(partial), check
[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 MatitaTypes
30 open MatitaMisc
31
32 (** {2 Initialization} *)
33
34 let _ =
35   Helm_registry.load_from "matita.conf.xml";  (* read conf *)
36   Http_getter.init ();
37   MetadataTypes.ownerize_tables (Helm_registry.get "matita.owner");
38   MatitaDb.clean_owner_environment ();
39   MatitaDb.create_owner_environment ();
40   GtkMain.Rc.add_default_file BuildTimeConf.gtkrc;  (* loads gtk rc files *)
41   ignore (GMain.Main.init ());
42
43   (* environment trust *)
44   CicEnvironment.set_trust
45     (let trust = Helm_registry.get_bool "matita.environment_trust" in
46      fun _ -> trust)
47
48 (** {2 GUI callbacks} *)
49
50 let gui = MatitaGui.instance ()
51
52 let _ =
53   ignore (gui#main#newCicBrowserMenuItem#connect#activate (fun _ ->
54     ignore (MatitaMathView.cicBrowser ())));
55   (* disambiguator callback *)
56   MatitaDisambiguator.set_choose_uris_callback
57     (MatitaGui.interactive_uri_choice ());
58   MatitaDisambiguator.set_choose_interp_callback
59     (MatitaGui.interactive_interp_choice ())
60
61 let script =
62   MatitaScript.script 
63     ~buffer:gui#main#scriptTextView#buffer
64     ~init:(Lazy.force MatitaEngine.initial_status) 
65     ~mathviewer:(MatitaMathView.mathViewer ())
66     ()
67
68   (* math viewers *)
69 let _ =
70   let sequent_viewer = MatitaMathView.sequentViewer_instance () in
71   let sequents_viewer = MatitaMathView.sequentsViewer_instance () in
72   sequent_viewer#set_href_callback
73     (Some (fun uri -> (MatitaMathView.cicBrowser ())#loadUri uri));
74   let browser_observer _ = MatitaMathView.refresh_all_browsers () in
75   let sequents_observer status =
76     sequents_viewer#reset;
77     match status.proof_status with
78     | Incomplete_proof ((proof, goal) as status) ->
79         sequents_viewer#load_sequents status;
80         sequents_viewer#goto_sequent goal
81     | _ -> ()
82   in
83   script#addObserver sequents_observer;
84   script#addObserver browser_observer
85
86   (** <DEBUGGING> *)
87 let _ =
88   if BuildTimeConf.debug then begin
89     gui#main#debugMenu#misc#show ();
90     let addDebugItem ~label callback =
91       let item =
92         GMenu.menu_item ~packing:gui#main#debugMenu_menu#append ~label ()
93       in
94       ignore (item#connect#activate callback)
95     in
96     addDebugItem "dump environment to \"env.dump\"" (fun _ ->
97       let oc = open_out "env.dump" in
98       CicEnvironment.dump_to_channel oc;
99       close_out oc);
100     addDebugItem "print selected terms" (fun () ->
101       let i = ref 0 in
102       List.iter
103         (fun t ->
104            incr i;
105            MatitaLog.debug (sprintf "%d: %s" !i (CicPp.ppterm t)))
106         (MatitaMathView.sequentViewer_instance ())#get_selected_terms);
107     addDebugItem "dump getter settings" (fun _ ->
108       prerr_endline (Http_getter_env.env_to_string ()));
109     addDebugItem "getter: update"
110       (fun _ ->
111          ignore (Thread.create (fun () ->
112            MatitaLog.message "Rebuilding getter maps in background ...";
113            Http_getter.update ();
114            MatitaLog.message "Getter maps successfully rebuilt.") ()));
115     addDebugItem "getter: getalluris" (fun _ ->
116       List.iter prerr_endline (Http_getter.getalluris ()));
117     addDebugItem "dump script status" script#dump;
118     addDebugItem "dump metasenv"
119       (fun _ ->
120          if script#onGoingProof () then
121            MatitaLog.debug (CicMetaSubst.ppmetasenv script#proofMetasenv []));
122     addDebugItem "rotate light bulbs"
123       (fun _ ->
124          let nb = gui#main#hintNotebook in
125          nb#goto_page ((nb#current_page + 1) mod 3));
126   end
127
128   (** </DEBUGGING> *)
129
130 let _ =
131   at_exit
132     (fun () ->
133        Http_getter_logger.log "Sync map tree to disk...";
134        Http_getter.sync_dump_file ();
135        print_endline "\nThanks for using Matita!\n");
136   Sys.catch_break true;
137   (try
138      script#loadFrom Sys.argv.(1);
139    with Invalid_argument _ -> ());
140   if Filename.basename Sys.argv.(0) = "cicbrowser" then begin (* cicbrowser *)
141     Helm_registry.set "matita.mode" "cicbrowser";
142     let browser = MatitaMathView.cicBrowser () in
143     try
144       browser#loadUri Sys.argv.(1)
145     with Invalid_argument _ -> ()
146   end else begin  (* matita *)
147     Helm_registry.set "matita.mode" "matita";
148     gui#main#mainWin#show ();
149   end;
150   try
151     GtkThread.main ()
152   with Sys.Break -> ()
153