author | wenzelm |
Fri, 06 Sep 2019 18:59:24 +0200 | |
changeset 70664 | 2bd9e30183b1 |
parent 70663 | 4a358f8c7cb7 |
child 70665 | 94442fce40a5 |
permissions | -rw-r--r-- |
45709
87017fcbad83
clarified modules (again) -- NB: both Document and Protocol are specific to this particular prover;
wenzelm
parents:
45672
diff
changeset
|
1 |
(* Title: Pure/PIDE/protocol.ML |
38412
c23f3abbf42d
moved isar_document.ML/scala to Pure/System/ -- side-by-side with isar.ML;
wenzelm
parents:
diff
changeset
|
2 |
Author: Makarius |
c23f3abbf42d
moved isar_document.ML/scala to Pure/System/ -- side-by-side with isar.ML;
wenzelm
parents:
diff
changeset
|
3 |
|
45709
87017fcbad83
clarified modules (again) -- NB: both Document and Protocol are specific to this particular prover;
wenzelm
parents:
45672
diff
changeset
|
4 |
Protocol message formats for interactive proof documents. |
38412
c23f3abbf42d
moved isar_document.ML/scala to Pure/System/ -- side-by-side with isar.ML;
wenzelm
parents:
diff
changeset
|
5 |
*) |
c23f3abbf42d
moved isar_document.ML/scala to Pure/System/ -- side-by-side with isar.ML;
wenzelm
parents:
diff
changeset
|
6 |
|
45709
87017fcbad83
clarified modules (again) -- NB: both Document and Protocol are specific to this particular prover;
wenzelm
parents:
45672
diff
changeset
|
7 |
structure Protocol: sig end = |
38412
c23f3abbf42d
moved isar_document.ML/scala to Pure/System/ -- side-by-side with isar.ML;
wenzelm
parents:
diff
changeset
|
8 |
struct |
c23f3abbf42d
moved isar_document.ML/scala to Pure/System/ -- side-by-side with isar.ML;
wenzelm
parents:
diff
changeset
|
9 |
|
38418
9a7af64d71bb
more explicit / functional ML version of document model;
wenzelm
parents:
38417
diff
changeset
|
10 |
val _ = |
56387 | 11 |
Isabelle_Process.protocol_command "Prover.echo" |
52786 | 12 |
(fn args => List.app writeln args); |
13 |
||
14 |
val _ = |
|
56387 | 15 |
Isabelle_Process.protocol_command "Prover.options" |
52786 | 16 |
(fn [options_yxml] => |
65300 | 17 |
(Options.set_default (Options.decode (YXML.parse_body options_yxml)); |
18 |
Isabelle_Process.init_options_interactive ())); |
|
52585 | 19 |
|
20 |
val _ = |
|
67219 | 21 |
Isabelle_Process.protocol_command "Prover.init_session_base" |
67471 | 22 |
(fn [sessions_yxml, doc_names_yxml, global_theories_yxml, loaded_theories_yxml, |
23 |
known_theories_yxml] => |
|
65470 | 24 |
let |
25 |
val decode_table = YXML.parse_body #> let open XML.Decode in list (pair string string) end; |
|
66712 | 26 |
val decode_list = YXML.parse_body #> let open XML.Decode in list string end; |
67493
c4e9e0c50487
treat sessions as entities with defining position;
wenzelm
parents:
67471
diff
changeset
|
27 |
val decode_sessions = |
c4e9e0c50487
treat sessions as entities with defining position;
wenzelm
parents:
67471
diff
changeset
|
28 |
YXML.parse_body #> let open XML.Decode in list (pair string properties) end; |
65470 | 29 |
in |
65478
7c40477e0a87
clarified init_session_base / finish_session_base: retain some information for plain "isabelle process", without rechecking dependencies as in "isabelle console";
wenzelm
parents:
65470
diff
changeset
|
30 |
Resources.init_session_base |
67493
c4e9e0c50487
treat sessions as entities with defining position;
wenzelm
parents:
67471
diff
changeset
|
31 |
{sessions = decode_sessions sessions_yxml, |
c4e9e0c50487
treat sessions as entities with defining position;
wenzelm
parents:
67471
diff
changeset
|
32 |
docs = decode_list doc_names_yxml, |
67219 | 33 |
global_theories = decode_table global_theories_yxml, |
66712 | 34 |
loaded_theories = decode_list loaded_theories_yxml, |
65470 | 35 |
known_theories = decode_table known_theories_yxml} |
36 |
end); |
|
37 |
||
38 |
val _ = |
|
54519
5fed81762406
maintain blobs within document state: digest + text in ML, digest-only in Scala;
wenzelm
parents:
53192
diff
changeset
|
39 |
Isabelle_Process.protocol_command "Document.define_blob" |
5fed81762406
maintain blobs within document state: digest + text in ML, digest-only in Scala;
wenzelm
parents:
53192
diff
changeset
|
40 |
(fn [digest, content] => Document.change_state (Document.define_blob digest content)); |
5fed81762406
maintain blobs within document state: digest + text in ML, digest-only in Scala;
wenzelm
parents:
53192
diff
changeset
|
41 |
|
70664
2bd9e30183b1
prefer define_commands_bulk: fewer protocol messages;
wenzelm
parents:
70663
diff
changeset
|
42 |
fun decode_command id name blobs_xml toks_xml sources : Document.command = |
70663 | 43 |
let |
44 |
open XML.Decode; |
|
45 |
val (blobs_digests, blobs_index) = |
|
70664
2bd9e30183b1
prefer define_commands_bulk: fewer protocol messages;
wenzelm
parents:
70663
diff
changeset
|
46 |
blobs_xml |> |
70663 | 47 |
let |
48 |
val message = YXML.string_of_body o Protocol_Message.command_positions id; |
|
49 |
in |
|
50 |
pair |
|
51 |
(list (variant |
|
52 |
[fn ([], a) => Exn.Res (pair string (option string) a), |
|
53 |
fn ([], a) => Exn.Exn (ERROR (message a))])) |
|
54 |
int |
|
55 |
end; |
|
70664
2bd9e30183b1
prefer define_commands_bulk: fewer protocol messages;
wenzelm
parents:
70663
diff
changeset
|
56 |
val toks = list (pair int int) toks_xml; |
70663 | 57 |
in |
58 |
{command_id = Document_ID.parse id, |
|
59 |
name = name, |
|
60 |
blobs_digests = blobs_digests, |
|
61 |
blobs_index = blobs_index, |
|
62 |
tokens = toks ~~ sources} |
|
63 |
end; |
|
64 |
||
54519
5fed81762406
maintain blobs within document state: digest + text in ML, digest-only in Scala;
wenzelm
parents:
53192
diff
changeset
|
65 |
val _ = |
46119
0d7172a7672c
tuned signature -- emphasize special nature of protocol commands;
wenzelm
parents:
45709
diff
changeset
|
66 |
Isabelle_Process.protocol_command "Document.define_command" |
70664
2bd9e30183b1
prefer define_commands_bulk: fewer protocol messages;
wenzelm
parents:
70663
diff
changeset
|
67 |
(fn id :: name :: blobs :: toks :: sources => |
2bd9e30183b1
prefer define_commands_bulk: fewer protocol messages;
wenzelm
parents:
70663
diff
changeset
|
68 |
let |
2bd9e30183b1
prefer define_commands_bulk: fewer protocol messages;
wenzelm
parents:
70663
diff
changeset
|
69 |
val command = decode_command id name (YXML.parse_body blobs) (YXML.parse_body toks) sources; |
2bd9e30183b1
prefer define_commands_bulk: fewer protocol messages;
wenzelm
parents:
70663
diff
changeset
|
70 |
in Document.change_state (Document.define_command command) end); |
2bd9e30183b1
prefer define_commands_bulk: fewer protocol messages;
wenzelm
parents:
70663
diff
changeset
|
71 |
|
2bd9e30183b1
prefer define_commands_bulk: fewer protocol messages;
wenzelm
parents:
70663
diff
changeset
|
72 |
val _ = |
2bd9e30183b1
prefer define_commands_bulk: fewer protocol messages;
wenzelm
parents:
70663
diff
changeset
|
73 |
Isabelle_Process.protocol_command "Document.define_commands" |
2bd9e30183b1
prefer define_commands_bulk: fewer protocol messages;
wenzelm
parents:
70663
diff
changeset
|
74 |
(fn args => |
2bd9e30183b1
prefer define_commands_bulk: fewer protocol messages;
wenzelm
parents:
70663
diff
changeset
|
75 |
let |
2bd9e30183b1
prefer define_commands_bulk: fewer protocol messages;
wenzelm
parents:
70663
diff
changeset
|
76 |
fun decode arg = |
2bd9e30183b1
prefer define_commands_bulk: fewer protocol messages;
wenzelm
parents:
70663
diff
changeset
|
77 |
let |
2bd9e30183b1
prefer define_commands_bulk: fewer protocol messages;
wenzelm
parents:
70663
diff
changeset
|
78 |
open XML.Decode; |
2bd9e30183b1
prefer define_commands_bulk: fewer protocol messages;
wenzelm
parents:
70663
diff
changeset
|
79 |
val (id, (name, (blobs_xml, (toks_xml, sources)))) = |
2bd9e30183b1
prefer define_commands_bulk: fewer protocol messages;
wenzelm
parents:
70663
diff
changeset
|
80 |
pair string (pair string (pair I (pair I (list string)))) (YXML.parse_body arg); |
2bd9e30183b1
prefer define_commands_bulk: fewer protocol messages;
wenzelm
parents:
70663
diff
changeset
|
81 |
in decode_command id name blobs_xml toks_xml sources end; |
2bd9e30183b1
prefer define_commands_bulk: fewer protocol messages;
wenzelm
parents:
70663
diff
changeset
|
82 |
in Document.change_state (fold (Document.define_command o decode) args) end); |
38412
c23f3abbf42d
moved isar_document.ML/scala to Pure/System/ -- side-by-side with isar.ML;
wenzelm
parents:
diff
changeset
|
83 |
|
38418
9a7af64d71bb
more explicit / functional ML version of document model;
wenzelm
parents:
38417
diff
changeset
|
84 |
val _ = |
47343
b8aeab386414
less aggressive discontinue_execution before document update, to avoid unstable execs that need to be re-assigned;
wenzelm
parents:
46938
diff
changeset
|
85 |
Isabelle_Process.protocol_command "Document.discontinue_execution" |
52606 | 86 |
(fn [] => Execution.discontinue ()); |
47343
b8aeab386414
less aggressive discontinue_execution before document update, to avoid unstable execs that need to be re-assigned;
wenzelm
parents:
46938
diff
changeset
|
87 |
|
b8aeab386414
less aggressive discontinue_execution before document update, to avoid unstable execs that need to be re-assigned;
wenzelm
parents:
46938
diff
changeset
|
88 |
val _ = |
52931
ac6648c0c0fb
cancel_query via direct access to the exec_id of the running query process;
wenzelm
parents:
52862
diff
changeset
|
89 |
Isabelle_Process.protocol_command "Document.cancel_exec" |
ac6648c0c0fb
cancel_query via direct access to the exec_id of the running query process;
wenzelm
parents:
52862
diff
changeset
|
90 |
(fn [exec_id] => Execution.cancel (Document_ID.parse exec_id)); |
ac6648c0c0fb
cancel_query via direct access to the exec_id of the running query process;
wenzelm
parents:
52862
diff
changeset
|
91 |
|
ac6648c0c0fb
cancel_query via direct access to the exec_id of the running query process;
wenzelm
parents:
52862
diff
changeset
|
92 |
val _ = |
46119
0d7172a7672c
tuned signature -- emphasize special nature of protocol commands;
wenzelm
parents:
45709
diff
changeset
|
93 |
Isabelle_Process.protocol_command "Document.update" |
59370
b13ff987c559
refrain from default task_context for all protocol commands, e.g. relevant for "build_theories" to admit Session.shutdown;
wenzelm
parents:
59366
diff
changeset
|
94 |
(Future.task_context "Document.update" (Future.new_group NONE) |
69849 | 95 |
(fn old_id_string :: new_id_string :: consolidate_yxml :: edits_yxml => |
68336
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
wenzelm
parents:
67493
diff
changeset
|
96 |
Document.change_state (fn state => |
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
wenzelm
parents:
67493
diff
changeset
|
97 |
let |
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
wenzelm
parents:
67493
diff
changeset
|
98 |
val old_id = Document_ID.parse old_id_string; |
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
wenzelm
parents:
67493
diff
changeset
|
99 |
val new_id = Document_ID.parse new_id_string; |
69849 | 100 |
val consolidate = |
101 |
YXML.parse_body consolidate_yxml |> |
|
102 |
let open XML.Decode in list string end; |
|
68336
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
wenzelm
parents:
67493
diff
changeset
|
103 |
val edits = |
69849 | 104 |
edits_yxml |> map (YXML.parse_body #> |
68336
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
wenzelm
parents:
67493
diff
changeset
|
105 |
let open XML.Decode in |
69849 | 106 |
pair string |
68336
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
wenzelm
parents:
67493
diff
changeset
|
107 |
(variant |
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
wenzelm
parents:
67493
diff
changeset
|
108 |
[fn ([], a) => Document.Edits (list (pair (option int) (option int)) a), |
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
wenzelm
parents:
67493
diff
changeset
|
109 |
fn ([], a) => |
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
wenzelm
parents:
67493
diff
changeset
|
110 |
let |
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
wenzelm
parents:
67493
diff
changeset
|
111 |
val (master, (name, (imports, (keywords, errors)))) = |
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
wenzelm
parents:
67493
diff
changeset
|
112 |
pair string (pair string (pair (list string) |
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
wenzelm
parents:
67493
diff
changeset
|
113 |
(pair (list (pair string |
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
wenzelm
parents:
67493
diff
changeset
|
114 |
(pair (pair string (list string)) (list string)))) |
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
wenzelm
parents:
67493
diff
changeset
|
115 |
(list YXML.string_of_body)))) a; |
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
wenzelm
parents:
67493
diff
changeset
|
116 |
val imports' = map (rpair Position.none) imports; |
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
wenzelm
parents:
67493
diff
changeset
|
117 |
val keywords' = map (fn (x, y) => ((x, Position.none), y)) keywords; |
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
wenzelm
parents:
67493
diff
changeset
|
118 |
val header = Thy_Header.make (name, Position.none) imports' keywords'; |
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
wenzelm
parents:
67493
diff
changeset
|
119 |
in Document.Deps {master = master, header = header, errors = errors} end, |
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
wenzelm
parents:
67493
diff
changeset
|
120 |
fn (a :: b, c) => |
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
wenzelm
parents:
67493
diff
changeset
|
121 |
Document.Perspective (bool_atom a, map int_atom b, |
69849 | 122 |
list (pair int (pair string (list string))) c)]) |
123 |
end); |
|
47404
e6e5750f1311
simplified Future.cancel/cancel_group (again) -- running threads only;
wenzelm
parents:
47388
diff
changeset
|
124 |
|
68336
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
wenzelm
parents:
67493
diff
changeset
|
125 |
val _ = Execution.discontinue (); |
38412
c23f3abbf42d
moved isar_document.ML/scala to Pure/System/ -- side-by-side with isar.ML;
wenzelm
parents:
diff
changeset
|
126 |
|
70284
3e17c3a5fd39
more thorough assignment, e.g. when "purge" removes commands that were not assigned;
wenzelm
parents:
69849
diff
changeset
|
127 |
val (edited, removed, assign_update, state') = |
68336
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
wenzelm
parents:
67493
diff
changeset
|
128 |
Document.update old_id new_id edits consolidate state; |
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
wenzelm
parents:
67493
diff
changeset
|
129 |
val _ = |
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
wenzelm
parents:
67493
diff
changeset
|
130 |
(singleton o Future.forks) |
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
wenzelm
parents:
67493
diff
changeset
|
131 |
{name = "Document.update/remove", group = NONE, |
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
wenzelm
parents:
67493
diff
changeset
|
132 |
deps = Execution.snapshot removed, |
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
wenzelm
parents:
67493
diff
changeset
|
133 |
pri = Task_Queue.urgent_pri + 2, interrupts = false} |
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
wenzelm
parents:
67493
diff
changeset
|
134 |
(fn () => (Execution.purge removed; List.app Isabelle_Process.reset_tracing removed)); |
52601 | 135 |
|
68336
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
wenzelm
parents:
67493
diff
changeset
|
136 |
val _ = |
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
wenzelm
parents:
67493
diff
changeset
|
137 |
Output.protocol_message Markup.assign_update |
70284
3e17c3a5fd39
more thorough assignment, e.g. when "purge" removes commands that were not assigned;
wenzelm
parents:
69849
diff
changeset
|
138 |
((new_id, edited, assign_update) |> |
69846 | 139 |
let |
140 |
open XML.Encode; |
|
141 |
fun encode_upd (a, bs) = |
|
142 |
string (space_implode "," (map Value.print_int (a :: bs))); |
|
70284
3e17c3a5fd39
more thorough assignment, e.g. when "purge" removes commands that were not assigned;
wenzelm
parents:
69849
diff
changeset
|
143 |
in triple int (list string) (list encode_upd) end |
69845 | 144 |
|> YXML.chunks_of_body); |
68336
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
wenzelm
parents:
67493
diff
changeset
|
145 |
in Document.start_execution state' end))); |
38412
c23f3abbf42d
moved isar_document.ML/scala to Pure/System/ -- side-by-side with isar.ML;
wenzelm
parents:
diff
changeset
|
146 |
|
43748 | 147 |
val _ = |
46119
0d7172a7672c
tuned signature -- emphasize special nature of protocol commands;
wenzelm
parents:
45709
diff
changeset
|
148 |
Isabelle_Process.protocol_command "Document.remove_versions" |
44673 | 149 |
(fn [versions_yxml] => Document.change_state (fn state => |
150 |
let |
|
151 |
val versions = |
|
152 |
YXML.parse_body versions_yxml |> |
|
153 |
let open XML.Decode in list int end; |
|
44676 | 154 |
val state1 = Document.remove_versions versions state; |
56333
38f1422ef473
support bulk messages consisting of small string segments, which are more healthy to the Poly/ML RTS and might prevent spurious GC crashes such as MTGCProcessMarkPointers::ScanAddressesInObject;
wenzelm
parents:
54717
diff
changeset
|
155 |
val _ = Output.protocol_message Markup.removed_versions [versions_yxml]; |
44676 | 156 |
in state1 end)); |
44673 | 157 |
|
158 |
val _ = |
|
50498 | 159 |
Isabelle_Process.protocol_command "Document.dialog_result" |
50500
c94bba7906d2
identify dialogs via official serial and maintain as result message;
wenzelm
parents:
50498
diff
changeset
|
160 |
(fn [serial, result] => |
63806 | 161 |
Active.dialog_result (Value.parse_int serial) result |
62505 | 162 |
handle exn => if Exn.is_interrupt exn then () (*sic!*) else Exn.reraise exn); |
50498 | 163 |
|
56616
abc2da18d08d
added protocol command "use_theories", with core functionality of batch build;
wenzelm
parents:
56458
diff
changeset
|
164 |
val _ = |
62467 | 165 |
Isabelle_Process.protocol_command "ML_Heap.share_common_data" |
166 |
(fn [] => ML_Heap.share_common_data ()); |
|
57868
0b954ac94827
protocol command for heap management, e.g. in Isabelle/jEdit/Scala console: PIDE.session.protocol_command("ML_System.share_common_data");
wenzelm
parents:
56616
diff
changeset
|
167 |
|
38412
c23f3abbf42d
moved isar_document.ML/scala to Pure/System/ -- side-by-side with isar.ML;
wenzelm
parents:
diff
changeset
|
168 |
end; |
c23f3abbf42d
moved isar_document.ML/scala to Pure/System/ -- side-by-side with isar.ML;
wenzelm
parents:
diff
changeset
|
169 |