]> matita.cs.unibo.it Git - helm.git/blob - helm/ocaml/grafite_engine/grafiteEngine.ml
test branch
[helm.git] / helm / ocaml / grafite_engine / grafiteEngine.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 open Printf
29
30 exception Drop
31 exception IncludedFileNotCompiled of string (* file name *)
32 exception Macro of
33  GrafiteAst.loc *
34   (Cic.context -> GrafiteTypes.status * Cic.term GrafiteAst.macro)
35 exception ReadOnlyUri of string
36
37 type options = { 
38   do_heavy_checks: bool ; 
39   clean_baseuri: bool
40 }
41
42 (** create a ProofEngineTypes.mk_fresh_name_type function which uses given
43   * names as long as they are available, then it fallbacks to name generation
44   * using FreshNamesGenerator module *)
45 let namer_of names =
46   let len = List.length names in
47   let count = ref 0 in
48   fun metasenv context name ~typ ->
49     if !count < len then begin
50       let name = Cic.Name (List.nth names !count) in
51       incr count;
52       name
53     end else
54       FreshNamesGenerator.mk_fresh_name ~subst:[] metasenv context name ~typ
55
56 let tactic_of_ast ast =
57   let module PET = ProofEngineTypes in
58   match ast with
59   | GrafiteAst.Absurd (_, term) -> Tactics.absurd term
60   | GrafiteAst.Apply (_, term) -> Tactics.apply term
61   | GrafiteAst.Assumption _ -> Tactics.assumption
62   | GrafiteAst.Auto (_,depth,width,paramodulation,full) ->
63       AutoTactic.auto_tac ?depth ?width ?paramodulation ?full
64         ~dbd:(LibraryDb.instance ()) ()
65   | GrafiteAst.Change (_, pattern, with_what) ->
66      Tactics.change ~pattern with_what
67   | GrafiteAst.Clear (_,id) -> Tactics.clear id
68   | GrafiteAst.ClearBody (_,id) -> Tactics.clearbody id
69   | GrafiteAst.Contradiction _ -> Tactics.contradiction
70   | GrafiteAst.Compare (_, term) -> Tactics.compare term
71   | GrafiteAst.Constructor (_, n) -> Tactics.constructor n
72   | GrafiteAst.Cut (_, ident, term) ->
73      let names = match ident with None -> [] | Some id -> [id] in
74      Tactics.cut ~mk_fresh_name_callback:(namer_of names) term
75   | GrafiteAst.DecideEquality _ -> Tactics.decide_equality
76   | GrafiteAst.Decompose (_, types, what, names) -> 
77       let to_type = function
78          | GrafiteAst.Type (uri, typeno) -> uri, typeno
79          | GrafiteAst.Ident _            -> assert false
80       in
81       let user_types = List.rev_map to_type types in
82       let dbd = LibraryDb.instance () in
83       let mk_fresh_name_callback = namer_of names in
84       Tactics.decompose ~mk_fresh_name_callback ~dbd ~user_types what
85   | GrafiteAst.Discriminate (_,term) -> Tactics.discriminate term
86   | GrafiteAst.Elim (_, what, using, depth, names) ->
87       Tactics.elim_intros ?using ?depth ~mk_fresh_name_callback:(namer_of names)
88         what
89   | GrafiteAst.ElimType (_, what, using, depth, names) ->
90       Tactics.elim_type ?using ?depth ~mk_fresh_name_callback:(namer_of names)
91         what
92   | GrafiteAst.Exact (_, term) -> Tactics.exact term
93   | GrafiteAst.Exists _ -> Tactics.exists
94   | GrafiteAst.Fail _ -> Tactics.fail
95   | GrafiteAst.Fold (_, reduction_kind, term, pattern) ->
96       let reduction =
97         match reduction_kind with
98         | `Normalize ->
99             PET.const_lazy_reduction
100               (CicReduction.normalize ~delta:false ~subst:[])
101         | `Reduce -> PET.const_lazy_reduction ProofEngineReduction.reduce
102         | `Simpl -> PET.const_lazy_reduction ProofEngineReduction.simpl
103         | `Unfold None ->
104             PET.const_lazy_reduction (ProofEngineReduction.unfold ?what:None)
105         | `Unfold (Some lazy_term) ->
106            (fun context metasenv ugraph ->
107              let what, metasenv, ugraph = lazy_term context metasenv ugraph in
108              ProofEngineReduction.unfold ~what, metasenv, ugraph)
109         | `Whd ->
110             PET.const_lazy_reduction (CicReduction.whd ~delta:false ~subst:[])
111       in
112       Tactics.fold ~reduction ~term ~pattern
113   | GrafiteAst.Fourier _ -> Tactics.fourier
114   | GrafiteAst.FwdSimpl (_, hyp, names) -> 
115      Tactics.fwd_simpl ~mk_fresh_name_callback:(namer_of names)
116       ~dbd:(LibraryDb.instance ()) hyp
117   | GrafiteAst.Generalize (_,pattern,ident) ->
118      let names = match ident with None -> [] | Some id -> [id] in
119      Tactics.generalize ~mk_fresh_name_callback:(namer_of names) pattern 
120   | GrafiteAst.Goal (_, n) -> Tactics.set_goal n
121   | GrafiteAst.IdTac _ -> Tactics.id
122   | GrafiteAst.Injection (_,term) -> Tactics.injection term
123   | GrafiteAst.Intros (_, None, names) ->
124       PrimitiveTactics.intros_tac ~mk_fresh_name_callback:(namer_of names) ()
125   | GrafiteAst.Intros (_, Some num, names) ->
126       PrimitiveTactics.intros_tac ~howmany:num
127         ~mk_fresh_name_callback:(namer_of names) ()
128   | GrafiteAst.Inversion (_, term) ->
129       Tactics.inversion term
130   | GrafiteAst.LApply (_, how_many, to_what, what, ident) ->
131       let names = match ident with None -> [] | Some id -> [id] in
132       Tactics.lapply ~mk_fresh_name_callback:(namer_of names) ?how_many
133         ~to_what what
134   | GrafiteAst.Left _ -> Tactics.left
135   | GrafiteAst.LetIn (loc,term,name) ->
136       Tactics.letin term ~mk_fresh_name_callback:(namer_of [name])
137   | GrafiteAst.Reduce (_, reduction_kind, pattern) ->
138       (match reduction_kind with
139       | `Normalize -> Tactics.normalize ~pattern
140       | `Reduce -> Tactics.reduce ~pattern  
141       | `Simpl -> Tactics.simpl ~pattern 
142       | `Unfold what -> Tactics.unfold ~pattern what
143       | `Whd -> Tactics.whd ~pattern)
144   | GrafiteAst.Reflexivity _ -> Tactics.reflexivity
145   | GrafiteAst.Replace (_, pattern, with_what) ->
146      Tactics.replace ~pattern ~with_what
147   | GrafiteAst.Rewrite (_, direction, t, pattern) ->
148      EqualityTactics.rewrite_tac ~direction ~pattern t
149   | GrafiteAst.Right _ -> Tactics.right
150   | GrafiteAst.Ring _ -> Tactics.ring
151   | GrafiteAst.Split _ -> Tactics.split
152   | GrafiteAst.Symmetry _ -> Tactics.symmetry
153   | GrafiteAst.Transitivity (_, term) -> Tactics.transitivity term
154
155 (* maybe we only need special cases for apply and goal *)
156 let classify_tactic tactic = 
157   match tactic with
158   (* tactics that can't close the goal (return a goal we want to "select") *)
159   | GrafiteAst.Rewrite _ 
160   | GrafiteAst.Split _ 
161   | GrafiteAst.Replace _ 
162   | GrafiteAst.Reduce _
163   | GrafiteAst.Injection _ 
164   | GrafiteAst.IdTac _ 
165   | GrafiteAst.Generalize _ 
166   | GrafiteAst.Elim _ 
167   | GrafiteAst.Cut _
168   | GrafiteAst.Decompose _ -> true, true
169   (* tactics we don't want to reorder goals. I think only Goal needs this. *)
170   | GrafiteAst.Goal _ -> false, true
171   (* tactics like apply *)
172   | _ -> true, false
173   
174 let reorder_metasenv start refine tactic goals current_goal always_opens_a_goal=
175   let module PEH = ProofEngineHelpers in
176 (*   let print_m name metasenv =
177     prerr_endline (">>>>> " ^ name);
178     prerr_endline (CicMetaSubst.ppmetasenv [] metasenv)
179   in *)
180   (* phase one calculates:
181    *   new_goals_from_refine:  goals added by refine
182    *   head_goal:              the first goal opened by ythe tactic 
183    *   other_goals:            other goals opened by the tactic
184    *)
185   let new_goals_from_refine = PEH.compare_metasenvs start refine in
186   let new_goals_from_tactic = PEH.compare_metasenvs refine tactic in
187   let head_goal, other_goals, goals = 
188     match goals with
189     | [] -> None,[],goals
190     | hd::tl -> 
191         (* assert (List.mem hd new_goals_from_tactic);
192          * invalidato dalla goal_tac
193          * *)
194         Some hd, List.filter ((<>) hd) new_goals_from_tactic, List.filter ((<>)
195         hd) goals
196   in
197   let produced_goals = 
198     match head_goal with
199     | None -> new_goals_from_refine @ other_goals
200     | Some x -> x :: new_goals_from_refine @ other_goals
201   in
202   (* extract the metas generated by refine and tactic *)
203   let metas_for_tactic_head = 
204     match head_goal with
205     | None -> []
206     | Some head_goal -> List.filter (fun (n,_,_) -> n = head_goal) tactic in
207   let metas_for_tactic_goals = 
208     List.map 
209       (fun x -> List.find (fun (metano,_,_) -> metano = x) tactic)
210     goals 
211   in
212   let metas_for_refine_goals = 
213     List.filter (fun (n,_,_) -> List.mem n new_goals_from_refine) tactic in
214   let produced_metas, goals = 
215     let produced_metas =
216       if always_opens_a_goal then
217         metas_for_tactic_head @ metas_for_refine_goals @ 
218           metas_for_tactic_goals
219       else begin
220 (*         print_m "metas_for_refine_goals" metas_for_refine_goals;
221         print_m "metas_for_tactic_head" metas_for_tactic_head;
222         print_m "metas_for_tactic_goals" metas_for_tactic_goals; *)
223         metas_for_refine_goals @ metas_for_tactic_head @ 
224           metas_for_tactic_goals
225       end
226     in
227     let goals = List.map (fun (metano, _, _) -> metano)  produced_metas in
228     produced_metas, goals
229   in
230   (* residual metas, preserving the original order *)
231   let before, after = 
232     let rec split e =
233       function 
234       | [] -> [],[]
235       | (metano, _, _) :: tl when metano = e -> 
236           [], List.map (fun (x,_,_) -> x) tl
237       | (metano, _, _) :: tl -> let b, a = split e tl in metano :: b, a
238     in
239     let find n metasenv =
240       try
241         Some (List.find (fun (metano, _, _) -> metano = n) metasenv)
242       with Not_found -> None
243     in
244     let extract l =
245       List.fold_right 
246         (fun n acc -> 
247           match find n tactic with
248           | Some x -> x::acc
249           | None -> acc
250         ) l [] in
251     let before_l, after_l = split current_goal start in
252     let before_l = 
253       List.filter (fun x -> not (List.mem x produced_goals)) before_l in
254     let after_l = 
255       List.filter (fun x -> not (List.mem x produced_goals)) after_l in
256     let before = extract before_l in
257     let after = extract after_l in
258       before, after
259   in
260 (* |+   DEBUG CODE  +|
261   print_m "BEGIN" start;
262   prerr_endline ("goal was: " ^ string_of_int current_goal);
263   prerr_endline ("and metas from refine are:");
264   List.iter 
265     (fun t -> prerr_string (" " ^ string_of_int t)) 
266   new_goals_from_refine;
267   prerr_endline "";
268   print_m "before" before;
269   print_m "metas_for_tactic_head" metas_for_tactic_head;
270   print_m "metas_for_refine_goals" metas_for_refine_goals;
271   print_m "metas_for_tactic_goals" metas_for_tactic_goals;
272   print_m "produced_metas" produced_metas;
273   print_m "after" after; 
274 |+   FINE DEBUG CODE +| *)
275   before @ produced_metas @ after, goals 
276   
277 let apply_tactic ~disambiguate_tactic tactic (status, goal) =
278 (* prerr_endline "apply_tactic"; *)
279 (* prerr_endline (Continuationals.Stack.pp (GrafiteTypes.get_stack status)); *)
280  let starting_metasenv = GrafiteTypes.get_proof_metasenv status in
281  let before = List.map (fun g, _, _ -> g) starting_metasenv in
282 (* prerr_endline "disambiguate"; *)
283  let status, tactic = disambiguate_tactic status goal tactic in
284  let metasenv_after_refinement =  GrafiteTypes.get_proof_metasenv status in
285  let proof = GrafiteTypes.get_current_proof status in
286  let proof_status = proof, goal in
287  let needs_reordering, always_opens_a_goal = classify_tactic tactic in
288  let tactic = tactic_of_ast tactic in
289  (* apply tactic will change the lexicon_status ... *)
290 (* prerr_endline "apply_tactic bassa"; *)
291  let (proof, opened) = ProofEngineTypes.apply_tactic tactic proof_status in
292  let after = ProofEngineTypes.goals_of_proof proof in
293  let opened_goals, closed_goals = Tacticals.goals_diff ~before ~after ~opened in
294 (* prerr_endline("before: " ^ String.concat ", " (List.map string_of_int before));
295 prerr_endline("after: " ^ String.concat ", " (List.map string_of_int after));
296 prerr_endline("opened: " ^ String.concat ", " (List.map string_of_int opened)); *)
297 (* prerr_endline("opened_goals: " ^ String.concat ", " (List.map string_of_int opened_goals));
298 prerr_endline("closed_goals: " ^ String.concat ", " (List.map string_of_int closed_goals)); *)
299  let proof, opened_goals = 
300    if needs_reordering then begin
301      let uri, metasenv_after_tactic, t, ty = proof in
302 (* prerr_endline ("goal prima del riordino: " ^ String.concat " " (List.map string_of_int (ProofEngineTypes.goals_of_proof proof))); *)
303      let reordered_metasenv, opened_goals = 
304        reorder_metasenv
305         starting_metasenv
306         metasenv_after_refinement metasenv_after_tactic
307         opened goal always_opens_a_goal
308      in
309      let proof' = uri, reordered_metasenv, t, ty in
310 (* prerr_endline ("goal dopo il riordino: " ^ String.concat " " (List.map string_of_int (ProofEngineTypes.goals_of_proof proof'))); *)
311      proof', opened_goals
312    end
313       else
314         proof, opened_goals
315  in
316  let incomplete_proof =
317    match status.GrafiteTypes.proof_status with
318    | GrafiteTypes.Incomplete_proof p -> p
319    | _ -> assert false
320  in
321  { status with GrafiteTypes.proof_status =
322     GrafiteTypes.Incomplete_proof
323      { incomplete_proof with GrafiteTypes.proof = proof } },
324  opened_goals, closed_goals
325
326 type eval_ast =
327  {ea_go:
328   'term 'lazy_term 'reduction 'obj 'ident.
329   disambiguate_tactic:
330    (GrafiteTypes.status ->
331     ProofEngineTypes.goal ->
332     ('term, 'lazy_term, 'reduction, 'ident) GrafiteAst.tactic ->
333     GrafiteTypes.status *
334    (Cic.term, Cic.lazy_term, Cic.lazy_term GrafiteAst.reduction, string) GrafiteAst.tactic) ->
335
336   disambiguate_command:
337    (GrafiteTypes.status ->
338     'obj GrafiteAst.command ->
339     GrafiteTypes.status * Cic.obj GrafiteAst.command) ->
340
341   disambiguate_macro:
342    (GrafiteTypes.status ->
343     'term GrafiteAst.macro ->
344     Cic.context -> GrafiteTypes.status * Cic.term GrafiteAst.macro) ->
345
346   ?do_heavy_checks:bool ->
347   ?clean_baseuri:bool ->
348   GrafiteTypes.status ->
349   ('term, 'lazy_term, 'reduction, 'obj, 'ident) GrafiteAst.statement ->
350   GrafiteTypes.status * UriManager.uri list
351  }
352
353 type 'a eval_command =
354  {ec_go: 'term 'obj.
355   disambiguate_command:
356    (GrafiteTypes.status ->
357     'obj GrafiteAst.command ->
358     GrafiteTypes.status * Cic.obj GrafiteAst.command) ->
359   options -> GrafiteTypes.status -> 'obj GrafiteAst.command ->
360    GrafiteTypes.status * UriManager.uri list
361  }
362
363 type 'a eval_executable =
364  {ee_go: 'term 'lazy_term 'reduction 'obj 'ident.
365   disambiguate_tactic:
366    (GrafiteTypes.status ->
367     ProofEngineTypes.goal ->
368     ('term, 'lazy_term, 'reduction, 'ident) GrafiteAst.tactic ->
369     GrafiteTypes.status *
370    (Cic.term, Cic.lazy_term, Cic.lazy_term GrafiteAst.reduction, string) GrafiteAst.tactic) ->
371
372   disambiguate_command:
373    (GrafiteTypes.status ->
374     'obj GrafiteAst.command ->
375     GrafiteTypes.status * Cic.obj GrafiteAst.command) ->
376
377   disambiguate_macro:
378    (GrafiteTypes.status ->
379     'term GrafiteAst.macro ->
380     Cic.context -> GrafiteTypes.status * Cic.term GrafiteAst.macro) ->
381
382   options ->
383   GrafiteTypes.status ->
384   ('term, 'lazy_term, 'reduction, 'obj, 'ident) GrafiteAst.code ->
385   GrafiteTypes.status * UriManager.uri list
386  }
387
388 type 'a eval_from_moo =
389  { efm_go: GrafiteTypes.status -> string -> GrafiteTypes.status }
390       
391 let coercion_moo_statement_of uri =
392   GrafiteAst.Coercion (HExtlib.dummy_floc, uri, false)
393
394 let eval_coercion status ~add_composites uri =
395  let basedir = Helm_registry.get "matita.basedir" in
396  let status,compounds =
397   GrafiteSync.add_coercion ~basedir ~add_composites status uri in
398  let moo_content = coercion_moo_statement_of uri in
399  let status = GrafiteTypes.add_moo_content [moo_content] status in
400   {status with GrafiteTypes.proof_status = GrafiteTypes.No_proof},
401    compounds
402
403 let eval_tactical ~disambiguate_tactic status tac =
404  let apply_tactic = apply_tactic ~disambiguate_tactic in
405  let module MatitaStatus =
406   struct
407    type input_status = GrafiteTypes.status * ProofEngineTypes.goal
408  
409    type output_status =
410      GrafiteTypes.status * ProofEngineTypes.goal list * ProofEngineTypes.goal list
411  
412    type tactic = input_status -> output_status
413  
414    let id_tactic = apply_tactic (GrafiteAst.IdTac HExtlib.dummy_floc)
415    let mk_tactic tac = tac
416    let apply_tactic tac = tac
417    let goals (_, opened, closed) = opened, closed
418    let set_goals (opened, closed) (status, _, _) = (status, opened, closed)
419    let get_stack (status, _) = GrafiteTypes.get_stack status
420  
421    let set_stack stack (status, opened, closed) = 
422      GrafiteTypes.set_stack stack status, opened, closed
423  
424    let inject (status, _) = (status, [], [])
425    let focus goal (status, _, _) = (status, goal)
426   end
427  in
428  let module MatitaTacticals = Tacticals.Make (MatitaStatus) in
429   let rec tactical_of_ast l tac =
430     match tac with
431     | GrafiteAst.Tactic (loc, tactic) ->
432         MatitaTacticals.tactic (MatitaStatus.mk_tactic (apply_tactic tactic))
433     | GrafiteAst.Seq (loc, tacticals) ->  (* tac1; tac2; ... *)
434        assert (l > 0);
435        MatitaTacticals.seq ~tactics:(List.map (tactical_of_ast (l+1)) tacticals)
436     | GrafiteAst.Do (loc, n, tactical) ->
437         MatitaTacticals.do_tactic ~n ~tactic:(tactical_of_ast (l+1) tactical)
438     | GrafiteAst.Repeat (loc, tactical) ->
439         MatitaTacticals.repeat_tactic ~tactic:(tactical_of_ast (l+1) tactical)
440     | GrafiteAst.Then (loc, tactical, tacticals) ->  (* tac; [ tac1 | ... ] *)
441         assert (l > 0);
442         MatitaTacticals.thens ~start:(tactical_of_ast (l+1) tactical)
443           ~continuations:(List.map (tactical_of_ast (l+1)) tacticals)
444     | GrafiteAst.First (loc, tacticals) ->
445         MatitaTacticals.first
446           ~tactics:(List.map (fun t -> "", tactical_of_ast (l+1) t) tacticals)
447     | GrafiteAst.Try (loc, tactical) ->
448         MatitaTacticals.try_tactic ~tactic:(tactical_of_ast (l+1) tactical)
449     | GrafiteAst.Solve (loc, tacticals) ->
450         MatitaTacticals.solve_tactics
451          ~tactics:(List.map (fun t -> "", tactical_of_ast (l+1) t) tacticals)
452
453     | GrafiteAst.Skip loc -> MatitaTacticals.skip
454     | GrafiteAst.Dot loc -> MatitaTacticals.dot
455     | GrafiteAst.Semicolon loc -> MatitaTacticals.semicolon
456     | GrafiteAst.Branch loc -> MatitaTacticals.branch
457     | GrafiteAst.Shift loc -> MatitaTacticals.shift
458     | GrafiteAst.Pos (loc, i) -> MatitaTacticals.pos i
459     | GrafiteAst.Merge loc -> MatitaTacticals.merge
460     | GrafiteAst.Focus (loc, goals) -> MatitaTacticals.focus goals
461     | GrafiteAst.Unfocus loc -> MatitaTacticals.unfocus
462   in
463   let status, _, _ = tactical_of_ast 0 tac (status, ~-1) in
464   let status =  (* is proof completed? *)
465     match status.GrafiteTypes.proof_status with
466     | GrafiteTypes.Incomplete_proof
467        { GrafiteTypes.stack = stack; proof = proof }
468       when Continuationals.Stack.is_empty stack ->
469         { status with GrafiteTypes.proof_status = GrafiteTypes.Proof proof }
470     | _ -> status
471   in
472   status
473
474 let eval_comment status c = status
475
476 (* since the record syntax allows to declare coercions, we have to put this
477  * information inside the moo *)
478 let add_coercions_of_record_to_moo obj lemmas status =
479   let attributes = CicUtil.attributes_of_obj obj in
480   let is_record = function `Class (`Record att) -> Some att | _-> None in
481   match HExtlib.list_findopt is_record attributes with
482   | None -> status,[]
483   | Some fields -> 
484       let is_a_coercion uri =
485         try
486           let obj,_ = 
487             CicEnvironment.get_cooked_obj  CicUniv.empty_ugraph uri in
488           let attrs = CicUtil.attributes_of_obj obj in
489           List.mem (`Class `Projection) attrs
490         with Not_found -> assert false
491       in
492       (* looking at the fields we can know the 'wanted' coercions, but not the 
493        * actually generated ones. So, only the intersection between the wanted
494        * and the actual should be in the moo as coercion, while everithing in
495        * lemmas should go as aliases *)
496       let wanted_coercions = 
497         HExtlib.filter_map 
498           (function 
499             | (name,true) -> 
500                Some 
501                  (UriManager.uri_of_string 
502                    (GrafiteTypes.qualify status name ^ ".con"))
503             | _ -> None) 
504           fields
505       in
506       prerr_endline "wanted coercions:";
507       List.iter 
508         (fun u -> prerr_endline (UriManager.string_of_uri u)) 
509         wanted_coercions;
510       let coercions, moo_content = 
511         List.split
512           (HExtlib.filter_map 
513             (fun uri ->
514               let is_a_wanted_coercion = 
515                 List.exists (UriManager.eq uri) wanted_coercions in
516               if is_a_coercion uri && is_a_wanted_coercion then
517                 Some (uri, coercion_moo_statement_of uri)
518               else
519                 None) 
520             lemmas)
521       in
522       List.iter 
523         (fun u -> prerr_endline (UriManager.string_of_uri u)) 
524         coercions;
525       let status = GrafiteTypes.add_moo_content moo_content status in
526       let basedir = Helm_registry.get "matita.basedir" in
527       List.fold_left 
528         (fun (status,lemmas) uri ->
529           let status,new_lemmas =
530            GrafiteSync.add_coercion ~basedir ~add_composites:true status uri
531           in
532            status,new_lemmas@lemmas
533         ) (status,[]) coercions
534
535 let add_obj uri obj status =
536  let basedir = Helm_registry.get "matita.basedir" in
537  let status,lemmas = GrafiteSync.add_obj ~basedir uri obj status in
538  status, lemmas 
539       
540 let rec eval_command = {ec_go = fun ~disambiguate_command opts status cmd ->
541  let status,cmd = disambiguate_command status cmd in
542  let basedir = Helm_registry.get "matita.basedir" in
543  let status,uris =
544   match cmd with
545   | GrafiteAst.Default (loc, what, uris) as cmd ->
546      LibraryObjects.set_default what uris;
547      GrafiteTypes.add_moo_content [cmd] status,[]
548   | GrafiteAst.Include (loc, baseuri) ->
549      let moopath = LibraryMisc.obj_file_of_baseuri ~basedir ~baseuri in
550      if not (Sys.file_exists moopath) then
551        raise (IncludedFileNotCompiled moopath);
552      let status = eval_from_moo.efm_go status moopath in
553      status,[]
554   | GrafiteAst.Set (loc, name, value) -> 
555       if name = "baseuri" then begin
556         let value = 
557           let v = Http_getter_misc.strip_trailing_slash value in
558           try
559             ignore (String.index v ' ');
560             GrafiteTypes.command_error "baseuri can't contain spaces"
561           with Not_found -> v
562         in
563         if Http_getter_storage.is_read_only value then begin
564           HLog.error (sprintf "uri %s belongs to a read-only repository" value);
565           raise (ReadOnlyUri value)
566         end;
567         if not (GrafiteMisc.is_empty value) && opts.clean_baseuri then begin
568           HLog.message ("baseuri " ^ value ^ " is not empty");
569           HLog.message ("cleaning baseuri " ^ value);
570           LibraryClean.clean_baseuris ~basedir [value];
571         end;
572       end;
573       GrafiteTypes.set_option status name value,[]
574   | GrafiteAst.Drop loc -> raise Drop
575   | GrafiteAst.Qed loc ->
576       let uri, metasenv, bo, ty =
577         match status.GrafiteTypes.proof_status with
578         | GrafiteTypes.Proof (Some uri, metasenv, body, ty) ->
579             uri, metasenv, body, ty
580         | GrafiteTypes.Proof (None, metasenv, body, ty) -> 
581             raise (GrafiteTypes.Command_error 
582               ("Someone allows to start a theorem without giving the "^
583                "name/uri. This should be fixed!"))
584         | _->
585           raise
586            (GrafiteTypes.Command_error "You can't Qed an incomplete theorem")
587       in
588       if metasenv <> [] then 
589         raise
590          (GrafiteTypes.Command_error
591            "Proof not completed! metasenv is not empty!");
592       let name = UriManager.name_of_uri uri in
593       let obj = Cic.Constant (name,Some bo,ty,[],[]) in
594       let status, lemmas = add_obj uri obj status in
595        {status with GrafiteTypes.proof_status = GrafiteTypes.No_proof},
596         uri::lemmas
597   | GrafiteAst.Coercion (loc, uri, add_composites) ->
598      eval_coercion status ~add_composites uri
599   | GrafiteAst.Obj (loc,obj) ->
600      let ext,name =
601       match obj with
602          Cic.Constant (name,_,_,_,_)
603        | Cic.CurrentProof (name,_,_,_,_,_) -> ".con",name
604        | Cic.InductiveDefinition (types,_,_,_) ->
605           ".ind",
606           (match types with (name,_,_,_)::_ -> name | _ -> assert false)
607        | _ -> assert false in
608      let uri = 
609        UriManager.uri_of_string (GrafiteTypes.qualify status name ^ ext) 
610      in
611      let metasenv = GrafiteTypes.get_proof_metasenv status in
612      match obj with
613      | Cic.CurrentProof (_,metasenv',bo,ty,_,_) ->
614          let name = UriManager.name_of_uri uri in
615          if not(CicPp.check name ty) then
616            HLog.error ("Bad name: " ^ name);
617          if opts.do_heavy_checks then
618            begin
619              let dbd = LibraryDb.instance () in
620              let similar = Whelp.match_term ~dbd ty in
621              let similar_len = List.length similar in
622              if similar_len> 30 then
623                (HLog.message
624                  ("Duplicate check will compare your theorem with " ^ 
625                    string_of_int similar_len ^ 
626                    " theorems, this may take a while."));
627              let convertible =
628                List.filter (
629                  fun u ->
630                    let t = CicUtil.term_of_uri u in
631                    let ty',g = 
632                      CicTypeChecker.type_of_aux' 
633                        metasenv' [] t CicUniv.empty_ugraph
634                    in
635                    fst(CicReduction.are_convertible [] ty' ty g)) 
636                similar 
637              in
638              (match convertible with
639              | [] -> ()
640              | x::_ -> 
641                  HLog.warn  
642                  ("Theorem already proved: " ^ UriManager.string_of_uri x ^ 
643                   "\nPlease use a variant."));
644            end;
645          assert (metasenv = metasenv');
646          let initial_proof = (Some uri, metasenv, bo, ty) in
647          let initial_stack = Continuationals.Stack.of_metasenv metasenv in
648          { status with GrafiteTypes.proof_status =
649             GrafiteTypes.Incomplete_proof
650              { GrafiteTypes.proof = initial_proof; stack = initial_stack } },
651           []
652      | _ ->
653          if metasenv <> [] then
654           raise (GrafiteTypes.Command_error (
655             "metasenv not empty while giving a definition with body: " ^
656             CicMetaSubst.ppmetasenv [] metasenv));
657          let status, lemmas = add_obj uri obj status in 
658          let status,new_lemmas =
659           add_coercions_of_record_to_moo obj lemmas status
660          in
661           {status with GrafiteTypes.proof_status = GrafiteTypes.No_proof},
662            uri::new_lemmas@lemmas
663  in
664   match status.GrafiteTypes.proof_status with
665      GrafiteTypes.Intermediate _ ->
666       {status with GrafiteTypes.proof_status = GrafiteTypes.No_proof},uris
667    | _ -> status,uris
668
669 } and eval_executable = {ee_go = fun ~disambiguate_tactic ~disambiguate_command ~disambiguate_macro opts status ex ->
670   match ex with
671   | GrafiteAst.Tactical (_, tac, None) ->
672      eval_tactical ~disambiguate_tactic status tac,[]
673   | GrafiteAst.Tactical (_, tac, Some punct) ->
674      let status = eval_tactical ~disambiguate_tactic status tac in
675       eval_tactical ~disambiguate_tactic status punct,[]
676   | GrafiteAst.Command (_, cmd) ->
677       eval_command.ec_go ~disambiguate_command opts status cmd
678   | GrafiteAst.Macro (loc, macro) ->
679      raise (Macro (loc,disambiguate_macro status macro))
680
681 } and eval_from_moo = {efm_go = fun status fname ->
682   let ast_of_cmd cmd =
683     GrafiteAst.Executable (HExtlib.dummy_floc,
684       GrafiteAst.Command (HExtlib.dummy_floc,
685         cmd))
686   in
687   let moo = GrafiteMarshal.load_moo fname in
688   List.fold_left 
689     (fun status ast -> 
690       let ast = ast_of_cmd ast in
691       let status,lemmas =
692        eval_ast.ea_go
693          ~disambiguate_tactic:(fun status _ tactic -> status,tactic)
694          ~disambiguate_command:(fun status cmd -> status,cmd)
695          ~disambiguate_macro:(fun _ _ -> assert false)
696          status ast
697       in
698        assert (lemmas=[]);
699        status)
700     status moo
701 } and eval_ast = {ea_go = fun ~disambiguate_tactic ~disambiguate_command ~disambiguate_macro ?(do_heavy_checks=false) ?(clean_baseuri=true) status st 
702 ->
703   let opts = {
704     do_heavy_checks = do_heavy_checks ; 
705     clean_baseuri = clean_baseuri }
706   in
707   match st with
708   | GrafiteAst.Executable (_,ex) ->
709      eval_executable.ee_go ~disambiguate_tactic ~disambiguate_command
710       ~disambiguate_macro opts status ex
711   | GrafiteAst.Comment (_,c) -> eval_comment status c,[]
712 }
713
714 let eval_ast = eval_ast.ea_go