]> matita.cs.unibo.it Git - helm.git/blob - components/grafite_engine/grafiteEngine.ml
applyS now receives the same parameters that auto receives.
[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, params) ->
65      Tactics.applyS ~term ~params ~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.Destruct (_,term) -> Tactics.destruct 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.Intros (_, None, names) ->
126       PrimitiveTactics.intros_tac ~mk_fresh_name_callback:(namer_of names) ()
127   | GrafiteAst.Intros (_, Some num, names) ->
128       PrimitiveTactics.intros_tac ~howmany:num
129         ~mk_fresh_name_callback:(namer_of names) ()
130   | GrafiteAst.Inversion (_, term) ->
131       Tactics.inversion term
132   | GrafiteAst.LApply (_, linear, how_many, to_what, what, ident) ->
133       let names = match ident with None -> [] | Some id -> [id] in
134       Tactics.lapply ~mk_fresh_name_callback:(namer_of names) 
135         ~linear ?how_many ~to_what what
136   | GrafiteAst.Left _ -> Tactics.left
137   | GrafiteAst.LetIn (loc,term,name) ->
138       Tactics.letin term ~mk_fresh_name_callback:(namer_of [name])
139   | GrafiteAst.Reduce (_, reduction_kind, pattern) ->
140       (match reduction_kind with
141          | `Normalize -> Tactics.normalize ~pattern
142          | `Reduce -> Tactics.reduce ~pattern  
143          | `Simpl -> Tactics.simpl ~pattern 
144          | `Unfold what -> Tactics.unfold ~pattern what
145          | `Whd -> Tactics.whd ~pattern)
146   | GrafiteAst.Reflexivity _ -> Tactics.reflexivity
147   | GrafiteAst.Replace (_, pattern, with_what) ->
148      Tactics.replace ~pattern ~with_what
149   | GrafiteAst.Rewrite (_, direction, t, pattern) ->
150      EqualityTactics.rewrite_tac ~direction ~pattern t
151   | GrafiteAst.Right _ -> Tactics.right
152   | GrafiteAst.Ring _ -> Tactics.ring
153   | GrafiteAst.Split _ -> Tactics.split
154   | GrafiteAst.Subst _ -> Tactics.subst
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.IdTac _ 
184   | GrafiteAst.Generalize _ 
185   | GrafiteAst.Elim _ 
186   | GrafiteAst.Cut _
187   | GrafiteAst.Decompose _ -> true, true
188   (* tactics we don't want to reorder goals. I think only Goal needs this. *)
189   | GrafiteAst.Goal _ -> false, true
190   (* tactics like apply *)
191   | _ -> true, false
192   
193 let reorder_metasenv start refine tactic goals current_goal always_opens_a_goal=
194   let module PEH = ProofEngineHelpers in
195 (*   let print_m name metasenv =
196     prerr_endline (">>>>> " ^ name);
197     prerr_endline (CicMetaSubst.ppmetasenv [] metasenv)
198   in *)
199   (* phase one calculates:
200    *   new_goals_from_refine:  goals added by refine
201    *   head_goal:              the first goal opened by ythe tactic 
202    *   other_goals:            other goals opened by the tactic
203    *)
204   let new_goals_from_refine = PEH.compare_metasenvs start refine in
205   let new_goals_from_tactic = PEH.compare_metasenvs refine tactic in
206   let head_goal, other_goals, goals = 
207     match goals with
208     | [] -> None,[],goals
209     | hd::tl -> 
210         (* assert (List.mem hd new_goals_from_tactic);
211          * invalidato dalla goal_tac
212          * *)
213         Some hd, List.filter ((<>) hd) new_goals_from_tactic, List.filter ((<>)
214         hd) goals
215   in
216   let produced_goals = 
217     match head_goal with
218     | None -> new_goals_from_refine @ other_goals
219     | Some x -> x :: new_goals_from_refine @ other_goals
220   in
221   (* extract the metas generated by refine and tactic *)
222   let metas_for_tactic_head = 
223     match head_goal with
224     | None -> []
225     | Some head_goal -> List.filter (fun (n,_,_) -> n = head_goal) tactic in
226   let metas_for_tactic_goals = 
227     List.map 
228       (fun x -> List.find (fun (metano,_,_) -> metano = x) tactic)
229     goals 
230   in
231   let metas_for_refine_goals = 
232     List.filter (fun (n,_,_) -> List.mem n new_goals_from_refine) tactic in
233   let produced_metas, goals = 
234     let produced_metas =
235       if always_opens_a_goal then
236         metas_for_tactic_head @ metas_for_refine_goals @ 
237           metas_for_tactic_goals
238       else begin
239 (*         print_m "metas_for_refine_goals" metas_for_refine_goals;
240         print_m "metas_for_tactic_head" metas_for_tactic_head;
241         print_m "metas_for_tactic_goals" metas_for_tactic_goals; *)
242         metas_for_refine_goals @ metas_for_tactic_head @ 
243           metas_for_tactic_goals
244       end
245     in
246     let goals = List.map (fun (metano, _, _) -> metano)  produced_metas in
247     produced_metas, goals
248   in
249   (* residual metas, preserving the original order *)
250   let before, after = 
251     let rec split e =
252       function 
253       | [] -> [],[]
254       | (metano, _, _) :: tl when metano = e -> 
255           [], List.map (fun (x,_,_) -> x) tl
256       | (metano, _, _) :: tl -> let b, a = split e tl in metano :: b, a
257     in
258     let find n metasenv =
259       try
260         Some (List.find (fun (metano, _, _) -> metano = n) metasenv)
261       with Not_found -> None
262     in
263     let extract l =
264       List.fold_right 
265         (fun n acc -> 
266           match find n tactic with
267           | Some x -> x::acc
268           | None -> acc
269         ) l [] in
270     let before_l, after_l = split current_goal start in
271     let before_l = 
272       List.filter (fun x -> not (List.mem x produced_goals)) before_l in
273     let after_l = 
274       List.filter (fun x -> not (List.mem x produced_goals)) after_l in
275     let before = extract before_l in
276     let after = extract after_l in
277       before, after
278   in
279 (* |+   DEBUG CODE  +|
280   print_m "BEGIN" start;
281   prerr_endline ("goal was: " ^ string_of_int current_goal);
282   prerr_endline ("and metas from refine are:");
283   List.iter 
284     (fun t -> prerr_string (" " ^ string_of_int t)) 
285   new_goals_from_refine;
286   prerr_endline "";
287   print_m "before" before;
288   print_m "metas_for_tactic_head" metas_for_tactic_head;
289   print_m "metas_for_refine_goals" metas_for_refine_goals;
290   print_m "metas_for_tactic_goals" metas_for_tactic_goals;
291   print_m "produced_metas" produced_metas;
292   print_m "after" after; 
293 |+   FINE DEBUG CODE +| *)
294   before @ produced_metas @ after, goals 
295   
296 let apply_tactic ~disambiguate_tactic (text,prefix_len,tactic) (status, goal) =
297 (* prerr_endline "apply_tactic"; *)
298 (* prerr_endline (Continuationals.Stack.pp (GrafiteTypes.get_stack status)); *)
299  let starting_metasenv = GrafiteTypes.get_proof_metasenv status in
300  let before = List.map (fun g, _, _ -> g) starting_metasenv in
301 (* prerr_endline "disambiguate"; *)
302  let status, tactic = disambiguate_tactic status goal (text,prefix_len,tactic) in
303  let metasenv_after_refinement =  GrafiteTypes.get_proof_metasenv status in
304  let proof = GrafiteTypes.get_current_proof status in
305  let proof_status = proof, goal in
306  let needs_reordering, always_opens_a_goal = classify_tactic tactic in
307  let tactic = tactic_of_ast tactic in
308  (* apply tactic will change the lexicon_status ... *)
309 (* prerr_endline "apply_tactic bassa"; *)
310  let (proof, opened) = ProofEngineTypes.apply_tactic tactic proof_status in
311  let after = ProofEngineTypes.goals_of_proof proof in
312  let opened_goals, closed_goals = Tacticals.goals_diff ~before ~after ~opened in
313 (* prerr_endline("before: " ^ String.concat ", " (List.map string_of_int before));
314 prerr_endline("after: " ^ String.concat ", " (List.map string_of_int after));
315 prerr_endline("opened: " ^ String.concat ", " (List.map string_of_int opened)); *)
316 (* prerr_endline("opened_goals: " ^ String.concat ", " (List.map string_of_int opened_goals));
317 prerr_endline("closed_goals: " ^ String.concat ", " (List.map string_of_int closed_goals)); *)
318  let proof, opened_goals = 
319    if needs_reordering then begin
320      let uri, metasenv_after_tactic, t, ty = proof in
321 (* prerr_endline ("goal prima del riordino: " ^ String.concat " " (List.map string_of_int (ProofEngineTypes.goals_of_proof proof))); *)
322      let reordered_metasenv, opened_goals = 
323        reorder_metasenv
324         starting_metasenv
325         metasenv_after_refinement metasenv_after_tactic
326         opened goal always_opens_a_goal
327      in
328      let proof' = uri, reordered_metasenv, t, ty in
329 (* prerr_endline ("goal dopo il riordino: " ^ String.concat " " (List.map string_of_int (ProofEngineTypes.goals_of_proof proof'))); *)
330      proof', opened_goals
331    end
332       else
333         proof, opened_goals
334  in
335  let incomplete_proof =
336    match status.GrafiteTypes.proof_status with
337    | GrafiteTypes.Incomplete_proof p -> p
338    | _ -> assert false
339  in
340  { status with GrafiteTypes.proof_status =
341     GrafiteTypes.Incomplete_proof
342      { incomplete_proof with GrafiteTypes.proof = proof } },
343  opened_goals, closed_goals
344
345 type eval_ast =
346  {ea_go:
347   'term 'lazy_term 'reduction 'obj 'ident.
348   disambiguate_tactic:
349    (GrafiteTypes.status ->
350     ProofEngineTypes.goal ->
351     (('term, 'lazy_term, 'reduction, 'ident) GrafiteAst.tactic)
352     disambiguator_input ->
353     GrafiteTypes.status *
354    (Cic.term, Cic.lazy_term, Cic.lazy_term GrafiteAst.reduction, string) GrafiteAst.tactic) ->
355
356   disambiguate_command:
357    (GrafiteTypes.status ->
358     (('term,'obj) GrafiteAst.command) disambiguator_input ->
359     GrafiteTypes.status * (Cic.term,Cic.obj) GrafiteAst.command) ->
360
361   disambiguate_macro:
362    (GrafiteTypes.status ->
363     ('term GrafiteAst.macro) disambiguator_input ->
364     Cic.context -> GrafiteTypes.status * Cic.term GrafiteAst.macro) ->
365
366   ?do_heavy_checks:bool ->
367   ?clean_baseuri:bool ->
368   GrafiteTypes.status ->
369   (('term, 'lazy_term, 'reduction, 'obj, 'ident) GrafiteAst.statement)
370   disambiguator_input ->
371   GrafiteTypes.status * UriManager.uri list
372  }
373
374 type 'a eval_command =
375  {ec_go: 'term 'obj.
376   disambiguate_command:
377    (GrafiteTypes.status -> (('term,'obj) GrafiteAst.command) disambiguator_input ->
378     GrafiteTypes.status * (Cic.term,Cic.obj) GrafiteAst.command) -> 
379   options -> GrafiteTypes.status -> 
380     (('term,'obj) GrafiteAst.command) disambiguator_input ->
381    GrafiteTypes.status * UriManager.uri list
382  }
383
384 type 'a eval_executable =
385  {ee_go: 'term 'lazy_term 'reduction 'obj 'ident.
386   disambiguate_tactic:
387    (GrafiteTypes.status ->
388     ProofEngineTypes.goal ->
389     (('term, 'lazy_term, 'reduction, 'ident) GrafiteAst.tactic)
390     disambiguator_input ->
391     GrafiteTypes.status *
392    (Cic.term, Cic.lazy_term, Cic.lazy_term GrafiteAst.reduction, string) GrafiteAst.tactic) ->
393
394   disambiguate_command:
395    (GrafiteTypes.status ->
396     (('term,'obj) GrafiteAst.command) disambiguator_input ->
397     GrafiteTypes.status * (Cic.term,Cic.obj) GrafiteAst.command) ->
398
399   disambiguate_macro:
400    (GrafiteTypes.status ->
401     ('term GrafiteAst.macro) disambiguator_input ->
402     Cic.context -> GrafiteTypes.status * Cic.term GrafiteAst.macro) ->
403
404   options ->
405   GrafiteTypes.status ->
406   (('term, 'lazy_term, 'reduction, 'obj, 'ident) GrafiteAst.code) disambiguator_input ->
407   GrafiteTypes.status * UriManager.uri list
408  }
409
410 type 'a eval_from_moo =
411  { efm_go: GrafiteTypes.status -> string -> GrafiteTypes.status }
412       
413 let coercion_moo_statement_of arity uri =
414   GrafiteAst.Coercion (HExtlib.dummy_floc, uri, false, arity)
415
416 let refinement_toolkit = {
417   RefinementTool.type_of_aux' = 
418     (fun ?localization_tbl e c t u ->
419       let saved = !CicRefine.insert_coercions in 
420       CicRefine.insert_coercions:= false;
421       let rc = 
422         try 
423           let t, ty, metasenv, ugraph = 
424             CicRefine.type_of_aux' ?localization_tbl e c t u in
425           RefinementTool.Success (t, ty, metasenv, ugraph)
426         with
427         | CicRefine.RefineFailure s
428         | CicRefine.Uncertain s 
429         | CicRefine.AssertFailure s -> RefinementTool.Exception s
430       in
431       CicRefine.insert_coercions := saved;
432       rc);
433   RefinementTool.ppsubst = CicMetaSubst.ppsubst;
434   RefinementTool.apply_subst = CicMetaSubst.apply_subst; 
435   RefinementTool.ppmetasenv = CicMetaSubst.ppmetasenv; 
436   RefinementTool.pack_coercion_obj = CicRefine.pack_coercion_obj;
437  }
438   
439 let eval_coercion status ~add_composites uri arity =
440  let status,compounds =
441   GrafiteSync.add_coercion ~add_composites refinement_toolkit status uri arity 
442  in
443  let moo_content = 
444    List.map (coercion_moo_statement_of arity) (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 get_status (status, goal) =
469       match status.GrafiteTypes.proof_status with
470          | GrafiteTypes.Incomplete_proof incomplete -> incomplete.GrafiteTypes.proof, goal
471          | _                              -> assert false
472       
473    let get_proof (status, _, _) =
474       match status.GrafiteTypes.proof_status with
475          | GrafiteTypes.Incomplete_proof incomplete -> incomplete.GrafiteTypes.proof
476          | _                              -> assert false
477  
478    let set_stack stack (status, opened, closed) = 
479      GrafiteTypes.set_stack stack status, opened, closed
480  
481    let inject (status, _) = (status, [], [])
482    let focus goal (status, _, _) = (status, goal)
483   end
484  in
485  let module MatitaTacticals = Tacticals.Make (MatitaStatus) in
486   let rec tactical_of_ast l (text,prefix_len,tac) =
487     let apply_tactic t = apply_tactic (text, prefix_len, t) in
488     let tactical_of_ast l t = tactical_of_ast l (text,prefix_len,t) in
489     match tac with
490     | GrafiteAst.Tactic (loc, tactic) ->
491         MatitaTacticals.tactic (MatitaStatus.mk_tactic (apply_tactic tactic))
492     | GrafiteAst.Seq (loc, tacticals) ->  (* tac1; tac2; ... *)
493        assert (l > 0);
494        MatitaTacticals.seq ~tactics:(List.map (tactical_of_ast (l+1)) tacticals)
495     | GrafiteAst.Do (loc, n, tactical) ->
496         MatitaTacticals.do_tactic ~n ~tactic:(tactical_of_ast (l+1) tactical)
497     | GrafiteAst.Repeat (loc, tactical) ->
498         MatitaTacticals.repeat_tactic ~tactic:(tactical_of_ast (l+1) tactical)
499     | GrafiteAst.Then (loc, tactical, tacticals) ->  (* tac; [ tac1 | ... ] *)
500         assert (l > 0);
501         MatitaTacticals.thens ~start:(tactical_of_ast (l+1) tactical)
502           ~continuations:(List.map (tactical_of_ast (l+1)) tacticals)
503     | GrafiteAst.First (loc, tacticals) ->
504         MatitaTacticals.first
505           ~tactics:(List.map (fun t -> "", tactical_of_ast (l+1) t) tacticals)
506     | GrafiteAst.Try (loc, tactical) ->
507         MatitaTacticals.try_tactic ~tactic:(tactical_of_ast (l+1) tactical)
508     | GrafiteAst.Solve (loc, tacticals) ->
509         MatitaTacticals.solve_tactics
510          ~tactics:(List.map (fun t -> "", tactical_of_ast (l+1) t) tacticals)
511     | GrafiteAst.Progress (loc, tactical) ->
512         MatitaTacticals.progress_tactic ~tactic:(tactical_of_ast (l+1) tactical)
513
514     | GrafiteAst.Skip _loc -> MatitaTacticals.skip
515     | GrafiteAst.Dot _loc -> MatitaTacticals.dot
516     | GrafiteAst.Semicolon _loc -> MatitaTacticals.semicolon
517     | GrafiteAst.Branch _loc -> MatitaTacticals.branch
518     | GrafiteAst.Shift _loc -> MatitaTacticals.shift
519     | GrafiteAst.Pos (_loc, i) -> MatitaTacticals.pos i
520     | GrafiteAst.Merge _loc -> MatitaTacticals.merge
521     | GrafiteAst.Focus (_loc, goals) -> MatitaTacticals.focus goals
522     | GrafiteAst.Unfocus _loc -> MatitaTacticals.unfocus
523     | GrafiteAst.Wildcard _loc -> MatitaTacticals.wildcard
524   in
525   let status, _, _ = tactical_of_ast 0 tac (status, ~-1) in
526   let status =  (* is proof completed? *)
527     match status.GrafiteTypes.proof_status with
528     | GrafiteTypes.Incomplete_proof
529        { GrafiteTypes.stack = stack; proof = proof }
530       when Continuationals.Stack.is_empty stack ->
531         { status with GrafiteTypes.proof_status = GrafiteTypes.Proof proof }
532     | _ -> status
533   in
534   status
535
536 let eval_comment status c = status
537
538 (* since the record syntax allows to declare coercions, we have to put this
539  * information inside the moo *)
540 let add_coercions_of_record_to_moo obj lemmas status =
541   let attributes = CicUtil.attributes_of_obj obj in
542   let is_record = function `Class (`Record att) -> Some att | _-> None in
543   match HExtlib.list_findopt is_record attributes with
544   | None -> status,[]
545   | Some fields -> 
546       let is_a_coercion uri =
547         try
548           let obj,_ = 
549             CicEnvironment.get_cooked_obj  CicUniv.empty_ugraph uri in
550           let attrs = CicUtil.attributes_of_obj obj in
551           try 
552             match List.find 
553              (function `Class (`Coercion _) -> true | _-> false) attrs
554             with `Class (`Coercion n) -> true,n | _ -> assert false
555           with Not_found -> false,0            
556         with Not_found -> assert false
557       in
558       (* looking at the fields we can know the 'wanted' coercions, but not the 
559        * actually generated ones. So, only the intersection between the wanted
560        * and the actual should be in the moo as coercion, while everithing in
561        * lemmas should go as aliases *)
562       let wanted_coercions = 
563         HExtlib.filter_map 
564           (function 
565             | (name,true,arity) -> 
566                Some 
567                  (arity, UriManager.uri_of_string 
568                    (GrafiteTypes.qualify status name ^ ".con"))
569             | _ -> None) 
570           fields
571       in
572       (*prerr_endline "wanted coercions:";
573       List.iter 
574         (fun u -> prerr_endline (UriManager.string_of_uri u)) 
575         wanted_coercions; *)
576       let coercions, moo_content = 
577         List.split
578           (HExtlib.filter_map 
579             (fun uri ->
580               let is_a_wanted_coercion,arity_wanted = 
581                 try
582                   let arity,_ = 
583                     List.find (fun (n,u) -> UriManager.eq u uri) 
584                       wanted_coercions
585                   in
586                   true, arity
587                 with Not_found -> false, 0
588               in
589               let is_a_coercion, arity_coercion = is_a_coercion uri in
590               if is_a_coercion then
591                 Some (uri, coercion_moo_statement_of arity_coercion uri)
592               else if is_a_wanted_coercion then
593                 Some (uri, coercion_moo_statement_of arity_wanted uri)
594               else
595                 None)
596             lemmas)
597       in
598       (*prerr_endline "actual coercions:";
599       List.iter 
600         (fun u -> prerr_endline (UriManager.string_of_uri u)) 
601         coercions; 
602       prerr_endline "lemmas was:";
603       List.iter 
604         (fun u -> prerr_endline (UriManager.string_of_uri u)) 
605         lemmas; *)
606       let status = GrafiteTypes.add_moo_content moo_content status in 
607       {status with 
608         GrafiteTypes.coercions = coercions @ status.GrafiteTypes.coercions}, 
609       lemmas
610
611 let add_obj uri obj status =
612  let status,lemmas = GrafiteSync.add_obj refinement_toolkit uri obj status in
613  status, lemmas 
614       
615 let rec eval_command = {ec_go = fun ~disambiguate_command opts status
616 (text,prefix_len,cmd) ->
617  let status,cmd = disambiguate_command status (text,prefix_len,cmd) in
618  let status,uris =
619   match cmd with
620   | GrafiteAst.Coercion (loc, uri, add_composites, arity) ->
621      eval_coercion status ~add_composites uri arity
622   | GrafiteAst.Default (loc, what, uris) as cmd ->
623      LibraryObjects.set_default what uris;
624      GrafiteTypes.add_moo_content [cmd] status,[]
625   | GrafiteAst.Drop loc -> raise Drop
626   | GrafiteAst.Include (loc, baseuri) ->
627      let moopath_rw, moopath_r = 
628        LibraryMisc.obj_file_of_baseuri 
629          ~must_exist:false ~baseuri ~writable:true,
630        LibraryMisc.obj_file_of_baseuri 
631          ~must_exist:false ~baseuri ~writable:false
632      in
633      let moopath = 
634        if Sys.file_exists moopath_r then moopath_r else
635          if Sys.file_exists moopath_rw then moopath_rw else
636            raise (IncludedFileNotCompiled (moopath_rw,baseuri))
637      in
638      let status = eval_from_moo.efm_go status moopath in
639      status,[]
640   | GrafiteAst.Print (_,"proofterm") ->
641       let _,_,p,_ = GrafiteTypes.get_current_proof status in
642       print_endline (AutoTactic.pp_proofterm p);
643       status,[]
644   | GrafiteAst.Print (_,_) -> status,[]
645   | GrafiteAst.Qed loc ->
646       let uri, metasenv, bo, ty =
647         match status.GrafiteTypes.proof_status with
648         | GrafiteTypes.Proof (Some uri, metasenv, body, ty) ->
649             uri, metasenv, body, ty
650         | GrafiteTypes.Proof (None, metasenv, body, ty) -> 
651             raise (GrafiteTypes.Command_error 
652               ("Someone allows to start a theorem without giving the "^
653                "name/uri. This should be fixed!"))
654         | _->
655           raise
656            (GrafiteTypes.Command_error "You can't Qed an incomplete theorem")
657       in
658       if metasenv <> [] then 
659         raise
660          (GrafiteTypes.Command_error
661            "Proof not completed! metasenv is not empty!");
662       let name = UriManager.name_of_uri uri in
663       let obj = Cic.Constant (name,Some bo,ty,[],[]) in
664       let status, lemmas = add_obj uri obj status in
665        {status with GrafiteTypes.proof_status = GrafiteTypes.No_proof},
666         uri::lemmas
667   | GrafiteAst.Relation (loc, id, a, aeq, refl, sym, trans) -> 
668      Setoids.add_relation id a aeq refl sym trans;
669      status, [] (*CSC: TO BE FIXED *)
670   | GrafiteAst.Set (loc, name, value) -> 
671       if name = "baseuri" then begin
672         let value = 
673           let v = Http_getter_misc.strip_trailing_slash value in
674           try
675             ignore (String.index v ' ');
676             GrafiteTypes.command_error "baseuri can't contain spaces"
677           with Not_found -> v
678         in
679         if Http_getter_storage.is_read_only value then begin
680           HLog.error (sprintf "uri %s belongs to a read-only repository" value);
681           raise (ReadOnlyUri value)
682         end;
683         if not (Http_getter_storage.is_empty value) && 
684            opts.clean_baseuri 
685           then begin
686           HLog.message ("baseuri " ^ value ^ " is not empty");
687           HLog.message ("cleaning baseuri " ^ value);
688           LibraryClean.clean_baseuris [value];
689           assert (Http_getter_storage.is_empty value);
690         end;
691         if not (Helm_registry.get_opt_default Helm_registry.bool "matita.nodisk"
692                   ~default:false) 
693         then
694           HExtlib.mkdir 
695             (Filename.dirname (Http_getter.filename ~writable:true (value ^
696               "/foo.con")));
697       end;
698       GrafiteTypes.set_option status name value,[]
699   | GrafiteAst.Obj (loc,obj) ->
700      let ext,name =
701       match obj with
702          Cic.Constant (name,_,_,_,_)
703        | Cic.CurrentProof (name,_,_,_,_,_) -> ".con",name
704        | Cic.InductiveDefinition (types,_,_,_) ->
705           ".ind",
706           (match types with (name,_,_,_)::_ -> name | _ -> assert false)
707        | _ -> assert false in
708      let uri = 
709        UriManager.uri_of_string (GrafiteTypes.qualify status name ^ ext) in
710      let obj = CicRefine.pack_coercion_obj obj in
711      let metasenv = GrafiteTypes.get_proof_metasenv status in
712      match obj with
713      | Cic.CurrentProof (_,metasenv',bo,ty,_,_) ->
714          let name = UriManager.name_of_uri uri in
715          if not(CicPp.check name ty) then
716            HLog.error ("Bad name: " ^ name);
717          if opts.do_heavy_checks then
718            begin
719              let dbd = LibraryDb.instance () in
720              let similar = Whelp.match_term ~dbd ty in
721              let similar_len = List.length similar in
722              if similar_len> 30 then
723                (HLog.message
724                  ("Duplicate check will compare your theorem with " ^ 
725                    string_of_int similar_len ^ 
726                    " theorems, this may take a while."));
727              let convertible =
728                List.filter (
729                  fun u ->
730                    let t = CicUtil.term_of_uri u in
731                    let ty',g = 
732                      CicTypeChecker.type_of_aux' 
733                        metasenv' [] t CicUniv.empty_ugraph
734                    in
735                    fst(CicReduction.are_convertible [] ty' ty g)) 
736                similar 
737              in
738              (match convertible with
739              | [] -> ()
740              | x::_ -> 
741                  HLog.warn  
742                  ("Theorem already proved: " ^ UriManager.string_of_uri x ^ 
743                   "\nPlease use a variant."));
744            end;
745          let initial_proof = (Some uri, metasenv', bo, ty) in
746          let initial_stack = Continuationals.Stack.of_metasenv metasenv' in
747          { status with GrafiteTypes.proof_status =
748             GrafiteTypes.Incomplete_proof
749              { GrafiteTypes.proof = initial_proof; stack = initial_stack } },
750           []
751      | _ ->
752          if metasenv <> [] then
753           raise (GrafiteTypes.Command_error (
754             "metasenv not empty while giving a definition with body: " ^
755             CicMetaSubst.ppmetasenv [] metasenv));
756          let status, lemmas = add_obj uri obj status in 
757          let status,new_lemmas =
758           add_coercions_of_record_to_moo obj lemmas status
759          in
760           {status with GrafiteTypes.proof_status = GrafiteTypes.No_proof},
761            uri::new_lemmas@lemmas
762  in
763   match status.GrafiteTypes.proof_status with
764      GrafiteTypes.Intermediate _ ->
765       {status with GrafiteTypes.proof_status = GrafiteTypes.No_proof},uris
766    | _ -> status,uris
767
768 } and eval_executable = {ee_go = fun ~disambiguate_tactic ~disambiguate_command
769 ~disambiguate_macro opts status (text,prefix_len,ex) ->
770   match ex with
771   | GrafiteAst.Tactical (_, tac, None) ->
772      eval_tactical ~disambiguate_tactic status (text,prefix_len,tac),[]
773   | GrafiteAst.Tactical (_, tac, Some punct) ->
774      let status = 
775        eval_tactical ~disambiguate_tactic status (text,prefix_len,tac) in
776       eval_tactical ~disambiguate_tactic status (text,prefix_len,punct),[]
777   | GrafiteAst.Command (_, cmd) ->
778       eval_command.ec_go ~disambiguate_command opts status (text,prefix_len,cmd)
779   | GrafiteAst.Macro (loc, macro) ->
780      raise (Macro (loc,disambiguate_macro status (text,prefix_len,macro)))
781
782 } and eval_from_moo = {efm_go = fun status fname ->
783   let ast_of_cmd cmd =
784     ("",0,GrafiteAst.Executable (HExtlib.dummy_floc,
785       GrafiteAst.Command (HExtlib.dummy_floc,
786         cmd)))
787   in
788   let moo = GrafiteMarshal.load_moo fname in
789   List.fold_left 
790     (fun status ast -> 
791       let ast = ast_of_cmd ast in
792       let status,lemmas =
793        eval_ast.ea_go
794          ~disambiguate_tactic:(fun status _ (_,_,tactic) -> status,tactic)
795          ~disambiguate_command:(fun status (_,_,cmd) -> status,cmd)
796          ~disambiguate_macro:(fun _ _ -> assert false)
797          status ast
798       in
799        assert (lemmas=[]);
800        status)
801     status moo
802 } and eval_ast = {ea_go = fun ~disambiguate_tactic ~disambiguate_command
803 ~disambiguate_macro ?(do_heavy_checks=false) ?(clean_baseuri=true) status
804 (text,prefix_len,st)
805 ->
806   let opts = {
807     do_heavy_checks = do_heavy_checks ; 
808     clean_baseuri = clean_baseuri }
809   in
810   match st with
811   | GrafiteAst.Executable (_,ex) ->
812      eval_executable.ee_go ~disambiguate_tactic ~disambiguate_command
813       ~disambiguate_macro opts status (text,prefix_len,ex)
814   | GrafiteAst.Comment (_,c) -> eval_comment status (text,prefix_len,c),[]
815 }
816
817 let eval_ast = eval_ast.ea_go