]> matita.cs.unibo.it Git - helm.git/blob - components/binaries/utilities/test_library.ml
tagged 0.5.0-rc1
[helm.git] / components / binaries / utilities / test_library.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 let trust = true
27 let deadline = 30
28 let conffile = "../../../matita/matita.conf.xml"
29
30 let _ = CicEnvironment.set_trust (fun _ -> trust);;
31 let _ = Helm_registry.load_from conffile;;
32
33 let old_total = ref 0.0
34 let new_total = ref 0.0
35
36 let separator = "=============" 
37
38 let perc newt oldt = (newt -. oldt) /. oldt *. 100.0
39
40 let _ =
41  Sys.catch_break true;
42  at_exit
43   (fun () ->
44     Printf.printf "%s\n" separator;
45     Printf.printf "Total: %.2f\n" !new_total;
46     if !old_total <> 0.0 then
47      Printf.printf "Old: %.2f (%.2f%%)\n" !old_total (perc !new_total !old_total))
48 ;;
49
50 let timeout = ref false;;
51
52 let _ =
53  Sys.set_signal 14 (* SIGALRM *)
54   (Sys.Signal_handle (fun _ ->
55     timeout := true;
56     raise Sys.Break))
57 ;;
58
59 let urifname =
60   try
61     Sys.argv.(1)
62   with Invalid_argument _ ->
63    prerr_endline "You must supply a file with the list of URIs to check";
64    exit (-1)
65
66 let ic = open_in urifname
67
68 exception Done;;
69
70 let _ =
71   try
72     while true do
73       try
74         let uri = input_line ic in
75         if uri = separator then raise End_of_file;
76         let uri,res,time =
77          match Str.split (Str.regexp " ") uri with
78             uri::res::time::_ -> uri, Some res, Some (float_of_string time)
79           | [uri;res] -> uri, Some res, None
80           | [ uri ] -> uri, None, None
81           | _ -> assert false
82         in
83         Printf.printf "%s " uri;
84         flush stdout;
85         let uri = UriManager.uri_of_string uri in
86         let obj,_ = CicEnvironment.get_obj CicUniv.empty_ugraph uri in
87         ignore (Unix.alarm deadline);
88         CicTypeChecker.typecheck_obj uri obj;
89         ignore (Unix.alarm 0);
90         CicEnvironment.remove_obj uri;
91         let before = Unix.times () in
92         ignore (Unix.alarm deadline);
93         ignore (CicTypeChecker.typecheck_obj uri obj);
94         ignore (Unix.alarm 0);
95         let memusage = (Gc.stat ()).Gc.live_words * 4 / 1024 / 1024 in
96         if memusage > 500 then
97          begin
98           prerr_endline ("MEMORIA ALLOCATA: " ^ string_of_int memusage ^ "Mb");
99           CicEnvironment.empty ();
100           Gc.compact ();
101           let memusage = (Gc.stat ()).Gc.live_words * 4 / 1024 / 1024 in
102             prerr_endline ("DOPO CicEnvironment.empty: " ^ string_of_int memusage ^ "Mb");
103          end;
104         let after = Unix.times () in
105         let diff = after.Unix.tms_utime +. after.Unix.tms_stime -. before.Unix.tms_utime -. before.Unix.tms_stime in
106         new_total := !new_total +. diff;
107         Printf.printf "\e[0;32mOK\e[0m %.2f" diff;
108         (match time with
109            None -> Printf.printf "\n"
110          | Some time ->
111             old_total := !old_total +. time;
112              Printf.printf " %.2f%%\n" (perc diff time))
113       with
114         | End_of_file as exn -> raise exn
115         | Sys.Break ->
116            let rec skip_break prompt =
117             try
118              if prompt then
119               begin
120                Printf.printf "\e[0;31mSKIPPED\e[0m\n";
121                flush stdout;
122                if not !timeout then
123                 begin
124                  Printf.eprintf "\e[0;31mContinue with next URI? [y/_]\e[0m";
125                  flush stderr;
126                 end;
127               end;
128              if not !timeout then
129               (match input_line stdin with
130                   "y" -> ()
131                 | _ -> raise Done)
132              else
133               timeout := false
134             with
135              Sys.Break -> skip_break false
136            in
137             skip_break true
138         | CicEnvironment.CircularDependency _ ->
139            Printf.printf "\e[0;31mCIRCULARDEP\e[0m\n"
140         | exn ->
141            Printf.printf "\e[0;31mFAIL\e[0m\n";
142            flush stdout;
143            prerr_endline
144             (match exn with
145                 CicTypeChecker.TypeCheckerFailure msg ->
146                  "TypeCheckerFailure: " ^ Lazy.force msg
147               | CicTypeChecker.AssertFailure msg ->
148                  "TypeCheckerAssertion: " ^ Lazy.force msg
149               | _ -> Printexc.to_string exn)
150     done
151   with
152      End_of_file
153    | Done -> ()