| author | blanchet | 
| Thu, 26 Apr 2012 20:09:38 +0200 | |
| changeset 47782 | 1678955ca991 | 
| parent 47423 | 8a179a0493e3 | 
| child 50975 | 73ec6ad6700e | 
| permissions | -rw-r--r-- | 
| 28165 | 1 | (* Title: Pure/Concurrent/task_queue.ML | 
| 2 | Author: Makarius | |
| 3 | ||
| 4 | Ordered queue of grouped tasks. | |
| 5 | *) | |
| 6 | ||
| 7 | signature TASK_QUEUE = | |
| 8 | sig | |
| 29340 | 9 | type group | 
| 32221 | 10 | val new_group: group option -> group | 
| 32052 | 11 | val group_id: group -> int | 
| 29340 | 12 | val eq_group: group * group -> bool | 
| 32221 | 13 | val cancel_group: group -> exn -> unit | 
| 14 | val is_canceled: group -> bool | |
| 44247 | 15 | val group_status: group -> exn option | 
| 28179 | 16 | val str_of_group: group -> string | 
| 43951 | 17 | val str_of_groups: group -> string | 
| 41683 
73dde8006820
maintain Task_Queue.group within Task_Queue.task;
 wenzelm parents: 
41682diff
changeset | 18 | type task | 
| 45136 
2afb928c71ca
static dummy_task (again) to avoid a few extra allocations;
 wenzelm parents: 
44341diff
changeset | 19 | val dummy_task: task | 
| 41683 
73dde8006820
maintain Task_Queue.group within Task_Queue.task;
 wenzelm parents: 
41682diff
changeset | 20 | val group_of_task: task -> group | 
| 
73dde8006820
maintain Task_Queue.group within Task_Queue.task;
 wenzelm parents: 
41682diff
changeset | 21 | val name_of_task: task -> string | 
| 
73dde8006820
maintain Task_Queue.group within Task_Queue.task;
 wenzelm parents: 
41682diff
changeset | 22 | val pri_of_task: task -> int | 
| 
73dde8006820
maintain Task_Queue.group within Task_Queue.task;
 wenzelm parents: 
41682diff
changeset | 23 | val str_of_task: task -> string | 
| 43951 | 24 | val str_of_task_groups: task -> string | 
| 41683 
73dde8006820
maintain Task_Queue.group within Task_Queue.task;
 wenzelm parents: 
41682diff
changeset | 25 | val timing_of_task: task -> Time.time * Time.time * string list | 
| 41695 
afdbec23b92b
eliminated slightly odd abstract type Task_Queue.deps;
 wenzelm parents: 
41684diff
changeset | 26 | val running: task -> (unit -> 'a) -> 'a | 
| 
afdbec23b92b
eliminated slightly odd abstract type Task_Queue.deps;
 wenzelm parents: 
41684diff
changeset | 27 | val joining: task -> (unit -> 'a) -> 'a | 
| 
afdbec23b92b
eliminated slightly odd abstract type Task_Queue.deps;
 wenzelm parents: 
41684diff
changeset | 28 | val waiting: task -> task list -> (unit -> 'a) -> 'a | 
| 28165 | 29 | type queue | 
| 30 | val empty: queue | |
| 47404 
e6e5750f1311
simplified Future.cancel/cancel_group (again) -- running threads only;
 wenzelm parents: 
45642diff
changeset | 31 | val group_tasks: queue -> group -> task list | 
| 41708 | 32 | val known_task: queue -> task -> bool | 
| 34277 
7325a5e3587f
added Future.promise/fulfill -- promised futures that are fulfilled by external means;
 wenzelm parents: 
32814diff
changeset | 33 | val all_passive: queue -> bool | 
| 
7325a5e3587f
added Future.promise/fulfill -- promised futures that are fulfilled by external means;
 wenzelm parents: 
32814diff
changeset | 34 |   val status: queue -> {ready: int, pending: int, running: int, passive: int}
 | 
| 47404 
e6e5750f1311
simplified Future.cancel/cancel_group (again) -- running threads only;
 wenzelm parents: 
45642diff
changeset | 35 | val cancel: queue -> group -> Thread.thread list | 
| 44341 
a93d25fb14fc
purely functional task_queue.ML -- moved actual interrupt_unsynchronized to future.ML;
 wenzelm parents: 
44340diff
changeset | 36 | val cancel_all: queue -> group list * Thread.thread list | 
| 41681 
b5d7b15166bf
Future.join_results: discontinued post-hoc recording of dynamic dependencies;
 wenzelm parents: 
41680diff
changeset | 37 | val finish: task -> queue -> bool * queue | 
| 37854 
047c96f41455
back to more strict dependencies, even for canceled groups (reverting parts of 02936e77a07c);
 wenzelm parents: 
37216diff
changeset | 38 | val enqueue_passive: group -> (unit -> bool) -> queue -> task * queue | 
| 41708 | 39 | val enqueue: string -> group -> task list -> int -> (bool -> bool) -> queue -> task * queue | 
| 29365 | 40 | val extend: task -> (bool -> bool) -> queue -> queue option | 
| 47423 
8a179a0493e3
more robust Future.fulfill wrt. duplicate assignment and interrupt;
 wenzelm parents: 
47404diff
changeset | 41 | val dequeue_passive: Thread.thread -> task -> queue -> bool option * queue | 
| 41683 
73dde8006820
maintain Task_Queue.group within Task_Queue.task;
 wenzelm parents: 
41682diff
changeset | 42 | val dequeue: Thread.thread -> queue -> (task * (bool -> bool) list) option * queue | 
| 41695 
afdbec23b92b
eliminated slightly odd abstract type Task_Queue.deps;
 wenzelm parents: 
41684diff
changeset | 43 | val dequeue_deps: Thread.thread -> task list -> queue -> | 
| 
afdbec23b92b
eliminated slightly odd abstract type Task_Queue.deps;
 wenzelm parents: 
41684diff
changeset | 44 | (((task * (bool -> bool) list) option * task list) * queue) | 
| 28165 | 45 | end; | 
| 46 | ||
| 35242 
1c80c29086d7
eliminated opaque signature matching -- tends to cause problems with toplevel pp for abstract types;
 wenzelm parents: 
35012diff
changeset | 47 | structure Task_Queue: TASK_QUEUE = | 
| 28165 | 48 | struct | 
| 49 | ||
| 40450 
8eab60e1baeb
private counter, to keep externalized ids a bit smaller;
 wenzelm parents: 
39243diff
changeset | 50 | val new_id = Synchronized.counter (); | 
| 
8eab60e1baeb
private counter, to keep externalized ids a bit smaller;
 wenzelm parents: 
39243diff
changeset | 51 | |
| 
8eab60e1baeb
private counter, to keep externalized ids a bit smaller;
 wenzelm parents: 
39243diff
changeset | 52 | |
| 41683 
73dde8006820
maintain Task_Queue.group within Task_Queue.task;
 wenzelm parents: 
41682diff
changeset | 53 | (** nested groups of tasks **) | 
| 41670 | 54 | |
| 41683 
73dde8006820
maintain Task_Queue.group within Task_Queue.task;
 wenzelm parents: 
41682diff
changeset | 55 | (* groups *) | 
| 32101 
e25107ff4f56
support for nested groups -- cancellation is propagated to peers and subgroups;
 wenzelm parents: 
32099diff
changeset | 56 | |
| 35242 
1c80c29086d7
eliminated opaque signature matching -- tends to cause problems with toplevel pp for abstract types;
 wenzelm parents: 
35012diff
changeset | 57 | abstype group = Group of | 
| 32101 
e25107ff4f56
support for nested groups -- cancellation is propagated to peers and subgroups;
 wenzelm parents: 
32099diff
changeset | 58 |  {parent: group option,
 | 
| 40450 
8eab60e1baeb
private counter, to keep externalized ids a bit smaller;
 wenzelm parents: 
39243diff
changeset | 59 | id: int, | 
| 44247 | 60 | status: exn option Synchronized.var} | 
| 35242 
1c80c29086d7
eliminated opaque signature matching -- tends to cause problems with toplevel pp for abstract types;
 wenzelm parents: 
35012diff
changeset | 61 | with | 
| 29121 | 62 | |
| 32101 
e25107ff4f56
support for nested groups -- cancellation is propagated to peers and subgroups;
 wenzelm parents: 
32099diff
changeset | 63 | fun make_group (parent, id, status) = Group {parent = parent, id = id, status = status};
 | 
| 32052 | 64 | |
| 44247 | 65 | fun new_group parent = make_group (parent, new_id (), Synchronized.var "group_status" NONE); | 
| 32101 
e25107ff4f56
support for nested groups -- cancellation is propagated to peers and subgroups;
 wenzelm parents: 
32099diff
changeset | 66 | |
| 
e25107ff4f56
support for nested groups -- cancellation is propagated to peers and subgroups;
 wenzelm parents: 
32099diff
changeset | 67 | fun group_id (Group {id, ...}) = id;
 | 
| 
e25107ff4f56
support for nested groups -- cancellation is propagated to peers and subgroups;
 wenzelm parents: 
32099diff
changeset | 68 | fun eq_group (group1, group2) = group_id group1 = group_id group2; | 
| 28551 | 69 | |
| 43951 | 70 | fun fold_groups f (g as Group {parent = NONE, ...}) a = f g a
 | 
| 71 |   | fold_groups f (g as Group {parent = SOME group, ...}) a = fold_groups f group (f g a);
 | |
| 32101 
e25107ff4f56
support for nested groups -- cancellation is propagated to peers and subgroups;
 wenzelm parents: 
32099diff
changeset | 72 | |
| 
e25107ff4f56
support for nested groups -- cancellation is propagated to peers and subgroups;
 wenzelm parents: 
32099diff
changeset | 73 | |
| 32221 | 74 | (* group status *) | 
| 75 | ||
| 32251 | 76 | fun cancel_group (Group {status, ...}) exn =
 | 
| 77 | Synchronized.change status | |
| 44247 | 78 | (fn exns => SOME (Par_Exn.make (exn :: the_list exns))); | 
| 29121 | 79 | |
| 32251 | 80 | fun is_canceled (Group {parent, status, ...}) =
 | 
| 44247 | 81 | is_some (Synchronized.value status) orelse | 
| 32251 | 82 | (case parent of NONE => false | SOME group => is_canceled group); | 
| 32221 | 83 | |
| 44247 | 84 | fun group_exns (Group {parent, status, ...}) =
 | 
| 85 | the_list (Synchronized.value status) @ | |
| 86 | (case parent of NONE => [] | SOME group => group_exns group); | |
| 87 | ||
| 88 | fun group_status group = | |
| 89 | (case group_exns group of | |
| 90 | [] => NONE | |
| 91 | | exns => SOME (Par_Exn.make exns)); | |
| 28165 | 92 | |
| 32101 
e25107ff4f56
support for nested groups -- cancellation is propagated to peers and subgroups;
 wenzelm parents: 
32099diff
changeset | 93 | fun str_of_group group = | 
| 
e25107ff4f56
support for nested groups -- cancellation is propagated to peers and subgroups;
 wenzelm parents: 
32099diff
changeset | 94 |   (is_canceled group ? enclose "(" ")") (string_of_int (group_id group));
 | 
| 28179 | 95 | |
| 43951 | 96 | fun str_of_groups group = | 
| 97 | space_implode "/" (map str_of_group (rev (fold_groups cons group []))); | |
| 98 | ||
| 35242 
1c80c29086d7
eliminated opaque signature matching -- tends to cause problems with toplevel pp for abstract types;
 wenzelm parents: 
35012diff
changeset | 99 | end; | 
| 
1c80c29086d7
eliminated opaque signature matching -- tends to cause problems with toplevel pp for abstract types;
 wenzelm parents: 
35012diff
changeset | 100 | |
| 28165 | 101 | |
| 41683 
73dde8006820
maintain Task_Queue.group within Task_Queue.task;
 wenzelm parents: 
41682diff
changeset | 102 | (* tasks *) | 
| 
73dde8006820
maintain Task_Queue.group within Task_Queue.task;
 wenzelm parents: 
41682diff
changeset | 103 | |
| 
73dde8006820
maintain Task_Queue.group within Task_Queue.task;
 wenzelm parents: 
41682diff
changeset | 104 | type timing = Time.time * Time.time * string list; (*run, wait, wait dependencies*) | 
| 
73dde8006820
maintain Task_Queue.group within Task_Queue.task;
 wenzelm parents: 
41682diff
changeset | 105 | |
| 45136 
2afb928c71ca
static dummy_task (again) to avoid a few extra allocations;
 wenzelm parents: 
44341diff
changeset | 106 | val timing_start = (Time.zeroTime, Time.zeroTime, []): timing; | 
| 
2afb928c71ca
static dummy_task (again) to avoid a few extra allocations;
 wenzelm parents: 
44341diff
changeset | 107 | |
| 45354 
a2157057024c
optional timing, to avoid redundant allocation of mutable cells;
 wenzelm parents: 
45136diff
changeset | 108 | fun new_timing () = | 
| 
a2157057024c
optional timing, to avoid redundant allocation of mutable cells;
 wenzelm parents: 
45136diff
changeset | 109 | if ! Multithreading.trace < 2 then NONE | 
| 
a2157057024c
optional timing, to avoid redundant allocation of mutable cells;
 wenzelm parents: 
45136diff
changeset | 110 | else SOME (Synchronized.var "timing" timing_start); | 
| 41683 
73dde8006820
maintain Task_Queue.group within Task_Queue.task;
 wenzelm parents: 
41682diff
changeset | 111 | |
| 
73dde8006820
maintain Task_Queue.group within Task_Queue.task;
 wenzelm parents: 
41682diff
changeset | 112 | abstype task = Task of | 
| 
73dde8006820
maintain Task_Queue.group within Task_Queue.task;
 wenzelm parents: 
41682diff
changeset | 113 |  {group: group,
 | 
| 
73dde8006820
maintain Task_Queue.group within Task_Queue.task;
 wenzelm parents: 
41682diff
changeset | 114 | name: string, | 
| 
73dde8006820
maintain Task_Queue.group within Task_Queue.task;
 wenzelm parents: 
41682diff
changeset | 115 | id: int, | 
| 
73dde8006820
maintain Task_Queue.group within Task_Queue.task;
 wenzelm parents: 
41682diff
changeset | 116 | pri: int option, | 
| 45136 
2afb928c71ca
static dummy_task (again) to avoid a few extra allocations;
 wenzelm parents: 
44341diff
changeset | 117 | timing: timing Synchronized.var option} | 
| 41683 
73dde8006820
maintain Task_Queue.group within Task_Queue.task;
 wenzelm parents: 
41682diff
changeset | 118 | with | 
| 
73dde8006820
maintain Task_Queue.group within Task_Queue.task;
 wenzelm parents: 
41682diff
changeset | 119 | |
| 45136 
2afb928c71ca
static dummy_task (again) to avoid a few extra allocations;
 wenzelm parents: 
44341diff
changeset | 120 | val dummy_task = | 
| 
2afb928c71ca
static dummy_task (again) to avoid a few extra allocations;
 wenzelm parents: 
44341diff
changeset | 121 |   Task {group = new_group NONE, name = "", id = 0, pri = NONE, timing = NONE};
 | 
| 41683 
73dde8006820
maintain Task_Queue.group within Task_Queue.task;
 wenzelm parents: 
41682diff
changeset | 122 | |
| 
73dde8006820
maintain Task_Queue.group within Task_Queue.task;
 wenzelm parents: 
41682diff
changeset | 123 | fun new_task group name pri = | 
| 45354 
a2157057024c
optional timing, to avoid redundant allocation of mutable cells;
 wenzelm parents: 
45136diff
changeset | 124 |   Task {group = group, name = name, id = new_id (), pri = pri, timing = new_timing ()};
 | 
| 41683 
73dde8006820
maintain Task_Queue.group within Task_Queue.task;
 wenzelm parents: 
41682diff
changeset | 125 | |
| 
73dde8006820
maintain Task_Queue.group within Task_Queue.task;
 wenzelm parents: 
41682diff
changeset | 126 | fun group_of_task (Task {group, ...}) = group;
 | 
| 
73dde8006820
maintain Task_Queue.group within Task_Queue.task;
 wenzelm parents: 
41682diff
changeset | 127 | fun name_of_task (Task {name, ...}) = name;
 | 
| 
73dde8006820
maintain Task_Queue.group within Task_Queue.task;
 wenzelm parents: 
41682diff
changeset | 128 | fun pri_of_task (Task {pri, ...}) = the_default 0 pri;
 | 
| 43951 | 129 | |
| 41683 
73dde8006820
maintain Task_Queue.group within Task_Queue.task;
 wenzelm parents: 
41682diff
changeset | 130 | fun str_of_task (Task {name, id, ...}) =
 | 
| 
73dde8006820
maintain Task_Queue.group within Task_Queue.task;
 wenzelm parents: 
41682diff
changeset | 131 |   if name = "" then string_of_int id else string_of_int id ^ " (" ^ name ^ ")";
 | 
| 
73dde8006820
maintain Task_Queue.group within Task_Queue.task;
 wenzelm parents: 
41682diff
changeset | 132 | |
| 43951 | 133 | fun str_of_task_groups task = str_of_task task ^ " in " ^ str_of_groups (group_of_task task); | 
| 134 | ||
| 45136 
2afb928c71ca
static dummy_task (again) to avoid a few extra allocations;
 wenzelm parents: 
44341diff
changeset | 135 | fun timing_of_task (Task {timing, ...}) =
 | 
| 
2afb928c71ca
static dummy_task (again) to avoid a few extra allocations;
 wenzelm parents: 
44341diff
changeset | 136 | (case timing of NONE => timing_start | SOME var => Synchronized.value var); | 
| 41683 
73dde8006820
maintain Task_Queue.group within Task_Queue.task;
 wenzelm parents: 
41682diff
changeset | 137 | |
| 
73dde8006820
maintain Task_Queue.group within Task_Queue.task;
 wenzelm parents: 
41682diff
changeset | 138 | fun update_timing update (Task {timing, ...}) e =
 | 
| 41702 
dca4c58c5d57
Task_Queue.update_timing: more precise treatment of interruptibility;
 wenzelm parents: 
41695diff
changeset | 139 | uninterruptible (fn restore_attributes => fn () => | 
| 
dca4c58c5d57
Task_Queue.update_timing: more precise treatment of interruptibility;
 wenzelm parents: 
41695diff
changeset | 140 | let | 
| 
dca4c58c5d57
Task_Queue.update_timing: more precise treatment of interruptibility;
 wenzelm parents: 
41695diff
changeset | 141 | val start = Time.now (); | 
| 
dca4c58c5d57
Task_Queue.update_timing: more precise treatment of interruptibility;
 wenzelm parents: 
41695diff
changeset | 142 | val result = Exn.capture (restore_attributes e) (); | 
| 
dca4c58c5d57
Task_Queue.update_timing: more precise treatment of interruptibility;
 wenzelm parents: 
41695diff
changeset | 143 | val t = Time.- (Time.now (), start); | 
| 45136 
2afb928c71ca
static dummy_task (again) to avoid a few extra allocations;
 wenzelm parents: 
44341diff
changeset | 144 | val _ = (case timing of NONE => () | SOME var => Synchronized.change var (update t)); | 
| 41702 
dca4c58c5d57
Task_Queue.update_timing: more precise treatment of interruptibility;
 wenzelm parents: 
41695diff
changeset | 145 | in Exn.release result end) (); | 
| 41683 
73dde8006820
maintain Task_Queue.group within Task_Queue.task;
 wenzelm parents: 
41682diff
changeset | 146 | |
| 
73dde8006820
maintain Task_Queue.group within Task_Queue.task;
 wenzelm parents: 
41682diff
changeset | 147 | fun task_ord (Task {id = id1, pri = pri1, ...}, Task {id = id2, pri = pri2, ...}) =
 | 
| 
73dde8006820
maintain Task_Queue.group within Task_Queue.task;
 wenzelm parents: 
41682diff
changeset | 148 | prod_ord (rev_order o option_ord int_ord) int_ord ((pri1, id1), (pri2, id2)); | 
| 
73dde8006820
maintain Task_Queue.group within Task_Queue.task;
 wenzelm parents: 
41682diff
changeset | 149 | |
| 
73dde8006820
maintain Task_Queue.group within Task_Queue.task;
 wenzelm parents: 
41682diff
changeset | 150 | end; | 
| 
73dde8006820
maintain Task_Queue.group within Task_Queue.task;
 wenzelm parents: 
41682diff
changeset | 151 | |
| 41709 
2e427f340ad1
more scalable collections of tasks, notably for totality of known group members;
 wenzelm parents: 
41708diff
changeset | 152 | structure Tasks = Table(type key = task val ord = task_ord); | 
| 41683 
73dde8006820
maintain Task_Queue.group within Task_Queue.task;
 wenzelm parents: 
41682diff
changeset | 153 | structure Task_Graph = Graph(type key = task val ord = task_ord); | 
| 
73dde8006820
maintain Task_Queue.group within Task_Queue.task;
 wenzelm parents: 
41682diff
changeset | 154 | |
| 
73dde8006820
maintain Task_Queue.group within Task_Queue.task;
 wenzelm parents: 
41682diff
changeset | 155 | |
| 41695 
afdbec23b92b
eliminated slightly odd abstract type Task_Queue.deps;
 wenzelm parents: 
41684diff
changeset | 156 | (* timing *) | 
| 
afdbec23b92b
eliminated slightly odd abstract type Task_Queue.deps;
 wenzelm parents: 
41684diff
changeset | 157 | |
| 
afdbec23b92b
eliminated slightly odd abstract type Task_Queue.deps;
 wenzelm parents: 
41684diff
changeset | 158 | fun running task = | 
| 
afdbec23b92b
eliminated slightly odd abstract type Task_Queue.deps;
 wenzelm parents: 
41684diff
changeset | 159 | update_timing (fn t => fn (a, b, ds) => (Time.+ (a, t), b, ds)) task; | 
| 
afdbec23b92b
eliminated slightly odd abstract type Task_Queue.deps;
 wenzelm parents: 
41684diff
changeset | 160 | |
| 
afdbec23b92b
eliminated slightly odd abstract type Task_Queue.deps;
 wenzelm parents: 
41684diff
changeset | 161 | fun joining task = | 
| 
afdbec23b92b
eliminated slightly odd abstract type Task_Queue.deps;
 wenzelm parents: 
41684diff
changeset | 162 | update_timing (fn t => fn (a, b, ds) => (Time.- (a, t), b, ds)) task; | 
| 
afdbec23b92b
eliminated slightly odd abstract type Task_Queue.deps;
 wenzelm parents: 
41684diff
changeset | 163 | |
| 
afdbec23b92b
eliminated slightly odd abstract type Task_Queue.deps;
 wenzelm parents: 
41684diff
changeset | 164 | fun waiting task deps = | 
| 
afdbec23b92b
eliminated slightly odd abstract type Task_Queue.deps;
 wenzelm parents: 
41684diff
changeset | 165 | update_timing (fn t => fn (a, b, ds) => | 
| 41702 
dca4c58c5d57
Task_Queue.update_timing: more precise treatment of interruptibility;
 wenzelm parents: 
41695diff
changeset | 166 | (Time.- (a, t), Time.+ (b, t), | 
| 
dca4c58c5d57
Task_Queue.update_timing: more precise treatment of interruptibility;
 wenzelm parents: 
41695diff
changeset | 167 | if ! Multithreading.trace > 0 | 
| 
dca4c58c5d57
Task_Queue.update_timing: more precise treatment of interruptibility;
 wenzelm parents: 
41695diff
changeset | 168 | then fold (insert (op =) o name_of_task) deps ds else ds)) task; | 
| 41695 
afdbec23b92b
eliminated slightly odd abstract type Task_Queue.deps;
 wenzelm parents: 
41684diff
changeset | 169 | |
| 
afdbec23b92b
eliminated slightly odd abstract type Task_Queue.deps;
 wenzelm parents: 
41684diff
changeset | 170 | |
| 41683 
73dde8006820
maintain Task_Queue.group within Task_Queue.task;
 wenzelm parents: 
41682diff
changeset | 171 | |
| 41681 
b5d7b15166bf
Future.join_results: discontinued post-hoc recording of dynamic dependencies;
 wenzelm parents: 
41680diff
changeset | 172 | (** queue of jobs and groups **) | 
| 
b5d7b15166bf
Future.join_results: discontinued post-hoc recording of dynamic dependencies;
 wenzelm parents: 
41680diff
changeset | 173 | |
| 41709 
2e427f340ad1
more scalable collections of tasks, notably for totality of known group members;
 wenzelm parents: 
41708diff
changeset | 174 | (* known group members *) | 
| 
2e427f340ad1
more scalable collections of tasks, notably for totality of known group members;
 wenzelm parents: 
41708diff
changeset | 175 | |
| 
2e427f340ad1
more scalable collections of tasks, notably for totality of known group members;
 wenzelm parents: 
41708diff
changeset | 176 | type groups = unit Tasks.table Inttab.table; | 
| 
2e427f340ad1
more scalable collections of tasks, notably for totality of known group members;
 wenzelm parents: 
41708diff
changeset | 177 | |
| 
2e427f340ad1
more scalable collections of tasks, notably for totality of known group members;
 wenzelm parents: 
41708diff
changeset | 178 | fun get_tasks (groups: groups) gid = | 
| 
2e427f340ad1
more scalable collections of tasks, notably for totality of known group members;
 wenzelm parents: 
41708diff
changeset | 179 | the_default Tasks.empty (Inttab.lookup groups gid); | 
| 
2e427f340ad1
more scalable collections of tasks, notably for totality of known group members;
 wenzelm parents: 
41708diff
changeset | 180 | |
| 
2e427f340ad1
more scalable collections of tasks, notably for totality of known group members;
 wenzelm parents: 
41708diff
changeset | 181 | fun add_task (gid, task) groups = | 
| 
2e427f340ad1
more scalable collections of tasks, notably for totality of known group members;
 wenzelm parents: 
41708diff
changeset | 182 | Inttab.update (gid, Tasks.update (task, ()) (get_tasks groups gid)) groups; | 
| 
2e427f340ad1
more scalable collections of tasks, notably for totality of known group members;
 wenzelm parents: 
41708diff
changeset | 183 | |
| 
2e427f340ad1
more scalable collections of tasks, notably for totality of known group members;
 wenzelm parents: 
41708diff
changeset | 184 | fun del_task (gid, task) groups = | 
| 
2e427f340ad1
more scalable collections of tasks, notably for totality of known group members;
 wenzelm parents: 
41708diff
changeset | 185 | let val tasks = Tasks.delete_safe task (get_tasks groups gid) in | 
| 
2e427f340ad1
more scalable collections of tasks, notably for totality of known group members;
 wenzelm parents: 
41708diff
changeset | 186 | if Tasks.is_empty tasks then Inttab.delete_safe gid groups | 
| 
2e427f340ad1
more scalable collections of tasks, notably for totality of known group members;
 wenzelm parents: 
41708diff
changeset | 187 | else Inttab.update (gid, tasks) groups | 
| 
2e427f340ad1
more scalable collections of tasks, notably for totality of known group members;
 wenzelm parents: 
41708diff
changeset | 188 | end; | 
| 
2e427f340ad1
more scalable collections of tasks, notably for totality of known group members;
 wenzelm parents: 
41708diff
changeset | 189 | |
| 
2e427f340ad1
more scalable collections of tasks, notably for totality of known group members;
 wenzelm parents: 
41708diff
changeset | 190 | |
| 
2e427f340ad1
more scalable collections of tasks, notably for totality of known group members;
 wenzelm parents: 
41708diff
changeset | 191 | (* job dependency graph *) | 
| 28165 | 192 | |
| 193 | datatype job = | |
| 29365 | 194 | Job of (bool -> bool) list | | 
| 34277 
7325a5e3587f
added Future.promise/fulfill -- promised futures that are fulfilled by external means;
 wenzelm parents: 
32814diff
changeset | 195 | Running of Thread.thread | | 
| 37854 
047c96f41455
back to more strict dependencies, even for canceled groups (reverting parts of 02936e77a07c);
 wenzelm parents: 
37216diff
changeset | 196 | Passive of unit -> bool; | 
| 28165 | 197 | |
| 41683 
73dde8006820
maintain Task_Queue.group within Task_Queue.task;
 wenzelm parents: 
41682diff
changeset | 198 | type jobs = job Task_Graph.T; | 
| 28176 
01b21886e7f0
job: explicit 'ok' status -- false for canceled jobs;
 wenzelm parents: 
28171diff
changeset | 199 | |
| 41683 
73dde8006820
maintain Task_Queue.group within Task_Queue.task;
 wenzelm parents: 
41682diff
changeset | 200 | fun get_job (jobs: jobs) task = Task_Graph.get_node jobs task; | 
| 
73dde8006820
maintain Task_Queue.group within Task_Queue.task;
 wenzelm parents: 
41682diff
changeset | 201 | fun set_job task job (jobs: jobs) = Task_Graph.map_node task (K job) jobs; | 
| 28202 
23cb9a974630
added focus, which indicates a particular collection of high-priority tasks;
 wenzelm parents: 
28196diff
changeset | 202 | |
| 32250 | 203 | fun add_job task dep (jobs: jobs) = | 
| 204 | Task_Graph.add_edge (dep, task) jobs handle Task_Graph.UNDEF _ => jobs; | |
| 205 | ||
| 28176 
01b21886e7f0
job: explicit 'ok' status -- false for canceled jobs;
 wenzelm parents: 
28171diff
changeset | 206 | |
| 41681 
b5d7b15166bf
Future.join_results: discontinued post-hoc recording of dynamic dependencies;
 wenzelm parents: 
41680diff
changeset | 207 | (* queue *) | 
| 28176 
01b21886e7f0
job: explicit 'ok' status -- false for canceled jobs;
 wenzelm parents: 
28171diff
changeset | 208 | |
| 41709 
2e427f340ad1
more scalable collections of tasks, notably for totality of known group members;
 wenzelm parents: 
41708diff
changeset | 209 | datatype queue = Queue of {groups: groups, jobs: jobs};
 | 
| 28165 | 210 | |
| 34280 
16bf3e9786a3
eliminated cache, which complicates the code without making a real difference (NB: deque_towards often disrupts caching, and daisy-chaining of workers already reduces queue overhead);
 wenzelm parents: 
34279diff
changeset | 211 | fun make_queue groups jobs = Queue {groups = groups, jobs = jobs};
 | 
| 
16bf3e9786a3
eliminated cache, which complicates the code without making a real difference (NB: deque_towards often disrupts caching, and daisy-chaining of workers already reduces queue overhead);
 wenzelm parents: 
34279diff
changeset | 212 | val empty = make_queue Inttab.empty Task_Graph.empty; | 
| 34277 
7325a5e3587f
added Future.promise/fulfill -- promised futures that are fulfilled by external means;
 wenzelm parents: 
32814diff
changeset | 213 | |
| 47404 
e6e5750f1311
simplified Future.cancel/cancel_group (again) -- running threads only;
 wenzelm parents: 
45642diff
changeset | 214 | fun group_tasks (Queue {groups, ...}) group = Tasks.keys (get_tasks groups (group_id group));
 | 
| 41708 | 215 | fun known_task (Queue {jobs, ...}) task = can (Task_Graph.get_entry jobs) task;
 | 
| 216 | ||
| 37854 
047c96f41455
back to more strict dependencies, even for canceled groups (reverting parts of 02936e77a07c);
 wenzelm parents: 
37216diff
changeset | 217 | |
| 
047c96f41455
back to more strict dependencies, even for canceled groups (reverting parts of 02936e77a07c);
 wenzelm parents: 
37216diff
changeset | 218 | (* job status *) | 
| 
047c96f41455
back to more strict dependencies, even for canceled groups (reverting parts of 02936e77a07c);
 wenzelm parents: 
37216diff
changeset | 219 | |
| 44338 
700008399ee5
refined Graph implementation: more abstract/scalable Graph.Keys instead of plain lists -- order of adjacency is now standardized wrt. Key.ord;
 wenzelm parents: 
44299diff
changeset | 220 | fun ready_job task (Job list, (deps, _)) = | 
| 
700008399ee5
refined Graph implementation: more abstract/scalable Graph.Keys instead of plain lists -- order of adjacency is now standardized wrt. Key.ord;
 wenzelm parents: 
44299diff
changeset | 221 | if Task_Graph.Keys.is_empty deps then SOME (task, rev list) else NONE | 
| 
700008399ee5
refined Graph implementation: more abstract/scalable Graph.Keys instead of plain lists -- order of adjacency is now standardized wrt. Key.ord;
 wenzelm parents: 
44299diff
changeset | 222 | | ready_job task (Passive abort, (deps, _)) = | 
| 
700008399ee5
refined Graph implementation: more abstract/scalable Graph.Keys instead of plain lists -- order of adjacency is now standardized wrt. Key.ord;
 wenzelm parents: 
44299diff
changeset | 223 | if Task_Graph.Keys.is_empty deps andalso is_canceled (group_of_task task) | 
| 
700008399ee5
refined Graph implementation: more abstract/scalable Graph.Keys instead of plain lists -- order of adjacency is now standardized wrt. Key.ord;
 wenzelm parents: 
44299diff
changeset | 224 | then SOME (task, [fn _ => abort ()]) | 
| 37854 
047c96f41455
back to more strict dependencies, even for canceled groups (reverting parts of 02936e77a07c);
 wenzelm parents: 
37216diff
changeset | 225 | else NONE | 
| 
047c96f41455
back to more strict dependencies, even for canceled groups (reverting parts of 02936e77a07c);
 wenzelm parents: 
37216diff
changeset | 226 | | ready_job _ _ = NONE; | 
| 
047c96f41455
back to more strict dependencies, even for canceled groups (reverting parts of 02936e77a07c);
 wenzelm parents: 
37216diff
changeset | 227 | |
| 41683 
73dde8006820
maintain Task_Queue.group within Task_Queue.task;
 wenzelm parents: 
41682diff
changeset | 228 | fun active_job (_, (Job _, _)) = SOME () | 
| 
73dde8006820
maintain Task_Queue.group within Task_Queue.task;
 wenzelm parents: 
41682diff
changeset | 229 | | active_job (_, (Running _, _)) = SOME () | 
| 
73dde8006820
maintain Task_Queue.group within Task_Queue.task;
 wenzelm parents: 
41682diff
changeset | 230 | | active_job (task, (Passive _, _)) = | 
| 
73dde8006820
maintain Task_Queue.group within Task_Queue.task;
 wenzelm parents: 
41682diff
changeset | 231 | if is_canceled (group_of_task task) then SOME () else NONE; | 
| 37854 
047c96f41455
back to more strict dependencies, even for canceled groups (reverting parts of 02936e77a07c);
 wenzelm parents: 
37216diff
changeset | 232 | |
| 41683 
73dde8006820
maintain Task_Queue.group within Task_Queue.task;
 wenzelm parents: 
41682diff
changeset | 233 | fun all_passive (Queue {jobs, ...}) = is_none (Task_Graph.get_first active_job jobs);
 | 
| 28165 | 234 | |
| 235 | ||
| 32101 
e25107ff4f56
support for nested groups -- cancellation is propagated to peers and subgroups;
 wenzelm parents: 
32099diff
changeset | 236 | (* queue status *) | 
| 32052 | 237 | |
| 238 | fun status (Queue {jobs, ...}) =
 | |
| 239 | let | |
| 34277 
7325a5e3587f
added Future.promise/fulfill -- promised futures that are fulfilled by external means;
 wenzelm parents: 
32814diff
changeset | 240 | val (x, y, z, w) = | 
| 41683 
73dde8006820
maintain Task_Queue.group within Task_Queue.task;
 wenzelm parents: 
41682diff
changeset | 241 | Task_Graph.fold (fn (_, (job, (deps, _))) => fn (x, y, z, w) => | 
| 32052 | 242 | (case job of | 
| 44338 
700008399ee5
refined Graph implementation: more abstract/scalable Graph.Keys instead of plain lists -- order of adjacency is now standardized wrt. Key.ord;
 wenzelm parents: 
44299diff
changeset | 243 | Job _ => if Task_Graph.Keys.is_empty deps then (x + 1, y, z, w) else (x, y + 1, z, w) | 
| 34277 
7325a5e3587f
added Future.promise/fulfill -- promised futures that are fulfilled by external means;
 wenzelm parents: 
32814diff
changeset | 244 | | Running _ => (x, y, z + 1, w) | 
| 37854 
047c96f41455
back to more strict dependencies, even for canceled groups (reverting parts of 02936e77a07c);
 wenzelm parents: 
37216diff
changeset | 245 | | Passive _ => (x, y, z, w + 1))) | 
| 34277 
7325a5e3587f
added Future.promise/fulfill -- promised futures that are fulfilled by external means;
 wenzelm parents: 
32814diff
changeset | 246 | jobs (0, 0, 0, 0); | 
| 
7325a5e3587f
added Future.promise/fulfill -- promised futures that are fulfilled by external means;
 wenzelm parents: 
32814diff
changeset | 247 |   in {ready = x, pending = y, running = z, passive = w} end;
 | 
| 32052 | 248 | |
| 249 | ||
| 41681 
b5d7b15166bf
Future.join_results: discontinued post-hoc recording of dynamic dependencies;
 wenzelm parents: 
41680diff
changeset | 250 | |
| 
b5d7b15166bf
Future.join_results: discontinued post-hoc recording of dynamic dependencies;
 wenzelm parents: 
41680diff
changeset | 251 | (** task queue operations **) | 
| 
b5d7b15166bf
Future.join_results: discontinued post-hoc recording of dynamic dependencies;
 wenzelm parents: 
41680diff
changeset | 252 | |
| 32101 
e25107ff4f56
support for nested groups -- cancellation is propagated to peers and subgroups;
 wenzelm parents: 
32099diff
changeset | 253 | (* cancel -- peers and sub-groups *) | 
| 
e25107ff4f56
support for nested groups -- cancellation is propagated to peers and subgroups;
 wenzelm parents: 
32099diff
changeset | 254 | |
| 34280 
16bf3e9786a3
eliminated cache, which complicates the code without making a real difference (NB: deque_towards often disrupts caching, and daisy-chaining of workers already reduces queue overhead);
 wenzelm parents: 
34279diff
changeset | 255 | fun cancel (Queue {groups, jobs}) group =
 | 
| 32101 
e25107ff4f56
support for nested groups -- cancellation is propagated to peers and subgroups;
 wenzelm parents: 
32099diff
changeset | 256 | let | 
| 
e25107ff4f56
support for nested groups -- cancellation is propagated to peers and subgroups;
 wenzelm parents: 
32099diff
changeset | 257 | val _ = cancel_group group Exn.Interrupt; | 
| 44341 
a93d25fb14fc
purely functional task_queue.ML -- moved actual interrupt_unsynchronized to future.ML;
 wenzelm parents: 
44340diff
changeset | 258 | val running = | 
| 47404 
e6e5750f1311
simplified Future.cancel/cancel_group (again) -- running threads only;
 wenzelm parents: 
45642diff
changeset | 259 | Tasks.fold (fn (task, _) => | 
| 
e6e5750f1311
simplified Future.cancel/cancel_group (again) -- running threads only;
 wenzelm parents: 
45642diff
changeset | 260 | (case get_job jobs task of Running thread => insert Thread.equal thread | _ => I)) | 
| 
e6e5750f1311
simplified Future.cancel/cancel_group (again) -- running threads only;
 wenzelm parents: 
45642diff
changeset | 261 | (get_tasks groups (group_id group)) []; | 
| 44341 
a93d25fb14fc
purely functional task_queue.ML -- moved actual interrupt_unsynchronized to future.ML;
 wenzelm parents: 
44340diff
changeset | 262 | in running end; | 
| 32101 
e25107ff4f56
support for nested groups -- cancellation is propagated to peers and subgroups;
 wenzelm parents: 
32099diff
changeset | 263 | |
| 37854 
047c96f41455
back to more strict dependencies, even for canceled groups (reverting parts of 02936e77a07c);
 wenzelm parents: 
37216diff
changeset | 264 | fun cancel_all (Queue {jobs, ...}) =
 | 
| 32101 
e25107ff4f56
support for nested groups -- cancellation is propagated to peers and subgroups;
 wenzelm parents: 
32099diff
changeset | 265 | let | 
| 41683 
73dde8006820
maintain Task_Queue.group within Task_Queue.task;
 wenzelm parents: 
41682diff
changeset | 266 | fun cancel_job (task, (job, _)) (groups, running) = | 
| 
73dde8006820
maintain Task_Queue.group within Task_Queue.task;
 wenzelm parents: 
41682diff
changeset | 267 | let | 
| 
73dde8006820
maintain Task_Queue.group within Task_Queue.task;
 wenzelm parents: 
41682diff
changeset | 268 | val group = group_of_task task; | 
| 
73dde8006820
maintain Task_Queue.group within Task_Queue.task;
 wenzelm parents: 
41682diff
changeset | 269 | val _ = cancel_group group Exn.Interrupt; | 
| 
73dde8006820
maintain Task_Queue.group within Task_Queue.task;
 wenzelm parents: 
41682diff
changeset | 270 | in | 
| 34277 
7325a5e3587f
added Future.promise/fulfill -- promised futures that are fulfilled by external means;
 wenzelm parents: 
32814diff
changeset | 271 | (case job of | 
| 
7325a5e3587f
added Future.promise/fulfill -- promised futures that are fulfilled by external means;
 wenzelm parents: 
32814diff
changeset | 272 | Running t => (insert eq_group group groups, insert Thread.equal t running) | 
| 41683 
73dde8006820
maintain Task_Queue.group within Task_Queue.task;
 wenzelm parents: 
41682diff
changeset | 273 | | _ => (groups, running)) | 
| 
73dde8006820
maintain Task_Queue.group within Task_Queue.task;
 wenzelm parents: 
41682diff
changeset | 274 | end; | 
| 44341 
a93d25fb14fc
purely functional task_queue.ML -- moved actual interrupt_unsynchronized to future.ML;
 wenzelm parents: 
44340diff
changeset | 275 | val running = Task_Graph.fold cancel_job jobs ([], []); | 
| 
a93d25fb14fc
purely functional task_queue.ML -- moved actual interrupt_unsynchronized to future.ML;
 wenzelm parents: 
44340diff
changeset | 276 | in running end; | 
| 32101 
e25107ff4f56
support for nested groups -- cancellation is propagated to peers and subgroups;
 wenzelm parents: 
32099diff
changeset | 277 | |
| 
e25107ff4f56
support for nested groups -- cancellation is propagated to peers and subgroups;
 wenzelm parents: 
32099diff
changeset | 278 | |
| 41681 
b5d7b15166bf
Future.join_results: discontinued post-hoc recording of dynamic dependencies;
 wenzelm parents: 
41680diff
changeset | 279 | (* finish *) | 
| 
b5d7b15166bf
Future.join_results: discontinued post-hoc recording of dynamic dependencies;
 wenzelm parents: 
41680diff
changeset | 280 | |
| 
b5d7b15166bf
Future.join_results: discontinued post-hoc recording of dynamic dependencies;
 wenzelm parents: 
41680diff
changeset | 281 | fun finish task (Queue {groups, jobs}) =
 | 
| 
b5d7b15166bf
Future.join_results: discontinued post-hoc recording of dynamic dependencies;
 wenzelm parents: 
41680diff
changeset | 282 | let | 
| 41683 
73dde8006820
maintain Task_Queue.group within Task_Queue.task;
 wenzelm parents: 
41682diff
changeset | 283 | val group = group_of_task task; | 
| 43951 | 284 | val groups' = fold_groups (fn g => del_task (group_id g, task)) group groups; | 
| 41681 
b5d7b15166bf
Future.join_results: discontinued post-hoc recording of dynamic dependencies;
 wenzelm parents: 
41680diff
changeset | 285 | val jobs' = Task_Graph.del_node task jobs; | 
| 44338 
700008399ee5
refined Graph implementation: more abstract/scalable Graph.Keys instead of plain lists -- order of adjacency is now standardized wrt. Key.ord;
 wenzelm parents: 
44299diff
changeset | 286 | val maximal = Task_Graph.is_maximal jobs task; | 
| 41681 
b5d7b15166bf
Future.join_results: discontinued post-hoc recording of dynamic dependencies;
 wenzelm parents: 
41680diff
changeset | 287 | in (maximal, make_queue groups' jobs') end; | 
| 
b5d7b15166bf
Future.join_results: discontinued post-hoc recording of dynamic dependencies;
 wenzelm parents: 
41680diff
changeset | 288 | |
| 
b5d7b15166bf
Future.join_results: discontinued post-hoc recording of dynamic dependencies;
 wenzelm parents: 
41680diff
changeset | 289 | |
| 28185 
0f20cbce4935
simplified dequeue: provide Thread.self internally;
 wenzelm parents: 
28184diff
changeset | 290 | (* enqueue *) | 
| 28165 | 291 | |
| 37854 
047c96f41455
back to more strict dependencies, even for canceled groups (reverting parts of 02936e77a07c);
 wenzelm parents: 
37216diff
changeset | 292 | fun enqueue_passive group abort (Queue {groups, jobs}) =
 | 
| 34277 
7325a5e3587f
added Future.promise/fulfill -- promised futures that are fulfilled by external means;
 wenzelm parents: 
32814diff
changeset | 293 | let | 
| 41683 
73dde8006820
maintain Task_Queue.group within Task_Queue.task;
 wenzelm parents: 
41682diff
changeset | 294 | val task = new_task group "passive" NONE; | 
| 43951 | 295 | val groups' = fold_groups (fn g => add_task (group_id g, task)) group groups; | 
| 41683 
73dde8006820
maintain Task_Queue.group within Task_Queue.task;
 wenzelm parents: 
41682diff
changeset | 296 | val jobs' = jobs |> Task_Graph.new_node (task, Passive abort); | 
| 34280 
16bf3e9786a3
eliminated cache, which complicates the code without making a real difference (NB: deque_towards often disrupts caching, and daisy-chaining of workers already reduces queue overhead);
 wenzelm parents: 
34279diff
changeset | 297 | in (task, make_queue groups' jobs') end; | 
| 34277 
7325a5e3587f
added Future.promise/fulfill -- promised futures that are fulfilled by external means;
 wenzelm parents: 
32814diff
changeset | 298 | |
| 41673 | 299 | fun enqueue name group deps pri job (Queue {groups, jobs}) =
 | 
| 28165 | 300 | let | 
| 41683 
73dde8006820
maintain Task_Queue.group within Task_Queue.task;
 wenzelm parents: 
41682diff
changeset | 301 | val task = new_task group name (SOME pri); | 
| 43951 | 302 | val groups' = fold_groups (fn g => add_task (group_id g, task)) group groups; | 
| 28185 
0f20cbce4935
simplified dequeue: provide Thread.self internally;
 wenzelm parents: 
28184diff
changeset | 303 | val jobs' = jobs | 
| 41683 
73dde8006820
maintain Task_Queue.group within Task_Queue.task;
 wenzelm parents: 
41682diff
changeset | 304 | |> Task_Graph.new_node (task, Job [job]) | 
| 41684 
b828d4b53386
refined Task_Queue.dequeue_deps (more incremental);
 wenzelm parents: 
41683diff
changeset | 305 | |> fold (add_job task) deps; | 
| 41708 | 306 | in (task, make_queue groups' jobs') end; | 
| 28165 | 307 | |
| 34280 
16bf3e9786a3
eliminated cache, which complicates the code without making a real difference (NB: deque_towards often disrupts caching, and daisy-chaining of workers already reduces queue overhead);
 wenzelm parents: 
34279diff
changeset | 308 | fun extend task job (Queue {groups, jobs}) =
 | 
| 29365 | 309 | (case try (get_job jobs) task of | 
| 34280 
16bf3e9786a3
eliminated cache, which complicates the code without making a real difference (NB: deque_towards often disrupts caching, and daisy-chaining of workers already reduces queue overhead);
 wenzelm parents: 
34279diff
changeset | 310 | SOME (Job list) => SOME (make_queue groups (set_job task (Job (job :: list)) jobs)) | 
| 29365 | 311 | | _ => NONE); | 
| 312 | ||
| 28185 
0f20cbce4935
simplified dequeue: provide Thread.self internally;
 wenzelm parents: 
28184diff
changeset | 313 | |
| 
0f20cbce4935
simplified dequeue: provide Thread.self internally;
 wenzelm parents: 
28184diff
changeset | 314 | (* dequeue *) | 
| 
0f20cbce4935
simplified dequeue: provide Thread.self internally;
 wenzelm parents: 
28184diff
changeset | 315 | |
| 39243 
307e3d07d19f
Future.promise: more robust treatment of concurrent abort vs. fulfill (amending 047c96f41455);
 wenzelm parents: 
39232diff
changeset | 316 | fun dequeue_passive thread task (queue as Queue {groups, jobs}) =
 | 
| 
307e3d07d19f
Future.promise: more robust treatment of concurrent abort vs. fulfill (amending 047c96f41455);
 wenzelm parents: 
39232diff
changeset | 317 | (case try (get_job jobs) task of | 
| 
307e3d07d19f
Future.promise: more robust treatment of concurrent abort vs. fulfill (amending 047c96f41455);
 wenzelm parents: 
39232diff
changeset | 318 | SOME (Passive _) => | 
| 
307e3d07d19f
Future.promise: more robust treatment of concurrent abort vs. fulfill (amending 047c96f41455);
 wenzelm parents: 
39232diff
changeset | 319 | let val jobs' = set_job task (Running thread) jobs | 
| 47423 
8a179a0493e3
more robust Future.fulfill wrt. duplicate assignment and interrupt;
 wenzelm parents: 
47404diff
changeset | 320 | in (SOME true, make_queue groups jobs') end | 
| 
8a179a0493e3
more robust Future.fulfill wrt. duplicate assignment and interrupt;
 wenzelm parents: 
47404diff
changeset | 321 | | SOME _ => (SOME false, queue) | 
| 
8a179a0493e3
more robust Future.fulfill wrt. duplicate assignment and interrupt;
 wenzelm parents: 
47404diff
changeset | 322 | | NONE => (NONE, queue)); | 
| 39243 
307e3d07d19f
Future.promise: more robust treatment of concurrent abort vs. fulfill (amending 047c96f41455);
 wenzelm parents: 
39232diff
changeset | 323 | |
| 34280 
16bf3e9786a3
eliminated cache, which complicates the code without making a real difference (NB: deque_towards often disrupts caching, and daisy-chaining of workers already reduces queue overhead);
 wenzelm parents: 
34279diff
changeset | 324 | fun dequeue thread (queue as Queue {groups, jobs}) =
 | 
| 37854 
047c96f41455
back to more strict dependencies, even for canceled groups (reverting parts of 02936e77a07c);
 wenzelm parents: 
37216diff
changeset | 325 | (case Task_Graph.get_first (uncurry ready_job) jobs of | 
| 41683 
73dde8006820
maintain Task_Queue.group within Task_Queue.task;
 wenzelm parents: 
41682diff
changeset | 326 | SOME (result as (task, _)) => | 
| 37854 
047c96f41455
back to more strict dependencies, even for canceled groups (reverting parts of 02936e77a07c);
 wenzelm parents: 
37216diff
changeset | 327 | let val jobs' = set_job task (Running thread) jobs | 
| 39243 
307e3d07d19f
Future.promise: more robust treatment of concurrent abort vs. fulfill (amending 047c96f41455);
 wenzelm parents: 
39232diff
changeset | 328 | in (SOME result, make_queue groups jobs') end | 
| 
307e3d07d19f
Future.promise: more robust treatment of concurrent abort vs. fulfill (amending 047c96f41455);
 wenzelm parents: 
39232diff
changeset | 329 | | NONE => (NONE, queue)); | 
| 28202 
23cb9a974630
added focus, which indicates a particular collection of high-priority tasks;
 wenzelm parents: 
28196diff
changeset | 330 | |
| 28165 | 331 | |
| 41681 
b5d7b15166bf
Future.join_results: discontinued post-hoc recording of dynamic dependencies;
 wenzelm parents: 
41680diff
changeset | 332 | (* dequeue wrt. dynamic dependencies *) | 
| 
b5d7b15166bf
Future.join_results: discontinued post-hoc recording of dynamic dependencies;
 wenzelm parents: 
41680diff
changeset | 333 | |
| 41695 
afdbec23b92b
eliminated slightly odd abstract type Task_Queue.deps;
 wenzelm parents: 
41684diff
changeset | 334 | fun dequeue_deps thread deps (queue as Queue {groups, jobs}) =
 | 
| 32055 
6a46898aa805
recovered a version of dequeue_towards (cf. bb7b5a5942c7);
 wenzelm parents: 
32052diff
changeset | 335 | let | 
| 41684 
b828d4b53386
refined Task_Queue.dequeue_deps (more incremental);
 wenzelm parents: 
41683diff
changeset | 336 | fun ready [] rest = (NONE, rev rest) | 
| 
b828d4b53386
refined Task_Queue.dequeue_deps (more incremental);
 wenzelm parents: 
41683diff
changeset | 337 | | ready (task :: tasks) rest = | 
| 
b828d4b53386
refined Task_Queue.dequeue_deps (more incremental);
 wenzelm parents: 
41683diff
changeset | 338 | (case try (Task_Graph.get_entry jobs) task of | 
| 
b828d4b53386
refined Task_Queue.dequeue_deps (more incremental);
 wenzelm parents: 
41683diff
changeset | 339 | NONE => ready tasks rest | 
| 43792 
d5803c3d537a
Table.lookup_key and Graph.get_entry allow to retrieve the original key, which is not necessarily identical to the given one;
 wenzelm parents: 
41709diff
changeset | 340 | | SOME (_, entry) => | 
| 41684 
b828d4b53386
refined Task_Queue.dequeue_deps (more incremental);
 wenzelm parents: 
41683diff
changeset | 341 | (case ready_job task entry of | 
| 
b828d4b53386
refined Task_Queue.dequeue_deps (more incremental);
 wenzelm parents: 
41683diff
changeset | 342 | NONE => ready tasks (task :: rest) | 
| 45642 | 343 | | some => (some, fold cons rest tasks))); | 
| 41684 
b828d4b53386
refined Task_Queue.dequeue_deps (more incremental);
 wenzelm parents: 
41683diff
changeset | 344 | |
| 
b828d4b53386
refined Task_Queue.dequeue_deps (more incremental);
 wenzelm parents: 
41683diff
changeset | 345 | fun ready_dep _ [] = NONE | 
| 
b828d4b53386
refined Task_Queue.dequeue_deps (more incremental);
 wenzelm parents: 
41683diff
changeset | 346 | | ready_dep seen (task :: tasks) = | 
| 41709 
2e427f340ad1
more scalable collections of tasks, notably for totality of known group members;
 wenzelm parents: 
41708diff
changeset | 347 | if Tasks.defined seen task then ready_dep seen tasks | 
| 41684 
b828d4b53386
refined Task_Queue.dequeue_deps (more incremental);
 wenzelm parents: 
41683diff
changeset | 348 | else | 
| 43792 
d5803c3d537a
Table.lookup_key and Graph.get_entry allow to retrieve the original key, which is not necessarily identical to the given one;
 wenzelm parents: 
41709diff
changeset | 349 | let val entry as (_, (ds, _)) = #2 (Task_Graph.get_entry jobs task) in | 
| 41684 
b828d4b53386
refined Task_Queue.dequeue_deps (more incremental);
 wenzelm parents: 
41683diff
changeset | 350 | (case ready_job task entry of | 
| 44338 
700008399ee5
refined Graph implementation: more abstract/scalable Graph.Keys instead of plain lists -- order of adjacency is now standardized wrt. Key.ord;
 wenzelm parents: 
44299diff
changeset | 351 | NONE => ready_dep (Tasks.update (task, ()) seen) (Task_Graph.Keys.dest ds @ tasks) | 
| 41684 
b828d4b53386
refined Task_Queue.dequeue_deps (more incremental);
 wenzelm parents: 
41683diff
changeset | 352 | | some => some) | 
| 
b828d4b53386
refined Task_Queue.dequeue_deps (more incremental);
 wenzelm parents: 
41683diff
changeset | 353 | end; | 
| 
b828d4b53386
refined Task_Queue.dequeue_deps (more incremental);
 wenzelm parents: 
41683diff
changeset | 354 | |
| 
b828d4b53386
refined Task_Queue.dequeue_deps (more incremental);
 wenzelm parents: 
41683diff
changeset | 355 | fun result (res as (task, _)) deps' = | 
| 34280 
16bf3e9786a3
eliminated cache, which complicates the code without making a real difference (NB: deque_towards often disrupts caching, and daisy-chaining of workers already reduces queue overhead);
 wenzelm parents: 
34279diff
changeset | 356 | let val jobs' = set_job task (Running thread) jobs | 
| 41695 
afdbec23b92b
eliminated slightly odd abstract type Task_Queue.deps;
 wenzelm parents: 
41684diff
changeset | 357 | in ((SOME res, deps'), make_queue groups jobs') end; | 
| 32055 
6a46898aa805
recovered a version of dequeue_towards (cf. bb7b5a5942c7);
 wenzelm parents: 
32052diff
changeset | 358 | in | 
| 41684 
b828d4b53386
refined Task_Queue.dequeue_deps (more incremental);
 wenzelm parents: 
41683diff
changeset | 359 | (case ready deps [] of | 
| 
b828d4b53386
refined Task_Queue.dequeue_deps (more incremental);
 wenzelm parents: 
41683diff
changeset | 360 | (SOME res, deps') => result res deps' | 
| 
b828d4b53386
refined Task_Queue.dequeue_deps (more incremental);
 wenzelm parents: 
41683diff
changeset | 361 | | (NONE, deps') => | 
| 41709 
2e427f340ad1
more scalable collections of tasks, notably for totality of known group members;
 wenzelm parents: 
41708diff
changeset | 362 | (case ready_dep Tasks.empty deps' of | 
| 41684 
b828d4b53386
refined Task_Queue.dequeue_deps (more incremental);
 wenzelm parents: 
41683diff
changeset | 363 | SOME res => result res deps' | 
| 41695 
afdbec23b92b
eliminated slightly odd abstract type Task_Queue.deps;
 wenzelm parents: 
41684diff
changeset | 364 | | NONE => ((NONE, deps'), queue))) | 
| 32055 
6a46898aa805
recovered a version of dequeue_towards (cf. bb7b5a5942c7);
 wenzelm parents: 
32052diff
changeset | 365 | end; | 
| 
6a46898aa805
recovered a version of dequeue_towards (cf. bb7b5a5942c7);
 wenzelm parents: 
32052diff
changeset | 366 | |
| 41681 
b5d7b15166bf
Future.join_results: discontinued post-hoc recording of dynamic dependencies;
 wenzelm parents: 
41680diff
changeset | 367 | end; |