| author | wenzelm | 
| Sun, 24 May 2020 10:36:42 +0200 | |
| changeset 71875 | aaa984499d36 | 
| parent 71674 | 48ff625687f5 | 
| child 72747 | 5f9d66155081 | 
| permissions | -rw-r--r-- | 
| 38150 
67fc24df3721
simplified/refined document model: collection of named nodes, without proper dependencies yet;
 wenzelm parents: diff
changeset | 1 | (* Title: Pure/PIDE/document.ML | 
| 
67fc24df3721
simplified/refined document model: collection of named nodes, without proper dependencies yet;
 wenzelm parents: diff
changeset | 2 | Author: Makarius | 
| 
67fc24df3721
simplified/refined document model: collection of named nodes, without proper dependencies yet;
 wenzelm parents: diff
changeset | 3 | |
| 
67fc24df3721
simplified/refined document model: collection of named nodes, without proper dependencies yet;
 wenzelm parents: diff
changeset | 4 | Document as collection of named nodes, each consisting of an editable | 
| 52536 | 5 | list of commands, associated with asynchronous execution process. | 
| 38150 
67fc24df3721
simplified/refined document model: collection of named nodes, without proper dependencies yet;
 wenzelm parents: diff
changeset | 6 | *) | 
| 
67fc24df3721
simplified/refined document model: collection of named nodes, without proper dependencies yet;
 wenzelm parents: diff
changeset | 7 | |
| 
67fc24df3721
simplified/refined document model: collection of named nodes, without proper dependencies yet;
 wenzelm parents: diff
changeset | 8 | signature DOCUMENT = | 
| 
67fc24df3721
simplified/refined document model: collection of named nodes, without proper dependencies yet;
 wenzelm parents: diff
changeset | 9 | sig | 
| 52796 | 10 | val timing: bool Unsynchronized.ref | 
| 59715 
4f0d0e4ad68d
avoid duplicate header errors, more precise positions;
 wenzelm parents: 
59702diff
changeset | 11 |   type node_header = {master: string, header: Thy_Header.header, errors: string list}
 | 
| 52862 
930ce8eacb87
tuned signature -- more uniform treatment of overlays as command mapping;
 wenzelm parents: 
52850diff
changeset | 12 | type overlay = Document_ID.command * (string * string list) | 
| 44157 
a21d3e1e64fd
uniform treatment of header edits as document edits;
 wenzelm parents: 
44156diff
changeset | 13 | datatype node_edit = | 
| 52530 
99dd8b4ef3fe
explicit module Document_ID as source of globally unique identifiers across ML/Scala;
 wenzelm parents: 
52527diff
changeset | 14 | Edits of (Document_ID.command option * Document_ID.command option) list | | 
| 48707 
ba531af91148
simplified Document.Node.Header -- internalized errors;
 wenzelm parents: 
47633diff
changeset | 15 | Deps of node_header | | 
| 52849 | 16 | Perspective of bool * Document_ID.command list * overlay list | 
| 44156 | 17 | type edit = string * node_edit | 
| 38418 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 18 | type state | 
| 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 19 | val init_state: state | 
| 54519 
5fed81762406
maintain blobs within document state: digest + text in ML, digest-only in Scala;
 wenzelm parents: 
54516diff
changeset | 20 | val define_blob: string -> string -> state -> state | 
| 56458 
a8d960baa5c2
simplified blob again (amending 1e77ed11f2f7): only store file node name, i.e. the raw editor file name;
 wenzelm parents: 
56447diff
changeset | 21 | type blob_digest = (string * string option) Exn.result | 
| 70663 | 22 | type command = | 
| 23 |    {command_id: Document_ID.command,
 | |
| 24 | name: string, | |
| 25 | blobs_digests: blob_digest list, | |
| 26 | blobs_index: int, | |
| 27 | tokens: ((int * int) * string) list} | |
| 28 | val define_command: command -> state -> state | |
| 60880 
fa958e24ff24
set breakpoint state on ML side, relying on stable situation within the PIDE editing queue;
 wenzelm parents: 
60198diff
changeset | 29 | val command_exec: state -> string -> Document_ID.command -> Command.exec option | 
| 52530 
99dd8b4ef3fe
explicit module Document_ID as source of globally unique identifiers across ML/Scala;
 wenzelm parents: 
52527diff
changeset | 30 | val remove_versions: Document_ID.version list -> state -> state | 
| 52774 
627fb639a2d9
maintain explicit execution frontier: avoid conflict with former task via static dependency;
 wenzelm parents: 
52772diff
changeset | 31 | val start_execution: state -> state | 
| 68381 
2fd3a6d6ba2e
less wasteful consolidation, based on PIDE front-end state and recent changes;
 wenzelm parents: 
68380diff
changeset | 32 | val update: Document_ID.version -> Document_ID.version -> edit list -> string list -> state -> | 
| 70284 
3e17c3a5fd39
more thorough assignment, e.g. when "purge" removes commands that were not assigned;
 wenzelm parents: 
70283diff
changeset | 33 | string list * Document_ID.exec list * (Document_ID.command * Document_ID.exec list) list * state | 
| 43713 
1ba5331b4623
moved global state to structure Document (again);
 wenzelm parents: 
43668diff
changeset | 34 | val state: unit -> state | 
| 
1ba5331b4623
moved global state to structure Document (again);
 wenzelm parents: 
43668diff
changeset | 35 | val change_state: (state -> state) -> unit | 
| 38150 
67fc24df3721
simplified/refined document model: collection of named nodes, without proper dependencies yet;
 wenzelm parents: diff
changeset | 36 | end; | 
| 
67fc24df3721
simplified/refined document model: collection of named nodes, without proper dependencies yet;
 wenzelm parents: diff
changeset | 37 | |
| 
67fc24df3721
simplified/refined document model: collection of named nodes, without proper dependencies yet;
 wenzelm parents: diff
changeset | 38 | structure Document: DOCUMENT = | 
| 
67fc24df3721
simplified/refined document model: collection of named nodes, without proper dependencies yet;
 wenzelm parents: diff
changeset | 39 | struct | 
| 
67fc24df3721
simplified/refined document model: collection of named nodes, without proper dependencies yet;
 wenzelm parents: diff
changeset | 40 | |
| 52796 | 41 | val timing = Unsynchronized.ref false; | 
| 42 | fun timeit msg e = cond_timeit (! timing) msg e; | |
| 43 | ||
| 44 | ||
| 45 | ||
| 38418 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 46 | (** document structure **) | 
| 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 47 | |
| 52530 
99dd8b4ef3fe
explicit module Document_ID as source of globally unique identifiers across ML/Scala;
 wenzelm parents: 
52527diff
changeset | 48 | fun err_dup kind id = error ("Duplicate " ^ kind ^ ": " ^ Document_ID.print id);
 | 
| 
99dd8b4ef3fe
explicit module Document_ID as source of globally unique identifiers across ML/Scala;
 wenzelm parents: 
52527diff
changeset | 49 | fun err_undef kind id = error ("Undefined " ^ kind ^ ": " ^ Document_ID.print id);
 | 
| 
99dd8b4ef3fe
explicit module Document_ID as source of globally unique identifiers across ML/Scala;
 wenzelm parents: 
52527diff
changeset | 50 | |
| 59715 
4f0d0e4ad68d
avoid duplicate header errors, more precise positions;
 wenzelm parents: 
59702diff
changeset | 51 | type node_header = | 
| 
4f0d0e4ad68d
avoid duplicate header errors, more precise positions;
 wenzelm parents: 
59702diff
changeset | 52 |   {master: string, header: Thy_Header.header, errors: string list};
 | 
| 52849 | 53 | |
| 54 | type perspective = | |
| 55 |  {required: bool,  (*required node*)
 | |
| 56 | visible: Inttab.set, (*visible commands*) | |
| 57 | visible_last: Document_ID.command option, (*last visible command*) | |
| 57874 | 58 | overlays: (string * string list) list Inttab.table}; (*command id -> print functions with args*) | 
| 52849 | 59 | |
| 52530 
99dd8b4ef3fe
explicit module Document_ID as source of globally unique identifiers across ML/Scala;
 wenzelm parents: 
52527diff
changeset | 60 | structure Entries = Linear_Set(type key = Document_ID.command val ord = int_ord); | 
| 38448 
62d16c415019
added functor Linear_Set, based on former adhoc structures in document.ML;
 wenzelm parents: 
38421diff
changeset | 61 | |
| 43668 | 62 | abstype node = Node of | 
| 48707 
ba531af91148
simplified Document.Node.Header -- internalized errors;
 wenzelm parents: 
47633diff
changeset | 63 |  {header: node_header,  (*master directory, theory header, errors*)
 | 
| 59086 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 64 | keywords: Keyword.keywords option, (*outer syntax keywords*) | 
| 52849 | 65 | perspective: perspective, (*command perspective*) | 
| 66369 | 66 | entries: Command.exec option Entries.T, (*command entries with executions*) | 
| 68336 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 67 | result: (Document_ID.command * Command.eval) option, (*result of last execution*) | 
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 68 | consolidated: unit lazy} (*consolidated status of eval forks*) | 
| 50862 
5fc8b83322f5
more sensible order of theory nodes (correspondance to Scala version), e.g. relevant to theory progress;
 wenzelm parents: 
50201diff
changeset | 69 | and version = Version of node String_Graph.T (*development graph wrt. static imports*) | 
| 38418 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 70 | with | 
| 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 71 | |
| 68336 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 72 | fun make_node (header, keywords, perspective, entries, result, consolidated) = | 
| 59086 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 73 |   Node {header = header, keywords = keywords, perspective = perspective,
 | 
| 68336 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 74 | entries = entries, result = result, consolidated = consolidated}; | 
| 43668 | 75 | |
| 68336 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 76 | fun map_node f (Node {header, keywords, perspective, entries, result, consolidated}) =
 | 
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 77 | make_node (f (header, keywords, perspective, entries, result, consolidated)); | 
| 38418 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 78 | |
| 52849 | 79 | fun make_perspective (required, command_ids, overlays) : perspective = | 
| 80 |  {required = required,
 | |
| 81 | visible = Inttab.make_set command_ids, | |
| 82 | visible_last = try List.last command_ids, | |
| 52862 
930ce8eacb87
tuned signature -- more uniform treatment of overlays as command mapping;
 wenzelm parents: 
52850diff
changeset | 83 | overlays = Inttab.make_list overlays}; | 
| 44441 | 84 | |
| 59715 
4f0d0e4ad68d
avoid duplicate header errors, more precise positions;
 wenzelm parents: 
59702diff
changeset | 85 | val no_header: node_header = | 
| 
4f0d0e4ad68d
avoid duplicate header errors, more precise positions;
 wenzelm parents: 
59702diff
changeset | 86 |   {master = "", header = Thy_Header.make ("", Position.none) [] [], errors = []};
 | 
| 52849 | 87 | val no_perspective = make_perspective (false, [], []); | 
| 44386 
4048ca2658b7
some support for toplevel printing wrt. editor perspective (still inactive);
 wenzelm parents: 
44385diff
changeset | 88 | |
| 68197 | 89 | val empty_node = | 
| 68336 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 90 | make_node (no_header, NONE, no_perspective, Entries.empty, NONE, Lazy.value ()); | 
| 44386 
4048ca2658b7
some support for toplevel printing wrt. editor perspective (still inactive);
 wenzelm parents: 
44385diff
changeset | 91 | |
| 57615 
df1b3452d71c
more explicit discrimination of empty nodes -- suppress from Theories panel;
 wenzelm parents: 
56801diff
changeset | 92 | fun is_no_perspective ({required, visible, visible_last, overlays}: perspective) =
 | 
| 
df1b3452d71c
more explicit discrimination of empty nodes -- suppress from Theories panel;
 wenzelm parents: 
56801diff
changeset | 93 | not required andalso | 
| 
df1b3452d71c
more explicit discrimination of empty nodes -- suppress from Theories panel;
 wenzelm parents: 
56801diff
changeset | 94 | Inttab.is_empty visible andalso | 
| 
df1b3452d71c
more explicit discrimination of empty nodes -- suppress from Theories panel;
 wenzelm parents: 
56801diff
changeset | 95 | is_none visible_last andalso | 
| 
df1b3452d71c
more explicit discrimination of empty nodes -- suppress from Theories panel;
 wenzelm parents: 
56801diff
changeset | 96 | Inttab.is_empty overlays; | 
| 
df1b3452d71c
more explicit discrimination of empty nodes -- suppress from Theories panel;
 wenzelm parents: 
56801diff
changeset | 97 | |
| 68336 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 98 | fun is_empty_node (Node {header, keywords, perspective, entries, result, consolidated}) =
 | 
| 57615 
df1b3452d71c
more explicit discrimination of empty nodes -- suppress from Theories panel;
 wenzelm parents: 
56801diff
changeset | 99 | header = no_header andalso | 
| 59086 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 100 | is_none keywords andalso | 
| 57615 
df1b3452d71c
more explicit discrimination of empty nodes -- suppress from Theories panel;
 wenzelm parents: 
56801diff
changeset | 101 | is_no_perspective perspective andalso | 
| 
df1b3452d71c
more explicit discrimination of empty nodes -- suppress from Theories panel;
 wenzelm parents: 
56801diff
changeset | 102 | Entries.is_empty entries andalso | 
| 66379 
6392766f3c25
maintain "consolidated" status of theory nodes, which means all evals are finished (but not necessarily prints nor imports);
 wenzelm parents: 
66369diff
changeset | 103 | is_none result andalso | 
| 68336 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 104 | Lazy.is_finished consolidated; | 
| 57615 
df1b3452d71c
more explicit discrimination of empty nodes -- suppress from Theories panel;
 wenzelm parents: 
56801diff
changeset | 105 | |
| 44386 
4048ca2658b7
some support for toplevel printing wrt. editor perspective (still inactive);
 wenzelm parents: 
44385diff
changeset | 106 | |
| 
4048ca2658b7
some support for toplevel printing wrt. editor perspective (still inactive);
 wenzelm parents: 
44385diff
changeset | 107 | (* basic components *) | 
| 
4048ca2658b7
some support for toplevel printing wrt. editor perspective (still inactive);
 wenzelm parents: 
44385diff
changeset | 108 | |
| 59715 
4f0d0e4ad68d
avoid duplicate header errors, more precise positions;
 wenzelm parents: 
59702diff
changeset | 109 | fun master_directory (Node {header = {master, ...}, ...}) =
 | 
| 54558 
31844ca390ad
more total master_directory -- NB: this is used outside command transactions (see also 92961f196d9e);
 wenzelm parents: 
54526diff
changeset | 110 | (case try Url.explode master of | 
| 
31844ca390ad
more total master_directory -- NB: this is used outside command transactions (see also 92961f196d9e);
 wenzelm parents: 
54526diff
changeset | 111 | SOME (Url.File path) => path | 
| 
31844ca390ad
more total master_directory -- NB: this is used outside command transactions (see also 92961f196d9e);
 wenzelm parents: 
54526diff
changeset | 112 | | _ => Path.current); | 
| 
31844ca390ad
more total master_directory -- NB: this is used outside command transactions (see also 92961f196d9e);
 wenzelm parents: 
54526diff
changeset | 113 | |
| 59715 
4f0d0e4ad68d
avoid duplicate header errors, more precise positions;
 wenzelm parents: 
59702diff
changeset | 114 | fun set_header master header errors = | 
| 68336 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 115 | map_node (fn (_, keywords, perspective, entries, result, consolidated) => | 
| 66379 
6392766f3c25
maintain "consolidated" status of theory nodes, which means all evals are finished (but not necessarily prints nor imports);
 wenzelm parents: 
66369diff
changeset | 116 |     ({master = master, header = header, errors = errors},
 | 
| 68336 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 117 | keywords, perspective, entries, result, consolidated)); | 
| 59086 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 118 | |
| 59715 
4f0d0e4ad68d
avoid duplicate header errors, more precise positions;
 wenzelm parents: 
59702diff
changeset | 119 | fun get_header (Node {header, ...}) = header;
 | 
| 48707 
ba531af91148
simplified Document.Node.Header -- internalized errors;
 wenzelm parents: 
47633diff
changeset | 120 | |
| 59086 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 121 | fun set_keywords keywords = | 
| 68336 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 122 | map_node (fn (header, _, perspective, entries, result, consolidated) => | 
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 123 | (header, keywords, perspective, entries, result, consolidated)); | 
| 59086 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 124 | |
| 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 125 | fun get_keywords (Node {keywords, ...}) = keywords;
 | 
| 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 126 | |
| 48927 
ef462b5558eb
theory def/ref position reports, which enable hyperlinks etc.;
 wenzelm parents: 
48918diff
changeset | 127 | fun read_header node span = | 
| 
ef462b5558eb
theory def/ref position reports, which enable hyperlinks etc.;
 wenzelm parents: 
48918diff
changeset | 128 | let | 
| 59715 
4f0d0e4ad68d
avoid duplicate header errors, more precise positions;
 wenzelm parents: 
59702diff
changeset | 129 |     val {header, errors, ...} = get_header node;
 | 
| 
4f0d0e4ad68d
avoid duplicate header errors, more precise positions;
 wenzelm parents: 
59702diff
changeset | 130 | val _ = | 
| 
4f0d0e4ad68d
avoid duplicate header errors, more precise positions;
 wenzelm parents: 
59702diff
changeset | 131 | if null errors then () | 
| 
4f0d0e4ad68d
avoid duplicate header errors, more precise positions;
 wenzelm parents: 
59702diff
changeset | 132 | else | 
| 
4f0d0e4ad68d
avoid duplicate header errors, more precise positions;
 wenzelm parents: 
59702diff
changeset | 133 | cat_lines errors |> | 
| 
4f0d0e4ad68d
avoid duplicate header errors, more precise positions;
 wenzelm parents: 
59702diff
changeset | 134 | (case Position.get_id (Position.thread_data ()) of | 
| 
4f0d0e4ad68d
avoid duplicate header errors, more precise positions;
 wenzelm parents: 
59702diff
changeset | 135 | NONE => I | 
| 
4f0d0e4ad68d
avoid duplicate header errors, more precise positions;
 wenzelm parents: 
59702diff
changeset | 136 | | SOME id => Protocol_Message.command_positions_yxml id) | 
| 
4f0d0e4ad68d
avoid duplicate header errors, more precise positions;
 wenzelm parents: 
59702diff
changeset | 137 | |> error; | 
| 59934 
b65c4370f831
more position information and PIDE markup for command keywords;
 wenzelm parents: 
59735diff
changeset | 138 |     val {name = (name, _), imports, ...} = header;
 | 
| 67500 
dfde99d59f6e
tuned: prefer list operations over Source.source;
 wenzelm parents: 
67380diff
changeset | 139 |     val {name = (_, pos), imports = imports', keywords} =
 | 
| 
dfde99d59f6e
tuned: prefer list operations over Source.source;
 wenzelm parents: 
67380diff
changeset | 140 | Thy_Header.read_tokens Position.none span; | 
| 63022 | 141 | val imports'' = (map #1 imports ~~ map #2 imports') handle ListPair.UnequalLengths => imports; | 
| 142 | in Thy_Header.make (name, pos) imports'' keywords end; | |
| 54526 | 143 | |
| 44385 
e7fdb008aa7d
propagate editor perspective through document model;
 wenzelm parents: 
44384diff
changeset | 144 | fun get_perspective (Node {perspective, ...}) = perspective;
 | 
| 59086 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 145 | |
| 52808 
143f225e50f5
allow explicit indication of required node: full eval, no prints;
 wenzelm parents: 
52798diff
changeset | 146 | fun set_perspective args = | 
| 68336 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 147 | map_node (fn (header, keywords, _, entries, result, consolidated) => | 
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 148 | (header, keywords, make_perspective args, entries, result, consolidated)); | 
| 44385 
e7fdb008aa7d
propagate editor perspective through document model;
 wenzelm parents: 
44384diff
changeset | 149 | |
| 52849 | 150 | val required_node = #required o get_perspective; | 
| 151 | val visible_command = Inttab.defined o #visible o get_perspective; | |
| 152 | val visible_last = #visible_last o get_perspective; | |
| 47345 
193251980a73
more scalable execute/update: avoid redundant traversal of invisible/finished nodes;
 wenzelm parents: 
47344diff
changeset | 153 | val visible_node = is_some o visible_last | 
| 52850 
9fff9f78240a
support print functions with explicit arguments, as provided by overlays;
 wenzelm parents: 
52849diff
changeset | 154 | val overlays = Inttab.lookup_list o #overlays o get_perspective; | 
| 47345 
193251980a73
more scalable execute/update: avoid redundant traversal of invisible/finished nodes;
 wenzelm parents: 
47344diff
changeset | 155 | |
| 44444 
33a5616a7571
tuned Document.node: maintain "touched" flag to indicate changes in entries etc.;
 wenzelm parents: 
44441diff
changeset | 156 | fun map_entries f = | 
| 68336 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 157 | map_node (fn (header, keywords, perspective, entries, result, consolidated) => | 
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 158 | (header, keywords, perspective, f entries, result, consolidated)); | 
| 59086 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 159 | |
| 52761 
909167fdd367
discontinued notion of "stable" result -- running execution is never canceled;
 wenzelm parents: 
52716diff
changeset | 160 | fun get_entries (Node {entries, ...}) = entries;
 | 
| 44645 
5938beb84adc
more precise iterate_entries_after if start refers to last entry;
 wenzelm parents: 
44644diff
changeset | 161 | |
| 
5938beb84adc
more precise iterate_entries_after if start refers to last entry;
 wenzelm parents: 
44644diff
changeset | 162 | fun iterate_entries f = Entries.iterate NONE f o get_entries; | 
| 52761 
909167fdd367
discontinued notion of "stable" result -- running execution is never canceled;
 wenzelm parents: 
52716diff
changeset | 163 | fun iterate_entries_after start f (Node {entries, ...}) =
 | 
| 44645 
5938beb84adc
more precise iterate_entries_after if start refers to last entry;
 wenzelm parents: 
44644diff
changeset | 164 | (case Entries.get_after entries start of | 
| 
5938beb84adc
more precise iterate_entries_after if start refers to last entry;
 wenzelm parents: 
44644diff
changeset | 165 | NONE => I | 
| 
5938beb84adc
more precise iterate_entries_after if start refers to last entry;
 wenzelm parents: 
44644diff
changeset | 166 | | SOME id => Entries.iterate (SOME id) f entries); | 
| 43668 | 167 | |
| 47339 
79bd24497ffd
tuned -- NB: get_theory still needs to apply Lazy.force due to interrupt instabilities;
 wenzelm parents: 
47336diff
changeset | 168 | fun get_result (Node {result, ...}) = result;
 | 
| 59086 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 169 | |
| 44385 
e7fdb008aa7d
propagate editor perspective through document model;
 wenzelm parents: 
44384diff
changeset | 170 | fun set_result result = | 
| 68336 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 171 | map_node (fn (header, keywords, perspective, entries, _, consolidated) => | 
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 172 | (header, keywords, perspective, entries, result, consolidated)); | 
| 52566 
52a0eacf04d1
more formal type assign_update: avoid duplicate results and redundant update of global State.execs;
 wenzelm parents: 
52536diff
changeset | 173 | |
| 52772 | 174 | fun pending_result node = | 
| 175 | (case get_result node of | |
| 68336 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 176 | SOME (_, eval) => not (Command.eval_finished eval) | 
| 52772 | 177 | | NONE => false); | 
| 52533 | 178 | |
| 59198 
c73933e07c03
clarified execution graph traversal: stable imports are required to proceed, e.g. relevant to avoid crash of init_theory after discontinued execution;
 wenzelm parents: 
59193diff
changeset | 179 | fun finished_result node = | 
| 
c73933e07c03
clarified execution graph traversal: stable imports are required to proceed, e.g. relevant to avoid crash of init_theory after discontinued execution;
 wenzelm parents: 
59193diff
changeset | 180 | (case get_result node of | 
| 68336 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 181 | SOME (_, eval) => Command.eval_finished eval | 
| 59198 
c73933e07c03
clarified execution graph traversal: stable imports are required to proceed, e.g. relevant to avoid crash of init_theory after discontinued execution;
 wenzelm parents: 
59193diff
changeset | 182 | | NONE => false); | 
| 
c73933e07c03
clarified execution graph traversal: stable imports are required to proceed, e.g. relevant to avoid crash of init_theory after discontinued execution;
 wenzelm parents: 
59193diff
changeset | 183 | |
| 66379 
6392766f3c25
maintain "consolidated" status of theory nodes, which means all evals are finished (but not necessarily prints nor imports);
 wenzelm parents: 
66369diff
changeset | 184 | fun finished_result_theory node = | 
| 68184 
6c693b2700b3
support for dynamic document output while editing;
 wenzelm parents: 
67500diff
changeset | 185 | if finished_result node then | 
| 68336 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 186 | let | 
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 187 | val (result_id, eval) = the (get_result node); | 
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 188 | val st = Command.eval_result_state eval; | 
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 189 | in SOME (result_id, Toplevel.end_theory Position.none st) handle ERROR _ => NONE end | 
| 68184 
6c693b2700b3
support for dynamic document output while editing;
 wenzelm parents: 
67500diff
changeset | 190 | else NONE; | 
| 66379 
6392766f3c25
maintain "consolidated" status of theory nodes, which means all evals are finished (but not necessarily prints nor imports);
 wenzelm parents: 
66369diff
changeset | 191 | |
| 68336 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 192 | val reset_consolidated = | 
| 66379 
6392766f3c25
maintain "consolidated" status of theory nodes, which means all evals are finished (but not necessarily prints nor imports);
 wenzelm parents: 
66369diff
changeset | 193 | map_node (fn (header, keywords, perspective, entries, result, _) => | 
| 68336 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 194 | (header, keywords, perspective, entries, result, Lazy.lazy I)); | 
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 195 | |
| 70695 | 196 | fun commit_consolidated (Node {consolidated, ...}) =
 | 
| 197 | (Lazy.force consolidated; Output.status [Markup.markup_only Markup.consolidated]); | |
| 68336 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 198 | |
| 70695 | 199 | fun consolidated_node (Node {consolidated, ...}) = Lazy.is_finished consolidated;
 | 
| 68336 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 200 | |
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 201 | fun could_consolidate node = | 
| 70695 | 202 | not (consolidated_node node) andalso is_some (finished_result_theory node); | 
| 66379 
6392766f3c25
maintain "consolidated" status of theory nodes, which means all evals are finished (but not necessarily prints nor imports);
 wenzelm parents: 
66369diff
changeset | 203 | |
| 50862 
5fc8b83322f5
more sensible order of theory nodes (correspondance to Scala version), e.g. relevant to theory progress;
 wenzelm parents: 
50201diff
changeset | 204 | fun get_node nodes name = String_Graph.get_node nodes name | 
| 
5fc8b83322f5
more sensible order of theory nodes (correspondance to Scala version), e.g. relevant to theory progress;
 wenzelm parents: 
50201diff
changeset | 205 | handle String_Graph.UNDEF _ => empty_node; | 
| 
5fc8b83322f5
more sensible order of theory nodes (correspondance to Scala version), e.g. relevant to theory progress;
 wenzelm parents: 
50201diff
changeset | 206 | fun default_node name = String_Graph.default_node (name, empty_node); | 
| 
5fc8b83322f5
more sensible order of theory nodes (correspondance to Scala version), e.g. relevant to theory progress;
 wenzelm parents: 
50201diff
changeset | 207 | fun update_node name f = default_node name #> String_Graph.map_node name f; | 
| 38418 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 208 | |
| 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 209 | |
| 38448 
62d16c415019
added functor Linear_Set, based on former adhoc structures in document.ML;
 wenzelm parents: 
38421diff
changeset | 210 | (* node edits and associated executions *) | 
| 38150 
67fc24df3721
simplified/refined document model: collection of named nodes, without proper dependencies yet;
 wenzelm parents: diff
changeset | 211 | |
| 52862 
930ce8eacb87
tuned signature -- more uniform treatment of overlays as command mapping;
 wenzelm parents: 
52850diff
changeset | 212 | type overlay = Document_ID.command * (string * string list); | 
| 52849 | 213 | |
| 44157 
a21d3e1e64fd
uniform treatment of header edits as document edits;
 wenzelm parents: 
44156diff
changeset | 214 | datatype node_edit = | 
| 52530 
99dd8b4ef3fe
explicit module Document_ID as source of globally unique identifiers across ML/Scala;
 wenzelm parents: 
52527diff
changeset | 215 | Edits of (Document_ID.command option * Document_ID.command option) list | | 
| 48707 
ba531af91148
simplified Document.Node.Header -- internalized errors;
 wenzelm parents: 
47633diff
changeset | 216 | Deps of node_header | | 
| 52849 | 217 | Perspective of bool * Document_ID.command list * overlay list; | 
| 44157 
a21d3e1e64fd
uniform treatment of header edits as document edits;
 wenzelm parents: 
44156diff
changeset | 218 | |
| 44156 | 219 | type edit = string * node_edit; | 
| 38448 
62d16c415019
added functor Linear_Set, based on former adhoc structures in document.ML;
 wenzelm parents: 
38421diff
changeset | 220 | |
| 49064 
bd6cc0b911a1
maintain stable state of node entries from last round -- bypass slightly different Thm.join_theory_proofs;
 wenzelm parents: 
49061diff
changeset | 221 | val after_entry = Entries.get_after o get_entries; | 
| 44479 
9a04e7502e22
refined document state assignment: observe perspective, more explicit assignment message;
 wenzelm parents: 
44478diff
changeset | 222 | |
| 49064 
bd6cc0b911a1
maintain stable state of node entries from last round -- bypass slightly different Thm.join_theory_proofs;
 wenzelm parents: 
49061diff
changeset | 223 | fun lookup_entry node id = | 
| 
bd6cc0b911a1
maintain stable state of node entries from last round -- bypass slightly different Thm.join_theory_proofs;
 wenzelm parents: 
49061diff
changeset | 224 | (case Entries.lookup (get_entries node) id of | 
| 44480 
38c5b085fb1c
improved Document.edit: more accurate update_start and no_execs;
 wenzelm parents: 
44479diff
changeset | 225 | NONE => NONE | 
| 
38c5b085fb1c
improved Document.edit: more accurate update_start and no_execs;
 wenzelm parents: 
44479diff
changeset | 226 | | SOME (exec, _) => exec); | 
| 
38c5b085fb1c
improved Document.edit: more accurate update_start and no_execs;
 wenzelm parents: 
44479diff
changeset | 227 | |
| 49064 
bd6cc0b911a1
maintain stable state of node entries from last round -- bypass slightly different Thm.join_theory_proofs;
 wenzelm parents: 
49061diff
changeset | 228 | fun the_entry node id = | 
| 
bd6cc0b911a1
maintain stable state of node entries from last round -- bypass slightly different Thm.join_theory_proofs;
 wenzelm parents: 
49061diff
changeset | 229 | (case Entries.lookup (get_entries node) id of | 
| 38448 
62d16c415019
added functor Linear_Set, based on former adhoc structures in document.ML;
 wenzelm parents: 
38421diff
changeset | 230 | NONE => err_undef "command entry" id | 
| 44476 
e8a87398f35d
propagate information about last command with exec state assignment through document model;
 wenzelm parents: 
44446diff
changeset | 231 | | SOME (exec, _) => exec); | 
| 38150 
67fc24df3721
simplified/refined document model: collection of named nodes, without proper dependencies yet;
 wenzelm parents: diff
changeset | 232 | |
| 52566 
52a0eacf04d1
more formal type assign_update: avoid duplicate results and redundant update of global State.execs;
 wenzelm parents: 
52536diff
changeset | 233 | fun assign_entry (command_id, exec) node = | 
| 
52a0eacf04d1
more formal type assign_update: avoid duplicate results and redundant update of global State.execs;
 wenzelm parents: 
52536diff
changeset | 234 | if is_none (Entries.lookup (get_entries node) command_id) then node | 
| 
52a0eacf04d1
more formal type assign_update: avoid duplicate results and redundant update of global State.execs;
 wenzelm parents: 
52536diff
changeset | 235 | else map_entries (Entries.update (command_id, exec)) node; | 
| 38418 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 236 | |
| 38448 
62d16c415019
added functor Linear_Set, based on former adhoc structures in document.ML;
 wenzelm parents: 
38421diff
changeset | 237 | fun reset_after id entries = | 
| 
62d16c415019
added functor Linear_Set, based on former adhoc structures in document.ML;
 wenzelm parents: 
38421diff
changeset | 238 | (case Entries.get_after entries id of | 
| 
62d16c415019
added functor Linear_Set, based on former adhoc structures in document.ML;
 wenzelm parents: 
38421diff
changeset | 239 | NONE => entries | 
| 
62d16c415019
added functor Linear_Set, based on former adhoc structures in document.ML;
 wenzelm parents: 
38421diff
changeset | 240 | | SOME next => Entries.update (next, NONE) entries); | 
| 
62d16c415019
added functor Linear_Set, based on former adhoc structures in document.ML;
 wenzelm parents: 
38421diff
changeset | 241 | |
| 43668 | 242 | val edit_node = map_entries o fold | 
| 243 | (fn (id, SOME id2) => Entries.insert_after id (id2, NONE) | |
| 244 | | (id, NONE) => Entries.delete_after id #> reset_after id); | |
| 38418 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 245 | |
| 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 246 | |
| 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 247 | (* version operations *) | 
| 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 248 | |
| 50862 
5fc8b83322f5
more sensible order of theory nodes (correspondance to Scala version), e.g. relevant to theory progress;
 wenzelm parents: 
50201diff
changeset | 249 | val empty_version = Version String_Graph.empty; | 
| 44185 | 250 | |
| 38418 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 251 | fun nodes_of (Version nodes) = nodes; | 
| 44185 | 252 | val node_of = get_node o nodes_of; | 
| 38418 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 253 | |
| 44185 | 254 | fun cycle_msg names = "Cyclic dependency of " ^ space_implode " via " (map quote names); | 
| 44180 | 255 | |
| 44157 
a21d3e1e64fd
uniform treatment of header edits as document edits;
 wenzelm parents: 
44156diff
changeset | 256 | fun edit_nodes (name, node_edit) (Version nodes) = | 
| 
a21d3e1e64fd
uniform treatment of header edits as document edits;
 wenzelm parents: 
44156diff
changeset | 257 | Version | 
| 44436 
546adfa8a6fc
update_perspective without actual edits, bypassing the full state assignment protocol;
 wenzelm parents: 
44435diff
changeset | 258 | (case node_edit of | 
| 54562 
301a721af68b
clarified node edits sent to prover -- Clear/Blob only required for text edits within editor;
 wenzelm parents: 
54558diff
changeset | 259 | Edits edits => update_node name (edit_node edits) nodes | 
| 59715 
4f0d0e4ad68d
avoid duplicate header errors, more precise positions;
 wenzelm parents: 
59702diff
changeset | 260 |     | Deps {master, header, errors} =>
 | 
| 44436 
546adfa8a6fc
update_perspective without actual edits, bypassing the full state assignment protocol;
 wenzelm parents: 
44435diff
changeset | 261 | let | 
| 48927 
ef462b5558eb
theory def/ref position reports, which enable hyperlinks etc.;
 wenzelm parents: 
48918diff
changeset | 262 | val imports = map fst (#imports header); | 
| 44436 
546adfa8a6fc
update_perspective without actual edits, bypassing the full state assignment protocol;
 wenzelm parents: 
44435diff
changeset | 263 | val nodes1 = nodes | 
| 
546adfa8a6fc
update_perspective without actual edits, bypassing the full state assignment protocol;
 wenzelm parents: 
44435diff
changeset | 264 | |> default_node name | 
| 48927 
ef462b5558eb
theory def/ref position reports, which enable hyperlinks etc.;
 wenzelm parents: 
48918diff
changeset | 265 | |> fold default_node imports; | 
| 44436 
546adfa8a6fc
update_perspective without actual edits, bypassing the full state assignment protocol;
 wenzelm parents: 
44435diff
changeset | 266 | val nodes2 = nodes1 | 
| 50862 
5fc8b83322f5
more sensible order of theory nodes (correspondance to Scala version), e.g. relevant to theory progress;
 wenzelm parents: 
50201diff
changeset | 267 | |> String_Graph.Keys.fold | 
| 
5fc8b83322f5
more sensible order of theory nodes (correspondance to Scala version), e.g. relevant to theory progress;
 wenzelm parents: 
50201diff
changeset | 268 | (fn dep => String_Graph.del_edge (dep, name)) (String_Graph.imm_preds nodes1 name); | 
| 59086 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 269 | val (nodes3, errors1) = | 
| 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 270 | (String_Graph.add_deps_acyclic (name, imports) nodes2, errors) | 
| 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 271 | handle String_Graph.CYCLES cs => (nodes2, errors @ map cycle_msg cs); | 
| 59715 
4f0d0e4ad68d
avoid duplicate header errors, more precise positions;
 wenzelm parents: 
59702diff
changeset | 272 | in String_Graph.map_node name (set_header master header errors1) nodes3 end | 
| 47406 
8818f54773cc
dynamic propagation of node "updated" status, which is required to propagate edits and re-assigments and allow direct memo_result;
 wenzelm parents: 
47405diff
changeset | 273 | | Perspective perspective => update_node name (set_perspective perspective) nodes); | 
| 44444 
33a5616a7571
tuned Document.node: maintain "touched" flag to indicate changes in entries etc.;
 wenzelm parents: 
44441diff
changeset | 274 | |
| 59086 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 275 | fun update_keywords name nodes = | 
| 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 276 | nodes |> String_Graph.map_node name (fn node => | 
| 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 277 | if is_empty_node node then node | 
| 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 278 | else | 
| 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 279 | let | 
| 59715 
4f0d0e4ad68d
avoid duplicate header errors, more precise positions;
 wenzelm parents: 
59702diff
changeset | 280 |         val {master, header, errors} = get_header node;
 | 
| 59086 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 281 | val imports_keywords = map_filter (get_keywords o get_node nodes o #1) (#imports header); | 
| 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 282 | val keywords = | 
| 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 283 | Library.foldl Keyword.merge_keywords (Session.get_keywords (), imports_keywords); | 
| 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 284 | val (keywords', errors') = | 
| 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 285 | (Keyword.add_keywords (#keywords header) keywords, errors) | 
| 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 286 | handle ERROR msg => | 
| 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 287 | (keywords, if member (op =) errors msg then errors else errors @ [msg]); | 
| 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 288 | in | 
| 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 289 | node | 
| 59715 
4f0d0e4ad68d
avoid duplicate header errors, more precise positions;
 wenzelm parents: 
59702diff
changeset | 290 | |> set_header master header errors' | 
| 59086 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 291 | |> set_keywords (SOME keywords') | 
| 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 292 | end); | 
| 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 293 | |
| 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 294 | fun edit_keywords edits (Version nodes) = | 
| 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 295 | Version | 
| 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 296 | (fold update_keywords | 
| 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 297 | (String_Graph.all_succs nodes (map_filter (fn (a, Deps _) => SOME a | _ => NONE) edits)) | 
| 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 298 | nodes); | 
| 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 299 | |
| 70695 | 300 | fun suppressed_node (nodes: node String_Graph.T) (name, node) = | 
| 70282 | 301 | String_Graph.is_maximal nodes name andalso is_empty_node node; | 
| 302 | ||
| 44222 
9d5ef6cd4ee1
use full .thy file name as node name, which makes MiscUtilities.resolveSymlinks/File.getCanonicalPath more predictable;
 wenzelm parents: 
44202diff
changeset | 303 | fun put_node (name, node) (Version nodes) = | 
| 57616 | 304 | let | 
| 305 | val nodes1 = update_node name (K node) nodes; | |
| 306 | val nodes2 = | |
| 70695 | 307 | if suppressed_node nodes1 (name, node) | 
| 57616 | 308 | then String_Graph.del_node name nodes1 | 
| 309 | else nodes1; | |
| 310 | in Version nodes2 end; | |
| 38418 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 311 | |
| 38150 
67fc24df3721
simplified/refined document model: collection of named nodes, without proper dependencies yet;
 wenzelm parents: diff
changeset | 312 | end; | 
| 
67fc24df3721
simplified/refined document model: collection of named nodes, without proper dependencies yet;
 wenzelm parents: diff
changeset | 313 | |
| 38418 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 314 | |
| 52595 | 315 | |
| 316 | (** main state -- document structure and execution process **) | |
| 52536 | 317 | |
| 56458 
a8d960baa5c2
simplified blob again (amending 1e77ed11f2f7): only store file node name, i.e. the raw editor file name;
 wenzelm parents: 
56447diff
changeset | 318 | type blob_digest = (string * string option) Exn.result; (*file node name, raw digest*) | 
| 55798 | 319 | |
| 52774 
627fb639a2d9
maintain explicit execution frontier: avoid conflict with former task via static dependency;
 wenzelm parents: 
52772diff
changeset | 320 | type execution = | 
| 
627fb639a2d9
maintain explicit execution frontier: avoid conflict with former task via static dependency;
 wenzelm parents: 
52772diff
changeset | 321 |  {version_id: Document_ID.version,  (*static version id*)
 | 
| 
627fb639a2d9
maintain explicit execution frontier: avoid conflict with former task via static dependency;
 wenzelm parents: 
52772diff
changeset | 322 | execution_id: Document_ID.execution, (*dynamic execution id*) | 
| 68366 
cd387c55e085
fork parallel prints early in execution: avoid degradation of priority due to main eval task;
 wenzelm parents: 
68354diff
changeset | 323 | delay_request: unit future, (*pending event timer request*) | 
| 
cd387c55e085
fork parallel prints early in execution: avoid degradation of priority due to main eval task;
 wenzelm parents: 
68354diff
changeset | 324 | parallel_prints: Command.exec list}; (*parallel prints for early execution*) | 
| 52604 | 325 | |
| 52774 
627fb639a2d9
maintain explicit execution frontier: avoid conflict with former task via static dependency;
 wenzelm parents: 
52772diff
changeset | 326 | val no_execution: execution = | 
| 59193 
59f1591a11cb
eliminated Document.execution frontier (again, see 627fb639a2d9): just run into older execution, potentially stalling worker thread, but without global delay due to long-running tasks (notably sledgehammer);
 wenzelm parents: 
59086diff
changeset | 327 |   {version_id = Document_ID.none,
 | 
| 
59f1591a11cb
eliminated Document.execution frontier (again, see 627fb639a2d9): just run into older execution, potentially stalling worker thread, but without global delay due to long-running tasks (notably sledgehammer);
 wenzelm parents: 
59086diff
changeset | 328 | execution_id = Document_ID.none, | 
| 68366 
cd387c55e085
fork parallel prints early in execution: avoid degradation of priority due to main eval task;
 wenzelm parents: 
68354diff
changeset | 329 | delay_request = Future.value (), | 
| 
cd387c55e085
fork parallel prints early in execution: avoid degradation of priority due to main eval task;
 wenzelm parents: 
68354diff
changeset | 330 | parallel_prints = []}; | 
| 52774 
627fb639a2d9
maintain explicit execution frontier: avoid conflict with former task via static dependency;
 wenzelm parents: 
52772diff
changeset | 331 | |
| 68366 
cd387c55e085
fork parallel prints early in execution: avoid degradation of priority due to main eval task;
 wenzelm parents: 
68354diff
changeset | 332 | fun new_execution version_id delay_request parallel_prints : execution = | 
| 59193 
59f1591a11cb
eliminated Document.execution frontier (again, see 627fb639a2d9): just run into older execution, potentially stalling worker thread, but without global delay due to long-running tasks (notably sledgehammer);
 wenzelm parents: 
59086diff
changeset | 333 |   {version_id = version_id,
 | 
| 
59f1591a11cb
eliminated Document.execution frontier (again, see 627fb639a2d9): just run into older execution, potentially stalling worker thread, but without global delay due to long-running tasks (notably sledgehammer);
 wenzelm parents: 
59086diff
changeset | 334 | execution_id = Execution.start (), | 
| 68366 
cd387c55e085
fork parallel prints early in execution: avoid degradation of priority due to main eval task;
 wenzelm parents: 
68354diff
changeset | 335 | delay_request = delay_request, | 
| 
cd387c55e085
fork parallel prints early in execution: avoid degradation of priority due to main eval task;
 wenzelm parents: 
68354diff
changeset | 336 | parallel_prints = parallel_prints}; | 
| 52604 | 337 | |
| 38418 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 338 | abstype state = State of | 
| 52536 | 339 |  {versions: version Inttab.table,  (*version id -> document content*)
 | 
| 55798 | 340 | blobs: (SHA1.digest * string list) Symtab.table, (*raw digest -> digest, lines*) | 
| 59689 
7968c57ea240
simplified Command.resolve_files in ML, using blobs_index from Scala;
 wenzelm parents: 
59687diff
changeset | 341 | commands: (string * blob_digest list * int * Token.T list lazy) Inttab.table, | 
| 
7968c57ea240
simplified Command.resolve_files in ML, using blobs_index from Scala;
 wenzelm parents: 
59687diff
changeset | 342 | (*command id -> name, inlined files, token index of files, command span*) | 
| 52536 | 343 | execution: execution} (*current execution process*) | 
| 38418 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 344 | with | 
| 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 345 | |
| 54519 
5fed81762406
maintain blobs within document state: digest + text in ML, digest-only in Scala;
 wenzelm parents: 
54516diff
changeset | 346 | fun make_state (versions, blobs, commands, execution) = | 
| 
5fed81762406
maintain blobs within document state: digest + text in ML, digest-only in Scala;
 wenzelm parents: 
54516diff
changeset | 347 |   State {versions = versions, blobs = blobs, commands = commands, execution = execution};
 | 
| 38418 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 348 | |
| 54519 
5fed81762406
maintain blobs within document state: digest + text in ML, digest-only in Scala;
 wenzelm parents: 
54516diff
changeset | 349 | fun map_state f (State {versions, blobs, commands, execution}) =
 | 
| 
5fed81762406
maintain blobs within document state: digest + text in ML, digest-only in Scala;
 wenzelm parents: 
54516diff
changeset | 350 | make_state (f (versions, blobs, commands, execution)); | 
| 38418 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 351 | |
| 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 352 | val init_state = | 
| 54519 
5fed81762406
maintain blobs within document state: digest + text in ML, digest-only in Scala;
 wenzelm parents: 
54516diff
changeset | 353 | make_state (Inttab.make [(Document_ID.none, empty_version)], | 
| 
5fed81762406
maintain blobs within document state: digest + text in ML, digest-only in Scala;
 wenzelm parents: 
54516diff
changeset | 354 | Symtab.empty, Inttab.empty, no_execution); | 
| 38418 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 355 | |
| 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 356 | |
| 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 357 | (* document versions *) | 
| 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 358 | |
| 68366 
cd387c55e085
fork parallel prints early in execution: avoid degradation of priority due to main eval task;
 wenzelm parents: 
68354diff
changeset | 359 | fun parallel_prints_node node = | 
| 
cd387c55e085
fork parallel prints early in execution: avoid degradation of priority due to main eval task;
 wenzelm parents: 
68354diff
changeset | 360 | iterate_entries (fn (_, opt_exec) => fn rev_result => | 
| 
cd387c55e085
fork parallel prints early in execution: avoid degradation of priority due to main eval task;
 wenzelm parents: 
68354diff
changeset | 361 | (case opt_exec of | 
| 
cd387c55e085
fork parallel prints early in execution: avoid degradation of priority due to main eval task;
 wenzelm parents: 
68354diff
changeset | 362 | SOME (eval, prints) => | 
| 
cd387c55e085
fork parallel prints early in execution: avoid degradation of priority due to main eval task;
 wenzelm parents: 
68354diff
changeset | 363 | (case filter Command.parallel_print prints of | 
| 
cd387c55e085
fork parallel prints early in execution: avoid degradation of priority due to main eval task;
 wenzelm parents: 
68354diff
changeset | 364 | [] => SOME rev_result | 
| 
cd387c55e085
fork parallel prints early in execution: avoid degradation of priority due to main eval task;
 wenzelm parents: 
68354diff
changeset | 365 | | prints' => SOME ((eval, prints') :: rev_result)) | 
| 
cd387c55e085
fork parallel prints early in execution: avoid degradation of priority due to main eval task;
 wenzelm parents: 
68354diff
changeset | 366 | | NONE => NONE)) node [] |> rev; | 
| 
cd387c55e085
fork parallel prints early in execution: avoid degradation of priority due to main eval task;
 wenzelm parents: 
68354diff
changeset | 367 | |
| 
cd387c55e085
fork parallel prints early in execution: avoid degradation of priority due to main eval task;
 wenzelm parents: 
68354diff
changeset | 368 | fun define_version version_id version assigned_nodes = | 
| 59193 
59f1591a11cb
eliminated Document.execution frontier (again, see 627fb639a2d9): just run into older execution, potentially stalling worker thread, but without global delay due to long-running tasks (notably sledgehammer);
 wenzelm parents: 
59086diff
changeset | 369 |   map_state (fn (versions, blobs, commands, {delay_request, ...}) =>
 | 
| 47420 
0dbe6c69eda2
just one dedicated execution per document version -- NB: non-monotonicity of cancel always requires fresh update;
 wenzelm parents: 
47415diff
changeset | 370 | let | 
| 68366 
cd387c55e085
fork parallel prints early in execution: avoid degradation of priority due to main eval task;
 wenzelm parents: 
68354diff
changeset | 371 | val version' = fold put_node assigned_nodes version; | 
| 
cd387c55e085
fork parallel prints early in execution: avoid degradation of priority due to main eval task;
 wenzelm parents: 
68354diff
changeset | 372 | val versions' = Inttab.update_new (version_id, version') versions | 
| 47420 
0dbe6c69eda2
just one dedicated execution per document version -- NB: non-monotonicity of cancel always requires fresh update;
 wenzelm parents: 
47415diff
changeset | 373 | handle Inttab.DUP dup => err_dup "document version" dup; | 
| 68366 
cd387c55e085
fork parallel prints early in execution: avoid degradation of priority due to main eval task;
 wenzelm parents: 
68354diff
changeset | 374 | val parallel_prints = maps (parallel_prints_node o #2) assigned_nodes; | 
| 
cd387c55e085
fork parallel prints early in execution: avoid degradation of priority due to main eval task;
 wenzelm parents: 
68354diff
changeset | 375 | val execution' = new_execution version_id delay_request parallel_prints; | 
| 54519 
5fed81762406
maintain blobs within document state: digest + text in ML, digest-only in Scala;
 wenzelm parents: 
54516diff
changeset | 376 | in (versions', blobs, commands, execution') end); | 
| 38418 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 377 | |
| 52536 | 378 | fun the_version (State {versions, ...}) version_id =
 | 
| 379 | (case Inttab.lookup versions version_id of | |
| 380 | NONE => err_undef "document version" version_id | |
| 38418 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 381 | | SOME version => version); | 
| 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 382 | |
| 52536 | 383 | fun delete_version version_id versions = | 
| 384 | Inttab.delete version_id versions | |
| 385 | handle Inttab.UNDEF _ => err_undef "document version" version_id; | |
| 44673 | 386 | |
| 38418 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 387 | |
| 54519 
5fed81762406
maintain blobs within document state: digest + text in ML, digest-only in Scala;
 wenzelm parents: 
54516diff
changeset | 388 | (* inlined files *) | 
| 
5fed81762406
maintain blobs within document state: digest + text in ML, digest-only in Scala;
 wenzelm parents: 
54516diff
changeset | 389 | |
| 
5fed81762406
maintain blobs within document state: digest + text in ML, digest-only in Scala;
 wenzelm parents: 
54516diff
changeset | 390 | fun define_blob digest text = | 
| 
5fed81762406
maintain blobs within document state: digest + text in ML, digest-only in Scala;
 wenzelm parents: 
54516diff
changeset | 391 | map_state (fn (versions, blobs, commands, execution) => | 
| 57638 
ed58e740a699
less authentic SHA1.digest: trust Scala side on blobs and avoid re-calculation via Foreign Language Interface, which might be a cause of problems;
 wenzelm parents: 
57616diff
changeset | 392 | let val blobs' = Symtab.update (digest, (SHA1.fake digest, split_lines text)) blobs | 
| 54519 
5fed81762406
maintain blobs within document state: digest + text in ML, digest-only in Scala;
 wenzelm parents: 
54516diff
changeset | 393 | in (versions, blobs', commands, execution) end); | 
| 
5fed81762406
maintain blobs within document state: digest + text in ML, digest-only in Scala;
 wenzelm parents: 
54516diff
changeset | 394 | |
| 
5fed81762406
maintain blobs within document state: digest + text in ML, digest-only in Scala;
 wenzelm parents: 
54516diff
changeset | 395 | fun the_blob (State {blobs, ...}) digest =
 | 
| 
5fed81762406
maintain blobs within document state: digest + text in ML, digest-only in Scala;
 wenzelm parents: 
54516diff
changeset | 396 | (case Symtab.lookup blobs digest of | 
| 
5fed81762406
maintain blobs within document state: digest + text in ML, digest-only in Scala;
 wenzelm parents: 
54516diff
changeset | 397 |     NONE => error ("Undefined blob: " ^ digest)
 | 
| 55788 
67699e08e969
store blobs / inlined files as separate text lines: smaller values are more healthy for the Poly/ML RTS and allow implicit sharing;
 wenzelm parents: 
54562diff
changeset | 398 | | SOME content => content); | 
| 54519 
5fed81762406
maintain blobs within document state: digest + text in ML, digest-only in Scala;
 wenzelm parents: 
54516diff
changeset | 399 | |
| 56447 
1e77ed11f2f7
separate file_node vs. file_path, e.g. relevant on Windows for hyperlink to the latter;
 wenzelm parents: 
56208diff
changeset | 400 | fun resolve_blob state (blob_digest: blob_digest) = | 
| 61077 
06cca32aa519
thread context for exceptions from forks, e.g. relevant when printing errors;
 wenzelm parents: 
60937diff
changeset | 401 | blob_digest |> Exn.map_res (fn (file_node, raw_digest) => | 
| 56458 
a8d960baa5c2
simplified blob again (amending 1e77ed11f2f7): only store file node name, i.e. the raw editor file name;
 wenzelm parents: 
56447diff
changeset | 402 | (file_node, Option.map (the_blob state) raw_digest)); | 
| 56447 
1e77ed11f2f7
separate file_node vs. file_path, e.g. relevant on Windows for hyperlink to the latter;
 wenzelm parents: 
56208diff
changeset | 403 | |
| 59685 
c043306d2598
clarified markup for embedded files, early before execution;
 wenzelm parents: 
59347diff
changeset | 404 | fun blob_reports pos (blob_digest: blob_digest) = | 
| 
c043306d2598
clarified markup for embedded files, early before execution;
 wenzelm parents: 
59347diff
changeset | 405 | (case blob_digest of Exn.Res (file_node, _) => [(pos, Markup.path file_node)] | _ => []); | 
| 
c043306d2598
clarified markup for embedded files, early before execution;
 wenzelm parents: 
59347diff
changeset | 406 | |
| 54519 
5fed81762406
maintain blobs within document state: digest + text in ML, digest-only in Scala;
 wenzelm parents: 
54516diff
changeset | 407 | |
| 38418 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 408 | (* commands *) | 
| 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 409 | |
| 70663 | 410 | type command = | 
| 411 |   {command_id: Document_ID.command,
 | |
| 412 | name: string, | |
| 413 | blobs_digests: blob_digest list, | |
| 414 | blobs_index: int, | |
| 415 | tokens: ((int * int) * string) list}; | |
| 416 | ||
| 417 | fun define_command {command_id, name, blobs_digests, blobs_index, tokens} =
 | |
| 54519 
5fed81762406
maintain blobs within document state: digest + text in ML, digest-only in Scala;
 wenzelm parents: 
54516diff
changeset | 418 | map_state (fn (versions, blobs, commands, execution) => | 
| 38418 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 419 | let | 
| 52536 | 420 | val id = Document_ID.print command_id; | 
| 421 | val span = | |
| 66167 | 422 | Lazy.lazy_name "Document.define_command" (fn () => | 
| 52536 | 423 | Position.setmp_thread_data (Position.id_only id) | 
| 59685 
c043306d2598
clarified markup for embedded files, early before execution;
 wenzelm parents: 
59347diff
changeset | 424 | (fn () => | 
| 
c043306d2598
clarified markup for embedded files, early before execution;
 wenzelm parents: 
59347diff
changeset | 425 | let | 
| 70663 | 426 | val (tokens, _) = fold_map Token.make tokens (Position.id id); | 
| 59685 
c043306d2598
clarified markup for embedded files, early before execution;
 wenzelm parents: 
59347diff
changeset | 427 | val _ = | 
| 59702 
58dfaa369c11
hybrid use of command blobs: inlined errors and auxiliary files;
 wenzelm parents: 
59689diff
changeset | 428 | if blobs_index < 0 | 
| 
58dfaa369c11
hybrid use of command blobs: inlined errors and auxiliary files;
 wenzelm parents: 
59689diff
changeset | 429 | then (*inlined errors*) | 
| 
58dfaa369c11
hybrid use of command blobs: inlined errors and auxiliary files;
 wenzelm parents: 
59689diff
changeset | 430 | map_filter Exn.get_exn blobs_digests | 
| 
58dfaa369c11
hybrid use of command blobs: inlined errors and auxiliary files;
 wenzelm parents: 
59689diff
changeset | 431 | |> List.app (Output.error_message o Runtime.exn_message) | 
| 
58dfaa369c11
hybrid use of command blobs: inlined errors and auxiliary files;
 wenzelm parents: 
59689diff
changeset | 432 | else (*auxiliary files*) | 
| 60027 
c42d65e11b6e
clarified language_path markup (again): exactly once *after* static phase, see also 83071f4c8ae6 and c043306d2598;
 wenzelm parents: 
59934diff
changeset | 433 | let val pos = Token.pos_of (nth tokens blobs_index) | 
| 
c42d65e11b6e
clarified language_path markup (again): exactly once *after* static phase, see also 83071f4c8ae6 and c043306d2598;
 wenzelm parents: 
59934diff
changeset | 434 | in Position.reports (maps (blob_reports pos) blobs_digests) end; | 
| 59685 
c043306d2598
clarified markup for embedded files, early before execution;
 wenzelm parents: 
59347diff
changeset | 435 | in tokens end) ()); | 
| 
c043306d2598
clarified markup for embedded files, early before execution;
 wenzelm parents: 
59347diff
changeset | 436 | val commands' = | 
| 59702 
58dfaa369c11
hybrid use of command blobs: inlined errors and auxiliary files;
 wenzelm parents: 
59689diff
changeset | 437 | Inttab.update_new (command_id, (name, blobs_digests, blobs_index, span)) commands | 
| 59685 
c043306d2598
clarified markup for embedded files, early before execution;
 wenzelm parents: 
59347diff
changeset | 438 | handle Inttab.DUP dup => err_dup "command" dup; | 
| 54519 
5fed81762406
maintain blobs within document state: digest + text in ML, digest-only in Scala;
 wenzelm parents: 
54516diff
changeset | 439 | in (versions, blobs, commands', execution) end); | 
| 38418 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 440 | |
| 52536 | 441 | fun the_command (State {commands, ...}) command_id =
 | 
| 442 | (case Inttab.lookup commands command_id of | |
| 443 | NONE => err_undef "command" command_id | |
| 44644 
317e4962dd0f
clarified define_command: store name as structural information;
 wenzelm parents: 
44643diff
changeset | 444 | | SOME command => command); | 
| 38418 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 445 | |
| 52569 
18dde2cf7aa7
produce print_execs assignment earlier during last_common phase (referring to current command_id, not prev);
 wenzelm parents: 
52566diff
changeset | 446 | val the_command_name = #1 oo the_command; | 
| 
18dde2cf7aa7
produce print_execs assignment earlier during last_common phase (referring to current command_id, not prev);
 wenzelm parents: 
52566diff
changeset | 447 | |
| 66379 
6392766f3c25
maintain "consolidated" status of theory nodes, which means all evals are finished (but not necessarily prints nor imports);
 wenzelm parents: 
66369diff
changeset | 448 | |
| 
6392766f3c25
maintain "consolidated" status of theory nodes, which means all evals are finished (but not necessarily prints nor imports);
 wenzelm parents: 
66369diff
changeset | 449 | (* execution *) | 
| 
6392766f3c25
maintain "consolidated" status of theory nodes, which means all evals are finished (but not necessarily prints nor imports);
 wenzelm parents: 
66369diff
changeset | 450 | |
| 
6392766f3c25
maintain "consolidated" status of theory nodes, which means all evals are finished (but not necessarily prints nor imports);
 wenzelm parents: 
66369diff
changeset | 451 | fun get_execution (State {execution, ...}) = execution;
 | 
| 
6392766f3c25
maintain "consolidated" status of theory nodes, which means all evals are finished (but not necessarily prints nor imports);
 wenzelm parents: 
66369diff
changeset | 452 | fun get_execution_version state = the_version state (#version_id (get_execution state)); | 
| 
6392766f3c25
maintain "consolidated" status of theory nodes, which means all evals are finished (but not necessarily prints nor imports);
 wenzelm parents: 
66369diff
changeset | 453 | |
| 60880 
fa958e24ff24
set breakpoint state on ML side, relying on stable situation within the PIDE editing queue;
 wenzelm parents: 
60198diff
changeset | 454 | fun command_exec state node_name command_id = | 
| 
fa958e24ff24
set breakpoint state on ML side, relying on stable situation within the PIDE editing queue;
 wenzelm parents: 
60198diff
changeset | 455 | let | 
| 66379 
6392766f3c25
maintain "consolidated" status of theory nodes, which means all evals are finished (but not necessarily prints nor imports);
 wenzelm parents: 
66369diff
changeset | 456 | val version = get_execution_version state; | 
| 
6392766f3c25
maintain "consolidated" status of theory nodes, which means all evals are finished (but not necessarily prints nor imports);
 wenzelm parents: 
66369diff
changeset | 457 | val node = get_node (nodes_of version) node_name; | 
| 60880 
fa958e24ff24
set breakpoint state on ML side, relying on stable situation within the PIDE editing queue;
 wenzelm parents: 
60198diff
changeset | 458 | in the_entry node command_id end; | 
| 
fa958e24ff24
set breakpoint state on ML side, relying on stable situation within the PIDE editing queue;
 wenzelm parents: 
60198diff
changeset | 459 | |
| 47420 
0dbe6c69eda2
just one dedicated execution per document version -- NB: non-monotonicity of cancel always requires fresh update;
 wenzelm parents: 
47415diff
changeset | 460 | end; | 
| 38418 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 461 | |
| 52566 
52a0eacf04d1
more formal type assign_update: avoid duplicate results and redundant update of global State.execs;
 wenzelm parents: 
52536diff
changeset | 462 | |
| 
52a0eacf04d1
more formal type assign_update: avoid duplicate results and redundant update of global State.execs;
 wenzelm parents: 
52536diff
changeset | 463 | (* remove_versions *) | 
| 
52a0eacf04d1
more formal type assign_update: avoid duplicate results and redundant update of global State.execs;
 wenzelm parents: 
52536diff
changeset | 464 | |
| 54519 
5fed81762406
maintain blobs within document state: digest + text in ML, digest-only in Scala;
 wenzelm parents: 
54516diff
changeset | 465 | fun remove_versions version_ids state = state |> map_state (fn (versions, _, _, execution) => | 
| 47420 
0dbe6c69eda2
just one dedicated execution per document version -- NB: non-monotonicity of cancel always requires fresh update;
 wenzelm parents: 
47415diff
changeset | 466 | let | 
| 52536 | 467 | val _ = | 
| 468 | member (op =) version_ids (#version_id execution) andalso | |
| 469 |         error ("Attempt to remove execution version " ^ Document_ID.print (#version_id execution));
 | |
| 47343 
b8aeab386414
less aggressive discontinue_execution before document update, to avoid unstable execs that need to be re-assigned;
 wenzelm parents: 
47342diff
changeset | 470 | |
| 52536 | 471 | val versions' = fold delete_version version_ids versions; | 
| 47420 
0dbe6c69eda2
just one dedicated execution per document version -- NB: non-monotonicity of cancel always requires fresh update;
 wenzelm parents: 
47415diff
changeset | 472 | val commands' = | 
| 
0dbe6c69eda2
just one dedicated execution per document version -- NB: non-monotonicity of cancel always requires fresh update;
 wenzelm parents: 
47415diff
changeset | 473 | (versions', Inttab.empty) |-> | 
| 
0dbe6c69eda2
just one dedicated execution per document version -- NB: non-monotonicity of cancel always requires fresh update;
 wenzelm parents: 
47415diff
changeset | 474 | Inttab.fold (fn (_, version) => nodes_of version |> | 
| 50862 
5fc8b83322f5
more sensible order of theory nodes (correspondance to Scala version), e.g. relevant to theory progress;
 wenzelm parents: 
50201diff
changeset | 475 | String_Graph.fold (fn (_, (node, _)) => node |> | 
| 52536 | 476 | iterate_entries (fn ((_, command_id), _) => | 
| 477 | SOME o Inttab.insert (K true) (command_id, the_command state command_id)))); | |
| 54519 
5fed81762406
maintain blobs within document state: digest + text in ML, digest-only in Scala;
 wenzelm parents: 
54516diff
changeset | 478 | val blobs' = | 
| 
5fed81762406
maintain blobs within document state: digest + text in ML, digest-only in Scala;
 wenzelm parents: 
54516diff
changeset | 479 | (commands', Symtab.empty) |-> | 
| 59689 
7968c57ea240
simplified Command.resolve_files in ML, using blobs_index from Scala;
 wenzelm parents: 
59687diff
changeset | 480 | Inttab.fold (fn (_, (_, blobs, _, _)) => blobs |> | 
| 56458 
a8d960baa5c2
simplified blob again (amending 1e77ed11f2f7): only store file node name, i.e. the raw editor file name;
 wenzelm parents: 
56447diff
changeset | 481 | fold (fn Exn.Res (_, SOME b) => Symtab.update (b, the_blob state b) | _ => I)); | 
| 54519 
5fed81762406
maintain blobs within document state: digest + text in ML, digest-only in Scala;
 wenzelm parents: 
54516diff
changeset | 482 | |
| 
5fed81762406
maintain blobs within document state: digest + text in ML, digest-only in Scala;
 wenzelm parents: 
54516diff
changeset | 483 | in (versions', blobs', commands', execution) end); | 
| 38418 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 484 | |
| 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 485 | |
| 52604 | 486 | (* document execution *) | 
| 47389 
e8552cba702d
explicit checks stable_finished_theory/stable_command allow parallel asynchronous command transactions;
 wenzelm parents: 
47388diff
changeset | 487 | |
| 60198 
8483c2883c8c
always traverse required nodes, e.g. relevant for inlined errors of imported theory header;
 wenzelm parents: 
60027diff
changeset | 488 | fun make_required nodes = | 
| 
8483c2883c8c
always traverse required nodes, e.g. relevant for inlined errors of imported theory header;
 wenzelm parents: 
60027diff
changeset | 489 | let | 
| 
8483c2883c8c
always traverse required nodes, e.g. relevant for inlined errors of imported theory header;
 wenzelm parents: 
60027diff
changeset | 490 | fun all_preds P = | 
| 
8483c2883c8c
always traverse required nodes, e.g. relevant for inlined errors of imported theory header;
 wenzelm parents: 
60027diff
changeset | 491 | String_Graph.fold (fn (a, (node, _)) => P node ? cons a) nodes [] | 
| 
8483c2883c8c
always traverse required nodes, e.g. relevant for inlined errors of imported theory header;
 wenzelm parents: 
60027diff
changeset | 492 | |> String_Graph.all_preds nodes | 
| 
8483c2883c8c
always traverse required nodes, e.g. relevant for inlined errors of imported theory header;
 wenzelm parents: 
60027diff
changeset | 493 | |> Symtab.make_set; | 
| 
8483c2883c8c
always traverse required nodes, e.g. relevant for inlined errors of imported theory header;
 wenzelm parents: 
60027diff
changeset | 494 | |
| 
8483c2883c8c
always traverse required nodes, e.g. relevant for inlined errors of imported theory header;
 wenzelm parents: 
60027diff
changeset | 495 | val all_visible = all_preds visible_node; | 
| 
8483c2883c8c
always traverse required nodes, e.g. relevant for inlined errors of imported theory header;
 wenzelm parents: 
60027diff
changeset | 496 | val all_required = all_preds required_node; | 
| 
8483c2883c8c
always traverse required nodes, e.g. relevant for inlined errors of imported theory header;
 wenzelm parents: 
60027diff
changeset | 497 | in | 
| 
8483c2883c8c
always traverse required nodes, e.g. relevant for inlined errors of imported theory header;
 wenzelm parents: 
60027diff
changeset | 498 | Symtab.fold (fn (a, ()) => | 
| 
8483c2883c8c
always traverse required nodes, e.g. relevant for inlined errors of imported theory header;
 wenzelm parents: 
60027diff
changeset | 499 | exists (Symtab.defined all_visible) (String_Graph.immediate_succs nodes a) ? | 
| 
8483c2883c8c
always traverse required nodes, e.g. relevant for inlined errors of imported theory header;
 wenzelm parents: 
60027diff
changeset | 500 | Symtab.update (a, ())) all_visible all_required | 
| 
8483c2883c8c
always traverse required nodes, e.g. relevant for inlined errors of imported theory header;
 wenzelm parents: 
60027diff
changeset | 501 | end; | 
| 
8483c2883c8c
always traverse required nodes, e.g. relevant for inlined errors of imported theory header;
 wenzelm parents: 
60027diff
changeset | 502 | |
| 54519 
5fed81762406
maintain blobs within document state: digest + text in ML, digest-only in Scala;
 wenzelm parents: 
54516diff
changeset | 503 | fun start_execution state = state |> map_state (fn (versions, blobs, commands, execution) => | 
| 52796 | 504 | timeit "Document.start_execution" (fn () => | 
| 505 | let | |
| 68366 
cd387c55e085
fork parallel prints early in execution: avoid degradation of priority due to main eval task;
 wenzelm parents: 
68354diff
changeset | 506 |       val {version_id, execution_id, delay_request, parallel_prints} = execution;
 | 
| 52798 
9d3c9862d1dd
recovered delay for Document.start_execution (see also 627fb639a2d9), which potentially improves throughput when many consecutive edits arrive;
 wenzelm parents: 
52797diff
changeset | 507 | |
| 
9d3c9862d1dd
recovered delay for Document.start_execution (see also 627fb639a2d9), which potentially improves throughput when many consecutive edits arrive;
 wenzelm parents: 
52797diff
changeset | 508 | val delay = seconds (Options.default_real "editor_execution_delay"); | 
| 52774 
627fb639a2d9
maintain explicit execution frontier: avoid conflict with former task via static dependency;
 wenzelm parents: 
52772diff
changeset | 509 | |
| 52798 
9d3c9862d1dd
recovered delay for Document.start_execution (see also 627fb639a2d9), which potentially improves throughput when many consecutive edits arrive;
 wenzelm parents: 
52797diff
changeset | 510 | val _ = Future.cancel delay_request; | 
| 69826 
1bea05713dde
physical vs. logical events, the latter takes GC time into account;
 wenzelm parents: 
68869diff
changeset | 511 |       val delay_request' = Event_Timer.future {physical = true} (Time.now () + delay);
 | 
| 68366 
cd387c55e085
fork parallel prints early in execution: avoid degradation of priority due to main eval task;
 wenzelm parents: 
68354diff
changeset | 512 | val delay = Future.task_of delay_request'; | 
| 
cd387c55e085
fork parallel prints early in execution: avoid degradation of priority due to main eval task;
 wenzelm parents: 
68354diff
changeset | 513 | |
| 
cd387c55e085
fork parallel prints early in execution: avoid degradation of priority due to main eval task;
 wenzelm parents: 
68354diff
changeset | 514 | val parallel_prints' = parallel_prints | 
| 
cd387c55e085
fork parallel prints early in execution: avoid degradation of priority due to main eval task;
 wenzelm parents: 
68354diff
changeset | 515 | |> map_filter (Command.exec_parallel_prints execution_id [delay]); | 
| 52798 
9d3c9862d1dd
recovered delay for Document.start_execution (see also 627fb639a2d9), which potentially improves throughput when many consecutive edits arrive;
 wenzelm parents: 
52797diff
changeset | 516 | |
| 59198 
c73933e07c03
clarified execution graph traversal: stable imports are required to proceed, e.g. relevant to avoid crash of init_theory after discontinued execution;
 wenzelm parents: 
59193diff
changeset | 517 | fun finished_import (name, (node, _)) = | 
| 65445 
e9e7f5f5794c
more qualifier treatment, but in the end it is still ignored;
 wenzelm parents: 
65357diff
changeset | 518 | finished_result node orelse is_some (Thy_Info.lookup_theory name); | 
| 60198 
8483c2883c8c
always traverse required nodes, e.g. relevant for inlined errors of imported theory header;
 wenzelm parents: 
60027diff
changeset | 519 | |
| 
8483c2883c8c
always traverse required nodes, e.g. relevant for inlined errors of imported theory header;
 wenzelm parents: 
60027diff
changeset | 520 | val nodes = nodes_of (the_version state version_id); | 
| 
8483c2883c8c
always traverse required nodes, e.g. relevant for inlined errors of imported theory header;
 wenzelm parents: 
60027diff
changeset | 521 | val required = make_required nodes; | 
| 59193 
59f1591a11cb
eliminated Document.execution frontier (again, see 627fb639a2d9): just run into older execution, potentially stalling worker thread, but without global delay due to long-running tasks (notably sledgehammer);
 wenzelm parents: 
59086diff
changeset | 522 | val _ = | 
| 70773 | 523 | nodes |> String_Graph.schedule | 
| 52573 
815461c835b9
tuned start_execution: avoid sleep on worker thread;
 wenzelm parents: 
52570diff
changeset | 524 | (fn deps => fn (name, node) => | 
| 60198 
8483c2883c8c
always traverse required nodes, e.g. relevant for inlined errors of imported theory header;
 wenzelm parents: 
60027diff
changeset | 525 | if Symtab.defined required name orelse visible_node node orelse pending_result node then | 
| 52774 
627fb639a2d9
maintain explicit execution frontier: avoid conflict with former task via static dependency;
 wenzelm parents: 
52772diff
changeset | 526 | let | 
| 
627fb639a2d9
maintain explicit execution frontier: avoid conflict with former task via static dependency;
 wenzelm parents: 
52772diff
changeset | 527 | val future = | 
| 
627fb639a2d9
maintain explicit execution frontier: avoid conflict with former task via static dependency;
 wenzelm parents: 
52772diff
changeset | 528 | (singleton o Future.forks) | 
| 59193 
59f1591a11cb
eliminated Document.execution frontier (again, see 627fb639a2d9): just run into older execution, potentially stalling worker thread, but without global delay due to long-running tasks (notably sledgehammer);
 wenzelm parents: 
59086diff
changeset | 529 |                    {name = "theory:" ^ name,
 | 
| 
59f1591a11cb
eliminated Document.execution frontier (again, see 627fb639a2d9): just run into older execution, potentially stalling worker thread, but without global delay due to long-running tasks (notably sledgehammer);
 wenzelm parents: 
59086diff
changeset | 530 | group = SOME (Future.new_group NONE), | 
| 68366 
cd387c55e085
fork parallel prints early in execution: avoid degradation of priority due to main eval task;
 wenzelm parents: 
68354diff
changeset | 531 | deps = delay :: Execution.active_tasks name @ maps (the_list o #2 o #2) deps, | 
| 68866 | 532 | pri = 0, interrupts = false} | 
| 533 | (fn () => | |
| 534 | (Execution.worker_task_active true name; | |
| 535 | if forall finished_import deps then | |
| 536 | iterate_entries (fn (_, opt_exec) => fn () => | |
| 537 | (case opt_exec of | |
| 538 | SOME exec => | |
| 539 | if Execution.is_running execution_id | |
| 540 | then SOME (Command.exec execution_id exec) | |
| 541 | else NONE | |
| 542 | | NONE => NONE)) node () | |
| 543 | else (); | |
| 544 | Execution.worker_task_active false name) | |
| 545 | handle exn => | |
| 546 | (Output.system_message (Runtime.exn_message exn); | |
| 547 | Execution.worker_task_active false name; | |
| 548 | Exn.reraise exn)); | |
| 59198 
c73933e07c03
clarified execution graph traversal: stable imports are required to proceed, e.g. relevant to avoid crash of init_theory after discontinued execution;
 wenzelm parents: 
59193diff
changeset | 549 | in (node, SOME (Future.task_of future)) end | 
| 
c73933e07c03
clarified execution graph traversal: stable imports are required to proceed, e.g. relevant to avoid crash of init_theory after discontinued execution;
 wenzelm parents: 
59193diff
changeset | 550 | else (node, NONE)); | 
| 52798 
9d3c9862d1dd
recovered delay for Document.start_execution (see also 627fb639a2d9), which potentially improves throughput when many consecutive edits arrive;
 wenzelm parents: 
52797diff
changeset | 551 | val execution' = | 
| 68366 
cd387c55e085
fork parallel prints early in execution: avoid degradation of priority due to main eval task;
 wenzelm parents: 
68354diff
changeset | 552 |         {version_id = version_id, execution_id = execution_id,
 | 
| 
cd387c55e085
fork parallel prints early in execution: avoid degradation of priority due to main eval task;
 wenzelm parents: 
68354diff
changeset | 553 | delay_request = delay_request', parallel_prints = parallel_prints'}; | 
| 54519 
5fed81762406
maintain blobs within document state: digest + text in ML, digest-only in Scala;
 wenzelm parents: 
54516diff
changeset | 554 | in (versions, blobs, commands, execution') end)); | 
| 47345 
193251980a73
more scalable execute/update: avoid redundant traversal of invisible/finished nodes;
 wenzelm parents: 
47344diff
changeset | 555 | |
| 
193251980a73
more scalable execute/update: avoid redundant traversal of invisible/finished nodes;
 wenzelm parents: 
47344diff
changeset | 556 | |
| 47420 
0dbe6c69eda2
just one dedicated execution per document version -- NB: non-monotonicity of cancel always requires fresh update;
 wenzelm parents: 
47415diff
changeset | 557 | |
| 
0dbe6c69eda2
just one dedicated execution per document version -- NB: non-monotonicity of cancel always requires fresh update;
 wenzelm parents: 
47415diff
changeset | 558 | (** document update **) | 
| 38418 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 559 | |
| 52566 
52a0eacf04d1
more formal type assign_update: avoid duplicate results and redundant update of global State.execs;
 wenzelm parents: 
52536diff
changeset | 560 | (* exec state assignment *) | 
| 
52a0eacf04d1
more formal type assign_update: avoid duplicate results and redundant update of global State.execs;
 wenzelm parents: 
52536diff
changeset | 561 | |
| 
52a0eacf04d1
more formal type assign_update: avoid duplicate results and redundant update of global State.execs;
 wenzelm parents: 
52536diff
changeset | 562 | type assign_update = Command.exec option Inttab.table; (*command id -> exec*) | 
| 
52a0eacf04d1
more formal type assign_update: avoid duplicate results and redundant update of global State.execs;
 wenzelm parents: 
52536diff
changeset | 563 | |
| 
52a0eacf04d1
more formal type assign_update: avoid duplicate results and redundant update of global State.execs;
 wenzelm parents: 
52536diff
changeset | 564 | val assign_update_empty: assign_update = Inttab.empty; | 
| 
52a0eacf04d1
more formal type assign_update: avoid duplicate results and redundant update of global State.execs;
 wenzelm parents: 
52536diff
changeset | 565 | fun assign_update_defined (tab: assign_update) command_id = Inttab.defined tab command_id; | 
| 68336 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 566 | fun assign_update_change entry (tab: assign_update) = Inttab.update entry tab; | 
| 52566 
52a0eacf04d1
more formal type assign_update: avoid duplicate results and redundant update of global State.execs;
 wenzelm parents: 
52536diff
changeset | 567 | fun assign_update_apply (tab: assign_update) node = Inttab.fold assign_entry tab node; | 
| 
52a0eacf04d1
more formal type assign_update: avoid duplicate results and redundant update of global State.execs;
 wenzelm parents: 
52536diff
changeset | 568 | |
| 
52a0eacf04d1
more formal type assign_update: avoid duplicate results and redundant update of global State.execs;
 wenzelm parents: 
52536diff
changeset | 569 | fun assign_update_new upd (tab: assign_update) = | 
| 
52a0eacf04d1
more formal type assign_update: avoid duplicate results and redundant update of global State.execs;
 wenzelm parents: 
52536diff
changeset | 570 | Inttab.update_new upd tab | 
| 
52a0eacf04d1
more formal type assign_update: avoid duplicate results and redundant update of global State.execs;
 wenzelm parents: 
52536diff
changeset | 571 | handle Inttab.DUP dup => err_dup "exec state assignment" dup; | 
| 
52a0eacf04d1
more formal type assign_update: avoid duplicate results and redundant update of global State.execs;
 wenzelm parents: 
52536diff
changeset | 572 | |
| 
52a0eacf04d1
more formal type assign_update: avoid duplicate results and redundant update of global State.execs;
 wenzelm parents: 
52536diff
changeset | 573 | fun assign_update_result (tab: assign_update) = | 
| 
52a0eacf04d1
more formal type assign_update: avoid duplicate results and redundant update of global State.execs;
 wenzelm parents: 
52536diff
changeset | 574 | Inttab.fold (fn (command_id, exec) => cons (command_id, Command.exec_ids exec)) tab []; | 
| 
52a0eacf04d1
more formal type assign_update: avoid duplicate results and redundant update of global State.execs;
 wenzelm parents: 
52536diff
changeset | 575 | |
| 
52a0eacf04d1
more formal type assign_update: avoid duplicate results and redundant update of global State.execs;
 wenzelm parents: 
52536diff
changeset | 576 | |
| 
52a0eacf04d1
more formal type assign_update: avoid duplicate results and redundant update of global State.execs;
 wenzelm parents: 
52536diff
changeset | 577 | (* update *) | 
| 
52a0eacf04d1
more formal type assign_update: avoid duplicate results and redundant update of global State.execs;
 wenzelm parents: 
52536diff
changeset | 578 | |
| 38418 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 579 | local | 
| 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 580 | |
| 48927 
ef462b5558eb
theory def/ref position reports, which enable hyperlinks etc.;
 wenzelm parents: 
48918diff
changeset | 581 | fun init_theory deps node span = | 
| 47335 | 582 | let | 
| 54526 | 583 | val master_dir = master_directory node; | 
| 584 | val header = read_header node span; | |
| 48927 
ef462b5558eb
theory def/ref position reports, which enable hyperlinks etc.;
 wenzelm parents: 
48918diff
changeset | 585 | val imports = #imports header; | 
| 59716 | 586 | |
| 68869 | 587 | fun maybe_eval_result eval = Command.eval_result_state eval | 
| 69886 | 588 | handle Fail _ => Toplevel.init_toplevel (); | 
| 68869 | 589 | |
| 590 | fun maybe_end_theory pos st = SOME (Toplevel.end_theory pos st) | |
| 591 | handle ERROR msg => (Output.error_message msg; NONE); | |
| 592 | ||
| 59716 | 593 | val parents_reports = | 
| 594 | imports |> map_filter (fn (import, pos) => | |
| 65445 
e9e7f5f5794c
more qualifier treatment, but in the end it is still ignored;
 wenzelm parents: 
65357diff
changeset | 595 | (case Thy_Info.lookup_theory import of | 
| 59716 | 596 | NONE => | 
| 597 | maybe_end_theory pos | |
| 52536 | 598 | (case get_result (snd (the (AList.lookup (op =) deps import))) of | 
| 69886 | 599 | NONE => Toplevel.init_toplevel () | 
| 68869 | 600 | | SOME (_, eval) => maybe_eval_result eval) | 
| 59716 | 601 | | some => some) | 
| 602 | |> Option.map (fn thy => (thy, (pos, Theory.get_markup thy)))); | |
| 603 | ||
| 604 | val parents = | |
| 67380 | 605 | if null parents_reports then [Theory.get_pure ()] else map #1 parents_reports; | 
| 71674 | 606 | val _ = List.app (fn (thy, r) => Context_Position.reports_global thy [r]) parents_reports; | 
| 607 | ||
| 68323 | 608 | val thy = Resources.begin_theory master_dir header parents; | 
| 70662 | 609 | val _ = Output.status [Markup.markup_only Markup.initialized]; | 
| 68323 | 610 | in thy end; | 
| 47335 | 611 | |
| 67215 | 612 | fun check_root_theory node = | 
| 613 | let | |
| 614 | val master_dir = master_directory node; | |
| 615 | val header = #header (get_header node); | |
| 616 | val header_name = #1 (#name header); | |
| 617 | val parent = | |
| 618 | if header_name = Sessions.root_name then | |
| 619 | SOME (Thy_Info.get_theory Sessions.theory_name) | |
| 620 | else if member (op =) Thy_Header.ml_roots header_name then | |
| 621 | SOME (Thy_Info.get_theory Thy_Header.ml_bootstrapN) | |
| 622 | else NONE; | |
| 623 | in parent |> Option.map (fn thy => Resources.begin_theory master_dir header [thy]) end; | |
| 62895 
54c2abe7e9a4
treat ROOT.ML as theory with header "theory ML_Root imports ML_Bootstrap begin";
 wenzelm parents: 
62826diff
changeset | 624 | |
| 47407 | 625 | fun check_theory full name node = | 
| 65445 
e9e7f5f5794c
more qualifier treatment, but in the end it is still ignored;
 wenzelm parents: 
65357diff
changeset | 626 | is_some (Thy_Info.lookup_theory name) orelse | 
| 59715 
4f0d0e4ad68d
avoid duplicate header errors, more precise positions;
 wenzelm parents: 
59702diff
changeset | 627 | null (#errors (get_header node)) andalso (not full orelse is_some (get_result node)); | 
| 47335 | 628 | |
| 58923 | 629 | fun last_common keywords state node_required node0 node = | 
| 44482 
c7225307acf2
further clarification of Document.updated, based on last_common and after_entry;
 wenzelm parents: 
44481diff
changeset | 630 | let | 
| 44645 
5938beb84adc
more precise iterate_entries_after if start refers to last entry;
 wenzelm parents: 
44644diff
changeset | 631 | fun update_flags prev (visible, initial) = | 
| 
5938beb84adc
more precise iterate_entries_after if start refers to last entry;
 wenzelm parents: 
44644diff
changeset | 632 | let | 
| 52569 
18dde2cf7aa7
produce print_execs assignment earlier during last_common phase (referring to current command_id, not prev);
 wenzelm parents: 
52566diff
changeset | 633 | val visible' = visible andalso prev <> visible_last node; | 
| 44645 
5938beb84adc
more precise iterate_entries_after if start refers to last entry;
 wenzelm parents: 
44644diff
changeset | 634 | val initial' = initial andalso | 
| 
5938beb84adc
more precise iterate_entries_after if start refers to last entry;
 wenzelm parents: 
44644diff
changeset | 635 | (case prev of | 
| 
5938beb84adc
more precise iterate_entries_after if start refers to last entry;
 wenzelm parents: 
44644diff
changeset | 636 | NONE => true | 
| 59735 | 637 | | SOME command_id => the_command_name state command_id <> Thy_Header.theoryN); | 
| 44645 
5938beb84adc
more precise iterate_entries_after if start refers to last entry;
 wenzelm parents: 
44644diff
changeset | 638 | in (visible', initial') end; | 
| 52569 
18dde2cf7aa7
produce print_execs assignment earlier during last_common phase (referring to current command_id, not prev);
 wenzelm parents: 
52566diff
changeset | 639 | |
| 52784 
4ba2e8b9972f
de-assign execs that were not registered as running yet -- observe change of perspective more thoroughly;
 wenzelm parents: 
52776diff
changeset | 640 | fun get_common ((prev, command_id), opt_exec) (_, ok, flags, assign_update) = | 
| 
4ba2e8b9972f
de-assign execs that were not registered as running yet -- observe change of perspective more thoroughly;
 wenzelm parents: 
52776diff
changeset | 641 | if ok then | 
| 47630 | 642 | let | 
| 52784 
4ba2e8b9972f
de-assign execs that were not registered as running yet -- observe change of perspective more thoroughly;
 wenzelm parents: 
52776diff
changeset | 643 | val flags' as (visible', _) = update_flags prev flags; | 
| 
4ba2e8b9972f
de-assign execs that were not registered as running yet -- observe change of perspective more thoroughly;
 wenzelm parents: 
52776diff
changeset | 644 | val ok' = | 
| 52586 | 645 | (case (lookup_entry node0 command_id, opt_exec) of | 
| 52784 
4ba2e8b9972f
de-assign execs that were not registered as running yet -- observe change of perspective more thoroughly;
 wenzelm parents: 
52776diff
changeset | 646 | (SOME (eval0, _), SOME (eval, _)) => | 
| 
4ba2e8b9972f
de-assign execs that were not registered as running yet -- observe change of perspective more thoroughly;
 wenzelm parents: 
52776diff
changeset | 647 | Command.eval_eq (eval0, eval) andalso | 
| 
4ba2e8b9972f
de-assign execs that were not registered as running yet -- observe change of perspective more thoroughly;
 wenzelm parents: 
52776diff
changeset | 648 | (visible' orelse node_required orelse Command.eval_running eval) | 
| 52586 | 649 | | _ => false); | 
| 52784 
4ba2e8b9972f
de-assign execs that were not registered as running yet -- observe change of perspective more thoroughly;
 wenzelm parents: 
52776diff
changeset | 650 | val assign_update' = assign_update |> ok' ? | 
| 52569 
18dde2cf7aa7
produce print_execs assignment earlier during last_common phase (referring to current command_id, not prev);
 wenzelm parents: 
52566diff
changeset | 651 | (case opt_exec of | 
| 
18dde2cf7aa7
produce print_execs assignment earlier during last_common phase (referring to current command_id, not prev);
 wenzelm parents: 
52566diff
changeset | 652 | SOME (eval, prints) => | 
| 
18dde2cf7aa7
produce print_execs assignment earlier during last_common phase (referring to current command_id, not prev);
 wenzelm parents: 
52566diff
changeset | 653 | let | 
| 
18dde2cf7aa7
produce print_execs assignment earlier during last_common phase (referring to current command_id, not prev);
 wenzelm parents: 
52566diff
changeset | 654 | val command_visible = visible_command node command_id; | 
| 52850 
9fff9f78240a
support print functions with explicit arguments, as provided by overlays;
 wenzelm parents: 
52849diff
changeset | 655 | val command_overlays = overlays node command_id; | 
| 52569 
18dde2cf7aa7
produce print_execs assignment earlier during last_common phase (referring to current command_id, not prev);
 wenzelm parents: 
52566diff
changeset | 656 | val command_name = the_command_name state command_id; | 
| 
18dde2cf7aa7
produce print_execs assignment earlier during last_common phase (referring to current command_id, not prev);
 wenzelm parents: 
52566diff
changeset | 657 | in | 
| 58923 | 658 | (case | 
| 659 | Command.print command_visible command_overlays keywords command_name eval prints | |
| 660 | of | |
| 52569 
18dde2cf7aa7
produce print_execs assignment earlier during last_common phase (referring to current command_id, not prev);
 wenzelm parents: 
52566diff
changeset | 661 | SOME prints' => assign_update_new (command_id, SOME (eval, prints')) | 
| 
18dde2cf7aa7
produce print_execs assignment earlier during last_common phase (referring to current command_id, not prev);
 wenzelm parents: 
52566diff
changeset | 662 | | NONE => I) | 
| 
18dde2cf7aa7
produce print_execs assignment earlier during last_common phase (referring to current command_id, not prev);
 wenzelm parents: 
52566diff
changeset | 663 | end | 
| 
18dde2cf7aa7
produce print_execs assignment earlier during last_common phase (referring to current command_id, not prev);
 wenzelm parents: 
52566diff
changeset | 664 | | NONE => I); | 
| 52784 
4ba2e8b9972f
de-assign execs that were not registered as running yet -- observe change of perspective more thoroughly;
 wenzelm parents: 
52776diff
changeset | 665 | in SOME (prev, ok', flags', assign_update') end | 
| 47630 | 666 | else NONE; | 
| 52784 
4ba2e8b9972f
de-assign execs that were not registered as running yet -- observe change of perspective more thoroughly;
 wenzelm parents: 
52776diff
changeset | 667 | val (common, ok, flags, assign_update') = | 
| 52569 
18dde2cf7aa7
produce print_execs assignment earlier during last_common phase (referring to current command_id, not prev);
 wenzelm parents: 
52566diff
changeset | 668 | iterate_entries get_common node (NONE, true, (true, true), assign_update_empty); | 
| 
18dde2cf7aa7
produce print_execs assignment earlier during last_common phase (referring to current command_id, not prev);
 wenzelm parents: 
52566diff
changeset | 669 | val (common', flags') = | 
| 52784 
4ba2e8b9972f
de-assign execs that were not registered as running yet -- observe change of perspective more thoroughly;
 wenzelm parents: 
52776diff
changeset | 670 | if ok then | 
| 52569 
18dde2cf7aa7
produce print_execs assignment earlier during last_common phase (referring to current command_id, not prev);
 wenzelm parents: 
52566diff
changeset | 671 | let val last = Entries.get_after (get_entries node) common | 
| 
18dde2cf7aa7
produce print_execs assignment earlier during last_common phase (referring to current command_id, not prev);
 wenzelm parents: 
52566diff
changeset | 672 | in (last, update_flags last flags) end | 
| 
18dde2cf7aa7
produce print_execs assignment earlier during last_common phase (referring to current command_id, not prev);
 wenzelm parents: 
52566diff
changeset | 673 | else (common, flags); | 
| 
18dde2cf7aa7
produce print_execs assignment earlier during last_common phase (referring to current command_id, not prev);
 wenzelm parents: 
52566diff
changeset | 674 | in (assign_update', common', flags') end; | 
| 44645 
5938beb84adc
more precise iterate_entries_after if start refers to last entry;
 wenzelm parents: 
44644diff
changeset | 675 | |
| 62895 
54c2abe7e9a4
treat ROOT.ML as theory with header "theory ML_Root imports ML_Bootstrap begin";
 wenzelm parents: 
62826diff
changeset | 676 | fun illegal_init _ = error "Illegal theory header"; | 
| 52534 | 677 | |
| 58923 | 678 | fun new_exec keywords state node proper_init command_id' (assign_update, command_exec, init) = | 
| 47407 | 679 | if not proper_init andalso is_none init then NONE | 
| 44645 
5938beb84adc
more precise iterate_entries_after if start refers to last entry;
 wenzelm parents: 
44644diff
changeset | 680 | else | 
| 
5938beb84adc
more precise iterate_entries_after if start refers to last entry;
 wenzelm parents: 
44644diff
changeset | 681 | let | 
| 52850 
9fff9f78240a
support print functions with explicit arguments, as provided by overlays;
 wenzelm parents: 
52849diff
changeset | 682 | val command_visible = visible_command node command_id'; | 
| 
9fff9f78240a
support print functions with explicit arguments, as provided by overlays;
 wenzelm parents: 
52849diff
changeset | 683 | val command_overlays = overlays node command_id'; | 
| 59689 
7968c57ea240
simplified Command.resolve_files in ML, using blobs_index from Scala;
 wenzelm parents: 
59687diff
changeset | 684 | val (command_name, blob_digests, blobs_index, span0) = the_command state command_id'; | 
| 56447 
1e77ed11f2f7
separate file_node vs. file_path, e.g. relevant on Windows for hyperlink to the latter;
 wenzelm parents: 
56208diff
changeset | 685 | val blobs = map (resolve_blob state) blob_digests; | 
| 54519 
5fed81762406
maintain blobs within document state: digest + text in ML, digest-only in Scala;
 wenzelm parents: 
54516diff
changeset | 686 | val span = Lazy.force span0; | 
| 52566 
52a0eacf04d1
more formal type assign_update: avoid duplicate results and redundant update of global State.execs;
 wenzelm parents: 
52536diff
changeset | 687 | |
| 54519 
5fed81762406
maintain blobs within document state: digest + text in ML, digest-only in Scala;
 wenzelm parents: 
54516diff
changeset | 688 | val eval' = | 
| 66367 | 689 | Command.eval keywords (master_directory node) (fn () => the_default illegal_init init span) | 
| 68184 
6c693b2700b3
support for dynamic document output while editing;
 wenzelm parents: 
67500diff
changeset | 690 | (blobs, blobs_index) command_id' span (#1 (#2 command_exec)); | 
| 58923 | 691 | val prints' = | 
| 692 | perhaps (Command.print command_visible command_overlays keywords command_name eval') []; | |
| 52566 
52a0eacf04d1
more formal type assign_update: avoid duplicate results and redundant update of global State.execs;
 wenzelm parents: 
52536diff
changeset | 693 | val exec' = (eval', prints'); | 
| 44482 
c7225307acf2
further clarification of Document.updated, based on last_common and after_entry;
 wenzelm parents: 
44481diff
changeset | 694 | |
| 52566 
52a0eacf04d1
more formal type assign_update: avoid duplicate results and redundant update of global State.execs;
 wenzelm parents: 
52536diff
changeset | 695 | val assign_update' = assign_update_new (command_id', SOME exec') assign_update; | 
| 59735 | 696 | val init' = if command_name = Thy_Header.theoryN then NONE else init; | 
| 66367 | 697 | in SOME (assign_update', (command_id', exec'), init') end; | 
| 52602 
00170ef1dc39
strictly monotonic Document.update: avoid disruptive cancel_execution, merely discontinue_execution and cancel/terminate old execs individually;
 wenzelm parents: 
52600diff
changeset | 698 | |
| 52655 
3b2b1ef13979
more careful termination of removed execs, leaving running execs undisturbed;
 wenzelm parents: 
52607diff
changeset | 699 | fun removed_execs node0 (command_id, exec_ids) = | 
| 
3b2b1ef13979
more careful termination of removed execs, leaving running execs undisturbed;
 wenzelm parents: 
52607diff
changeset | 700 | subtract (op =) exec_ids (Command.exec_ids (lookup_entry node0 command_id)); | 
| 52602 
00170ef1dc39
strictly monotonic Document.update: avoid disruptive cancel_execution, merely discontinue_execution and cancel/terminate old execs individually;
 wenzelm parents: 
52600diff
changeset | 701 | |
| 68336 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 702 | fun print_consolidation options the_command_span node_name (assign_update, node) = | 
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 703 | (case finished_result_theory node of | 
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 704 | SOME (result_id, thy) => | 
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 705 | let | 
| 68380 | 706 | val active_tasks = | 
| 707 | (node, false) |-> iterate_entries (fn (_, opt_exec) => fn active => | |
| 708 | if active then NONE | |
| 709 | else | |
| 710 | (case opt_exec of | |
| 711 | NONE => NONE | |
| 712 | | SOME (eval, _) => | |
| 713 | SOME (not (null (Execution.snapshot [Command.eval_exec_id eval]))))); | |
| 68336 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 714 | in | 
| 68380 | 715 | if not active_tasks then | 
| 68336 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 716 | let | 
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 717 | val consolidation = | 
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 718 | if Options.bool options "editor_presentation" then | 
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 719 | let | 
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 720 | val (_, offsets, rev_segments) = | 
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 721 | iterate_entries (fn (_, opt_exec) => fn (offset, offsets, segments) => | 
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 722 | (case opt_exec of | 
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 723 | SOME (eval, _) => | 
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 724 | let | 
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 725 | val command_id = Command.eval_command_id eval; | 
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 726 | val span = the_command_span command_id; | 
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 727 | |
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 728 | val exec_id = Command.eval_exec_id eval; | 
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 729 | val tr = Command.eval_result_command eval; | 
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 730 | val st' = Command.eval_result_state eval; | 
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 731 | |
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 732 | val offset' = offset + the_default 0 (Command_Span.symbol_length span); | 
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 733 | val offsets' = offsets | 
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 734 | |> Inttab.update (command_id, offset) | 
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 735 | |> Inttab.update (exec_id, offset); | 
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 736 | val segments' = (span, tr, st') :: segments; | 
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 737 | in SOME (offset', offsets', segments') end | 
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 738 | | NONE => NONE)) node (0, Inttab.empty, []); | 
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 739 | |
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 740 | val adjust = Inttab.lookup offsets; | 
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 741 | val segments = | 
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 742 | rev rev_segments |> map (fn (span, tr, st') => | 
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 743 |                       {span = Command_Span.adjust_offsets adjust span, command = tr, state = st'});
 | 
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 744 | |
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 745 | val presentation_context: Thy_Info.presentation_context = | 
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 746 |                    {options = options,
 | 
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 747 | file_pos = Position.file node_name, | 
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 748 | adjust_pos = Position.adjust_offsets adjust, | 
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 749 | segments = segments}; | 
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 750 | in | 
| 68344 | 751 | fn _ => | 
| 70780 
034742453594
more robust: avoid update/interrupt of long-running print_consolidation;
 wenzelm parents: 
70773diff
changeset | 752 | let | 
| 
034742453594
more robust: avoid update/interrupt of long-running print_consolidation;
 wenzelm parents: 
70773diff
changeset | 753 | val _ = Output.status [Markup.markup_only Markup.consolidating]; | 
| 
034742453594
more robust: avoid update/interrupt of long-running print_consolidation;
 wenzelm parents: 
70773diff
changeset | 754 | val res = Exn.capture (Thy_Info.apply_presentation presentation_context) thy; | 
| 
034742453594
more robust: avoid update/interrupt of long-running print_consolidation;
 wenzelm parents: 
70773diff
changeset | 755 | val _ = commit_consolidated node; | 
| 
034742453594
more robust: avoid update/interrupt of long-running print_consolidation;
 wenzelm parents: 
70773diff
changeset | 756 | in Exn.release res end | 
| 68336 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 757 | end | 
| 68344 | 758 | else fn _ => commit_consolidated node; | 
| 68336 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 759 | |
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 760 | val result_entry = | 
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 761 | (case lookup_entry node result_id of | 
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 762 | NONE => err_undef "result command entry" result_id | 
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 763 | | SOME (eval, prints) => | 
| 68344 | 764 | let | 
| 765 | val print = eval |> Command.print0 | |
| 766 |                       {pri = Task_Queue.urgent_pri + 1, print_fn = K consolidation};
 | |
| 767 | in (result_id, SOME (eval, print :: prints)) end); | |
| 68336 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 768 | |
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 769 | val assign_update' = assign_update |> assign_update_change result_entry; | 
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 770 | val node' = node |> assign_entry result_entry; | 
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 771 | in (assign_update', node') end | 
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 772 | else (assign_update, node) | 
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 773 | end | 
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 774 | | NONE => (assign_update, node)); | 
| 38418 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 775 | in | 
| 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 776 | |
| 68336 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 777 | fun update old_version_id new_version_id edits consolidate state = | 
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 778 | Runtime.exn_trace_system (fn () => | 
| 38418 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 779 | let | 
| 68336 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 780 | val options = Options.default (); | 
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 781 | val the_command_span = Outer_Syntax.make_span o Lazy.force o #4 o the_command state; | 
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 782 | |
| 52536 | 783 | val old_version = the_version state old_version_id; | 
| 59086 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 784 | val new_version = | 
| 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 785 | timeit "Document.edit_nodes" | 
| 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 786 | (fn () => old_version |> fold edit_nodes edits |> edit_keywords edits); | 
| 38418 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 787 | |
| 68381 
2fd3a6d6ba2e
less wasteful consolidation, based on PIDE front-end state and recent changes;
 wenzelm parents: 
68380diff
changeset | 788 | val consolidate = Symtab.defined (Symtab.make_set consolidate); | 
| 44544 
da5f0af32c1b
more precise treatment of nodes that are fully required for partially visible ones;
 wenzelm parents: 
44483diff
changeset | 789 | val nodes = nodes_of new_version; | 
| 52776 | 790 | val required = make_required nodes; | 
| 791 | val required0 = make_required (nodes_of old_version); | |
| 52772 | 792 | val edited = fold (fn (name, _) => Symtab.update (name, ())) edits Symtab.empty; | 
| 44544 
da5f0af32c1b
more precise treatment of nodes that are fully required for partially visible ones;
 wenzelm parents: 
44483diff
changeset | 793 | |
| 47628 | 794 | val updated = timeit "Document.update" (fn () => | 
| 50862 
5fc8b83322f5
more sensible order of theory nodes (correspondance to Scala version), e.g. relevant to theory progress;
 wenzelm parents: 
50201diff
changeset | 795 | nodes |> String_Graph.schedule | 
| 44199 
e38885e3ea60
retrieve imports from document state, with fall-back on theory loader for preloaded theories;
 wenzelm parents: 
44198diff
changeset | 796 | (fn deps => fn (name, node) => | 
| 47406 
8818f54773cc
dynamic propagation of node "updated" status, which is required to propagate edits and re-assigments and allow direct memo_result;
 wenzelm parents: 
47405diff
changeset | 797 | (singleton o Future.forks) | 
| 
8818f54773cc
dynamic propagation of node "updated" status, which is required to propagate edits and re-assigments and allow direct memo_result;
 wenzelm parents: 
47405diff
changeset | 798 |             {name = "Document.update", group = NONE,
 | 
| 52716 | 799 | deps = map (Future.task_of o #2) deps, pri = 1, interrupts = false} | 
| 59056 
cbe9563c03d1
even more exception traces for Document.update, which goes through additional execution wrappers;
 wenzelm parents: 
58934diff
changeset | 800 | (fn () => | 
| 
cbe9563c03d1
even more exception traces for Document.update, which goes through additional execution wrappers;
 wenzelm parents: 
58934diff
changeset | 801 |               timeit ("Document.update " ^ name) (fn () =>
 | 
| 
cbe9563c03d1
even more exception traces for Document.update, which goes through additional execution wrappers;
 wenzelm parents: 
58934diff
changeset | 802 | Runtime.exn_trace_system (fn () => | 
| 44482 
c7225307acf2
further clarification of Document.updated, based on last_common and after_entry;
 wenzelm parents: 
44481diff
changeset | 803 | let | 
| 67215 | 804 | val root_theory = check_root_theory node; | 
| 59086 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 805 | val keywords = the_default (Session.get_keywords ()) (get_keywords node); | 
| 68336 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 806 | |
| 68381 
2fd3a6d6ba2e
less wasteful consolidation, based on PIDE front-end state and recent changes;
 wenzelm parents: 
68380diff
changeset | 807 | val maybe_consolidate = consolidate name andalso could_consolidate node; | 
| 59056 
cbe9563c03d1
even more exception traces for Document.update, which goes through additional execution wrappers;
 wenzelm parents: 
58934diff
changeset | 808 | val imports = map (apsnd Future.join) deps; | 
| 
cbe9563c03d1
even more exception traces for Document.update, which goes through additional execution wrappers;
 wenzelm parents: 
58934diff
changeset | 809 | val imports_result_changed = exists (#4 o #1 o #2) imports; | 
| 
cbe9563c03d1
even more exception traces for Document.update, which goes through additional execution wrappers;
 wenzelm parents: 
58934diff
changeset | 810 | val node_required = Symtab.defined required name; | 
| 
cbe9563c03d1
even more exception traces for Document.update, which goes through additional execution wrappers;
 wenzelm parents: 
58934diff
changeset | 811 | in | 
| 68336 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 812 | if Symtab.defined edited name orelse maybe_consolidate orelse | 
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 813 | visible_node node orelse imports_result_changed orelse | 
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 814 | Symtab.defined required0 name <> node_required | 
| 59056 
cbe9563c03d1
even more exception traces for Document.update, which goes through additional execution wrappers;
 wenzelm parents: 
58934diff
changeset | 815 | then | 
| 
cbe9563c03d1
even more exception traces for Document.update, which goes through additional execution wrappers;
 wenzelm parents: 
58934diff
changeset | 816 | let | 
| 
cbe9563c03d1
even more exception traces for Document.update, which goes through additional execution wrappers;
 wenzelm parents: 
58934diff
changeset | 817 | val node0 = node_of old_version name; | 
| 
cbe9563c03d1
even more exception traces for Document.update, which goes through additional execution wrappers;
 wenzelm parents: 
58934diff
changeset | 818 | val init = init_theory imports node; | 
| 
cbe9563c03d1
even more exception traces for Document.update, which goes through additional execution wrappers;
 wenzelm parents: 
58934diff
changeset | 819 | val proper_init = | 
| 67215 | 820 | is_some root_theory orelse | 
| 62895 
54c2abe7e9a4
treat ROOT.ML as theory with header "theory ML_Root imports ML_Bootstrap begin";
 wenzelm parents: 
62826diff
changeset | 821 | check_theory false name node andalso | 
| 
54c2abe7e9a4
treat ROOT.ML as theory with header "theory ML_Root imports ML_Bootstrap begin";
 wenzelm parents: 
62826diff
changeset | 822 | forall (fn (name, (_, node)) => check_theory true name node) imports; | 
| 47406 
8818f54773cc
dynamic propagation of node "updated" status, which is required to propagate edits and re-assigments and allow direct memo_result;
 wenzelm parents: 
47405diff
changeset | 823 | |
| 59056 
cbe9563c03d1
even more exception traces for Document.update, which goes through additional execution wrappers;
 wenzelm parents: 
58934diff
changeset | 824 | val (print_execs, common, (still_visible, initial)) = | 
| 70283 | 825 | if imports_result_changed | 
| 826 | then (assign_update_empty, NONE, (true, true)) | |
| 59056 
cbe9563c03d1
even more exception traces for Document.update, which goes through additional execution wrappers;
 wenzelm parents: 
58934diff
changeset | 827 | else last_common keywords state node_required node0 node; | 
| 62895 
54c2abe7e9a4
treat ROOT.ML as theory with header "theory ML_Root imports ML_Bootstrap begin";
 wenzelm parents: 
62826diff
changeset | 828 | |
| 
54c2abe7e9a4
treat ROOT.ML as theory with header "theory ML_Root imports ML_Bootstrap begin";
 wenzelm parents: 
62826diff
changeset | 829 | val common_command_exec = | 
| 
54c2abe7e9a4
treat ROOT.ML as theory with header "theory ML_Root imports ML_Bootstrap begin";
 wenzelm parents: 
62826diff
changeset | 830 | (case common of | 
| 
54c2abe7e9a4
treat ROOT.ML as theory with header "theory ML_Root imports ML_Bootstrap begin";
 wenzelm parents: 
62826diff
changeset | 831 | SOME id => (id, the_default Command.no_exec (the_entry node id)) | 
| 67215 | 832 | | NONE => (Document_ID.none, Command.init_exec root_theory)); | 
| 44479 
9a04e7502e22
refined document state assignment: observe perspective, more explicit assignment message;
 wenzelm parents: 
44478diff
changeset | 833 | |
| 66367 | 834 | val (updated_execs, (command_id', exec'), _) = | 
| 59056 
cbe9563c03d1
even more exception traces for Document.update, which goes through additional execution wrappers;
 wenzelm parents: 
58934diff
changeset | 835 | (print_execs, common_command_exec, if initial then SOME init else NONE) | 
| 
cbe9563c03d1
even more exception traces for Document.update, which goes through additional execution wrappers;
 wenzelm parents: 
58934diff
changeset | 836 | |> (still_visible orelse node_required) ? | 
| 
cbe9563c03d1
even more exception traces for Document.update, which goes through additional execution wrappers;
 wenzelm parents: 
58934diff
changeset | 837 | iterate_entries_after common | 
| 
cbe9563c03d1
even more exception traces for Document.update, which goes through additional execution wrappers;
 wenzelm parents: 
58934diff
changeset | 838 | (fn ((prev, id), _) => fn res => | 
| 
cbe9563c03d1
even more exception traces for Document.update, which goes through additional execution wrappers;
 wenzelm parents: 
58934diff
changeset | 839 | if not node_required andalso prev = visible_last node then NONE | 
| 
cbe9563c03d1
even more exception traces for Document.update, which goes through additional execution wrappers;
 wenzelm parents: 
58934diff
changeset | 840 | else new_exec keywords state node proper_init id res) node; | 
| 44479 
9a04e7502e22
refined document state assignment: observe perspective, more explicit assignment message;
 wenzelm parents: 
44478diff
changeset | 841 | |
| 68336 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 842 | val assign_update = | 
| 59056 
cbe9563c03d1
even more exception traces for Document.update, which goes through additional execution wrappers;
 wenzelm parents: 
58934diff
changeset | 843 | (node0, updated_execs) |-> iterate_entries_after common | 
| 
cbe9563c03d1
even more exception traces for Document.update, which goes through additional execution wrappers;
 wenzelm parents: 
58934diff
changeset | 844 | (fn ((_, command_id0), exec0) => fn res => | 
| 
cbe9563c03d1
even more exception traces for Document.update, which goes through additional execution wrappers;
 wenzelm parents: 
58934diff
changeset | 845 | if is_none exec0 then NONE | 
| 
cbe9563c03d1
even more exception traces for Document.update, which goes through additional execution wrappers;
 wenzelm parents: 
58934diff
changeset | 846 | else if assign_update_defined updated_execs command_id0 then SOME res | 
| 
cbe9563c03d1
even more exception traces for Document.update, which goes through additional execution wrappers;
 wenzelm parents: 
58934diff
changeset | 847 | else SOME (assign_update_new (command_id0, NONE) res)); | 
| 44480 
38c5b085fb1c
improved Document.edit: more accurate update_start and no_execs;
 wenzelm parents: 
44479diff
changeset | 848 | |
| 59056 
cbe9563c03d1
even more exception traces for Document.update, which goes through additional execution wrappers;
 wenzelm parents: 
58934diff
changeset | 849 | val last_exec = | 
| 
cbe9563c03d1
even more exception traces for Document.update, which goes through additional execution wrappers;
 wenzelm parents: 
58934diff
changeset | 850 | if command_id' = Document_ID.none then NONE else SOME command_id'; | 
| 
cbe9563c03d1
even more exception traces for Document.update, which goes through additional execution wrappers;
 wenzelm parents: 
58934diff
changeset | 851 | val result = | 
| 
cbe9563c03d1
even more exception traces for Document.update, which goes through additional execution wrappers;
 wenzelm parents: 
58934diff
changeset | 852 | if is_none last_exec orelse is_some (after_entry node last_exec) then NONE | 
| 68336 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 853 | else SOME (command_id', #1 exec'); | 
| 52602 
00170ef1dc39
strictly monotonic Document.update: avoid disruptive cancel_execution, merely discontinue_execution and cancel/terminate old execs individually;
 wenzelm parents: 
52600diff
changeset | 854 | |
| 66379 
6392766f3c25
maintain "consolidated" status of theory nodes, which means all evals are finished (but not necessarily prints nor imports);
 wenzelm parents: 
66369diff
changeset | 855 | val result_changed = | 
| 68336 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 856 | not (eq_option (Command.eval_eq o apply2 #2) (get_result node0, result)); | 
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 857 | val (assign_update', node') = node | 
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 858 | |> assign_update_apply assign_update | 
| 66379 
6392766f3c25
maintain "consolidated" status of theory nodes, which means all evals are finished (but not necessarily prints nor imports);
 wenzelm parents: 
66369diff
changeset | 859 | |> set_result result | 
| 68336 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 860 | |> result_changed ? reset_consolidated | 
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 861 | |> pair assign_update | 
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 862 | |> (not result_changed andalso maybe_consolidate) ? | 
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 863 | print_consolidation options the_command_span name; | 
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 864 | |
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 865 | val assign_result = assign_update_result assign_update'; | 
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 866 | val removed = maps (removed_execs node0) assign_result; | 
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 867 | val _ = List.app Execution.cancel removed; | 
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 868 | |
| 59056 
cbe9563c03d1
even more exception traces for Document.update, which goes through additional execution wrappers;
 wenzelm parents: 
58934diff
changeset | 869 | val assigned_node = SOME (name, node'); | 
| 68336 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 870 | in ((removed, assign_result, assigned_node, result_changed), node') end | 
| 59056 
cbe9563c03d1
even more exception traces for Document.update, which goes through additional execution wrappers;
 wenzelm parents: 
58934diff
changeset | 871 | else (([], [], NONE, false), node) | 
| 
cbe9563c03d1
even more exception traces for Document.update, which goes through additional execution wrappers;
 wenzelm parents: 
58934diff
changeset | 872 | end)))) | 
| 47628 | 873 | |> Future.joins |> map #1); | 
| 44476 
e8a87398f35d
propagate information about last command with exec state assignment through document model;
 wenzelm parents: 
44446diff
changeset | 874 | |
| 52655 
3b2b1ef13979
more careful termination of removed execs, leaving running execs undisturbed;
 wenzelm parents: 
52607diff
changeset | 875 | val removed = maps #1 updated; | 
| 68336 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68323diff
changeset | 876 | val assign_result = maps #2 updated; | 
| 52602 
00170ef1dc39
strictly monotonic Document.update: avoid disruptive cancel_execution, merely discontinue_execution and cancel/terminate old execs individually;
 wenzelm parents: 
52600diff
changeset | 877 | val assigned_nodes = map_filter #3 updated; | 
| 
00170ef1dc39
strictly monotonic Document.update: avoid disruptive cancel_execution, merely discontinue_execution and cancel/terminate old execs individually;
 wenzelm parents: 
52600diff
changeset | 878 | |
| 44197 
458573968568
refined Document.edit: less stateful update via Graph.schedule;
 wenzelm parents: 
44196diff
changeset | 879 | val state' = state | 
| 68366 
cd387c55e085
fork parallel prints early in execution: avoid degradation of priority due to main eval task;
 wenzelm parents: 
68354diff
changeset | 880 | |> define_version new_version_id new_version assigned_nodes; | 
| 52602 
00170ef1dc39
strictly monotonic Document.update: avoid disruptive cancel_execution, merely discontinue_execution and cancel/terminate old execs individually;
 wenzelm parents: 
52600diff
changeset | 881 | |
| 70284 
3e17c3a5fd39
more thorough assignment, e.g. when "purge" removes commands that were not assigned;
 wenzelm parents: 
70283diff
changeset | 882 | in (Symtab.keys edited, removed, assign_result, state') end); | 
| 38418 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 883 | |
| 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 884 | end; | 
| 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 885 | |
| 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 886 | |
| 43713 
1ba5331b4623
moved global state to structure Document (again);
 wenzelm parents: 
43668diff
changeset | 887 | |
| 
1ba5331b4623
moved global state to structure Document (again);
 wenzelm parents: 
43668diff
changeset | 888 | (** global state **) | 
| 
1ba5331b4623
moved global state to structure Document (again);
 wenzelm parents: 
43668diff
changeset | 889 | |
| 52508 | 890 | val global_state = Synchronized.var "Document.global_state" init_state; | 
| 43713 
1ba5331b4623
moved global state to structure Document (again);
 wenzelm parents: 
43668diff
changeset | 891 | |
| 
1ba5331b4623
moved global state to structure Document (again);
 wenzelm parents: 
43668diff
changeset | 892 | fun state () = Synchronized.value global_state; | 
| 
1ba5331b4623
moved global state to structure Document (again);
 wenzelm parents: 
43668diff
changeset | 893 | val change_state = Synchronized.change global_state; | 
| 
1ba5331b4623
moved global state to structure Document (again);
 wenzelm parents: 
43668diff
changeset | 894 | |
| 38418 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 895 | end; |