1 (* Copyright (C) 2004-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/
32 exception AttemptToInsertAnAlias
34 let pp_ast_statement =
35 GrafiteAstPp.pp_statement ~term_pp:CicNotationPp.pp_term
36 ~lazy_term_pp:CicNotationPp.pp_term ~obj_pp:CicNotationPp.pp_obj
38 (** {2 Initialization} *)
40 let grafite_status = (ref None : GrafiteTypes.status option ref)
41 let lexicon_status = (ref None : LexiconEngine.status option ref)
43 let run_script is eval_function =
44 let lexicon_status',grafite_status' =
45 match !lexicon_status,!grafite_status with
46 | Some ss, Some s -> ss,s
49 let slash_n_RE = Pcre.regexp "\\n" in
51 if Helm_registry.get_int "matita.verbosity" < 1 then
54 (fun grafite_status stm ->
55 (* dump_status grafite_status; *)
56 let stm = pp_ast_statement stm in
57 let stm = Pcre.replace ~rex:slash_n_RE stm in
59 if String.length stm > 50 then
60 String.sub stm 0 50 ^ " ..."
64 HLog.debug ("Executing: ``" ^ stm ^ "''"))
66 let matita_debug = Helm_registry.get_bool "matita.debug" in
68 let grafite_status'', lexicon_status'' =
69 match eval_function lexicon_status' grafite_status' is cb with
72 | (s,Some _)::_ -> raise AttemptToInsertAnAlias
74 lexicon_status := Some lexicon_status'';
75 grafite_status := Some grafite_status''
79 | CicNotationParser.Parse_error _ as exn -> raise exn
81 if not matita_debug then
82 HLog.error (snd (MatitaExcPp.to_string exn)) ;
86 let rec aux = function
89 | [] -> MatitaInit.die_usage ()
93 String.concat " " (List.map (fun x -> "'" ^ x ^ "'") l));
94 MatitaInit.die_usage ()
96 aux (Helm_registry.get_list Helm_registry.string "matita.args")
98 let pp_ocaml_mode () =
100 HLog.message " ** Entering Ocaml mode ** ";
102 HLog.message "Type 'go ();;' to enter an interactive matitac";
111 match !grafite_status with
113 | Some grafite_status ->
115 let baseuri = GrafiteTypes.get_string_option grafite_status "baseuri" in
116 LibraryClean.clean_baseuris ~verbose:false [baseuri];
118 with GrafiteTypes.Option_error("baseuri", "not found") ->
119 (* no baseuri ==> nothing to clean yet *)
122 let rec interactive_loop () =
123 let str = Ulexing.from_utf8_channel stdin in
126 (MatitaEngine.eval_from_stream ~first_statement_only:false ~prompt:true
127 ~include_paths:(Helm_registry.get_list Helm_registry.string
130 | GrafiteEngine.Drop -> pp_ocaml_mode ()
131 | GrafiteEngine.Macro (floc,_) ->
132 let x, y = HExtlib.loc_of_floc floc in
134 (sprintf "A macro has been found in a script at %d-%d" x y);
136 | Sys.Break -> HLog.error "user break!"; interactive_loop ()
137 | GrafiteTypes.Command_error _ -> interactive_loop ()
141 | HExtlib.Localized (floc,CicNotationParser.Parse_error err) ->
142 let x, y = HExtlib.loc_of_floc floc in
143 HLog.error (sprintf "Parse error at %d-%d: %s" x y err);
145 | exn -> HLog.error (Printexc.to_string exn); interactive_loop ()
148 Helm_registry.load_from BuildTimeConf.matita_conf;
150 MetadataTypes.ownerize_tables (Helm_registry.get "matita.owner");
151 LibraryDb.create_owner_environment ();
152 CicEnvironment.set_trust (* environment trust *)
154 Helm_registry.get_opt_default Helm_registry.get_bool
155 ~default:true "matita.environment_trust" in
158 Helm_registry.get_list Helm_registry.string "matita.includes" in
159 grafite_status := Some (GrafiteSync.init ());
161 Some (CicNotation2.load_notation ~include_paths
162 BuildTimeConf.core_notation_script);
163 Sys.catch_break true;
166 let pp_times fname bench_mode rc big_bang =
169 let { Unix.tms_utime = u ; Unix.tms_stime = s} = Unix.times () in
170 let r = Unix.gettimeofday () -. big_bang in
171 let extra = try Sys.getenv "BENCH_EXTRA_TEXT" with Not_found -> "" in
173 if Str.string_match (Str.regexp ".*opt$") Sys.argv.(0) 0 then
178 let rc = if rc then "
\e[0;32mOK
\e[0m" else "
\e[0;31mFAIL
\e[0m" in
181 let seconds = int_of_float t in
182 let cents = int_of_float ((t -. floor t) *. 100.0) in
183 let minutes = seconds / 60 in
184 let seconds = seconds mod 60 in
185 Printf.sprintf "%dm%02d.%02ds" minutes seconds cents
187 Printf.sprintf "%s %s %s" (fmt r) (fmt u) (fmt s)
190 match MatitamakeLib.development_for_dir (Filename.dirname fname) with
193 let rootlen = String.length(MatitamakeLib.root_for_development d)in
194 let fnamelen = String.length fname in
195 assert (fnamelen > rootlen);
196 String.sub fname rootlen (fnamelen - rootlen)
199 if fname.[0] = '/' then
200 String.sub fname 1 (String.length fname - 1)
204 let s = Printf.sprintf "%s %-35s %-4s %s %s" cc fname rc times extra in
211 let big_bang = Unix.gettimeofday () in
212 MatitaInit.initialize_all ();
213 (* must be called after init since args are set by cmdline parsing *)
214 let fname = fname () in
215 let system_mode = Helm_registry.get_bool "matita.system" in
216 let bench_mode = Helm_registry.get_bool "matita.bench" in
218 Helm_registry.set_int "matita.verbosity" 0;
220 Helm_registry.get_list Helm_registry.string "matita.includes" in
221 grafite_status := Some (GrafiteSync.init ());
223 Some (CicNotation2.load_notation ~include_paths
224 BuildTimeConf.core_notation_script);
225 Sys.catch_break true;
226 let origcb = HLog.get_log_callback () in
227 let origcb t s = origcb t ((if system_mode then "[S] " else "") ^ s) in
230 | `Debug | `Message -> ()
231 | `Warning | `Error -> origcb tag s
233 if Helm_registry.get_int "matita.verbosity" < 1 then
234 HLog.set_log_callback newcb;
235 if bench_mode then MatitaMisc.shutup ();
236 let matita_debug = Helm_registry.get_bool "matita.debug" in
238 let time = Unix.time () in
239 if Helm_registry.get_int "matita.verbosity" < 1 && not bench_mode then
240 origcb `Message ("compiling " ^ Filename.basename fname ^ "...")
242 HLog.message (sprintf "execution of %s started:" fname);
244 Ulexing.from_utf8_channel
247 | fname -> open_in fname) in
249 Helm_registry.get_list Helm_registry.string "matita.includes" in
252 (MatitaEngine.eval_from_stream ~first_statement_only:false ~include_paths
253 ~clean_baseuri:(not (Helm_registry.get_bool "matita.preserve")))
254 with End_of_file -> ());
255 let elapsed = Unix.time () -. time in
256 let tm = Unix.gmtime elapsed in
257 let sec = string_of_int tm.Unix.tm_sec ^ "''" in
259 if tm.Unix.tm_min > 0 then (string_of_int tm.Unix.tm_min ^ "' ") else ""
262 if tm.Unix.tm_hour > 0 then (string_of_int tm.Unix.tm_hour ^ "h ") else ""
264 let proof_status,moo_content_rev,metadata,lexicon_content_rev =
265 match !lexicon_status,!grafite_status with
267 s.proof_status, s.moo_content_rev, ss.LexiconEngine.metadata,
268 ss.LexiconEngine.lexicon_content_rev
269 | _,_ -> assert false
271 if proof_status <> GrafiteTypes.No_proof then
274 "there are still incomplete proofs at the end of the script";
275 pp_times fname bench_mode true big_bang;
280 let baseuri, _fullpathforfname =
281 DependenciesParser.baseuri_of_script ~include_paths fname in
283 LibraryMisc.obj_file_of_baseuri
284 ~must_exist:false ~baseuri ~writable:true
287 LibraryMisc.lexicon_file_of_baseuri
288 ~must_exist:false ~baseuri ~writable:true
291 LibraryMisc.metadata_file_of_baseuri
292 ~must_exist:false ~baseuri ~writable:true
294 GrafiteMarshal.save_moo moo_fname moo_content_rev;
295 LibraryNoDb.save_metadata metadata_fname metadata;
296 LexiconMarshal.save_lexicon lexicon_fname lexicon_content_rev;
298 (sprintf "execution of %s completed in %s." fname (hou^min^sec));
299 pp_times fname bench_mode true big_bang;
303 | Sys.Break as exn ->
304 if matita_debug then raise exn;
305 HLog.error "user break!";
306 pp_times fname bench_mode false big_bang;
307 if mode = `COMPILER then
308 clean_exit (Some ~-1)
311 | GrafiteEngine.Drop ->
312 if mode = `COMPILER then
314 pp_times fname bench_mode false big_bang;
319 | GrafiteEngine.Macro (floc,_) ->
320 let x, y = HExtlib.loc_of_floc floc in
322 (sprintf "A macro has been found in a script at %d-%d" x y);
323 if mode = `COMPILER then
325 pp_times fname bench_mode false big_bang;
330 | HExtlib.Localized (floc,CicNotationParser.Parse_error err) ->
331 let (x, y) = HExtlib.loc_of_floc floc in
332 HLog.error (sprintf "Parse error at %d-%d: %s" x y err);
333 if mode = `COMPILER then
335 pp_times fname bench_mode false big_bang;
341 if matita_debug then raise exn;
342 if mode = `COMPILER then
344 pp_times fname bench_mode false big_bang;