author | wenzelm |
Tue, 12 Aug 2014 17:28:07 +0200 | |
changeset 57915 | 448325de6e4f |
parent 56831 | e3ccf0809d51 |
child 57916 | 2c2c24dbf0a4 |
permissions | -rw-r--r-- |
43283 | 1 |
/* Title: Pure/System/isabelle_process.scala |
27949
6eb0327c0b9b
Isabelle process management -- always reactive due to multi-threaded I/O.
wenzelm
parents:
diff
changeset
|
2 |
Author: Makarius |
27963 | 3 |
Options: :folding=explicit:collapseFolds=1: |
27949
6eb0327c0b9b
Isabelle process management -- always reactive due to multi-threaded I/O.
wenzelm
parents:
diff
changeset
|
4 |
|
6eb0327c0b9b
Isabelle process management -- always reactive due to multi-threaded I/O.
wenzelm
parents:
diff
changeset
|
5 |
Isabelle process management -- always reactive due to multi-threaded I/O. |
6eb0327c0b9b
Isabelle process management -- always reactive due to multi-threaded I/O.
wenzelm
parents:
diff
changeset
|
6 |
*/ |
6eb0327c0b9b
Isabelle process management -- always reactive due to multi-threaded I/O.
wenzelm
parents:
diff
changeset
|
7 |
|
6eb0327c0b9b
Isabelle process management -- always reactive due to multi-threaded I/O.
wenzelm
parents:
diff
changeset
|
8 |
package isabelle |
6eb0327c0b9b
Isabelle process management -- always reactive due to multi-threaded I/O.
wenzelm
parents:
diff
changeset
|
9 |
|
55618 | 10 |
|
56703 | 11 |
import java.io.{InputStream, OutputStream, BufferedOutputStream, IOException} |
27949
6eb0327c0b9b
Isabelle process management -- always reactive due to multi-threaded I/O.
wenzelm
parents:
diff
changeset
|
12 |
|
27973
18d02c0b90b6
moved class Result into static object, removed dynamic tree method;
wenzelm
parents:
27963
diff
changeset
|
13 |
|
45055
55274f7e306b
explicit option for socket vs. fifo communication;
wenzelm
parents:
45027
diff
changeset
|
14 |
class Isabelle_Process( |
56831
e3ccf0809d51
prefer scala.Console with its support for thread-local redirection;
wenzelm
parents:
56794
diff
changeset
|
15 |
receiver: Prover.Message => Unit = Console.println(_), |
56387 | 16 |
prover_args: List[String] = Nil) |
29192 | 17 |
{ |
57915
448325de6e4f
more abstract Prover.System_Process, which allows to bypass Isabelle_System.Managed_Process;
wenzelm
parents:
56831
diff
changeset
|
18 |
/* system process -- default implementation */ |
448325de6e4f
more abstract Prover.System_Process, which allows to bypass Isabelle_System.Managed_Process;
wenzelm
parents:
56831
diff
changeset
|
19 |
|
448325de6e4f
more abstract Prover.System_Process, which allows to bypass Isabelle_System.Managed_Process;
wenzelm
parents:
56831
diff
changeset
|
20 |
protected val system_process: Prover.System_Process = |
448325de6e4f
more abstract Prover.System_Process, which allows to bypass Isabelle_System.Managed_Process;
wenzelm
parents:
56831
diff
changeset
|
21 |
{ |
448325de6e4f
more abstract Prover.System_Process, which allows to bypass Isabelle_System.Managed_Process;
wenzelm
parents:
56831
diff
changeset
|
22 |
val system_channel = System_Channel() |
448325de6e4f
more abstract Prover.System_Process, which allows to bypass Isabelle_System.Managed_Process;
wenzelm
parents:
56831
diff
changeset
|
23 |
try { |
448325de6e4f
more abstract Prover.System_Process, which allows to bypass Isabelle_System.Managed_Process;
wenzelm
parents:
56831
diff
changeset
|
24 |
val cmdline = |
448325de6e4f
more abstract Prover.System_Process, which allows to bypass Isabelle_System.Managed_Process;
wenzelm
parents:
56831
diff
changeset
|
25 |
Isabelle_System.getenv_strict("ISABELLE_PROCESS") :: |
448325de6e4f
more abstract Prover.System_Process, which allows to bypass Isabelle_System.Managed_Process;
wenzelm
parents:
56831
diff
changeset
|
26 |
(system_channel.prover_args ::: prover_args) |
448325de6e4f
more abstract Prover.System_Process, which allows to bypass Isabelle_System.Managed_Process;
wenzelm
parents:
56831
diff
changeset
|
27 |
val process = |
448325de6e4f
more abstract Prover.System_Process, which allows to bypass Isabelle_System.Managed_Process;
wenzelm
parents:
56831
diff
changeset
|
28 |
new Isabelle_System.Managed_Process(null, null, false, cmdline: _*) with |
448325de6e4f
more abstract Prover.System_Process, which allows to bypass Isabelle_System.Managed_Process;
wenzelm
parents:
56831
diff
changeset
|
29 |
Prover.System_Process { def channel = system_channel } |
448325de6e4f
more abstract Prover.System_Process, which allows to bypass Isabelle_System.Managed_Process;
wenzelm
parents:
56831
diff
changeset
|
30 |
process.stdin.close |
448325de6e4f
more abstract Prover.System_Process, which allows to bypass Isabelle_System.Managed_Process;
wenzelm
parents:
56831
diff
changeset
|
31 |
process |
448325de6e4f
more abstract Prover.System_Process, which allows to bypass Isabelle_System.Managed_Process;
wenzelm
parents:
56831
diff
changeset
|
32 |
} |
448325de6e4f
more abstract Prover.System_Process, which allows to bypass Isabelle_System.Managed_Process;
wenzelm
parents:
56831
diff
changeset
|
33 |
catch { case exn @ ERROR(_) => system_channel.accepted(); throw(exn) } |
448325de6e4f
more abstract Prover.System_Process, which allows to bypass Isabelle_System.Managed_Process;
wenzelm
parents:
56831
diff
changeset
|
34 |
} |
448325de6e4f
more abstract Prover.System_Process, which allows to bypass Isabelle_System.Managed_Process;
wenzelm
parents:
56831
diff
changeset
|
35 |
|
448325de6e4f
more abstract Prover.System_Process, which allows to bypass Isabelle_System.Managed_Process;
wenzelm
parents:
56831
diff
changeset
|
36 |
|
56387 | 37 |
/* text and tree data */ |
48705
dd32321d6eef
tuned signature -- slightly more abstract text representation of prover process;
wenzelm
parents:
48355
diff
changeset
|
38 |
|
dd32321d6eef
tuned signature -- slightly more abstract text representation of prover process;
wenzelm
parents:
48355
diff
changeset
|
39 |
def encode(s: String): String = Symbol.encode(s) |
dd32321d6eef
tuned signature -- slightly more abstract text representation of prover process;
wenzelm
parents:
48355
diff
changeset
|
40 |
def decode(s: String): String = Symbol.decode(s) |
dd32321d6eef
tuned signature -- slightly more abstract text representation of prover process;
wenzelm
parents:
48355
diff
changeset
|
41 |
|
57915
448325de6e4f
more abstract Prover.System_Process, which allows to bypass Isabelle_System.Managed_Process;
wenzelm
parents:
56831
diff
changeset
|
42 |
val xml_cache: XML.Cache = new XML.Cache() |
48705
dd32321d6eef
tuned signature -- slightly more abstract text representation of prover process;
wenzelm
parents:
48355
diff
changeset
|
43 |
|
dd32321d6eef
tuned signature -- slightly more abstract text representation of prover process;
wenzelm
parents:
48355
diff
changeset
|
44 |
|
46772
be21f050eda4
tuned signature -- emphasize Isabelle_Process Input vs. Output;
wenzelm
parents:
46769
diff
changeset
|
45 |
/* output */ |
39573 | 46 |
|
46772
be21f050eda4
tuned signature -- emphasize Isabelle_Process Input vs. Output;
wenzelm
parents:
46769
diff
changeset
|
47 |
private def system_output(text: String) |
39573 | 48 |
{ |
56385 | 49 |
receiver(new Prover.Output(XML.Elem(Markup(Markup.SYSTEM, Nil), List(XML.Text(text))))) |
39573 | 50 |
} |
51 |
||
54442
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
wenzelm
parents:
54440
diff
changeset
|
52 |
private def protocol_output(props: Properties.T, bytes: Bytes) |
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
wenzelm
parents:
54440
diff
changeset
|
53 |
{ |
56385 | 54 |
receiver(new Prover.Protocol_Output(props, bytes)) |
54442
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
wenzelm
parents:
54440
diff
changeset
|
55 |
} |
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
wenzelm
parents:
54440
diff
changeset
|
56 |
|
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
wenzelm
parents:
54440
diff
changeset
|
57 |
private def output(kind: String, props: Properties.T, body: XML.Body) |
39573 | 58 |
{ |
57915
448325de6e4f
more abstract Prover.System_Process, which allows to bypass Isabelle_System.Managed_Process;
wenzelm
parents:
56831
diff
changeset
|
59 |
if (kind == Markup.INIT) system_process.channel.accepted() |
54442
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
wenzelm
parents:
54440
diff
changeset
|
60 |
|
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
wenzelm
parents:
54440
diff
changeset
|
61 |
val main = XML.Elem(Markup(kind, props), Protocol.clean_message(body)) |
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
wenzelm
parents:
54440
diff
changeset
|
62 |
val reports = Protocol.message_reports(props, body) |
56385 | 63 |
for (msg <- main :: reports) receiver(new Prover.Output(xml_cache.elem(msg))) |
39573 | 64 |
} |
65 |
||
48016
edbc8e8accd9
more explicit treatment of return code vs. session phase;
wenzelm
parents:
46774
diff
changeset
|
66 |
private def exit_message(rc: Int) |
39573 | 67 |
{ |
54442
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
wenzelm
parents:
54440
diff
changeset
|
68 |
output(Markup.EXIT, Markup.Return_Code(rc), List(XML.Text("Return code: " + rc.toString))) |
39573 | 69 |
} |
70 |
||
71 |
||
56387 | 72 |
|
39585
00be8711082f
main Isabelle_Process via Isabelle_System.Managed_Process;
wenzelm
parents:
39575
diff
changeset
|
73 |
/** process manager **/ |
39528
c01d89d18ff0
refined Isabelle_Process startup: emit \002 before rendezvous on fifos, more robust treatment of startup failure with timeout, do not quit() after main loop;
wenzelm
parents:
39526
diff
changeset
|
74 |
|
56387 | 75 |
private val (_, process_result) = |
57915
448325de6e4f
more abstract Prover.System_Process, which allows to bypass Isabelle_System.Managed_Process;
wenzelm
parents:
56831
diff
changeset
|
76 |
Simple_Thread.future("process_result") { system_process.join } |
39587
f84b70e3bb9c
more reactive handling of Isabelle_Process startup errors;
wenzelm
parents:
39585
diff
changeset
|
77 |
|
39585
00be8711082f
main Isabelle_Process via Isabelle_System.Managed_Process;
wenzelm
parents:
39575
diff
changeset
|
78 |
private def terminate_process() |
00be8711082f
main Isabelle_Process via Isabelle_System.Managed_Process;
wenzelm
parents:
39575
diff
changeset
|
79 |
{ |
57915
448325de6e4f
more abstract Prover.System_Process, which allows to bypass Isabelle_System.Managed_Process;
wenzelm
parents:
56831
diff
changeset
|
80 |
try { system_process.terminate } |
448325de6e4f
more abstract Prover.System_Process, which allows to bypass Isabelle_System.Managed_Process;
wenzelm
parents:
56831
diff
changeset
|
81 |
catch { |
448325de6e4f
more abstract Prover.System_Process, which allows to bypass Isabelle_System.Managed_Process;
wenzelm
parents:
56831
diff
changeset
|
82 |
case exn @ ERROR(_) => system_output("Failed to terminate prover process: " + exn.getMessage) |
448325de6e4f
more abstract Prover.System_Process, which allows to bypass Isabelle_System.Managed_Process;
wenzelm
parents:
56831
diff
changeset
|
83 |
} |
39585
00be8711082f
main Isabelle_Process via Isabelle_System.Managed_Process;
wenzelm
parents:
39575
diff
changeset
|
84 |
} |
39528
c01d89d18ff0
refined Isabelle_Process startup: emit \002 before rendezvous on fifos, more robust treatment of startup failure with timeout, do not quit() after main loop;
wenzelm
parents:
39526
diff
changeset
|
85 |
|
39585
00be8711082f
main Isabelle_Process via Isabelle_System.Managed_Process;
wenzelm
parents:
39575
diff
changeset
|
86 |
private val process_manager = Simple_Thread.fork("process_manager") |
39572 | 87 |
{ |
46548
c54a4a22501c
clarified initial process startup errors: recover image load failure message (cf. 2cb7e34f6096) and suppress accidental output from raw ML toplevel;
wenzelm
parents:
46121
diff
changeset
|
88 |
val (startup_failed, startup_errors) = |
39528
c01d89d18ff0
refined Isabelle_Process startup: emit \002 before rendezvous on fifos, more robust treatment of startup failure with timeout, do not quit() after main loop;
wenzelm
parents:
39526
diff
changeset
|
89 |
{ |
48020
a4f9957878ab
clarified prover startup: no timeout, read stderr more carefully;
wenzelm
parents:
48019
diff
changeset
|
90 |
var finished: Option[Boolean] = None |
39528
c01d89d18ff0
refined Isabelle_Process startup: emit \002 before rendezvous on fifos, more robust treatment of startup failure with timeout, do not quit() after main loop;
wenzelm
parents:
39526
diff
changeset
|
91 |
val result = new StringBuilder(100) |
57915
448325de6e4f
more abstract Prover.System_Process, which allows to bypass Isabelle_System.Managed_Process;
wenzelm
parents:
56831
diff
changeset
|
92 |
while (finished.isEmpty && (system_process.stderr.ready || !process_result.is_finished)) { |
448325de6e4f
more abstract Prover.System_Process, which allows to bypass Isabelle_System.Managed_Process;
wenzelm
parents:
56831
diff
changeset
|
93 |
while (finished.isEmpty && system_process.stderr.ready) { |
48020
a4f9957878ab
clarified prover startup: no timeout, read stderr more carefully;
wenzelm
parents:
48019
diff
changeset
|
94 |
try { |
57915
448325de6e4f
more abstract Prover.System_Process, which allows to bypass Isabelle_System.Managed_Process;
wenzelm
parents:
56831
diff
changeset
|
95 |
val c = system_process.stderr.read |
48020
a4f9957878ab
clarified prover startup: no timeout, read stderr more carefully;
wenzelm
parents:
48019
diff
changeset
|
96 |
if (c == 2) finished = Some(true) |
a4f9957878ab
clarified prover startup: no timeout, read stderr more carefully;
wenzelm
parents:
48019
diff
changeset
|
97 |
else result += c.toChar |
a4f9957878ab
clarified prover startup: no timeout, read stderr more carefully;
wenzelm
parents:
48019
diff
changeset
|
98 |
} |
a4f9957878ab
clarified prover startup: no timeout, read stderr more carefully;
wenzelm
parents:
48019
diff
changeset
|
99 |
catch { case _: IOException => finished = Some(false) } |
39528
c01d89d18ff0
refined Isabelle_Process startup: emit \002 before rendezvous on fifos, more robust treatment of startup failure with timeout, do not quit() after main loop;
wenzelm
parents:
39526
diff
changeset
|
100 |
} |
48020
a4f9957878ab
clarified prover startup: no timeout, read stderr more carefully;
wenzelm
parents:
48019
diff
changeset
|
101 |
Thread.sleep(10) |
39528
c01d89d18ff0
refined Isabelle_Process startup: emit \002 before rendezvous on fifos, more robust treatment of startup failure with timeout, do not quit() after main loop;
wenzelm
parents:
39526
diff
changeset
|
102 |
} |
39623 | 103 |
(finished.isEmpty || !finished.get, result.toString.trim) |
39528
c01d89d18ff0
refined Isabelle_Process startup: emit \002 before rendezvous on fifos, more robust treatment of startup failure with timeout, do not quit() after main loop;
wenzelm
parents:
39526
diff
changeset
|
104 |
} |
46772
be21f050eda4
tuned signature -- emphasize Isabelle_Process Input vs. Output;
wenzelm
parents:
46769
diff
changeset
|
105 |
if (startup_errors != "") system_output(startup_errors) |
39572 | 106 |
|
39528
c01d89d18ff0
refined Isabelle_Process startup: emit \002 before rendezvous on fifos, more robust treatment of startup failure with timeout, do not quit() after main loop;
wenzelm
parents:
39526
diff
changeset
|
107 |
if (startup_failed) { |
39585
00be8711082f
main Isabelle_Process via Isabelle_System.Managed_Process;
wenzelm
parents:
39575
diff
changeset
|
108 |
terminate_process() |
39587
f84b70e3bb9c
more reactive handling of Isabelle_Process startup errors;
wenzelm
parents:
39585
diff
changeset
|
109 |
process_result.join |
56794
a7c5c35b7125
clarified exit sequence: prover is reset afterwards, no more output messages;
wenzelm
parents:
56784
diff
changeset
|
110 |
exit_message(127) |
39528
c01d89d18ff0
refined Isabelle_Process startup: emit \002 before rendezvous on fifos, more robust treatment of startup failure with timeout, do not quit() after main loop;
wenzelm
parents:
39526
diff
changeset
|
111 |
} |
c01d89d18ff0
refined Isabelle_Process startup: emit \002 before rendezvous on fifos, more robust treatment of startup failure with timeout, do not quit() after main loop;
wenzelm
parents:
39526
diff
changeset
|
112 |
else { |
57915
448325de6e4f
more abstract Prover.System_Process, which allows to bypass Isabelle_System.Managed_Process;
wenzelm
parents:
56831
diff
changeset
|
113 |
val (command_stream, message_stream) = system_process.channel.rendezvous() |
39530
16adc476348f
Isabelle_Process: more robust rendezvous, even without proper blocking on open (Cygwin);
wenzelm
parents:
39528
diff
changeset
|
114 |
|
56700 | 115 |
command_input_init(command_stream) |
56697 | 116 |
val stdout = physical_output(false) |
117 |
val stderr = physical_output(true) |
|
118 |
val message = message_output(message_stream) |
|
119 |
||
39587
f84b70e3bb9c
more reactive handling of Isabelle_Process startup errors;
wenzelm
parents:
39585
diff
changeset
|
120 |
val rc = process_result.join |
46772
be21f050eda4
tuned signature -- emphasize Isabelle_Process Input vs. Output;
wenzelm
parents:
46769
diff
changeset
|
121 |
system_output("process terminated") |
56700 | 122 |
command_input_close() |
56697 | 123 |
for (thread <- List(stdout, stderr, message)) thread.join |
46772
be21f050eda4
tuned signature -- emphasize Isabelle_Process Input vs. Output;
wenzelm
parents:
46769
diff
changeset
|
124 |
system_output("process_manager terminated") |
48016
edbc8e8accd9
more explicit treatment of return code vs. session phase;
wenzelm
parents:
46774
diff
changeset
|
125 |
exit_message(rc) |
39528
c01d89d18ff0
refined Isabelle_Process startup: emit \002 before rendezvous on fifos, more robust treatment of startup failure with timeout, do not quit() after main loop;
wenzelm
parents:
39526
diff
changeset
|
126 |
} |
57915
448325de6e4f
more abstract Prover.System_Process, which allows to bypass Isabelle_System.Managed_Process;
wenzelm
parents:
56831
diff
changeset
|
127 |
system_process.channel.accepted() |
39528
c01d89d18ff0
refined Isabelle_Process startup: emit \002 before rendezvous on fifos, more robust treatment of startup failure with timeout, do not quit() after main loop;
wenzelm
parents:
39526
diff
changeset
|
128 |
} |
27973
18d02c0b90b6
moved class Result into static object, removed dynamic tree method;
wenzelm
parents:
27963
diff
changeset
|
129 |
|
39572 | 130 |
|
39585
00be8711082f
main Isabelle_Process via Isabelle_System.Managed_Process;
wenzelm
parents:
39575
diff
changeset
|
131 |
/* management methods */ |
27973
18d02c0b90b6
moved class Result into static object, removed dynamic tree method;
wenzelm
parents:
27963
diff
changeset
|
132 |
|
39585
00be8711082f
main Isabelle_Process via Isabelle_System.Managed_Process;
wenzelm
parents:
39575
diff
changeset
|
133 |
def join() { process_manager.join() } |
39528
c01d89d18ff0
refined Isabelle_Process startup: emit \002 before rendezvous on fifos, more robust treatment of startup failure with timeout, do not quit() after main loop;
wenzelm
parents:
39526
diff
changeset
|
134 |
|
39585
00be8711082f
main Isabelle_Process via Isabelle_System.Managed_Process;
wenzelm
parents:
39575
diff
changeset
|
135 |
def terminate() |
38270
71bb3c273dd1
native Isabelle_Process commands, based on efficient byte channel protocol for string lists;
wenzelm
parents:
38262
diff
changeset
|
136 |
{ |
56700 | 137 |
command_input_close() |
57915
448325de6e4f
more abstract Prover.System_Process, which allows to bypass Isabelle_System.Managed_Process;
wenzelm
parents:
56831
diff
changeset
|
138 |
system_output("Terminating prover process") |
39585
00be8711082f
main Isabelle_Process via Isabelle_System.Managed_Process;
wenzelm
parents:
39575
diff
changeset
|
139 |
terminate_process() |
27973
18d02c0b90b6
moved class Result into static object, removed dynamic tree method;
wenzelm
parents:
27963
diff
changeset
|
140 |
} |
18d02c0b90b6
moved class Result into static object, removed dynamic tree method;
wenzelm
parents:
27963
diff
changeset
|
141 |
|
27949
6eb0327c0b9b
Isabelle process management -- always reactive due to multi-threaded I/O.
wenzelm
parents:
diff
changeset
|
142 |
|
6eb0327c0b9b
Isabelle process management -- always reactive due to multi-threaded I/O.
wenzelm
parents:
diff
changeset
|
143 |
|
56714 | 144 |
/** process streams **/ |
27949
6eb0327c0b9b
Isabelle process management -- always reactive due to multi-threaded I/O.
wenzelm
parents:
diff
changeset
|
145 |
|
56700 | 146 |
/* command input */ |
147 |
||
148 |
private var command_input: Option[Consumer_Thread[List[Bytes]]] = None |
|
149 |
||
150 |
private def command_input_close(): Unit = command_input.foreach(_.shutdown) |
|
151 |
||
152 |
private def command_input_init(raw_stream: OutputStream) |
|
153 |
{ |
|
154 |
val name = "command_input" |
|
155 |
val stream = new BufferedOutputStream(raw_stream) |
|
156 |
command_input = |
|
157 |
Some( |
|
158 |
Consumer_Thread.fork(name)( |
|
159 |
consume = |
|
160 |
{ |
|
161 |
case chunks => |
|
162 |
try { |
|
163 |
Bytes(chunks.map(_.length).mkString("", ",", "\n")).write(stream) |
|
164 |
chunks.foreach(_.write(stream)) |
|
165 |
stream.flush |
|
166 |
true |
|
167 |
} |
|
168 |
catch { case e: IOException => system_output(name + ": " + e.getMessage); false } |
|
169 |
}, |
|
170 |
finish = { case () => stream.close; system_output(name + " terminated") } |
|
171 |
) |
|
172 |
) |
|
173 |
} |
|
174 |
||
175 |
||
46773 | 176 |
/* physical output */ |
27949
6eb0327c0b9b
Isabelle process management -- always reactive due to multi-threaded I/O.
wenzelm
parents:
diff
changeset
|
177 |
|
56697 | 178 |
private def physical_output(err: Boolean): Thread = |
39528
c01d89d18ff0
refined Isabelle_Process startup: emit \002 before rendezvous on fifos, more robust treatment of startup failure with timeout, do not quit() after main loop;
wenzelm
parents:
39526
diff
changeset
|
179 |
{ |
45633
2cb7e34f6096
retain stderr and include it in syslog, which is buffered and thus increases the chance that users see remains from crashes etc.;
wenzelm
parents:
45158
diff
changeset
|
180 |
val (name, reader, markup) = |
57915
448325de6e4f
more abstract Prover.System_Process, which allows to bypass Isabelle_System.Managed_Process;
wenzelm
parents:
56831
diff
changeset
|
181 |
if (err) ("standard_error", system_process.stderr, Markup.STDERR) |
448325de6e4f
more abstract Prover.System_Process, which allows to bypass Isabelle_System.Managed_Process;
wenzelm
parents:
56831
diff
changeset
|
182 |
else ("standard_output", system_process.stdout, Markup.STDOUT) |
45633
2cb7e34f6096
retain stderr and include it in syslog, which is buffered and thus increases the chance that users see remains from crashes etc.;
wenzelm
parents:
45158
diff
changeset
|
183 |
|
56697 | 184 |
Simple_Thread.fork(name) { |
46769 | 185 |
try { |
186 |
var result = new StringBuilder(100) |
|
187 |
var finished = false |
|
188 |
while (!finished) { |
|
28045 | 189 |
//{{{ |
190 |
var c = -1 |
|
191 |
var done = false |
|
45633
2cb7e34f6096
retain stderr and include it in syslog, which is buffered and thus increases the chance that users see remains from crashes etc.;
wenzelm
parents:
45158
diff
changeset
|
192 |
while (!done && (result.length == 0 || reader.ready)) { |
2cb7e34f6096
retain stderr and include it in syslog, which is buffered and thus increases the chance that users see remains from crashes etc.;
wenzelm
parents:
45158
diff
changeset
|
193 |
c = reader.read |
28045 | 194 |
if (c >= 0) result.append(c.asInstanceOf[Char]) |
195 |
else done = true |
|
196 |
} |
|
197 |
if (result.length > 0) { |
|
54442
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
wenzelm
parents:
54440
diff
changeset
|
198 |
output(markup, Nil, List(XML.Text(decode(result.toString)))) |
28045 | 199 |
result.length = 0 |
27949
6eb0327c0b9b
Isabelle process management -- always reactive due to multi-threaded I/O.
wenzelm
parents:
diff
changeset
|
200 |
} |
6eb0327c0b9b
Isabelle process management -- always reactive due to multi-threaded I/O.
wenzelm
parents:
diff
changeset
|
201 |
else { |
45633
2cb7e34f6096
retain stderr and include it in syslog, which is buffered and thus increases the chance that users see remains from crashes etc.;
wenzelm
parents:
45158
diff
changeset
|
202 |
reader.close |
28045 | 203 |
finished = true |
38270
71bb3c273dd1
native Isabelle_Process commands, based on efficient byte channel protocol for string lists;
wenzelm
parents:
38262
diff
changeset
|
204 |
} |
71bb3c273dd1
native Isabelle_Process commands, based on efficient byte channel protocol for string lists;
wenzelm
parents:
38262
diff
changeset
|
205 |
//}}} |
71bb3c273dd1
native Isabelle_Process commands, based on efficient byte channel protocol for string lists;
wenzelm
parents:
38262
diff
changeset
|
206 |
} |
71bb3c273dd1
native Isabelle_Process commands, based on efficient byte channel protocol for string lists;
wenzelm
parents:
38262
diff
changeset
|
207 |
} |
46772
be21f050eda4
tuned signature -- emphasize Isabelle_Process Input vs. Output;
wenzelm
parents:
46769
diff
changeset
|
208 |
catch { case e: IOException => system_output(name + ": " + e.getMessage) } |
be21f050eda4
tuned signature -- emphasize Isabelle_Process Input vs. Output;
wenzelm
parents:
46769
diff
changeset
|
209 |
system_output(name + " terminated") |
38270
71bb3c273dd1
native Isabelle_Process commands, based on efficient byte channel protocol for string lists;
wenzelm
parents:
38262
diff
changeset
|
210 |
} |
39528
c01d89d18ff0
refined Isabelle_Process startup: emit \002 before rendezvous on fifos, more robust treatment of startup failure with timeout, do not quit() after main loop;
wenzelm
parents:
39526
diff
changeset
|
211 |
} |
38270
71bb3c273dd1
native Isabelle_Process commands, based on efficient byte channel protocol for string lists;
wenzelm
parents:
38262
diff
changeset
|
212 |
|
71bb3c273dd1
native Isabelle_Process commands, based on efficient byte channel protocol for string lists;
wenzelm
parents:
38262
diff
changeset
|
213 |
|
38259
2b61c5e27399
distinguish proper Isabelle_Process INPUT vs. raw STDIN, tuned corresponding method names;
wenzelm
parents:
38253
diff
changeset
|
214 |
/* message output */ |
27949
6eb0327c0b9b
Isabelle process management -- always reactive due to multi-threaded I/O.
wenzelm
parents:
diff
changeset
|
215 |
|
56697 | 216 |
private def message_output(stream: InputStream): Thread = |
39526 | 217 |
{ |
218 |
class EOF extends Exception |
|
219 |
class Protocol_Error(msg: String) extends Exception(msg) |
|
38259
2b61c5e27399
distinguish proper Isabelle_Process INPUT vs. raw STDIN, tuned corresponding method names;
wenzelm
parents:
38253
diff
changeset
|
220 |
|
39528
c01d89d18ff0
refined Isabelle_Process startup: emit \002 before rendezvous on fifos, more robust treatment of startup failure with timeout, do not quit() after main loop;
wenzelm
parents:
39526
diff
changeset
|
221 |
val name = "message_output" |
56697 | 222 |
Simple_Thread.fork(name) { |
34100 | 223 |
val default_buffer = new Array[Byte](65536) |
224 |
var c = -1 |
|
27949
6eb0327c0b9b
Isabelle process management -- always reactive due to multi-threaded I/O.
wenzelm
parents:
diff
changeset
|
225 |
|
52799 | 226 |
def read_int(): Int = |
227 |
//{{{ |
|
34100 | 228 |
{ |
229 |
var n = 0 |
|
230 |
c = stream.read |
|
39526 | 231 |
if (c == -1) throw new EOF |
34100 | 232 |
while (48 <= c && c <= 57) { |
233 |
n = 10 * n + (c - 48) |
|
234 |
c = stream.read |
|
235 |
} |
|
52799 | 236 |
if (c != 10) |
237 |
throw new Protocol_Error("malformed header: expected integer followed by newline") |
|
238 |
else n |
|
239 |
} |
|
240 |
//}}} |
|
34100 | 241 |
|
54442
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
wenzelm
parents:
54440
diff
changeset
|
242 |
def read_chunk_bytes(): (Array[Byte], Int) = |
52799 | 243 |
//{{{ |
244 |
{ |
|
245 |
val n = read_int() |
|
34100 | 246 |
val buf = |
247 |
if (n <= default_buffer.size) default_buffer |
|
248 |
else new Array[Byte](n) |
|
249 |
||
250 |
var i = 0 |
|
251 |
var m = 0 |
|
252 |
do { |
|
253 |
m = stream.read(buf, i, n - i) |
|
39731
5cb0d7b0d601
bulk read: observe EOF protocol more carefully -- 0 counts as successful read;
wenzelm
parents:
39632
diff
changeset
|
254 |
if (m != -1) i += m |
52799 | 255 |
} |
256 |
while (m != -1 && n > i) |
|
34100 | 257 |
|
52799 | 258 |
if (i != n) |
259 |
throw new Protocol_Error("bad chunk (unexpected EOF after " + i + " of " + n + " bytes)") |
|
34100 | 260 |
|
54442
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
wenzelm
parents:
54440
diff
changeset
|
261 |
(buf, n) |
34100 | 262 |
} |
52799 | 263 |
//}}} |
34100 | 264 |
|
54442
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
wenzelm
parents:
54440
diff
changeset
|
265 |
def read_chunk(): XML.Body = |
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
wenzelm
parents:
54440
diff
changeset
|
266 |
{ |
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
wenzelm
parents:
54440
diff
changeset
|
267 |
val (buf, n) = read_chunk_bytes() |
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
wenzelm
parents:
54440
diff
changeset
|
268 |
YXML.parse_body_failsafe(UTF8.decode_chars(decode, buf, 0, n)) |
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
wenzelm
parents:
54440
diff
changeset
|
269 |
} |
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
wenzelm
parents:
54440
diff
changeset
|
270 |
|
46769 | 271 |
try { |
272 |
do { |
|
273 |
try { |
|
54442
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
wenzelm
parents:
54440
diff
changeset
|
274 |
val header = read_chunk() |
46769 | 275 |
header match { |
49677
c4e2762a265c
more direct message header: eliminated historic encoding via single letter;
wenzelm
parents:
49445
diff
changeset
|
276 |
case List(XML.Elem(Markup(name, props), Nil)) => |
c4e2762a265c
more direct message header: eliminated historic encoding via single letter;
wenzelm
parents:
49445
diff
changeset
|
277 |
val kind = name.intern |
54442
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
wenzelm
parents:
54440
diff
changeset
|
278 |
if (kind == Markup.PROTOCOL) { |
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
wenzelm
parents:
54440
diff
changeset
|
279 |
val (buf, n) = read_chunk_bytes() |
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
wenzelm
parents:
54440
diff
changeset
|
280 |
protocol_output(props, Bytes(buf, 0, n)) |
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
wenzelm
parents:
54440
diff
changeset
|
281 |
} |
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
wenzelm
parents:
54440
diff
changeset
|
282 |
else { |
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
wenzelm
parents:
54440
diff
changeset
|
283 |
val body = read_chunk() |
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
wenzelm
parents:
54440
diff
changeset
|
284 |
output(kind, props, body) |
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
wenzelm
parents:
54440
diff
changeset
|
285 |
} |
46769 | 286 |
case _ => |
54442
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
wenzelm
parents:
54440
diff
changeset
|
287 |
read_chunk() |
46769 | 288 |
throw new Protocol_Error("bad header: " + header.toString) |
289 |
} |
|
28063 | 290 |
} |
46769 | 291 |
catch { case _: EOF => } |
52799 | 292 |
} |
293 |
while (c != -1) |
|
46769 | 294 |
} |
295 |
catch { |
|
46772
be21f050eda4
tuned signature -- emphasize Isabelle_Process Input vs. Output;
wenzelm
parents:
46769
diff
changeset
|
296 |
case e: IOException => system_output("Cannot read message:\n" + e.getMessage) |
be21f050eda4
tuned signature -- emphasize Isabelle_Process Input vs. Output;
wenzelm
parents:
46769
diff
changeset
|
297 |
case e: Protocol_Error => system_output("Malformed message:\n" + e.getMessage) |
46769 | 298 |
} |
34100 | 299 |
stream.close |
300 |
||
46772
be21f050eda4
tuned signature -- emphasize Isabelle_Process Input vs. Output;
wenzelm
parents:
46769
diff
changeset
|
301 |
system_output(name + " terminated") |
27949
6eb0327c0b9b
Isabelle process management -- always reactive due to multi-threaded I/O.
wenzelm
parents:
diff
changeset
|
302 |
} |
39526 | 303 |
} |
27949
6eb0327c0b9b
Isabelle process management -- always reactive due to multi-threaded I/O.
wenzelm
parents:
diff
changeset
|
304 |
|
6eb0327c0b9b
Isabelle process management -- always reactive due to multi-threaded I/O.
wenzelm
parents:
diff
changeset
|
305 |
|
38259
2b61c5e27399
distinguish proper Isabelle_Process INPUT vs. raw STDIN, tuned corresponding method names;
wenzelm
parents:
38253
diff
changeset
|
306 |
|
56387 | 307 |
/** protocol commands **/ |
308 |
||
309 |
def protocol_command_bytes(name: String, args: Bytes*): Unit = |
|
56700 | 310 |
command_input match { |
311 |
case Some(thread) => thread.send(Bytes(name) :: args.toList) |
|
312 |
case None => error("Uninitialized command input thread") |
|
313 |
} |
|
38372
e753f71b6b34
added Isabelle_Process.input_bytes, which avoids the somewhat slow Standard_System.string_bytes (just in case someone wants to stream raw data at 250MB/s);
wenzelm
parents:
38270
diff
changeset
|
314 |
|
52582 | 315 |
def protocol_command(name: String, args: String*) |
43721
fad8634cee62
echo prover input via raw_messages, for improved protocol tracing;
wenzelm
parents:
43695
diff
changeset
|
316 |
{ |
56385 | 317 |
receiver(new Prover.Input(name, args.toList)) |
56387 | 318 |
protocol_command_bytes(name, args.map(Bytes(_)): _*) |
43721
fad8634cee62
echo prover input via raw_messages, for improved protocol tracing;
wenzelm
parents:
43695
diff
changeset
|
319 |
} |
27949
6eb0327c0b9b
Isabelle process management -- always reactive due to multi-threaded I/O.
wenzelm
parents:
diff
changeset
|
320 |
} |