]> matita.cs.unibo.it Git - helm.git/blob - helm/matita/matitaScript.ml
fixed save/exit stuff
[helm.git] / helm / matita / matitaScript.ml
1 (* Copyright (C) 2004-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 open Printf
27 open MatitaTypes
28
29 let debug = true
30 let debug_print = if  debug then prerr_endline else ignore
31
32   (** raised when one of the script margins (top or bottom) is reached *)
33 exception Margin
34
35 let safe_substring s i j =
36   try String.sub s i j with Invalid_argument _ -> assert false
37
38 let heading_nl_RE = Pcre.regexp "^\\s*\n\\s*"
39 let only_dust_RE = Pcre.regexp "^(\\s|\n|%%[^\n]*\n)*$"
40 let multiline_RE = Pcre.regexp "^\n[^\n]+$"
41 let newline_RE = Pcre.regexp "\n"
42  
43 let comment str =
44   if Pcre.pmatch ~rex:multiline_RE str then
45     "\n(** " ^ (Pcre.replace ~rex:newline_RE str) ^ " **)"
46   else
47     "\n(**\n" ^ str ^ "\n**)"
48                      
49 let first_line s =
50   let s = Pcre.replace ~rex:heading_nl_RE s in
51   try
52     let nl_pos = String.index s '\n' in
53     String.sub s 0 nl_pos
54   with Not_found -> s
55
56 let prepend_text header base =
57   if Pcre.pmatch ~rex:heading_nl_RE base then
58     sprintf "\n%s%s" header base
59   else
60     sprintf "%s\n%s" header base
61
62   (** creates a statement AST for the Goal tactic, e.g. "goal 7" *)
63 let goal_ast n =
64   let module A = TacticAst in
65   let loc = CicAst.dummy_floc in
66   A.Executable (loc, A.Tactical (loc, A.Tactic (loc, A.Goal (loc, n))))
67
68 let eval_with_engine status user_goal parsed_text st =
69   let module TA = TacticAst in
70   let module TAPp = TacticAstPp in
71   let parsed_text_length = String.length parsed_text in
72   let loc, ex = 
73     match st with TA.Executable (loc,ex) -> loc, ex | _ -> assert false 
74   in
75   let goal_changed = ref false in
76   let status =
77     match status.proof_status with
78       | Incomplete_proof (_, goal) when goal <> user_goal ->
79           goal_changed := true;
80           MatitaEngine.eval_ast status (goal_ast user_goal)
81       | _ -> status
82   in
83   let new_status = MatitaEngine.eval_ast status st in
84   let new_aliases =
85     match ex with
86       | TA.Command (_, TA.Alias _) ->
87           DisambiguateTypes.Environment.empty
88       | _ -> MatitaSync.alias_diff ~from:status new_status
89   in
90   (* we remove the defined object since we consider them "automathic aliases" *)
91   let new_aliases = 
92     let module DTE = DisambiguateTypes.Environment in
93     let module UM = UriManager in
94     DTE.fold (
95       fun k ((v,_) as value) acc -> 
96         let b = 
97           try
98             let v = UM.strip_xpointer (UM.uri_of_string v) in
99             List.exists (fun (s,_) -> s = v) new_status.objects 
100           with UM.IllFormedUri _ -> false
101         in
102         if b then 
103           acc
104         else
105           DTE.add k value acc
106     ) new_aliases DTE.empty
107   in
108   let new_text =
109     if DisambiguateTypes.Environment.is_empty new_aliases then
110       parsed_text
111     else
112       prepend_text (CicTextualParser2.EnvironmentP3.to_string new_aliases)
113         parsed_text
114   in
115   let new_text =
116     if !goal_changed then
117       prepend_text
118         (TAPp.pp_tactic (TA.Goal (loc, user_goal))(* ^ "\n"*))
119         new_text
120     else
121       new_text
122   in
123     [ new_status, new_text ], parsed_text_length
124
125 let disambiguate term status =
126   let module MD = MatitaDisambiguator in
127   let dbd = MatitaDb.instance () in
128   let metasenv = MatitaMisc.get_proof_metasenv status in
129   let context = MatitaMisc.get_proof_context status in
130   let aliases = MatitaMisc.get_proof_aliases status in
131   let interps = MD.disambiguate_term dbd context metasenv aliases term in
132   match interps with 
133   | [_,_,x,_] -> x
134   | _ -> assert false
135  
136 let eval_macro status (mathviewer:MatitaTypes.mathViewer) urichooser parsed_text
137   script mac
138 =
139   let module TA = TacticAst in
140   let module TAPp = TacticAstPp in
141   let module MQ = MetadataQuery in
142   let module MDB = MatitaDb in
143   let module CTC = CicTypeChecker in
144   let module CU = CicUniv in
145   (* no idea why ocaml wants this *)
146   let advance ?statement () = script#advance ?statement () in
147   let parsed_text_length = String.length parsed_text in
148   let dbd = MatitaDb.instance () in
149   match mac with
150   (* WHELP's stuff *)
151   | TA.WMatch (loc, term) -> 
152       let term = disambiguate term status in
153       let l =  MQ.match_term ~dbd term in
154       let entry = `Whelp (TAPp.pp_macro_cic (TA.WMatch (loc, term)), l) in
155       mathviewer#show_uri_list ~reuse:true ~entry l;
156       [], parsed_text_length
157   | TA.WInstance (loc, term) ->
158       let term = disambiguate term status in
159       let l = MQ.instance ~dbd term in
160       let entry = `Whelp (TAPp.pp_macro_cic (TA.WInstance (loc, term)), l) in
161       mathviewer#show_uri_list ~reuse:true ~entry l;
162       [], parsed_text_length
163   | TA.WLocate (loc, s) -> 
164       let l = MQ.locate ~dbd s in
165       let entry = `Whelp (TAPp.pp_macro_cic (TA.WLocate (loc, s)), l) in
166       mathviewer#show_uri_list ~reuse:true ~entry l;
167       [], parsed_text_length
168   | TA.WElim (loc, term) ->
169       let term = disambiguate term status in
170       let uri =
171         match term with
172         | Cic.MutInd (uri,n,_) -> UriManager.uri_of_uriref uri n None 
173         | _ -> failwith "Not a MutInd"
174       in
175       let l = MQ.elim ~dbd uri in
176       let entry = `Whelp (TAPp.pp_macro_cic (TA.WElim (loc, term)), l) in
177       mathviewer#show_uri_list ~reuse:true ~entry l;
178       [], parsed_text_length
179   | TA.WHint (loc, term) ->
180       let term = disambiguate term status in
181       let s = ((None,[0,[],term], Cic.Meta (0,[]) ,term),0) in
182       let l = List.map fst (MQ.experimental_hint ~dbd s) in
183       let entry = `Whelp (TAPp.pp_macro_cic (TA.WHint (loc, term)), l) in
184       mathviewer#show_uri_list ~reuse:true ~entry l;
185       [], parsed_text_length
186   (* REAL macro *)
187   | TA.Hint loc -> 
188       let s = MatitaMisc.get_proof_status status in
189       let l = List.map fst (MQ.experimental_hint ~dbd s) in
190       let selected = urichooser l in
191       (match selected with
192       | [] -> [], parsed_text_length
193       | [uri] -> 
194         let ast = 
195           (TA.Executable (loc,
196             (TA.Tactical (loc, 
197                TA.Tactic (loc,
198                  TA.Apply (loc, CicAst.Uri (UriManager.string_of_uri uri,None))))))) 
199         in
200         let new_status = MatitaEngine.eval_ast status ast in
201         let extra_text = 
202           comment parsed_text ^ 
203           "\n" ^ TAPp.pp_statement ast
204         in
205         [ new_status , extra_text ], parsed_text_length
206       | _ -> 
207           MatitaLog.error 
208             "The result of the urichooser should be only 1 uri, not:\n";
209           List.iter (
210             fun u -> MatitaLog.error (UriManager.string_of_uri u ^ "\n")
211           ) selected;
212           assert false)
213   | TA.Check (_,term) ->
214       let metasenv = MatitaMisc.get_proof_metasenv status in
215       let context = MatitaMisc.get_proof_context status in
216       let aliases = MatitaMisc.get_proof_aliases status in
217       let interps = 
218         MatitaDisambiguator.disambiguate_term 
219           dbd context metasenv aliases term 
220       in
221       let _, metasenv , term, ugraph =
222         match interps with 
223         | [x] -> x
224         | _ -> assert false
225       in
226       let ty,_ = CTC.type_of_aux' metasenv context term ugraph in
227       let t_and_ty = Cic.Cast (term,ty) in
228       mathviewer#show_entry (`Cic (t_and_ty,metasenv));
229       [], parsed_text_length
230 (*   | TA.Abort _ -> 
231       let rec go_back () =
232         let status = script#status.proof_status in
233         match status with
234         | No_proof -> ()
235         | _ -> script#retract ();go_back()
236       in
237       [], parsed_text_length, Some go_back
238   | TA.Redo (_, Some i) ->  [], parsed_text_length, 
239       Some (fun () -> for j = 1 to i do advance () done)
240   | TA.Redo (_, None) ->   [], parsed_text_length, 
241       Some (fun () -> advance ())
242   | TA.Undo (_, Some i) ->  [], parsed_text_length, 
243       Some (fun () -> for j = 1 to i do script#retract () done)
244   | TA.Undo (_, None) -> [], parsed_text_length, 
245       Some (fun () -> script#retract ()) *)
246   (* TODO *)
247   | TA.Quit _ -> failwith "not implemented"
248   | TA.Print (_,kind) -> failwith "not implemented"
249   | TA.Search_pat (_, search_kind, str) -> failwith "not implemented"
250   | TA.Search_term (_, search_kind, term) -> failwith "not implemented"
251
252                                 
253 let eval_executable status (mathviewer:MatitaTypes.mathViewer) urichooser
254 user_goal parsed_text script ex =
255   let module TA = TacticAst in
256   let module TAPp = TacticAstPp in
257   let module MD = MatitaDisambiguator in
258   let parsed_text_length = String.length parsed_text in
259   match ex with
260   | TA.Command (loc, _) | TA.Tactical (loc, _) ->
261       eval_with_engine status user_goal parsed_text (TA.Executable (loc, ex))
262   | TA.Macro (_,mac) ->
263       eval_macro status mathviewer urichooser parsed_text script mac
264
265 let rec eval_statement status (mathviewer:MatitaTypes.mathViewer) urichooser
266 user_goal script s =
267   if Pcre.pmatch ~rex:only_dust_RE s then raise Margin;
268   let st = CicTextualParser2.parse_statement (Stream.of_string s) in
269   let text_of_loc loc =
270     let parsed_text_length = snd (CicAst.loc_of_floc loc) in
271     let parsed_text = safe_substring s 0 parsed_text_length in
272     parsed_text, parsed_text_length
273   in
274   match st with
275   | TacticAst.Comment (loc,_)-> 
276       let parsed_text, parsed_text_length = text_of_loc loc in
277       let remain_len = String.length s - parsed_text_length in
278       let s = String.sub s parsed_text_length remain_len in
279       let s,len = 
280         eval_statement status mathviewer urichooser user_goal script s 
281       in
282       (match s with
283       | (status, text) :: tl ->
284         ((status, parsed_text ^ text)::tl), (parsed_text_length + len)
285       | [] -> [], 0)
286   | TacticAst.Executable (loc, ex) ->
287       let parsed_text, parsed_text_length = text_of_loc loc in
288       eval_executable 
289         status mathviewer urichooser user_goal parsed_text script ex
290   
291
292 class script ~(buffer: GText.buffer) ~(init: MatitaTypes.status) 
293               ~(mathviewer: MatitaTypes.mathViewer) 
294               ~set_star
295               ~urichooser () =
296 let std_filename = "unNamed.ma" in
297 object (self)
298   val mutable filename = std_filename
299   
300   initializer 
301     ignore(GMain.Timeout.add ~ms:30000 
302        ~callback:(fun _ -> self#_saveToBackuptFile ();true));
303     ignore(buffer#connect#modified_changed 
304        (fun _ -> if buffer#modified then 
305           set_star filename true 
306         else 
307           set_star filename false));
308     self#reset ()
309
310   val mutable statements = [];    (** executed statements *)
311   val mutable history = [ init ];
312     (** list of states before having executed statements. Head element of this
313       * list is the current state, last element is the state at the beginning of
314       * the script.
315       * Invariant: this list length is 1 + length of statements *)
316
317   (** goal as seen by the user (i.e. metano corresponding to current tab) *)
318   val mutable userGoal = ~-1
319
320
321   (** text mark and tag representing locked part of a script *)
322   val locked_mark =
323     buffer#create_mark ~name:"locked" ~left_gravity:true buffer#start_iter
324   val locked_tag = buffer#create_tag [`BACKGROUND "lightblue"; `EDITABLE false]
325
326     (* history can't be empty, the invariant above grant that it contains at
327      * least the init status *)
328   method status = match history with hd :: _ -> hd | _ -> assert false
329
330   method private _advance ?statement () =
331     let s = match statement with Some s -> s | None -> self#getFuture in
332     MatitaLog.debug ("evaluating: " ^ first_line s ^ " ...");
333     let (entries, parsed_len) = 
334       eval_statement self#status mathviewer urichooser userGoal self s in
335     let (new_statuses, new_statements) = List.split entries in
336 (*
337 prerr_endline "evalStatement returned";
338 List.iter (fun s -> prerr_endline ("'" ^ s ^ "'")) new_statements;
339 *)
340     history <- List.rev new_statuses @ history;
341     statements <- List.rev new_statements @ statements;
342     let start = buffer#get_iter_at_mark (`MARK locked_mark) in
343     let new_text = String.concat "" new_statements in
344     if new_text <> String.sub s 0 parsed_len then
345       begin
346 (*       prerr_endline ("new:" ^ new_text); *)
347 (*       prerr_endline ("s:" ^ String.sub s 0 parsed_len); *)
348       let stop = start#copy#forward_chars parsed_len in
349       buffer#delete ~start ~stop;
350       buffer#insert ~iter:start new_text;
351 (*       prerr_endline "AUTOMATICALLY MODIFIED!!!!!" *)
352       end;
353     self#moveMark (String.length new_text)
354
355   method private _retract () =
356     match statements, history with
357     | last_statement :: _, cur_status :: prev_status :: _ ->
358         MatitaSync.time_travel ~present:cur_status ~past:prev_status;
359         statements <- List.tl statements;
360         history <- List.tl history;
361         self#moveMark (- (String.length last_statement));
362     | _ -> raise Margin
363
364   method advance ?statement () =
365     try
366       self#_advance ?statement ()
367     with Margin -> ()
368
369   method retract () = try self#_retract () with Margin -> ()
370
371   method private getFuture =
372     buffer#get_text ~start:(buffer#get_iter_at_mark (`MARK locked_mark))
373       ~stop:buffer#end_iter ()
374
375   (** @param rel_offset relative offset from current position of locked_mark *)
376   method private moveMark rel_offset =
377     let mark = `MARK locked_mark in
378     let old_insert = buffer#get_iter_at_mark `INSERT in
379     buffer#remove_tag locked_tag ~start:buffer#start_iter ~stop:buffer#end_iter;
380     let current_mark_pos = buffer#get_iter_at_mark mark in
381     let new_mark_pos =
382       match rel_offset with
383       | 0 -> current_mark_pos
384       | n when n > 0 -> current_mark_pos#forward_chars n
385       | n (* when n < 0 *) -> current_mark_pos#backward_chars (abs n)
386     in
387     buffer#move_mark mark ~where:new_mark_pos;
388     buffer#apply_tag locked_tag ~start:buffer#start_iter ~stop:new_mark_pos;
389     buffer#move_mark `INSERT old_insert;
390     self#notify
391
392   val mutable observers = []
393
394   method addObserver (o: MatitaTypes.status -> unit) =
395     observers <- o :: observers
396
397   method private notify =
398     let status = self#status in
399     List.iter (fun o -> o status) observers
400
401   method loadFromFile () =
402     buffer#set_text (MatitaMisc.input_file filename);
403     self#goto_top;
404     buffer#set_modified false
405     
406   method assignFileName file =
407     filename <- file;
408     
409   method saveToFile () =
410     let oc = open_out filename in
411     output_string oc (buffer#get_text ~start:buffer#start_iter
412                         ~stop:buffer#end_iter ());
413     close_out oc;
414     buffer#set_modified false
415   
416   method private _saveToBackuptFile () =
417     if buffer#modified then
418       begin
419         let f = filename ^ "~" in 
420         let oc = open_out f in
421         output_string oc (buffer#get_text ~start:buffer#start_iter
422                             ~stop:buffer#end_iter ());
423         close_out oc;
424         MatitaLog.debug ("backup " ^ f ^ " saved")                    
425       end
426   
427   method private goto_top =
428     MatitaSync.time_travel ~present:self#status ~past:init;
429     statements <- [];
430     history <- [ init ];
431     userGoal <- ~-1;
432     self#notify;
433     buffer#remove_tag locked_tag ~start:buffer#start_iter ~stop:buffer#end_iter;
434     buffer#move_mark (`MARK locked_mark) ~where:buffer#start_iter
435
436   method reset () =
437     self#goto_top;
438     buffer#delete ~start:buffer#start_iter ~stop:buffer#end_iter
439
440   method goto (pos: [`Top | `Bottom | `Cursor]) () =
441     match pos with
442     | `Top -> self#goto_top
443     | `Bottom ->
444         (try while true do self#_advance () done with Margin -> ())
445     | `Cursor ->
446         let locked_iter () = buffer#get_iter_at_mark (`NAME "locked") in
447         let cursor_iter () = buffer#get_iter_at_mark `INSERT in
448         let rec forward_until_cursor () = (* go forward until locked > cursor *)
449           self#_advance ();
450           if (locked_iter ())#compare (cursor_iter ()) < 0 then
451             forward_until_cursor ()
452         in
453         let rec back_until_cursor () = (* go backward until locked < cursor *)
454           self#_retract ();
455           if (locked_iter ())#compare (cursor_iter ()) > 0 then
456             back_until_cursor ()
457         in
458         let cmp = (locked_iter ())#compare (cursor_iter ()) in
459         (try
460           if cmp < 0 then       (* locked < cursor *)
461             forward_until_cursor ()
462           else if cmp > 0 then  (* locked > cursor *)
463             back_until_cursor ()
464           else                  (* cursor = locked *)
465               ()
466         with Margin -> ())
467
468   method onGoingProof () =
469     match self#status.proof_status with
470     | No_proof | Proof _ -> false
471     | Incomplete_proof _ -> true
472     | Intermediate _ -> assert false
473
474   method proofStatus = MatitaMisc.get_proof_status self#status
475   method proofMetasenv = MatitaMisc.get_proof_metasenv self#status
476   method proofContext = MatitaMisc.get_proof_context self#status
477   method setGoal n = userGoal <- n
478
479   (* debug *)
480   method dump () =
481     MatitaLog.debug "script status:";
482     MatitaLog.debug ("history size: " ^ string_of_int (List.length history));
483     MatitaLog.debug (sprintf "%d statements:" (List.length statements));
484     List.iter MatitaLog.debug statements;
485     MatitaLog.debug ("Current file name: " ^ filename);
486
487 end
488
489 let _script = ref None
490
491 let script ~buffer ~init ~mathviewer ~urichooser ~set_star () =
492   let s = new script ~buffer ~init ~mathviewer ~urichooser ~set_star () in
493   _script := Some s;
494   s
495
496 let instance () = match !_script with None -> assert false | Some s -> s
497
498