author | wenzelm |
Sat, 13 Mar 2021 12:36:24 +0100 | |
changeset 73419 | 22f3f2117ed7 |
parent 73245 | f69cbb59813e |
child 73559 | 22b5ecb53dd9 |
permissions | -rw-r--r-- |
71849 | 1 |
(* Title: Pure/System/scala.ML |
43748 | 2 |
Author: Makarius |
3 |
||
73226
4c8edf348c4e
clarified modules: allow early invocation of Scala functions;
wenzelm
parents:
73225
diff
changeset
|
4 |
Invoke Scala functions from the ML runtime. |
43748 | 5 |
*) |
6 |
||
71849 | 7 |
signature SCALA = |
43748 | 8 |
sig |
72151
64df1e514005
clarified protocol: ML worker thread blocks and awaits result from Scala, to avoid excessive replacement threads;
wenzelm
parents:
72103
diff
changeset
|
9 |
exception Null |
64df1e514005
clarified protocol: ML worker thread blocks and awaits result from Scala, to avoid excessive replacement threads;
wenzelm
parents:
72103
diff
changeset
|
10 |
val function: string -> string -> string |
43748 | 11 |
end; |
12 |
||
71849 | 13 |
structure Scala: SCALA = |
43748 | 14 |
struct |
15 |
||
72151
64df1e514005
clarified protocol: ML worker thread blocks and awaits result from Scala, to avoid excessive replacement threads;
wenzelm
parents:
72103
diff
changeset
|
16 |
exception Null; |
43749 | 17 |
|
72151
64df1e514005
clarified protocol: ML worker thread blocks and awaits result from Scala, to avoid excessive replacement threads;
wenzelm
parents:
72103
diff
changeset
|
18 |
local |
43748 | 19 |
|
52537 | 20 |
val new_id = string_of_int o Counter.make (); |
43748 | 21 |
|
72151
64df1e514005
clarified protocol: ML worker thread blocks and awaits result from Scala, to avoid excessive replacement threads;
wenzelm
parents:
72103
diff
changeset
|
22 |
val results = |
64df1e514005
clarified protocol: ML worker thread blocks and awaits result from Scala, to avoid excessive replacement threads;
wenzelm
parents:
72103
diff
changeset
|
23 |
Synchronized.var "Scala.results" (Symtab.empty: string Exn.result Symtab.table); |
43748 | 24 |
|
72151
64df1e514005
clarified protocol: ML worker thread blocks and awaits result from Scala, to avoid excessive replacement threads;
wenzelm
parents:
72103
diff
changeset
|
25 |
val _ = |
73225
3ab0cedaccad
clarified modules: allow early definition of protocol commands;
wenzelm
parents:
72759
diff
changeset
|
26 |
Protocol_Command.define "Scala.result" |
72151
64df1e514005
clarified protocol: ML worker thread blocks and awaits result from Scala, to avoid excessive replacement threads;
wenzelm
parents:
72103
diff
changeset
|
27 |
(fn [id, tag, res] => |
64df1e514005
clarified protocol: ML worker thread blocks and awaits result from Scala, to avoid excessive replacement threads;
wenzelm
parents:
72103
diff
changeset
|
28 |
let |
64df1e514005
clarified protocol: ML worker thread blocks and awaits result from Scala, to avoid excessive replacement threads;
wenzelm
parents:
72103
diff
changeset
|
29 |
val result = |
64df1e514005
clarified protocol: ML worker thread blocks and awaits result from Scala, to avoid excessive replacement threads;
wenzelm
parents:
72103
diff
changeset
|
30 |
(case tag of |
64df1e514005
clarified protocol: ML worker thread blocks and awaits result from Scala, to avoid excessive replacement threads;
wenzelm
parents:
72103
diff
changeset
|
31 |
"0" => Exn.Exn Null |
64df1e514005
clarified protocol: ML worker thread blocks and awaits result from Scala, to avoid excessive replacement threads;
wenzelm
parents:
72103
diff
changeset
|
32 |
| "1" => Exn.Res res |
64df1e514005
clarified protocol: ML worker thread blocks and awaits result from Scala, to avoid excessive replacement threads;
wenzelm
parents:
72103
diff
changeset
|
33 |
| "2" => Exn.Exn (ERROR res) |
64df1e514005
clarified protocol: ML worker thread blocks and awaits result from Scala, to avoid excessive replacement threads;
wenzelm
parents:
72103
diff
changeset
|
34 |
| "3" => Exn.Exn (Fail res) |
64df1e514005
clarified protocol: ML worker thread blocks and awaits result from Scala, to avoid excessive replacement threads;
wenzelm
parents:
72103
diff
changeset
|
35 |
| "4" => Exn.Exn Exn.Interrupt |
64df1e514005
clarified protocol: ML worker thread blocks and awaits result from Scala, to avoid excessive replacement threads;
wenzelm
parents:
72103
diff
changeset
|
36 |
| _ => raise Fail ("Bad tag: " ^ tag)); |
64df1e514005
clarified protocol: ML worker thread blocks and awaits result from Scala, to avoid excessive replacement threads;
wenzelm
parents:
72103
diff
changeset
|
37 |
in Synchronized.change results (Symtab.map_entry id (K result)) end); |
43748 | 38 |
|
73419
22f3f2117ed7
clarified signature: function_thread is determined in Isabelle/Scala, not Isabelle/ML;
wenzelm
parents:
73245
diff
changeset
|
39 |
in |
22f3f2117ed7
clarified signature: function_thread is determined in Isabelle/Scala, not Isabelle/ML;
wenzelm
parents:
73245
diff
changeset
|
40 |
|
22f3f2117ed7
clarified signature: function_thread is determined in Isabelle/Scala, not Isabelle/ML;
wenzelm
parents:
73245
diff
changeset
|
41 |
fun function name arg = |
72151
64df1e514005
clarified protocol: ML worker thread blocks and awaits result from Scala, to avoid excessive replacement threads;
wenzelm
parents:
72103
diff
changeset
|
42 |
Thread_Attributes.uninterruptible (fn restore_attributes => fn () => |
64df1e514005
clarified protocol: ML worker thread blocks and awaits result from Scala, to avoid excessive replacement threads;
wenzelm
parents:
72103
diff
changeset
|
43 |
let |
64df1e514005
clarified protocol: ML worker thread blocks and awaits result from Scala, to avoid excessive replacement threads;
wenzelm
parents:
72103
diff
changeset
|
44 |
val id = new_id (); |
64df1e514005
clarified protocol: ML worker thread blocks and awaits result from Scala, to avoid excessive replacement threads;
wenzelm
parents:
72103
diff
changeset
|
45 |
fun invoke () = |
64df1e514005
clarified protocol: ML worker thread blocks and awaits result from Scala, to avoid excessive replacement threads;
wenzelm
parents:
72103
diff
changeset
|
46 |
(Synchronized.change results (Symtab.update (id, Exn.Exn Match)); |
73419
22f3f2117ed7
clarified signature: function_thread is determined in Isabelle/Scala, not Isabelle/ML;
wenzelm
parents:
73245
diff
changeset
|
47 |
Output.protocol_message (Markup.invoke_scala name id) [XML.Text arg]); |
72151
64df1e514005
clarified protocol: ML worker thread blocks and awaits result from Scala, to avoid excessive replacement threads;
wenzelm
parents:
72103
diff
changeset
|
48 |
fun cancel () = |
64df1e514005
clarified protocol: ML worker thread blocks and awaits result from Scala, to avoid excessive replacement threads;
wenzelm
parents:
72103
diff
changeset
|
49 |
(Synchronized.change results (Symtab.delete_safe id); |
64df1e514005
clarified protocol: ML worker thread blocks and awaits result from Scala, to avoid excessive replacement threads;
wenzelm
parents:
72103
diff
changeset
|
50 |
Output.protocol_message (Markup.cancel_scala id) []); |
64df1e514005
clarified protocol: ML worker thread blocks and awaits result from Scala, to avoid excessive replacement threads;
wenzelm
parents:
72103
diff
changeset
|
51 |
fun await_result () = |
64df1e514005
clarified protocol: ML worker thread blocks and awaits result from Scala, to avoid excessive replacement threads;
wenzelm
parents:
72103
diff
changeset
|
52 |
Synchronized.guarded_access results |
64df1e514005
clarified protocol: ML worker thread blocks and awaits result from Scala, to avoid excessive replacement threads;
wenzelm
parents:
72103
diff
changeset
|
53 |
(fn tab => |
64df1e514005
clarified protocol: ML worker thread blocks and awaits result from Scala, to avoid excessive replacement threads;
wenzelm
parents:
72103
diff
changeset
|
54 |
(case Symtab.lookup tab id of |
64df1e514005
clarified protocol: ML worker thread blocks and awaits result from Scala, to avoid excessive replacement threads;
wenzelm
parents:
72103
diff
changeset
|
55 |
SOME (Exn.Exn Match) => NONE |
64df1e514005
clarified protocol: ML worker thread blocks and awaits result from Scala, to avoid excessive replacement threads;
wenzelm
parents:
72103
diff
changeset
|
56 |
| SOME result => SOME (result, Symtab.delete id tab) |
73245
f69cbb59813e
more robust interrupt handling as in Future.forked_results (amending 64df1e514005);
wenzelm
parents:
73226
diff
changeset
|
57 |
| NONE => SOME (Exn.Exn Exn.Interrupt, tab))); |
72151
64df1e514005
clarified protocol: ML worker thread blocks and awaits result from Scala, to avoid excessive replacement threads;
wenzelm
parents:
72103
diff
changeset
|
58 |
in |
64df1e514005
clarified protocol: ML worker thread blocks and awaits result from Scala, to avoid excessive replacement threads;
wenzelm
parents:
72103
diff
changeset
|
59 |
invoke (); |
64df1e514005
clarified protocol: ML worker thread blocks and awaits result from Scala, to avoid excessive replacement threads;
wenzelm
parents:
72103
diff
changeset
|
60 |
Exn.release (restore_attributes await_result ()) |
73245
f69cbb59813e
more robust interrupt handling as in Future.forked_results (amending 64df1e514005);
wenzelm
parents:
73226
diff
changeset
|
61 |
handle exn => (if Exn.is_interrupt exn then cancel () else (); Exn.reraise exn) |
72151
64df1e514005
clarified protocol: ML worker thread blocks and awaits result from Scala, to avoid excessive replacement threads;
wenzelm
parents:
72103
diff
changeset
|
62 |
end) (); |
43748 | 63 |
|
72151
64df1e514005
clarified protocol: ML worker thread blocks and awaits result from Scala, to avoid excessive replacement threads;
wenzelm
parents:
72103
diff
changeset
|
64 |
end; |
71871
28def00726ca
more robust isabelle.Functions --- avoid Java reflection with unclear class/object treatment;
wenzelm
parents:
71849
diff
changeset
|
65 |
|
43748 | 66 |
end; |