]> matita.cs.unibo.it Git - helm.git/blob - helm/matita/matitaInit.ml
ocaml 3.09 transition
[helm.git] / helm / matita / matitaInit.ml
1 (* Copyright (C) 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 type thingsToInitilaize = 
29   ConfigurationFile | Db | Environment | Getter | Notation | Makelib | CmdLine
30   
31 exception FailedToInitialize of thingsToInitilaize
32
33 let wants s l = 
34   List.iter (
35     fun item -> 
36       if not (List.exists (fun x -> x = item) l) then
37         raise (FailedToInitialize item)) 
38   s
39
40 let already_configured s l =
41   List.for_all (fun item -> List.exists (fun x -> x = item) l) s
42   
43 let tilde_expand_key k =
44   try
45     Helm_registry.set k (HExtlib.tilde_expand (Helm_registry.get k))
46   with Helm_registry.Key_not_found _ -> ()
47
48 let load_configuration init_status =
49   if not (already_configured [ConfigurationFile] init_status) then
50     begin
51       Helm_registry.load_from BuildTimeConf.matita_conf;
52       if not (Helm_registry.has "user.name") then begin
53         let login = (Unix.getpwuid (Unix.getuid ())).Unix.pw_name in
54         Helm_registry.set "user.name" login
55       end;
56       tilde_expand_key "matita.basedir";
57       tilde_expand_key "user.home";
58       ConfigurationFile::init_status 
59     end
60   else
61     init_status
62
63 let initialize_db init_status = 
64   wants [ ConfigurationFile; CmdLine ] init_status;
65   if not (already_configured [ Db ] init_status) then
66     begin
67       MetadataTypes.ownerize_tables (Helm_registry.get "matita.owner");
68       MatitaDb.create_owner_environment ();
69       Db::init_status
70     end
71   else
72     init_status
73
74 let initialize_makelib init_status = 
75   wants [ConfigurationFile] init_status;
76   if not (already_configured [Makelib] init_status) then
77     begin
78       MatitamakeLib.initialize (); 
79       Makelib::init_status
80     end
81   else
82     init_status
83
84 let initialize_notation init_status = 
85   wants [ConfigurationFile] init_status;
86   if not (already_configured [Notation] init_status) then
87     begin
88       CicNotation.load_notation BuildTimeConf.core_notation_script;
89       Notation::init_status
90     end
91   else
92     init_status
93
94 let initialize_environment init_status = 
95   wants [ConfigurationFile] init_status;
96   if not (already_configured [Getter;Environment] init_status) then
97     begin
98       Http_getter.init ();
99       CicEnvironment.set_trust (* environment trust *)
100         (let trust = Helm_registry.get_bool "matita.environment_trust" in
101          fun _ -> trust);
102       Getter::Environment::init_status
103     end
104   else
105     init_status 
106   
107 let status = ref []
108
109 let usages = Hashtbl.create 11
110 let _ =
111   List.iter
112     (fun (name, s) -> Hashtbl.replace usages name s)
113     [ "matitac", 
114         sprintf "MatitaC v%s
115 Usage: matitac [ OPTION ... ] FILE
116 Options:"
117           BuildTimeConf.version;
118       "matita",
119         sprintf "Matita v%s
120 Usage: matita [ OPTION ... ] [ FILE ... ]
121 Options:"
122           BuildTimeConf.version;
123       "cicbrowser",
124         sprintf
125           "CIC Browser v%s
126 Usage: cicbrowser [ URL | WHELP QUERY ]
127 Options:"
128           BuildTimeConf.version;
129       "matitadep",
130         sprintf "MatitaDep v%s
131 Usage: matitadep [ OPTION ... ] FILE ...
132 Options:"
133           BuildTimeConf.version;
134       "matitaclean",
135         sprintf "MatitaClean v%s
136 Usage: matitaclean all
137        matitaclean [ (FILE | URI) ... ]
138 Options:"
139           BuildTimeConf.version;
140     ]
141 let default_usage =
142   sprintf "Matita v%s\nUsage: matita [ ARG ]\nOptions:" BuildTimeConf.version
143
144 let usage () =
145   let basename = Filename.basename Sys.argv.(0) in
146   let usage_key =
147     try Filename.chop_extension basename with Invalid_argument  _ -> basename
148   in
149   try Hashtbl.find usages usage_key with Not_found -> default_usage
150
151 let registry_defaults =
152   [
153     "db.nodb",                  "false";
154     "matita.debug",             "false";
155     "matita.external_editor",   "gvim -f -c 'go %p' %f";
156     "matita.preserve",          "false";
157     "matita.quiet",             "false";
158     "matita.profile",           "true";
159   ]
160
161 let set_registry_values =
162   List.iter (fun key, value -> Helm_registry.set ~key ~value)
163
164 let parse_cmdline init_status =
165   if not (already_configured [CmdLine] init_status) then begin
166     let includes = ref [] in
167     let args = ref [] in
168     let add_l l = fun s -> l := s :: !l in
169     let arg_spec =
170       let std_arg_spec = [
171         "-I", Arg.String (add_l includes),
172           ("<path> Adds path to the list of searched paths for the "
173            ^ "include command");
174         "-q", Arg.Unit (fun () -> Helm_registry.set_bool "matita.quiet" true),
175           "Turn off verbose compilation";
176         "-preserve",
177           Arg.Unit (fun () -> Helm_registry.set_bool "matita.preserve" true),
178           "Turns off automatic baseuri cleaning";
179         "-nodb", Arg.Unit (fun () -> Helm_registry.set_bool "db.nodb" true),
180               ("Avoid using external database connection "
181                ^ "(WARNING: disable many features)");
182         "-noprofile", 
183           Arg.Unit (fun () -> Helm_registry.set_bool "matita.profile" false),
184           "Turns off profiling printings";
185       ] in
186       let debug_arg_spec =
187         if BuildTimeConf.debug then
188           [ "-debug",
189             Arg.Unit (fun () -> Helm_registry.set_bool "matita.debug" true),
190               ("Do not catch top-level exception "
191               ^ "(useful for backtrace inspection)");
192           ]
193         else []
194       in
195       std_arg_spec @ debug_arg_spec
196     in
197     let set_list ~key l =
198       Helm_registry.set_list Helm_registry.of_string ~key ~value:(List.rev !l)
199     in
200     set_registry_values registry_defaults;
201     Arg.parse arg_spec (add_l args) (usage ());
202     set_list ~key:"matita.includes" includes;
203     set_list ~key:"matita.args" args;
204     HExtlib.set_profiling_printings 
205       (fun () -> Helm_registry.get_bool "matita.profile");
206     CmdLine :: init_status
207   end else
208     init_status
209
210 let die_usage () =
211   print_endline (usage ());
212   exit 1
213
214 let initialize_all () =
215   status := 
216     List.fold_left (fun s f -> f s) !status
217       [ parse_cmdline; load_configuration; initialize_makelib;
218         initialize_db; initialize_environment; initialize_notation ]
219 (*     initialize_notation 
220       (initialize_environment 
221         (initialize_db 
222           (initialize_makelib
223             (load_configuration
224               (parse_cmdline !status))))) *)
225
226 let load_configuration_file () =
227   status := load_configuration !status
228
229 let initialize_notation () =
230   status := initialize_notation (load_configuration !status)
231
232 let parse_cmdline () =
233   status := parse_cmdline !status
234