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