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