]> matita.cs.unibo.it Git - helm.git/blob - matita/matitaInit.ml
- uniformed command line handling of matitamake with that of other matita tools
[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     (** 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       ConfigurationFile::init_status 
79     end
80   else
81     init_status
82
83 let initialize_db init_status = 
84   wants [ ConfigurationFile; CmdLine ] init_status;
85   if not (already_configured [ Db ] init_status) then
86     begin
87       if not (Helm_registry.get_bool "matita.system") then
88         MetadataTypes.ownerize_tables (Helm_registry.get "matita.owner");
89       LibraryDb.create_owner_environment ();
90       Db::init_status
91     end
92   else
93     init_status
94
95 let initialize_makelib init_status = 
96   wants [ConfigurationFile] init_status;
97   if not (already_configured [Makelib] init_status) then
98     begin
99       MatitamakeLib.initialize (); 
100       Makelib::init_status
101     end
102   else
103     init_status
104
105 let initialize_environment init_status = 
106   wants [ConfigurationFile] init_status;
107   if not (already_configured [Getter;Environment] init_status) then
108     begin
109       Http_getter.init ();
110       CicEnvironment.set_trust (* environment trust *)
111         (let trust =
112           Helm_registry.get_opt_default Helm_registry.get_bool
113             ~default:true "matita.environment_trust" in
114          fun _ -> trust);
115       Getter::Environment::init_status
116     end
117   else
118     init_status 
119   
120 let status = ref []
121
122 let usages = Hashtbl.create 11 (** app name (e.g. "matitac") -> usage string *)
123 let _ =
124   List.iter
125     (fun (name, s) -> Hashtbl.replace usages name s)
126     [ "matitac", 
127         sprintf "MatitaC v%s
128 Usage: matitac [ OPTION ... ] FILE
129 Options:"
130           BuildTimeConf.version;
131       "matita",
132         sprintf "Matita v%s
133 Usage: matita [ OPTION ... ] [ FILE ... ]
134 Options:"
135           BuildTimeConf.version;
136       "cicbrowser",
137         sprintf
138           "CIC Browser v%s
139 Usage: cicbrowser [ URL | WHELP QUERY ]
140 Options:"
141           BuildTimeConf.version;
142       "matitadep",
143         sprintf "MatitaDep v%s
144 Usage: matitadep [ OPTION ... ] FILE ...
145 Options:"
146           BuildTimeConf.version;
147       "matitaclean",
148         sprintf "MatitaClean v%s
149 Usage: matitaclean all
150        matitaclean [ (FILE | URI) ... ]
151 Options:"
152           BuildTimeConf.version;
153       "matitamake",
154         sprintf "MatitaMake v%s
155 Usage: matitamake [ OPTION ... ] (init | clean | list | destroy | build)
156   init
157     Parameters: name (the name of the development, required)
158     Description: tells matitamake that a new development radicated 
159       in the current working directory should be handled.
160   clean
161     Parameters: name (the name of the development to destroy, optional)
162       If omitted the development that holds the current working 
163       directory is used (if any).
164     Description: clean the develpoment.
165   list
166     Parameters: 
167     Description: lists the known developments and their roots.
168   destroy
169     Parameters: name (the name of the development to destroy, required)
170     Description: deletes a development (only from matitamake metadat, no
171       .ma files will be deleted).
172   build
173     Parameters: name (the name of the development to build, required)
174     Description: completely builds the develpoment.
175 Notes:
176   If target is omitted an 'all' will be used as the default.
177   With -build you can build a development wherever it is.
178   If you specify a target it implicitly refers to the development that
179   holds the current working directory (if any).
180 Options:"
181           BuildTimeConf.version;
182     ]
183 let default_usage =
184   sprintf "Matita v%s\nUsage: matita [ ARG ]\nOptions:" BuildTimeConf.version
185
186 let usage () =
187   let basename = Filename.basename Sys.argv.(0) in
188   let usage_key =
189     try Filename.chop_extension basename with Invalid_argument  _ -> basename
190   in
191   try Hashtbl.find usages usage_key with Not_found -> default_usage
192
193 let parse_cmdline init_status =
194   if not (already_configured [CmdLine] init_status) then begin
195     let includes = ref [ BuildTimeConf.stdlib_dir ] in
196     let args = ref [] in
197     let add_l l = fun s -> l := s :: !l in
198     let reduce_verbosity () =
199       Helm_registry.set_int "matita.verbosity"
200         (Helm_registry.get_int "matita.verbosity" - 1) in
201     let increase_verbosity () =
202       Helm_registry.set_int "matita.verbosity"
203         (Helm_registry.get_int "matita.verbosity" + 1) in
204     let arg_spec =
205       let std_arg_spec = [
206         "-I", Arg.String (add_l includes),
207           ("<path> Adds path to the list of searched paths for the "
208            ^ "include command");
209         "-conffile", Arg.Set_string conffile,
210           (Printf.sprintf ("<filename> Read configuration from filename"
211              ^^ "\n    Default: %s")
212             BuildTimeConf.matita_conf);
213         "-force",
214             Arg.Unit (fun () -> Helm_registry.set_bool "matita.force" true),
215             ("Force actions that would not be executed per default");
216         "-nodb", Arg.Unit (fun () -> Helm_registry.set_bool "db.nodb" true),
217             ("Avoid using external database connection"
218              ^ "\n    WARNING: disable many features");
219         "-noprofile", 
220           Arg.Unit (fun () -> Helm_registry.set_bool "matita.profile" false),
221           "Turns off profiling printings";
222         "-preserve",
223           Arg.Unit (fun () -> Helm_registry.set_bool "matita.preserve" true),
224           "Turns off automatic baseuri cleaning";
225         "-q", Arg.Unit reduce_verbosity, "Reduce verbosity";
226         "-system", Arg.Unit (fun () ->
227               Helm_registry.set_bool "matita.system" true),
228             ("Act on the system library instead of the user one"
229              ^ "\n    WARNING: not for the casual user");
230         "-v", Arg.Unit increase_verbosity, "Increase verbosity";
231       ] in
232       let debug_arg_spec =
233         if BuildTimeConf.debug then
234           [ "-debug",
235             Arg.Unit (fun () -> Helm_registry.set_bool "matita.debug" true),
236               ("Do not catch top-level exception "
237               ^ "(useful for backtrace inspection)");
238           ]
239         else []
240       in
241       std_arg_spec @ debug_arg_spec
242     in
243     let set_list ~key l =
244       Helm_registry.set_list Helm_registry.of_string ~key ~value:(List.rev !l)
245     in
246     Arg.parse arg_spec (add_l args) (usage ());
247     set_list ~key:"matita.includes" includes;
248     set_list ~key:"matita.args" args;
249     HExtlib.set_profiling_printings 
250       (fun () -> Helm_registry.get_bool "matita.profile");
251     CmdLine :: init_status
252   end else
253     init_status
254
255 let die_usage () =
256   print_endline (usage ());
257   exit 1
258
259 let initialize_all () =
260   status := 
261     List.fold_left (fun s f -> f s) !status
262     [ fill_registry; parse_cmdline; load_configuration; initialize_makelib;
263       initialize_db; initialize_environment ]
264 (*     initialize_notation 
265       (initialize_environment 
266         (initialize_db 
267           (initialize_makelib
268             (load_configuration
269               (parse_cmdline !status))))) *)
270
271 let load_configuration_file () =
272   status := load_configuration !status
273
274 let parse_cmdline () =
275   status := parse_cmdline !status
276
277 let fill_registry () =
278   status := fill_registry !status
279