]> matita.cs.unibo.it Git - helm.git/blob - helm/matita/matitaEngine.ml
metadata are no longer stored in .moo files.
[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_from_stream 
34   ?do_heavy_checks ?include_paths ?clean_baseuri status str cb 
35 =
36   try
37     while true do
38       let ast = GrafiteParser.parse_statement str in
39       cb !status ast;
40       status :=
41        GrafiteEngine.eval_ast
42         ~disambiguate_tactic:GrafiteDisambiguate.disambiguate_tactic
43         ~disambiguate_command:GrafiteDisambiguate.disambiguate_command
44         ?do_heavy_checks ?include_paths ?clean_baseuri !status ast
45     done
46   with End_of_file -> ()
47
48 let eval_from_stream_greedy 
49   ?do_heavy_checks ?include_paths ?clean_baseuri status str cb 
50 =
51   while true do
52     print_string "matita> ";
53     flush stdout;
54     let ast = GrafiteParser.parse_statement str in
55     cb !status ast;
56     status :=
57      GrafiteEngine.eval_ast
58       ~disambiguate_tactic:GrafiteDisambiguate.disambiguate_tactic
59       ~disambiguate_command:GrafiteDisambiguate.disambiguate_command
60       ?do_heavy_checks ?include_paths ?clean_baseuri !status ast 
61   done
62 ;;
63
64 let eval_string ?do_heavy_checks ?include_paths ?clean_baseuri status str =
65   eval_from_stream 
66     ?do_heavy_checks ?include_paths ?clean_baseuri status
67       (Ulexing.from_utf8_string str) (fun _ _ -> ())
68
69 let default_options () = no_options
70
71 let initial_status =
72   lazy {
73     aliases = DisambiguateTypes.Environment.empty;
74     multi_aliases = DisambiguateTypes.Environment.empty;
75     moo_content_rev = [];
76     metadata = [];
77     proof_status = No_proof;
78     options = default_options ();
79     objects = [];
80     coercions = [];
81     notation_ids = [];
82   }
83