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