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