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/
31 module TA = GrafiteAst
34 let debug_print = if debug then prerr_endline else ignore
36 (** raised when one of the script margins (top or bottom) is reached *)
38 exception NoUnfinishedProof
39 exception ActionCancelled of string
41 let safe_substring s i j =
42 try String.sub s i j with Invalid_argument _ -> assert false
44 let heading_nl_RE = Pcre.regexp "^\\s*\n\\s*"
45 let heading_nl_RE' = Pcre.regexp "^(\\s*\n\\s*)"
46 let only_dust_RE = Pcre.regexp "^(\\s|\n|%%[^\n]*\n)*$"
47 let multiline_RE = Pcre.regexp "^\n[^\n]+$"
48 let newline_RE = Pcre.regexp "\n"
49 let comment_RE = Pcre.regexp "\\(\\*(.|\n)*\\*\\)\n?" ~flags:[`UNGREEDY]
52 if Pcre.pmatch ~rex:multiline_RE str then
53 "\n(** " ^ (Pcre.replace ~rex:newline_RE str) ^ " *)"
55 "\n(**\n" ^ str ^ "\n*)"
57 let strip_comments str =
58 Pcre.qreplace ~templ:"\n" ~pat:"\n\n" (Pcre.qreplace ~rex:comment_RE str)
62 let s = Pcre.replace ~rex:heading_nl_RE s in
64 let nl_pos = String.index s '\n' in
69 mathviewer:MatitaTypes.mathViewer;
70 urichooser: UriManager.uri list -> UriManager.uri list;
71 ask_confirmation: title:string -> message:string -> [`YES | `NO | `CANCEL];
74 let eval_with_engine include_paths guistuff grafite_status user_goal
75 skipped_txt nonskipped_txt st
77 let parsed_text_length =
78 String.length skipped_txt + String.length nonskipped_txt
80 let text = skipped_txt ^ nonskipped_txt in
81 let prefix_len = MatitaGtkMisc.utf8_string_length skipped_txt in
82 let enriched_history_fragment =
83 MatitaEngine.eval_ast ~do_heavy_checks:(Helm_registry.get_bool
84 "matita.do_heavy_checks")
85 grafite_status (text,prefix_len,st)
87 let enriched_history_fragment = List.rev enriched_history_fragment in
91 (fun (acc, to_prepend) (status,alias) ->
93 | None -> (status,to_prepend ^ nonskipped_txt)::acc,""
95 let newtxt = LexiconAstPp.pp_alias value in
96 (status,to_prepend ^ newtxt ^ "\n")::acc, "")
97 ([],skipped_txt) enriched_history_fragment
99 res,"",parsed_text_length
102 (* this function calls the parser in a way that it does not perform inclusions,
103 * so that we can ensure the inclusion is performed after the included file
104 * is compiled (if needed). matitac does not need that, since it compiles files
105 * in the good order, here files may be compiled on demand. *)
106 let wrap_with_make include_paths (f : #LexiconEngine.status GrafiteParser.statement) x =
108 f ~never_include:true ~include_paths x
110 | GrafiteParser.NoInclusionPerformed mafilename ->
111 let root, buri, _, tgt =
112 try Librarian.baseuri_of_script ~include_paths mafilename
113 with Librarian.NoRootFor _ ->
114 HLog.error ("The included file '"^mafilename^"' has no root file,");
115 HLog.error "please create it.";
116 raise (Failure ("No root file for "^mafilename))
118 let b = MatitacLib.Make.make root [tgt] in
120 try f ~include_paths x with LexiconEngine.IncludedFileNotCompiled _ ->
122 (Failure ("Including: "^tgt^
123 "\nNothing to do... did you run matitadep?"))
124 else raise (Failure ("Compiling: " ^ tgt))
127 let pp_eager_statement_ast =
128 GrafiteAstPp.pp_statement ~term_pp:CicNotationPp.pp_term
129 ~lazy_term_pp:(fun _ -> assert false) ~obj_pp:(fun _ -> assert false)
131 (* naive implementation of procedural proof script generation,
132 * starting from an applicatiove *auto generated) proof.
133 * this is out of place, but I like it :-P *)
134 let cic2grafite context menv t =
135 (* indents a proof script in a stupid way, better than nothing *)
136 let stupid_indenter s =
138 let idx_square_o = try String.index s '[' with Not_found -> -1 in
139 let idx_square_c = try String.index s ']' with Not_found -> -1 in
140 let idx_pipe = try String.index s '|' with Not_found -> -1 in
142 List.sort (fun (i,_) (j,_) -> compare i j)
143 [idx_square_o,'[';idx_square_c,']';idx_pipe,'|']
145 let tok = List.filter (fun (i,_) -> i <> -1) tok in
147 | (i,c)::_ -> Some (i,c)
150 let break_apply n s =
151 let tab = String.make (n+1) ' ' in
152 Pcre.replace ~templ:(".\n" ^ tab ^ "apply") ~pat:"\\.apply" s
158 | Some (position, char) ->
161 String.sub s 0 position,
162 String.sub s (position+1) (String.length s - (position+1))
165 | '[' -> break_apply n s1 ^ "\n" ^ String.make (n+2) ' ' ^
167 | '|' -> break_apply n s1 ^ "\n" ^ String.make n ' ' ^
169 | ']' -> break_apply n s1 ^ "\n" ^ String.make n ' ' ^
173 Invalid_argument err ->
179 let module PT = CicNotationPt in
180 let module GA = GrafiteAst in
183 List.map (function Some (n,_) -> Some n | None -> None) context
187 let sort_of context t =
190 CicTypeChecker.type_of_aux' menv context t
191 CicUniv.oblivion_ugraph
193 let sort,_ = CicTypeChecker.type_of_aux' menv context ty
194 CicUniv.oblivion_ugraph
197 | Cic.Sort Cic.Prop -> true
200 CicTypeChecker.TypeCheckerFailure _ ->
201 HLog.error "auto proof to sript transformation error"; false
203 let floc = HExtlib.dummy_floc in
204 (* minimalisti cic.term -> pt.term *)
206 let rec aux c = function
210 | Cic.Const _ as t ->
211 PT.Ident (pp_t c t, None)
212 | Cic.Appl l -> PT.Appl (List.map (aux c) l)
213 | Cic.Implicit _ -> PT.Implicit `JustOne
214 | Cic.Lambda (Cic.Name n, s, t) ->
215 PT.Binder (`Lambda, (PT.Ident (n,None), Some (aux c s)),
216 aux (Some (Cic.Name n, Cic.Decl s)::c) t)
217 | Cic.Prod (Cic.Name n, s, t) ->
218 PT.Binder (`Forall, (PT.Ident (n,None), Some (aux c s)),
219 aux (Some (Cic.Name n, Cic.Decl s)::c) t)
220 | Cic.LetIn (Cic.Name n, s, ty, t) ->
221 PT.Binder (`Lambda, (PT.Ident (n,None), Some (aux c s)),
222 aux (Some (Cic.Name n, Cic.Def (s,ty))::c) t)
223 | Cic.Meta _ -> PT.Implicit `JustOne
224 | Cic.Sort (Cic.Type u) -> PT.Sort (`Type u)
225 | Cic.Sort Cic.Set -> PT.Sort `Set
226 | Cic.Sort (Cic.CProp u) -> PT.Sort (`CProp u)
227 | Cic.Sort Cic.Prop -> PT.Sort `Prop
228 | _ as t -> PT.Ident ("ERROR: "^CicPp.ppterm t, None)
232 (* prints an applicative proof, that is an auto proof.
233 * don't use in the general case! *)
234 let rec print_proof context = function
236 | Cic.Const _ as t ->
237 [GA.Executable (floc,
239 Some (GA.Apply (floc, print_term context t)), GA.Dot floc))]
240 | Cic.Appl (he::tl) ->
241 let tl = List.map (fun t -> t, sort_of context t) tl in
243 HExtlib.filter_map (function (t,true) -> Some t | _ -> None) tl
246 List.map (function | (t,true) -> Cic.Implicit None | (t,_) -> t) tl
248 if List.length subgoals > 1 then
250 [GA.Executable (floc,
252 Some (GA.Apply (floc, print_term context (Cic.Appl (he::args)))),
253 GA.Semicolon floc))] @
254 [GA.Executable (floc, GA.Tactic (floc, None, GA.Branch floc))] @
256 ~sep:[GA.Executable (floc, GA.Tactic (floc, None,GA.Shift floc))]
257 (List.map (print_proof context) subgoals)) @
258 [GA.Executable (floc, GA.Tactic (floc, None,GA.Merge floc))]
261 [GA.Executable (floc,
264 (floc, print_term context (Cic.Appl (he::args)) )), GA.Dot floc))]
268 | [x] -> print_proof context x
270 | Cic.Lambda (Cic.Name n, ty, bo) ->
271 [GA.Executable (floc,
273 Some (GA.Cut (floc, Some n, (print_term context ty))),
275 (print_proof (Some (Cic.Name n, Cic.Decl ty)::context) bo) @
276 [GA.Executable (floc, GA.Tactic (floc, None,GA.Shift floc))] @
277 [GA.Executable (floc, GA.Tactic (floc,
278 Some (GA.Assumption floc),GA.Merge floc))]
281 debug_print (lazy (CicPp.ppterm t));
285 (* performs a lambda closure of the proof term abstracting metas.
286 * this is really an approximation of a closure, local subst of metas
287 * is not kept into account *)
288 let close_pt menv context t =
289 let metas = CicUtil.metas_of_term t in
291 HExtlib.list_uniq ~eq:(fun (i,_) (j,_) -> i = j)
292 (List.sort (fun (i,_) (j,_) -> compare i j) metas)
294 let mk_rels_and_collapse_metas metas =
295 let rec aux i map acc acc1 = function
296 | [] -> acc, acc1, map
298 let _,_,ty = CicUtil.lookup_meta j menv in
300 let n = List.assoc ty map in
301 aux i map (Cic.Rel n :: acc) (m::acc1) tl
303 let map = (ty, i)::map in
304 aux (i+1) map (Cic.Rel i :: acc) (m::acc1) tl
308 let rels, metas, map = mk_rels_and_collapse_metas metas in
309 let n_lambdas = List.length map in
315 ProofEngineReduction.replace_lifting
316 ~what:(List.map (fun (x,_) -> Cic.Meta (x,[])) metas)
319 ~equality:(fun _ x y ->
321 | Cic.Meta(i,_), Cic.Meta(j,_) when i=j -> true
323 ~where:(CicSubstitution.lift n_lambdas t)
325 let rec mk_lam = function
328 let name = "fresh_"^ string_of_int n in
329 Cic.Lambda (Cic.Name name, ty, mk_lam tl)
333 (fun (l,liftno) (ty,_) ->
334 (l @ [CicSubstitution.lift liftno ty,liftno] , liftno+1))
339 let ast = print_proof context (close_pt menv context t) in
341 (* ZACK: setting width to 80 will trigger a bug of BoxPp.render_to_string
342 * which will show up using the following command line:
343 * ./tptp2grafite -tptppath ~tassi/TPTP-v3.1.1 GRP170-1 *)
344 let width = max_int in
345 let term_pp content_term =
346 let pres_term = TermContentPres.pp_ast content_term in
347 let lookup_uri = fun _ -> None in
348 let markup = CicNotationPres.render ~lookup_uri pres_term in
349 let s = "(" ^ BoxPp.render_to_string
350 ~map_unicode_to_tex:(Helm_registry.get_bool
351 "matita.paste_unicode_as_tex")
352 List.hd width markup ^ ")" in
354 ~pat:"\\\\forall [Ha-z][a-z0-9_]*" ~subst:(fun x -> "\n" ^ x) s
356 CicNotationPp.set_pp_term term_pp;
357 let lazy_term_pp = fun x -> assert false in
358 let obj_pp = CicNotationPp.pp_obj CicNotationPp.pp_term in
359 GrafiteAstPp.pp_statement
360 ~map_unicode_to_tex:(Helm_registry.get_bool
361 "matita.paste_unicode_as_tex")
362 ~term_pp ~lazy_term_pp ~obj_pp t
364 let script = String.concat "" (List.map pp ast) in
365 prerr_endline script;
366 stupid_indenter script
368 let eval_nmacro include_paths (buffer : GText.buffer) guistuff grafite_status user_goal unparsed_text parsed_text script mac =
369 let parsed_text_length = String.length parsed_text in
371 | TA.Screenshot (_,name) ->
372 let status = script#grafite_status in
373 let _,_,menv,subst,_ = status#obj in
374 let name = Filename.dirname (script#filename) ^ "/" ^ name in
376 let selected = Continuationals.Stack.head_goals status#stack in
377 List.filter (fun x,_ -> List.mem x selected) menv
379 guistuff.mathviewer#screenshot status sequents menv subst name;
380 [status, parsed_text], "", parsed_text_length
382 let status = script#grafite_status in
383 let _,_,menv,subst,_ = status#obj in
385 try let _,(_,ctx,_) = List.hd menv in ctx
386 with Failure "hd" -> []
388 let m, s, status, t =
389 GrafiteDisambiguate.disambiguate_nterm
390 None status ctx menv subst (parsed_text,parsed_text_length,
391 CicNotationPt.Cast (t,CicNotationPt.Implicit `JustOne))
392 (* XXX use the metasenv, if possible *)
394 guistuff.mathviewer#show_entry (`NCic (t,ctx,m,s));
395 [status, parsed_text], "", parsed_text_length
397 let rec eval_macro include_paths (buffer : GText.buffer) guistuff grafite_status user_goal unparsed_text parsed_text script mac =
398 let module MQ = MetadataQuery in
399 let module CTC = CicTypeChecker in
400 (* no idea why ocaml wants this *)
401 let parsed_text_length = String.length parsed_text in
402 let dbd = LibraryDb.instance () in
403 let pp_macro = ApplyTransformation.txt_of_macro ~map_unicode_to_tex:true in
406 | TA.WMatch (loc, term) ->
407 let l = Whelp.match_term ~dbd term in
408 let entry = `Whelp (pp_macro [] [] mac, l) in
409 guistuff.mathviewer#show_uri_list ~reuse:true ~entry l;
410 [], "", parsed_text_length
411 | TA.WInstance (loc, term) ->
412 let l = Whelp.instance ~dbd term in
413 let entry = `Whelp (pp_macro [] [] mac, l) in
414 guistuff.mathviewer#show_uri_list ~reuse:true ~entry l;
415 [], "", parsed_text_length
416 | TA.WLocate (loc, s) ->
417 let l = Whelp.locate ~dbd s in
418 let entry = `Whelp (pp_macro [] [] mac, l) in
419 guistuff.mathviewer#show_uri_list ~reuse:true ~entry l;
420 [], "", parsed_text_length
421 | TA.WElim (loc, term) ->
424 | Cic.MutInd (uri,n,_) -> UriManager.uri_of_uriref uri n None
425 | _ -> failwith "Not a MutInd"
427 let l = Whelp.elim ~dbd uri in
428 let entry = `Whelp (pp_macro [] [] mac, l) in
429 guistuff.mathviewer#show_uri_list ~reuse:true ~entry l;
430 [], "", parsed_text_length
431 | TA.WHint (loc, term) ->
433 let s = ((None,[0,[],term], _subst, lazy (Cic.Meta (0,[])) ,term, []),0) in
434 let l = List.map fst (MQ.experimental_hint ~dbd s) in
435 let entry = `Whelp (pp_macro [] [] mac, l) in
436 guistuff.mathviewer#show_uri_list ~reuse:true ~entry l;
437 [], "", parsed_text_length
439 | TA.Hint (loc, rewrite) ->
443 | None -> raise NoUnfinishedProof
445 let proof = GrafiteTypes.get_current_proof grafite_status in
446 let proof_status = proof,user_goal' in
448 let l = MQ.equations_for_goal ~dbd proof_status in
449 let l = List.filter (fun u -> not (LibraryObjects.in_eq_URIs u)) l in
451 `Whelp (pp_macro [] [] (TA.WHint(loc, Cic.Implicit None)), l) in
452 guistuff.mathviewer#show_uri_list ~reuse:true ~entry l;
453 [], "", parsed_text_length
455 let l = List.map fst (MQ.experimental_hint ~dbd proof_status) in
456 let selected = guistuff.urichooser l in
458 | [] -> [], "", parsed_text_length
460 let suri = UriManager.string_of_uri uri in
462 TA.Executable (loc, (TA.Tactic (loc,
463 Some (TA.Apply (loc, CicNotationPt.Uri (suri, None))),
466 comment parsed_text ^ "\n" ^
467 pp_eager_statement_ast (ast HExtlib.dummy_floc)
468 ~map_unicode_to_tex:(Helm_registry.get_bool
469 "matita.paste_unicode_as_tex")
471 let text_len = MatitaGtkMisc.utf8_string_length text in
472 let loc = HExtlib.floc_of_loc (0,text_len) in
473 let statement = `Ast (GrafiteParser.LSome (ast loc),text) in
474 let res,_,_parsed_text_len =
475 eval_statement include_paths buffer guistuff
476 grafite_status user_goal script statement
478 (* we need to replace all the parsed_text *)
479 res,"",String.length parsed_text
482 "The result of the urichooser should be only 1 uri, not:\n";
484 fun u -> HLog.error (UriManager.string_of_uri u ^ "\n")
487 | TA.Eval (_, kind, term) ->
488 let metasenv = GrafiteTypes.get_proof_metasenv grafite_status in
492 | Some n -> GrafiteTypes.get_proof_context grafite_status n in
493 let ty,_ = CTC.type_of_aux' metasenv context term CicUniv.empty_ugraph in
497 CicReduction.normalize ~delta:true ~subst:[] context term
499 ProofEngineReduction.simpl context term
501 ProofEngineReduction.unfold ?what:None context term
502 | `Unfold (Some lazy_term) ->
504 lazy_term context metasenv CicUniv.empty_ugraph in
505 ProofEngineReduction.unfold ~what context term
507 CicReduction.whd ~delta:true ~subst:[] context term
509 let t_and_ty = Cic.Cast (term,ty) in
510 guistuff.mathviewer#show_entry (`Cic (t_and_ty,metasenv));
511 [(grafite_status#set_proof_status No_proof), parsed_text ],"",
513 | TA.Check (_,term) ->
514 let metasenv = GrafiteTypes.get_proof_metasenv grafite_status in
518 | Some n -> GrafiteTypes.get_proof_context grafite_status n in
519 let ty,_ = CTC.type_of_aux' metasenv context term CicUniv.empty_ugraph in
520 let t_and_ty = Cic.Cast (term,ty) in
521 guistuff.mathviewer#show_entry (`Cic (t_and_ty,metasenv));
522 [], "", parsed_text_length
523 | TA.AutoInteractive (_, params) ->
527 | None -> raise NoUnfinishedProof
529 let proof = GrafiteTypes.get_current_proof grafite_status in
530 let proof_status = proof,user_goal' in
532 let _,menv,_,_,_,_ = proof in
533 let i,cc,ty = CicUtil.lookup_meta user_goal' menv in
534 let timestamp = Unix.gettimeofday () in
535 let (_,menv,subst,_,_,_), _ =
536 ProofEngineTypes.apply_tactic
537 (Auto.auto_tac ~dbd ~params
538 ~automation_cache:grafite_status#automation_cache)
543 CicMkImplicit.identity_relocation_list_for_metavariable cc
545 CicMetaSubst.apply_subst subst (Cic.Meta (i,irl))
547 let time = Unix.gettimeofday () -. timestamp in
548 let size, depth = Auto.size_and_depth cc menv proof_term in
551 "\n(* end auto(%s) proof: TIME=%4.2f SIZE=%d DEPTH=%d *)"
552 Auto.revision time size depth
555 if List.exists (fun (s,_) -> s = "paramodulation") (snd params) then
556 let proof_term, how_many_lambdas =
557 Auto.lambda_close ~prefix_name:"orrible_hack_"
561 CicTypeChecker.type_of_aux'
562 menv [] proof_term CicUniv.empty_ugraph
564 prerr_endline (CicPp.ppterm proof_term);
565 (* use declarative output *)
567 (* il proof_term vive in cc, devo metterci i lambda no? *)
568 (Cic.CurrentProof ("xxx",menv,proof_term,ty,[],[]))
570 ApplyTransformation.txt_of_cic_object
571 ~map_unicode_to_tex:(Helm_registry.get_bool
572 "matita.paste_unicode_as_tex")
573 ~skip_thm_and_qed:true
574 ~skip_initial_lambdas:how_many_lambdas
578 (* use cic2grafite *)
579 cic2grafite cc menv proof_term
581 (* alternative using FG stuff *)
582 let map_unicode_to_tex =
583 Helm_registry.get_bool "matita.paste_unicode_as_tex"
585 ApplyTransformation.procedural_txt_of_cic_term
586 ~map_unicode_to_tex 78 [] cc proof_term
588 let text = comment parsed_text ^ "\n" ^ proof_script ^ trailer in
589 [],text,parsed_text_length
591 ProofEngineTypes.Fail _ as exn ->
593 (* [], comment parsed_text ^ "\nfail.\n", parsed_text_length *))
594 | TA.Inline (_, suri, params) ->
596 ApplyTransformation.txt_of_inline_macro
597 ~map_unicode_to_tex:(Helm_registry.get_bool
598 "matita.paste_unicode_as_tex")
601 [], str, String.length parsed_text
603 and eval_executable include_paths (buffer : GText.buffer) guistuff
604 grafite_status user_goal unparsed_text skipped_txt nonskipped_txt
608 ignore (buffer#move_mark (`NAME "beginning_of_statement")
609 ~where:((buffer#get_iter_at_mark (`NAME "locked"))#forward_chars
610 (Glib.Utf8.length skipped_txt))) ;
611 eval_with_engine include_paths
612 guistuff grafite_status user_goal skipped_txt nonskipped_txt
613 (TA.Executable (loc, ex))
615 MatitaTypes.Cancel -> [], "", 0
616 | GrafiteEngine.Macro (_loc,lazy_macro) ->
620 | Some n -> GrafiteTypes.get_proof_context grafite_status n in
621 let grafite_status,macro = lazy_macro context in
622 eval_macro include_paths buffer guistuff grafite_status
623 user_goal unparsed_text (skipped_txt ^ nonskipped_txt) script macro
624 | GrafiteEngine.NMacro (_loc,macro) ->
625 eval_nmacro include_paths buffer guistuff grafite_status
626 user_goal unparsed_text (skipped_txt ^ nonskipped_txt) script macro
629 and eval_statement include_paths (buffer : GText.buffer) guistuff
630 grafite_status user_goal script statement
632 let (grafite_status,st), unparsed_text =
635 if Pcre.pmatch ~rex:only_dust_RE text then raise Margin;
637 wrap_with_make include_paths
638 (GrafiteParser.parse_statement (Ulexing.from_utf8_string text))
642 | `Ast (st, text) -> (grafite_status, st), text
644 let text_of_loc floc =
645 let nonskipped_txt,_ = MatitaGtkMisc.utf8_parsed_text unparsed_text floc in
646 let start, stop = HExtlib.loc_of_floc floc in
647 let floc = HExtlib.floc_of_loc (0, start) in
648 let skipped_txt,_ = MatitaGtkMisc.utf8_parsed_text unparsed_text floc in
649 let floc = HExtlib.floc_of_loc (0, stop) in
650 let txt,len = MatitaGtkMisc.utf8_parsed_text unparsed_text floc in
651 txt,nonskipped_txt,skipped_txt,len
654 | GrafiteParser.LNone loc ->
655 let parsed_text, _, _, parsed_text_length = text_of_loc loc in
656 [grafite_status,parsed_text],"",
658 | GrafiteParser.LSome (GrafiteAst.Executable (loc, ex)) ->
659 let _, nonskipped, skipped, parsed_text_length = text_of_loc loc in
660 eval_executable include_paths buffer guistuff
661 grafite_status user_goal unparsed_text skipped nonskipped script ex loc
662 | GrafiteParser.LSome (GrafiteAst.Comment (loc, GrafiteAst.Code (_, ex)))
663 when Helm_registry.get_bool "matita.execcomments" ->
664 let _, nonskipped, skipped, parsed_text_length = text_of_loc loc in
665 eval_executable include_paths buffer guistuff
666 grafite_status user_goal unparsed_text skipped nonskipped script ex loc
667 | GrafiteParser.LSome (GrafiteAst.Comment (loc, _)) ->
668 let parsed_text, _, _, parsed_text_length = text_of_loc loc in
669 let remain_len = String.length unparsed_text - parsed_text_length in
670 let s = String.sub unparsed_text parsed_text_length remain_len in
673 eval_statement include_paths buffer guistuff
674 grafite_status user_goal script (`Raw s)
676 HExtlib.Localized (floc, exn) ->
677 HExtlib.raise_localized_exception
678 ~offset:(MatitaGtkMisc.utf8_string_length parsed_text) floc exn
679 | MultiPassDisambiguator.DisambiguationError (offset,errorll) ->
681 (MultiPassDisambiguator.DisambiguationError
682 (offset+parsed_text_length, errorll))
684 assert (text=""); (* no macros inside comments, please! *)
686 | (statuses,text)::tl ->
687 (statuses,parsed_text ^ text)::tl,"",parsed_text_length + len
690 let fresh_script_id =
694 class script ~(source_view: GSourceView.source_view)
695 ~(mathviewer: MatitaTypes.mathViewer)
700 let buffer = source_view#buffer in
701 let source_buffer = source_view#source_buffer in
702 let initial_statuses baseuri =
704 CicNotation2.load_notation ~include_paths:[] (new LexiconEngine.status)
705 BuildTimeConf.core_notation_script
707 let grafite_status = GrafiteSync.init lexicon_status baseuri in
710 let read_include_paths file =
712 let root, _buri, _fname, _tgt =
713 Librarian.baseuri_of_script ~include_paths:[] file
716 Str.split (Str.regexp " ")
717 (List.assoc "include_paths" (Librarian.load_root_file (root^"/root")))
719 List.iter (HLog.debug) rc; rc
720 with Librarian.NoRootFor _ | Not_found -> []
722 let default_buri = "cic:/matita/tests" in
723 let default_fname = ".unnamed.ma" in
725 val mutable include_paths_ = []
727 val scriptId = fresh_script_id ()
730 mathviewer = mathviewer;
731 urichooser = urichooser;
732 ask_confirmation = ask_confirmation;
735 val mutable filename_ = (None : string option)
737 method has_name = filename_ <> None
739 method include_paths =
741 Helm_registry.get_list Helm_registry.string "matita.includes"
743 method private curdir =
745 let root, _buri, _fname, _tgt =
746 Librarian.baseuri_of_script ~include_paths:self#include_paths
750 with Librarian.NoRootFor _ -> Sys.getcwd ()
752 method buri_of_current_file =
754 | None -> default_buri
757 let _root, buri, _fname, _tgt =
758 Librarian.baseuri_of_script ~include_paths:self#include_paths f
761 with Librarian.NoRootFor _ -> default_buri
763 method filename = match filename_ with None -> default_fname | Some f -> f
766 ignore (GMain.Timeout.add ~ms:300000
767 ~callback:(fun _ -> self#_saveToBackupFile ();true));
768 ignore (buffer#connect#modified_changed
769 (fun _ -> set_star buffer#modified))
771 val mutable statements = [] (** executed statements *)
773 val mutable history = [ initial_statuses default_buri ]
774 (** list of states before having executed statements. Head element of this
775 * list is the current state, last element is the state at the beginning of
777 * Invariant: this list length is 1 + length of statements *)
779 (** goal as seen by the user (i.e. metano corresponding to current tab) *)
780 val mutable userGoal = None
782 (** text mark and tag representing locked part of a script *)
784 buffer#create_mark ~name:"locked" ~left_gravity:true buffer#start_iter
785 val beginning_of_statement_mark =
786 buffer#create_mark ~name:"beginning_of_statement"
787 ~left_gravity:true buffer#start_iter
788 val locked_tag = buffer#create_tag [`BACKGROUND "lightblue"; `EDITABLE false]
789 val error_tag = buffer#create_tag [`UNDERLINE `SINGLE; `FOREGROUND "red"]
791 method locked_mark = locked_mark
792 method locked_tag = locked_tag
793 method error_tag = error_tag
795 (* history can't be empty, the invariant above grant that it contains at
796 * least the init grafite_status *)
797 method grafite_status = match history with s::_ -> s | _ -> assert false
799 method private _advance ?statement () =
800 let s = match statement with Some s -> s | None -> self#getFuture in
801 if self#bos then LibraryClean.clean_baseuris [self#buri_of_current_file];
802 HLog.debug ("evaluating: " ^ first_line s ^ " ...");
803 let time1 = Unix.gettimeofday () in
804 let entries, newtext, parsed_len =
806 eval_statement self#include_paths buffer guistuff
807 self#grafite_status userGoal self (`Raw s)
808 with End_of_file -> raise Margin
810 let time2 = Unix.gettimeofday () in
811 HLog.debug ("... done in " ^ string_of_float (time2 -. time1) ^ "s");
812 let new_statuses, new_statements =
813 let statuses, texts = List.split entries in
816 history <- new_statuses @ history;
817 statements <- new_statements @ statements;
818 let start = buffer#get_iter_at_mark (`MARK locked_mark) in
819 let new_text = String.concat "" (List.rev new_statements) in
820 if statement <> None then
821 buffer#insert ~iter:start new_text
823 let parsed_text = String.sub s 0 parsed_len in
824 if new_text <> parsed_text then begin
825 let stop = start#copy#forward_chars (Glib.Utf8.length parsed_text) in
826 buffer#delete ~start ~stop;
827 buffer#insert ~iter:start new_text;
830 self#moveMark (Glib.Utf8.length new_text);
831 buffer#insert ~iter:(buffer#get_iter_at_mark (`MARK locked_mark)) newtext;
832 (* here we need to set the Goal in case we are going to cursor (or to
833 bottom) and we will face a macro *)
834 match self#grafite_status#proof_status with
835 Incomplete_proof p ->
837 (try Some (Continuationals.Stack.find_goal p.stack)
838 with Failure _ -> None)
839 | _ -> userGoal <- None
841 method private _retract offset grafite_status new_statements
844 let cur_grafite_status =
845 match history with s::_ -> s | [] -> assert false
847 LexiconSync.time_travel ~present:cur_grafite_status ~past:grafite_status;
848 GrafiteSync.time_travel ~present:cur_grafite_status ~past:grafite_status;
849 statements <- new_statements;
850 history <- new_history;
851 self#moveMark (- offset)
853 method advance ?statement () =
855 self#_advance ?statement ();
858 | Margin -> self#notify
859 | Not_found -> assert false
860 | Invalid_argument "Array.make" -> HLog.error "The script is too big!\n"
861 | exc -> self#notify; raise exc
865 let cmp,new_statements,new_history,grafite_status =
866 match statements,history with
867 stat::statements, _::(status::_ as history) ->
868 assert (Glib.Utf8.validate stat);
869 Glib.Utf8.length stat, statements, history, status
870 | [],[_] -> raise Margin
871 | _,_ -> assert false
873 self#_retract cmp grafite_status new_statements
877 | Margin -> self#notify
878 | Invalid_argument "Array.make" -> HLog.error "The script is too big!\n"
879 | exc -> self#notify; raise exc
881 method private getFuture =
882 let lock = buffer#get_iter_at_mark (`MARK locked_mark) in
883 let text = buffer#get_text ~start:lock ~stop:buffer#end_iter () in
886 method expandAllVirtuals =
887 let lock = buffer#get_iter_at_mark (`MARK locked_mark) in
888 let text = buffer#get_text ~start:lock ~stop:buffer#end_iter () in
889 buffer#delete ~start:lock ~stop:buffer#end_iter;
890 let text = Pcre.replace ~pat:":=" ~templ:"\\def" text in
891 let text = Pcre.replace ~pat:"->" ~templ:"\\to" text in
892 let text = Pcre.replace ~pat:"=>" ~templ:"\\Rightarrow" text in
894 Pcre.substitute_substrings
896 let pristine = Pcre.get_substring str 0 in
898 if pristine.[0] = ' ' then
899 String.sub pristine 1 (String.length pristine -1)
903 if input.[String.length input-1] = ' ' then
904 String.sub input 0 (String.length input -1)
908 if input = "\\forall" ||
909 input = "\\lambda" ||
910 input = "\\exists" then "","" else " ", " "
913 before ^ Glib.Utf8.from_unichar
914 (snd (Virtuals.symbol_of_virtual input)) ^ after
915 with Virtuals.Not_a_virtual -> pristine)
916 ~pat:" ?\\\\[a-zA-Z]+ ?" text
918 buffer#insert ~iter:lock text
920 (** @param rel_offset relative offset from current position of locked_mark *)
921 method private moveMark rel_offset =
922 let mark = `MARK locked_mark in
923 let old_insert = buffer#get_iter_at_mark `INSERT in
924 buffer#remove_tag locked_tag ~start:buffer#start_iter ~stop:buffer#end_iter;
925 let current_mark_pos = buffer#get_iter_at_mark mark in
927 match rel_offset with
928 | 0 -> current_mark_pos
929 | n when n > 0 -> current_mark_pos#forward_chars n
930 | n (* when n < 0 *) -> current_mark_pos#backward_chars (abs n)
932 buffer#move_mark mark ~where:new_mark_pos;
933 buffer#apply_tag locked_tag ~start:buffer#start_iter ~stop:new_mark_pos;
934 buffer#move_mark `INSERT old_insert;
935 let mark_position = buffer#get_iter_at_mark mark in
936 if source_view#move_mark_onscreen mark then
938 buffer#move_mark mark mark_position;
939 source_view#scroll_to_mark ~use_align:true ~xalign:1.0 ~yalign:0.1 mark;
941 while Glib.Main.pending () do ignore(Glib.Main.iteration false); done
943 method clean_dirty_lock =
944 let lock_mark_iter = buffer#get_iter_at_mark (`MARK locked_mark) in
945 buffer#remove_tag locked_tag ~start:buffer#start_iter ~stop:buffer#end_iter;
946 buffer#apply_tag locked_tag ~start:buffer#start_iter ~stop:lock_mark_iter
948 val mutable observers = []
950 method addObserver (o: GrafiteTypes.status -> unit) =
951 observers <- o :: observers
953 method private notify =
954 let grafite_status = self#grafite_status in
955 List.iter (fun o -> o grafite_status) observers
957 method loadFromString s =
960 buffer#set_modified true
962 method loadFromFile f =
963 buffer#set_text (HExtlib.input_file f);
965 buffer#set_modified false
967 method assignFileName file =
970 | Some f -> Some (Librarian.absolutize f)
976 (match file with Some file -> read_include_paths file | None -> []);
978 Sys.chdir self#curdir;
979 HLog.debug ("Moving to " ^ Sys.getcwd ())
981 method saveToFile () =
982 if self#has_name then
983 let oc = open_out self#filename in
984 output_string oc (buffer#get_text ~start:buffer#start_iter
985 ~stop:buffer#end_iter ());
988 buffer#set_modified false
990 HLog.error "Can't save, no filename selected"
992 method private _saveToBackupFile () =
993 if buffer#modified then
995 let f = self#filename in
996 let oc = open_out f in
997 output_string oc (buffer#get_text ~start:buffer#start_iter
998 ~stop:buffer#end_iter ());
1000 HLog.debug ("backup " ^ f ^ " saved")
1003 method private goto_top =
1004 let grafite_status =
1005 let rec last x = function
1007 | hd::tl -> last hd tl
1009 last (self#grafite_status) history
1011 (* FIXME: this is not correct since there is no undo for
1012 * library_objects.set_default... *)
1013 GrafiteSync.time_travel ~present:self#grafite_status ~past:grafite_status;
1014 LexiconSync.time_travel ~present:self#grafite_status ~past:grafite_status
1016 method private reset_buffer =
1018 history <- [ initial_statuses self#buri_of_current_file ];
1021 buffer#remove_tag locked_tag ~start:buffer#start_iter ~stop:buffer#end_iter;
1022 buffer#move_mark (`MARK locked_mark) ~where:buffer#start_iter
1026 source_buffer#begin_not_undoable_action ();
1027 buffer#delete ~start:buffer#start_iter ~stop:buffer#end_iter;
1028 source_buffer#end_not_undoable_action ();
1029 buffer#set_modified false;
1031 method template () =
1032 let template = HExtlib.input_file BuildTimeConf.script_template in
1033 buffer#insert ~iter:(buffer#get_iter `START) template;
1034 buffer#set_modified false;
1037 method goto (pos: [`Top | `Bottom | `Cursor]) () =
1039 let old_locked_mark =
1041 (buffer#create_mark ~name:"old_locked_mark"
1042 ~left_gravity:true (buffer#get_iter_at_mark (`MARK locked_mark))) in
1043 let getpos _ = buffer#get_iter_at_mark (`MARK locked_mark) in
1044 let getoldpos _ = buffer#get_iter_at_mark old_locked_mark in
1045 let dispose_old_locked_mark () = buffer#delete_mark old_locked_mark in
1048 dispose_old_locked_mark ();
1054 let rec dowhile () =
1056 let newpos = getpos () in
1057 if (getoldpos ())#compare newpos < 0 then
1059 buffer#move_mark old_locked_mark newpos;
1064 dispose_old_locked_mark ();
1067 | Margin -> dispose_old_locked_mark (); self#notify
1068 | exc -> dispose_old_locked_mark (); self#notify; raise exc)
1070 let locked_iter () = buffer#get_iter_at_mark (`NAME "locked") in
1071 let cursor_iter () = buffer#get_iter_at_mark `INSERT in
1074 (buffer#create_mark ~name:"initial_insert"
1075 ~left_gravity:true (cursor_iter ())) in
1076 let dispose_remember () = buffer#delete_mark remember in
1077 let remember_iter () =
1078 buffer#get_iter_at_mark (`NAME "initial_insert") in
1079 let cmp () = (locked_iter ())#offset - (remember_iter ())#offset in
1080 let icmp = cmp () in
1081 let forward_until_cursor () = (* go forward until locked > cursor *)
1084 if cmp () < 0 && (getoldpos ())#compare (getpos ()) < 0
1087 buffer#move_mark old_locked_mark (getpos ());
1093 let rec back_until_cursor len = (* go backward until locked < cursor *)
1095 statements, ((grafite_status)::_ as history)
1097 self#_retract (icmp - len) grafite_status statements
1099 | statement::tl1, _::tl2 ->
1100 back_until_cursor (len - MatitaGtkMisc.utf8_string_length statement) (tl1,tl2)
1101 | _,_ -> assert false
1105 if icmp < 0 then (* locked < cursor *)
1106 (forward_until_cursor (); self#notify)
1107 else if icmp > 0 then (* locked > cursor *)
1108 (back_until_cursor icmp (statements,history); self#notify)
1109 else (* cursor = locked *)
1112 dispose_remember ();
1113 dispose_old_locked_mark ();
1115 | Margin -> dispose_remember (); dispose_old_locked_mark (); self#notify
1116 | exc -> dispose_remember (); dispose_old_locked_mark ();
1117 self#notify; raise exc)
1118 with Invalid_argument "Array.make" ->
1119 HLog.error "The script is too big!\n"
1121 method onGoingProof () =
1122 match self#grafite_status#proof_status with
1123 | No_proof | Proof _ -> false
1124 | Incomplete_proof _ -> true
1125 | Intermediate _ -> assert false
1127 (* method proofStatus = MatitaTypes.get_proof_status self#status *)
1128 method proofMetasenv = GrafiteTypes.get_proof_metasenv self#grafite_status
1130 method proofContext =
1133 | Some n -> GrafiteTypes.get_proof_context self#grafite_status n
1135 method proofConclusion =
1137 None -> assert false
1139 GrafiteTypes.get_proof_conclusion self#grafite_status n
1141 method stack = GrafiteTypes.get_stack self#grafite_status
1142 method setGoal n = userGoal <- n
1143 method goal = userGoal
1151 let rec is_there_only_comments lexicon_status s =
1152 if Pcre.pmatch ~rex:only_dust_RE s then raise Margin;
1153 let lexicon_status,st =
1154 GrafiteParser.parse_statement (Ulexing.from_utf8_string s)
1155 ~include_paths:self#include_paths lexicon_status
1158 | GrafiteParser.LSome (GrafiteAst.Comment (loc,_)) ->
1159 let _,parsed_text_length = MatitaGtkMisc.utf8_parsed_text s loc in
1160 (* CSC: why +1 in the following lines ???? *)
1161 let parsed_text_length = parsed_text_length + 1 in
1162 let remain_len = String.length s - parsed_text_length in
1163 let next = String.sub s parsed_text_length remain_len in
1164 is_there_only_comments lexicon_status next
1165 | GrafiteParser.LNone _
1166 | GrafiteParser.LSome (GrafiteAst.Executable _) -> false
1168 try is_there_only_comments self#grafite_status self#getFuture
1170 | LexiconEngine.IncludedFileNotCompiled _
1171 | HExtlib.Localized _
1172 | CicNotationParser.Parse_error _ -> false
1173 | Margin | End_of_file -> true
1174 | Invalid_argument "Array.make" -> false
1178 HLog.debug "script status:";
1179 HLog.debug ("history size: " ^ string_of_int (List.length history));
1180 HLog.debug (sprintf "%d statements:" (List.length statements));
1181 List.iter HLog.debug statements;
1182 HLog.debug ("Current file name: " ^ self#filename);
1185 let _script = ref None
1187 let script ~source_view ~mathviewer ~urichooser ~ask_confirmation ~set_star ()
1190 ~source_view ~mathviewer ~ask_confirmation ~urichooser ~set_star ()
1195 let current () = match !_script with None -> assert false | Some s -> s