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