]> matita.cs.unibo.it Git - helm.git/blob - helm/matita/matitaEngine.ml
eval_from_stream_greedy finally got rid of!
[helm.git] / helm / matita / matitaEngine.ml
1 (* Copyright (C) 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 let debug = false ;;
31 let debug_print = if debug then prerr_endline else ignore ;;
32
33 let eval_ast ~include_paths ?do_heavy_checks ?clean_baseuri status ast =
34  GrafiteEngine.eval_ast
35   ~baseuri_of_script:(GrafiteParserMisc.baseuri_of_script ~include_paths)
36   ~disambiguate_tactic:GrafiteDisambiguate.disambiguate_tactic
37   ~disambiguate_command:GrafiteDisambiguate.disambiguate_command
38   ?do_heavy_checks ?clean_baseuri status ast
39
40 let eval_from_stream ?(prompt=false) ?do_heavy_checks ~include_paths
41  ?clean_baseuri status str cb 
42 =
43   while true do
44     if prompt then (print_string "matita> "; flush stdout);
45     let ast = GrafiteParser.parse_statement str in
46     cb !status ast;
47     status :=
48      eval_ast ~include_paths ?do_heavy_checks ?clean_baseuri !status ast
49   done
50 ;;
51
52 let eval_string ?do_heavy_checks ~include_paths ?clean_baseuri status str =
53  try
54   eval_from_stream 
55     ?do_heavy_checks ~include_paths ?clean_baseuri status
56       (Ulexing.from_utf8_string str) (fun _ _ -> ())
57  with End_of_file -> ()
58
59 let default_options () = no_options
60
61 let initial_status =
62   lazy {
63     aliases = DisambiguateTypes.Environment.empty;
64     multi_aliases = DisambiguateTypes.Environment.empty;
65     moo_content_rev = [];
66     metadata = [];
67     proof_status = No_proof;
68     options = default_options ();
69     objects = [];
70     coercions = [];
71     notation_ids = [];
72   }
73