]> matita.cs.unibo.it Git - helm.git/blob - helm/matita/matita.ml
checked in new version of matita from svn
[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 ~buffer:gui#main#scriptTextView#buffer
63     ~init:(Lazy.force MatitaEngine.initial_status) ()
64
65   (* math viewers *)
66 let _ =
67   let sequent_viewer = MatitaMathView.sequentViewer_instance () in
68   let sequents_viewer = MatitaMathView.sequentsViewer_instance () in
69   sequent_viewer#set_href_callback
70     (Some (fun uri -> (MatitaMathView.cicBrowser ())#loadUri uri));
71   let browser_observer _ = MatitaMathView.refresh_all_browsers () in
72   let sequents_observer status =
73     sequents_viewer#reset;
74     match status.proof_status with
75     | Incomplete_proof ((proof, goal) as status) ->
76         sequents_viewer#load_sequents status;
77         sequents_viewer#goto_sequent goal
78     | _ -> ()
79   in
80   script#addObserver sequents_observer;
81   script#addObserver browser_observer
82
83   (** <DEBUGGING> *)
84 let _ =
85   if BuildTimeConf.debug then begin
86     gui#main#debugMenu#misc#show ();
87     let addDebugItem ~label callback =
88       let item =
89         GMenu.menu_item ~packing:gui#main#debugMenu_menu#append ~label ()
90       in
91       ignore (item#connect#activate callback)
92     in
93     addDebugItem "dump environment to \"env.dump\"" (fun _ ->
94       let oc = open_out "env.dump" in
95       CicEnvironment.dump_to_channel oc;
96       close_out oc);
97     addDebugItem "print selected terms" (fun () ->
98       let i = ref 0 in
99       List.iter
100         (fun t ->
101            incr i;
102            MatitaLog.debug (sprintf "%d: %s" !i (CicPp.ppterm t)))
103         (MatitaMathView.sequentViewer_instance ())#get_selected_terms);
104     addDebugItem "dump getter settings" (fun _ ->
105       prerr_endline (Http_getter_env.env_to_string ()));
106     addDebugItem "getter: update"
107       (fun _ ->
108          ignore (Thread.create (fun () ->
109            MatitaLog.message "Rebuilding getter maps in background ...";
110            Http_getter.update ();
111            MatitaLog.message "Getter maps successfully rebuilt.") ()));
112     addDebugItem "getter: getalluris" (fun _ ->
113       List.iter prerr_endline (Http_getter.getalluris ()));
114     addDebugItem "dump script status" script#dump;
115     addDebugItem "dump metasenv"
116       (fun _ ->
117          if script#onGoingProof () then
118            MatitaLog.debug (CicMetaSubst.ppmetasenv script#proofMetasenv []));
119     addDebugItem "rotate light bulbs"
120       (fun _ ->
121          let nb = gui#main#hintNotebook in
122          nb#goto_page ((nb#current_page + 1) mod 3));
123   end
124
125   (** </DEBUGGING> *)
126
127 let _ =
128   at_exit
129     (fun () ->
130        Http_getter_logger.log "Sync map tree to disk...";
131        Http_getter.sync_dump_file ();
132        print_endline "\nThanks for using Matita!\n");
133   Sys.catch_break true;
134   (try
135      script#loadFrom Sys.argv.(1);
136    with Invalid_argument _ -> ());
137   if Filename.basename Sys.argv.(0) = "cicbrowser" then begin (* cicbrowser *)
138     Helm_registry.set "matita.mode" "cicbrowser";
139     let browser = MatitaMathView.cicBrowser () in
140     try
141       browser#loadUri Sys.argv.(1)
142     with Invalid_argument _ -> ()
143   end else begin  (* matita *)
144     Helm_registry.set "matita.mode" "matita";
145     gui#main#mainWin#show ();
146   end;
147   try
148     GtkThread.main ()
149   with Sys.Break -> ()
150