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