src/Pure/Concurrent/future.ML
author wenzelm
Mon, 08 Jul 2013 12:00:45 +0200
changeset 52558 271663ddf289
parent 51990 cc66addbba6d
child 52603 a44e9a1d5d8b
permissions -rw-r--r--
allow worker guest threads, which participate actively in future joins, but are outside thread accounting;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
28156
5205f7979b4f Functional threads as future values.
wenzelm
parents:
diff changeset
     1
(*  Title:      Pure/Concurrent/future.ML
5205f7979b4f Functional threads as future values.
wenzelm
parents:
diff changeset
     2
    Author:     Makarius
5205f7979b4f Functional threads as future values.
wenzelm
parents:
diff changeset
     3
44268
f6a11c1da821 tuned comments;
wenzelm
parents: 44249
diff changeset
     4
Value-oriented parallelism via futures and promises.  See also
32246
d4f7934e9555 misc tuning;
wenzelm
parents: 32230
diff changeset
     5
http://www4.in.tum.de/~wenzelm/papers/parallel-isabelle.pdf
37904
332cd0197d34 tuned comments;
wenzelm
parents: 37865
diff changeset
     6
http://www4.in.tum.de/~wenzelm/papers/parallel-ml.pdf
28201
7ae5cdb7b122 some general notes on future values;
wenzelm
parents: 28197
diff changeset
     7
7ae5cdb7b122 some general notes on future values;
wenzelm
parents: 28197
diff changeset
     8
Notes:
7ae5cdb7b122 some general notes on future values;
wenzelm
parents: 28197
diff changeset
     9
7ae5cdb7b122 some general notes on future values;
wenzelm
parents: 28197
diff changeset
    10
  * Futures are similar to delayed evaluation, i.e. delay/force is
44268
f6a11c1da821 tuned comments;
wenzelm
parents: 44249
diff changeset
    11
    generalized to fork/join.  The idea is to model parallel
f6a11c1da821 tuned comments;
wenzelm
parents: 44249
diff changeset
    12
    value-oriented computations (not communicating processes).
28201
7ae5cdb7b122 some general notes on future values;
wenzelm
parents: 28197
diff changeset
    13
7ae5cdb7b122 some general notes on future values;
wenzelm
parents: 28197
diff changeset
    14
  * Forked futures are evaluated spontaneously by a farm of worker
7ae5cdb7b122 some general notes on future values;
wenzelm
parents: 28197
diff changeset
    15
    threads in the background; join resynchronizes the computation and
7ae5cdb7b122 some general notes on future values;
wenzelm
parents: 28197
diff changeset
    16
    delivers results (values or exceptions).
7ae5cdb7b122 some general notes on future values;
wenzelm
parents: 28197
diff changeset
    17
7ae5cdb7b122 some general notes on future values;
wenzelm
parents: 28197
diff changeset
    18
  * The pool of worker threads is limited, usually in correlation with
7ae5cdb7b122 some general notes on future values;
wenzelm
parents: 28197
diff changeset
    19
    the number of physical cores on the machine.  Note that allocation
44268
f6a11c1da821 tuned comments;
wenzelm
parents: 44249
diff changeset
    20
    of runtime resources may be distorted either if workers yield CPU
f6a11c1da821 tuned comments;
wenzelm
parents: 44249
diff changeset
    21
    time (e.g. via system sleep or wait operations), or if non-worker
28201
7ae5cdb7b122 some general notes on future values;
wenzelm
parents: 28197
diff changeset
    22
    threads contend for significant runtime resources independently.
44268
f6a11c1da821 tuned comments;
wenzelm
parents: 44249
diff changeset
    23
    There is a limited number of replacement worker threads that get
f6a11c1da821 tuned comments;
wenzelm
parents: 44249
diff changeset
    24
    activated in certain explicit wait conditions.
34277
7325a5e3587f added Future.promise/fulfill -- promised futures that are fulfilled by external means;
wenzelm
parents: 33416
diff changeset
    25
44268
f6a11c1da821 tuned comments;
wenzelm
parents: 44249
diff changeset
    26
  * Future tasks are organized in groups, which are block-structured.
f6a11c1da821 tuned comments;
wenzelm
parents: 44249
diff changeset
    27
    When forking a new new task, the default is to open an individual
f6a11c1da821 tuned comments;
wenzelm
parents: 44249
diff changeset
    28
    subgroup, unless some common group is specified explicitly.
49908
8a23e8a6bc02 tuned comment;
wenzelm
parents: 49906
diff changeset
    29
    Failure of one group member causes peer and subgroup members to be
8a23e8a6bc02 tuned comment;
wenzelm
parents: 49906
diff changeset
    30
    interrupted eventually.  Interrupted tasks that lack regular
8a23e8a6bc02 tuned comment;
wenzelm
parents: 49906
diff changeset
    31
    result information, will pick up parallel exceptions from the
8a23e8a6bc02 tuned comment;
wenzelm
parents: 49906
diff changeset
    32
    cumulative group context (as Par_Exn).
44268
f6a11c1da821 tuned comments;
wenzelm
parents: 44249
diff changeset
    33
44299
061599cb6eb0 refined Future.cancel: explicit future allows to join actual cancellation;
wenzelm
parents: 44298
diff changeset
    34
  * Future task groups may be canceled: present and future group
061599cb6eb0 refined Future.cancel: explicit future allows to join actual cancellation;
wenzelm
parents: 44298
diff changeset
    35
    members will be interrupted eventually.
061599cb6eb0 refined Future.cancel: explicit future allows to join actual cancellation;
wenzelm
parents: 44298
diff changeset
    36
44268
f6a11c1da821 tuned comments;
wenzelm
parents: 44249
diff changeset
    37
  * Promised "passive" futures are fulfilled by external means.  There
f6a11c1da821 tuned comments;
wenzelm
parents: 44249
diff changeset
    38
    is no associated evaluation task, but other futures can depend on
f6a11c1da821 tuned comments;
wenzelm
parents: 44249
diff changeset
    39
    them via regular join operations.
28156
5205f7979b4f Functional threads as future values.
wenzelm
parents:
diff changeset
    40
*)
5205f7979b4f Functional threads as future values.
wenzelm
parents:
diff changeset
    41
5205f7979b4f Functional threads as future values.
wenzelm
parents:
diff changeset
    42
signature FUTURE =
5205f7979b4f Functional threads as future values.
wenzelm
parents:
diff changeset
    43
sig
44300
349cc426d929 tuned signature -- treat structure Task_Queue as private to implementation;
wenzelm
parents: 44299
diff changeset
    44
  type task = Task_Queue.task
349cc426d929 tuned signature -- treat structure Task_Queue as private to implementation;
wenzelm
parents: 44299
diff changeset
    45
  type group = Task_Queue.group
349cc426d929 tuned signature -- treat structure Task_Queue as private to implementation;
wenzelm
parents: 44299
diff changeset
    46
  val new_group: group option -> group
349cc426d929 tuned signature -- treat structure Task_Queue as private to implementation;
wenzelm
parents: 44299
diff changeset
    47
  val worker_task: unit -> task option
349cc426d929 tuned signature -- treat structure Task_Queue as private to implementation;
wenzelm
parents: 44299
diff changeset
    48
  val worker_group: unit -> group option
349cc426d929 tuned signature -- treat structure Task_Queue as private to implementation;
wenzelm
parents: 44299
diff changeset
    49
  val worker_subgroup: unit -> group
52558
271663ddf289 allow worker guest threads, which participate actively in future joins, but are outside thread accounting;
wenzelm
parents: 51990
diff changeset
    50
  val worker_guest: string -> group -> ('a -> 'b) -> 'a -> 'b
28972
cb8a2c3e188f renamed type Future.T to future;
wenzelm
parents: 28647
diff changeset
    51
  type 'a future
44300
349cc426d929 tuned signature -- treat structure Task_Queue as private to implementation;
wenzelm
parents: 44299
diff changeset
    52
  val task_of: 'a future -> task
28972
cb8a2c3e188f renamed type Future.T to future;
wenzelm
parents: 28647
diff changeset
    53
  val peek: 'a future -> 'a Exn.result option
cb8a2c3e188f renamed type Future.T to future;
wenzelm
parents: 28647
diff changeset
    54
  val is_finished: 'a future -> bool
50280
0eb9b5d09f31 more uniform ML statistics;
wenzelm
parents: 50255
diff changeset
    55
  val ML_statistics: bool Unsynchronized.ref
50974
55f8bd61b029 added "tasks_proof" statistics, via slighly odd global reference Future.forked_proofs (NB: Future.report_status is intertwined with scheduler thread);
wenzelm
parents: 50931
diff changeset
    56
  val forked_proofs: int Unsynchronized.ref
44301
65f60d9ac4bf tuned signature (again);
wenzelm
parents: 44300
diff changeset
    57
  val interruptible_task: ('a -> 'b) -> 'a -> 'b
47404
e6e5750f1311 simplified Future.cancel/cancel_group (again) -- running threads only;
wenzelm
parents: 45666
diff changeset
    58
  val cancel_group: group -> unit
e6e5750f1311 simplified Future.cancel/cancel_group (again) -- running threads only;
wenzelm
parents: 45666
diff changeset
    59
  val cancel: 'a future -> unit
50914
fe4714886d92 identify future results more carefully, to avoid odd duplication of error messages, notably from forked goals;
wenzelm
parents: 50911
diff changeset
    60
  val error_msg: Position.T -> (serial * string) * string option -> unit
fe4714886d92 identify future results more carefully, to avoid odd duplication of error messages, notably from forked goals;
wenzelm
parents: 50911
diff changeset
    61
  val identify_result: Position.T -> 'a Exn.result -> 'a Exn.result
44427
c4a86d72a5cc tuned signature;
wenzelm
parents: 44387
diff changeset
    62
  type params = {name: string, group: group option, deps: task list, pri: int, interrupts: bool}
c4a86d72a5cc tuned signature;
wenzelm
parents: 44387
diff changeset
    63
  val default_params: params
c4a86d72a5cc tuned signature;
wenzelm
parents: 44387
diff changeset
    64
  val forks: params -> (unit -> 'a) list -> 'a future list
32724
aaeeb0ba2035 added fork_deps_pri;
wenzelm
parents: 32644
diff changeset
    65
  val fork: (unit -> 'a) -> 'a future
28972
cb8a2c3e188f renamed type Future.T to future;
wenzelm
parents: 28647
diff changeset
    66
  val join_results: 'a future list -> 'a Exn.result list
cb8a2c3e188f renamed type Future.T to future;
wenzelm
parents: 28647
diff changeset
    67
  val join_result: 'a future -> 'a Exn.result
44330
b28e091f683a added Future.joins convenience;
wenzelm
parents: 44301
diff changeset
    68
  val joins: 'a future list -> 'a list
28972
cb8a2c3e188f renamed type Future.T to future;
wenzelm
parents: 28647
diff changeset
    69
  val join: 'a future -> 'a
44294
a0ddd5760444 clarified Future.cond_forks: more uniform handling of exceptional situations;
wenzelm
parents: 44268
diff changeset
    70
  val value_result: 'a Exn.result -> 'a future
34277
7325a5e3587f added Future.promise/fulfill -- promised futures that are fulfilled by external means;
wenzelm
parents: 33416
diff changeset
    71
  val value: 'a -> 'a future
44427
c4a86d72a5cc tuned signature;
wenzelm
parents: 44387
diff changeset
    72
  val cond_forks: params -> (unit -> 'a) list -> 'a future list
28972
cb8a2c3e188f renamed type Future.T to future;
wenzelm
parents: 28647
diff changeset
    73
  val map: ('a -> 'b) -> 'a future -> 'b future
44300
349cc426d929 tuned signature -- treat structure Task_Queue as private to implementation;
wenzelm
parents: 44299
diff changeset
    74
  val promise_group: group -> (unit -> unit) -> 'a future
44298
b8f8488704e2 Future.promise: explicit abort operation (like uninterruptible future job);
wenzelm
parents: 44295
diff changeset
    75
  val promise: (unit -> unit) -> 'a future
34277
7325a5e3587f added Future.promise/fulfill -- promised futures that are fulfilled by external means;
wenzelm
parents: 33416
diff changeset
    76
  val fulfill_result: 'a future -> 'a Exn.result -> unit
7325a5e3587f added Future.promise/fulfill -- promised futures that are fulfilled by external means;
wenzelm
parents: 33416
diff changeset
    77
  val fulfill: 'a future -> 'a -> unit
49906
06a3570b0f0a more official Future.terminate;
wenzelm
parents: 49894
diff changeset
    78
  val terminate: group -> unit
28203
88f18387f1c9 shutdown: global join-and-shutdown operation;
wenzelm
parents: 28202
diff changeset
    79
  val shutdown: unit -> unit
28156
5205f7979b4f Functional threads as future values.
wenzelm
parents:
diff changeset
    80
end;
5205f7979b4f Functional threads as future values.
wenzelm
parents:
diff changeset
    81
5205f7979b4f Functional threads as future values.
wenzelm
parents:
diff changeset
    82
structure Future: FUTURE =
5205f7979b4f Functional threads as future values.
wenzelm
parents:
diff changeset
    83
struct
5205f7979b4f Functional threads as future values.
wenzelm
parents:
diff changeset
    84
28177
8c0335bc9336 inherit group from running thread, or create a new one -- make it harder to re-use canceled groups;
wenzelm
parents: 28170
diff changeset
    85
(** future values **)
8c0335bc9336 inherit group from running thread, or create a new one -- make it harder to re-use canceled groups;
wenzelm
parents: 28170
diff changeset
    86
44300
349cc426d929 tuned signature -- treat structure Task_Queue as private to implementation;
wenzelm
parents: 44299
diff changeset
    87
type task = Task_Queue.task;
349cc426d929 tuned signature -- treat structure Task_Queue as private to implementation;
wenzelm
parents: 44299
diff changeset
    88
type group = Task_Queue.group;
349cc426d929 tuned signature -- treat structure Task_Queue as private to implementation;
wenzelm
parents: 44299
diff changeset
    89
val new_group = Task_Queue.new_group;
349cc426d929 tuned signature -- treat structure Task_Queue as private to implementation;
wenzelm
parents: 44299
diff changeset
    90
349cc426d929 tuned signature -- treat structure Task_Queue as private to implementation;
wenzelm
parents: 44299
diff changeset
    91
28167
27e2ca41b58c more interrupt operations;
wenzelm
parents: 28166
diff changeset
    92
(* identifiers *)
27e2ca41b58c more interrupt operations;
wenzelm
parents: 28166
diff changeset
    93
32058
c76fd93b3b99 more abstract Future.is_worker;
wenzelm
parents: 32055
diff changeset
    94
local
44300
349cc426d929 tuned signature -- treat structure Task_Queue as private to implementation;
wenzelm
parents: 44299
diff changeset
    95
  val tag = Universal.tag () : task option Universal.tag;
32058
c76fd93b3b99 more abstract Future.is_worker;
wenzelm
parents: 32055
diff changeset
    96
in
41683
73dde8006820 maintain Task_Queue.group within Task_Queue.task;
wenzelm
parents: 41681
diff changeset
    97
  fun worker_task () = the_default NONE (Thread.getLocal tag);
44110
058520fa03a8 tuned source structure;
wenzelm
parents: 43952
diff changeset
    98
  fun setmp_worker_task task f x = setmp_thread_data tag (worker_task ()) (SOME task) f x;
28167
27e2ca41b58c more interrupt operations;
wenzelm
parents: 28166
diff changeset
    99
end;
27e2ca41b58c more interrupt operations;
wenzelm
parents: 28166
diff changeset
   100
41683
73dde8006820 maintain Task_Queue.group within Task_Queue.task;
wenzelm
parents: 41681
diff changeset
   101
val worker_group = Option.map Task_Queue.group_of_task o worker_task;
44300
349cc426d929 tuned signature -- treat structure Task_Queue as private to implementation;
wenzelm
parents: 44299
diff changeset
   102
fun worker_subgroup () = new_group (worker_group ());
34277
7325a5e3587f added Future.promise/fulfill -- promised futures that are fulfilled by external means;
wenzelm
parents: 33416
diff changeset
   103
52558
271663ddf289 allow worker guest threads, which participate actively in future joins, but are outside thread accounting;
wenzelm
parents: 51990
diff changeset
   104
fun worker_guest name group f x =
271663ddf289 allow worker guest threads, which participate actively in future joins, but are outside thread accounting;
wenzelm
parents: 51990
diff changeset
   105
  if is_some (worker_task ()) then
271663ddf289 allow worker guest threads, which participate actively in future joins, but are outside thread accounting;
wenzelm
parents: 51990
diff changeset
   106
    raise Fail "Already running as worker thread"
271663ddf289 allow worker guest threads, which participate actively in future joins, but are outside thread accounting;
wenzelm
parents: 51990
diff changeset
   107
  else setmp_worker_task (Task_Queue.new_task group name NONE) f x;
271663ddf289 allow worker guest threads, which participate actively in future joins, but are outside thread accounting;
wenzelm
parents: 51990
diff changeset
   108
41679
79716cb61bfd refined task timing: joining vs. waiting;
wenzelm
parents: 41674
diff changeset
   109
fun worker_joining e =
79716cb61bfd refined task timing: joining vs. waiting;
wenzelm
parents: 41674
diff changeset
   110
  (case worker_task () of
79716cb61bfd refined task timing: joining vs. waiting;
wenzelm
parents: 41674
diff changeset
   111
    NONE => e ()
79716cb61bfd refined task timing: joining vs. waiting;
wenzelm
parents: 41674
diff changeset
   112
  | SOME task => Task_Queue.joining task e);
79716cb61bfd refined task timing: joining vs. waiting;
wenzelm
parents: 41674
diff changeset
   113
41680
a4c822915eaa more informative task timing: some dependency tracking;
wenzelm
parents: 41679
diff changeset
   114
fun worker_waiting deps e =
41670
74010c6af0a4 added basic task timing;
wenzelm
parents: 40448
diff changeset
   115
  (case worker_task () of
74010c6af0a4 added basic task timing;
wenzelm
parents: 40448
diff changeset
   116
    NONE => e ()
41680
a4c822915eaa more informative task timing: some dependency tracking;
wenzelm
parents: 41679
diff changeset
   117
  | SOME task => Task_Queue.waiting task deps e);
41670
74010c6af0a4 added basic task timing;
wenzelm
parents: 40448
diff changeset
   118
28167
27e2ca41b58c more interrupt operations;
wenzelm
parents: 28166
diff changeset
   119
27e2ca41b58c more interrupt operations;
wenzelm
parents: 28166
diff changeset
   120
(* datatype future *)
27e2ca41b58c more interrupt operations;
wenzelm
parents: 28166
diff changeset
   121
35016
c0f2e49bccfc result: Single_Assignment.var;
wenzelm
parents: 34281
diff changeset
   122
type 'a result = 'a Exn.result Single_Assignment.var;
c0f2e49bccfc result: Single_Assignment.var;
wenzelm
parents: 34281
diff changeset
   123
28972
cb8a2c3e188f renamed type Future.T to future;
wenzelm
parents: 28647
diff changeset
   124
datatype 'a future = Future of
34277
7325a5e3587f added Future.promise/fulfill -- promised futures that are fulfilled by external means;
wenzelm
parents: 33416
diff changeset
   125
 {promised: bool,
44300
349cc426d929 tuned signature -- treat structure Task_Queue as private to implementation;
wenzelm
parents: 44299
diff changeset
   126
  task: task,
35016
c0f2e49bccfc result: Single_Assignment.var;
wenzelm
parents: 34281
diff changeset
   127
  result: 'a result};
28167
27e2ca41b58c more interrupt operations;
wenzelm
parents: 28166
diff changeset
   128
27e2ca41b58c more interrupt operations;
wenzelm
parents: 28166
diff changeset
   129
fun task_of (Future {task, ...}) = task;
32253
d9def420c84e future result: Synchronized.var;
wenzelm
parents: 32249
diff changeset
   130
fun result_of (Future {result, ...}) = result;
28167
27e2ca41b58c more interrupt operations;
wenzelm
parents: 28166
diff changeset
   131
35016
c0f2e49bccfc result: Single_Assignment.var;
wenzelm
parents: 34281
diff changeset
   132
fun peek x = Single_Assignment.peek (result_of x);
28558
2a6297b4273c replaced str_of by general peek;
wenzelm
parents: 28548
diff changeset
   133
fun is_finished x = is_some (peek x);
28320
c6aef67f964d added is_finished;
wenzelm
parents: 28304
diff changeset
   134
28167
27e2ca41b58c more interrupt operations;
wenzelm
parents: 28166
diff changeset
   135
28177
8c0335bc9336 inherit group from running thread, or create a new one -- make it harder to re-use canceled groups;
wenzelm
parents: 28170
diff changeset
   136
8c0335bc9336 inherit group from running thread, or create a new one -- make it harder to re-use canceled groups;
wenzelm
parents: 28170
diff changeset
   137
(** scheduling **)
8c0335bc9336 inherit group from running thread, or create a new one -- make it harder to re-use canceled groups;
wenzelm
parents: 28170
diff changeset
   138
8c0335bc9336 inherit group from running thread, or create a new one -- make it harder to re-use canceled groups;
wenzelm
parents: 28170
diff changeset
   139
(* synchronization *)
28156
5205f7979b4f Functional threads as future values.
wenzelm
parents:
diff changeset
   140
32219
9a2566d1fdbd more specific conditions: scheduler_event, work_available, work_finished -- considereably reduces overhead with many threads;
wenzelm
parents: 32186
diff changeset
   141
val scheduler_event = ConditionVar.conditionVar ();
9a2566d1fdbd more specific conditions: scheduler_event, work_available, work_finished -- considereably reduces overhead with many threads;
wenzelm
parents: 32186
diff changeset
   142
val work_available = ConditionVar.conditionVar ();
9a2566d1fdbd more specific conditions: scheduler_event, work_available, work_finished -- considereably reduces overhead with many threads;
wenzelm
parents: 32186
diff changeset
   143
val work_finished = ConditionVar.conditionVar ();
9a2566d1fdbd more specific conditions: scheduler_event, work_available, work_finished -- considereably reduces overhead with many threads;
wenzelm
parents: 32186
diff changeset
   144
28156
5205f7979b4f Functional threads as future values.
wenzelm
parents:
diff changeset
   145
local
5205f7979b4f Functional threads as future values.
wenzelm
parents:
diff changeset
   146
  val lock = Mutex.mutex ();
5205f7979b4f Functional threads as future values.
wenzelm
parents:
diff changeset
   147
in
5205f7979b4f Functional threads as future values.
wenzelm
parents:
diff changeset
   148
37216
3165bc303f66 modernized some structure names, keeping a few legacy aliases;
wenzelm
parents: 37182
diff changeset
   149
fun SYNCHRONIZED name = Simple_Thread.synchronized name lock;
28156
5205f7979b4f Functional threads as future values.
wenzelm
parents:
diff changeset
   150
32219
9a2566d1fdbd more specific conditions: scheduler_event, work_available, work_finished -- considereably reduces overhead with many threads;
wenzelm
parents: 32186
diff changeset
   151
fun wait cond = (*requires SYNCHRONIZED*)
32295
400cc493d466 renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
wenzelm
parents: 32293
diff changeset
   152
  Multithreading.sync_wait NONE NONE cond lock;
28206
bcd48c6897d4 eliminated requests, use global state variables uniformly;
wenzelm
parents: 28203
diff changeset
   153
32295
400cc493d466 renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
wenzelm
parents: 32293
diff changeset
   154
fun wait_timeout timeout cond = (*requires SYNCHRONIZED*)
400cc493d466 renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
wenzelm
parents: 32293
diff changeset
   155
  Multithreading.sync_wait NONE (SOME (Time.+ (Time.now (), timeout))) cond lock;
28166
43087721a66e moved task, thread_data, group, queue to task_queue.ML;
wenzelm
parents: 28163
diff changeset
   156
32219
9a2566d1fdbd more specific conditions: scheduler_event, work_available, work_finished -- considereably reduces overhead with many threads;
wenzelm
parents: 32186
diff changeset
   157
fun signal cond = (*requires SYNCHRONIZED*)
9a2566d1fdbd more specific conditions: scheduler_event, work_available, work_finished -- considereably reduces overhead with many threads;
wenzelm
parents: 32186
diff changeset
   158
  ConditionVar.signal cond;
9a2566d1fdbd more specific conditions: scheduler_event, work_available, work_finished -- considereably reduces overhead with many threads;
wenzelm
parents: 32186
diff changeset
   159
9a2566d1fdbd more specific conditions: scheduler_event, work_available, work_finished -- considereably reduces overhead with many threads;
wenzelm
parents: 32186
diff changeset
   160
fun broadcast cond = (*requires SYNCHRONIZED*)
28166
43087721a66e moved task, thread_data, group, queue to task_queue.ML;
wenzelm
parents: 28163
diff changeset
   161
  ConditionVar.broadcast cond;
28156
5205f7979b4f Functional threads as future values.
wenzelm
parents:
diff changeset
   162
5205f7979b4f Functional threads as future values.
wenzelm
parents:
diff changeset
   163
end;
5205f7979b4f Functional threads as future values.
wenzelm
parents:
diff changeset
   164
5205f7979b4f Functional threads as future values.
wenzelm
parents:
diff changeset
   165
33410
e351f4c1f18c worker activity: distinguish between waiting (formerly active) and sleeping;
wenzelm
parents: 33409
diff changeset
   166
(* global state *)
e351f4c1f18c worker activity: distinguish between waiting (formerly active) and sleeping;
wenzelm
parents: 33409
diff changeset
   167
e351f4c1f18c worker activity: distinguish between waiting (formerly active) and sleeping;
wenzelm
parents: 33409
diff changeset
   168
val queue = Unsynchronized.ref Task_Queue.empty;
e351f4c1f18c worker activity: distinguish between waiting (formerly active) and sleeping;
wenzelm
parents: 33409
diff changeset
   169
val next = Unsynchronized.ref 0;
e351f4c1f18c worker activity: distinguish between waiting (formerly active) and sleeping;
wenzelm
parents: 33409
diff changeset
   170
val scheduler = Unsynchronized.ref (NONE: Thread.thread option);
44300
349cc426d929 tuned signature -- treat structure Task_Queue as private to implementation;
wenzelm
parents: 44299
diff changeset
   171
val canceled = Unsynchronized.ref ([]: group list);
33410
e351f4c1f18c worker activity: distinguish between waiting (formerly active) and sleeping;
wenzelm
parents: 33409
diff changeset
   172
val do_shutdown = Unsynchronized.ref false;
e351f4c1f18c worker activity: distinguish between waiting (formerly active) and sleeping;
wenzelm
parents: 33409
diff changeset
   173
val max_workers = Unsynchronized.ref 0;
e351f4c1f18c worker activity: distinguish between waiting (formerly active) and sleeping;
wenzelm
parents: 33409
diff changeset
   174
val max_active = Unsynchronized.ref 0;
33411
a07558eb5029 worker_next: treat wait for work_available as Sleeping, not Waiting;
wenzelm
parents: 33410
diff changeset
   175
val worker_trend = Unsynchronized.ref 0;
33410
e351f4c1f18c worker activity: distinguish between waiting (formerly active) and sleeping;
wenzelm
parents: 33409
diff changeset
   176
50280
0eb9b5d09f31 more uniform ML statistics;
wenzelm
parents: 50255
diff changeset
   177
val status_ticks = Unsynchronized.ref 0;
0eb9b5d09f31 more uniform ML statistics;
wenzelm
parents: 50255
diff changeset
   178
val last_round = Unsynchronized.ref Time.zeroTime;
0eb9b5d09f31 more uniform ML statistics;
wenzelm
parents: 50255
diff changeset
   179
val next_round = seconds 0.05;
0eb9b5d09f31 more uniform ML statistics;
wenzelm
parents: 50255
diff changeset
   180
33410
e351f4c1f18c worker activity: distinguish between waiting (formerly active) and sleeping;
wenzelm
parents: 33409
diff changeset
   181
datatype worker_state = Working | Waiting | Sleeping;
e351f4c1f18c worker activity: distinguish between waiting (formerly active) and sleeping;
wenzelm
parents: 33409
diff changeset
   182
val workers = Unsynchronized.ref ([]: (Thread.thread * worker_state Unsynchronized.ref) list);
e351f4c1f18c worker activity: distinguish between waiting (formerly active) and sleeping;
wenzelm
parents: 33409
diff changeset
   183
e351f4c1f18c worker activity: distinguish between waiting (formerly active) and sleeping;
wenzelm
parents: 33409
diff changeset
   184
fun count_workers state = (*requires SYNCHRONIZED*)
e351f4c1f18c worker activity: distinguish between waiting (formerly active) and sleeping;
wenzelm
parents: 33409
diff changeset
   185
  fold (fn (_, state_ref) => fn i => if ! state_ref = state then i + 1 else i) (! workers) 0;
e351f4c1f18c worker activity: distinguish between waiting (formerly active) and sleeping;
wenzelm
parents: 33409
diff changeset
   186
e351f4c1f18c worker activity: distinguish between waiting (formerly active) and sleeping;
wenzelm
parents: 33409
diff changeset
   187
50280
0eb9b5d09f31 more uniform ML statistics;
wenzelm
parents: 50255
diff changeset
   188
0eb9b5d09f31 more uniform ML statistics;
wenzelm
parents: 50255
diff changeset
   189
(* status *)
0eb9b5d09f31 more uniform ML statistics;
wenzelm
parents: 50255
diff changeset
   190
0eb9b5d09f31 more uniform ML statistics;
wenzelm
parents: 50255
diff changeset
   191
val ML_statistics = Unsynchronized.ref false;
50974
55f8bd61b029 added "tasks_proof" statistics, via slighly odd global reference Future.forked_proofs (NB: Future.report_status is intertwined with scheduler thread);
wenzelm
parents: 50931
diff changeset
   192
val forked_proofs = Unsynchronized.ref 0;
50280
0eb9b5d09f31 more uniform ML statistics;
wenzelm
parents: 50255
diff changeset
   193
0eb9b5d09f31 more uniform ML statistics;
wenzelm
parents: 50255
diff changeset
   194
fun report_status () = (*requires SYNCHRONIZED*)
0eb9b5d09f31 more uniform ML statistics;
wenzelm
parents: 50255
diff changeset
   195
  if ! ML_statistics then
0eb9b5d09f31 more uniform ML statistics;
wenzelm
parents: 50255
diff changeset
   196
    let
0eb9b5d09f31 more uniform ML statistics;
wenzelm
parents: 50255
diff changeset
   197
      val {ready, pending, running, passive} = Task_Queue.status (! queue);
0eb9b5d09f31 more uniform ML statistics;
wenzelm
parents: 50255
diff changeset
   198
      val total = length (! workers);
0eb9b5d09f31 more uniform ML statistics;
wenzelm
parents: 50255
diff changeset
   199
      val active = count_workers Working;
0eb9b5d09f31 more uniform ML statistics;
wenzelm
parents: 50255
diff changeset
   200
      val waiting = count_workers Waiting;
0eb9b5d09f31 more uniform ML statistics;
wenzelm
parents: 50255
diff changeset
   201
      val stats =
51990
cc66addbba6d more uniform Markup.print_real;
wenzelm
parents: 51661
diff changeset
   202
       [("now", Markup.print_real (Time.toReal (Time.now ()))),
50974
55f8bd61b029 added "tasks_proof" statistics, via slighly odd global reference Future.forked_proofs (NB: Future.report_status is intertwined with scheduler thread);
wenzelm
parents: 50931
diff changeset
   203
        ("tasks_proof", Markup.print_int (! forked_proofs)),
50280
0eb9b5d09f31 more uniform ML statistics;
wenzelm
parents: 50255
diff changeset
   204
        ("tasks_ready", Markup.print_int ready),
0eb9b5d09f31 more uniform ML statistics;
wenzelm
parents: 50255
diff changeset
   205
        ("tasks_pending", Markup.print_int pending),
0eb9b5d09f31 more uniform ML statistics;
wenzelm
parents: 50255
diff changeset
   206
        ("tasks_running", Markup.print_int running),
0eb9b5d09f31 more uniform ML statistics;
wenzelm
parents: 50255
diff changeset
   207
        ("tasks_passive", Markup.print_int passive),
0eb9b5d09f31 more uniform ML statistics;
wenzelm
parents: 50255
diff changeset
   208
        ("workers_total", Markup.print_int total),
0eb9b5d09f31 more uniform ML statistics;
wenzelm
parents: 50255
diff changeset
   209
        ("workers_active", Markup.print_int active),
0eb9b5d09f31 more uniform ML statistics;
wenzelm
parents: 50255
diff changeset
   210
        ("workers_waiting", Markup.print_int waiting)] @
0eb9b5d09f31 more uniform ML statistics;
wenzelm
parents: 50255
diff changeset
   211
        ML_Statistics.get ();
51661
92e58b76dbb1 clarified protocol_message undefinedness;
wenzelm
parents: 51637
diff changeset
   212
    in Output.try_protocol_message (Markup.ML_statistics :: stats) "" end
50280
0eb9b5d09f31 more uniform ML statistics;
wenzelm
parents: 50255
diff changeset
   213
  else ();
0eb9b5d09f31 more uniform ML statistics;
wenzelm
parents: 50255
diff changeset
   214
0eb9b5d09f31 more uniform ML statistics;
wenzelm
parents: 50255
diff changeset
   215
44110
058520fa03a8 tuned source structure;
wenzelm
parents: 43952
diff changeset
   216
(* cancellation primitives *)
32099
5382c93108db propagate exceptions within future groups;
wenzelm
parents: 32096
diff changeset
   217
34279
02936e77a07c tasks of canceled groups are considered "ready" -- enables to purge the queue from tasks depending on unfinished promises (also improves general reactivity);
wenzelm
parents: 34277
diff changeset
   218
fun cancel_now group = (*requires SYNCHRONIZED*)
44341
a93d25fb14fc purely functional task_queue.ML -- moved actual interrupt_unsynchronized to future.ML;
wenzelm
parents: 44330
diff changeset
   219
  let
47404
e6e5750f1311 simplified Future.cancel/cancel_group (again) -- running threads only;
wenzelm
parents: 45666
diff changeset
   220
    val running = Task_Queue.cancel (! queue) group;
49894
69bfd86cc711 more robust cancel_now: avoid shooting yourself in the foot;
wenzelm
parents: 49009
diff changeset
   221
    val _ = running |> List.app (fn thread =>
69bfd86cc711 more robust cancel_now: avoid shooting yourself in the foot;
wenzelm
parents: 49009
diff changeset
   222
      if Simple_Thread.is_self thread then ()
69bfd86cc711 more robust cancel_now: avoid shooting yourself in the foot;
wenzelm
parents: 49009
diff changeset
   223
      else Simple_Thread.interrupt_unsynchronized thread);
47404
e6e5750f1311 simplified Future.cancel/cancel_group (again) -- running threads only;
wenzelm
parents: 45666
diff changeset
   224
  in running end;
44341
a93d25fb14fc purely functional task_queue.ML -- moved actual interrupt_unsynchronized to future.ML;
wenzelm
parents: 44330
diff changeset
   225
a93d25fb14fc purely functional task_queue.ML -- moved actual interrupt_unsynchronized to future.ML;
wenzelm
parents: 44330
diff changeset
   226
fun cancel_all () = (*requires SYNCHRONIZED*)
a93d25fb14fc purely functional task_queue.ML -- moved actual interrupt_unsynchronized to future.ML;
wenzelm
parents: 44330
diff changeset
   227
  let
a93d25fb14fc purely functional task_queue.ML -- moved actual interrupt_unsynchronized to future.ML;
wenzelm
parents: 44330
diff changeset
   228
    val (groups, threads) = Task_Queue.cancel_all (! queue);
a93d25fb14fc purely functional task_queue.ML -- moved actual interrupt_unsynchronized to future.ML;
wenzelm
parents: 44330
diff changeset
   229
    val _ = List.app Simple_Thread.interrupt_unsynchronized threads;
a93d25fb14fc purely functional task_queue.ML -- moved actual interrupt_unsynchronized to future.ML;
wenzelm
parents: 44330
diff changeset
   230
  in groups end;
34279
02936e77a07c tasks of canceled groups are considered "ready" -- enables to purge the queue from tasks depending on unfinished promises (also improves general reactivity);
wenzelm
parents: 34277
diff changeset
   231
02936e77a07c tasks of canceled groups are considered "ready" -- enables to purge the queue from tasks depending on unfinished promises (also improves general reactivity);
wenzelm
parents: 34277
diff changeset
   232
fun cancel_later group = (*requires SYNCHRONIZED*)
32738
15bb09ca0378 explicit indication of Unsynchronized.ref;
wenzelm
parents: 32724
diff changeset
   233
 (Unsynchronized.change canceled (insert Task_Queue.eq_group group);
15bb09ca0378 explicit indication of Unsynchronized.ref;
wenzelm
parents: 32724
diff changeset
   234
  broadcast scheduler_event);
29341
6bb007a0f9f2 more reactive scheduler: reduced loop timeout, propagate broadcast interrupt via TaskQueue.cancel_all;
wenzelm
parents: 29119
diff changeset
   235
44301
65f60d9ac4bf tuned signature (again);
wenzelm
parents: 44300
diff changeset
   236
fun interruptible_task f x =
65f60d9ac4bf tuned signature (again);
wenzelm
parents: 44300
diff changeset
   237
  (if Multithreading.available then
65f60d9ac4bf tuned signature (again);
wenzelm
parents: 44300
diff changeset
   238
    Multithreading.with_attributes
65f60d9ac4bf tuned signature (again);
wenzelm
parents: 44300
diff changeset
   239
      (if is_some (worker_task ())
65f60d9ac4bf tuned signature (again);
wenzelm
parents: 44300
diff changeset
   240
       then Multithreading.private_interrupts
65f60d9ac4bf tuned signature (again);
wenzelm
parents: 44300
diff changeset
   241
       else Multithreading.public_interrupts)
65f60d9ac4bf tuned signature (again);
wenzelm
parents: 44300
diff changeset
   242
      (fn _ => f x)
65f60d9ac4bf tuned signature (again);
wenzelm
parents: 44300
diff changeset
   243
   else interruptible f x)
65f60d9ac4bf tuned signature (again);
wenzelm
parents: 44300
diff changeset
   244
  before Multithreading.interrupted ();
65f60d9ac4bf tuned signature (again);
wenzelm
parents: 44300
diff changeset
   245
65f60d9ac4bf tuned signature (again);
wenzelm
parents: 44300
diff changeset
   246
44110
058520fa03a8 tuned source structure;
wenzelm
parents: 43952
diff changeset
   247
(* worker threads *)
058520fa03a8 tuned source structure;
wenzelm
parents: 43952
diff changeset
   248
058520fa03a8 tuned source structure;
wenzelm
parents: 43952
diff changeset
   249
fun worker_exec (task, jobs) =
28167
27e2ca41b58c more interrupt operations;
wenzelm
parents: 28166
diff changeset
   250
  let
41683
73dde8006820 maintain Task_Queue.group within Task_Queue.task;
wenzelm
parents: 41681
diff changeset
   251
    val group = Task_Queue.group_of_task task;
32102
81d03a29980c added worker_group;
wenzelm
parents: 32099
diff changeset
   252
    val valid = not (Task_Queue.is_canceled group);
41670
74010c6af0a4 added basic task timing;
wenzelm
parents: 40448
diff changeset
   253
    val ok =
74010c6af0a4 added basic task timing;
wenzelm
parents: 40448
diff changeset
   254
      Task_Queue.running task (fn () =>
41683
73dde8006820 maintain Task_Queue.group within Task_Queue.task;
wenzelm
parents: 41681
diff changeset
   255
        setmp_worker_task task (fn () =>
41670
74010c6af0a4 added basic task timing;
wenzelm
parents: 40448
diff changeset
   256
          fold (fn job => fn ok => job valid andalso ok) jobs true) ());
50975
73ec6ad6700e more systematic task statistics;
wenzelm
parents: 50974
diff changeset
   257
    val _ =
73ec6ad6700e more systematic task statistics;
wenzelm
parents: 50974
diff changeset
   258
      if ! Multithreading.trace >= 2 then
51661
92e58b76dbb1 clarified protocol_message undefinedness;
wenzelm
parents: 51637
diff changeset
   259
        Output.try_protocol_message (Markup.task_statistics :: Task_Queue.task_statistics task) ""
50975
73ec6ad6700e more systematic task statistics;
wenzelm
parents: 50974
diff changeset
   260
      else ();
32246
d4f7934e9555 misc tuning;
wenzelm
parents: 32230
diff changeset
   261
    val _ = SYNCHRONIZED "finish" (fn () =>
32219
9a2566d1fdbd more specific conditions: scheduler_event, work_available, work_finished -- considereably reduces overhead with many threads;
wenzelm
parents: 32186
diff changeset
   262
      let
32738
15bb09ca0378 explicit indication of Unsynchronized.ref;
wenzelm
parents: 32724
diff changeset
   263
        val maximal = Unsynchronized.change_result queue (Task_Queue.finish task);
44295
e43f0ea90c9a more focused use of Multithreading.interrupted: retain interrupts within task group boundary, without loss of information;
wenzelm
parents: 44294
diff changeset
   264
        val test = Exn.capture Multithreading.interrupted ();
32219
9a2566d1fdbd more specific conditions: scheduler_event, work_available, work_finished -- considereably reduces overhead with many threads;
wenzelm
parents: 32186
diff changeset
   265
        val _ =
44295
e43f0ea90c9a more focused use of Multithreading.interrupted: retain interrupts within task group boundary, without loss of information;
wenzelm
parents: 44294
diff changeset
   266
          if ok andalso not (Exn.is_interrupt_exn test) then ()
44299
061599cb6eb0 refined Future.cancel: explicit future allows to join actual cancellation;
wenzelm
parents: 44298
diff changeset
   267
          else if null (cancel_now group) then ()
34279
02936e77a07c tasks of canceled groups are considered "ready" -- enables to purge the queue from tasks depending on unfinished promises (also improves general reactivity);
wenzelm
parents: 34277
diff changeset
   268
          else cancel_later group;
32219
9a2566d1fdbd more specific conditions: scheduler_event, work_available, work_finished -- considereably reduces overhead with many threads;
wenzelm
parents: 32186
diff changeset
   269
        val _ = broadcast work_finished;
33413
cb409680dda8 avoid broadcast work_available, use daisy-chained signal instead;
wenzelm
parents: 33411
diff changeset
   270
        val _ = if maximal then () else signal work_available;
32219
9a2566d1fdbd more specific conditions: scheduler_event, work_available, work_finished -- considereably reduces overhead with many threads;
wenzelm
parents: 32186
diff changeset
   271
      in () end);
28167
27e2ca41b58c more interrupt operations;
wenzelm
parents: 28166
diff changeset
   272
  in () end;
27e2ca41b58c more interrupt operations;
wenzelm
parents: 28166
diff changeset
   273
33410
e351f4c1f18c worker activity: distinguish between waiting (formerly active) and sleeping;
wenzelm
parents: 33409
diff changeset
   274
fun worker_wait active cond = (*requires SYNCHRONIZED*)
52558
271663ddf289 allow worker guest threads, which participate actively in future joins, but are outside thread accounting;
wenzelm
parents: 51990
diff changeset
   275
  (case AList.lookup Thread.equal (! workers) (Thread.self ()) of
271663ddf289 allow worker guest threads, which participate actively in future joins, but are outside thread accounting;
wenzelm
parents: 51990
diff changeset
   276
    SOME state =>
271663ddf289 allow worker guest threads, which participate actively in future joins, but are outside thread accounting;
wenzelm
parents: 51990
diff changeset
   277
     (state := (if active then Waiting else Sleeping);
271663ddf289 allow worker guest threads, which participate actively in future joins, but are outside thread accounting;
wenzelm
parents: 51990
diff changeset
   278
      wait cond;
271663ddf289 allow worker guest threads, which participate actively in future joins, but are outside thread accounting;
wenzelm
parents: 51990
diff changeset
   279
      state := Working)
271663ddf289 allow worker guest threads, which participate actively in future joins, but are outside thread accounting;
wenzelm
parents: 51990
diff changeset
   280
  | NONE => ignore (wait cond));
28162
55772e4e95e0 tuned check_cache;
wenzelm
parents: 28156
diff changeset
   281
33415
352fe8e9162d worker_next: plain signalling via work_available only, not scheduler_event;
wenzelm
parents: 33413
diff changeset
   282
fun worker_next () = (*requires SYNCHRONIZED*)
33406
1ddcb8472bd2 slightly leaner and more direct control of worker activity etc.;
wenzelm
parents: 33061
diff changeset
   283
  if length (! workers) > ! max_workers then
1ddcb8472bd2 slightly leaner and more direct control of worker activity etc.;
wenzelm
parents: 33061
diff changeset
   284
    (Unsynchronized.change workers (AList.delete Thread.equal (Thread.self ()));
33415
352fe8e9162d worker_next: plain signalling via work_available only, not scheduler_event;
wenzelm
parents: 33413
diff changeset
   285
     signal work_available;
28167
27e2ca41b58c more interrupt operations;
wenzelm
parents: 28166
diff changeset
   286
     NONE)
33410
e351f4c1f18c worker activity: distinguish between waiting (formerly active) and sleeping;
wenzelm
parents: 33409
diff changeset
   287
  else if count_workers Working > ! max_active then
33415
352fe8e9162d worker_next: plain signalling via work_available only, not scheduler_event;
wenzelm
parents: 33413
diff changeset
   288
    (worker_wait false work_available; worker_next ())
28166
43087721a66e moved task, thread_data, group, queue to task_queue.ML;
wenzelm
parents: 28163
diff changeset
   289
  else
32738
15bb09ca0378 explicit indication of Unsynchronized.ref;
wenzelm
parents: 32724
diff changeset
   290
    (case Unsynchronized.change_result queue (Task_Queue.dequeue (Thread.self ())) of
33415
352fe8e9162d worker_next: plain signalling via work_available only, not scheduler_event;
wenzelm
parents: 33413
diff changeset
   291
      NONE => (worker_wait false work_available; worker_next ())
33413
cb409680dda8 avoid broadcast work_available, use daisy-chained signal instead;
wenzelm
parents: 33411
diff changeset
   292
    | some => (signal work_available; some));
28156
5205f7979b4f Functional threads as future values.
wenzelm
parents:
diff changeset
   293
28167
27e2ca41b58c more interrupt operations;
wenzelm
parents: 28166
diff changeset
   294
fun worker_loop name =
33415
352fe8e9162d worker_next: plain signalling via work_available only, not scheduler_event;
wenzelm
parents: 33413
diff changeset
   295
  (case SYNCHRONIZED name (fn () => worker_next ()) of
29119
99941fd0cb0e renamed structure TaskQueue to Task_Queue;
wenzelm
parents: 29118
diff changeset
   296
    NONE => ()
44295
e43f0ea90c9a more focused use of Multithreading.interrupted: retain interrupts within task group boundary, without loss of information;
wenzelm
parents: 44294
diff changeset
   297
  | SOME work => (worker_exec work; worker_loop name));
28156
5205f7979b4f Functional threads as future values.
wenzelm
parents:
diff changeset
   298
33407
1427333220bc worker_next: ensure that work_available is passed on before sleeping (was occasionally lost when worker configuration changed, causing scheduler deadlock);
wenzelm
parents: 33406
diff changeset
   299
fun worker_start name = (*requires SYNCHRONIZED*)
37216
3165bc303f66 modernized some structure names, keeping a few legacy aliases;
wenzelm
parents: 37182
diff changeset
   300
  Unsynchronized.change workers (cons (Simple_Thread.fork false (fn () => worker_loop name),
33410
e351f4c1f18c worker activity: distinguish between waiting (formerly active) and sleeping;
wenzelm
parents: 33409
diff changeset
   301
    Unsynchronized.ref Working));
28156
5205f7979b4f Functional threads as future values.
wenzelm
parents:
diff changeset
   302
5205f7979b4f Functional threads as future values.
wenzelm
parents:
diff changeset
   303
5205f7979b4f Functional threads as future values.
wenzelm
parents:
diff changeset
   304
(* scheduler *)
5205f7979b4f Functional threads as future values.
wenzelm
parents:
diff changeset
   305
28206
bcd48c6897d4 eliminated requests, use global state variables uniformly;
wenzelm
parents: 28203
diff changeset
   306
fun scheduler_next () = (*requires SYNCHRONIZED*)
28156
5205f7979b4f Functional threads as future values.
wenzelm
parents:
diff changeset
   307
  let
33407
1427333220bc worker_next: ensure that work_available is passed on before sleeping (was occasionally lost when worker configuration changed, causing scheduler deadlock);
wenzelm
parents: 33406
diff changeset
   308
    val now = Time.now ();
1427333220bc worker_next: ensure that work_available is passed on before sleeping (was occasionally lost when worker configuration changed, causing scheduler deadlock);
wenzelm
parents: 33406
diff changeset
   309
    val tick = Time.<= (Time.+ (! last_round, next_round), now);
1427333220bc worker_next: ensure that work_available is passed on before sleeping (was occasionally lost when worker configuration changed, causing scheduler deadlock);
wenzelm
parents: 33406
diff changeset
   310
    val _ = if tick then last_round := now else ();
1427333220bc worker_next: ensure that work_available is passed on before sleeping (was occasionally lost when worker configuration changed, causing scheduler deadlock);
wenzelm
parents: 33406
diff changeset
   311
33415
352fe8e9162d worker_next: plain signalling via work_available only, not scheduler_event;
wenzelm
parents: 33413
diff changeset
   312
50280
0eb9b5d09f31 more uniform ML statistics;
wenzelm
parents: 50255
diff changeset
   313
    (* runtime status *)
33415
352fe8e9162d worker_next: plain signalling via work_available only, not scheduler_event;
wenzelm
parents: 33413
diff changeset
   314
32226
23511e4da055 tuned tracing;
wenzelm
parents: 32225
diff changeset
   315
    val _ =
51046
26a0984191b3 report status more frequently on demand;
wenzelm
parents: 50983
diff changeset
   316
      if tick then Unsynchronized.change status_ticks (fn i => i + 1) else ();
33407
1427333220bc worker_next: ensure that work_available is passed on before sleeping (was occasionally lost when worker configuration changed, causing scheduler deadlock);
wenzelm
parents: 33406
diff changeset
   317
    val _ =
51046
26a0984191b3 report status more frequently on demand;
wenzelm
parents: 50983
diff changeset
   318
      if tick andalso ! status_ticks mod (if ! Multithreading.trace >= 1 then 2 else 10) = 0
26a0984191b3 report status more frequently on demand;
wenzelm
parents: 50983
diff changeset
   319
      then report_status () else ();
32053
257eac3946e9 scheduler: tuned tracing (status);
wenzelm
parents: 31631
diff changeset
   320
28191
9e5f556409c6 future: allow explicit group;
wenzelm
parents: 28186
diff changeset
   321
    val _ =
32219
9a2566d1fdbd more specific conditions: scheduler_event, work_available, work_finished -- considereably reduces overhead with many threads;
wenzelm
parents: 32186
diff changeset
   322
      if forall (Thread.isActive o #1) (! workers) then ()
32095
ad4be204fdfe tuned tracing;
wenzelm
parents: 32058
diff changeset
   323
      else
33409
wenzelm
parents: 33408
diff changeset
   324
        let
37682
ad5489a6be48 tuned white space;
wenzelm
parents: 37216
diff changeset
   325
          val (alive, dead) = List.partition (Thread.isActive o #1) (! workers);
33409
wenzelm
parents: 33408
diff changeset
   326
          val _ = workers := alive;
wenzelm
parents: 33408
diff changeset
   327
        in
wenzelm
parents: 33408
diff changeset
   328
          Multithreading.tracing 0 (fn () =>
51279
f4a2fa9286e9 tuned messages;
wenzelm
parents: 51046
diff changeset
   329
            "SCHEDULER: disposed " ^ string_of_int (length dead) ^ " dead worker threads")
33409
wenzelm
parents: 33408
diff changeset
   330
        end;
28191
9e5f556409c6 future: allow explicit group;
wenzelm
parents: 28186
diff changeset
   331
33415
352fe8e9162d worker_next: plain signalling via work_available only, not scheduler_event;
wenzelm
parents: 33413
diff changeset
   332
352fe8e9162d worker_next: plain signalling via work_available only, not scheduler_event;
wenzelm
parents: 33413
diff changeset
   333
    (* worker pool adjustments *)
352fe8e9162d worker_next: plain signalling via work_available only, not scheduler_event;
wenzelm
parents: 33413
diff changeset
   334
352fe8e9162d worker_next: plain signalling via work_available only, not scheduler_event;
wenzelm
parents: 33413
diff changeset
   335
    val max_active0 = ! max_active;
352fe8e9162d worker_next: plain signalling via work_available only, not scheduler_event;
wenzelm
parents: 33413
diff changeset
   336
    val max_workers0 = ! max_workers;
352fe8e9162d worker_next: plain signalling via work_available only, not scheduler_event;
wenzelm
parents: 33413
diff changeset
   337
28206
bcd48c6897d4 eliminated requests, use global state variables uniformly;
wenzelm
parents: 28203
diff changeset
   338
    val m = if ! do_shutdown then 0 else Multithreading.max_threads_value ();
33406
1ddcb8472bd2 slightly leaner and more direct control of worker activity etc.;
wenzelm
parents: 33061
diff changeset
   339
    val _ = max_active := m;
1ddcb8472bd2 slightly leaner and more direct control of worker activity etc.;
wenzelm
parents: 33061
diff changeset
   340
33411
a07558eb5029 worker_next: treat wait for work_available as Sleeping, not Waiting;
wenzelm
parents: 33410
diff changeset
   341
    val mm =
a07558eb5029 worker_next: treat wait for work_available as Sleeping, not Waiting;
wenzelm
parents: 33410
diff changeset
   342
      if ! do_shutdown then 0
33413
cb409680dda8 avoid broadcast work_available, use daisy-chained signal instead;
wenzelm
parents: 33411
diff changeset
   343
      else Int.min (Int.max (count_workers Working + 2 * count_workers Waiting, m), 4 * m);
33411
a07558eb5029 worker_next: treat wait for work_available as Sleeping, not Waiting;
wenzelm
parents: 33410
diff changeset
   344
    val _ =
a07558eb5029 worker_next: treat wait for work_available as Sleeping, not Waiting;
wenzelm
parents: 33410
diff changeset
   345
      if tick andalso mm > ! max_workers then
a07558eb5029 worker_next: treat wait for work_available as Sleeping, not Waiting;
wenzelm
parents: 33410
diff changeset
   346
        Unsynchronized.change worker_trend (fn w => if w < 0 then 0 else w + 1)
a07558eb5029 worker_next: treat wait for work_available as Sleeping, not Waiting;
wenzelm
parents: 33410
diff changeset
   347
      else if tick andalso mm < ! max_workers then
a07558eb5029 worker_next: treat wait for work_available as Sleeping, not Waiting;
wenzelm
parents: 33410
diff changeset
   348
        Unsynchronized.change worker_trend (fn w => if w > 0 then 0 else w - 1)
a07558eb5029 worker_next: treat wait for work_available as Sleeping, not Waiting;
wenzelm
parents: 33410
diff changeset
   349
      else ();
a07558eb5029 worker_next: treat wait for work_available as Sleeping, not Waiting;
wenzelm
parents: 33410
diff changeset
   350
    val _ =
33415
352fe8e9162d worker_next: plain signalling via work_available only, not scheduler_event;
wenzelm
parents: 33413
diff changeset
   351
      if mm = 0 orelse ! worker_trend > 50 orelse ! worker_trend < ~50 then
352fe8e9162d worker_next: plain signalling via work_available only, not scheduler_event;
wenzelm
parents: 33413
diff changeset
   352
        max_workers := mm
44173
aaaa13e297dc immediate fork of initial workers -- avoid 5 ticks (250ms) for adaptive scheme (a07558eb5029);
wenzelm
parents: 44115
diff changeset
   353
      else if ! worker_trend > 5 andalso ! max_workers < 2 * m orelse ! max_workers = 0 then
33415
352fe8e9162d worker_next: plain signalling via work_available only, not scheduler_event;
wenzelm
parents: 33413
diff changeset
   354
        max_workers := Int.min (mm, 2 * m)
33411
a07558eb5029 worker_next: treat wait for work_available as Sleeping, not Waiting;
wenzelm
parents: 33410
diff changeset
   355
      else ();
33406
1ddcb8472bd2 slightly leaner and more direct control of worker activity etc.;
wenzelm
parents: 33061
diff changeset
   356
33407
1427333220bc worker_next: ensure that work_available is passed on before sleeping (was occasionally lost when worker configuration changed, causing scheduler deadlock);
wenzelm
parents: 33406
diff changeset
   357
    val missing = ! max_workers - length (! workers);
28203
88f18387f1c9 shutdown: global join-and-shutdown operation;
wenzelm
parents: 28202
diff changeset
   358
    val _ =
33407
1427333220bc worker_next: ensure that work_available is passed on before sleeping (was occasionally lost when worker configuration changed, causing scheduler deadlock);
wenzelm
parents: 33406
diff changeset
   359
      if missing > 0 then
33415
352fe8e9162d worker_next: plain signalling via work_available only, not scheduler_event;
wenzelm
parents: 33413
diff changeset
   360
        funpow missing (fn () =>
352fe8e9162d worker_next: plain signalling via work_available only, not scheduler_event;
wenzelm
parents: 33413
diff changeset
   361
          ignore (worker_start ("worker " ^ string_of_int (Unsynchronized.inc next)))) ()
28203
88f18387f1c9 shutdown: global join-and-shutdown operation;
wenzelm
parents: 28202
diff changeset
   362
      else ();
28206
bcd48c6897d4 eliminated requests, use global state variables uniformly;
wenzelm
parents: 28203
diff changeset
   363
33415
352fe8e9162d worker_next: plain signalling via work_available only, not scheduler_event;
wenzelm
parents: 33413
diff changeset
   364
    val _ =
352fe8e9162d worker_next: plain signalling via work_available only, not scheduler_event;
wenzelm
parents: 33413
diff changeset
   365
      if ! max_active = max_active0 andalso ! max_workers = max_workers0 then ()
352fe8e9162d worker_next: plain signalling via work_available only, not scheduler_event;
wenzelm
parents: 33413
diff changeset
   366
      else signal work_available;
352fe8e9162d worker_next: plain signalling via work_available only, not scheduler_event;
wenzelm
parents: 33413
diff changeset
   367
352fe8e9162d worker_next: plain signalling via work_available only, not scheduler_event;
wenzelm
parents: 33413
diff changeset
   368
352fe8e9162d worker_next: plain signalling via work_available only, not scheduler_event;
wenzelm
parents: 33413
diff changeset
   369
    (* canceled groups *)
352fe8e9162d worker_next: plain signalling via work_available only, not scheduler_event;
wenzelm
parents: 33413
diff changeset
   370
32225
d5d6f47fb018 cancel: improved reactivity due to more careful broadcasting;
wenzelm
parents: 32224
diff changeset
   371
    val _ =
d5d6f47fb018 cancel: improved reactivity due to more careful broadcasting;
wenzelm
parents: 32224
diff changeset
   372
      if null (! canceled) then ()
32293
e0b8da3fae4d tuned tracing;
wenzelm
parents: 32286
diff changeset
   373
      else
e0b8da3fae4d tuned tracing;
wenzelm
parents: 32286
diff changeset
   374
       (Multithreading.tracing 1 (fn () =>
e0b8da3fae4d tuned tracing;
wenzelm
parents: 32286
diff changeset
   375
          string_of_int (length (! canceled)) ^ " canceled groups");
44299
061599cb6eb0 refined Future.cancel: explicit future allows to join actual cancellation;
wenzelm
parents: 44298
diff changeset
   376
        Unsynchronized.change canceled (filter_out (null o cancel_now));
51281
c05f7e1dd602 signal work_available should be sufficient to initiate daisy-chained workers, and lead to separate broadcast work_finished eventually -- NB: broadcasting all worker threads tends to burn parallel CPU cycles;
wenzelm
parents: 51280
diff changeset
   377
        signal work_available);
28206
bcd48c6897d4 eliminated requests, use global state variables uniformly;
wenzelm
parents: 28203
diff changeset
   378
33415
352fe8e9162d worker_next: plain signalling via work_available only, not scheduler_event;
wenzelm
parents: 33413
diff changeset
   379
352fe8e9162d worker_next: plain signalling via work_available only, not scheduler_event;
wenzelm
parents: 33413
diff changeset
   380
    (* delay loop *)
352fe8e9162d worker_next: plain signalling via work_available only, not scheduler_event;
wenzelm
parents: 33413
diff changeset
   381
32295
400cc493d466 renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
wenzelm
parents: 32293
diff changeset
   382
    val _ = Exn.release (wait_timeout next_round scheduler_event);
28167
27e2ca41b58c more interrupt operations;
wenzelm
parents: 28166
diff changeset
   383
33415
352fe8e9162d worker_next: plain signalling via work_available only, not scheduler_event;
wenzelm
parents: 33413
diff changeset
   384
352fe8e9162d worker_next: plain signalling via work_available only, not scheduler_event;
wenzelm
parents: 33413
diff changeset
   385
    (* shutdown *)
352fe8e9162d worker_next: plain signalling via work_available only, not scheduler_event;
wenzelm
parents: 33413
diff changeset
   386
34277
7325a5e3587f added Future.promise/fulfill -- promised futures that are fulfilled by external means;
wenzelm
parents: 33416
diff changeset
   387
    val _ = if Task_Queue.all_passive (! queue) then do_shutdown := true else ();
32219
9a2566d1fdbd more specific conditions: scheduler_event, work_available, work_finished -- considereably reduces overhead with many threads;
wenzelm
parents: 32186
diff changeset
   388
    val continue = not (! do_shutdown andalso null (! workers));
50429
f8cd5e53653b final report_status within SYNCHRONIZED part of scheduler loop: required for sanity of data;
wenzelm
parents: 50280
diff changeset
   389
    val _ = if continue then () else (report_status (); scheduler := NONE);
33415
352fe8e9162d worker_next: plain signalling via work_available only, not scheduler_event;
wenzelm
parents: 33413
diff changeset
   390
32219
9a2566d1fdbd more specific conditions: scheduler_event, work_available, work_finished -- considereably reduces overhead with many threads;
wenzelm
parents: 32186
diff changeset
   391
    val _ = broadcast scheduler_event;
32295
400cc493d466 renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
wenzelm
parents: 32293
diff changeset
   392
  in continue end
39232
69c6d3e87660 more abstract treatment of interrupts in structure Exn -- hardly ever need to mention Interrupt literally;
wenzelm
parents: 38236
diff changeset
   393
  handle exn =>
69c6d3e87660 more abstract treatment of interrupts in structure Exn -- hardly ever need to mention Interrupt literally;
wenzelm
parents: 38236
diff changeset
   394
    if Exn.is_interrupt exn then
51279
f4a2fa9286e9 tuned messages;
wenzelm
parents: 51046
diff changeset
   395
     (Multithreading.tracing 1 (fn () => "SCHEDULER: Interrupt");
44341
a93d25fb14fc purely functional task_queue.ML -- moved actual interrupt_unsynchronized to future.ML;
wenzelm
parents: 44330
diff changeset
   396
      List.app cancel_later (cancel_all ());
51281
c05f7e1dd602 signal work_available should be sufficient to initiate daisy-chained workers, and lead to separate broadcast work_finished eventually -- NB: broadcasting all worker threads tends to burn parallel CPU cycles;
wenzelm
parents: 51280
diff changeset
   397
      signal work_available; true)
39232
69c6d3e87660 more abstract treatment of interrupts in structure Exn -- hardly ever need to mention Interrupt literally;
wenzelm
parents: 38236
diff changeset
   398
    else reraise exn;
32295
400cc493d466 renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
wenzelm
parents: 32293
diff changeset
   399
28206
bcd48c6897d4 eliminated requests, use global state variables uniformly;
wenzelm
parents: 28203
diff changeset
   400
fun scheduler_loop () =
44173
aaaa13e297dc immediate fork of initial workers -- avoid 5 ticks (250ms) for adaptive scheme (a07558eb5029);
wenzelm
parents: 44115
diff changeset
   401
 (while
33416
13d00799fe49 scheduler: clarified interrupt attributes and handling;
wenzelm
parents: 33415
diff changeset
   402
    Multithreading.with_attributes
13d00799fe49 scheduler: clarified interrupt attributes and handling;
wenzelm
parents: 33415
diff changeset
   403
      (Multithreading.sync_interrupts Multithreading.public_interrupts)
13d00799fe49 scheduler: clarified interrupt attributes and handling;
wenzelm
parents: 33415
diff changeset
   404
      (fn _ => SYNCHRONIZED "scheduler" (fn () => scheduler_next ()))
50429
f8cd5e53653b final report_status within SYNCHRONIZED part of scheduler loop: required for sanity of data;
wenzelm
parents: 50280
diff changeset
   405
  do (); last_round := Time.zeroTime);
28156
5205f7979b4f Functional threads as future values.
wenzelm
parents:
diff changeset
   406
28203
88f18387f1c9 shutdown: global join-and-shutdown operation;
wenzelm
parents: 28202
diff changeset
   407
fun scheduler_active () = (*requires SYNCHRONIZED*)
88f18387f1c9 shutdown: global join-and-shutdown operation;
wenzelm
parents: 28202
diff changeset
   408
  (case ! scheduler of NONE => false | SOME thread => Thread.isActive thread);
88f18387f1c9 shutdown: global join-and-shutdown operation;
wenzelm
parents: 28202
diff changeset
   409
32228
7622c03141b0 scheduler: shutdown spontaneously (after some delay) if queue is empty;
wenzelm
parents: 32227
diff changeset
   410
fun scheduler_check () = (*requires SYNCHRONIZED*)
7622c03141b0 scheduler: shutdown spontaneously (after some delay) if queue is empty;
wenzelm
parents: 32227
diff changeset
   411
 (do_shutdown := false;
32248
0241916a5f06 more precise treatment of scheduler_event: continous pulse (50ms) instead of flooding, which was burning many CPU cycles in spare threads;
wenzelm
parents: 32247
diff changeset
   412
  if scheduler_active () then ()
37216
3165bc303f66 modernized some structure names, keeping a few legacy aliases;
wenzelm
parents: 37182
diff changeset
   413
  else scheduler := SOME (Simple_Thread.fork false scheduler_loop));
28156
5205f7979b4f Functional threads as future values.
wenzelm
parents:
diff changeset
   414
44301
65f60d9ac4bf tuned signature (again);
wenzelm
parents: 44300
diff changeset
   415
65f60d9ac4bf tuned signature (again);
wenzelm
parents: 44300
diff changeset
   416
65f60d9ac4bf tuned signature (again);
wenzelm
parents: 44300
diff changeset
   417
(** futures **)
65f60d9ac4bf tuned signature (again);
wenzelm
parents: 44300
diff changeset
   418
65f60d9ac4bf tuned signature (again);
wenzelm
parents: 44300
diff changeset
   419
(* cancel *)
65f60d9ac4bf tuned signature (again);
wenzelm
parents: 44300
diff changeset
   420
49906
06a3570b0f0a more official Future.terminate;
wenzelm
parents: 49894
diff changeset
   421
fun cancel_group_unsynchronized group = (*requires SYNCHRONIZED*)
44299
061599cb6eb0 refined Future.cancel: explicit future allows to join actual cancellation;
wenzelm
parents: 44298
diff changeset
   422
  let
47421
9624408d8827 always signal after cancel_group: passive tasks may have become active;
wenzelm
parents: 47404
diff changeset
   423
    val _ = if null (cancel_now group) then () else cancel_later group;
9624408d8827 always signal after cancel_group: passive tasks may have become active;
wenzelm
parents: 47404
diff changeset
   424
    val _ = signal work_available;
9624408d8827 always signal after cancel_group: passive tasks may have become active;
wenzelm
parents: 47404
diff changeset
   425
    val _ = scheduler_check ();
49906
06a3570b0f0a more official Future.terminate;
wenzelm
parents: 49894
diff changeset
   426
  in () end;
06a3570b0f0a more official Future.terminate;
wenzelm
parents: 49894
diff changeset
   427
06a3570b0f0a more official Future.terminate;
wenzelm
parents: 49894
diff changeset
   428
fun cancel_group group =
06a3570b0f0a more official Future.terminate;
wenzelm
parents: 49894
diff changeset
   429
  SYNCHRONIZED "cancel_group" (fn () => cancel_group_unsynchronized group);
44299
061599cb6eb0 refined Future.cancel: explicit future allows to join actual cancellation;
wenzelm
parents: 44298
diff changeset
   430
44301
65f60d9ac4bf tuned signature (again);
wenzelm
parents: 44300
diff changeset
   431
fun cancel x = cancel_group (Task_Queue.group_of_task (task_of x));
29366
1ffc8cbf39ec tuned map: reduced overhead due to bulk jobs;
wenzelm
parents: 29341
diff changeset
   432
28156
5205f7979b4f Functional threads as future values.
wenzelm
parents:
diff changeset
   433
50914
fe4714886d92 identify future results more carefully, to avoid odd duplication of error messages, notably from forked goals;
wenzelm
parents: 50911
diff changeset
   434
(* results *)
fe4714886d92 identify future results more carefully, to avoid odd duplication of error messages, notably from forked goals;
wenzelm
parents: 50911
diff changeset
   435
fe4714886d92 identify future results more carefully, to avoid odd duplication of error messages, notably from forked goals;
wenzelm
parents: 50911
diff changeset
   436
fun error_msg pos ((serial, msg), exec_id) =
50916
fd902b616b48 proper runtime position (cf. fe4714886d92 and Toplevel.error_msg) -- to make error messages actually appear in the document;
wenzelm
parents: 50914
diff changeset
   437
  Position.setmp_thread_data pos (fn () =>
50931
a7484a7b6c8a clarified Future.error_msg: slightly more robust id check, actually suppress displaced messages;
wenzelm
parents: 50916
diff changeset
   438
    let val id = Position.get_id pos in
a7484a7b6c8a clarified Future.error_msg: slightly more robust id check, actually suppress displaced messages;
wenzelm
parents: 50916
diff changeset
   439
      if is_none id orelse is_none exec_id orelse id = exec_id
a7484a7b6c8a clarified Future.error_msg: slightly more robust id check, actually suppress displaced messages;
wenzelm
parents: 50916
diff changeset
   440
      then Output.error_msg' (serial, msg) else ()
a7484a7b6c8a clarified Future.error_msg: slightly more robust id check, actually suppress displaced messages;
wenzelm
parents: 50916
diff changeset
   441
    end) ();
44110
058520fa03a8 tuned source structure;
wenzelm
parents: 43952
diff changeset
   442
50914
fe4714886d92 identify future results more carefully, to avoid odd duplication of error messages, notably from forked goals;
wenzelm
parents: 50911
diff changeset
   443
fun identify_result pos res =
fe4714886d92 identify future results more carefully, to avoid odd duplication of error messages, notably from forked goals;
wenzelm
parents: 50911
diff changeset
   444
  (case res of
fe4714886d92 identify future results more carefully, to avoid odd duplication of error messages, notably from forked goals;
wenzelm
parents: 50911
diff changeset
   445
    Exn.Exn exn =>
fe4714886d92 identify future results more carefully, to avoid odd duplication of error messages, notably from forked goals;
wenzelm
parents: 50911
diff changeset
   446
      let val exec_id =
fe4714886d92 identify future results more carefully, to avoid odd duplication of error messages, notably from forked goals;
wenzelm
parents: 50911
diff changeset
   447
        (case Position.get_id pos of
fe4714886d92 identify future results more carefully, to avoid odd duplication of error messages, notably from forked goals;
wenzelm
parents: 50911
diff changeset
   448
          NONE => []
fe4714886d92 identify future results more carefully, to avoid odd duplication of error messages, notably from forked goals;
wenzelm
parents: 50911
diff changeset
   449
        | SOME id => [(Markup.exec_idN, id)])
fe4714886d92 identify future results more carefully, to avoid odd duplication of error messages, notably from forked goals;
wenzelm
parents: 50911
diff changeset
   450
      in Exn.Exn (Par_Exn.identify exec_id exn) end
fe4714886d92 identify future results more carefully, to avoid odd duplication of error messages, notably from forked goals;
wenzelm
parents: 50911
diff changeset
   451
  | _ => res);
fe4714886d92 identify future results more carefully, to avoid odd duplication of error messages, notably from forked goals;
wenzelm
parents: 50911
diff changeset
   452
fe4714886d92 identify future results more carefully, to avoid odd duplication of error messages, notably from forked goals;
wenzelm
parents: 50911
diff changeset
   453
fun assign_result group result res =
44110
058520fa03a8 tuned source structure;
wenzelm
parents: 43952
diff changeset
   454
  let
058520fa03a8 tuned source structure;
wenzelm
parents: 43952
diff changeset
   455
    val _ = Single_Assignment.assign result res
058520fa03a8 tuned source structure;
wenzelm
parents: 43952
diff changeset
   456
      handle exn as Fail _ =>
058520fa03a8 tuned source structure;
wenzelm
parents: 43952
diff changeset
   457
        (case Single_Assignment.peek result of
058520fa03a8 tuned source structure;
wenzelm
parents: 43952
diff changeset
   458
          SOME (Exn.Exn e) => reraise (if Exn.is_interrupt e then e else exn)
058520fa03a8 tuned source structure;
wenzelm
parents: 43952
diff changeset
   459
        | _ => reraise exn);
058520fa03a8 tuned source structure;
wenzelm
parents: 43952
diff changeset
   460
    val ok =
058520fa03a8 tuned source structure;
wenzelm
parents: 43952
diff changeset
   461
      (case the (Single_Assignment.peek result) of
44111
2d16c693d536 synchronized cancel and flushing of Multithreading.interrupted state, to ensure that interrupts stay within task boundaries;
wenzelm
parents: 44110
diff changeset
   462
        Exn.Exn exn =>
2d16c693d536 synchronized cancel and flushing of Multithreading.interrupted state, to ensure that interrupts stay within task boundaries;
wenzelm
parents: 44110
diff changeset
   463
          (SYNCHRONIZED "cancel" (fn () => Task_Queue.cancel_group group exn); false)
44110
058520fa03a8 tuned source structure;
wenzelm
parents: 43952
diff changeset
   464
      | Exn.Res _ => true);
058520fa03a8 tuned source structure;
wenzelm
parents: 43952
diff changeset
   465
  in ok end;
058520fa03a8 tuned source structure;
wenzelm
parents: 43952
diff changeset
   466
50914
fe4714886d92 identify future results more carefully, to avoid odd duplication of error messages, notably from forked goals;
wenzelm
parents: 50911
diff changeset
   467
fe4714886d92 identify future results more carefully, to avoid odd duplication of error messages, notably from forked goals;
wenzelm
parents: 50911
diff changeset
   468
(* future jobs *)
fe4714886d92 identify future results more carefully, to avoid odd duplication of error messages, notably from forked goals;
wenzelm
parents: 50911
diff changeset
   469
44113
0baa8bbd355a future_job: explicit indication of interrupts;
wenzelm
parents: 44111
diff changeset
   470
fun future_job group interrupts (e: unit -> 'a) =
44110
058520fa03a8 tuned source structure;
wenzelm
parents: 43952
diff changeset
   471
  let
058520fa03a8 tuned source structure;
wenzelm
parents: 43952
diff changeset
   472
    val result = Single_Assignment.var "future" : 'a result;
058520fa03a8 tuned source structure;
wenzelm
parents: 43952
diff changeset
   473
    val pos = Position.thread_data ();
058520fa03a8 tuned source structure;
wenzelm
parents: 43952
diff changeset
   474
    fun job ok =
058520fa03a8 tuned source structure;
wenzelm
parents: 43952
diff changeset
   475
      let
058520fa03a8 tuned source structure;
wenzelm
parents: 43952
diff changeset
   476
        val res =
058520fa03a8 tuned source structure;
wenzelm
parents: 43952
diff changeset
   477
          if ok then
058520fa03a8 tuned source structure;
wenzelm
parents: 43952
diff changeset
   478
            Exn.capture (fn () =>
44113
0baa8bbd355a future_job: explicit indication of interrupts;
wenzelm
parents: 44111
diff changeset
   479
              Multithreading.with_attributes
0baa8bbd355a future_job: explicit indication of interrupts;
wenzelm
parents: 44111
diff changeset
   480
                (if interrupts
0baa8bbd355a future_job: explicit indication of interrupts;
wenzelm
parents: 44111
diff changeset
   481
                 then Multithreading.private_interrupts else Multithreading.no_interrupts)
44295
e43f0ea90c9a more focused use of Multithreading.interrupted: retain interrupts within task group boundary, without loss of information;
wenzelm
parents: 44294
diff changeset
   482
                (fn _ => Position.setmp_thread_data pos e ())) ()
44110
058520fa03a8 tuned source structure;
wenzelm
parents: 43952
diff changeset
   483
          else Exn.interrupt_exn;
50914
fe4714886d92 identify future results more carefully, to avoid odd duplication of error messages, notably from forked goals;
wenzelm
parents: 50911
diff changeset
   484
      in assign_result group result (identify_result pos res) end;
44110
058520fa03a8 tuned source structure;
wenzelm
parents: 43952
diff changeset
   485
  in (result, job) end;
058520fa03a8 tuned source structure;
wenzelm
parents: 43952
diff changeset
   486
058520fa03a8 tuned source structure;
wenzelm
parents: 43952
diff changeset
   487
29366
1ffc8cbf39ec tuned map: reduced overhead due to bulk jobs;
wenzelm
parents: 29341
diff changeset
   488
(* fork *)
1ffc8cbf39ec tuned map: reduced overhead due to bulk jobs;
wenzelm
parents: 29341
diff changeset
   489
44427
c4a86d72a5cc tuned signature;
wenzelm
parents: 44387
diff changeset
   490
type params = {name: string, group: group option, deps: task list, pri: int, interrupts: bool};
c4a86d72a5cc tuned signature;
wenzelm
parents: 44387
diff changeset
   491
val default_params: params = {name = "", group = NONE, deps = [], pri = 0, interrupts = true};
44113
0baa8bbd355a future_job: explicit indication of interrupts;
wenzelm
parents: 44111
diff changeset
   492
44427
c4a86d72a5cc tuned signature;
wenzelm
parents: 44387
diff changeset
   493
fun forks ({name, group, deps, pri, interrupts}: params) es =
41674
7da257539a8d tuned signature;
wenzelm
parents: 41673
diff changeset
   494
  if null es then []
7da257539a8d tuned signature;
wenzelm
parents: 41673
diff changeset
   495
  else
7da257539a8d tuned signature;
wenzelm
parents: 41673
diff changeset
   496
    let
7da257539a8d tuned signature;
wenzelm
parents: 41673
diff changeset
   497
      val grp =
7da257539a8d tuned signature;
wenzelm
parents: 41673
diff changeset
   498
        (case group of
7da257539a8d tuned signature;
wenzelm
parents: 41673
diff changeset
   499
          NONE => worker_subgroup ()
7da257539a8d tuned signature;
wenzelm
parents: 41673
diff changeset
   500
        | SOME grp => grp);
41708
d2e6b1132df2 tuned signature;
wenzelm
parents: 41695
diff changeset
   501
      fun enqueue e queue =
41674
7da257539a8d tuned signature;
wenzelm
parents: 41673
diff changeset
   502
        let
44113
0baa8bbd355a future_job: explicit indication of interrupts;
wenzelm
parents: 44111
diff changeset
   503
          val (result, job) = future_job grp interrupts e;
41708
d2e6b1132df2 tuned signature;
wenzelm
parents: 41695
diff changeset
   504
          val (task, queue') = Task_Queue.enqueue name grp deps pri job queue;
41683
73dde8006820 maintain Task_Queue.group within Task_Queue.task;
wenzelm
parents: 41681
diff changeset
   505
          val future = Future {promised = false, task = task, result = result};
41708
d2e6b1132df2 tuned signature;
wenzelm
parents: 41695
diff changeset
   506
        in (future, queue') end;
41674
7da257539a8d tuned signature;
wenzelm
parents: 41673
diff changeset
   507
    in
7da257539a8d tuned signature;
wenzelm
parents: 41673
diff changeset
   508
      SYNCHRONIZED "enqueue" (fn () =>
7da257539a8d tuned signature;
wenzelm
parents: 41673
diff changeset
   509
        let
41708
d2e6b1132df2 tuned signature;
wenzelm
parents: 41695
diff changeset
   510
          val (futures, queue') = fold_map enqueue es (! queue);
d2e6b1132df2 tuned signature;
wenzelm
parents: 41695
diff changeset
   511
          val _ = queue := queue';
d2e6b1132df2 tuned signature;
wenzelm
parents: 41695
diff changeset
   512
          val minimal = forall (not o Task_Queue.known_task queue') deps;
41674
7da257539a8d tuned signature;
wenzelm
parents: 41673
diff changeset
   513
          val _ = if minimal then signal work_available else ();
7da257539a8d tuned signature;
wenzelm
parents: 41673
diff changeset
   514
          val _ = scheduler_check ();
7da257539a8d tuned signature;
wenzelm
parents: 41673
diff changeset
   515
        in futures end)
7da257539a8d tuned signature;
wenzelm
parents: 41673
diff changeset
   516
    end;
28162
55772e4e95e0 tuned check_cache;
wenzelm
parents: 28156
diff changeset
   517
50983
1290afb88f90 tuned signature;
wenzelm
parents: 50975
diff changeset
   518
fun fork e =
1290afb88f90 tuned signature;
wenzelm
parents: 50975
diff changeset
   519
  (singleton o forks) {name = "fork", group = NONE, deps = [], pri = 0, interrupts = true} e;
28186
6a8417f36837 cancel: check_scheduler;
wenzelm
parents: 28177
diff changeset
   520
6a8417f36837 cancel: check_scheduler;
wenzelm
parents: 28177
diff changeset
   521
29366
1ffc8cbf39ec tuned map: reduced overhead due to bulk jobs;
wenzelm
parents: 29341
diff changeset
   522
(* join *)
1ffc8cbf39ec tuned map: reduced overhead due to bulk jobs;
wenzelm
parents: 29341
diff changeset
   523
32099
5382c93108db propagate exceptions within future groups;
wenzelm
parents: 32096
diff changeset
   524
fun get_result x =
5382c93108db propagate exceptions within future groups;
wenzelm
parents: 32096
diff changeset
   525
  (case peek x of
37852
a902f158b4fc eliminated old-style sys_error/SYS_ERROR in favour of exception Fail -- after careful checking that there is no overlap with existing handling of that;
wenzelm
parents: 37690
diff changeset
   526
    NONE => Exn.Exn (Fail "Unfinished future")
39232
69c6d3e87660 more abstract treatment of interrupts in structure Exn -- hardly ever need to mention Interrupt literally;
wenzelm
parents: 38236
diff changeset
   527
  | SOME res =>
69c6d3e87660 more abstract treatment of interrupts in structure Exn -- hardly ever need to mention Interrupt literally;
wenzelm
parents: 38236
diff changeset
   528
      if Exn.is_interrupt_exn res then
44247
270366301bd7 more systematic handling of parallel exceptions;
wenzelm
parents: 44198
diff changeset
   529
        (case Task_Queue.group_status (Task_Queue.group_of_task (task_of x)) of
270366301bd7 more systematic handling of parallel exceptions;
wenzelm
parents: 44198
diff changeset
   530
          NONE => res
270366301bd7 more systematic handling of parallel exceptions;
wenzelm
parents: 44198
diff changeset
   531
        | SOME exn => Exn.Exn exn)
39232
69c6d3e87660 more abstract treatment of interrupts in structure Exn -- hardly ever need to mention Interrupt literally;
wenzelm
parents: 38236
diff changeset
   532
      else res);
28186
6a8417f36837 cancel: check_scheduler;
wenzelm
parents: 28177
diff changeset
   533
49935
d1ecb3554b25 clarified Future.map (again): finished value is mapped in-place, which saves task structures and changes error behaviour slightly (tolerance against canceled group of old value etc.);
wenzelm
parents: 49910
diff changeset
   534
local
d1ecb3554b25 clarified Future.map (again): finished value is mapped in-place, which saves task structures and changes error behaviour slightly (tolerance against canceled group of old value etc.);
wenzelm
parents: 49910
diff changeset
   535
32095
ad4be204fdfe tuned tracing;
wenzelm
parents: 32058
diff changeset
   536
fun join_next deps = (*requires SYNCHRONIZED*)
41695
afdbec23b92b eliminated slightly odd abstract type Task_Queue.deps;
wenzelm
parents: 41683
diff changeset
   537
  if null deps then NONE
32224
a46f5e9b1718 dequeue_towards: always return active tasks;
wenzelm
parents: 32222
diff changeset
   538
  else
41681
b5d7b15166bf Future.join_results: discontinued post-hoc recording of dynamic dependencies;
wenzelm
parents: 41680
diff changeset
   539
    (case Unsynchronized.change_result queue (Task_Queue.dequeue_deps (Thread.self ()) deps) of
41695
afdbec23b92b eliminated slightly odd abstract type Task_Queue.deps;
wenzelm
parents: 41683
diff changeset
   540
      (NONE, []) => NONE
afdbec23b92b eliminated slightly odd abstract type Task_Queue.deps;
wenzelm
parents: 41683
diff changeset
   541
    | (NONE, deps') =>
afdbec23b92b eliminated slightly odd abstract type Task_Queue.deps;
wenzelm
parents: 41683
diff changeset
   542
        (worker_waiting deps' (fn () => worker_wait true work_finished); join_next deps')
32224
a46f5e9b1718 dequeue_towards: always return active tasks;
wenzelm
parents: 32222
diff changeset
   543
    | (SOME work, deps') => SOME (work, deps'));
32095
ad4be204fdfe tuned tracing;
wenzelm
parents: 32058
diff changeset
   544
32814
81897d30b97f added Task_Queue.depend (again) -- light-weight version for transitive graph;
wenzelm
parents: 32738
diff changeset
   545
fun execute_work NONE = ()
44110
058520fa03a8 tuned source structure;
wenzelm
parents: 43952
diff changeset
   546
  | execute_work (SOME (work, deps')) =
058520fa03a8 tuned source structure;
wenzelm
parents: 43952
diff changeset
   547
      (worker_joining (fn () => worker_exec work); join_work deps')
32814
81897d30b97f added Task_Queue.depend (again) -- light-weight version for transitive graph;
wenzelm
parents: 32738
diff changeset
   548
and join_work deps =
43538
de5c79682b56 more robust join_results: join_work needs to be uninterruptible, otherwise the task being dequeued by join_next might be never executed/finished!
wenzelm
parents: 42128
diff changeset
   549
  Multithreading.with_attributes Multithreading.no_interrupts
de5c79682b56 more robust join_results: join_work needs to be uninterruptible, otherwise the task being dequeued by join_next might be never executed/finished!
wenzelm
parents: 42128
diff changeset
   550
    (fn _ => execute_work (SYNCHRONIZED "join" (fn () => join_next deps)));
32814
81897d30b97f added Task_Queue.depend (again) -- light-weight version for transitive graph;
wenzelm
parents: 32738
diff changeset
   551
29551
95e469919c3e join_results: when dependencies are resulved (but not finished yet),
wenzelm
parents: 29431
diff changeset
   552
in
95e469919c3e join_results: when dependencies are resulved (but not finished yet),
wenzelm
parents: 29431
diff changeset
   553
29366
1ffc8cbf39ec tuned map: reduced overhead due to bulk jobs;
wenzelm
parents: 29341
diff changeset
   554
fun join_results xs =
41679
79716cb61bfd refined task timing: joining vs. waiting;
wenzelm
parents: 41674
diff changeset
   555
  let
79716cb61bfd refined task timing: joining vs. waiting;
wenzelm
parents: 41674
diff changeset
   556
    val _ =
79716cb61bfd refined task timing: joining vs. waiting;
wenzelm
parents: 41674
diff changeset
   557
      if forall is_finished xs then ()
79716cb61bfd refined task timing: joining vs. waiting;
wenzelm
parents: 41674
diff changeset
   558
      else if Multithreading.self_critical () then
79716cb61bfd refined task timing: joining vs. waiting;
wenzelm
parents: 41674
diff changeset
   559
        error "Cannot join future values within critical section"
41695
afdbec23b92b eliminated slightly odd abstract type Task_Queue.deps;
wenzelm
parents: 41683
diff changeset
   560
      else if is_some (worker_task ()) then join_work (map task_of xs)
41681
b5d7b15166bf Future.join_results: discontinued post-hoc recording of dynamic dependencies;
wenzelm
parents: 41680
diff changeset
   561
      else List.app (ignore o Single_Assignment.await o result_of) xs;
41679
79716cb61bfd refined task timing: joining vs. waiting;
wenzelm
parents: 41674
diff changeset
   562
  in map get_result xs end;
28186
6a8417f36837 cancel: check_scheduler;
wenzelm
parents: 28177
diff changeset
   563
29551
95e469919c3e join_results: when dependencies are resulved (but not finished yet),
wenzelm
parents: 29431
diff changeset
   564
end;
95e469919c3e join_results: when dependencies are resulved (but not finished yet),
wenzelm
parents: 29431
diff changeset
   565
28647
8068cdc84e7e join_results: allow CRITICAL join of finished futures;
wenzelm
parents: 28645
diff changeset
   566
fun join_result x = singleton join_results x;
44330
b28e091f683a added Future.joins convenience;
wenzelm
parents: 44301
diff changeset
   567
fun joins xs = Par_Exn.release_all (join_results xs);
28647
8068cdc84e7e join_results: allow CRITICAL join of finished futures;
wenzelm
parents: 28645
diff changeset
   568
fun join x = Exn.release (join_result x);
28156
5205f7979b4f Functional threads as future values.
wenzelm
parents:
diff changeset
   569
29366
1ffc8cbf39ec tuned map: reduced overhead due to bulk jobs;
wenzelm
parents: 29341
diff changeset
   570
51325
bcd6b1aa4db5 more uniform Future.map: always internalize failure;
wenzelm
parents: 51283
diff changeset
   571
(* fast-path operations -- bypass task queue if possible *)
34277
7325a5e3587f added Future.promise/fulfill -- promised futures that are fulfilled by external means;
wenzelm
parents: 33416
diff changeset
   572
44294
a0ddd5760444 clarified Future.cond_forks: more uniform handling of exceptional situations;
wenzelm
parents: 44268
diff changeset
   573
fun value_result (res: 'a Exn.result) =
34277
7325a5e3587f added Future.promise/fulfill -- promised futures that are fulfilled by external means;
wenzelm
parents: 33416
diff changeset
   574
  let
45136
2afb928c71ca static dummy_task (again) to avoid a few extra allocations;
wenzelm
parents: 44427
diff changeset
   575
    val task = Task_Queue.dummy_task;
41683
73dde8006820 maintain Task_Queue.group within Task_Queue.task;
wenzelm
parents: 41681
diff changeset
   576
    val group = Task_Queue.group_of_task task;
35016
c0f2e49bccfc result: Single_Assignment.var;
wenzelm
parents: 34281
diff changeset
   577
    val result = Single_Assignment.var "value" : 'a result;
50914
fe4714886d92 identify future results more carefully, to avoid odd duplication of error messages, notably from forked goals;
wenzelm
parents: 50911
diff changeset
   578
    val _ = assign_result group result (identify_result (Position.thread_data ()) res);
41683
73dde8006820 maintain Task_Queue.group within Task_Queue.task;
wenzelm
parents: 41681
diff changeset
   579
  in Future {promised = false, task = task, result = result} end;
29366
1ffc8cbf39ec tuned map: reduced overhead due to bulk jobs;
wenzelm
parents: 29341
diff changeset
   580
44294
a0ddd5760444 clarified Future.cond_forks: more uniform handling of exceptional situations;
wenzelm
parents: 44268
diff changeset
   581
fun value x = value_result (Exn.Res x);
a0ddd5760444 clarified Future.cond_forks: more uniform handling of exceptional situations;
wenzelm
parents: 44268
diff changeset
   582
44330
b28e091f683a added Future.joins convenience;
wenzelm
parents: 44301
diff changeset
   583
fun cond_forks args es =
b28e091f683a added Future.joins convenience;
wenzelm
parents: 44301
diff changeset
   584
  if Multithreading.enabled () then forks args es
b28e091f683a added Future.joins convenience;
wenzelm
parents: 44301
diff changeset
   585
  else map (fn e => value_result (Exn.interruptible_capture e ())) es;
b28e091f683a added Future.joins convenience;
wenzelm
parents: 44301
diff changeset
   586
29384
a3c7e9ae9b71 more robust propagation of errors through bulk jobs;
wenzelm
parents: 29366
diff changeset
   587
fun map_future f x =
51325
bcd6b1aa4db5 more uniform Future.map: always internalize failure;
wenzelm
parents: 51283
diff changeset
   588
  if is_finished x then value_result (Exn.interruptible_capture (f o join) x)
49935
d1ecb3554b25 clarified Future.map (again): finished value is mapped in-place, which saves task structures and changes error behaviour slightly (tolerance against canceled group of old value etc.);
wenzelm
parents: 49910
diff changeset
   589
  else
d1ecb3554b25 clarified Future.map (again): finished value is mapped in-place, which saves task structures and changes error behaviour slightly (tolerance against canceled group of old value etc.);
wenzelm
parents: 49910
diff changeset
   590
    let
d1ecb3554b25 clarified Future.map (again): finished value is mapped in-place, which saves task structures and changes error behaviour slightly (tolerance against canceled group of old value etc.);
wenzelm
parents: 49910
diff changeset
   591
      val task = task_of x;
d1ecb3554b25 clarified Future.map (again): finished value is mapped in-place, which saves task structures and changes error behaviour slightly (tolerance against canceled group of old value etc.);
wenzelm
parents: 49910
diff changeset
   592
      val group = Task_Queue.group_of_task task;
d1ecb3554b25 clarified Future.map (again): finished value is mapped in-place, which saves task structures and changes error behaviour slightly (tolerance against canceled group of old value etc.);
wenzelm
parents: 49910
diff changeset
   593
      val (result, job) = future_job group true (fn () => f (join x));
29384
a3c7e9ae9b71 more robust propagation of errors through bulk jobs;
wenzelm
parents: 29366
diff changeset
   594
49935
d1ecb3554b25 clarified Future.map (again): finished value is mapped in-place, which saves task structures and changes error behaviour slightly (tolerance against canceled group of old value etc.);
wenzelm
parents: 49910
diff changeset
   595
      val extended = SYNCHRONIZED "extend" (fn () =>
d1ecb3554b25 clarified Future.map (again): finished value is mapped in-place, which saves task structures and changes error behaviour slightly (tolerance against canceled group of old value etc.);
wenzelm
parents: 49910
diff changeset
   596
        (case Task_Queue.extend task job (! queue) of
d1ecb3554b25 clarified Future.map (again): finished value is mapped in-place, which saves task structures and changes error behaviour slightly (tolerance against canceled group of old value etc.);
wenzelm
parents: 49910
diff changeset
   597
          SOME queue' => (queue := queue'; true)
d1ecb3554b25 clarified Future.map (again): finished value is mapped in-place, which saves task structures and changes error behaviour slightly (tolerance against canceled group of old value etc.);
wenzelm
parents: 49910
diff changeset
   598
        | NONE => false));
d1ecb3554b25 clarified Future.map (again): finished value is mapped in-place, which saves task structures and changes error behaviour slightly (tolerance against canceled group of old value etc.);
wenzelm
parents: 49910
diff changeset
   599
    in
d1ecb3554b25 clarified Future.map (again): finished value is mapped in-place, which saves task structures and changes error behaviour slightly (tolerance against canceled group of old value etc.);
wenzelm
parents: 49910
diff changeset
   600
      if extended then Future {promised = false, task = task, result = result}
d1ecb3554b25 clarified Future.map (again): finished value is mapped in-place, which saves task structures and changes error behaviour slightly (tolerance against canceled group of old value etc.);
wenzelm
parents: 49910
diff changeset
   601
      else
d1ecb3554b25 clarified Future.map (again): finished value is mapped in-place, which saves task structures and changes error behaviour slightly (tolerance against canceled group of old value etc.);
wenzelm
parents: 49910
diff changeset
   602
        (singleton o cond_forks)
d1ecb3554b25 clarified Future.map (again): finished value is mapped in-place, which saves task structures and changes error behaviour slightly (tolerance against canceled group of old value etc.);
wenzelm
parents: 49910
diff changeset
   603
          {name = "map_future", group = SOME group, deps = [task],
d1ecb3554b25 clarified Future.map (again): finished value is mapped in-place, which saves task structures and changes error behaviour slightly (tolerance against canceled group of old value etc.);
wenzelm
parents: 49910
diff changeset
   604
            pri = Task_Queue.pri_of_task task, interrupts = true}
d1ecb3554b25 clarified Future.map (again): finished value is mapped in-place, which saves task structures and changes error behaviour slightly (tolerance against canceled group of old value etc.);
wenzelm
parents: 49910
diff changeset
   605
          (fn () => f (join x))
d1ecb3554b25 clarified Future.map (again): finished value is mapped in-place, which saves task structures and changes error behaviour slightly (tolerance against canceled group of old value etc.);
wenzelm
parents: 49910
diff changeset
   606
    end;
28979
3ce619d8d432 fork/map: no inheritance of group (structure is nested, not parallel);
wenzelm
parents: 28972
diff changeset
   607
28191
9e5f556409c6 future: allow explicit group;
wenzelm
parents: 28186
diff changeset
   608
34277
7325a5e3587f added Future.promise/fulfill -- promised futures that are fulfilled by external means;
wenzelm
parents: 33416
diff changeset
   609
(* promised futures -- fulfilled by external means *)
7325a5e3587f added Future.promise/fulfill -- promised futures that are fulfilled by external means;
wenzelm
parents: 33416
diff changeset
   610
44298
b8f8488704e2 Future.promise: explicit abort operation (like uninterruptible future job);
wenzelm
parents: 44295
diff changeset
   611
fun promise_group group abort : 'a future =
34277
7325a5e3587f added Future.promise/fulfill -- promised futures that are fulfilled by external means;
wenzelm
parents: 33416
diff changeset
   612
  let
35016
c0f2e49bccfc result: Single_Assignment.var;
wenzelm
parents: 34281
diff changeset
   613
    val result = Single_Assignment.var "promise" : 'a result;
44298
b8f8488704e2 Future.promise: explicit abort operation (like uninterruptible future job);
wenzelm
parents: 44295
diff changeset
   614
    fun assign () = assign_result group result Exn.interrupt_exn
39243
307e3d07d19f Future.promise: more robust treatment of concurrent abort vs. fulfill (amending 047c96f41455);
wenzelm
parents: 39232
diff changeset
   615
      handle Fail _ => true
307e3d07d19f Future.promise: more robust treatment of concurrent abort vs. fulfill (amending 047c96f41455);
wenzelm
parents: 39232
diff changeset
   616
        | exn =>
44298
b8f8488704e2 Future.promise: explicit abort operation (like uninterruptible future job);
wenzelm
parents: 44295
diff changeset
   617
            if Exn.is_interrupt exn
b8f8488704e2 Future.promise: explicit abort operation (like uninterruptible future job);
wenzelm
parents: 44295
diff changeset
   618
            then raise Fail "Concurrent attempt to fulfill promise"
39243
307e3d07d19f Future.promise: more robust treatment of concurrent abort vs. fulfill (amending 047c96f41455);
wenzelm
parents: 39232
diff changeset
   619
            else reraise exn;
44298
b8f8488704e2 Future.promise: explicit abort operation (like uninterruptible future job);
wenzelm
parents: 44295
diff changeset
   620
    fun job () =
b8f8488704e2 Future.promise: explicit abort operation (like uninterruptible future job);
wenzelm
parents: 44295
diff changeset
   621
      Multithreading.with_attributes Multithreading.no_interrupts
47423
8a179a0493e3 more robust Future.fulfill wrt. duplicate assignment and interrupt;
wenzelm
parents: 47421
diff changeset
   622
        (fn _ => Exn.release (Exn.capture assign () before abort ()));
37854
047c96f41455 back to more strict dependencies, even for canceled groups (reverting parts of 02936e77a07c);
wenzelm
parents: 37852
diff changeset
   623
    val task = SYNCHRONIZED "enqueue_passive" (fn () =>
44298
b8f8488704e2 Future.promise: explicit abort operation (like uninterruptible future job);
wenzelm
parents: 44295
diff changeset
   624
      Unsynchronized.change_result queue (Task_Queue.enqueue_passive group job));
41683
73dde8006820 maintain Task_Queue.group within Task_Queue.task;
wenzelm
parents: 41681
diff changeset
   625
  in Future {promised = true, task = task, result = result} end;
34277
7325a5e3587f added Future.promise/fulfill -- promised futures that are fulfilled by external means;
wenzelm
parents: 33416
diff changeset
   626
44298
b8f8488704e2 Future.promise: explicit abort operation (like uninterruptible future job);
wenzelm
parents: 44295
diff changeset
   627
fun promise abort = promise_group (worker_subgroup ()) abort;
34277
7325a5e3587f added Future.promise/fulfill -- promised futures that are fulfilled by external means;
wenzelm
parents: 33416
diff changeset
   628
41683
73dde8006820 maintain Task_Queue.group within Task_Queue.task;
wenzelm
parents: 41681
diff changeset
   629
fun fulfill_result (Future {promised, task, result}) res =
39243
307e3d07d19f Future.promise: more robust treatment of concurrent abort vs. fulfill (amending 047c96f41455);
wenzelm
parents: 39232
diff changeset
   630
  if not promised then raise Fail "Not a promised future"
307e3d07d19f Future.promise: more robust treatment of concurrent abort vs. fulfill (amending 047c96f41455);
wenzelm
parents: 39232
diff changeset
   631
  else
307e3d07d19f Future.promise: more robust treatment of concurrent abort vs. fulfill (amending 047c96f41455);
wenzelm
parents: 39232
diff changeset
   632
    let
41683
73dde8006820 maintain Task_Queue.group within Task_Queue.task;
wenzelm
parents: 41681
diff changeset
   633
      val group = Task_Queue.group_of_task task;
50914
fe4714886d92 identify future results more carefully, to avoid odd duplication of error messages, notably from forked goals;
wenzelm
parents: 50911
diff changeset
   634
      val pos = Position.thread_data ();
fe4714886d92 identify future results more carefully, to avoid odd duplication of error messages, notably from forked goals;
wenzelm
parents: 50911
diff changeset
   635
      fun job ok =
fe4714886d92 identify future results more carefully, to avoid odd duplication of error messages, notably from forked goals;
wenzelm
parents: 50911
diff changeset
   636
        assign_result group result (if ok then identify_result pos res else Exn.interrupt_exn);
39243
307e3d07d19f Future.promise: more robust treatment of concurrent abort vs. fulfill (amending 047c96f41455);
wenzelm
parents: 39232
diff changeset
   637
      val _ =
307e3d07d19f Future.promise: more robust treatment of concurrent abort vs. fulfill (amending 047c96f41455);
wenzelm
parents: 39232
diff changeset
   638
        Multithreading.with_attributes Multithreading.no_interrupts (fn _ =>
307e3d07d19f Future.promise: more robust treatment of concurrent abort vs. fulfill (amending 047c96f41455);
wenzelm
parents: 39232
diff changeset
   639
          let
47423
8a179a0493e3 more robust Future.fulfill wrt. duplicate assignment and interrupt;
wenzelm
parents: 47421
diff changeset
   640
            val passive_job =
39243
307e3d07d19f Future.promise: more robust treatment of concurrent abort vs. fulfill (amending 047c96f41455);
wenzelm
parents: 39232
diff changeset
   641
              SYNCHRONIZED "fulfill_result" (fn () =>
307e3d07d19f Future.promise: more robust treatment of concurrent abort vs. fulfill (amending 047c96f41455);
wenzelm
parents: 39232
diff changeset
   642
                Unsynchronized.change_result queue
307e3d07d19f Future.promise: more robust treatment of concurrent abort vs. fulfill (amending 047c96f41455);
wenzelm
parents: 39232
diff changeset
   643
                  (Task_Queue.dequeue_passive (Thread.self ()) task));
47423
8a179a0493e3 more robust Future.fulfill wrt. duplicate assignment and interrupt;
wenzelm
parents: 47421
diff changeset
   644
          in
8a179a0493e3 more robust Future.fulfill wrt. duplicate assignment and interrupt;
wenzelm
parents: 47421
diff changeset
   645
            (case passive_job of
8a179a0493e3 more robust Future.fulfill wrt. duplicate assignment and interrupt;
wenzelm
parents: 47421
diff changeset
   646
              SOME true => worker_exec (task, [job])
8a179a0493e3 more robust Future.fulfill wrt. duplicate assignment and interrupt;
wenzelm
parents: 47421
diff changeset
   647
            | SOME false => ()
8a179a0493e3 more robust Future.fulfill wrt. duplicate assignment and interrupt;
wenzelm
parents: 47421
diff changeset
   648
            | NONE => ignore (job (not (Task_Queue.is_canceled group))))
8a179a0493e3 more robust Future.fulfill wrt. duplicate assignment and interrupt;
wenzelm
parents: 47421
diff changeset
   649
          end);
41681
b5d7b15166bf Future.join_results: discontinued post-hoc recording of dynamic dependencies;
wenzelm
parents: 41680
diff changeset
   650
      val _ =
41695
afdbec23b92b eliminated slightly odd abstract type Task_Queue.deps;
wenzelm
parents: 41683
diff changeset
   651
        if is_some (Single_Assignment.peek result) then ()
afdbec23b92b eliminated slightly odd abstract type Task_Queue.deps;
wenzelm
parents: 41683
diff changeset
   652
        else worker_waiting [task] (fn () => ignore (Single_Assignment.await result));
39243
307e3d07d19f Future.promise: more robust treatment of concurrent abort vs. fulfill (amending 047c96f41455);
wenzelm
parents: 39232
diff changeset
   653
    in () end;
34277
7325a5e3587f added Future.promise/fulfill -- promised futures that are fulfilled by external means;
wenzelm
parents: 33416
diff changeset
   654
43761
e72ba84ae58f tuned signature -- corresponding to Scala version;
wenzelm
parents: 43665
diff changeset
   655
fun fulfill x res = fulfill_result x (Exn.Res res);
34277
7325a5e3587f added Future.promise/fulfill -- promised futures that are fulfilled by external means;
wenzelm
parents: 33416
diff changeset
   656
7325a5e3587f added Future.promise/fulfill -- promised futures that are fulfilled by external means;
wenzelm
parents: 33416
diff changeset
   657
49906
06a3570b0f0a more official Future.terminate;
wenzelm
parents: 49894
diff changeset
   658
(* terminate *)
06a3570b0f0a more official Future.terminate;
wenzelm
parents: 49894
diff changeset
   659
06a3570b0f0a more official Future.terminate;
wenzelm
parents: 49894
diff changeset
   660
fun terminate group =
06a3570b0f0a more official Future.terminate;
wenzelm
parents: 49894
diff changeset
   661
  let
06a3570b0f0a more official Future.terminate;
wenzelm
parents: 49894
diff changeset
   662
    val tasks =
06a3570b0f0a more official Future.terminate;
wenzelm
parents: 49894
diff changeset
   663
      SYNCHRONIZED "terminate" (fn () =>
06a3570b0f0a more official Future.terminate;
wenzelm
parents: 49894
diff changeset
   664
        let val _ = cancel_group_unsynchronized group;
06a3570b0f0a more official Future.terminate;
wenzelm
parents: 49894
diff changeset
   665
        in Task_Queue.group_tasks (! queue) group end);
06a3570b0f0a more official Future.terminate;
wenzelm
parents: 49894
diff changeset
   666
  in
06a3570b0f0a more official Future.terminate;
wenzelm
parents: 49894
diff changeset
   667
    if null tasks then ()
06a3570b0f0a more official Future.terminate;
wenzelm
parents: 49894
diff changeset
   668
    else
06a3570b0f0a more official Future.terminate;
wenzelm
parents: 49894
diff changeset
   669
      (singleton o forks)
06a3570b0f0a more official Future.terminate;
wenzelm
parents: 49894
diff changeset
   670
        {name = "terminate", group = SOME (new_group NONE),
06a3570b0f0a more official Future.terminate;
wenzelm
parents: 49894
diff changeset
   671
          deps = tasks, pri = 0, interrupts = false} I
06a3570b0f0a more official Future.terminate;
wenzelm
parents: 49894
diff changeset
   672
      |> join
06a3570b0f0a more official Future.terminate;
wenzelm
parents: 49894
diff changeset
   673
  end;
06a3570b0f0a more official Future.terminate;
wenzelm
parents: 49894
diff changeset
   674
06a3570b0f0a more official Future.terminate;
wenzelm
parents: 49894
diff changeset
   675
32228
7622c03141b0 scheduler: shutdown spontaneously (after some delay) if queue is empty;
wenzelm
parents: 32227
diff changeset
   676
(* shutdown *)
29366
1ffc8cbf39ec tuned map: reduced overhead due to bulk jobs;
wenzelm
parents: 29341
diff changeset
   677
28203
88f18387f1c9 shutdown: global join-and-shutdown operation;
wenzelm
parents: 28202
diff changeset
   678
fun shutdown () =
51283
fefd07697979 disallow shutdown from worker, which would lead to deadlock since the scheduler cannot terminate;
wenzelm
parents: 51281
diff changeset
   679
  if not Multithreading.available then ()
fefd07697979 disallow shutdown from worker, which would lead to deadlock since the scheduler cannot terminate;
wenzelm
parents: 51281
diff changeset
   680
  else if is_some (worker_task ()) then
fefd07697979 disallow shutdown from worker, which would lead to deadlock since the scheduler cannot terminate;
wenzelm
parents: 51281
diff changeset
   681
    raise Fail "Cannot shutdown while running as worker thread"
fefd07697979 disallow shutdown from worker, which would lead to deadlock since the scheduler cannot terminate;
wenzelm
parents: 51281
diff changeset
   682
  else
28276
fbc707811203 shutdown only if Multithreading.available;
wenzelm
parents: 28242
diff changeset
   683
    SYNCHRONIZED "shutdown" (fn () =>
51279
f4a2fa9286e9 tuned messages;
wenzelm
parents: 51046
diff changeset
   684
      while scheduler_active () do
f4a2fa9286e9 tuned messages;
wenzelm
parents: 51046
diff changeset
   685
       (Multithreading.tracing 1 (fn () => "SHUTDOWN: wait");
51283
fefd07697979 disallow shutdown from worker, which would lead to deadlock since the scheduler cannot terminate;
wenzelm
parents: 51281
diff changeset
   686
        wait scheduler_event));
28203
88f18387f1c9 shutdown: global join-and-shutdown operation;
wenzelm
parents: 28202
diff changeset
   687
29366
1ffc8cbf39ec tuned map: reduced overhead due to bulk jobs;
wenzelm
parents: 29341
diff changeset
   688
1ffc8cbf39ec tuned map: reduced overhead due to bulk jobs;
wenzelm
parents: 29341
diff changeset
   689
(*final declarations of this structure!*)
1ffc8cbf39ec tuned map: reduced overhead due to bulk jobs;
wenzelm
parents: 29341
diff changeset
   690
val map = map_future;
1ffc8cbf39ec tuned map: reduced overhead due to bulk jobs;
wenzelm
parents: 29341
diff changeset
   691
28156
5205f7979b4f Functional threads as future values.
wenzelm
parents:
diff changeset
   692
end;
28972
cb8a2c3e188f renamed type Future.T to future;
wenzelm
parents: 28647
diff changeset
   693
cb8a2c3e188f renamed type Future.T to future;
wenzelm
parents: 28647
diff changeset
   694
type 'a future = 'a Future.future;
cb8a2c3e188f renamed type Future.T to future;
wenzelm
parents: 28647
diff changeset
   695