author | wenzelm |
Tue, 11 Dec 2018 19:25:35 +0100 | |
changeset 69448 | 51e696887b81 |
parent 69393 | ed0824ef337e |
child 69451 | 387894c2fb2c |
permissions | -rw-r--r-- |
66347 | 1 |
/* Title: Pure/Tools/server.scala |
2 |
Author: Makarius |
|
3 |
||
4 |
Resident Isabelle servers. |
|
67809 | 5 |
|
6 |
Message formats: |
|
7 |
- short message (single line): |
|
8 |
NAME ARGUMENT |
|
9 |
- long message (multiple lines): |
|
10 |
BYTE_LENGTH |
|
11 |
NAME ARGUMENT |
|
67820
e30d6368c7c8
clarified argument formats: explicit Unit, allow XML.Elem as well;
wenzelm
parents:
67812
diff
changeset
|
12 |
|
e30d6368c7c8
clarified argument formats: explicit Unit, allow XML.Elem as well;
wenzelm
parents:
67812
diff
changeset
|
13 |
Argument formats: |
e30d6368c7c8
clarified argument formats: explicit Unit, allow XML.Elem as well;
wenzelm
parents:
67812
diff
changeset
|
14 |
- Unit as empty string |
e30d6368c7c8
clarified argument formats: explicit Unit, allow XML.Elem as well;
wenzelm
parents:
67812
diff
changeset
|
15 |
- XML.Elem in YXML notation |
e30d6368c7c8
clarified argument formats: explicit Unit, allow XML.Elem as well;
wenzelm
parents:
67812
diff
changeset
|
16 |
- JSON.T in standard notation |
66347 | 17 |
*/ |
18 |
||
19 |
package isabelle |
|
20 |
||
21 |
||
67837 | 22 |
import java.io.{BufferedInputStream, BufferedOutputStream, InputStreamReader, OutputStreamWriter, |
23 |
IOException} |
|
67797 | 24 |
import java.net.{Socket, SocketException, SocketTimeoutException, ServerSocket, InetAddress} |
66347 | 25 |
|
26 |
||
27 |
object Server |
|
28 |
{ |
|
67820
e30d6368c7c8
clarified argument formats: explicit Unit, allow XML.Elem as well;
wenzelm
parents:
67812
diff
changeset
|
29 |
/* message argument */ |
66927 | 30 |
|
67820
e30d6368c7c8
clarified argument formats: explicit Unit, allow XML.Elem as well;
wenzelm
parents:
67812
diff
changeset
|
31 |
object Argument |
67794 | 32 |
{ |
67903 | 33 |
def is_name_char(c: Char): Boolean = |
34 |
Symbol.is_ascii_letter(c) || Symbol.is_ascii_digit(c) || c == '_' || c == '.' |
|
35 |
||
67820
e30d6368c7c8
clarified argument formats: explicit Unit, allow XML.Elem as well;
wenzelm
parents:
67812
diff
changeset
|
36 |
def split(msg: String): (String, String) = |
e30d6368c7c8
clarified argument formats: explicit Unit, allow XML.Elem as well;
wenzelm
parents:
67812
diff
changeset
|
37 |
{ |
67903 | 38 |
val name = msg.takeWhile(is_name_char(_)) |
67820
e30d6368c7c8
clarified argument formats: explicit Unit, allow XML.Elem as well;
wenzelm
parents:
67812
diff
changeset
|
39 |
val argument = msg.substring(name.length).dropWhile(Symbol.is_ascii_blank(_)) |
e30d6368c7c8
clarified argument formats: explicit Unit, allow XML.Elem as well;
wenzelm
parents:
67812
diff
changeset
|
40 |
(name, argument) |
e30d6368c7c8
clarified argument formats: explicit Unit, allow XML.Elem as well;
wenzelm
parents:
67812
diff
changeset
|
41 |
} |
e30d6368c7c8
clarified argument formats: explicit Unit, allow XML.Elem as well;
wenzelm
parents:
67812
diff
changeset
|
42 |
|
e30d6368c7c8
clarified argument formats: explicit Unit, allow XML.Elem as well;
wenzelm
parents:
67812
diff
changeset
|
43 |
def print(arg: Any): String = |
e30d6368c7c8
clarified argument formats: explicit Unit, allow XML.Elem as well;
wenzelm
parents:
67812
diff
changeset
|
44 |
arg match { |
e30d6368c7c8
clarified argument formats: explicit Unit, allow XML.Elem as well;
wenzelm
parents:
67812
diff
changeset
|
45 |
case () => "" |
e30d6368c7c8
clarified argument formats: explicit Unit, allow XML.Elem as well;
wenzelm
parents:
67812
diff
changeset
|
46 |
case t: XML.Elem => YXML.string_of_tree(t) |
e30d6368c7c8
clarified argument formats: explicit Unit, allow XML.Elem as well;
wenzelm
parents:
67812
diff
changeset
|
47 |
case t: JSON.T => JSON.Format(t) |
e30d6368c7c8
clarified argument formats: explicit Unit, allow XML.Elem as well;
wenzelm
parents:
67812
diff
changeset
|
48 |
} |
e30d6368c7c8
clarified argument formats: explicit Unit, allow XML.Elem as well;
wenzelm
parents:
67812
diff
changeset
|
49 |
|
e30d6368c7c8
clarified argument formats: explicit Unit, allow XML.Elem as well;
wenzelm
parents:
67812
diff
changeset
|
50 |
def parse(argument: String): Any = |
e30d6368c7c8
clarified argument formats: explicit Unit, allow XML.Elem as well;
wenzelm
parents:
67812
diff
changeset
|
51 |
if (argument == "") () |
e30d6368c7c8
clarified argument formats: explicit Unit, allow XML.Elem as well;
wenzelm
parents:
67812
diff
changeset
|
52 |
else if (YXML.detect_elem(argument)) YXML.parse_elem(argument) |
e30d6368c7c8
clarified argument formats: explicit Unit, allow XML.Elem as well;
wenzelm
parents:
67812
diff
changeset
|
53 |
else JSON.parse(argument, strict = false) |
e30d6368c7c8
clarified argument formats: explicit Unit, allow XML.Elem as well;
wenzelm
parents:
67812
diff
changeset
|
54 |
|
e30d6368c7c8
clarified argument formats: explicit Unit, allow XML.Elem as well;
wenzelm
parents:
67812
diff
changeset
|
55 |
def unapply(argument: String): Option[Any] = |
e30d6368c7c8
clarified argument formats: explicit Unit, allow XML.Elem as well;
wenzelm
parents:
67812
diff
changeset
|
56 |
try { Some(parse(argument)) } |
e30d6368c7c8
clarified argument formats: explicit Unit, allow XML.Elem as well;
wenzelm
parents:
67812
diff
changeset
|
57 |
catch { case ERROR(_) => None } |
67794 | 58 |
} |
59 |
||
67820
e30d6368c7c8
clarified argument formats: explicit Unit, allow XML.Elem as well;
wenzelm
parents:
67812
diff
changeset
|
60 |
|
e30d6368c7c8
clarified argument formats: explicit Unit, allow XML.Elem as well;
wenzelm
parents:
67812
diff
changeset
|
61 |
/* input command */ |
e30d6368c7c8
clarified argument formats: explicit Unit, allow XML.Elem as well;
wenzelm
parents:
67812
diff
changeset
|
62 |
|
e30d6368c7c8
clarified argument formats: explicit Unit, allow XML.Elem as well;
wenzelm
parents:
67812
diff
changeset
|
63 |
object Command |
e30d6368c7c8
clarified argument formats: explicit Unit, allow XML.Elem as well;
wenzelm
parents:
67812
diff
changeset
|
64 |
{ |
67839
0c2ed45ece20
explicit Server.Context with output channels (concurrent write);
wenzelm
parents:
67838
diff
changeset
|
65 |
type T = PartialFunction[(Context, Any), Any] |
67820
e30d6368c7c8
clarified argument formats: explicit Unit, allow XML.Elem as well;
wenzelm
parents:
67812
diff
changeset
|
66 |
|
e30d6368c7c8
clarified argument formats: explicit Unit, allow XML.Elem as well;
wenzelm
parents:
67812
diff
changeset
|
67 |
private val table: Map[String, T] = |
e30d6368c7c8
clarified argument formats: explicit Unit, allow XML.Elem as well;
wenzelm
parents:
67812
diff
changeset
|
68 |
Map( |
67848
dd83610333de
added server command "session_build": similar to JEdit_Resources.session_build;
wenzelm
parents:
67840
diff
changeset
|
69 |
"help" -> { case (_, ()) => table.keySet.toList.sorted }, |
67820
e30d6368c7c8
clarified argument formats: explicit Unit, allow XML.Elem as well;
wenzelm
parents:
67812
diff
changeset
|
70 |
"echo" -> { case (_, t) => t }, |
67902 | 71 |
"shutdown" -> { case (context, ()) => context.server.shutdown() }, |
67920 | 72 |
"cancel" -> |
73 |
{ case (context, Server_Commands.Cancel(args)) => context.cancel_task(args.task) }, |
|
67848
dd83610333de
added server command "session_build": similar to JEdit_Resources.session_build;
wenzelm
parents:
67840
diff
changeset
|
74 |
"session_build" -> |
dd83610333de
added server command "session_build": similar to JEdit_Resources.session_build;
wenzelm
parents:
67840
diff
changeset
|
75 |
{ case (context, Server_Commands.Session_Build(args)) => |
67861 | 76 |
context.make_task(task => |
67886 | 77 |
Server_Commands.Session_Build.command(args, progress = task.progress)._1) |
67869 | 78 |
}, |
79 |
"session_start" -> |
|
80 |
{ case (context, Server_Commands.Session_Start(args)) => |
|
81 |
context.make_task(task => |
|
82 |
{ |
|
67871
195ff117894c
store session: per Server/Context, not Connection;
wenzelm
parents:
67870
diff
changeset
|
83 |
val (res, entry) = |
67878 | 84 |
Server_Commands.Session_Start.command( |
67886 | 85 |
args, progress = task.progress, log = context.server.log) |
67878 | 86 |
context.server.add_session(entry) |
67869 | 87 |
res |
88 |
}) |
|
67871
195ff117894c
store session: per Server/Context, not Connection;
wenzelm
parents:
67870
diff
changeset
|
89 |
}, |
195ff117894c
store session: per Server/Context, not Connection;
wenzelm
parents:
67870
diff
changeset
|
90 |
"session_stop" -> |
195ff117894c
store session: per Server/Context, not Connection;
wenzelm
parents:
67870
diff
changeset
|
91 |
{ case (context, Server_Commands.Session_Stop(id)) => |
195ff117894c
store session: per Server/Context, not Connection;
wenzelm
parents:
67870
diff
changeset
|
92 |
context.make_task(_ => |
195ff117894c
store session: per Server/Context, not Connection;
wenzelm
parents:
67870
diff
changeset
|
93 |
{ |
67878 | 94 |
val session = context.server.remove_session(id) |
67871
195ff117894c
store session: per Server/Context, not Connection;
wenzelm
parents:
67870
diff
changeset
|
95 |
Server_Commands.Session_Stop.command(session)._1 |
195ff117894c
store session: per Server/Context, not Connection;
wenzelm
parents:
67870
diff
changeset
|
96 |
}) |
67883 | 97 |
}, |
98 |
"use_theories" -> |
|
99 |
{ case (context, Server_Commands.Use_Theories(args)) => |
|
100 |
context.make_task(task => |
|
101 |
{ |
|
102 |
val session = context.server.the_session(args.session_id) |
|
67884
43af581d7d8e
unload_theories after consolidation -- reset node_required;
wenzelm
parents:
67883
diff
changeset
|
103 |
Server_Commands.Use_Theories.command( |
43af581d7d8e
unload_theories after consolidation -- reset node_required;
wenzelm
parents:
67883
diff
changeset
|
104 |
args, session, id = task.id, progress = task.progress)._1 |
68530 | 105 |
}) |
67941 | 106 |
}, |
107 |
"purge_theories" -> |
|
108 |
{ case (context, Server_Commands.Purge_Theories(args)) => |
|
109 |
val session = context.server.the_session(args.session_id) |
|
110 |
Server_Commands.Purge_Theories.command(args, session)._1 |
|
67848
dd83610333de
added server command "session_build": similar to JEdit_Resources.session_build;
wenzelm
parents:
67840
diff
changeset
|
111 |
}) |
67820
e30d6368c7c8
clarified argument formats: explicit Unit, allow XML.Elem as well;
wenzelm
parents:
67812
diff
changeset
|
112 |
|
e30d6368c7c8
clarified argument formats: explicit Unit, allow XML.Elem as well;
wenzelm
parents:
67812
diff
changeset
|
113 |
def unapply(name: String): Option[T] = table.get(name) |
e30d6368c7c8
clarified argument formats: explicit Unit, allow XML.Elem as well;
wenzelm
parents:
67812
diff
changeset
|
114 |
} |
e30d6368c7c8
clarified argument formats: explicit Unit, allow XML.Elem as well;
wenzelm
parents:
67812
diff
changeset
|
115 |
|
e30d6368c7c8
clarified argument formats: explicit Unit, allow XML.Elem as well;
wenzelm
parents:
67812
diff
changeset
|
116 |
|
e30d6368c7c8
clarified argument formats: explicit Unit, allow XML.Elem as well;
wenzelm
parents:
67812
diff
changeset
|
117 |
/* output reply */ |
66929 | 118 |
|
67857 | 119 |
class Error(val message: String, val json: JSON.Object.T = JSON.Object.empty) |
120 |
extends RuntimeException(message) |
|
121 |
||
67891
4f383cd54f69
clarified exception handling: include interrupts;
wenzelm
parents:
67886
diff
changeset
|
122 |
def json_error(exn: Throwable): JSON.Object.T = |
4f383cd54f69
clarified exception handling: include interrupts;
wenzelm
parents:
67886
diff
changeset
|
123 |
exn match { |
67913
d58fa3ed236f
proper order of matches: Server.Error is an instance of Exn.ERROR;
wenzelm
parents:
67911
diff
changeset
|
124 |
case e: Error => Reply.error_message(e.message) ++ e.json |
67901 | 125 |
case ERROR(msg) => Reply.error_message(msg) |
126 |
case _ if Exn.is_interrupt(exn) => Reply.error_message(Exn.message(exn)) |
|
67891
4f383cd54f69
clarified exception handling: include interrupts;
wenzelm
parents:
67886
diff
changeset
|
127 |
case _ => JSON.Object.empty |
4f383cd54f69
clarified exception handling: include interrupts;
wenzelm
parents:
67886
diff
changeset
|
128 |
} |
4f383cd54f69
clarified exception handling: include interrupts;
wenzelm
parents:
67886
diff
changeset
|
129 |
|
66927 | 130 |
object Reply extends Enumeration |
131 |
{ |
|
67860
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
132 |
val OK, ERROR, FINISHED, FAILED, NOTE = Value |
67800 | 133 |
|
67901 | 134 |
def message(msg: String, kind: String = ""): JSON.Object.T = |
67931
f7917c15b566
field "kind" is always present, with default "writeln";
wenzelm
parents:
67920
diff
changeset
|
135 |
JSON.Object(Markup.KIND -> proper_string(kind).getOrElse(Markup.WRITELN), "message" -> msg) |
67901 | 136 |
|
137 |
def error_message(msg: String): JSON.Object.T = |
|
67911
3cda747493d8
clarified markup according to common Command.Results;
wenzelm
parents:
67904
diff
changeset
|
138 |
message(msg, kind = Markup.ERROR) |
67857 | 139 |
|
67820
e30d6368c7c8
clarified argument formats: explicit Unit, allow XML.Elem as well;
wenzelm
parents:
67812
diff
changeset
|
140 |
def unapply(msg: String): Option[(Reply.Value, Any)] = |
67800 | 141 |
{ |
67809 | 142 |
if (msg == "") None |
67800 | 143 |
else { |
67820
e30d6368c7c8
clarified argument formats: explicit Unit, allow XML.Elem as well;
wenzelm
parents:
67812
diff
changeset
|
144 |
val (name, argument) = Argument.split(msg) |
e30d6368c7c8
clarified argument formats: explicit Unit, allow XML.Elem as well;
wenzelm
parents:
67812
diff
changeset
|
145 |
for { |
e30d6368c7c8
clarified argument formats: explicit Unit, allow XML.Elem as well;
wenzelm
parents:
67812
diff
changeset
|
146 |
reply <- |
e30d6368c7c8
clarified argument formats: explicit Unit, allow XML.Elem as well;
wenzelm
parents:
67812
diff
changeset
|
147 |
try { Some(withName(name)) } |
e30d6368c7c8
clarified argument formats: explicit Unit, allow XML.Elem as well;
wenzelm
parents:
67812
diff
changeset
|
148 |
catch { case _: NoSuchElementException => None } |
e30d6368c7c8
clarified argument formats: explicit Unit, allow XML.Elem as well;
wenzelm
parents:
67812
diff
changeset
|
149 |
arg <- Argument.unapply(argument) |
e30d6368c7c8
clarified argument formats: explicit Unit, allow XML.Elem as well;
wenzelm
parents:
67812
diff
changeset
|
150 |
} yield (reply, arg) |
67800 | 151 |
} |
152 |
} |
|
66927 | 153 |
} |
154 |
||
155 |
||
67786 | 156 |
/* socket connection */ |
157 |
||
158 |
object Connection |
|
159 |
{ |
|
160 |
def apply(socket: Socket): Connection = |
|
161 |
new Connection(socket) |
|
162 |
} |
|
163 |
||
69393
ed0824ef337e
static type for Library.using: avoid Java 11 warnings on "Illegal reflective access";
wenzelm
parents:
69033
diff
changeset
|
164 |
class Connection private(socket: Socket) extends AutoCloseable |
67786 | 165 |
{ |
166 |
override def toString: String = socket.toString |
|
167 |
||
168 |
def close() { socket.close } |
|
169 |
||
67832 | 170 |
def set_timeout(t: Time) { socket.setSoTimeout(t.ms.toInt) } |
171 |
||
172 |
private val in = new BufferedInputStream(socket.getInputStream) |
|
173 |
private val out = new BufferedOutputStream(socket.getOutputStream) |
|
67839
0c2ed45ece20
explicit Server.Context with output channels (concurrent write);
wenzelm
parents:
67838
diff
changeset
|
174 |
private val out_lock: AnyRef = new Object |
67786 | 175 |
|
67837 | 176 |
def tty_loop(interrupt: Option[() => Unit] = None): TTY_Loop = |
67839
0c2ed45ece20
explicit Server.Context with output channels (concurrent write);
wenzelm
parents:
67838
diff
changeset
|
177 |
new TTY_Loop( |
0c2ed45ece20
explicit Server.Context with output channels (concurrent write);
wenzelm
parents:
67838
diff
changeset
|
178 |
new OutputStreamWriter(out), |
0c2ed45ece20
explicit Server.Context with output channels (concurrent write);
wenzelm
parents:
67838
diff
changeset
|
179 |
new InputStreamReader(in), |
0c2ed45ece20
explicit Server.Context with output channels (concurrent write);
wenzelm
parents:
67838
diff
changeset
|
180 |
writer_lock = out_lock, |
0c2ed45ece20
explicit Server.Context with output channels (concurrent write);
wenzelm
parents:
67838
diff
changeset
|
181 |
interrupt = interrupt) |
67837 | 182 |
|
67809 | 183 |
def read_message(): Option[String] = |
69448 | 184 |
Byte_Message.read_line_message(in).map(_.text) |
67786 | 185 |
|
69448 | 186 |
def write_message(msg: String): Unit = |
187 |
out_lock.synchronized { Byte_Message.write_line_message(out, Bytes(UTF8.bytes(msg))) } |
|
67786 | 188 |
|
67859 | 189 |
def reply(r: Reply.Value, arg: Any) |
67786 | 190 |
{ |
67820
e30d6368c7c8
clarified argument formats: explicit Unit, allow XML.Elem as well;
wenzelm
parents:
67812
diff
changeset
|
191 |
val argument = Argument.print(arg) |
e30d6368c7c8
clarified argument formats: explicit Unit, allow XML.Elem as well;
wenzelm
parents:
67812
diff
changeset
|
192 |
write_message(if (argument == "") r.toString else r.toString + " " + argument) |
67786 | 193 |
} |
194 |
||
67859 | 195 |
def reply_ok(arg: Any) { reply(Reply.OK, arg) } |
196 |
def reply_error(arg: Any) { reply(Reply.ERROR, arg) } |
|
67857 | 197 |
def reply_error_message(message: String, more: JSON.Object.Entry*): Unit = |
67901 | 198 |
reply_error(Reply.error_message(message) ++ more) |
67801 | 199 |
|
67859 | 200 |
def notify(arg: Any) { reply(Reply.NOTE, arg) } |
67839
0c2ed45ece20
explicit Server.Context with output channels (concurrent write);
wenzelm
parents:
67838
diff
changeset
|
201 |
} |
0c2ed45ece20
explicit Server.Context with output channels (concurrent write);
wenzelm
parents:
67838
diff
changeset
|
202 |
|
0c2ed45ece20
explicit Server.Context with output channels (concurrent write);
wenzelm
parents:
67838
diff
changeset
|
203 |
|
0c2ed45ece20
explicit Server.Context with output channels (concurrent write);
wenzelm
parents:
67838
diff
changeset
|
204 |
/* context with output channels */ |
0c2ed45ece20
explicit Server.Context with output channels (concurrent write);
wenzelm
parents:
67838
diff
changeset
|
205 |
|
67878 | 206 |
class Context private[Server](val server: Server, connection: Connection) |
69393
ed0824ef337e
static type for Library.using: avoid Java 11 warnings on "Illegal reflective access";
wenzelm
parents:
69033
diff
changeset
|
207 |
extends AutoCloseable |
67839
0c2ed45ece20
explicit Server.Context with output channels (concurrent write);
wenzelm
parents:
67838
diff
changeset
|
208 |
{ |
0c2ed45ece20
explicit Server.Context with output channels (concurrent write);
wenzelm
parents:
67838
diff
changeset
|
209 |
context => |
0c2ed45ece20
explicit Server.Context with output channels (concurrent write);
wenzelm
parents:
67838
diff
changeset
|
210 |
|
67859 | 211 |
def reply(r: Reply.Value, arg: Any) { connection.reply(r, arg) } |
67840 | 212 |
def notify(arg: Any) { connection.notify(arg) } |
67857 | 213 |
def message(kind: String, msg: String, more: JSON.Object.Entry*): Unit = |
67901 | 214 |
notify(Reply.message(msg, kind = kind) ++ more) |
67857 | 215 |
def writeln(msg: String, more: JSON.Object.Entry*): Unit = message(Markup.WRITELN, msg, more:_*) |
216 |
def warning(msg: String, more: JSON.Object.Entry*): Unit = message(Markup.WARNING, msg, more:_*) |
|
217 |
def error_message(msg: String, more: JSON.Object.Entry*): Unit = |
|
67911
3cda747493d8
clarified markup according to common Command.Results;
wenzelm
parents:
67904
diff
changeset
|
218 |
message(Markup.ERROR, msg, more:_*) |
67839
0c2ed45ece20
explicit Server.Context with output channels (concurrent write);
wenzelm
parents:
67838
diff
changeset
|
219 |
|
67860
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
220 |
def progress(more: JSON.Object.Entry*): Connection_Progress = |
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
221 |
new Connection_Progress(context, more:_*) |
67839
0c2ed45ece20
explicit Server.Context with output channels (concurrent write);
wenzelm
parents:
67838
diff
changeset
|
222 |
|
0c2ed45ece20
explicit Server.Context with output channels (concurrent write);
wenzelm
parents:
67838
diff
changeset
|
223 |
override def toString: String = connection.toString |
67860
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
224 |
|
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
225 |
|
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
226 |
/* asynchronous tasks */ |
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
227 |
|
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
228 |
private val _tasks = Synchronized(Set.empty[Task]) |
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
229 |
|
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
230 |
def make_task(body: Task => JSON.Object.T): Task = |
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
231 |
{ |
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
232 |
val task = new Task(context, body) |
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
233 |
_tasks.change(_ + task) |
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
234 |
task |
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
235 |
} |
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
236 |
|
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
237 |
def remove_task(task: Task): Unit = |
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
238 |
_tasks.change(_ - task) |
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
239 |
|
67885 | 240 |
def cancel_task(id: UUID): Unit = |
67860
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
241 |
_tasks.change(tasks => { tasks.find(task => task.id == id).foreach(_.cancel); tasks }) |
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
242 |
|
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
243 |
def close() |
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
244 |
{ |
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
245 |
while(_tasks.change_result(tasks => { tasks.foreach(_.cancel); (tasks.nonEmpty, tasks) })) |
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
246 |
{ _tasks.value.foreach(_.join) } |
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
247 |
} |
67839
0c2ed45ece20
explicit Server.Context with output channels (concurrent write);
wenzelm
parents:
67838
diff
changeset
|
248 |
} |
0c2ed45ece20
explicit Server.Context with output channels (concurrent write);
wenzelm
parents:
67838
diff
changeset
|
249 |
|
67860
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
250 |
class Connection_Progress private[Server](context: Context, more: JSON.Object.Entry*) |
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
251 |
extends Progress |
67839
0c2ed45ece20
explicit Server.Context with output channels (concurrent write);
wenzelm
parents:
67838
diff
changeset
|
252 |
{ |
67860
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
253 |
override def echo(msg: String): Unit = context.writeln(msg, more:_*) |
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
254 |
override def echo_warning(msg: String): Unit = context.warning(msg, more:_*) |
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
255 |
override def echo_error_message(msg: String): Unit = context.error_message(msg, more:_*) |
68770
add44e2b8cb0
optional notification of nodes_status (via progress);
wenzelm
parents:
68530
diff
changeset
|
256 |
|
68957 | 257 |
override def theory(theory: Progress.Theory) |
258 |
{ |
|
259 |
val entries: List[JSON.Object.Entry] = |
|
260 |
List("theory" -> theory.theory, "session" -> theory.session) ::: |
|
261 |
(theory.percentage match { case None => Nil case Some(p) => List("percentage" -> p) }) |
|
262 |
context.writeln(theory.message, entries ::: more.toList:_*) |
|
263 |
} |
|
67839
0c2ed45ece20
explicit Server.Context with output channels (concurrent write);
wenzelm
parents:
67838
diff
changeset
|
264 |
|
68903 | 265 |
override def nodes_status(nodes_status: Document_Status.Nodes_Status) |
68770
add44e2b8cb0
optional notification of nodes_status (via progress);
wenzelm
parents:
68530
diff
changeset
|
266 |
{ |
68903 | 267 |
val json = |
68904 | 268 |
for ((name, node_status) <- nodes_status.present) |
68903 | 269 |
yield name.json + ("status" -> nodes_status(name).json) |
68770
add44e2b8cb0
optional notification of nodes_status (via progress);
wenzelm
parents:
68530
diff
changeset
|
270 |
context.notify(JSON.Object(Markup.KIND -> Markup.NODES_STATUS, Markup.NODES_STATUS -> json)) |
add44e2b8cb0
optional notification of nodes_status (via progress);
wenzelm
parents:
68530
diff
changeset
|
271 |
} |
add44e2b8cb0
optional notification of nodes_status (via progress);
wenzelm
parents:
68530
diff
changeset
|
272 |
|
67839
0c2ed45ece20
explicit Server.Context with output channels (concurrent write);
wenzelm
parents:
67838
diff
changeset
|
273 |
@volatile private var is_stopped = false |
0c2ed45ece20
explicit Server.Context with output channels (concurrent write);
wenzelm
parents:
67838
diff
changeset
|
274 |
override def stopped: Boolean = is_stopped |
0c2ed45ece20
explicit Server.Context with output channels (concurrent write);
wenzelm
parents:
67838
diff
changeset
|
275 |
def stop { is_stopped = true } |
0c2ed45ece20
explicit Server.Context with output channels (concurrent write);
wenzelm
parents:
67838
diff
changeset
|
276 |
|
0c2ed45ece20
explicit Server.Context with output channels (concurrent write);
wenzelm
parents:
67838
diff
changeset
|
277 |
override def toString: String = context.toString |
67786 | 278 |
} |
279 |
||
67860
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
280 |
class Task private[Server](val context: Context, body: Task => JSON.Object.T) |
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
281 |
{ |
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
282 |
task => |
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
283 |
|
67885 | 284 |
val id: UUID = UUID() |
285 |
val ident: JSON.Object.Entry = ("task" -> id.toString) |
|
67860
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
286 |
|
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
287 |
val progress: Connection_Progress = context.progress(ident) |
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
288 |
def cancel { progress.stop } |
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
289 |
|
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
290 |
private lazy val thread = Standard_Thread.fork("server_task") |
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
291 |
{ |
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
292 |
Exn.capture { body(task) } match { |
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
293 |
case Exn.Res(res) => |
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
294 |
context.reply(Reply.FINISHED, res + ident) |
67891
4f383cd54f69
clarified exception handling: include interrupts;
wenzelm
parents:
67886
diff
changeset
|
295 |
case Exn.Exn(exn) => |
4f383cd54f69
clarified exception handling: include interrupts;
wenzelm
parents:
67886
diff
changeset
|
296 |
val err = json_error(exn) |
4f383cd54f69
clarified exception handling: include interrupts;
wenzelm
parents:
67886
diff
changeset
|
297 |
if (err.isEmpty) throw exn else context.reply(Reply.FAILED, err + ident) |
67860
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
298 |
} |
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
299 |
progress.stop |
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
300 |
context.remove_task(task) |
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
301 |
} |
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
302 |
def start { thread } |
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
303 |
def join { thread.join } |
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
304 |
} |
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
305 |
|
67786 | 306 |
|
67807 | 307 |
/* server info */ |
308 |
||
309 |
sealed case class Info(name: String, port: Int, password: String) |
|
310 |
{ |
|
311 |
override def toString: String = |
|
67821
82fb12061069
more uniform output: this may be parsed by another program;
wenzelm
parents:
67820
diff
changeset
|
312 |
"server " + quote(name) + " = " + print(port, password) |
67807 | 313 |
|
314 |
def connection(): Connection = |
|
315 |
{ |
|
316 |
val connection = Connection(new Socket(InetAddress.getByName("127.0.0.1"), port)) |
|
67809 | 317 |
connection.write_message(password) |
67807 | 318 |
connection |
319 |
} |
|
320 |
||
321 |
def active(): Boolean = |
|
322 |
try { |
|
323 |
using(connection())(connection => |
|
324 |
{ |
|
67832 | 325 |
connection.set_timeout(Time.seconds(2.0)) |
67867 | 326 |
connection.read_message() match { |
327 |
case Some(Reply(Reply.OK, _)) => true |
|
328 |
case _ => false |
|
329 |
} |
|
67807 | 330 |
}) |
331 |
} |
|
332 |
catch { |
|
333 |
case _: IOException => false |
|
334 |
case _: SocketException => false |
|
335 |
case _: SocketTimeoutException => false |
|
336 |
} |
|
337 |
} |
|
338 |
||
339 |
||
66347 | 340 |
/* per-user servers */ |
341 |
||
67822 | 342 |
val default_name = "isabelle" |
343 |
||
67787 | 344 |
def print(port: Int, password: String): String = |
345 |
"127.0.0.1:" + port + " (password " + quote(password) + ")" |
|
346 |
||
66347 | 347 |
object Data |
348 |
{ |
|
66349 | 349 |
val database = Path.explode("$ISABELLE_HOME_USER/servers.db") |
66347 | 350 |
|
66857 | 351 |
val name = SQL.Column.string("name").make_primary_key |
66349 | 352 |
val port = SQL.Column.int("port") |
66347 | 353 |
val password = SQL.Column.string("password") |
66349 | 354 |
val table = SQL.Table("isabelle_servers", List(name, port, password)) |
66347 | 355 |
} |
356 |
||
67807 | 357 |
def list(db: SQLite.Database): List[Info] = |
66347 | 358 |
if (db.tables.contains(Data.table.name)) { |
359 |
db.using_statement(Data.table.select())(stmt => |
|
360 |
stmt.execute_query().iterator(res => |
|
67807 | 361 |
Info( |
66349 | 362 |
res.string(Data.name), |
363 |
res.int(Data.port), |
|
364 |
res.string(Data.password))).toList.sortBy(_.name)) |
|
66347 | 365 |
} |
366 |
else Nil |
|
367 |
||
67807 | 368 |
def find(db: SQLite.Database, name: String): Option[Info] = |
369 |
list(db).find(server_info => server_info.name == name && server_info.active) |
|
66347 | 370 |
|
67870 | 371 |
def init( |
372 |
name: String = default_name, |
|
373 |
port: Int = 0, |
|
374 |
existing_server: Boolean = false, |
|
375 |
log: Logger = No_Logger): (Info, Option[Server]) = |
|
66347 | 376 |
{ |
377 |
using(SQLite.open_database(Data.database))(db => |
|
67799 | 378 |
{ |
379 |
db.transaction { |
|
380 |
Isabelle_System.bash("chmod 600 " + File.bash_path(Data.database)).check |
|
381 |
db.create_table(Data.table) |
|
67807 | 382 |
list(db).filterNot(_.active).foreach(server_info => |
383 |
db.using_statement(Data.table.delete(Data.name.where_equal(server_info.name)))( |
|
384 |
_.execute)) |
|
67799 | 385 |
} |
386 |
db.transaction { |
|
387 |
find(db, name) match { |
|
67807 | 388 |
case Some(server_info) => (server_info, None) |
67799 | 389 |
case None => |
67821
82fb12061069
more uniform output: this may be parsed by another program;
wenzelm
parents:
67820
diff
changeset
|
390 |
if (existing_server) error("Isabelle server " + quote(name) + " not running") |
67811
33199d033505
more options: client without implicit server startup;
wenzelm
parents:
67809
diff
changeset
|
391 |
|
67870 | 392 |
val server = new Server(port, log) |
67807 | 393 |
val server_info = Info(name, server.port, server.password) |
66347 | 394 |
|
67799 | 395 |
db.using_statement(Data.table.delete(Data.name.where_equal(name)))(_.execute) |
396 |
db.using_statement(Data.table.insert())(stmt => |
|
397 |
{ |
|
67807 | 398 |
stmt.string(1) = server_info.name |
399 |
stmt.int(2) = server_info.port |
|
400 |
stmt.string(3) = server_info.password |
|
67799 | 401 |
stmt.execute() |
402 |
}) |
|
66348 | 403 |
|
67799 | 404 |
server.start |
67807 | 405 |
(server_info, Some(server)) |
67799 | 406 |
} |
66347 | 407 |
} |
408 |
}) |
|
409 |
} |
|
410 |
||
67822 | 411 |
def exit(name: String = default_name): Boolean = |
66347 | 412 |
{ |
413 |
using(SQLite.open_database(Data.database))(db => |
|
414 |
db.transaction { |
|
415 |
find(db, name) match { |
|
67807 | 416 |
case Some(server_info) => |
67809 | 417 |
using(server_info.connection())(_.write_message("shutdown")) |
67807 | 418 |
while(server_info.active) { Thread.sleep(50) } |
66347 | 419 |
true |
67785 | 420 |
case None => false |
66347 | 421 |
} |
422 |
}) |
|
423 |
} |
|
424 |
||
425 |
||
426 |
/* Isabelle tool wrapper */ |
|
427 |
||
428 |
val isabelle_tool = |
|
429 |
Isabelle_Tool("server", "manage resident Isabelle servers", args => |
|
430 |
{ |
|
67806 | 431 |
var console = false |
67870 | 432 |
var log_file: Option[Path] = None |
66348 | 433 |
var operation_list = false |
67823 | 434 |
var operation_exit = false |
67822 | 435 |
var name = default_name |
66348 | 436 |
var port = 0 |
67811
33199d033505
more options: client without implicit server startup;
wenzelm
parents:
67809
diff
changeset
|
437 |
var existing_server = false |
66347 | 438 |
|
439 |
val getopts = |
|
440 |
Getopts(""" |
|
441 |
Usage: isabelle server [OPTIONS] |
|
442 |
||
443 |
Options are: |
|
67870 | 444 |
-L FILE logging on FILE |
67875 | 445 |
-c console interaction with specified server |
67904 | 446 |
-l list servers (alternative operation) |
67822 | 447 |
-n NAME explicit server name (default: """ + default_name + """) |
66348 | 448 |
-p PORT explicit server port |
67811
33199d033505
more options: client without implicit server startup;
wenzelm
parents:
67809
diff
changeset
|
449 |
-s assume existing server, no implicit startup |
67904 | 450 |
-x exit specified server (alternative operation) |
66347 | 451 |
|
452 |
Manage resident Isabelle servers. |
|
453 |
""", |
|
67870 | 454 |
"L:" -> (arg => log_file = Some(Path.explode(File.standard_path(arg)))), |
67875 | 455 |
"c" -> (_ => console = true), |
67870 | 456 |
"l" -> (_ => operation_list = true), |
66348 | 457 |
"n:" -> (arg => name = arg), |
67811
33199d033505
more options: client without implicit server startup;
wenzelm
parents:
67809
diff
changeset
|
458 |
"p:" -> (arg => port = Value.Int.parse(arg)), |
67870 | 459 |
"s" -> (_ => existing_server = true), |
67876 | 460 |
"x" -> (_ => operation_exit = true)) |
66347 | 461 |
|
462 |
val more_args = getopts(args) |
|
66348 | 463 |
if (more_args.nonEmpty) getopts.usage() |
66347 | 464 |
|
66353 | 465 |
if (operation_list) { |
67807 | 466 |
for { |
467 |
server_info <- using(SQLite.open_database(Data.database))(list(_)) |
|
468 |
if server_info.active |
|
469 |
} Output.writeln(server_info.toString, stdout = true) |
|
66353 | 470 |
} |
67823 | 471 |
else if (operation_exit) { |
472 |
val ok = Server.exit(name) |
|
69033 | 473 |
sys.exit(if (ok) 0 else 2) |
67823 | 474 |
} |
66348 | 475 |
else { |
67870 | 476 |
val log = Logger.make(log_file) |
477 |
val (server_info, server) = |
|
478 |
init(name, port = port, existing_server = existing_server, log = log) |
|
67807 | 479 |
Output.writeln(server_info.toString, stdout = true) |
67834 | 480 |
if (console) { |
481 |
using(server_info.connection())(connection => connection.tty_loop().join) |
|
482 |
} |
|
67785 | 483 |
server.foreach(_.join) |
66348 | 484 |
} |
66347 | 485 |
}) |
486 |
} |
|
487 |
||
67870 | 488 |
class Server private(_port: Int, val log: Logger) |
66347 | 489 |
{ |
67785 | 490 |
server => |
491 |
||
67902 | 492 |
private val server_socket = new ServerSocket(_port, 50, InetAddress.getByName("127.0.0.1")) |
493 |
||
69012 | 494 |
private val _sessions = Synchronized(Map.empty[UUID, Headless.Session]) |
67885 | 495 |
def err_session(id: UUID): Nothing = error("No session " + Library.single_quote(id.toString)) |
69012 | 496 |
def the_session(id: UUID): Headless.Session = _sessions.value.get(id) getOrElse err_session(id) |
497 |
def add_session(entry: (UUID, Headless.Session)) { _sessions.change(_ + entry) } |
|
498 |
def remove_session(id: UUID): Headless.Session = |
|
67871
195ff117894c
store session: per Server/Context, not Connection;
wenzelm
parents:
67870
diff
changeset
|
499 |
{ |
195ff117894c
store session: per Server/Context, not Connection;
wenzelm
parents:
67870
diff
changeset
|
500 |
_sessions.change_result(sessions => |
195ff117894c
store session: per Server/Context, not Connection;
wenzelm
parents:
67870
diff
changeset
|
501 |
sessions.get(id) match { |
195ff117894c
store session: per Server/Context, not Connection;
wenzelm
parents:
67870
diff
changeset
|
502 |
case Some(session) => (session, sessions - id) |
67883 | 503 |
case None => err_session(id) |
67871
195ff117894c
store session: per Server/Context, not Connection;
wenzelm
parents:
67870
diff
changeset
|
504 |
}) |
195ff117894c
store session: per Server/Context, not Connection;
wenzelm
parents:
67870
diff
changeset
|
505 |
} |
195ff117894c
store session: per Server/Context, not Connection;
wenzelm
parents:
67870
diff
changeset
|
506 |
|
67902 | 507 |
def shutdown() |
508 |
{ |
|
509 |
server_socket.close |
|
67791 | 510 |
|
67902 | 511 |
val sessions = _sessions.change_result(sessions => (sessions, Map.empty)) |
512 |
for ((_, session) <- sessions) { |
|
513 |
try { |
|
514 |
val result = session.stop() |
|
515 |
if (!result.ok) log("Session shutdown failed: return code " + result.rc) |
|
516 |
} |
|
517 |
catch { case ERROR(msg) => log("Session shutdown failed: " + msg) } |
|
518 |
} |
|
519 |
} |
|
67791 | 520 |
|
66350 | 521 |
def port: Int = server_socket.getLocalPort |
67885 | 522 |
val password: String = UUID().toString |
66350 | 523 |
|
67787 | 524 |
override def toString: String = Server.print(port, password) |
66348 | 525 |
|
67786 | 526 |
private def handle(connection: Server.Connection) |
66350 | 527 |
{ |
67860
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
528 |
using(new Server.Context(server, connection))(context => |
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
529 |
{ |
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
530 |
connection.read_message() match { |
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
531 |
case Some(msg) if msg == password => |
67867 | 532 |
connection.reply_ok( |
533 |
JSON.Object( |
|
534 |
"isabelle_id" -> Isabelle_System.isabelle_id(), |
|
535 |
"isabelle_version" -> Distribution.version)) |
|
536 |
||
67860
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
537 |
var finished = false |
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
538 |
while (!finished) { |
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
539 |
connection.read_message() match { |
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
540 |
case None => finished = true |
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
541 |
case Some("") => context.notify("Command 'help' provides list of commands") |
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
542 |
case Some(msg) => |
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
543 |
val (name, argument) = Server.Argument.split(msg) |
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
544 |
name match { |
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
545 |
case Server.Command(cmd) => |
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
546 |
argument match { |
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
547 |
case Server.Argument(arg) => |
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
548 |
if (cmd.isDefinedAt((context, arg))) { |
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
549 |
Exn.capture { cmd((context, arg)) } match { |
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
550 |
case Exn.Res(task: Server.Task) => |
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
551 |
connection.reply_ok(JSON.Object(task.ident)) |
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
552 |
task.start |
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
553 |
case Exn.Res(res) => connection.reply_ok(res) |
67891
4f383cd54f69
clarified exception handling: include interrupts;
wenzelm
parents:
67886
diff
changeset
|
554 |
case Exn.Exn(exn) => |
4f383cd54f69
clarified exception handling: include interrupts;
wenzelm
parents:
67886
diff
changeset
|
555 |
val err = Server.json_error(exn) |
4f383cd54f69
clarified exception handling: include interrupts;
wenzelm
parents:
67886
diff
changeset
|
556 |
if (err.isEmpty) throw exn else connection.reply_error(err) |
67860
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
557 |
} |
67820
e30d6368c7c8
clarified argument formats: explicit Unit, allow XML.Elem as well;
wenzelm
parents:
67812
diff
changeset
|
558 |
} |
67860
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
559 |
else { |
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
560 |
connection.reply_error_message( |
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
561 |
"Bad argument for command " + Library.single_quote(name), |
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
562 |
"argument" -> argument) |
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
563 |
} |
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
564 |
case _ => |
67786 | 565 |
connection.reply_error_message( |
67860
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
566 |
"Malformed argument for command " + Library.single_quote(name), |
67820
e30d6368c7c8
clarified argument formats: explicit Unit, allow XML.Elem as well;
wenzelm
parents:
67812
diff
changeset
|
567 |
"argument" -> argument) |
67860
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
568 |
} |
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
569 |
case _ => connection.reply_error("Bad command " + Library.single_quote(name)) |
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
570 |
} |
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
571 |
} |
66350 | 572 |
} |
67860
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
573 |
case _ => |
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
574 |
} |
5a6c483269f3
support for asynchronous tasks, with "cancel" command;
wenzelm
parents:
67859
diff
changeset
|
575 |
}) |
66350 | 576 |
} |
577 |
||
67786 | 578 |
private lazy val server_thread: Thread = |
66350 | 579 |
Standard_Thread.fork("server") { |
580 |
var finished = false |
|
581 |
while (!finished) { |
|
582 |
Exn.capture(server_socket.accept) match { |
|
583 |
case Exn.Res(socket) => |
|
584 |
Standard_Thread.fork("server_connection") |
|
67786 | 585 |
{ using(Server.Connection(socket))(handle(_)) } |
66350 | 586 |
case Exn.Exn(_) => finished = true |
587 |
} |
|
588 |
} |
|
589 |
} |
|
67785 | 590 |
|
67790
1babcc248be0
clarified server start, notably for invocation within regular Isabelle/Scala process;
wenzelm
parents:
67789
diff
changeset
|
591 |
def start { server_thread } |
1babcc248be0
clarified server start, notably for invocation within regular Isabelle/Scala process;
wenzelm
parents:
67789
diff
changeset
|
592 |
|
67902 | 593 |
def join { server_thread.join; shutdown() } |
66347 | 594 |
} |