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