| author | ballarin | 
| Tue, 03 Sep 2013 22:12:48 +0200 | |
| changeset 53370 | 7a41ec2cc522 | 
| parent 53193 | 2ddc5e788f7c | 
| child 53375 | 78693e46a237 | 
| permissions | -rw-r--r-- | 
| 52605 | 1 | (* Title: Pure/PIDE/execution.ML | 
| 52596 | 2 | Author: Makarius | 
| 3 | ||
| 52606 | 4 | Global management of execution. Unique running execution serves as | 
| 53192 | 5 | barrier for further exploration of forked command execs. | 
| 52596 | 6 | *) | 
| 7 | ||
| 52605 | 8 | signature EXECUTION = | 
| 52596 | 9 | sig | 
| 52606 | 10 | val start: unit -> Document_ID.execution | 
| 11 | val discontinue: unit -> unit | |
| 12 | val is_running: Document_ID.execution -> bool | |
| 52784 
4ba2e8b9972f
de-assign execs that were not registered as running yet -- observe change of perspective more thoroughly;
 wenzelm parents: 
52775diff
changeset | 13 | val is_running_exec: Document_ID.exec -> bool | 
| 52606 | 14 | val running: Document_ID.execution -> Document_ID.exec -> bool | 
| 53192 | 15 | val peek: Document_ID.exec -> Future.group list | 
| 52655 
3b2b1ef13979
more careful termination of removed execs, leaving running execs undisturbed;
 wenzelm parents: 
52608diff
changeset | 16 | val cancel: Document_ID.exec -> unit | 
| 
3b2b1ef13979
more careful termination of removed execs, leaving running execs undisturbed;
 wenzelm parents: 
52608diff
changeset | 17 | val terminate: Document_ID.exec -> unit | 
| 53192 | 18 |   val fork: {name: string, pos: Position.T, pri: int} -> (unit -> 'a) -> 'a future
 | 
| 19 | val purge: Document_ID.exec list -> unit | |
| 20 | val reset: unit -> Future.group list | |
| 21 | val shutdown: unit -> unit | |
| 52596 | 22 | end; | 
| 23 | ||
| 52605 | 24 | structure Execution: EXECUTION = | 
| 52596 | 25 | struct | 
| 26 | ||
| 52787 
c143ad7811fc
pro-forma Execution.reset, despite lack of final join/commit;
 wenzelm parents: 
52784diff
changeset | 27 | (* global state *) | 
| 
c143ad7811fc
pro-forma Execution.reset, despite lack of final join/commit;
 wenzelm parents: 
52784diff
changeset | 28 | |
| 53192 | 29 | datatype state = State of | 
| 30 |   {execution: Document_ID.execution,  (*overall document execution*)
 | |
| 31 | execs: Future.group list Inttab.table}; (*command execs with registered forks*) | |
| 52787 
c143ad7811fc
pro-forma Execution.reset, despite lack of final join/commit;
 wenzelm parents: 
52784diff
changeset | 32 | |
| 53192 | 33 | fun make_state (execution, execs) = State {execution = execution, execs = execs};
 | 
| 34 | fun map_state f (State {execution, execs}) = make_state (f (execution, execs));
 | |
| 35 | ||
| 36 | val init_state = make_state (Document_ID.none, Inttab.empty); | |
| 52787 
c143ad7811fc
pro-forma Execution.reset, despite lack of final join/commit;
 wenzelm parents: 
52784diff
changeset | 37 | val state = Synchronized.var "Execution.state" init_state; | 
| 52602 
00170ef1dc39
strictly monotonic Document.update: avoid disruptive cancel_execution, merely discontinue_execution and cancel/terminate old execs individually;
 wenzelm parents: 
52596diff
changeset | 38 | |
| 53192 | 39 | fun get_state () = let val State args = Synchronized.value state in args end; | 
| 40 | fun change_state f = Synchronized.change state (map_state f); | |
| 41 | ||
| 52604 | 42 | |
| 52606 | 43 | (* unique running execution *) | 
| 52604 | 44 | |
| 52606 | 45 | fun start () = | 
| 52602 
00170ef1dc39
strictly monotonic Document.update: avoid disruptive cancel_execution, merely discontinue_execution and cancel/terminate old execs individually;
 wenzelm parents: 
52596diff
changeset | 46 | let | 
| 52606 | 47 | val execution_id = Document_ID.make (); | 
| 53192 | 48 | val _ = change_state (apfst (K execution_id)); | 
| 52606 | 49 | in execution_id end; | 
| 52604 | 50 | |
| 53192 | 51 | fun discontinue () = change_state (apfst (K Document_ID.none)); | 
| 52606 | 52 | |
| 53192 | 53 | fun is_running execution_id = execution_id = #execution (get_state ()); | 
| 52604 | 54 | |
| 55 | ||
| 53192 | 56 | (* execs *) | 
| 52604 | 57 | |
| 52784 
4ba2e8b9972f
de-assign execs that were not registered as running yet -- observe change of perspective more thoroughly;
 wenzelm parents: 
52775diff
changeset | 58 | fun is_running_exec exec_id = | 
| 53192 | 59 | Inttab.defined (#execs (get_state ())) exec_id; | 
| 52784 
4ba2e8b9972f
de-assign execs that were not registered as running yet -- observe change of perspective more thoroughly;
 wenzelm parents: 
52775diff
changeset | 60 | |
| 52606 | 61 | fun running execution_id exec_id = | 
| 52604 | 62 | Synchronized.guarded_access state | 
| 53192 | 63 |     (fn State {execution = execution_id', execs} =>
 | 
| 52604 | 64 | let | 
| 52606 | 65 | val continue = execution_id = execution_id'; | 
| 52604 | 66 | val execs' = | 
| 52606 | 67 | if continue then | 
| 53192 | 68 | Inttab.update_new (exec_id, [Future.the_worker_group ()]) execs | 
| 69 | handle Inttab.DUP dup => | |
| 70 |                 error ("Execution already registered: " ^ Document_ID.print dup)
 | |
| 52604 | 71 | else execs; | 
| 53192 | 72 | in SOME (continue, make_state (execution_id', execs')) end); | 
| 73 | ||
| 74 | fun peek exec_id = | |
| 75 | Inttab.lookup_list (#execs (get_state ())) exec_id; | |
| 76 | ||
| 77 | fun cancel exec_id = List.app Future.cancel_group (peek exec_id); | |
| 78 | fun terminate exec_id = List.app Future.terminate (peek exec_id); | |
| 79 | ||
| 80 | ||
| 81 | (* fork *) | |
| 82 | ||
| 83 | fun status task markups = | |
| 84 | let val props = Markup.properties [(Markup.taskN, Task_Queue.str_of_task task)] | |
| 85 | in Output.status (implode (map (Markup.markup_only o props) markups)) end; | |
| 86 | ||
| 87 | fun fork {name, pos, pri} e =
 | |
| 88 | uninterruptible (fn _ => Position.setmp_thread_data pos (fn () => | |
| 89 | let | |
| 90 | val exec_id = the_default 0 (Position.parse_id pos); | |
| 91 | val group = Future.worker_subgroup (); | |
| 53193 | 92 | val _ = change_state (apsnd (Inttab.cons_list (exec_id, group))); | 
| 52655 
3b2b1ef13979
more careful termination of removed execs, leaving running execs undisturbed;
 wenzelm parents: 
52608diff
changeset | 93 | |
| 53192 | 94 | val future = | 
| 95 | (singleton o Future.forks) | |
| 96 |           {name = name, group = SOME group, deps = [], pri = pri, interrupts = false}
 | |
| 97 | (fn () => | |
| 98 | let | |
| 99 | val task = the (Future.worker_task ()); | |
| 100 | val _ = status task [Markup.running]; | |
| 101 | val result = | |
| 102 | Exn.capture (Future.interruptible_task e) () | |
| 103 | |> Future.identify_result pos; | |
| 104 | val _ = status task [Markup.finished, Markup.joined]; | |
| 105 | val _ = | |
| 106 | (case result of | |
| 107 | Exn.Res _ => () | |
| 108 | | Exn.Exn exn => | |
| 109 | if exec_id = 0 orelse Exn.is_interrupt exn then () | |
| 110 | else | |
| 111 | (status task [Markup.failed]; | |
| 112 | Output.report (Markup.markup_only Markup.bad); | |
| 113 | List.app (Future.error_msg pos) (ML_Compiler.exn_messages_ids exn))); | |
| 114 | in Exn.release result end); | |
| 115 | val _ = status (Future.task_of future) [Markup.forked]; | |
| 116 | in future end)) (); | |
| 52604 | 117 | |
| 53192 | 118 | |
| 119 | (* cleanup *) | |
| 120 | ||
| 121 | fun purge exec_ids = | |
| 122 | (change_state o apsnd) (fn execs => | |
| 123 | let | |
| 124 | val execs' = fold Inttab.delete_safe exec_ids execs; | |
| 125 | val () = | |
| 126 | (execs', ()) |-> Inttab.fold (fn (exec_id, groups) => fn () => | |
| 127 | if Inttab.defined execs' exec_id then () | |
| 128 | else groups |> List.app (fn group => | |
| 129 | if Task_Queue.is_canceled group then () | |
| 130 |             else error ("Attempt to purge valid execution: " ^ Document_ID.print exec_id)));
 | |
| 131 | in execs' end); | |
| 132 | ||
| 133 | fun reset () = | |
| 134 |   Synchronized.change_result state (fn State {execs, ...} =>
 | |
| 135 | let val groups = Inttab.fold (append o #2) execs [] | |
| 136 | in (groups, init_state) end); | |
| 137 | ||
| 138 | fun shutdown () = | |
| 139 | (Future.shutdown (); | |
| 140 | (case maps Task_Queue.group_status (reset ()) of | |
| 141 | [] => () | |
| 142 | | exns => raise Par_Exn.make exns)); | |
| 143 | ||
| 144 | end; | |
| 145 |