src/Pure/PIDE/command.ML
author wenzelm
Thu, 11 Jul 2013 14:42:11 +0200
changeset 53733 40298d383463
parent 53723 7a0935571a23
child 53735 cad097fb46de
permissions -rw-r--r--
global management of command execution fragments;
tuned;
     1 (*  Title:      Pure/PIDE/command.ML
     2     Author:     Makarius
     3 
     4 Prover command execution: read -- eval -- print.
     5 *)
     6 
     7 signature COMMAND =
     8 sig
     9   type eval_process
    10   type eval = {exec_id: Document_ID.exec, eval_process: eval_process}
    11   val eval_result_state: eval -> Toplevel.state
    12   val eval_same: eval * eval -> bool
    13   type print_process
    14   type print =
    15    {name: string, pri: int, persistent: bool,
    16     exec_id: Document_ID.exec, print_process: print_process}
    17   type exec = eval * print list
    18   val no_exec: exec
    19   val exec_ids: exec option -> Document_ID.exec list
    20   val read: (unit -> theory) -> Token.T list -> Toplevel.transition
    21   val eval: (unit -> theory) -> Token.T list -> eval -> eval
    22   val print: bool -> string -> eval -> print list -> print list option
    23   type print_fn = Toplevel.transition -> Toplevel.state -> unit
    24   val print_function: {name: string, pri: int, persistent: bool} ->
    25     ({command_name: string} -> print_fn option) -> unit
    26   val no_print_function: string -> unit
    27   val execute: exec -> unit
    28 end;
    29 
    30 structure Command: COMMAND =
    31 struct
    32 
    33 (** memo results -- including physical interrupts! **)
    34 
    35 datatype 'a expr =
    36   Expr of Document_ID.exec * (unit -> 'a) |
    37   Result of 'a Exn.result;
    38 
    39 abstype 'a memo = Memo of 'a expr Synchronized.var
    40 with
    41 
    42 fun memo exec_id e = Memo (Synchronized.var "Command.memo" (Expr (exec_id, e)));
    43 fun memo_value a = Memo (Synchronized.var "Command.memo" (Result (Exn.Res a)));
    44 
    45 fun memo_result (Memo v) =
    46   (case Synchronized.value v of
    47     Result res => Exn.release res
    48   | _ => raise Fail "Unfinished memo result");
    49 
    50 fun memo_exec (Memo v) =
    51   (case Synchronized.value v of
    52     Result res => res
    53   | _ =>
    54       Synchronized.guarded_access v
    55         (fn Result res => SOME (res, Result res)
    56           | Expr (exec_id, e) =>
    57               uninterruptible (fn restore_attributes => fn () =>
    58                 let
    59                   val _ = Exec.running exec_id;
    60                   val res = Exn.capture (restore_attributes e) ();
    61                   val _ =
    62                     if Exn.is_interrupt_exn res
    63                     then Exec.canceled exec_id
    64                     else Exec.finished exec_id;
    65                 in SOME (res, Result res) end) ()))
    66   |> Exn.release;
    67 
    68 fun memo_fork params (Memo v) =
    69   (case Synchronized.value v of
    70     Result _ => ()
    71   | _ => ignore ((singleton o Future.forks) params (fn () => memo_exec (Memo v))));
    72 
    73 end;
    74 
    75 
    76 
    77 (** main phases of execution **)
    78 
    79 (* type definitions *)
    80 
    81 type eval_state =
    82   {failed: bool, malformed: bool, command: Toplevel.transition, state: Toplevel.state};
    83 val init_eval_state =
    84   {failed = false, malformed = false, command = Toplevel.empty, state = Toplevel.toplevel};
    85 
    86 type eval_process = eval_state memo;
    87 type eval = {exec_id: Document_ID.exec, eval_process: eval_process};
    88 
    89 fun eval_result ({eval_process, ...}: eval) = memo_result eval_process;
    90 val eval_result_state = #state o eval_result;
    91 
    92 fun eval_same ({exec_id, ...}: eval, {exec_id = exec_id', ...}: eval) =
    93   exec_id = exec_id' andalso Exec.is_stable exec_id;
    94 
    95 type print_process = unit memo;
    96 type print =
    97  {name: string, pri: int, persistent: bool,
    98   exec_id: Document_ID.exec, print_process: print_process};
    99 
   100 type exec = eval * print list;
   101 val no_exec: exec = ({exec_id = Document_ID.none, eval_process = memo_value init_eval_state}, []);
   102 
   103 fun exec_ids (NONE: exec option) = []
   104   | exec_ids (SOME ({exec_id, ...}, prints)) = exec_id :: map #exec_id prints;
   105 
   106 
   107 (* read *)
   108 
   109 fun read init span =
   110   let
   111     val outer_syntax = #2 (Outer_Syntax.get_syntax ());
   112     val command_reports = Outer_Syntax.command_reports outer_syntax;
   113 
   114     val proper_range =
   115       Position.set_range (Token.position_range_of (#1 (take_suffix Token.is_improper span)));
   116     val pos =
   117       (case find_first Token.is_command span of
   118         SOME tok => Token.position_of tok
   119       | NONE => proper_range);
   120 
   121     val (is_malformed, token_reports) = Thy_Syntax.reports_of_tokens span;
   122     val _ = Position.reports_text (token_reports @ maps command_reports span);
   123   in
   124     if is_malformed then Toplevel.malformed pos "Malformed command syntax"
   125     else
   126       (case Outer_Syntax.read_spans outer_syntax span of
   127         [tr] =>
   128           if Keyword.is_control (Toplevel.name_of tr) then
   129             Toplevel.malformed pos "Illegal control command"
   130           else Toplevel.modify_init init tr
   131       | [] => Toplevel.ignored (Position.set_range (Token.position_range_of span))
   132       | _ => Toplevel.malformed proper_range "Exactly one command expected")
   133       handle ERROR msg => Toplevel.malformed proper_range msg
   134   end;
   135 
   136 
   137 (* eval *)
   138 
   139 local
   140 
   141 fun run int tr st =
   142   if Goal.future_enabled () andalso Keyword.is_diag (Toplevel.name_of tr) then
   143     (Goal.fork_params {name = "Toplevel.diag", pos = Toplevel.pos_of tr, pri = ~1}
   144       (fn () => Toplevel.command_exception int tr st); ([], SOME st))
   145   else Toplevel.command_errors int tr st;
   146 
   147 fun check_cmts span tr st' =
   148   Toplevel.setmp_thread_position tr
   149     (fn () =>
   150       Outer_Syntax.side_comments span |> maps (fn cmt =>
   151         (Thy_Output.check_text (Token.source_position_of cmt) st'; [])
   152           handle exn => ML_Compiler.exn_messages_ids exn)) ();
   153 
   154 fun proof_status tr st =
   155   (case try Toplevel.proof_of st of
   156     SOME prf => Toplevel.status tr (Proof.status_markup prf)
   157   | NONE => ());
   158 
   159 fun eval_state span tr ({malformed, state = st, ...}: eval_state) =
   160   if malformed then
   161     {failed = true, malformed = malformed, command = tr, state = Toplevel.toplevel}
   162   else
   163     let
   164       val malformed' = Toplevel.is_malformed tr;
   165       val is_init = Toplevel.is_init tr;
   166       val is_proof = Keyword.is_proof (Toplevel.name_of tr);
   167 
   168       val _ = Multithreading.interrupted ();
   169       val _ = Toplevel.status tr Markup.running;
   170       val (errs1, result) = run (is_init orelse is_proof) (Toplevel.set_print false tr) st;
   171       val errs2 = (case result of NONE => [] | SOME st' => check_cmts span tr st');
   172       val errs = errs1 @ errs2;
   173       val _ = Toplevel.status tr Markup.finished;
   174       val _ = List.app (Future.error_msg (Toplevel.pos_of tr)) errs;
   175     in
   176       (case result of
   177         NONE =>
   178           let
   179             val _ = if null errs then Exn.interrupt () else ();
   180             val _ = Toplevel.status tr Markup.failed;
   181           in {failed = true, malformed = malformed', command = tr, state = st} end
   182       | SOME st' =>
   183           let
   184             val _ = proof_status tr st';
   185           in {failed = false, malformed = malformed', command = tr, state = st'} end)
   186     end;
   187 
   188 in
   189 
   190 fun eval init span eval0 =
   191   let
   192     val exec_id = Document_ID.make ();
   193     fun process () =
   194       let
   195         val tr =
   196           Position.setmp_thread_data (Position.id_only (Document_ID.print exec_id))
   197             (fn () => read init span |> Toplevel.exec_id exec_id) ();
   198       in eval_state span tr (eval_result eval0) end;
   199   in {exec_id = exec_id, eval_process = memo exec_id process} end;
   200 
   201 end;
   202 
   203 
   204 (* print *)
   205 
   206 type print_fn = Toplevel.transition -> Toplevel.state -> unit;
   207 
   208 local
   209 
   210 type print_function = string * (int * bool * ({command_name: string} -> print_fn option));
   211 val print_functions = Synchronized.var "Command.print_functions" ([]: print_function list);
   212 
   213 fun print_error tr e =
   214   (Toplevel.setmp_thread_position tr o Runtime.controlled_execution) e () handle exn =>
   215     List.app (Future.error_msg (Toplevel.pos_of tr)) (ML_Compiler.exn_messages_ids exn);
   216 
   217 fun print_stable (print: print) = Exec.is_stable (#exec_id print);
   218 
   219 in
   220 
   221 fun print command_visible command_name eval old_prints =
   222   let
   223     fun new_print (name, (pri, persistent, get_fn)) =
   224       let
   225         fun make_print strict print_fn =
   226           let
   227             val exec_id = Document_ID.make ();
   228             fun process () =
   229               let
   230                 val {failed, command, state = st', ...} = eval_result eval;
   231                 val tr = Toplevel.exec_id exec_id command;
   232               in
   233                 if failed andalso not strict then ()
   234                 else print_error tr (fn () => print_fn tr st')
   235               end;
   236           in
   237            {name = name, pri = pri, persistent = persistent,
   238             exec_id = exec_id, print_process = memo exec_id process}
   239           end;
   240       in
   241         (case Exn.capture (Runtime.controlled_execution get_fn) {command_name = command_name} of
   242           Exn.Res NONE => NONE
   243         | Exn.Res (SOME print_fn) => SOME (make_print false print_fn)
   244         | Exn.Exn exn => SOME (make_print true (fn _ => fn _ => reraise exn)))
   245       end;
   246 
   247     val new_prints =
   248       if command_visible then
   249         rev (Synchronized.value print_functions) |> map_filter (fn pr =>
   250           (case find_first (equal (fst pr) o #name) old_prints of
   251             SOME print => if print_stable print then SOME print else new_print pr
   252           | NONE => new_print pr))
   253       else filter (fn print => #persistent print andalso print_stable print) old_prints;
   254   in
   255     if eq_list (op = o pairself #exec_id) (old_prints, new_prints) then NONE
   256     else SOME new_prints
   257   end;
   258 
   259 fun print_function {name, pri, persistent} f =
   260   Synchronized.change print_functions (fn funs =>
   261    (if not (AList.defined (op =) funs name) then ()
   262     else warning ("Redefining command print function: " ^ quote name);
   263     AList.update (op =) (name, (pri, persistent, f)) funs));
   264 
   265 fun no_print_function name =
   266   Synchronized.change print_functions (filter_out (equal name o #1));
   267 
   268 end;
   269 
   270 val _ =
   271   print_function {name = "print_state", pri = 0, persistent = true}
   272     (fn {command_name} => SOME (fn tr => fn st' =>
   273       let
   274         val is_init = Keyword.is_theory_begin command_name;
   275         val is_proof = Keyword.is_proof command_name;
   276         val do_print =
   277           not is_init andalso
   278             (Toplevel.print_of tr orelse (is_proof andalso Toplevel.is_proof st'));
   279       in if do_print then Toplevel.print_state false st' else () end));
   280 
   281 
   282 (* combined execution process *)
   283 
   284 fun run_print ({name, pri, print_process, ...}: print) =
   285   (if Multithreading.enabled () then
   286     memo_fork {name = name, group = NONE, deps = [], pri = pri, interrupts = true}
   287   else memo_exec) print_process;
   288 
   289 fun execute (({eval_process, ...}, prints): exec) =
   290   (memo_exec eval_process; List.app run_print prints);
   291 
   292 end;
   293