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