]> matita.cs.unibo.it Git - helm.git/blob - helm/matita/matitaInit.ml
"towards a distribution of matita" changes:
[helm.git] / helm / 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 open Printf
27
28 type thingsToInitilaize = 
29   ConfigurationFile | Db | Environment | Getter | Notation | Makelib | CmdLine
30   
31 exception FailedToInitialize of thingsToInitilaize
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 tilde_expand_key k =
44   try
45     Helm_registry.set k (HExtlib.tilde_expand (Helm_registry.get k))
46   with Helm_registry.Key_not_found _ -> ()
47
48 let load_configuration init_status =
49   if not (already_configured [ConfigurationFile] init_status) then
50     begin
51       Helm_registry.load_from BuildTimeConf.matita_conf;
52       if not (Helm_registry.has "user.name") then begin
53         let login = (Unix.getpwuid (Unix.getuid ())).Unix.pw_name in
54         Helm_registry.set "user.name" login
55       end;
56       tilde_expand_key "matita.basedir";
57       tilde_expand_key "user.home";
58       ConfigurationFile::init_status 
59     end
60   else
61     init_status
62
63 let initialize_db init_status = 
64   wants [ ConfigurationFile; CmdLine ] init_status;
65   if not (already_configured [ Db ] init_status) then
66     begin
67       MetadataTypes.ownerize_tables (Helm_registry.get "matita.owner");
68       MatitaDb.create_owner_environment ();
69       Db::init_status
70     end
71   else
72     init_status
73
74 let initialize_makelib init_status = 
75   wants [ConfigurationFile] init_status;
76   if not (already_configured [Makelib] init_status) then
77     begin
78       MatitamakeLib.initialize (); 
79       Makelib::init_status
80     end
81   else
82     init_status
83
84 let initialize_notation init_status = 
85   wants [ConfigurationFile] init_status;
86   if not (already_configured [Notation] init_status) then
87     begin
88       CicNotation.load_notation BuildTimeConf.core_notation_script;
89       Notation::init_status
90     end
91   else
92     init_status
93
94 let initialize_environment init_status = 
95   wants [ConfigurationFile] init_status;
96   if not (already_configured [Getter;Environment] init_status) then
97     begin
98       Http_getter.init ();
99       CicEnvironment.set_trust (* environment trust *)
100         (let trust = Helm_registry.get_bool "matita.environment_trust" in
101          fun _ -> trust);
102       Getter::Environment::init_status
103     end
104   else
105     init_status 
106   
107 let status = ref []
108
109 let usages = Hashtbl.create 11
110 let _ =
111   List.iter
112     (fun (name, s) -> Hashtbl.replace usages name s)
113     [ "matitac", 
114         sprintf "MatitaC v%s
115 Usage: matitac [ OPTION ... ] FILE
116 Options:"
117           BuildTimeConf.version;
118       "matita",
119         sprintf "Matita v%s
120 Usage: matita [ OPTION ... ] [ FILE ... ]
121 Options:"
122           BuildTimeConf.version;
123       "cicbrowser",
124         sprintf
125           "CIC Browser v%s
126 Usage: cicbrowser [ URL | WHELP QUERY ]
127 Options:"
128           BuildTimeConf.version;
129       "matitadep",
130         sprintf "MatitaDep v%s
131 Usage: matitadep [ OPTION ... ] FILE ...
132 Options:"
133           BuildTimeConf.version;
134       "matitaclean",
135         sprintf "MatitaClean v%s
136 Usage: matitaclean all
137        matitaclean [ (FILE | URI) ... ]
138 Options:"
139           BuildTimeConf.version;
140     ]
141 let default_usage =
142   sprintf "Matita v%s\nUsage: matita [ ARG ]\nOptions:" BuildTimeConf.version
143
144 let usage () =
145   let basename = Filename.basename Sys.argv.(0) in
146   let usage_key =
147     try Filename.chop_extension basename with Invalid_argument  _ -> basename
148   in
149   try Hashtbl.find usages usage_key with Not_found -> default_usage
150
151 let registry_defaults =
152   [
153     "db.nodb",                  "false";
154     "matita.debug",             "false";
155     "matita.external_editor",   "gvim -f -c 'go %p' %f";
156     "matita.preserve",          "false";
157     "matita.quiet",             "false";
158   ]
159
160 let set_registry_values =
161   List.iter (fun key, value -> Helm_registry.set ~key ~value)
162
163 let parse_cmdline init_status =
164   if not (already_configured [CmdLine] init_status) then begin
165     let includes = ref [] in
166     let args = ref [] in
167     let add_l l = fun s -> l := s :: !l in
168     let arg_spec =
169       let std_arg_spec = [
170         "-I", Arg.String (add_l includes),
171           ("<path> Adds path to the list of searched paths for the "
172            ^ "include command");
173         "-q", Arg.Unit (fun () -> Helm_registry.set_bool "matita.quiet" true),
174           "Turn off verbose compilation";
175         "-preserve",
176           Arg.Unit (fun () -> Helm_registry.set_bool "matita.preserve" true),
177           "Turns off automatic baseuri cleaning";
178         "-nodb", Arg.Unit (fun () -> Helm_registry.set_bool "db.nodb" true),
179               ("Avoid using external database connection "
180                ^ "(WARNING: disable many features)");
181       ] in
182       let debug_arg_spec =
183         if BuildTimeConf.debug then
184           [ "-debug",
185             Arg.Unit (fun () -> Helm_registry.set_bool "matita.debug" true),
186               ("Do not catch top-level exception "
187               ^ "(useful for backtrace inspection)");
188           ]
189         else []
190       in
191       std_arg_spec @ debug_arg_spec
192     in
193     let set_list ~key l =
194       Helm_registry.set_list Helm_registry.of_string ~key ~value:(List.rev !l)
195     in
196     set_registry_values registry_defaults;
197     Arg.parse arg_spec (add_l args) (usage ());
198     set_list ~key:"matita.includes" includes;
199     set_list ~key:"matita.args" args;
200     CmdLine :: init_status
201   end else
202     init_status
203
204 let die_usage () =
205   print_endline (usage ());
206   exit 1
207
208 let initialize_all () =
209   status := 
210     List.fold_left (fun s f -> f s) !status
211       [ parse_cmdline; load_configuration; initialize_makelib;
212         initialize_db; initialize_environment; initialize_notation ]
213 (*     initialize_notation 
214       (initialize_environment 
215         (initialize_db 
216           (initialize_makelib
217             (load_configuration
218               (parse_cmdline !status))))) *)
219
220 let load_configuration_file () =
221   status := load_configuration !status
222
223 let initialize_notation () =
224   status := initialize_notation (load_configuration !status)
225
226 let parse_cmdline () =
227   status := parse_cmdline !status
228