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