1 (* Copyright (C) 2004-2005, HELM Team.
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.
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.
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.
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,
22 * For details, see the HELM World-Wide-Web page,
23 * http://helm.cs.unibo.it/
30 (** raised when one of the script margins (top or bottom) is reached *)
33 let safe_substring s i j =
34 try String.sub s i j with Invalid_argument _ -> assert false
36 let heading_nl_RE = Pcre.regexp "^\\s*\n\\s*"
37 let only_dust_RE = Pcre.regexp "^(\\s|\n|%%[^\n]*\n)*$"
38 let multiline_RE = Pcre.regexp "^\n[^\n]+$"
39 let newline_RE = Pcre.regexp "\n"
42 if Pcre.pmatch ~rex:multiline_RE str then
43 "\n(** " ^ (Pcre.replace ~rex:newline_RE str) ^ " **)"
45 "\n(**\n" ^ str ^ "\n**)"
48 let s = Pcre.replace ~rex:heading_nl_RE s in
50 let nl_pos = String.index s '\n' in
54 let prepend_text header base =
55 if Pcre.pmatch ~rex:heading_nl_RE base then
56 sprintf "\n%s%s" header base
58 sprintf "%s\n%s" header base
60 (** creates a statement AST for the Goal tactic, e.g. "goal 7" *)
62 let module A = TacticAst in
63 let loc = CicAst.dummy_floc in
64 A.Executable (loc, A.Tactical (loc, A.Tactic (loc, A.Goal (loc, n))))
66 let eval_with_engine status user_goal parsed_text st =
67 let module TA = TacticAst in
68 let module TAPp = TacticAstPp in
69 let parsed_text_length = String.length parsed_text in
71 match st with TA.Executable (loc,ex) -> loc, ex | _ -> assert false
73 let goal_changed = ref false in
75 match status.proof_status with
76 | Incomplete_proof (_, goal) when goal <> user_goal ->
78 MatitaEngine.eval_ast status (goal_ast user_goal)
81 let new_status = MatitaEngine.eval_ast status st in
84 | TA.Command (_, TA.Alias _) ->
85 DisambiguateTypes.Environment.empty
86 | _ -> MatitaSync.alias_diff ~from:status new_status
89 if DisambiguateTypes.Environment.is_empty new_aliases then
92 prepend_text (CicTextualParser2.EnvironmentP3.to_string new_aliases)
98 (TAPp.pp_tactic (TA.Goal (loc, user_goal))(* ^ "\n"*))
103 [ new_status, new_text ], parsed_text_length, None
105 let disambiguate term status =
106 let module MD = MatitaDisambiguator in
107 let dbd = MatitaDb.instance () in
108 let metasenv = MatitaMisc.get_proof_metasenv status in
109 let context = MatitaMisc.get_proof_context status in
110 let aliases = MatitaMisc.get_proof_aliases status in
111 let interps = MD.disambiguate_term dbd context metasenv aliases term in
116 let eval_macro status (mathviewer:MatitaTypes.mathViewer) urichooser parsed_text
118 let module TA = TacticAst in
119 let module TAPp = TacticAstPp in
120 let module MQ = MetadataQuery in
121 let module MDB = MatitaDb in
122 let module CTC = CicTypeChecker in
123 let module CU = CicUniv in
124 (* no idea why ocaml wants this *)
125 let advance ?statement () = script#advance ?statement () in
126 let parsed_text_length = String.length parsed_text in
127 let dbd = MatitaDb.instance () in
130 | TA.WMatch (loc, term) ->
131 let term = disambiguate term status in
132 let l = MQ.match_term ~dbd term in
133 let entry = `Whelp (TAPp.pp_macro_cic (TA.WMatch (loc, term)), l) in
134 mathviewer#show_uri_list ~reuse:true ~entry l;
135 [], parsed_text_length, None
136 | TA.WInstance (loc, term) ->
137 let term = disambiguate term status in
138 let l = MQ.instance ~dbd term in
139 let entry = `Whelp (TAPp.pp_macro_cic (TA.WInstance (loc, term)), l) in
140 mathviewer#show_uri_list ~reuse:true ~entry l;
141 [], parsed_text_length, None
142 | TA.WLocate (loc, s) ->
143 let l = MQ.locate ~dbd s in
144 let entry = `Whelp (TAPp.pp_macro_cic (TA.WLocate (loc, s)), l) in
145 mathviewer#show_uri_list ~reuse:true ~entry l;
146 [], parsed_text_length, None
147 | TA.WElim (loc, term) ->
148 let term = disambiguate term status in
151 | Cic.MutInd (uri,n,_) -> UriManager.string_of_uriref (uri,[n])
152 | _ -> failwith "Not a MutInd"
154 let l = MQ.elim ~dbd uri in
155 let entry = `Whelp (TAPp.pp_macro_cic (TA.WElim (loc, term)), l) in
156 mathviewer#show_uri_list ~reuse:true ~entry l;
157 [], parsed_text_length, None
158 | TA.WHint (loc, term) ->
159 let term = disambiguate term status in
160 let s = ((None,[0,[],term], Cic.Meta (0,[]) ,term),0) in
161 let l = List.map fst (MQ.experimental_hint ~dbd s) in
162 let entry = `Whelp (TAPp.pp_macro_cic (TA.WHint (loc, term)), l) in
163 mathviewer#show_uri_list ~reuse:true ~entry l;
164 [], parsed_text_length, None
167 let s = MatitaMisc.get_proof_status status in
168 let l = List.map fst (MQ.experimental_hint ~dbd s) in
169 let selected = urichooser l in
171 | [] -> [], parsed_text_length, None
177 TA.Apply (loc, CicAst.Uri (uri,None)))))))
179 let new_status = MatitaEngine.eval_ast status ast in
181 comment parsed_text ^
182 "\n" ^ TAPp.pp_statement ast
184 [ new_status , extra_text ], parsed_text_length, None
186 | TA.Check (_,term) ->
187 let metasenv = MatitaMisc.get_proof_metasenv status in
188 let context = MatitaMisc.get_proof_context status in
189 let aliases = MatitaMisc.get_proof_aliases status in
191 MatitaDisambiguator.disambiguate_term
192 dbd context metasenv aliases term
194 let _, metasenv , term, ugraph =
199 let ty,_ = CTC.type_of_aux' metasenv context term ugraph in
200 let t_and_ty = Cic.Cast (term,ty) in
201 mathviewer#show_entry (`Cic (t_and_ty,metasenv));
202 [], parsed_text_length, None
205 let status = script#status.proof_status in
208 | _ -> script#retract ();go_back()
210 [], parsed_text_length, Some go_back
211 | TA.Redo (_, Some i) -> [], parsed_text_length,
212 Some (fun () -> for j = 1 to i do advance () done)
213 | TA.Redo (_, None) -> [], parsed_text_length,
214 Some (fun () -> advance ())
215 | TA.Undo (_, Some i) -> [], parsed_text_length,
216 Some (fun () -> for j = 1 to i do script#retract () done)
217 | TA.Undo (_, None) -> [], parsed_text_length,
218 Some (fun () -> script#retract ())
220 | TA.Quit _ -> failwith "not implemented"
221 | TA.Print (_,kind) -> failwith "not implemented"
222 | TA.Search_pat (_, search_kind, str) -> failwith "not implemented"
223 | TA.Search_term (_, search_kind, term) -> failwith "not implemented"
226 let eval_executable status (mathviewer:MatitaTypes.mathViewer) urichooser
227 user_goal parsed_text script ex =
228 let module TA = TacticAst in
229 let module TAPp = TacticAstPp in
230 let module MD = MatitaDisambiguator in
231 let parsed_text_length = String.length parsed_text in
233 | TA.Command (loc, _) | TA.Tactical (loc, _) ->
234 eval_with_engine status user_goal parsed_text (TA.Executable (loc, ex))
235 | TA.Macro (_,mac) ->
236 eval_macro status mathviewer urichooser parsed_text script mac
238 let rec eval_statement status (mathviewer:MatitaTypes.mathViewer) urichooser
240 if Pcre.pmatch ~rex:only_dust_RE s then raise Margin;
241 let st = CicTextualParser2.parse_statement (Stream.of_string s) in
242 let text_of_loc loc =
243 let parsed_text_length = snd (CicAst.loc_of_floc loc) in
244 let parsed_text = safe_substring s 0 parsed_text_length in
245 parsed_text, parsed_text_length
248 | TacticAst.Comment (loc,_)->
249 let parsed_text, parsed_text_length = text_of_loc loc in
250 let remain_len = String.length s - parsed_text_length in
251 let s = String.sub s parsed_text_length remain_len in
253 eval_statement status mathviewer urichooser user_goal script s
256 | (status, text) :: tl ->
257 ((status, parsed_text ^ text)::tl), (parsed_text_length + len), act
259 | TacticAst.Executable (loc, ex) ->
260 let parsed_text, parsed_text_length = text_of_loc loc in
262 status mathviewer urichooser user_goal parsed_text script ex
265 class script ~(buffer: GText.buffer) ~(init: MatitaTypes.status)
266 ~(mathviewer: MatitaTypes.mathViewer)
269 initializer self#reset ()
271 val mutable statements = []; (** executed statements *)
272 val mutable history = [ init ];
273 (** list of states before having executed statements. Head element of this
274 * list is the current state, last element is the state at the beginning of
276 * Invariant: this list length is 1 + length of statements *)
278 (** goal as seen by the user (i.e. metano corresponding to current tab) *)
279 val mutable userGoal = ~-1
281 (** text mark and tag representing locked part of a script *)
283 buffer#create_mark ~name:"locked" ~left_gravity:true buffer#start_iter
284 val locked_tag = buffer#create_tag [`BACKGROUND "lightblue"; `EDITABLE false]
286 (* history can't be empty, the invariant above grant that it contains at
287 * least the init status *)
288 method status = match history with hd :: _ -> hd | _ -> assert false
290 method private _advance ?statement () =
291 let s = match statement with Some s -> s | None -> self#getFuture in
292 MatitaLog.debug ("evaluating: " ^ first_line s ^ " ...");
293 let (entries, parsed_len, post_advance_action) =
294 eval_statement self#status mathviewer urichooser userGoal self s in
295 let (new_statuses, new_statements) = List.split entries in
297 prerr_endline "evalStatement returned";
298 List.iter (fun s -> prerr_endline ("'" ^ s ^ "'")) new_statements;
300 history <- List.rev new_statuses @ history;
301 statements <- List.rev new_statements @ statements;
302 let start = buffer#get_iter_at_mark (`MARK locked_mark) in
303 if statement = None then begin
304 let stop = start#copy#forward_chars parsed_len in
305 buffer#delete ~start ~stop
307 let new_text = String.concat "" new_statements in
308 buffer#insert ~iter:start new_text;
309 self#moveMark (String.length new_text);
310 match post_advance_action with
314 method private _retract () =
315 match statements, history with
316 | last_statement :: _, cur_status :: prev_status :: _ ->
317 MatitaSync.time_travel ~present:cur_status ~past:prev_status;
318 statements <- List.tl statements;
319 history <- List.tl history;
320 self#moveMark (- (String.length last_statement));
323 method advance ?statement () =
325 self#_advance ?statement ()
328 method retract () = try self#_retract () with Margin -> ()
330 method private getFuture =
331 buffer#get_text ~start:(buffer#get_iter_at_mark (`MARK locked_mark))
332 ~stop:buffer#end_iter ()
334 (** @param rel_offset relative offset from current position of locked_mark *)
335 method private moveMark rel_offset =
336 let mark = `MARK locked_mark in
337 let old_insert = buffer#get_iter_at_mark `INSERT in
338 buffer#remove_tag locked_tag ~start:buffer#start_iter ~stop:buffer#end_iter;
339 let current_mark_pos = buffer#get_iter_at_mark mark in
341 match rel_offset with
342 | 0 -> current_mark_pos
343 | n when n > 0 -> current_mark_pos#forward_chars n
344 | n (* when n < 0 *) -> current_mark_pos#backward_chars (abs n)
346 buffer#move_mark mark ~where:new_mark_pos;
347 buffer#apply_tag locked_tag ~start:buffer#start_iter ~stop:new_mark_pos;
348 buffer#move_mark `INSERT old_insert;
351 val mutable observers = []
353 method addObserver (o: MatitaTypes.status -> unit) =
354 observers <- o :: observers
356 method private notify =
357 let status = self#status in
358 List.iter (fun o -> o status) observers
360 method loadFrom fname =
361 buffer#set_text (MatitaMisc.input_file fname);
364 method saveTo fname =
365 let oc = open_out fname in
366 output_string oc (buffer#get_text ~start:buffer#start_iter
367 ~stop:buffer#end_iter ());
370 method private goto_top =
371 MatitaSync.time_travel ~present:self#status ~past:init;
376 buffer#remove_tag locked_tag ~start:buffer#start_iter ~stop:buffer#end_iter;
377 buffer#move_mark (`MARK locked_mark) ~where:buffer#start_iter
381 buffer#delete ~start:buffer#start_iter ~stop:buffer#end_iter
383 method goto (pos: [`Top | `Bottom | `Cursor]) () =
385 | `Top -> self#goto_top
387 (try while true do self#_advance () done with Margin -> ())
389 let locked_iter () = buffer#get_iter_at_mark (`NAME "locked") in
390 let cursor_iter () = buffer#get_iter_at_mark `INSERT in
391 let rec forward_until_cursor () = (* go forward until locked > cursor *)
393 if (locked_iter ())#compare (cursor_iter ()) < 0 then
394 forward_until_cursor ()
396 let rec back_until_cursor () = (* go backward until locked < cursor *)
398 if (locked_iter ())#compare (cursor_iter ()) > 0 then
401 let cmp = (locked_iter ())#compare (cursor_iter ()) in
403 if cmp < 0 then (* locked < cursor *)
404 forward_until_cursor ()
405 else if cmp > 0 then (* locked > cursor *)
407 else (* cursor = locked *)
411 method onGoingProof () =
412 match self#status.proof_status with
413 | No_proof | Proof _ -> false
414 | Incomplete_proof _ -> true
415 | Intermediate _ -> assert false
417 method proofStatus = MatitaMisc.get_proof_status self#status
418 method proofMetasenv = MatitaMisc.get_proof_metasenv self#status
419 method proofContext = MatitaMisc.get_proof_context self#status
420 method setGoal n = userGoal <- n
424 MatitaLog.debug "script status:";
425 MatitaLog.debug ("history size: " ^ string_of_int (List.length history));
426 MatitaLog.debug (sprintf "%d statements:" (List.length statements));
427 List.iter MatitaLog.debug statements;
431 let _script = ref None
433 let script ~buffer ~init ~mathviewer ~urichooser () =
434 let s = new script ~buffer ~init ~mathviewer ~urichooser () in
438 let instance () = match !_script with None -> assert false | Some s -> s