]> matita.cs.unibo.it Git - helm.git/blob - matita/matita/matitaEngine.ml
whelp and cic disambiguation removed
[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 disambiguate_command lexicon_status_ref grafite_status cmd =
34  let baseuri = grafite_status#baseuri in
35  let lexicon_status,metasenv,cmd =
36   GrafiteDisambiguate.disambiguate_command ~baseuri
37    !lexicon_status_ref (GrafiteTypes.get_proof_metasenv grafite_status) cmd
38  in
39   lexicon_status_ref := lexicon_status;
40   GrafiteTypes.set_metasenv metasenv grafite_status,cmd
41
42 let eval_macro_screenshot (status : GrafiteTypes.status) name =
43   let _,_,metasenv,subst,_ = status#obj in
44   let sequent = List.hd metasenv in
45   let mathml = 
46     ApplyTransformation.nmml_of_cic_sequent 
47       status metasenv subst sequent 
48   in
49   let domImpl = Gdome.domImplementation () in
50   ignore(domImpl#saveDocumentToFile 
51     ~name:(name^".xml") ~doc:mathml ());
52   ignore(Sys.command ("mathmlsvg --verbose=1 --font-size=20 --cut-filename=no " ^ 
53     Filename.quote (name^".xml")));
54   ignore(Sys.command ("convert " ^ 
55     Filename.quote (name^".svg") ^ " " ^ 
56     Filename.quote (name^".png")));
57   HLog.debug ("generated " ^ name ^ ".png");
58   status, `New []
59 ;;
60
61 let eval_ast ?do_heavy_checks status (text,prefix_len,ast) =
62  let dump = not (Helm_registry.get_bool "matita.moo") in
63  let lexicon_status_ref = ref (status :> LexiconEngine.status) in
64  let baseuri = status#baseuri in
65  let new_status,new_objs =
66   match ast with 
67      | G.Executable (_, G.Command (_, G.Coercion _)) when dump ->
68 (* FG: some commands can not be executed when mmas are parsed *************)
69 (* To be removed when mmas will be executed                               *)
70         status, `Old []
71      | ast -> 
72   GrafiteEngine.eval_ast
73    ~disambiguate_tactic:((* MATITA 1.0*) fun _ -> assert false)
74    ~disambiguate_command:(disambiguate_command lexicon_status_ref)
75    ~disambiguate_macro:((* MATITA 1.0*) fun _ -> assert false)
76    ?do_heavy_checks status (text,prefix_len,ast)
77  in
78  let new_status =
79   if !lexicon_status_ref#lstatus != status#lstatus then
80    new_status#set_lstatus (!lexicon_status_ref#lstatus)
81   else
82    new_status in
83  let new_status = LexiconSync.add_aliases_for_objs new_status new_objs in
84  let new_aliases = LexiconSync.alias_diff ~from:status new_status in
85  let _,intermediate_states = 
86   List.fold_left
87    (fun (status,acc) (k,value) -> 
88      let v = LexiconAst.description_of_alias value in
89      let b =
90       try
91        (* this hack really sucks! *)
92        UriManager.buri_of_uri (UriManager.uri_of_string v) = baseuri
93       with
94        UriManager.IllFormedUri _ ->
95         try
96          (* this too! *)
97          let NReference.Ref (uri,_) = NReference.reference_of_string v in
98          let ouri = NCic2OCic.ouri_of_nuri uri in
99           UriManager.buri_of_uri ouri = baseuri
100         with
101          NReference.IllFormedReference _ ->
102           false (* v is a description, not a URI *)
103      in
104       if b then 
105        status,acc
106       else
107        let new_status =
108         LexiconEngine.set_proof_aliases status [k,value]
109        in
110         new_status, (new_status ,Some (k,value))::acc
111    ) (status,[]) new_aliases
112  in
113   ((new_status),None)::intermediate_states
114 ;;
115
116 exception TryingToAdd of string
117 exception EnrichedWithStatus of exn * GrafiteTypes.status
118
119 let eval_from_stream ~first_statement_only ~include_paths 
120  ?do_heavy_checks ?(enforce_no_new_aliases=true)
121  ?(watch_statuses=fun _ -> ()) status str cb 
122 =
123  let matita_debug = Helm_registry.get_bool "matita.debug" in
124  let rec loop status statuses =
125   let loop =
126    if first_statement_only then fun _ statuses -> statuses
127    else loop
128   in
129   let stop,g,s = 
130    try
131      let cont =
132        try Some (GrafiteParser.parse_statement ~include_paths str status)
133        with End_of_file -> None in
134      match cont with
135      | None -> true, status, statuses
136      | Some (status,ast) ->
137        (match ast with
138            GrafiteParser.LNone _ ->
139             watch_statuses status ;
140             false, status, ((status,None)::statuses)
141          | GrafiteParser.LSome ast ->
142             cb status ast;
143             let new_statuses = eval_ast ?do_heavy_checks status ("",0,ast) in
144             if enforce_no_new_aliases then
145              List.iter 
146               (fun (_,alias) ->
147                 match alias with
148                   None -> ()
149                 | Some (k,value) ->
150                    let newtxt = LexiconAstPp.pp_alias value in
151                     raise (TryingToAdd newtxt)) new_statuses;
152             let status =
153              match new_statuses with
154                 [] -> assert false
155               | (s,_)::_ -> s
156             in
157              watch_statuses status ;
158              false, status, (new_statuses @ statuses))
159    with exn when not matita_debug ->
160      raise (EnrichedWithStatus (exn, status))
161   in
162   if stop then s else loop g s
163  in
164   loop status []
165 ;;