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