]> matita.cs.unibo.it Git - helm.git/blob - matita/matita/matitacLib.ml
5ae5dbf3b4a1dc8d08a7b97fbb3505dda0825392
[helm.git] / matita / matita / matitacLib.ml
1 (* Copyright (C) 2004-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 open GrafiteTypes
31
32 let slash_n_RE = Pcre.regexp "\\n" ;;
33
34 let pp_ast_statement grafite_status stm =
35   let stm = GrafiteAstPp.pp_statement stm
36     ~map_unicode_to_tex:(Helm_registry.get_bool "matita.paste_unicode_as_tex")
37   in
38   let stm = Pcre.replace ~rex:slash_n_RE stm in
39   let stm =
40       if String.length stm > 50 then String.sub stm 0 50 ^ " ..."
41       else stm
42   in
43     HLog.debug ("Executing: ``" ^ stm ^ "''")
44 ;;
45
46 let clean_exit baseuri rc =
47   LibraryClean.clean_baseuris ~verbose:false [baseuri]; rc
48 ;;
49
50 let get_macro_context = function _ -> []
51 ;;
52    
53 let pp_times fname rc big_bang big_bang_u big_bang_s = 
54   if not (Helm_registry.get_bool "matita.verbose") then
55     let { Unix.tms_utime = u ; Unix.tms_stime = s} = Unix.times () in
56     let r = Unix.gettimeofday () -. big_bang in
57     let u = u -. big_bang_u in
58     let s = s -. big_bang_s in
59     let extra = try Sys.getenv "BENCH_EXTRA_TEXT" with Not_found -> "" in
60     let rc,rcascii = 
61       if rc then "\e[0;32mOK\e[0m","Ok" else "\e[0;31mFAIL\e[0m","Fail" in
62     let times = 
63       let fmt t = 
64         let seconds = int_of_float t in
65         let cents = int_of_float ((t -. floor t) *. 100.0) in
66         let minutes = seconds / 60 in
67         let seconds = seconds mod 60 in
68         Printf.sprintf "%dm%02d.%02ds" minutes seconds cents
69       in
70       Printf.sprintf "%s %s %s" (fmt r) (fmt u) (fmt s)
71     in
72     let s = Printf.sprintf "%-4s %s %s" rc times extra in
73     print_endline s;
74     flush stdout;
75     HLog.message ("Compilation of "^Filename.basename fname^": "^rc)
76 ;;
77
78 let cut prefix s = 
79   let lenp = String.length prefix in
80   let lens = String.length s in
81   assert (lens > lenp);
82   assert (String.sub s 0 lenp = prefix);
83   String.sub s lenp (lens-lenp)
84 ;;
85
86 let get_include_paths options =
87   let include_paths = 
88     try List.assoc "include_paths" options with Not_found -> "" 
89   in
90   let include_paths = Str.split (Str.regexp " ") include_paths in
91   let include_paths = 
92     include_paths @ 
93     Helm_registry.get_list Helm_registry.string "matita.includes" 
94   in
95     include_paths
96 ;;
97
98 let activate_extraction baseuri fname =
99   ()
100   (* MATITA 1.0
101  if Helm_registry.get_bool "matita.extract" then
102   let mangled_baseuri =
103    let baseuri = String.sub baseuri 5 (String.length baseuri - 5) in
104      let baseuri = Pcre.replace ~pat:"/" ~templ:"_" baseuri in
105       String.uncapitalize baseuri in
106   let f =
107     open_out
108      (Filename.dirname fname ^ "/" ^ mangled_baseuri ^ ".ml") in
109    LibrarySync.add_object_declaration_hook
110     (fun ~add_obj ~add_coercion _ obj ->
111       output_string f (CicExportation.ppobj baseuri obj);
112       flush f; []);
113       *)
114 ;;
115
116 let compile atstart options fname =
117   let matita_debug = Helm_registry.get_bool "matita.debug" in
118   let include_paths = get_include_paths options in
119   let root,baseuri,fname,_tgt = 
120     Librarian.baseuri_of_script ~include_paths fname in
121   if Http_getter_storage.is_read_only baseuri then assert false;
122   activate_extraction baseuri fname ;
123   let lexicon_status = new GrafiteDisambiguate.status in
124   atstart (); (* FG: do not invoke before loading the core notation script *)  
125   let grafite_status =
126    (new GrafiteTypes.status baseuri)#set_disambiguate_db lexicon_status#disambiguate_db in
127   let big_bang = Unix.gettimeofday () in
128   let { Unix.tms_utime = big_bang_u ; Unix.tms_stime = big_bang_s} = 
129     Unix.times () 
130   in
131   let time = Unix.time () in
132   try
133     (* cleanup of previously compiled objects *)
134     if (not (Http_getter_storage.is_empty ~local:true baseuri))
135       then begin
136       HLog.message ("baseuri " ^ baseuri ^ " is not empty");
137       HLog.message ("cleaning baseuri " ^ baseuri);
138       LibraryClean.clean_baseuris [baseuri];
139     end;
140     HLog.message ("compiling " ^ Filename.basename fname ^ " in " ^ baseuri);
141     if not (Helm_registry.get_bool "matita.verbose") then
142       (let cc = 
143         let rex = Str.regexp ".*opt$" in
144         if Str.string_match rex Sys.argv.(0) 0 then "matitac.opt"
145         else "matitac" 
146       in
147       let s = Printf.sprintf "%s %-35s " cc (cut (root^"/") fname) in
148       print_string s; flush stdout);
149     (* we dalay this error check until we print 'matitac file ' *)
150     assert (Http_getter_storage.is_empty ~local:true baseuri);
151     (* create dir for XML files *)
152     if not (Helm_registry.get_opt_default Helm_registry.bool "matita.nodisk"
153               ~default:false) 
154     then
155       HExtlib.mkdir 
156         (Filename.dirname 
157           (Http_getter.filename ~local:true ~writable:true (baseuri ^
158           "foo.con")));
159     let buf = Ulexing.from_utf8_channel (open_in fname) in
160     let print_cb =
161       if not (Helm_registry.get_bool "matita.verbose") then (fun _ _ -> ())
162       else pp_ast_statement
163     in
164     let grafite_status =
165      MatitaEngine.eval_from_stream ~include_paths grafite_status buf print_cb
166     in
167     let elapsed = Unix.time () -. time in
168      (if Helm_registry.get_bool "matita.moo" then begin
169        GrafiteTypes.Serializer.serialize ~baseuri:(NUri.uri_of_string baseuri)
170         grafite_status#dump
171      end;
172      let tm = Unix.gmtime elapsed in
173      let sec = string_of_int tm.Unix.tm_sec ^ "''" in
174      let min = 
175        if tm.Unix.tm_min > 0 then (string_of_int tm.Unix.tm_min^"' ") else "" 
176      in
177      let hou = 
178        if tm.Unix.tm_hour > 0 then (string_of_int tm.Unix.tm_hour^"h ") else ""
179      in
180      HLog.message 
181        (sprintf "execution of %s completed in %s." fname (hou^min^sec));
182      pp_times fname true big_bang big_bang_u big_bang_s;
183 (*
184      LexiconSync.time_travel 
185        ~present:lexicon_status ~past:initial_lexicon_status;
186 *)
187      true)
188   with 
189   (* all exceptions should be wrapped to allow lexicon-undo (LS.time_travel) *)
190   | MatitaEngine.EnrichedWithStatus (exn, _grafite) as exn' ->
191       (match exn with
192       | Sys.Break -> HLog.error "user break!"
193       | HExtlib.Localized (floc,CicNotationParser.Parse_error err) ->
194           let (x, y) = HExtlib.loc_of_floc floc in
195           HLog.error (sprintf "Parse error at %d-%d: %s" x y err)
196       | exn when matita_debug -> raise exn'
197       | exn -> HLog.error (snd (MatitaExcPp.to_string exn))
198       );
199 (*       LexiconSync.time_travel ~present:lexicon ~past:initial_lexicon_status;
200  *       *)
201       pp_times fname false big_bang big_bang_u big_bang_s;
202       clean_exit baseuri false
203   | Sys.Break when not matita_debug ->
204      HLog.error "user break!";
205      pp_times fname false big_bang big_bang_u big_bang_s;
206      clean_exit baseuri false
207   | exn when not matita_debug ->
208        HLog.error 
209          ("Unwrapped exception, please fix: "^ snd (MatitaExcPp.to_string exn));
210        pp_times fname false big_bang big_bang_u big_bang_s;
211        clean_exit baseuri false
212
213 module F = 
214   struct 
215     type source_object = string
216     type target_object = string
217     let string_of_source_object s = s;;
218     let string_of_target_object s = s;;
219
220     let is_readonly_buri_of opts file = 
221      let buri = List.assoc "baseuri" opts in
222      Http_getter_storage.is_read_only (Librarian.mk_baseuri buri file)
223     ;;
224
225     let root_and_target_of opts mafile = 
226       try
227         let include_paths = get_include_paths opts in
228         let root,baseuri,_,relpath =
229           Librarian.baseuri_of_script ~include_paths mafile 
230         in
231         let obj_writeable, obj_read_only =
232            if Filename.check_suffix mafile ".mma" then 
233               Filename.chop_suffix mafile ".mma" ^ ".ma",
234               Filename.chop_suffix mafile ".mma" ^ ".ma"
235            else
236               LibraryMisc.obj_file_of_baseuri 
237                         ~must_exist:false ~baseuri ~writable:true,
238               LibraryMisc.obj_file_of_baseuri 
239                         ~must_exist:false ~baseuri ~writable:false
240         in
241         Some root, relpath, obj_writeable, obj_read_only
242       with Librarian.NoRootFor x -> None, "", "", ""
243     ;;
244
245     let mtime_of_source_object s =
246       try Some (Unix.stat s).Unix.st_mtime
247       with Unix.Unix_error (Unix.ENOENT, "stat", f) when f = s -> None
248     ;;
249
250     let mtime_of_target_object s =
251       try Some (Unix.stat s).Unix.st_mtime
252       with Unix.Unix_error (Unix.ENOENT, "stat", f) when f = s -> None
253     ;;
254
255 (* FG: a problem was noticed in relising memory between subsequent *)
256 (*     invocations of the compiler. The following might help       *)
257     let compact r = Gc.compact (); r
258
259     let build options fname =
260       let matita_debug = Helm_registry.get_bool "matita.debug" in
261       let compile atstart opts fname =
262         try
263         (* MATITA 1.0: c'erano le push/pop per il parser; ma per
264          * l'environment nuovo? *)
265          compile atstart opts fname
266         with 
267         | Sys.Break -> false
268         | exn when not matita_debug ->
269             HLog.error ("Unexpected " ^ snd(MatitaExcPp.to_string exn));
270             assert false
271       in
272        compact (compile ignore options fname)
273     ;;
274
275     let load_deps_file = Librarian.load_deps_file;;
276
277   end 
278
279 module Make = Librarian.Make(F) 
280