]> matita.cs.unibo.it Git - helm.git/blob - matita/matita/matitaInit.ml
- cic_exportation, cic_acic, acic_content (only parts related to acic)
[helm.git] / matita / 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 type thingsToInitialize = 
29   ConfigurationFile | Db | Environment | Getter | CmdLine | Registry
30   
31 exception FailedToInitialize of thingsToInitialize
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 conffile = ref BuildTimeConf.matita_conf
44
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";
55   "matita.moo",                  "true";
56   "matita.extract",              "false";
57   "matita.execcomments",         "false";
58 ]
59
60 let set_registry_values =
61   List.iter 
62     (fun key, value -> 
63        if not (Helm_registry.has key) then Helm_registry.set ~key ~value)
64
65 let fill_registry init_status =
66   if not (already_configured [ Registry ] init_status) then begin
67     set_registry_values registry_defaults;
68     Registry :: init_status
69   end else
70     init_status
71
72 let load_configuration init_status =
73   if not (already_configured [ConfigurationFile] init_status) then
74     begin
75       Helm_registry.load_from !conffile;
76       if not (Helm_registry.has "user.name") then begin
77         let login = (Unix.getpwuid (Unix.getuid ())).Unix.pw_name in
78         Helm_registry.set "user.name" login
79       end;
80       let home = Helm_registry.get_string "matita.basedir" in
81       let user_conf_file = home ^ "/matita.conf.xml" in
82       if HExtlib.is_regular user_conf_file then
83         begin
84           HLog.message ("Loading additional conf file from " ^ user_conf_file);
85           try
86             Helm_registry.load_from user_conf_file
87           with exn -> 
88             HLog.error
89               ("While loading conf file: " ^ snd (MatitaExcPp.to_string exn))
90         end;
91       ConfigurationFile::init_status 
92     end
93   else
94     init_status
95
96 let initialize_db init_status = 
97   wants [ ConfigurationFile; CmdLine ] init_status;
98   if not (already_configured [ Db ] init_status) then
99     begin
100       LibraryDb.create_owner_environment ();
101       Db::init_status
102     end
103   else
104     init_status
105
106 let initialize_environment init_status = 
107   wants [CmdLine] 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       Getter::Environment::init_status
114     end
115   else
116     init_status 
117   
118 let status = ref []
119
120 let usages = Hashtbl.create 11 (** app name (e.g. "matitac") -> usage string *)
121 let _ =
122   List.iter
123     (fun (name, s) -> Hashtbl.replace usages name s)
124     [ "matitac", 
125         Printf.sprintf "Matita batch compiler v%s
126 Usage: matitac [ OPTION ... ] FILE
127 Options:"
128           BuildTimeConf.version;
129         "matitaprover",
130         Printf.sprintf "Matita (TPTP) prover v%s
131 Usage: matitaprover [ -tptppath ] FILE.p
132 Options:"
133           BuildTimeConf.version;
134       "matita",
135         Printf.sprintf "Matita interactive theorem prover v%s
136 Usage: matita [ OPTION ... ] [ FILE ]
137 Options:"
138           BuildTimeConf.version;
139       "matitadep",
140         Printf.sprintf "Matita depency file generator v%s
141 Usage: matitadep [ OPTION ... ] 
142 Options:"
143           BuildTimeConf.version;
144       "matitaclean",
145         Printf.sprintf "MatitaClean v%s
146 Usage: matitaclean all
147        matitaclean ( FILE | URI )
148 Options:"
149           BuildTimeConf.version;
150     ]
151 let default_usage =
152   Printf.sprintf 
153     "Matita v%s\nUsage: matita [ ARG ]\nOptions:" BuildTimeConf.version
154
155 let usage () =
156   let basename = Filename.basename Sys.argv.(0) in
157   let usage_key =
158     try Filename.chop_extension basename with Invalid_argument  _ -> basename
159   in
160   try Hashtbl.find usages usage_key with Not_found -> default_usage
161 ;;
162
163 let extra_cmdline_specs = ref []
164 let add_cmdline_spec l = extra_cmdline_specs := l @ !extra_cmdline_specs
165
166 let parse_cmdline init_status =
167   if not (already_configured [CmdLine] init_status) then begin
168     wants [Registry] init_status;
169     let includes = ref [] in
170     let default_includes = [ 
171       BuildTimeConf.stdlib_dir_devel;
172       BuildTimeConf.stdlib_dir_installed ; 
173       BuildTimeConf.new_stdlib_dir_devel;
174       BuildTimeConf.new_stdlib_dir_installed ; 
175     ] 
176     in
177     let absolutize s =
178       if Pcre.pmatch ~pat:"^/" s then s else Sys.getcwd () ^"/"^s
179     in
180     let args = ref [] in
181     let add_l l = fun s -> l := s :: !l in
182     let print_version () =
183             Printf.printf "%s\n" BuildTimeConf.version;exit 0 in
184     let no_innertypes () =
185       Helm_registry.set_bool "matita.noinnertypes" true in
186     let set_baseuri s =
187       match Str.split (Str.regexp "::") s with
188       | [path; uri] -> Helm_registry.set "matita.baseuri"
189           (HExtlib.normalize_path (absolutize path)^" "^uri)
190       | _ -> raise (Failure "bad baseuri, use -b 'path::uri'")
191     in
192     let no_default_includes = ref false in
193     let execcomments = ref false in
194     let arg_spec =
195       let std_arg_spec = [
196         "-b", Arg.String set_baseuri, "<path::uri> forces the baseuri of path";
197         "-I", Arg.String (add_l includes),
198           ("<path> Adds path to the list of searched paths for the "
199            ^ "include command");
200         "-conffile", Arg.Set_string conffile,
201           (Printf.sprintf ("<filename> Read configuration from filename"
202              ^^ "\n    Default: %s")
203             BuildTimeConf.matita_conf);
204         "-force",
205             Arg.Unit (fun () -> Helm_registry.set_bool "matita.force" true),
206             ("Force actions that would not be executed per default");
207         "-noprofile", 
208           Arg.Unit (fun () -> Helm_registry.set_bool "matita.profile" false),
209           "Turns off profiling printings";
210         "-noinnertypes", Arg.Unit no_innertypes, 
211           "Turns off inner types generation while publishing";
212         "-profile-only",
213           Arg.String (fun rex -> Helm_registry.set "matita.profile_only" rex),
214           "Activates only profiler with label matching the provided regex";
215         "-system", Arg.Unit (fun () ->
216               Helm_registry.set_bool "matita.system" true),
217             ("Act on the system library instead of the user one"
218              ^ "\n    WARNING: not for the casual user");
219         "-no-default-includes", Arg.Set no_default_includes,
220           "Do not include the default searched paths for the include command"; 
221         "-execcomments", Arg.Set execcomments,
222           "Execute the content of (** ... *) comments";
223         "-v", 
224           Arg.Unit (fun () -> Helm_registry.set_bool "matita.verbose" true), 
225           "Verbose mode";
226         "--version", Arg.Unit print_version, "Prints version"
227       ] in
228       let debug_arg_spec =
229         if BuildTimeConf.debug then
230           [ "-debug",
231             Arg.Unit (fun () -> Helm_registry.set_bool "matita.debug" true),
232               ("Do not catch top-level exception "
233               ^ "(useful for backtrace inspection)");
234             "-onepass",
235             Arg.Unit (fun () -> MultiPassDisambiguator.only_one_pass := true),
236             "Enable only one disambiguation pass";    
237           ]
238         else []
239       in
240       std_arg_spec @ debug_arg_spec @ !extra_cmdline_specs
241     in
242     let set_list ~key l =
243       Helm_registry.set_list Helm_registry.of_string ~key ~value:l
244     in
245     Arg.parse arg_spec (add_l args) (usage ());
246     Helm_registry.set_bool ~key:"matita.execcomments" ~value:!execcomments;
247     let default_includes = if !no_default_includes then [] else default_includes in
248     let includes = 
249       List.map (fun x -> HExtlib.normalize_path (absolutize x)) 
250        ((List.rev !includes) @ default_includes) 
251     in
252     set_list ~key:"matita.includes" includes;
253     let args = List.rev (List.filter (fun x -> x <> "") !args) in
254     set_list ~key:"matita.args" args;
255     HExtlib.set_profiling_printings 
256       (fun s -> 
257         Helm_registry.get_bool "matita.profile" && 
258         Pcre.pmatch 
259           ~pat:(Helm_registry.get_opt_default 
260                   Helm_registry.string ~default:".*" "matita.profile_only") 
261           s);
262     CmdLine :: init_status
263   end else
264     init_status
265
266 let die_usage () =
267   print_endline (usage ());
268   exit 1
269
270 let conf_components = 
271   [ load_configuration; fill_registry; parse_cmdline]
272
273 let other_components =
274   [ initialize_db; initialize_environment ]
275
276 let initialize_all () =
277   status := 
278     List.fold_left (fun s f -> f s) !status
279     (conf_components @ other_components);
280   NCicLibrary.init ()
281
282 let parse_cmdline_and_configuration_file () =
283   status := List.fold_left (fun s f -> f s) !status conf_components
284
285 let initialize_environment () =
286   status := initialize_environment !status
287
288 let _ =
289   CicFix.init ()
290 ;;