]> matita.cs.unibo.it Git - helm.git/blob - matita/matitacLib.ml
use matita.verbosity instead of matita.quiet
[helm.git] / 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 exception AttemptToInsertAnAlias
33
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
37
38 (** {2 Initialization} *)
39
40 let grafite_status = (ref None : GrafiteTypes.status option ref)
41 let lexicon_status = (ref None : LexiconEngine.status option ref)
42
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
47     | _,_ -> assert false
48   in
49   let slash_n_RE = Pcre.regexp "\\n" in
50   let cb = 
51     if Helm_registry.get_int "matita.verbosity" < 1 then 
52       (fun _ _ -> ())
53     else 
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
58         let stm =
59           if String.length stm > 50 then
60             String.sub stm 0 50 ^ " ..."
61           else
62             stm
63         in
64         HLog.debug ("Executing: ``" ^ stm ^ "''"))
65   in
66   try
67    let grafite_status'', lexicon_status'' =
68     match eval_function lexicon_status' grafite_status' is cb with
69        [] -> assert false
70      | (s,None)::_ -> s
71      | (s,Some _)::_ -> raise AttemptToInsertAnAlias
72    in
73     lexicon_status := Some lexicon_status'';
74     grafite_status := Some grafite_status''
75   with
76   | GrafiteEngine.Drop  
77   | End_of_file
78   | CicNotationParser.Parse_error _ as exn -> raise exn
79   | exn -> 
80       HLog.error (snd (MatitaExcPp.to_string exn));
81       raise exn
82
83 let fname () =
84   match Helm_registry.get_list Helm_registry.string "matita.args" with
85   | [x] -> x
86   | _ -> MatitaInit.die_usage ()
87
88 let pp_ocaml_mode () = 
89   HLog.message "";
90   HLog.message "                      ** Entering Ocaml mode ** ";
91   HLog.message "";
92   HLog.message "Type 'go ();;' to enter an interactive matitac";
93   HLog.message ""
94   
95 let clean_exit n =
96  let opt_exit =
97   function
98      None -> ()
99    | Some n -> exit n
100  in
101   match !grafite_status with
102      None -> opt_exit n
103    | Some grafite_status ->
104       try
105        let baseuri = GrafiteTypes.get_string_option grafite_status "baseuri" in
106        let basedir = Helm_registry.get "matita.basedir" in
107        LibraryClean.clean_baseuris ~basedir ~verbose:false [baseuri];
108        opt_exit n
109       with GrafiteTypes.Option_error("baseuri", "not found") ->
110        (* no baseuri ==> nothing to clean yet *)
111        opt_exit n
112   
113 let rec interactive_loop () = 
114   let str = Ulexing.from_utf8_channel stdin in
115   try
116     run_script str 
117       (MatitaEngine.eval_from_stream ~first_statement_only:false ~prompt:true
118       ~include_paths:(Helm_registry.get_list Helm_registry.string
119         "matita.includes"))
120   with 
121   | GrafiteEngine.Drop -> pp_ocaml_mode ()
122   | GrafiteEngine.Macro (floc,_) ->
123      let x, y = HExtlib.loc_of_floc floc in
124       HLog.error
125        (sprintf "A macro has been found in a script at %d-%d" x y);
126       interactive_loop ()
127   | Sys.Break -> HLog.error "user break!"; interactive_loop ()
128   | GrafiteTypes.Command_error _ -> interactive_loop ()
129   | End_of_file ->
130      print_newline ();
131      clean_exit (Some 0)
132   | HExtlib.Localized (floc,CicNotationParser.Parse_error err) ->
133      let x, y = HExtlib.loc_of_floc floc in
134       HLog.error (sprintf "Parse error at %d-%d: %s" x y err);
135       interactive_loop ()
136   | exn -> HLog.error (Printexc.to_string exn); interactive_loop ()
137
138 let go () =
139   Helm_registry.load_from BuildTimeConf.matita_conf;
140   Http_getter.init ();
141   MetadataTypes.ownerize_tables (Helm_registry.get "matita.owner");
142   LibraryDb.create_owner_environment ();
143   CicEnvironment.set_trust (* environment trust *)
144     (let trust =
145       Helm_registry.get_opt_default Helm_registry.get_bool
146         ~default:true "matita.environment_trust" in
147      fun _ -> trust);
148   let include_paths =
149    Helm_registry.get_list Helm_registry.string "matita.includes" in
150   grafite_status := Some (GrafiteSync.init ());
151   lexicon_status :=
152    Some (CicNotation2.load_notation ~include_paths
153     BuildTimeConf.core_notation_script);
154   Sys.catch_break true;
155   interactive_loop ()
156
157 let main ~mode = 
158   MatitaInit.initialize_all ();
159   (* must be called after init since args are set by cmdline parsing *)
160   let fname = fname () in
161   let include_paths =
162    Helm_registry.get_list Helm_registry.string "matita.includes" in
163   grafite_status := Some (GrafiteSync.init ());
164   lexicon_status :=
165    Some (CicNotation2.load_notation ~include_paths
166     BuildTimeConf.core_notation_script);
167   Sys.catch_break true;
168   let origcb = HLog.get_log_callback () in
169   let newcb tag s =
170     match tag with
171     | `Debug | `Message -> ()
172     | `Warning | `Error -> origcb tag s
173   in
174   if Helm_registry.get_int "matita.verbosity" < 1 then
175     HLog.set_log_callback newcb;
176   let matita_debug = Helm_registry.get_bool "matita.debug" in
177   try
178     let time = Unix.time () in
179     if Helm_registry.get_int "matita.verbosity" < 1 then
180       origcb `Message ("compiling " ^ Filename.basename fname ^ "...")
181     else
182       HLog.message (sprintf "execution of %s started:" fname);
183     let is =
184       Ulexing.from_utf8_channel
185         (match fname with
186         | "stdin" -> stdin
187         | fname -> open_in fname) in
188     let include_paths =
189      Helm_registry.get_list Helm_registry.string "matita.includes" in
190     (try
191       run_script is 
192        (MatitaEngine.eval_from_stream ~first_statement_only:false ~include_paths
193          ~clean_baseuri:(not (Helm_registry.get_bool "matita.preserve")))
194      with End_of_file -> ());
195     let elapsed = Unix.time () -. time in
196     let tm = Unix.gmtime elapsed in
197     let sec = string_of_int tm.Unix.tm_sec ^ "''" in
198     let min = 
199       if tm.Unix.tm_min > 0 then (string_of_int tm.Unix.tm_min ^ "' ") else "" 
200     in
201     let hou = 
202       if tm.Unix.tm_hour > 0 then (string_of_int tm.Unix.tm_hour ^ "h ") else ""
203     in
204     let proof_status,moo_content_rev,metadata,lexicon_content_rev = 
205       match !lexicon_status,!grafite_status with
206       | Some ss, Some s ->
207          s.proof_status, s.moo_content_rev, ss.LexiconEngine.metadata,
208           ss.LexiconEngine.lexicon_content_rev
209       | _,_ -> assert false
210     in
211     if proof_status <> GrafiteTypes.No_proof then
212      begin
213       HLog.error
214        "there are still incomplete proofs at the end of the script";
215       clean_exit (Some 2)
216      end
217     else
218      begin
219        let basedir = Helm_registry.get "matita.basedir" in
220        let baseuri =
221         DependenciesParser.baseuri_of_script ~include_paths fname in
222        let moo_fname = LibraryMisc.obj_file_of_baseuri ~basedir ~baseuri in
223        let lexicon_fname= LibraryMisc.lexicon_file_of_baseuri ~basedir ~baseuri in
224        let metadata_fname =
225         LibraryMisc.metadata_file_of_baseuri ~basedir ~baseuri
226        in
227        GrafiteMarshal.save_moo moo_fname moo_content_rev;
228        LibraryNoDb.save_metadata metadata_fname metadata;
229        LexiconMarshal.save_lexicon lexicon_fname lexicon_content_rev;
230        HLog.message 
231          (sprintf "execution of %s completed in %s." fname (hou^min^sec));
232        exit 0
233      end
234   with 
235   | Sys.Break ->
236       HLog.error "user break!";
237       if mode = `COMPILER then
238         clean_exit (Some ~-1)
239       else
240         pp_ocaml_mode ()
241   | GrafiteEngine.Drop ->
242       if mode = `COMPILER then 
243         clean_exit (Some 1)
244       else 
245         pp_ocaml_mode ()
246   | GrafiteEngine.Macro (floc,_) ->
247      let x, y = HExtlib.loc_of_floc floc in
248       HLog.error
249        (sprintf "A macro has been found in a script at %d-%d" x y);
250       if mode = `COMPILER then 
251         clean_exit (Some 1)
252       else 
253         pp_ocaml_mode ()
254   | HExtlib.Localized (floc,CicNotationParser.Parse_error err) ->
255      let (x, y) = HExtlib.loc_of_floc floc in
256      HLog.error (sprintf "Parse error at %d-%d: %s" x y err);
257      if mode = `COMPILER then
258        clean_exit (Some 1)
259      else
260        pp_ocaml_mode ()
261   | exn ->
262       if matita_debug then raise exn;
263       if mode = `COMPILER then 
264         clean_exit (Some 3)
265       else 
266         pp_ocaml_mode ()
267