| author | haftmann | 
| Mon, 26 Apr 2010 15:38:14 +0200 | |
| changeset 36410 | fde7b064d5b2 | 
| parent 35023 | 16f9877abf0b | 
| child 39232 | 69c6d3e87660 | 
| permissions | -rw-r--r-- | 
| 23961 | 1 | (* Title: Pure/ML-Systems/multithreading_polyml.ML | 
| 2 | Author: Makarius | |
| 3 | ||
| 31311 | 4 | Multithreading in Poly/ML 5.2.1 or later (cf. polyml/basis/Thread.sml). | 
| 23961 | 5 | *) | 
| 6 | ||
| 25704 | 7 | signature MULTITHREADING_POLYML = | 
| 8 | sig | |
| 26083 
abb3f8dd66dc
removed managed_process (cf. General/shell_process.ML);
 wenzelm parents: 
26074diff
changeset | 9 |   val interruptible: ('a -> 'b) -> 'a -> 'b
 | 
| 
abb3f8dd66dc
removed managed_process (cf. General/shell_process.ML);
 wenzelm parents: 
26074diff
changeset | 10 |   val uninterruptible: ((('c -> 'd) -> 'c -> 'd) -> 'a -> 'b) -> 'a -> 'b
 | 
| 35010 
d6e492cea6e4
renamed system/system_out to bash/bash_output -- to emphasized that this is really GNU bash, not some undefined POSIX sh;
 wenzelm parents: 
33219diff
changeset | 11 | val bash_output: string -> string * int | 
| 25704 | 12 | structure TimeLimit: TIME_LIMIT | 
| 13 | end; | |
| 14 | ||
| 15 | signature BASIC_MULTITHREADING = | |
| 16 | sig | |
| 17 | include BASIC_MULTITHREADING | |
| 18 | include MULTITHREADING_POLYML | |
| 19 | end; | |
| 20 | ||
| 24208 | 21 | signature MULTITHREADING = | 
| 22 | sig | |
| 23 | include MULTITHREADING | |
| 25704 | 24 | include MULTITHREADING_POLYML | 
| 24208 | 25 | end; | 
| 26 | ||
| 23961 | 27 | structure Multithreading: MULTITHREADING = | 
| 28 | struct | |
| 29 | ||
| 32185 | 30 | (* options *) | 
| 32184 | 31 | |
| 23981 | 32 | val available = true; | 
| 25775 
90525e67ede7
added Multithreading.max_threads_value, which maps a value of 0 to number of CPUs;
 wenzelm parents: 
25735diff
changeset | 33 | |
| 32738 | 34 | val max_threads = Unsynchronized.ref 0; | 
| 23973 | 35 | |
| 25775 
90525e67ede7
added Multithreading.max_threads_value, which maps a value of 0 to number of CPUs;
 wenzelm parents: 
25735diff
changeset | 36 | fun max_threads_value () = | 
| 31630 
2f8ed0dca3bd
back to default -M max, with more robust interpretation of corresponding max_threads value;
 wenzelm parents: 
31311diff
changeset | 37 | let val m = ! max_threads in | 
| 
2f8ed0dca3bd
back to default -M max, with more robust interpretation of corresponding max_threads value;
 wenzelm parents: 
31311diff
changeset | 38 | if m > 0 then m | 
| 33180 
e1b0280f0299
implicit default is 4 cores -- more cost-effective;
 wenzelm parents: 
32738diff
changeset | 39 | else Int.min (Int.max (Thread.numProcessors (), 1), 4) | 
| 31630 
2f8ed0dca3bd
back to default -M max, with more robust interpretation of corresponding max_threads value;
 wenzelm parents: 
31311diff
changeset | 40 | end; | 
| 25775 
90525e67ede7
added Multithreading.max_threads_value, which maps a value of 0 to number of CPUs;
 wenzelm parents: 
25735diff
changeset | 41 | |
| 28555 | 42 | fun enabled () = max_threads_value () > 1; | 
| 43 | ||
| 23973 | 44 | |
| 24069 | 45 | (* misc utils *) | 
| 46 | ||
| 24208 | 47 | fun show "" = "" | show name = " " ^ name; | 
| 48 | fun show' "" = "" | show' name = " [" ^ name ^ "]"; | |
| 49 | ||
| 26098 
b59d33f73aed
added system_out (back to multithreaded version -- still suffers from non-interruptible wait in Poly/ML 5.1);
 wenzelm parents: 
26083diff
changeset | 50 | fun read_file name = | 
| 
b59d33f73aed
added system_out (back to multithreaded version -- still suffers from non-interruptible wait in Poly/ML 5.1);
 wenzelm parents: 
26083diff
changeset | 51 | let val is = TextIO.openIn name | 
| 26504 | 52 | in Exn.release (Exn.capture TextIO.inputAll is before TextIO.closeIn is) end; | 
| 26098 
b59d33f73aed
added system_out (back to multithreaded version -- still suffers from non-interruptible wait in Poly/ML 5.1);
 wenzelm parents: 
26083diff
changeset | 53 | |
| 
b59d33f73aed
added system_out (back to multithreaded version -- still suffers from non-interruptible wait in Poly/ML 5.1);
 wenzelm parents: 
26083diff
changeset | 54 | fun write_file name txt = | 
| 
b59d33f73aed
added system_out (back to multithreaded version -- still suffers from non-interruptible wait in Poly/ML 5.1);
 wenzelm parents: 
26083diff
changeset | 55 | let val os = TextIO.openOut name | 
| 26504 | 56 | in Exn.release (Exn.capture TextIO.output (os, txt) before TextIO.closeOut os) end; | 
| 26098 
b59d33f73aed
added system_out (back to multithreaded version -- still suffers from non-interruptible wait in Poly/ML 5.1);
 wenzelm parents: 
26083diff
changeset | 57 | |
| 24208 | 58 | |
| 59 | (* thread attributes *) | |
| 60 | ||
| 28161 | 61 | val no_interrupts = | 
| 62 | [Thread.EnableBroadcastInterrupt false, Thread.InterruptState Thread.InterruptDefer]; | |
| 63 | ||
| 32295 
400cc493d466
renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
 wenzelm parents: 
32286diff
changeset | 64 | val public_interrupts = | 
| 28161 | 65 | [Thread.EnableBroadcastInterrupt true, Thread.InterruptState Thread.InterruptAsynchOnce]; | 
| 66 | ||
| 32295 
400cc493d466
renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
 wenzelm parents: 
32286diff
changeset | 67 | val private_interrupts = | 
| 30612 
cb6421b6a18f
future_job: do not inherit attributes, but enforce restricted interrupts -- attempt to prevent interrupt race conditions;
 wenzelm parents: 
30602diff
changeset | 68 | [Thread.EnableBroadcastInterrupt false, Thread.InterruptState Thread.InterruptAsynchOnce]; | 
| 
cb6421b6a18f
future_job: do not inherit attributes, but enforce restricted interrupts -- attempt to prevent interrupt race conditions;
 wenzelm parents: 
30602diff
changeset | 69 | |
| 32295 
400cc493d466
renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
 wenzelm parents: 
32286diff
changeset | 70 | val sync_interrupts = map | 
| 
400cc493d466
renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
 wenzelm parents: 
32286diff
changeset | 71 | (fn x as Thread.InterruptState Thread.InterruptDefer => x | 
| 
400cc493d466
renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
 wenzelm parents: 
32286diff
changeset | 72 | | Thread.InterruptState _ => Thread.InterruptState Thread.InterruptSynch | 
| 
400cc493d466
renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
 wenzelm parents: 
32286diff
changeset | 73 | | x => x); | 
| 
400cc493d466
renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
 wenzelm parents: 
32286diff
changeset | 74 | |
| 28466 
6e35fbfc32b8
with_attributes: enforces InterruptAsynch => InterruptAsynchOnce to avoid race condition;
 wenzelm parents: 
28465diff
changeset | 75 | val safe_interrupts = map | 
| 
6e35fbfc32b8
with_attributes: enforces InterruptAsynch => InterruptAsynchOnce to avoid race condition;
 wenzelm parents: 
28465diff
changeset | 76 | (fn Thread.InterruptState Thread.InterruptAsynch => | 
| 
6e35fbfc32b8
with_attributes: enforces InterruptAsynch => InterruptAsynchOnce to avoid race condition;
 wenzelm parents: 
28465diff
changeset | 77 | Thread.InterruptState Thread.InterruptAsynchOnce | 
| 
6e35fbfc32b8
with_attributes: enforces InterruptAsynch => InterruptAsynchOnce to avoid race condition;
 wenzelm parents: 
28465diff
changeset | 78 | | x => x); | 
| 
6e35fbfc32b8
with_attributes: enforces InterruptAsynch => InterruptAsynchOnce to avoid race condition;
 wenzelm parents: 
28465diff
changeset | 79 | |
| 32295 
400cc493d466
renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
 wenzelm parents: 
32286diff
changeset | 80 | fun with_attributes new_atts e = | 
| 24208 | 81 | let | 
| 29550 
67ec51c032cb
with_attributes: make double sure that unsafe attributes are avoided;
 wenzelm parents: 
28555diff
changeset | 82 | val orig_atts = safe_interrupts (Thread.getAttributes ()); | 
| 30602 
1bd90b76477a
with_attributes: canonical capture/release scheme (potentially iron out race condition);
 wenzelm parents: 
29564diff
changeset | 83 | val result = Exn.capture (fn () => | 
| 32295 
400cc493d466
renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
 wenzelm parents: 
32286diff
changeset | 84 | (Thread.setAttributes (safe_interrupts new_atts); e orig_atts)) (); | 
| 30602 
1bd90b76477a
with_attributes: canonical capture/release scheme (potentially iron out race condition);
 wenzelm parents: 
29564diff
changeset | 85 | val _ = Thread.setAttributes orig_atts; | 
| 28466 
6e35fbfc32b8
with_attributes: enforces InterruptAsynch => InterruptAsynchOnce to avoid race condition;
 wenzelm parents: 
28465diff
changeset | 86 | in Exn.release result end; | 
| 24208 | 87 | |
| 32286 
1fb5db48002d
added Multithreading.sync_wait, which turns enabled interrupts to sync ones, to ensure that wait will reaquire its lock when interrupted;
 wenzelm parents: 
32230diff
changeset | 88 | |
| 32295 
400cc493d466
renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
 wenzelm parents: 
32286diff
changeset | 89 | (* portable wrappers *) | 
| 
400cc493d466
renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
 wenzelm parents: 
32286diff
changeset | 90 | |
| 
400cc493d466
renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
 wenzelm parents: 
32286diff
changeset | 91 | fun interruptible f x = with_attributes public_interrupts (fn _ => f x); | 
| 32286 
1fb5db48002d
added Multithreading.sync_wait, which turns enabled interrupts to sync ones, to ensure that wait will reaquire its lock when interrupted;
 wenzelm parents: 
32230diff
changeset | 92 | |
| 32295 
400cc493d466
renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
 wenzelm parents: 
32286diff
changeset | 93 | fun uninterruptible f x = | 
| 
400cc493d466
renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
 wenzelm parents: 
32286diff
changeset | 94 | with_attributes no_interrupts (fn atts => | 
| 
400cc493d466
renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
 wenzelm parents: 
32286diff
changeset | 95 | f (fn g => fn y => with_attributes atts (fn _ => g y)) x); | 
| 24668 | 96 | |
| 24688 
a5754ca5c510
replaced interrupt_timeout by TimeLimit.timeLimit (available on SML/NJ and Poly/ML 5.1);
 wenzelm parents: 
24672diff
changeset | 97 | |
| 32286 
1fb5db48002d
added Multithreading.sync_wait, which turns enabled interrupts to sync ones, to ensure that wait will reaquire its lock when interrupted;
 wenzelm parents: 
32230diff
changeset | 98 | (* synchronous wait *) | 
| 
1fb5db48002d
added Multithreading.sync_wait, which turns enabled interrupts to sync ones, to ensure that wait will reaquire its lock when interrupted;
 wenzelm parents: 
32230diff
changeset | 99 | |
| 32295 
400cc493d466
renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
 wenzelm parents: 
32286diff
changeset | 100 | fun sync_wait opt_atts time cond lock = | 
| 
400cc493d466
renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
 wenzelm parents: 
32286diff
changeset | 101 | with_attributes | 
| 
400cc493d466
renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
 wenzelm parents: 
32286diff
changeset | 102 | (sync_interrupts (case opt_atts of SOME atts => atts | NONE => Thread.getAttributes ())) | 
| 
400cc493d466
renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
 wenzelm parents: 
32286diff
changeset | 103 | (fn _ => | 
| 
400cc493d466
renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
 wenzelm parents: 
32286diff
changeset | 104 | (case time of | 
| 
400cc493d466
renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
 wenzelm parents: 
32286diff
changeset | 105 | SOME t => Exn.Result (ConditionVar.waitUntil (cond, lock, t)) | 
| 
400cc493d466
renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
 wenzelm parents: 
32286diff
changeset | 106 | | NONE => (ConditionVar.wait (cond, lock); Exn.Result true)) | 
| 
400cc493d466
renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
 wenzelm parents: 
32286diff
changeset | 107 | handle exn => Exn.Exn exn); | 
| 
400cc493d466
renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
 wenzelm parents: 
32286diff
changeset | 108 | |
| 
400cc493d466
renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
 wenzelm parents: 
32286diff
changeset | 109 | |
| 
400cc493d466
renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
 wenzelm parents: 
32286diff
changeset | 110 | (* tracing *) | 
| 
400cc493d466
renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
 wenzelm parents: 
32286diff
changeset | 111 | |
| 32738 | 112 | val trace = Unsynchronized.ref 0; | 
| 32295 
400cc493d466
renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
 wenzelm parents: 
32286diff
changeset | 113 | |
| 
400cc493d466
renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
 wenzelm parents: 
32286diff
changeset | 114 | fun tracing level msg = | 
| 
400cc493d466
renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
 wenzelm parents: 
32286diff
changeset | 115 | if level > ! trace then () | 
| 
400cc493d466
renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
 wenzelm parents: 
32286diff
changeset | 116 | else uninterruptible (fn _ => fn () => | 
| 
400cc493d466
renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
 wenzelm parents: 
32286diff
changeset | 117 |     (TextIO.output (TextIO.stdErr, (">>> " ^ msg () ^ "\n")); TextIO.flushOut TextIO.stdErr)
 | 
| 
400cc493d466
renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
 wenzelm parents: 
32286diff
changeset | 118 | handle _ (*sic*) => ()) (); | 
| 
400cc493d466
renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
 wenzelm parents: 
32286diff
changeset | 119 | |
| 
400cc493d466
renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
 wenzelm parents: 
32286diff
changeset | 120 | fun tracing_time detailed time = | 
| 
400cc493d466
renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
 wenzelm parents: 
32286diff
changeset | 121 | tracing | 
| 
400cc493d466
renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
 wenzelm parents: 
32286diff
changeset | 122 | (if not detailed then 5 | 
| 
400cc493d466
renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
 wenzelm parents: 
32286diff
changeset | 123 | else if Time.>= (time, Time.fromMilliseconds 1000) then 1 | 
| 
400cc493d466
renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
 wenzelm parents: 
32286diff
changeset | 124 | else if Time.>= (time, Time.fromMilliseconds 100) then 2 | 
| 
400cc493d466
renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
 wenzelm parents: 
32286diff
changeset | 125 | else if Time.>= (time, Time.fromMilliseconds 10) then 3 | 
| 
400cc493d466
renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
 wenzelm parents: 
32286diff
changeset | 126 | else if Time.>= (time, Time.fromMilliseconds 1) then 4 else 5); | 
| 
400cc493d466
renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
 wenzelm parents: 
32286diff
changeset | 127 | |
| 
400cc493d466
renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
 wenzelm parents: 
32286diff
changeset | 128 | fun real_time f x = | 
| 32286 
1fb5db48002d
added Multithreading.sync_wait, which turns enabled interrupts to sync ones, to ensure that wait will reaquire its lock when interrupted;
 wenzelm parents: 
32230diff
changeset | 129 | let | 
| 32295 
400cc493d466
renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
 wenzelm parents: 
32286diff
changeset | 130 | val timer = Timer.startRealTimer (); | 
| 
400cc493d466
renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
 wenzelm parents: 
32286diff
changeset | 131 | val () = f x; | 
| 
400cc493d466
renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
 wenzelm parents: 
32286diff
changeset | 132 | val time = Timer.checkRealTimer timer; | 
| 
400cc493d466
renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
 wenzelm parents: 
32286diff
changeset | 133 | in time end; | 
| 32286 
1fb5db48002d
added Multithreading.sync_wait, which turns enabled interrupts to sync ones, to ensure that wait will reaquire its lock when interrupted;
 wenzelm parents: 
32230diff
changeset | 134 | |
| 
1fb5db48002d
added Multithreading.sync_wait, which turns enabled interrupts to sync ones, to ensure that wait will reaquire its lock when interrupted;
 wenzelm parents: 
32230diff
changeset | 135 | |
| 24688 
a5754ca5c510
replaced interrupt_timeout by TimeLimit.timeLimit (available on SML/NJ and Poly/ML 5.1);
 wenzelm parents: 
24672diff
changeset | 136 | (* execution with time limit *) | 
| 
a5754ca5c510
replaced interrupt_timeout by TimeLimit.timeLimit (available on SML/NJ and Poly/ML 5.1);
 wenzelm parents: 
24672diff
changeset | 137 | |
| 
a5754ca5c510
replaced interrupt_timeout by TimeLimit.timeLimit (available on SML/NJ and Poly/ML 5.1);
 wenzelm parents: 
24672diff
changeset | 138 | structure TimeLimit = | 
| 
a5754ca5c510
replaced interrupt_timeout by TimeLimit.timeLimit (available on SML/NJ and Poly/ML 5.1);
 wenzelm parents: 
24672diff
changeset | 139 | struct | 
| 
a5754ca5c510
replaced interrupt_timeout by TimeLimit.timeLimit (available on SML/NJ and Poly/ML 5.1);
 wenzelm parents: 
24672diff
changeset | 140 | |
| 
a5754ca5c510
replaced interrupt_timeout by TimeLimit.timeLimit (available on SML/NJ and Poly/ML 5.1);
 wenzelm parents: 
24672diff
changeset | 141 | exception TimeOut; | 
| 
a5754ca5c510
replaced interrupt_timeout by TimeLimit.timeLimit (available on SML/NJ and Poly/ML 5.1);
 wenzelm parents: 
24672diff
changeset | 142 | |
| 26083 
abb3f8dd66dc
removed managed_process (cf. General/shell_process.ML);
 wenzelm parents: 
26074diff
changeset | 143 | fun timeLimit time f x = uninterruptible (fn restore_attributes => fn () => | 
| 
abb3f8dd66dc
removed managed_process (cf. General/shell_process.ML);
 wenzelm parents: 
26074diff
changeset | 144 | let | 
| 
abb3f8dd66dc
removed managed_process (cf. General/shell_process.ML);
 wenzelm parents: 
26074diff
changeset | 145 | val worker = Thread.self (); | 
| 32738 | 146 | val timeout = Unsynchronized.ref false; | 
| 26083 
abb3f8dd66dc
removed managed_process (cf. General/shell_process.ML);
 wenzelm parents: 
26074diff
changeset | 147 | val watchdog = Thread.fork (fn () => | 
| 
abb3f8dd66dc
removed managed_process (cf. General/shell_process.ML);
 wenzelm parents: 
26074diff
changeset | 148 | (OS.Process.sleep time; timeout := true; Thread.interrupt worker), []); | 
| 24688 
a5754ca5c510
replaced interrupt_timeout by TimeLimit.timeLimit (available on SML/NJ and Poly/ML 5.1);
 wenzelm parents: 
24672diff
changeset | 149 | |
| 26083 
abb3f8dd66dc
removed managed_process (cf. General/shell_process.ML);
 wenzelm parents: 
26074diff
changeset | 150 | val result = Exn.capture (restore_attributes f) x; | 
| 28443 | 151 | val was_timeout = (case result of Exn.Exn Exn.Interrupt => ! timeout | _ => false); | 
| 24688 
a5754ca5c510
replaced interrupt_timeout by TimeLimit.timeLimit (available on SML/NJ and Poly/ML 5.1);
 wenzelm parents: 
24672diff
changeset | 152 | |
| 26083 
abb3f8dd66dc
removed managed_process (cf. General/shell_process.ML);
 wenzelm parents: 
26074diff
changeset | 153 | val _ = Thread.interrupt watchdog handle Thread _ => (); | 
| 
abb3f8dd66dc
removed managed_process (cf. General/shell_process.ML);
 wenzelm parents: 
26074diff
changeset | 154 | in if was_timeout then raise TimeOut else Exn.release result end) (); | 
| 24688 
a5754ca5c510
replaced interrupt_timeout by TimeLimit.timeLimit (available on SML/NJ and Poly/ML 5.1);
 wenzelm parents: 
24672diff
changeset | 155 | |
| 
a5754ca5c510
replaced interrupt_timeout by TimeLimit.timeLimit (available on SML/NJ and Poly/ML 5.1);
 wenzelm parents: 
24672diff
changeset | 156 | end; | 
| 24668 | 157 | |
| 24069 | 158 | |
| 35010 
d6e492cea6e4
renamed system/system_out to bash/bash_output -- to emphasized that this is really GNU bash, not some undefined POSIX sh;
 wenzelm parents: 
33219diff
changeset | 159 | (* GNU bash processes, with propagation of interrupts *) | 
| 26098 
b59d33f73aed
added system_out (back to multithreaded version -- still suffers from non-interruptible wait in Poly/ML 5.1);
 wenzelm parents: 
26083diff
changeset | 160 | |
| 35010 
d6e492cea6e4
renamed system/system_out to bash/bash_output -- to emphasized that this is really GNU bash, not some undefined POSIX sh;
 wenzelm parents: 
33219diff
changeset | 161 | fun bash_output script = with_attributes no_interrupts (fn orig_atts => | 
| 26098 
b59d33f73aed
added system_out (back to multithreaded version -- still suffers from non-interruptible wait in Poly/ML 5.1);
 wenzelm parents: 
26083diff
changeset | 162 | let | 
| 
b59d33f73aed
added system_out (back to multithreaded version -- still suffers from non-interruptible wait in Poly/ML 5.1);
 wenzelm parents: 
26083diff
changeset | 163 | val script_name = OS.FileSys.tmpName (); | 
| 
b59d33f73aed
added system_out (back to multithreaded version -- still suffers from non-interruptible wait in Poly/ML 5.1);
 wenzelm parents: 
26083diff
changeset | 164 | val _ = write_file script_name script; | 
| 
b59d33f73aed
added system_out (back to multithreaded version -- still suffers from non-interruptible wait in Poly/ML 5.1);
 wenzelm parents: 
26083diff
changeset | 165 | |
| 
b59d33f73aed
added system_out (back to multithreaded version -- still suffers from non-interruptible wait in Poly/ML 5.1);
 wenzelm parents: 
26083diff
changeset | 166 | val pid_name = OS.FileSys.tmpName (); | 
| 
b59d33f73aed
added system_out (back to multithreaded version -- still suffers from non-interruptible wait in Poly/ML 5.1);
 wenzelm parents: 
26083diff
changeset | 167 | val output_name = OS.FileSys.tmpName (); | 
| 
b59d33f73aed
added system_out (back to multithreaded version -- still suffers from non-interruptible wait in Poly/ML 5.1);
 wenzelm parents: 
26083diff
changeset | 168 | |
| 
b59d33f73aed
added system_out (back to multithreaded version -- still suffers from non-interruptible wait in Poly/ML 5.1);
 wenzelm parents: 
26083diff
changeset | 169 | (*result state*) | 
| 
b59d33f73aed
added system_out (back to multithreaded version -- still suffers from non-interruptible wait in Poly/ML 5.1);
 wenzelm parents: 
26083diff
changeset | 170 | datatype result = Wait | Signal | Result of int; | 
| 32738 | 171 | val result = Unsynchronized.ref Wait; | 
| 32295 
400cc493d466
renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
 wenzelm parents: 
32286diff
changeset | 172 | val lock = Mutex.mutex (); | 
| 
400cc493d466
renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
 wenzelm parents: 
32286diff
changeset | 173 | val cond = ConditionVar.conditionVar (); | 
| 26098 
b59d33f73aed
added system_out (back to multithreaded version -- still suffers from non-interruptible wait in Poly/ML 5.1);
 wenzelm parents: 
26083diff
changeset | 174 | fun set_result res = | 
| 32295 
400cc493d466
renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
 wenzelm parents: 
32286diff
changeset | 175 | (Mutex.lock lock; result := res; ConditionVar.signal cond; Mutex.unlock lock); | 
| 26098 
b59d33f73aed
added system_out (back to multithreaded version -- still suffers from non-interruptible wait in Poly/ML 5.1);
 wenzelm parents: 
26083diff
changeset | 176 | |
| 32295 
400cc493d466
renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
 wenzelm parents: 
32286diff
changeset | 177 | val _ = Mutex.lock lock; | 
| 26098 
b59d33f73aed
added system_out (back to multithreaded version -- still suffers from non-interruptible wait in Poly/ML 5.1);
 wenzelm parents: 
26083diff
changeset | 178 | |
| 
b59d33f73aed
added system_out (back to multithreaded version -- still suffers from non-interruptible wait in Poly/ML 5.1);
 wenzelm parents: 
26083diff
changeset | 179 | (*system thread*) | 
| 
b59d33f73aed
added system_out (back to multithreaded version -- still suffers from non-interruptible wait in Poly/ML 5.1);
 wenzelm parents: 
26083diff
changeset | 180 | val system_thread = Thread.fork (fn () => | 
| 
b59d33f73aed
added system_out (back to multithreaded version -- still suffers from non-interruptible wait in Poly/ML 5.1);
 wenzelm parents: 
26083diff
changeset | 181 | let | 
| 
b59d33f73aed
added system_out (back to multithreaded version -- still suffers from non-interruptible wait in Poly/ML 5.1);
 wenzelm parents: 
26083diff
changeset | 182 | val status = | 
| 35023 
16f9877abf0b
modernized perl scripts: prefer standalone executables;
 wenzelm parents: 
35010diff
changeset | 183 |           OS.Process.system ("exec \"$ISABELLE_HOME/lib/scripts/bash\" group " ^
 | 
| 26098 
b59d33f73aed
added system_out (back to multithreaded version -- still suffers from non-interruptible wait in Poly/ML 5.1);
 wenzelm parents: 
26083diff
changeset | 184 | script_name ^ " " ^ pid_name ^ " " ^ output_name); | 
| 
b59d33f73aed
added system_out (back to multithreaded version -- still suffers from non-interruptible wait in Poly/ML 5.1);
 wenzelm parents: 
26083diff
changeset | 185 | val res = | 
| 
b59d33f73aed
added system_out (back to multithreaded version -- still suffers from non-interruptible wait in Poly/ML 5.1);
 wenzelm parents: 
26083diff
changeset | 186 | (case Posix.Process.fromStatus status of | 
| 
b59d33f73aed
added system_out (back to multithreaded version -- still suffers from non-interruptible wait in Poly/ML 5.1);
 wenzelm parents: 
26083diff
changeset | 187 | Posix.Process.W_EXITED => Result 0 | 
| 
b59d33f73aed
added system_out (back to multithreaded version -- still suffers from non-interruptible wait in Poly/ML 5.1);
 wenzelm parents: 
26083diff
changeset | 188 | | Posix.Process.W_EXITSTATUS 0wx82 => Signal | 
| 
b59d33f73aed
added system_out (back to multithreaded version -- still suffers from non-interruptible wait in Poly/ML 5.1);
 wenzelm parents: 
26083diff
changeset | 189 | | Posix.Process.W_EXITSTATUS w => Result (Word8.toInt w) | 
| 
b59d33f73aed
added system_out (back to multithreaded version -- still suffers from non-interruptible wait in Poly/ML 5.1);
 wenzelm parents: 
26083diff
changeset | 190 | | Posix.Process.W_SIGNALED s => | 
| 
b59d33f73aed
added system_out (back to multithreaded version -- still suffers from non-interruptible wait in Poly/ML 5.1);
 wenzelm parents: 
26083diff
changeset | 191 | if s = Posix.Signal.int then Signal | 
| 
b59d33f73aed
added system_out (back to multithreaded version -- still suffers from non-interruptible wait in Poly/ML 5.1);
 wenzelm parents: 
26083diff
changeset | 192 | else Result (256 + LargeWord.toInt (Posix.Signal.toWord s)) | 
| 
b59d33f73aed
added system_out (back to multithreaded version -- still suffers from non-interruptible wait in Poly/ML 5.1);
 wenzelm parents: 
26083diff
changeset | 193 | | Posix.Process.W_STOPPED s => Result (512 + LargeWord.toInt (Posix.Signal.toWord s))); | 
| 28398 | 194 | in set_result res end handle _ (*sic*) => set_result (Result 2), []); | 
| 26098 
b59d33f73aed
added system_out (back to multithreaded version -- still suffers from non-interruptible wait in Poly/ML 5.1);
 wenzelm parents: 
26083diff
changeset | 195 | |
| 
b59d33f73aed
added system_out (back to multithreaded version -- still suffers from non-interruptible wait in Poly/ML 5.1);
 wenzelm parents: 
26083diff
changeset | 196 | (*main thread -- proxy for interrupts*) | 
| 
b59d33f73aed
added system_out (back to multithreaded version -- still suffers from non-interruptible wait in Poly/ML 5.1);
 wenzelm parents: 
26083diff
changeset | 197 | fun kill n = | 
| 
b59d33f73aed
added system_out (back to multithreaded version -- still suffers from non-interruptible wait in Poly/ML 5.1);
 wenzelm parents: 
26083diff
changeset | 198 | (case Int.fromString (read_file pid_name) of | 
| 
b59d33f73aed
added system_out (back to multithreaded version -- still suffers from non-interruptible wait in Poly/ML 5.1);
 wenzelm parents: 
26083diff
changeset | 199 | SOME pid => | 
| 
b59d33f73aed
added system_out (back to multithreaded version -- still suffers from non-interruptible wait in Poly/ML 5.1);
 wenzelm parents: 
26083diff
changeset | 200 | Posix.Process.kill | 
| 
b59d33f73aed
added system_out (back to multithreaded version -- still suffers from non-interruptible wait in Poly/ML 5.1);
 wenzelm parents: 
26083diff
changeset | 201 | (Posix.Process.K_GROUP (Posix.Process.wordToPid (LargeWord.fromInt pid)), | 
| 
b59d33f73aed
added system_out (back to multithreaded version -- still suffers from non-interruptible wait in Poly/ML 5.1);
 wenzelm parents: 
26083diff
changeset | 202 | Posix.Signal.int) | 
| 
b59d33f73aed
added system_out (back to multithreaded version -- still suffers from non-interruptible wait in Poly/ML 5.1);
 wenzelm parents: 
26083diff
changeset | 203 | | NONE => ()) | 
| 
b59d33f73aed
added system_out (back to multithreaded version -- still suffers from non-interruptible wait in Poly/ML 5.1);
 wenzelm parents: 
26083diff
changeset | 204 | handle OS.SysErr _ => () | IO.Io _ => | 
| 
b59d33f73aed
added system_out (back to multithreaded version -- still suffers from non-interruptible wait in Poly/ML 5.1);
 wenzelm parents: 
26083diff
changeset | 205 | (OS.Process.sleep (Time.fromMilliseconds 100); if n > 0 then kill (n - 1) else ()); | 
| 
b59d33f73aed
added system_out (back to multithreaded version -- still suffers from non-interruptible wait in Poly/ML 5.1);
 wenzelm parents: 
26083diff
changeset | 206 | |
| 32295 
400cc493d466
renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
 wenzelm parents: 
32286diff
changeset | 207 | val _ = | 
| 
400cc493d466
renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
 wenzelm parents: 
32286diff
changeset | 208 | while ! result = Wait do | 
| 
400cc493d466
renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
 wenzelm parents: 
32286diff
changeset | 209 | let val res = | 
| 
400cc493d466
renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
 wenzelm parents: 
32286diff
changeset | 210 | sync_wait (SOME orig_atts) | 
| 
400cc493d466
renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
 wenzelm parents: 
32286diff
changeset | 211 | (SOME (Time.+ (Time.now (), Time.fromMilliseconds 100))) cond lock | 
| 
400cc493d466
renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
 wenzelm parents: 
32286diff
changeset | 212 | in case res of Exn.Exn Exn.Interrupt => kill 10 | _ => () end; | 
| 26098 
b59d33f73aed
added system_out (back to multithreaded version -- still suffers from non-interruptible wait in Poly/ML 5.1);
 wenzelm parents: 
26083diff
changeset | 213 | |
| 
b59d33f73aed
added system_out (back to multithreaded version -- still suffers from non-interruptible wait in Poly/ML 5.1);
 wenzelm parents: 
26083diff
changeset | 214 | (*cleanup*) | 
| 
b59d33f73aed
added system_out (back to multithreaded version -- still suffers from non-interruptible wait in Poly/ML 5.1);
 wenzelm parents: 
26083diff
changeset | 215 | val output = read_file output_name handle IO.Io _ => ""; | 
| 
b59d33f73aed
added system_out (back to multithreaded version -- still suffers from non-interruptible wait in Poly/ML 5.1);
 wenzelm parents: 
26083diff
changeset | 216 | val _ = OS.FileSys.remove script_name handle OS.SysErr _ => (); | 
| 
b59d33f73aed
added system_out (back to multithreaded version -- still suffers from non-interruptible wait in Poly/ML 5.1);
 wenzelm parents: 
26083diff
changeset | 217 | val _ = OS.FileSys.remove pid_name handle OS.SysErr _ => (); | 
| 
b59d33f73aed
added system_out (back to multithreaded version -- still suffers from non-interruptible wait in Poly/ML 5.1);
 wenzelm parents: 
26083diff
changeset | 218 | val _ = OS.FileSys.remove output_name handle OS.SysErr _ => (); | 
| 
b59d33f73aed
added system_out (back to multithreaded version -- still suffers from non-interruptible wait in Poly/ML 5.1);
 wenzelm parents: 
26083diff
changeset | 219 | val _ = Thread.interrupt system_thread handle Thread _ => (); | 
| 28443 | 220 | val rc = (case ! result of Signal => raise Exn.Interrupt | Result rc => rc); | 
| 32295 
400cc493d466
renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
 wenzelm parents: 
32286diff
changeset | 221 | in (output, rc) end); | 
| 26098 
b59d33f73aed
added system_out (back to multithreaded version -- still suffers from non-interruptible wait in Poly/ML 5.1);
 wenzelm parents: 
26083diff
changeset | 222 | |
| 
b59d33f73aed
added system_out (back to multithreaded version -- still suffers from non-interruptible wait in Poly/ML 5.1);
 wenzelm parents: 
26083diff
changeset | 223 | |
| 23961 | 224 | (* critical section -- may be nested within the same thread *) | 
| 225 | ||
| 226 | local | |
| 227 | ||
| 24063 | 228 | val critical_lock = Mutex.mutex (); | 
| 32738 | 229 | val critical_thread = Unsynchronized.ref (NONE: Thread.thread option); | 
| 230 | val critical_name = Unsynchronized.ref ""; | |
| 24063 | 231 | |
| 23961 | 232 | in | 
| 233 | ||
| 234 | fun self_critical () = | |
| 235 | (case ! critical_thread of | |
| 236 | NONE => false | |
| 28150 | 237 | | SOME t => Thread.equal (t, Thread.self ())); | 
| 23961 | 238 | |
| 23991 | 239 | fun NAMED_CRITICAL name e = | 
| 23961 | 240 | if self_critical () then e () | 
| 241 | else | |
| 32184 | 242 | Exn.release (uninterruptible (fn restore_attributes => fn () => | 
| 24208 | 243 | let | 
| 244 | val name' = ! critical_name; | |
| 245 | val _ = | |
| 246 | if Mutex.trylock critical_lock then () | |
| 247 | else | |
| 248 | let | |
| 32184 | 249 | val _ = tracing 5 (fn () => "CRITICAL" ^ show name ^ show' name' ^ ": waiting"); | 
| 32185 | 250 | val time = real_time Mutex.lock critical_lock; | 
| 32186 | 251 | val _ = tracing_time true time (fn () => | 
| 24208 | 252 | "CRITICAL" ^ show name ^ show' name' ^ ": passed after " ^ Time.toString time); | 
| 253 | in () end; | |
| 254 | val _ = critical_thread := SOME (Thread.self ()); | |
| 255 | val _ = critical_name := name; | |
| 26083 
abb3f8dd66dc
removed managed_process (cf. General/shell_process.ML);
 wenzelm parents: 
26074diff
changeset | 256 | val result = Exn.capture (restore_attributes e) (); | 
| 24208 | 257 | val _ = critical_name := ""; | 
| 258 | val _ = critical_thread := NONE; | |
| 259 | val _ = Mutex.unlock critical_lock; | |
| 32184 | 260 | in result end) ()); | 
| 23961 | 261 | |
| 23991 | 262 | fun CRITICAL e = NAMED_CRITICAL "" e; | 
| 23981 | 263 | |
| 23961 | 264 | end; | 
| 265 | ||
| 23973 | 266 | |
| 25704 | 267 | (* serial numbers *) | 
| 268 | ||
| 269 | local | |
| 270 | ||
| 271 | val serial_lock = Mutex.mutex (); | |
| 32738 | 272 | val serial_count = Unsynchronized.ref 0; | 
| 25704 | 273 | |
| 274 | in | |
| 275 | ||
| 276 | val serial = uninterruptible (fn _ => fn () => | |
| 277 | let | |
| 278 | val _ = Mutex.lock serial_lock; | |
| 28124 
10a1f1f4c6ae
moved Multithreading.task/schedule to Concurrent/schedule.ML;
 wenzelm parents: 
26504diff
changeset | 279 | val _ = serial_count := ! serial_count + 1; | 
| 
10a1f1f4c6ae
moved Multithreading.task/schedule to Concurrent/schedule.ML;
 wenzelm parents: 
26504diff
changeset | 280 | val res = ! serial_count; | 
| 25704 | 281 | val _ = Mutex.unlock serial_lock; | 
| 282 | in res end); | |
| 283 | ||
| 23961 | 284 | end; | 
| 285 | ||
| 25704 | 286 | end; | 
| 24688 
a5754ca5c510
replaced interrupt_timeout by TimeLimit.timeLimit (available on SML/NJ and Poly/ML 5.1);
 wenzelm parents: 
24672diff
changeset | 287 | |
| 32286 
1fb5db48002d
added Multithreading.sync_wait, which turns enabled interrupts to sync ones, to ensure that wait will reaquire its lock when interrupted;
 wenzelm parents: 
32230diff
changeset | 288 | structure Basic_Multithreading: BASIC_MULTITHREADING = Multithreading; | 
| 
1fb5db48002d
added Multithreading.sync_wait, which turns enabled interrupts to sync ones, to ensure that wait will reaquire its lock when interrupted;
 wenzelm parents: 
32230diff
changeset | 289 | open Basic_Multithreading; |