1 (* Copyright (C) 2005, HELM Team.
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.
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.
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.
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,
22 * For details, see the HELM World-Wide-Web page,
23 * http://helm.cs.unibo.it/
28 type thingsToInitilaize =
29 ConfigurationFile | Db | Environment | Getter | CmdLine | Registry
31 exception FailedToInitialize of thingsToInitilaize
36 if not (List.exists (fun x -> x = item) l) then
37 raise (FailedToInitialize item))
40 let already_configured s l =
41 List.for_all (fun item -> List.exists (fun x -> x = item) l) s
43 let conffile = ref BuildTimeConf.matita_conf
45 let registry_defaults = [
46 "matita.debug", "false";
47 "matita.debug_menu", "false";
48 "matita.external_editor", "gvim -f -c 'go %p' %f";
49 "matita.profile", "true";
50 "matita.system", "false";
51 "matita.verbose", "false";
52 "matita.paste_unicode_as_tex", "false";
53 "matita.noinnertypes", "false";
54 "matita.do_heavy_checks", "true";
56 "matita.extract", "false";
59 let set_registry_values =
62 if not (Helm_registry.has key) then Helm_registry.set ~key ~value)
64 let fill_registry init_status =
65 if not (already_configured [ Registry ] init_status) then begin
66 set_registry_values registry_defaults;
67 Registry :: init_status
71 let load_configuration init_status =
72 if not (already_configured [ConfigurationFile] init_status) then
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
79 let home = Helm_registry.get_string "matita.basedir" in
80 let user_conf_file = home ^ "/matita.conf.xml" in
81 if HExtlib.is_regular user_conf_file then
83 HLog.message ("Loading additional conf file from " ^ user_conf_file);
85 Helm_registry.load_from user_conf_file
88 ("While loading conf file: " ^ snd (MatitaExcPp.to_string exn))
90 ConfigurationFile::init_status
95 let initialize_db init_status =
96 wants [ ConfigurationFile; CmdLine ] init_status;
97 if not (already_configured [ Db ] init_status) then
99 if not (Helm_registry.get_bool "matita.system") then
100 MetadataTypes.ownerize_tables (Helm_registry.get "matita.owner");
101 LibraryDb.create_owner_environment ();
107 let initialize_environment init_status =
108 wants [CmdLine] init_status;
109 if not (already_configured [Getter;Environment] init_status) then
112 if Helm_registry.get_bool "matita.system" then
113 Http_getter_storage.activate_system_mode ();
114 CicEnvironment.set_trust (* environment trust *)
116 Helm_registry.get_opt_default Helm_registry.get_bool
117 ~default:true "matita.environment_trust" in
119 Getter::Environment::init_status
126 let usages = Hashtbl.create 11 (** app name (e.g. "matitac") -> usage string *)
129 (fun (name, s) -> Hashtbl.replace usages name s)
131 Printf.sprintf "Matita batch compiler v%s
132 Usage: matitac [ OPTION ... ] FILE
134 BuildTimeConf.version;
136 Printf.sprintf "Matita (TPTP) prover v%s
137 Usage: matitaprover [ -tptppath ] FILE.p
139 BuildTimeConf.version;
141 Printf.sprintf "Matita interactive theorem prover v%s
142 Usage: matita [ OPTION ... ] [ FILE ]
144 BuildTimeConf.version;
146 Printf.sprintf "Matita depency file generator v%s
147 Usage: matitadep [ OPTION ... ]
149 BuildTimeConf.version;
151 Printf.sprintf "MatitaClean v%s
152 Usage: matitaclean all
153 matitaclean ( FILE | URI )
155 BuildTimeConf.version;
159 "Matita v%s\nUsage: matita [ ARG ]\nOptions:" BuildTimeConf.version
162 let basename = Filename.basename Sys.argv.(0) in
164 try Filename.chop_extension basename with Invalid_argument _ -> basename
166 try Hashtbl.find usages usage_key with Not_found -> default_usage
169 let extra_cmdline_specs = ref []
170 let add_cmdline_spec l = extra_cmdline_specs := l @ !extra_cmdline_specs
172 let parse_cmdline init_status =
173 if not (already_configured [CmdLine] init_status) then begin
174 wants [Registry] init_status;
175 let includes = ref [] in
176 let default_includes = [
177 BuildTimeConf.stdlib_dir_devel;
178 BuildTimeConf.stdlib_dir_installed ; ]
181 if Pcre.pmatch ~pat:"^/" s then s else Sys.getcwd () ^"/"^s
184 let add_l l = fun s -> l := s :: !l in
185 let print_version () =
186 Printf.printf "%s\n" BuildTimeConf.version;exit 0 in
187 let no_innertypes () =
188 Helm_registry.set_bool "matita.noinnertypes" true in
190 match Str.split (Str.regexp "::") s with
191 | [path; uri] -> Helm_registry.set "matita.baseuri"
192 (HExtlib.normalize_path (absolutize path)^" "^uri)
193 | _ -> raise (Failure "bad baseuri, use -b 'path::uri'")
197 "-b", Arg.String set_baseuri, "<path::uri> forces the baseuri of path";
198 "-I", Arg.String (add_l includes),
199 ("<path> Adds path to the list of searched paths for the "
200 ^ "include command");
201 "-conffile", Arg.Set_string conffile,
202 (Printf.sprintf ("<filename> Read configuration from filename"
204 BuildTimeConf.matita_conf);
206 Arg.Unit (fun () -> Helm_registry.set_bool "matita.force" true),
207 ("Force actions that would not be executed per default");
209 Arg.Unit (fun () -> Helm_registry.set_bool "matita.profile" false),
210 "Turns off profiling printings";
211 "-noinnertypes", Arg.Unit no_innertypes,
212 "Turns off inner types generation while publishing";
214 Arg.String (fun rex -> Helm_registry.set "matita.profile_only" rex),
215 "Activates only profiler with label matching the provided regex";
216 "-system", Arg.Unit (fun () ->
217 Helm_registry.set_bool "matita.system" true),
218 ("Act on the system library instead of the user one"
219 ^ "\n WARNING: not for the casual user");
221 Arg.Unit (fun () -> Helm_registry.set_bool "matita.verbose" true),
223 "--version", Arg.Unit print_version, "Prints version";
226 if BuildTimeConf.debug then
228 Arg.Unit (fun () -> Helm_registry.set_bool "matita.debug" true),
229 ("Do not catch top-level exception "
230 ^ "(useful for backtrace inspection)");
232 Arg.Unit (fun () -> GrafiteDisambiguator.only_one_pass := true),
233 "Enable only one disambiguation pass";
237 std_arg_spec @ debug_arg_spec @ !extra_cmdline_specs
239 let set_list ~key l =
240 Helm_registry.set_list Helm_registry.of_string ~key ~value:l
242 Arg.parse arg_spec (add_l args) (usage ());
244 List.map (fun x -> HExtlib.normalize_path (absolutize x))
245 ((List.rev !includes) @ default_includes)
247 set_list ~key:"matita.includes" includes;
248 let args = List.rev (List.filter (fun x -> x <> "") !args) in
249 set_list ~key:"matita.args" args;
250 HExtlib.set_profiling_printings
252 Helm_registry.get_bool "matita.profile" &&
254 ~pat:(Helm_registry.get_opt_default
255 Helm_registry.string ~default:".*" "matita.profile_only")
257 CmdLine :: init_status
262 print_endline (usage ());
265 let conf_components =
266 [ load_configuration; fill_registry; parse_cmdline]
268 let other_components =
269 [ initialize_db; initialize_environment ]
271 let initialize_all () =
273 List.fold_left (fun s f -> f s) !status
274 (conf_components @ other_components)
276 let parse_cmdline_and_configuration_file () =
277 status := List.fold_left (fun s f -> f s) !status conf_components
279 let initialize_environment () =
280 status := initialize_environment !status
283 Inversion_principle.init ()