]> matita.cs.unibo.it Git - helm.git/blob - matita/matitaInit.ml
maxipatch for support of multiple DBs.
[helm.git] / 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 (* $Id$ *)
27
28 open Printf
29
30 type thingsToInitilaize = 
31   ConfigurationFile | Db | Environment | Getter | Makelib | CmdLine | Registry
32   
33 exception FailedToInitialize of thingsToInitilaize
34
35 let wants s l = 
36   List.iter (
37     fun item -> 
38       if not (List.exists (fun x -> x = item) l) then
39         raise (FailedToInitialize item)) 
40   s
41
42 let already_configured s l =
43   List.for_all (fun item -> List.exists (fun x -> x = item) l) s
44   
45 let conffile = ref BuildTimeConf.matita_conf
46
47 let registry_defaults = [
48   "matita.debug",             "false";
49   "matita.external_editor",   "gvim -f -c 'go %p' %f";
50   "matita.preserve",          "false";
51   "matita.profile",           "true";
52   "matita.system",            "false";
53   "matita.verbosity",         "1";
54   "matita.bench",              "false";
55     (** verbosity level: 1 is the default, 0 is intuitively "quiet", > 1 is
56      * intuitively verbose *)
57 ]
58
59 let set_registry_values =
60   List.iter (fun key, value -> Helm_registry.set ~key ~value)
61
62 let fill_registry init_status =
63   if not (already_configured [ Registry ] init_status) then begin
64     set_registry_values registry_defaults;
65     Registry :: init_status
66   end else
67     init_status
68
69 let load_configuration init_status =
70   wants [ Registry ] init_status;
71   if not (already_configured [ConfigurationFile] init_status) then
72     begin
73       Helm_registry.load_from !conffile;
74       if not (Helm_registry.has "user.name") then begin
75         let login = (Unix.getpwuid (Unix.getuid ())).Unix.pw_name in
76         Helm_registry.set "user.name" login
77       end;
78       let home = Helm_registry.get_string "matita.basedir" in
79       let user_conf_file = home ^ "/matita.conf.xml" in
80       if HExtlib.is_regular user_conf_file then
81         begin
82           HLog.message ("Loading additional conf file from " ^ user_conf_file);
83           try
84             Helm_registry.load_from user_conf_file
85           with exn -> 
86             HLog.error
87               ("While loading conf file: " ^ snd (MatitaExcPp.to_string exn))
88         end;
89       ConfigurationFile::init_status 
90     end
91   else
92     init_status
93
94 let initialize_db init_status = 
95   wants [ ConfigurationFile; CmdLine ] init_status;
96   if not (already_configured [ Db ] init_status) then
97     begin
98       if not (Helm_registry.get_bool "matita.system") then
99         MetadataTypes.ownerize_tables (Helm_registry.get "matita.owner");
100       LibraryDb.create_owner_environment ();
101       Db::init_status
102     end
103   else
104     init_status
105
106 let initialize_makelib init_status = 
107   wants [ConfigurationFile] init_status;
108   if not (already_configured [Makelib] init_status) then
109     begin
110       MatitamakeLib.initialize (); 
111       Makelib::init_status
112     end
113   else
114     init_status
115
116 let initialize_environment init_status = 
117   wants [ConfigurationFile] init_status;
118   if not (already_configured [Getter;Environment] init_status) then
119     begin
120       Http_getter.init ();
121       if Helm_registry.get_bool "matita.system" then
122         Http_getter_storage.activate_system_mode ();
123       CicEnvironment.set_trust (* environment trust *)
124         (let trust =
125           Helm_registry.get_opt_default Helm_registry.get_bool
126             ~default:true "matita.environment_trust" in
127          fun _ -> trust);
128       Getter::Environment::init_status
129     end
130   else
131     init_status 
132   
133 let status = ref []
134
135 let usages = Hashtbl.create 11 (** app name (e.g. "matitac") -> usage string *)
136 let _ =
137   List.iter
138     (fun (name, s) -> Hashtbl.replace usages name s)
139     [ "matitac", 
140         sprintf "MatitaC v%s
141 Usage: matitac [ OPTION ... ] FILE
142 Options:"
143           BuildTimeConf.version;
144       "gragrep",
145         sprintf "Grafite Grep v%s
146 Usage: gragrep [ -r ] PATH
147 Options:"
148           BuildTimeConf.version;
149       "matitaprover",
150         sprintf "Matita's prover v%s
151 Usage: matitaprover [ -tptppath ] FILE.p
152 Options:"
153           BuildTimeConf.version;
154       "matita",
155         sprintf "Matita v%s
156 Usage: matita [ OPTION ... ] [ FILE ... ]
157 Options:"
158           BuildTimeConf.version;
159       "cicbrowser",
160         sprintf
161           "CIC Browser v%s
162 Usage: cicbrowser [ URL | WHELP QUERY ]
163 Options:"
164           BuildTimeConf.version;
165       "matitadep",
166         sprintf "MatitaDep v%s
167 Usage: matitadep [ OPTION ... ] FILE ...
168 Options:"
169           BuildTimeConf.version;
170       "matitaclean",
171         sprintf "MatitaClean v%s
172 Usage: matitaclean all
173        matitaclean [ (FILE | URI) ... ]
174 Options:"
175           BuildTimeConf.version;
176       "matitamake",
177         sprintf "MatitaMake v%s
178 Usage: matitamake [ OPTION ... ] (init | clean | list | destroy | build)
179   init
180     Parameters: name (the name of the development, required)
181                 root (the directory in which the delopment is rooted, 
182                       optional, default is current working directory)
183     Description: tells matitamake that a new development radicated 
184       in the current working directory should be handled.
185   clean
186     Parameters: name (the name of the development to destroy, optional)
187       If omitted the development that holds the current working 
188       directory is used (if any).
189     Description: clean the develpoment.
190   list
191     Parameters: 
192     Description: lists the known developments and their roots.
193   destroy
194     Parameters: name (the name of the development to destroy, required)
195     Description: deletes a development (only from matitamake metadat, no
196       .ma files will be deleted).
197   build
198     Parameters: name (the name of the development to build, required)
199     Description: completely builds the develpoment.
200   publish
201     Parameters: name (the name of the development to publish, required)
202     Description: cleans the development in the user space, rebuilds it
203       in the system space ('ro' repositories, that for this operation 
204       becames writable). 
205 Notes:
206   If target is omitted an 'all' will be used as the default.
207   With -build you can build a development wherever it is.
208   If you specify a target it implicitly refers to the development that
209   holds the current working directory (if any).
210 Options:"
211           BuildTimeConf.version;
212     ]
213 let default_usage =
214   sprintf "Matita v%s\nUsage: matita [ ARG ]\nOptions:" BuildTimeConf.version
215
216 let usage () =
217   let basename = Filename.basename Sys.argv.(0) in
218   let usage_key =
219     try Filename.chop_extension basename with Invalid_argument  _ -> basename
220   in
221   try Hashtbl.find usages usage_key with Not_found -> default_usage
222
223 let extra_cmdline_specs = ref []
224 let add_cmdline_spec l = extra_cmdline_specs := l @ !extra_cmdline_specs
225
226 let parse_cmdline init_status =
227   if not (already_configured [CmdLine] init_status) then begin
228     let includes = ref [] in
229     let default_includes = [ 
230       ".";
231       BuildTimeConf.stdlib_dir_devel;
232       BuildTimeConf.stdlib_dir_installed ; ] 
233     in
234     let absolutize s =
235       if Pcre.pmatch ~pat:"^/" s then s else Sys.getcwd() ^"/"^s
236     in
237     let args = ref [] in
238     let add_l l = fun s -> l := s :: !l in
239     let reduce_verbosity () =
240       Helm_registry.set_int "matita.verbosity"
241         (Helm_registry.get_int "matita.verbosity" - 1) in
242     let increase_verbosity () =
243       Helm_registry.set_int "matita.verbosity"
244         (Helm_registry.get_int "matita.verbosity" + 1) in
245     let arg_spec =
246       let std_arg_spec = [
247         "-I", Arg.String (add_l includes),
248           ("<path> Adds path to the list of searched paths for the "
249            ^ "include command");
250         "-conffile", Arg.Set_string conffile,
251           (Printf.sprintf ("<filename> Read configuration from filename"
252              ^^ "\n    Default: %s")
253             BuildTimeConf.matita_conf);
254         "-force",
255             Arg.Unit (fun () -> Helm_registry.set_bool "matita.force" true),
256             ("Force actions that would not be executed per default");
257         "-noprofile", 
258           Arg.Unit (fun () -> Helm_registry.set_bool "matita.profile" false),
259           "Turns off profiling printings";
260         "-profile-only",
261           Arg.String (fun rex -> Helm_registry.set "matita.profile_only" rex),
262           "Activates only profiler with label matching the provided regex";
263         "-bench", 
264           Arg.Unit (fun () -> Helm_registry.set_bool "matita.bench" true),
265           "Turns on parsable output on stdout, that is timings for matitac...";
266         "-preserve",
267           Arg.Unit (fun () -> Helm_registry.set_bool "matita.preserve" true),
268           "Turns off automatic baseuri cleaning";
269         "-q", Arg.Unit reduce_verbosity, "Reduce verbosity";
270         "-system", Arg.Unit (fun () ->
271               Helm_registry.set_bool "matita.system" true),
272             ("Act on the system library instead of the user one"
273              ^ "\n    WARNING: not for the casual user");
274         "-v", Arg.Unit increase_verbosity, "Increase verbosity";
275       ] in
276       let debug_arg_spec =
277         if BuildTimeConf.debug then
278           [ "-debug",
279             Arg.Unit (fun () -> Helm_registry.set_bool "matita.debug" true),
280               ("Do not catch top-level exception "
281               ^ "(useful for backtrace inspection)");
282           ]
283         else []
284       in
285       std_arg_spec @ debug_arg_spec @ !extra_cmdline_specs
286     in
287     let set_list ~key l =
288       Helm_registry.set_list Helm_registry.of_string ~key ~value:l
289     in
290     Arg.parse arg_spec (add_l args) (usage ());
291     let includes = 
292       List.map absolutize ((List.rev !includes) @ default_includes) in
293     set_list ~key:"matita.includes" includes;
294     let args = List.rev (List.filter (fun x -> x <> "") !args) in
295     set_list ~key:"matita.args" args;
296     HExtlib.set_profiling_printings 
297       (fun s -> 
298         Helm_registry.get_bool "matita.profile" && 
299         Pcre.pmatch 
300           ~pat:(Helm_registry.get_opt_default 
301                   Helm_registry.string ~default:".*" "matita.profile_only") 
302           s);
303     CmdLine :: init_status
304   end else
305     init_status
306
307 let die_usage () =
308   print_endline (usage ());
309   exit 1
310
311 let initialize_all () =
312   status := 
313     List.fold_left (fun s f -> f s) !status
314     [ fill_registry; parse_cmdline; load_configuration; initialize_makelib;
315       initialize_db; initialize_environment ]
316 (*     initialize_notation 
317       (initialize_environment 
318         (initialize_db 
319           (initialize_makelib
320             (load_configuration
321               (parse_cmdline !status))))) *)
322
323 let load_configuration_file () =
324   status := load_configuration !status
325
326 let parse_cmdline () =
327   status := parse_cmdline !status
328
329 let fill_registry () =
330   status := fill_registry !status
331 ;;
332
333 Inversion_principle.init ()