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