]> matita.cs.unibo.it Git - helm.git/blob - matita/matita/matitaEngine.ml
more dead code removal
[helm.git] / matita / 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 (* $Id$ *)
27
28 module G = GrafiteAst
29
30 let debug = false ;;
31 let debug_print = if debug then prerr_endline else ignore ;;
32
33 let eval_macro_screenshot (status : GrafiteTypes.status) name =
34   assert false (* MATITA 1.0
35   let _,_,metasenv,subst,_ = status#obj in
36   let sequent = List.hd metasenv in
37   let mathml = 
38     ApplyTransformation.nmml_of_cic_sequent 
39       status metasenv subst sequent 
40   in
41   let domImpl = Gdome.domImplementation () in
42   ignore(domImpl#saveDocumentToFile 
43     ~name:(name^".xml") ~doc:mathml ());
44   ignore(Sys.command ("mathmlsvg --verbose=1 --font-size=20 --cut-filename=no " ^ 
45     Filename.quote (name^".xml")));
46   ignore(Sys.command ("convert " ^ 
47     Filename.quote (name^".svg") ^ " " ^ 
48     Filename.quote (name^".png")));
49   HLog.debug ("generated " ^ name ^ ".png");
50   status, `New []
51   *)
52 ;;
53
54 let eval_ast ~include_paths ?do_heavy_checks status (text,prefix_len,ast) =
55  let baseuri = status#baseuri in
56  let new_aliases,new_status =
57   GrafiteDisambiguate.eval_with_new_aliases status
58    (fun status ->
59      GrafiteEngine.eval_ast ~include_paths ?do_heavy_checks status
60       (text,prefix_len,ast)) in
61  let _,intermediate_states = 
62   List.fold_left
63    (fun (status,acc) (k,value) -> 
64      let v = GrafiteAst.description_of_alias value in
65      let b =
66       try
67        let NReference.Ref (uri,_) = NReference.reference_of_string v in
68         NUri.baseuri_of_uri uri = baseuri
69       with
70        NReference.IllFormedReference _ ->
71         false (* v is a description, not a URI *)
72      in
73       if b then 
74        status,acc
75       else
76        let status =
77         GrafiteDisambiguate.set_proof_aliases status ~implicit_aliases:false
78          GrafiteAst.WithPreferences [k,value]
79        in
80         status, (status ,Some (k,value))::acc
81    ) (status,[]) new_aliases (* WARNING: this must be the old status! *)
82  in
83   (new_status,None)::intermediate_states
84 ;;
85
86 exception TryingToAdd of string
87 exception EnrichedWithStatus of exn * GrafiteTypes.status
88
89 let eval_from_stream ~include_paths ?do_heavy_checks
90  ?(enforce_no_new_aliases=true) status str cb 
91 =
92  let matita_debug = Helm_registry.get_bool "matita.debug" in
93  let rec loop status statuses =
94   let stop,g,s = 
95    try
96      let cont =
97        try Some (GrafiteParser.parse_statement status str)
98        with End_of_file -> None in
99      match cont with
100      | None -> true, status, statuses
101      | Some ast ->
102        (match ast with
103            GrafiteParser.LNone _ -> false, status, ((status,None)::statuses)
104          | GrafiteParser.LSome ast ->
105             cb status ast;
106             let new_statuses =
107               eval_ast ~include_paths ?do_heavy_checks status ("",0,ast) in
108             if enforce_no_new_aliases then
109              List.iter 
110               (fun (_,alias) ->
111                 match alias with
112                   None -> ()
113                 | Some (k,value) ->
114                    let newtxt = GrafiteAstPp.pp_alias value in
115                     raise (TryingToAdd newtxt)) new_statuses;
116             let status =
117              match new_statuses with
118                 [] -> assert false
119               | (s,_)::_ -> s
120             in
121              false, status, (new_statuses @ statuses))
122    with exn when not matita_debug ->
123      raise (EnrichedWithStatus (exn, status))
124   in
125   if stop then s else loop g s
126  in
127   loop status []
128 ;;