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