| author | wenzelm | 
| Sat, 04 Mar 2017 21:47:26 +0100 | |
| changeset 65107 | 70b0113fa4ef | 
| parent 63022 | 785a59235a15 | 
| child 65357 | 9a2c266f97c8 | 
| permissions | -rw-r--r-- | 
| 38150 
67fc24df3721
simplified/refined document model: collection of named nodes, without proper dependencies yet;
 wenzelm parents: diff
changeset | 1 | (* Title: Pure/PIDE/document.ML | 
| 
67fc24df3721
simplified/refined document model: collection of named nodes, without proper dependencies yet;
 wenzelm parents: diff
changeset | 2 | Author: Makarius | 
| 
67fc24df3721
simplified/refined document model: collection of named nodes, without proper dependencies yet;
 wenzelm parents: diff
changeset | 3 | |
| 
67fc24df3721
simplified/refined document model: collection of named nodes, without proper dependencies yet;
 wenzelm parents: diff
changeset | 4 | Document as collection of named nodes, each consisting of an editable | 
| 52536 | 5 | list of commands, associated with asynchronous execution process. | 
| 38150 
67fc24df3721
simplified/refined document model: collection of named nodes, without proper dependencies yet;
 wenzelm parents: diff
changeset | 6 | *) | 
| 
67fc24df3721
simplified/refined document model: collection of named nodes, without proper dependencies yet;
 wenzelm parents: diff
changeset | 7 | |
| 
67fc24df3721
simplified/refined document model: collection of named nodes, without proper dependencies yet;
 wenzelm parents: diff
changeset | 8 | signature DOCUMENT = | 
| 
67fc24df3721
simplified/refined document model: collection of named nodes, without proper dependencies yet;
 wenzelm parents: diff
changeset | 9 | sig | 
| 52796 | 10 | val timing: bool Unsynchronized.ref | 
| 59715 
4f0d0e4ad68d
avoid duplicate header errors, more precise positions;
 wenzelm parents: 
59702diff
changeset | 11 |   type node_header = {master: string, header: Thy_Header.header, errors: string list}
 | 
| 52862 
930ce8eacb87
tuned signature -- more uniform treatment of overlays as command mapping;
 wenzelm parents: 
52850diff
changeset | 12 | type overlay = Document_ID.command * (string * string list) | 
| 44157 
a21d3e1e64fd
uniform treatment of header edits as document edits;
 wenzelm parents: 
44156diff
changeset | 13 | datatype node_edit = | 
| 52530 
99dd8b4ef3fe
explicit module Document_ID as source of globally unique identifiers across ML/Scala;
 wenzelm parents: 
52527diff
changeset | 14 | Edits of (Document_ID.command option * Document_ID.command option) list | | 
| 48707 
ba531af91148
simplified Document.Node.Header -- internalized errors;
 wenzelm parents: 
47633diff
changeset | 15 | Deps of node_header | | 
| 52849 | 16 | Perspective of bool * Document_ID.command list * overlay list | 
| 44156 | 17 | type edit = string * node_edit | 
| 38418 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 18 | type state | 
| 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 19 | val init_state: state | 
| 54519 
5fed81762406
maintain blobs within document state: digest + text in ML, digest-only in Scala;
 wenzelm parents: 
54516diff
changeset | 20 | val define_blob: string -> string -> state -> state | 
| 56458 
a8d960baa5c2
simplified blob again (amending 1e77ed11f2f7): only store file node name, i.e. the raw editor file name;
 wenzelm parents: 
56447diff
changeset | 21 | type blob_digest = (string * string option) Exn.result | 
| 59685 
c043306d2598
clarified markup for embedded files, early before execution;
 wenzelm parents: 
59347diff
changeset | 22 | val define_command: Document_ID.command -> string -> blob_digest list -> int -> | 
| 59085 
08a6901eb035
clarified define_command: send tokens more directly, without requiring keywords in ML;
 wenzelm parents: 
59083diff
changeset | 23 | ((int * int) * string) list -> state -> state | 
| 60880 
fa958e24ff24
set breakpoint state on ML side, relying on stable situation within the PIDE editing queue;
 wenzelm parents: 
60198diff
changeset | 24 | 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 | 25 | 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 | 26 | val start_execution: state -> state | 
| 52530 
99dd8b4ef3fe
explicit module Document_ID as source of globally unique identifiers across ML/Scala;
 wenzelm parents: 
52527diff
changeset | 27 | val update: Document_ID.version -> Document_ID.version -> edit list -> state -> | 
| 52655 
3b2b1ef13979
more careful termination of removed execs, leaving running execs undisturbed;
 wenzelm parents: 
52607diff
changeset | 28 | 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 | 29 | val state: unit -> state | 
| 
1ba5331b4623
moved global state to structure Document (again);
 wenzelm parents: 
43668diff
changeset | 30 | val change_state: (state -> state) -> unit | 
| 38150 
67fc24df3721
simplified/refined document model: collection of named nodes, without proper dependencies yet;
 wenzelm parents: diff
changeset | 31 | end; | 
| 
67fc24df3721
simplified/refined document model: collection of named nodes, without proper dependencies yet;
 wenzelm parents: diff
changeset | 32 | |
| 
67fc24df3721
simplified/refined document model: collection of named nodes, without proper dependencies yet;
 wenzelm parents: diff
changeset | 33 | structure Document: DOCUMENT = | 
| 
67fc24df3721
simplified/refined document model: collection of named nodes, without proper dependencies yet;
 wenzelm parents: diff
changeset | 34 | struct | 
| 
67fc24df3721
simplified/refined document model: collection of named nodes, without proper dependencies yet;
 wenzelm parents: diff
changeset | 35 | |
| 52796 | 36 | val timing = Unsynchronized.ref false; | 
| 37 | fun timeit msg e = cond_timeit (! timing) msg e; | |
| 38 | ||
| 39 | ||
| 40 | ||
| 38418 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 41 | (** document structure **) | 
| 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 42 | |
| 52530 
99dd8b4ef3fe
explicit module Document_ID as source of globally unique identifiers across ML/Scala;
 wenzelm parents: 
52527diff
changeset | 43 | 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 | 44 | 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 | 45 | |
| 59715 
4f0d0e4ad68d
avoid duplicate header errors, more precise positions;
 wenzelm parents: 
59702diff
changeset | 46 | type node_header = | 
| 
4f0d0e4ad68d
avoid duplicate header errors, more precise positions;
 wenzelm parents: 
59702diff
changeset | 47 |   {master: string, header: Thy_Header.header, errors: string list};
 | 
| 52849 | 48 | |
| 49 | type perspective = | |
| 50 |  {required: bool,  (*required node*)
 | |
| 51 | visible: Inttab.set, (*visible commands*) | |
| 52 | visible_last: Document_ID.command option, (*last visible command*) | |
| 57874 | 53 | overlays: (string * string list) list Inttab.table}; (*command id -> print functions with args*) | 
| 52849 | 54 | |
| 52530 
99dd8b4ef3fe
explicit module Document_ID as source of globally unique identifiers across ML/Scala;
 wenzelm parents: 
52527diff
changeset | 55 | 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 | 56 | |
| 43668 | 57 | abstype node = Node of | 
| 48707 
ba531af91148
simplified Document.Node.Header -- internalized errors;
 wenzelm parents: 
47633diff
changeset | 58 |  {header: node_header,  (*master directory, theory header, errors*)
 | 
| 59086 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 59 | keywords: Keyword.keywords option, (*outer syntax keywords*) | 
| 52849 | 60 | perspective: perspective, (*command perspective*) | 
| 52761 
909167fdd367
discontinued notion of "stable" result -- running execution is never canceled;
 wenzelm parents: 
52716diff
changeset | 61 | entries: Command.exec option Entries.T, (*command entries with excecutions*) | 
| 52526 | 62 | result: Command.eval option} (*result of last execution*) | 
| 50862 
5fc8b83322f5
more sensible order of theory nodes (correspondance to Scala version), e.g. relevant to theory progress;
 wenzelm parents: 
50201diff
changeset | 63 | 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 | 64 | with | 
| 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 65 | |
| 59086 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 66 | fun make_node (header, keywords, perspective, entries, result) = | 
| 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 67 |   Node {header = header, keywords = keywords, perspective = perspective,
 | 
| 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 68 | entries = entries, result = result}; | 
| 43668 | 69 | |
| 59086 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 70 | fun map_node f (Node {header, keywords, perspective, entries, result}) =
 | 
| 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 71 | make_node (f (header, keywords, perspective, entries, result)); | 
| 38418 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 72 | |
| 52849 | 73 | fun make_perspective (required, command_ids, overlays) : perspective = | 
| 74 |  {required = required,
 | |
| 75 | visible = Inttab.make_set command_ids, | |
| 76 | visible_last = try List.last command_ids, | |
| 52862 
930ce8eacb87
tuned signature -- more uniform treatment of overlays as command mapping;
 wenzelm parents: 
52850diff
changeset | 77 | overlays = Inttab.make_list overlays}; | 
| 44441 | 78 | |
| 59715 
4f0d0e4ad68d
avoid duplicate header errors, more precise positions;
 wenzelm parents: 
59702diff
changeset | 79 | val no_header: node_header = | 
| 
4f0d0e4ad68d
avoid duplicate header errors, more precise positions;
 wenzelm parents: 
59702diff
changeset | 80 |   {master = "", header = Thy_Header.make ("", Position.none) [] [], errors = []};
 | 
| 52849 | 81 | val no_perspective = make_perspective (false, [], []); | 
| 44386 
4048ca2658b7
some support for toplevel printing wrt. editor perspective (still inactive);
 wenzelm parents: 
44385diff
changeset | 82 | |
| 59086 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 83 | val empty_node = make_node (no_header, NONE, no_perspective, Entries.empty, NONE); | 
| 44386 
4048ca2658b7
some support for toplevel printing wrt. editor perspective (still inactive);
 wenzelm parents: 
44385diff
changeset | 84 | |
| 57615 
df1b3452d71c
more explicit discrimination of empty nodes -- suppress from Theories panel;
 wenzelm parents: 
56801diff
changeset | 85 | fun is_no_perspective ({required, visible, visible_last, overlays}: perspective) =
 | 
| 
df1b3452d71c
more explicit discrimination of empty nodes -- suppress from Theories panel;
 wenzelm parents: 
56801diff
changeset | 86 | not required andalso | 
| 
df1b3452d71c
more explicit discrimination of empty nodes -- suppress from Theories panel;
 wenzelm parents: 
56801diff
changeset | 87 | Inttab.is_empty visible andalso | 
| 
df1b3452d71c
more explicit discrimination of empty nodes -- suppress from Theories panel;
 wenzelm parents: 
56801diff
changeset | 88 | is_none visible_last andalso | 
| 
df1b3452d71c
more explicit discrimination of empty nodes -- suppress from Theories panel;
 wenzelm parents: 
56801diff
changeset | 89 | Inttab.is_empty overlays; | 
| 
df1b3452d71c
more explicit discrimination of empty nodes -- suppress from Theories panel;
 wenzelm parents: 
56801diff
changeset | 90 | |
| 59086 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 91 | fun is_empty_node (Node {header, keywords, perspective, entries, result}) =
 | 
| 57615 
df1b3452d71c
more explicit discrimination of empty nodes -- suppress from Theories panel;
 wenzelm parents: 
56801diff
changeset | 92 | header = no_header andalso | 
| 59086 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 93 | is_none keywords andalso | 
| 57615 
df1b3452d71c
more explicit discrimination of empty nodes -- suppress from Theories panel;
 wenzelm parents: 
56801diff
changeset | 94 | is_no_perspective perspective andalso | 
| 
df1b3452d71c
more explicit discrimination of empty nodes -- suppress from Theories panel;
 wenzelm parents: 
56801diff
changeset | 95 | Entries.is_empty entries andalso | 
| 
df1b3452d71c
more explicit discrimination of empty nodes -- suppress from Theories panel;
 wenzelm parents: 
56801diff
changeset | 96 | is_none result; | 
| 
df1b3452d71c
more explicit discrimination of empty nodes -- suppress from Theories panel;
 wenzelm parents: 
56801diff
changeset | 97 | |
| 44386 
4048ca2658b7
some support for toplevel printing wrt. editor perspective (still inactive);
 wenzelm parents: 
44385diff
changeset | 98 | |
| 
4048ca2658b7
some support for toplevel printing wrt. editor perspective (still inactive);
 wenzelm parents: 
44385diff
changeset | 99 | (* basic components *) | 
| 
4048ca2658b7
some support for toplevel printing wrt. editor perspective (still inactive);
 wenzelm parents: 
44385diff
changeset | 100 | |
| 59715 
4f0d0e4ad68d
avoid duplicate header errors, more precise positions;
 wenzelm parents: 
59702diff
changeset | 101 | 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 | 102 | (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 | 103 | SOME (Url.File path) => path | 
| 
31844ca390ad
more total master_directory -- NB: this is used outside command transactions (see also 92961f196d9e);
 wenzelm parents: 
54526diff
changeset | 104 | | _ => Path.current); | 
| 
31844ca390ad
more total master_directory -- NB: this is used outside command transactions (see also 92961f196d9e);
 wenzelm parents: 
54526diff
changeset | 105 | |
| 59715 
4f0d0e4ad68d
avoid duplicate header errors, more precise positions;
 wenzelm parents: 
59702diff
changeset | 106 | fun set_header master header errors = | 
| 59086 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 107 | map_node (fn (_, keywords, perspective, entries, result) => | 
| 59715 
4f0d0e4ad68d
avoid duplicate header errors, more precise positions;
 wenzelm parents: 
59702diff
changeset | 108 |     ({master = master, header = header, errors = errors}, keywords, perspective, entries, result));
 | 
| 59086 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 109 | |
| 59715 
4f0d0e4ad68d
avoid duplicate header errors, more precise positions;
 wenzelm parents: 
59702diff
changeset | 110 | fun get_header (Node {header, ...}) = header;
 | 
| 48707 
ba531af91148
simplified Document.Node.Header -- internalized errors;
 wenzelm parents: 
47633diff
changeset | 111 | |
| 59086 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 112 | fun set_keywords keywords = | 
| 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 113 | map_node (fn (header, _, perspective, entries, result) => | 
| 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 114 | (header, keywords, perspective, entries, result)); | 
| 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 115 | |
| 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 116 | fun get_keywords (Node {keywords, ...}) = keywords;
 | 
| 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 117 | |
| 48927 
ef462b5558eb
theory def/ref position reports, which enable hyperlinks etc.;
 wenzelm parents: 
48918diff
changeset | 118 | fun read_header node span = | 
| 
ef462b5558eb
theory def/ref position reports, which enable hyperlinks etc.;
 wenzelm parents: 
48918diff
changeset | 119 | let | 
| 59715 
4f0d0e4ad68d
avoid duplicate header errors, more precise positions;
 wenzelm parents: 
59702diff
changeset | 120 |     val {header, errors, ...} = get_header node;
 | 
| 
4f0d0e4ad68d
avoid duplicate header errors, more precise positions;
 wenzelm parents: 
59702diff
changeset | 121 | val _ = | 
| 
4f0d0e4ad68d
avoid duplicate header errors, more precise positions;
 wenzelm parents: 
59702diff
changeset | 122 | if null errors then () | 
| 
4f0d0e4ad68d
avoid duplicate header errors, more precise positions;
 wenzelm parents: 
59702diff
changeset | 123 | else | 
| 
4f0d0e4ad68d
avoid duplicate header errors, more precise positions;
 wenzelm parents: 
59702diff
changeset | 124 | cat_lines errors |> | 
| 
4f0d0e4ad68d
avoid duplicate header errors, more precise positions;
 wenzelm parents: 
59702diff
changeset | 125 | (case Position.get_id (Position.thread_data ()) of | 
| 
4f0d0e4ad68d
avoid duplicate header errors, more precise positions;
 wenzelm parents: 
59702diff
changeset | 126 | NONE => I | 
| 
4f0d0e4ad68d
avoid duplicate header errors, more precise positions;
 wenzelm parents: 
59702diff
changeset | 127 | | SOME id => Protocol_Message.command_positions_yxml id) | 
| 
4f0d0e4ad68d
avoid duplicate header errors, more precise positions;
 wenzelm parents: 
59702diff
changeset | 128 | |> error; | 
| 59934 
b65c4370f831
more position information and PIDE markup for command keywords;
 wenzelm parents: 
59735diff
changeset | 129 |     val {name = (name, _), imports, ...} = header;
 | 
| 
b65c4370f831
more position information and PIDE markup for command keywords;
 wenzelm parents: 
59735diff
changeset | 130 |     val {name = (_, pos), imports = imports', keywords} = Thy_Header.read_tokens span;
 | 
| 63022 | 131 | val imports'' = (map #1 imports ~~ map #2 imports') handle ListPair.UnequalLengths => imports; | 
| 132 | in Thy_Header.make (name, pos) imports'' keywords end; | |
| 54526 | 133 | |
| 44385 
e7fdb008aa7d
propagate editor perspective through document model;
 wenzelm parents: 
44384diff
changeset | 134 | fun get_perspective (Node {perspective, ...}) = perspective;
 | 
| 59086 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 135 | |
| 52808 
143f225e50f5
allow explicit indication of required node: full eval, no prints;
 wenzelm parents: 
52798diff
changeset | 136 | fun set_perspective args = | 
| 59086 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 137 | map_node (fn (header, keywords, _, entries, result) => | 
| 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 138 | (header, keywords, make_perspective args, entries, result)); | 
| 44385 
e7fdb008aa7d
propagate editor perspective through document model;
 wenzelm parents: 
44384diff
changeset | 139 | |
| 52849 | 140 | val required_node = #required o get_perspective; | 
| 141 | val visible_command = Inttab.defined o #visible o get_perspective; | |
| 142 | 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 | 143 | val visible_node = is_some o visible_last | 
| 52850 
9fff9f78240a
support print functions with explicit arguments, as provided by overlays;
 wenzelm parents: 
52849diff
changeset | 144 | val overlays = Inttab.lookup_list o #overlays o get_perspective; | 
| 47345 
193251980a73
more scalable execute/update: avoid redundant traversal of invisible/finished nodes;
 wenzelm parents: 
47344diff
changeset | 145 | |
| 44444 
33a5616a7571
tuned Document.node: maintain "touched" flag to indicate changes in entries etc.;
 wenzelm parents: 
44441diff
changeset | 146 | fun map_entries f = | 
| 59086 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 147 | map_node (fn (header, keywords, perspective, entries, result) => | 
| 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 148 | (header, keywords, perspective, f entries, result)); | 
| 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 149 | |
| 52761 
909167fdd367
discontinued notion of "stable" result -- running execution is never canceled;
 wenzelm parents: 
52716diff
changeset | 150 | fun get_entries (Node {entries, ...}) = entries;
 | 
| 44645 
5938beb84adc
more precise iterate_entries_after if start refers to last entry;
 wenzelm parents: 
44644diff
changeset | 151 | |
| 
5938beb84adc
more precise iterate_entries_after if start refers to last entry;
 wenzelm parents: 
44644diff
changeset | 152 | 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 | 153 | 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 | 154 | (case Entries.get_after entries start of | 
| 
5938beb84adc
more precise iterate_entries_after if start refers to last entry;
 wenzelm parents: 
44644diff
changeset | 155 | NONE => I | 
| 
5938beb84adc
more precise iterate_entries_after if start refers to last entry;
 wenzelm parents: 
44644diff
changeset | 156 | | SOME id => Entries.iterate (SOME id) f entries); | 
| 43668 | 157 | |
| 47339 
79bd24497ffd
tuned -- NB: get_theory still needs to apply Lazy.force due to interrupt instabilities;
 wenzelm parents: 
47336diff
changeset | 158 | fun get_result (Node {result, ...}) = result;
 | 
| 59086 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 159 | |
| 44385 
e7fdb008aa7d
propagate editor perspective through document model;
 wenzelm parents: 
44384diff
changeset | 160 | fun set_result result = | 
| 59086 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 161 | map_node (fn (header, keywords, perspective, entries, _) => | 
| 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 162 | (header, keywords, perspective, entries, result)); | 
| 44180 | 163 | |
| 52566 
52a0eacf04d1
more formal type assign_update: avoid duplicate results and redundant update of global State.execs;
 wenzelm parents: 
52536diff
changeset | 164 | fun changed_result node node' = | 
| 
52a0eacf04d1
more formal type assign_update: avoid duplicate results and redundant update of global State.execs;
 wenzelm parents: 
52536diff
changeset | 165 | (case (get_result node, get_result node') of | 
| 52607 
33a133d50616
clarified execution: maintain running execs only, check "stable" separately via memo (again);
 wenzelm parents: 
52606diff
changeset | 166 | (SOME eval, SOME eval') => not (Command.eval_eq (eval, eval')) | 
| 52566 
52a0eacf04d1
more formal type assign_update: avoid duplicate results and redundant update of global State.execs;
 wenzelm parents: 
52536diff
changeset | 167 | | (NONE, NONE) => false | 
| 
52a0eacf04d1
more formal type assign_update: avoid duplicate results and redundant update of global State.execs;
 wenzelm parents: 
52536diff
changeset | 168 | | _ => true); | 
| 
52a0eacf04d1
more formal type assign_update: avoid duplicate results and redundant update of global State.execs;
 wenzelm parents: 
52536diff
changeset | 169 | |
| 52772 | 170 | fun pending_result node = | 
| 171 | (case get_result node of | |
| 172 | SOME eval => not (Command.eval_finished eval) | |
| 173 | | NONE => false); | |
| 52533 | 174 | |
| 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 | 175 | 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 | 176 | (case get_result node of | 
| 
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 | SOME eval => Command.eval_finished eval | 
| 
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 | | 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 | 179 | |
| 
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 | fun loaded_theory name = | 
| 
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 | (case try (unsuffix ".thy") name of | 
| 
c73933e07c03
clarified execution graph traversal: stable imports are required to proceed, e.g. relevant to avoid crash of init_theory after discontinued execution;
 wenzelm parents: 
59193diff
changeset | 182 | SOME a => get_first Thy_Info.lookup_theory [a, Long_Name.base_name a] | 
| 
c73933e07c03
clarified execution graph traversal: stable imports are required to proceed, e.g. relevant to avoid crash of init_theory after discontinued execution;
 wenzelm parents: 
59193diff
changeset | 183 | | NONE => NONE); | 
| 
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 | 184 | |
| 50862 
5fc8b83322f5
more sensible order of theory nodes (correspondance to Scala version), e.g. relevant to theory progress;
 wenzelm parents: 
50201diff
changeset | 185 | 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 | 186 | 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 | 187 | 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 | 188 | 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 | 189 | |
| 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 190 | |
| 38448 
62d16c415019
added functor Linear_Set, based on former adhoc structures in document.ML;
 wenzelm parents: 
38421diff
changeset | 191 | (* node edits and associated executions *) | 
| 38150 
67fc24df3721
simplified/refined document model: collection of named nodes, without proper dependencies yet;
 wenzelm parents: diff
changeset | 192 | |
| 52862 
930ce8eacb87
tuned signature -- more uniform treatment of overlays as command mapping;
 wenzelm parents: 
52850diff
changeset | 193 | type overlay = Document_ID.command * (string * string list); | 
| 52849 | 194 | |
| 44157 
a21d3e1e64fd
uniform treatment of header edits as document edits;
 wenzelm parents: 
44156diff
changeset | 195 | datatype node_edit = | 
| 52530 
99dd8b4ef3fe
explicit module Document_ID as source of globally unique identifiers across ML/Scala;
 wenzelm parents: 
52527diff
changeset | 196 | Edits of (Document_ID.command option * Document_ID.command option) list | | 
| 48707 
ba531af91148
simplified Document.Node.Header -- internalized errors;
 wenzelm parents: 
47633diff
changeset | 197 | Deps of node_header | | 
| 52849 | 198 | Perspective of bool * Document_ID.command list * overlay list; | 
| 44157 
a21d3e1e64fd
uniform treatment of header edits as document edits;
 wenzelm parents: 
44156diff
changeset | 199 | |
| 44156 | 200 | type edit = string * node_edit; | 
| 38448 
62d16c415019
added functor Linear_Set, based on former adhoc structures in document.ML;
 wenzelm parents: 
38421diff
changeset | 201 | |
| 49064 
bd6cc0b911a1
maintain stable state of node entries from last round -- bypass slightly different Thm.join_theory_proofs;
 wenzelm parents: 
49061diff
changeset | 202 | 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 | 203 | |
| 49064 
bd6cc0b911a1
maintain stable state of node entries from last round -- bypass slightly different Thm.join_theory_proofs;
 wenzelm parents: 
49061diff
changeset | 204 | 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 | 205 | (case Entries.lookup (get_entries node) id of | 
| 44480 
38c5b085fb1c
improved Document.edit: more accurate update_start and no_execs;
 wenzelm parents: 
44479diff
changeset | 206 | NONE => NONE | 
| 
38c5b085fb1c
improved Document.edit: more accurate update_start and no_execs;
 wenzelm parents: 
44479diff
changeset | 207 | | SOME (exec, _) => exec); | 
| 
38c5b085fb1c
improved Document.edit: more accurate update_start and no_execs;
 wenzelm parents: 
44479diff
changeset | 208 | |
| 49064 
bd6cc0b911a1
maintain stable state of node entries from last round -- bypass slightly different Thm.join_theory_proofs;
 wenzelm parents: 
49061diff
changeset | 209 | 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 | 210 | (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 | 211 | NONE => err_undef "command entry" id | 
| 44476 
e8a87398f35d
propagate information about last command with exec state assignment through document model;
 wenzelm parents: 
44446diff
changeset | 212 | | SOME (exec, _) => exec); | 
| 38150 
67fc24df3721
simplified/refined document model: collection of named nodes, without proper dependencies yet;
 wenzelm parents: diff
changeset | 213 | |
| 52566 
52a0eacf04d1
more formal type assign_update: avoid duplicate results and redundant update of global State.execs;
 wenzelm parents: 
52536diff
changeset | 214 | 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 | 215 | 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 | 216 | else map_entries (Entries.update (command_id, exec)) node; | 
| 38418 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 217 | |
| 38448 
62d16c415019
added functor Linear_Set, based on former adhoc structures in document.ML;
 wenzelm parents: 
38421diff
changeset | 218 | fun reset_after id entries = | 
| 
62d16c415019
added functor Linear_Set, based on former adhoc structures in document.ML;
 wenzelm parents: 
38421diff
changeset | 219 | (case Entries.get_after entries id of | 
| 
62d16c415019
added functor Linear_Set, based on former adhoc structures in document.ML;
 wenzelm parents: 
38421diff
changeset | 220 | NONE => entries | 
| 
62d16c415019
added functor Linear_Set, based on former adhoc structures in document.ML;
 wenzelm parents: 
38421diff
changeset | 221 | | SOME next => Entries.update (next, NONE) entries); | 
| 
62d16c415019
added functor Linear_Set, based on former adhoc structures in document.ML;
 wenzelm parents: 
38421diff
changeset | 222 | |
| 43668 | 223 | val edit_node = map_entries o fold | 
| 224 | (fn (id, SOME id2) => Entries.insert_after id (id2, NONE) | |
| 225 | | (id, NONE) => Entries.delete_after id #> reset_after id); | |
| 38418 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 226 | |
| 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 227 | |
| 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 228 | (* version operations *) | 
| 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 229 | |
| 50862 
5fc8b83322f5
more sensible order of theory nodes (correspondance to Scala version), e.g. relevant to theory progress;
 wenzelm parents: 
50201diff
changeset | 230 | val empty_version = Version String_Graph.empty; | 
| 44185 | 231 | |
| 38418 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 232 | fun nodes_of (Version nodes) = nodes; | 
| 44185 | 233 | val node_of = get_node o nodes_of; | 
| 38418 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 234 | |
| 44185 | 235 | fun cycle_msg names = "Cyclic dependency of " ^ space_implode " via " (map quote names); | 
| 44180 | 236 | |
| 44157 
a21d3e1e64fd
uniform treatment of header edits as document edits;
 wenzelm parents: 
44156diff
changeset | 237 | fun edit_nodes (name, node_edit) (Version nodes) = | 
| 
a21d3e1e64fd
uniform treatment of header edits as document edits;
 wenzelm parents: 
44156diff
changeset | 238 | Version | 
| 44436 
546adfa8a6fc
update_perspective without actual edits, bypassing the full state assignment protocol;
 wenzelm parents: 
44435diff
changeset | 239 | (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 | 240 | Edits edits => update_node name (edit_node edits) nodes | 
| 59715 
4f0d0e4ad68d
avoid duplicate header errors, more precise positions;
 wenzelm parents: 
59702diff
changeset | 241 |     | Deps {master, header, errors} =>
 | 
| 44436 
546adfa8a6fc
update_perspective without actual edits, bypassing the full state assignment protocol;
 wenzelm parents: 
44435diff
changeset | 242 | let | 
| 48927 
ef462b5558eb
theory def/ref position reports, which enable hyperlinks etc.;
 wenzelm parents: 
48918diff
changeset | 243 | val imports = map fst (#imports header); | 
| 44436 
546adfa8a6fc
update_perspective without actual edits, bypassing the full state assignment protocol;
 wenzelm parents: 
44435diff
changeset | 244 | val nodes1 = nodes | 
| 
546adfa8a6fc
update_perspective without actual edits, bypassing the full state assignment protocol;
 wenzelm parents: 
44435diff
changeset | 245 | |> default_node name | 
| 48927 
ef462b5558eb
theory def/ref position reports, which enable hyperlinks etc.;
 wenzelm parents: 
48918diff
changeset | 246 | |> fold default_node imports; | 
| 44436 
546adfa8a6fc
update_perspective without actual edits, bypassing the full state assignment protocol;
 wenzelm parents: 
44435diff
changeset | 247 | 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 | 248 | |> 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 | 249 | (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 | 250 | val (nodes3, errors1) = | 
| 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 251 | (String_Graph.add_deps_acyclic (name, imports) nodes2, errors) | 
| 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 252 | handle String_Graph.CYCLES cs => (nodes2, errors @ map cycle_msg cs); | 
| 59715 
4f0d0e4ad68d
avoid duplicate header errors, more precise positions;
 wenzelm parents: 
59702diff
changeset | 253 | 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 | 254 | | 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 | 255 | |
| 59086 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 256 | fun update_keywords name nodes = | 
| 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 257 | nodes |> String_Graph.map_node name (fn node => | 
| 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 258 | if is_empty_node node then node | 
| 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 259 | else | 
| 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 260 | let | 
| 59715 
4f0d0e4ad68d
avoid duplicate header errors, more precise positions;
 wenzelm parents: 
59702diff
changeset | 261 |         val {master, header, errors} = get_header node;
 | 
| 59086 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 262 | val imports_keywords = map_filter (get_keywords o get_node nodes o #1) (#imports header); | 
| 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 263 | val keywords = | 
| 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 264 | Library.foldl Keyword.merge_keywords (Session.get_keywords (), imports_keywords); | 
| 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 265 | val (keywords', errors') = | 
| 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 266 | (Keyword.add_keywords (#keywords header) keywords, errors) | 
| 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 267 | handle ERROR msg => | 
| 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 268 | (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 | 269 | in | 
| 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 270 | node | 
| 59715 
4f0d0e4ad68d
avoid duplicate header errors, more precise positions;
 wenzelm parents: 
59702diff
changeset | 271 | |> set_header master header errors' | 
| 59086 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 272 | |> set_keywords (SOME keywords') | 
| 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 273 | end); | 
| 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 274 | |
| 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 275 | fun edit_keywords edits (Version nodes) = | 
| 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 276 | Version | 
| 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 277 | (fold update_keywords | 
| 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 278 | (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 | 279 | nodes); | 
| 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 280 | |
| 44222 
9d5ef6cd4ee1
use full .thy file name as node name, which makes MiscUtilities.resolveSymlinks/File.getCanonicalPath more predictable;
 wenzelm parents: 
44202diff
changeset | 281 | fun put_node (name, node) (Version nodes) = | 
| 57616 | 282 | let | 
| 283 | val nodes1 = update_node name (K node) nodes; | |
| 284 | val nodes2 = | |
| 285 | if String_Graph.is_maximal nodes1 name andalso is_empty_node node | |
| 286 | then String_Graph.del_node name nodes1 | |
| 287 | else nodes1; | |
| 288 | in Version nodes2 end; | |
| 38418 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 289 | |
| 38150 
67fc24df3721
simplified/refined document model: collection of named nodes, without proper dependencies yet;
 wenzelm parents: diff
changeset | 290 | end; | 
| 
67fc24df3721
simplified/refined document model: collection of named nodes, without proper dependencies yet;
 wenzelm parents: diff
changeset | 291 | |
| 38418 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 292 | |
| 52595 | 293 | |
| 294 | (** main state -- document structure and execution process **) | |
| 52536 | 295 | |
| 56458 
a8d960baa5c2
simplified blob again (amending 1e77ed11f2f7): only store file node name, i.e. the raw editor file name;
 wenzelm parents: 
56447diff
changeset | 296 | type blob_digest = (string * string option) Exn.result; (*file node name, raw digest*) | 
| 55798 | 297 | |
| 52774 
627fb639a2d9
maintain explicit execution frontier: avoid conflict with former task via static dependency;
 wenzelm parents: 
52772diff
changeset | 298 | type execution = | 
| 
627fb639a2d9
maintain explicit execution frontier: avoid conflict with former task via static dependency;
 wenzelm parents: 
52772diff
changeset | 299 |  {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 | 300 | execution_id: Document_ID.execution, (*dynamic execution id*) | 
| 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 | 301 | delay_request: unit future}; (*pending event timer request*) | 
| 52604 | 302 | |
| 52774 
627fb639a2d9
maintain explicit execution frontier: avoid conflict with former task via static dependency;
 wenzelm parents: 
52772diff
changeset | 303 | 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 | 304 |   {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 | 305 | execution_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 | 306 | delay_request = Future.value ()}; | 
| 52774 
627fb639a2d9
maintain explicit execution frontier: avoid conflict with former task via static dependency;
 wenzelm parents: 
52772diff
changeset | 307 | |
| 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 | 308 | fun new_execution version_id delay_request : execution = | 
| 
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 | 309 |   {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 | 310 | execution_id = Execution.start (), | 
| 
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 | 311 | delay_request = delay_request}; | 
| 52604 | 312 | |
| 38418 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 313 | abstype state = State of | 
| 52536 | 314 |  {versions: version Inttab.table,  (*version id -> document content*)
 | 
| 55798 | 315 | 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 | 316 | 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 | 317 | (*command id -> name, inlined files, token index of files, command span*) | 
| 52536 | 318 | execution: execution} (*current execution process*) | 
| 38418 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 319 | with | 
| 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 320 | |
| 54519 
5fed81762406
maintain blobs within document state: digest + text in ML, digest-only in Scala;
 wenzelm parents: 
54516diff
changeset | 321 | 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 | 322 |   State {versions = versions, blobs = blobs, commands = commands, execution = execution};
 | 
| 38418 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 323 | |
| 54519 
5fed81762406
maintain blobs within document state: digest + text in ML, digest-only in Scala;
 wenzelm parents: 
54516diff
changeset | 324 | 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 | 325 | make_state (f (versions, blobs, commands, execution)); | 
| 38418 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 326 | |
| 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 327 | val init_state = | 
| 54519 
5fed81762406
maintain blobs within document state: digest + text in ML, digest-only in Scala;
 wenzelm parents: 
54516diff
changeset | 328 | 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 | 329 | Symtab.empty, Inttab.empty, no_execution); | 
| 38418 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 330 | |
| 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 331 | |
| 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 332 | (* document versions *) | 
| 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 333 | |
| 52536 | 334 | fun define_version version_id version = | 
| 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 | 335 |   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 | 336 | let | 
| 52536 | 337 | 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 | 338 | handle Inttab.DUP dup => err_dup "document version" dup; | 
| 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 | 339 | val execution' = new_execution version_id delay_request; | 
| 54519 
5fed81762406
maintain blobs within document state: digest + text in ML, digest-only in Scala;
 wenzelm parents: 
54516diff
changeset | 340 | in (versions', blobs, commands, execution') end); | 
| 38418 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 341 | |
| 52536 | 342 | fun the_version (State {versions, ...}) version_id =
 | 
| 343 | (case Inttab.lookup versions version_id of | |
| 344 | NONE => err_undef "document version" version_id | |
| 38418 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 345 | | SOME version => version); | 
| 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 346 | |
| 52536 | 347 | fun delete_version version_id versions = | 
| 348 | Inttab.delete version_id versions | |
| 349 | handle Inttab.UNDEF _ => err_undef "document version" version_id; | |
| 44673 | 350 | |
| 38418 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 351 | |
| 54519 
5fed81762406
maintain blobs within document state: digest + text in ML, digest-only in Scala;
 wenzelm parents: 
54516diff
changeset | 352 | (* inlined files *) | 
| 
5fed81762406
maintain blobs within document state: digest + text in ML, digest-only in Scala;
 wenzelm parents: 
54516diff
changeset | 353 | |
| 
5fed81762406
maintain blobs within document state: digest + text in ML, digest-only in Scala;
 wenzelm parents: 
54516diff
changeset | 354 | fun define_blob digest text = | 
| 
5fed81762406
maintain blobs within document state: digest + text in ML, digest-only in Scala;
 wenzelm parents: 
54516diff
changeset | 355 | 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 | 356 | 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 | 357 | in (versions, blobs', commands, execution) end); | 
| 
5fed81762406
maintain blobs within document state: digest + text in ML, digest-only in Scala;
 wenzelm parents: 
54516diff
changeset | 358 | |
| 
5fed81762406
maintain blobs within document state: digest + text in ML, digest-only in Scala;
 wenzelm parents: 
54516diff
changeset | 359 | fun the_blob (State {blobs, ...}) digest =
 | 
| 
5fed81762406
maintain blobs within document state: digest + text in ML, digest-only in Scala;
 wenzelm parents: 
54516diff
changeset | 360 | (case Symtab.lookup blobs digest of | 
| 
5fed81762406
maintain blobs within document state: digest + text in ML, digest-only in Scala;
 wenzelm parents: 
54516diff
changeset | 361 |     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 | 362 | | SOME content => content); | 
| 54519 
5fed81762406
maintain blobs within document state: digest + text in ML, digest-only in Scala;
 wenzelm parents: 
54516diff
changeset | 363 | |
| 56447 
1e77ed11f2f7
separate file_node vs. file_path, e.g. relevant on Windows for hyperlink to the latter;
 wenzelm parents: 
56208diff
changeset | 364 | fun resolve_blob state (blob_digest: blob_digest) = | 
| 61077 
06cca32aa519
thread context for exceptions from forks, e.g. relevant when printing errors;
 wenzelm parents: 
60937diff
changeset | 365 | blob_digest |> Exn.map_res (fn (file_node, raw_digest) => | 
| 56458 
a8d960baa5c2
simplified blob again (amending 1e77ed11f2f7): only store file node name, i.e. the raw editor file name;
 wenzelm parents: 
56447diff
changeset | 366 | (file_node, Option.map (the_blob state) raw_digest)); | 
| 56447 
1e77ed11f2f7
separate file_node vs. file_path, e.g. relevant on Windows for hyperlink to the latter;
 wenzelm parents: 
56208diff
changeset | 367 | |
| 59685 
c043306d2598
clarified markup for embedded files, early before execution;
 wenzelm parents: 
59347diff
changeset | 368 | fun blob_reports pos (blob_digest: blob_digest) = | 
| 
c043306d2598
clarified markup for embedded files, early before execution;
 wenzelm parents: 
59347diff
changeset | 369 | (case blob_digest of Exn.Res (file_node, _) => [(pos, Markup.path file_node)] | _ => []); | 
| 
c043306d2598
clarified markup for embedded files, early before execution;
 wenzelm parents: 
59347diff
changeset | 370 | |
| 54519 
5fed81762406
maintain blobs within document state: digest + text in ML, digest-only in Scala;
 wenzelm parents: 
54516diff
changeset | 371 | |
| 38418 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 372 | (* commands *) | 
| 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 373 | |
| 59702 
58dfaa369c11
hybrid use of command blobs: inlined errors and auxiliary files;
 wenzelm parents: 
59689diff
changeset | 374 | fun define_command command_id name blobs_digests blobs_index toks = | 
| 54519 
5fed81762406
maintain blobs within document state: digest + text in ML, digest-only in Scala;
 wenzelm parents: 
54516diff
changeset | 375 | map_state (fn (versions, blobs, commands, execution) => | 
| 38418 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 376 | let | 
| 52536 | 377 | val id = Document_ID.print command_id; | 
| 378 | val span = | |
| 379 | Lazy.lazy (fn () => | |
| 380 | Position.setmp_thread_data (Position.id_only id) | |
| 59685 
c043306d2598
clarified markup for embedded files, early before execution;
 wenzelm parents: 
59347diff
changeset | 381 | (fn () => | 
| 
c043306d2598
clarified markup for embedded files, early before execution;
 wenzelm parents: 
59347diff
changeset | 382 | let | 
| 
c043306d2598
clarified markup for embedded files, early before execution;
 wenzelm parents: 
59347diff
changeset | 383 | val (tokens, _) = fold_map Token.make toks (Position.id id); | 
| 
c043306d2598
clarified markup for embedded files, early before execution;
 wenzelm parents: 
59347diff
changeset | 384 | val _ = | 
| 59702 
58dfaa369c11
hybrid use of command blobs: inlined errors and auxiliary files;
 wenzelm parents: 
59689diff
changeset | 385 | if blobs_index < 0 | 
| 
58dfaa369c11
hybrid use of command blobs: inlined errors and auxiliary files;
 wenzelm parents: 
59689diff
changeset | 386 | then (*inlined errors*) | 
| 
58dfaa369c11
hybrid use of command blobs: inlined errors and auxiliary files;
 wenzelm parents: 
59689diff
changeset | 387 | map_filter Exn.get_exn blobs_digests | 
| 
58dfaa369c11
hybrid use of command blobs: inlined errors and auxiliary files;
 wenzelm parents: 
59689diff
changeset | 388 | |> List.app (Output.error_message o Runtime.exn_message) | 
| 
58dfaa369c11
hybrid use of command blobs: inlined errors and auxiliary files;
 wenzelm parents: 
59689diff
changeset | 389 | else (*auxiliary files*) | 
| 60027 
c42d65e11b6e
clarified language_path markup (again): exactly once *after* static phase, see also 83071f4c8ae6 and c043306d2598;
 wenzelm parents: 
59934diff
changeset | 390 | let val pos = Token.pos_of (nth tokens blobs_index) | 
| 
c42d65e11b6e
clarified language_path markup (again): exactly once *after* static phase, see also 83071f4c8ae6 and c043306d2598;
 wenzelm parents: 
59934diff
changeset | 391 | in Position.reports (maps (blob_reports pos) blobs_digests) end; | 
| 59685 
c043306d2598
clarified markup for embedded files, early before execution;
 wenzelm parents: 
59347diff
changeset | 392 | in tokens end) ()); | 
| 
c043306d2598
clarified markup for embedded files, early before execution;
 wenzelm parents: 
59347diff
changeset | 393 | val commands' = | 
| 59702 
58dfaa369c11
hybrid use of command blobs: inlined errors and auxiliary files;
 wenzelm parents: 
59689diff
changeset | 394 | 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 | 395 | handle Inttab.DUP dup => err_dup "command" dup; | 
| 47395 
e6261a493f04
added static command status markup, to emphasize accepted but unassigned/unparsed commands (notably in overview panel);
 wenzelm parents: 
47389diff
changeset | 396 | val _ = | 
| 52536 | 397 | Position.setmp_thread_data (Position.id_only id) | 
| 50201 
c26369c9eda6
Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
 wenzelm parents: 
49906diff
changeset | 398 | (fn () => Output.status (Markup.markup_only Markup.accepted)) (); | 
| 54519 
5fed81762406
maintain blobs within document state: digest + text in ML, digest-only in Scala;
 wenzelm parents: 
54516diff
changeset | 399 | in (versions, blobs, commands', execution) end); | 
| 38418 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 400 | |
| 52536 | 401 | fun the_command (State {commands, ...}) command_id =
 | 
| 402 | (case Inttab.lookup commands command_id of | |
| 403 | NONE => err_undef "command" command_id | |
| 44644 
317e4962dd0f
clarified define_command: store name as structural information;
 wenzelm parents: 
44643diff
changeset | 404 | | SOME command => command); | 
| 38418 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 405 | |
| 52569 
18dde2cf7aa7
produce print_execs assignment earlier during last_common phase (referring to current command_id, not prev);
 wenzelm parents: 
52566diff
changeset | 406 | val the_command_name = #1 oo the_command; | 
| 
18dde2cf7aa7
produce print_execs assignment earlier during last_common phase (referring to current command_id, not prev);
 wenzelm parents: 
52566diff
changeset | 407 | |
| 60880 
fa958e24ff24
set breakpoint state on ML side, relying on stable situation within the PIDE editing queue;
 wenzelm parents: 
60198diff
changeset | 408 | 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 | 409 | let | 
| 
fa958e24ff24
set breakpoint state on ML side, relying on stable situation within the PIDE editing queue;
 wenzelm parents: 
60198diff
changeset | 410 |     val State {execution = {version_id, ...}, ...} = state;
 | 
| 
fa958e24ff24
set breakpoint state on ML side, relying on stable situation within the PIDE editing queue;
 wenzelm parents: 
60198diff
changeset | 411 | val node = get_node (nodes_of (the_version state version_id)) node_name; | 
| 
fa958e24ff24
set breakpoint state on ML side, relying on stable situation within the PIDE editing queue;
 wenzelm parents: 
60198diff
changeset | 412 | 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 | 413 | |
| 47420 
0dbe6c69eda2
just one dedicated execution per document version -- NB: non-monotonicity of cancel always requires fresh update;
 wenzelm parents: 
47415diff
changeset | 414 | end; | 
| 38418 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 415 | |
| 52566 
52a0eacf04d1
more formal type assign_update: avoid duplicate results and redundant update of global State.execs;
 wenzelm parents: 
52536diff
changeset | 416 | |
| 
52a0eacf04d1
more formal type assign_update: avoid duplicate results and redundant update of global State.execs;
 wenzelm parents: 
52536diff
changeset | 417 | (* remove_versions *) | 
| 
52a0eacf04d1
more formal type assign_update: avoid duplicate results and redundant update of global State.execs;
 wenzelm parents: 
52536diff
changeset | 418 | |
| 54519 
5fed81762406
maintain blobs within document state: digest + text in ML, digest-only in Scala;
 wenzelm parents: 
54516diff
changeset | 419 | 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 | 420 | let | 
| 52536 | 421 | val _ = | 
| 422 | member (op =) version_ids (#version_id execution) andalso | |
| 423 |         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 | 424 | |
| 52536 | 425 | 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 | 426 | val commands' = | 
| 
0dbe6c69eda2
just one dedicated execution per document version -- NB: non-monotonicity of cancel always requires fresh update;
 wenzelm parents: 
47415diff
changeset | 427 | (versions', Inttab.empty) |-> | 
| 
0dbe6c69eda2
just one dedicated execution per document version -- NB: non-monotonicity of cancel always requires fresh update;
 wenzelm parents: 
47415diff
changeset | 428 | 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 | 429 | String_Graph.fold (fn (_, (node, _)) => node |> | 
| 52536 | 430 | iterate_entries (fn ((_, command_id), _) => | 
| 431 | 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 | 432 | val blobs' = | 
| 
5fed81762406
maintain blobs within document state: digest + text in ML, digest-only in Scala;
 wenzelm parents: 
54516diff
changeset | 433 | (commands', Symtab.empty) |-> | 
| 59689 
7968c57ea240
simplified Command.resolve_files in ML, using blobs_index from Scala;
 wenzelm parents: 
59687diff
changeset | 434 | Inttab.fold (fn (_, (_, blobs, _, _)) => blobs |> | 
| 56458 
a8d960baa5c2
simplified blob again (amending 1e77ed11f2f7): only store file node name, i.e. the raw editor file name;
 wenzelm parents: 
56447diff
changeset | 435 | fold (fn Exn.Res (_, SOME b) => Symtab.update (b, the_blob state b) | _ => I)); | 
| 54519 
5fed81762406
maintain blobs within document state: digest + text in ML, digest-only in Scala;
 wenzelm parents: 
54516diff
changeset | 436 | |
| 
5fed81762406
maintain blobs within document state: digest + text in ML, digest-only in Scala;
 wenzelm parents: 
54516diff
changeset | 437 | in (versions', blobs', commands', execution) end); | 
| 38418 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 438 | |
| 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 439 | |
| 52604 | 440 | (* document execution *) | 
| 47389 
e8552cba702d
explicit checks stable_finished_theory/stable_command allow parallel asynchronous command transactions;
 wenzelm parents: 
47388diff
changeset | 441 | |
| 60198 
8483c2883c8c
always traverse required nodes, e.g. relevant for inlined errors of imported theory header;
 wenzelm parents: 
60027diff
changeset | 442 | fun make_required nodes = | 
| 
8483c2883c8c
always traverse required nodes, e.g. relevant for inlined errors of imported theory header;
 wenzelm parents: 
60027diff
changeset | 443 | let | 
| 
8483c2883c8c
always traverse required nodes, e.g. relevant for inlined errors of imported theory header;
 wenzelm parents: 
60027diff
changeset | 444 | fun all_preds P = | 
| 
8483c2883c8c
always traverse required nodes, e.g. relevant for inlined errors of imported theory header;
 wenzelm parents: 
60027diff
changeset | 445 | 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 | 446 | |> String_Graph.all_preds nodes | 
| 
8483c2883c8c
always traverse required nodes, e.g. relevant for inlined errors of imported theory header;
 wenzelm parents: 
60027diff
changeset | 447 | |> Symtab.make_set; | 
| 
8483c2883c8c
always traverse required nodes, e.g. relevant for inlined errors of imported theory header;
 wenzelm parents: 
60027diff
changeset | 448 | |
| 
8483c2883c8c
always traverse required nodes, e.g. relevant for inlined errors of imported theory header;
 wenzelm parents: 
60027diff
changeset | 449 | 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 | 450 | 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 | 451 | in | 
| 
8483c2883c8c
always traverse required nodes, e.g. relevant for inlined errors of imported theory header;
 wenzelm parents: 
60027diff
changeset | 452 | Symtab.fold (fn (a, ()) => | 
| 
8483c2883c8c
always traverse required nodes, e.g. relevant for inlined errors of imported theory header;
 wenzelm parents: 
60027diff
changeset | 453 | exists (Symtab.defined all_visible) (String_Graph.immediate_succs nodes a) ? | 
| 
8483c2883c8c
always traverse required nodes, e.g. relevant for inlined errors of imported theory header;
 wenzelm parents: 
60027diff
changeset | 454 | Symtab.update (a, ())) all_visible all_required | 
| 
8483c2883c8c
always traverse required nodes, e.g. relevant for inlined errors of imported theory header;
 wenzelm parents: 
60027diff
changeset | 455 | end; | 
| 
8483c2883c8c
always traverse required nodes, e.g. relevant for inlined errors of imported theory header;
 wenzelm parents: 
60027diff
changeset | 456 | |
| 54519 
5fed81762406
maintain blobs within document state: digest + text in ML, digest-only in Scala;
 wenzelm parents: 
54516diff
changeset | 457 | fun start_execution state = state |> map_state (fn (versions, blobs, commands, execution) => | 
| 52796 | 458 | timeit "Document.start_execution" (fn () => | 
| 459 | let | |
| 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 | 460 |       val {version_id, execution_id, delay_request} = 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 | 461 | |
| 
9d3c9862d1dd
recovered delay for Document.start_execution (see also 627fb639a2d9), which potentially improves throughput when many consecutive edits arrive;
 wenzelm parents: 
52797diff
changeset | 462 | val delay = seconds (Options.default_real "editor_execution_delay"); | 
| 52774 
627fb639a2d9
maintain explicit execution frontier: avoid conflict with former task via static dependency;
 wenzelm parents: 
52772diff
changeset | 463 | |
| 52798 
9d3c9862d1dd
recovered delay for Document.start_execution (see also 627fb639a2d9), which potentially improves throughput when many consecutive edits arrive;
 wenzelm parents: 
52797diff
changeset | 464 | val _ = Future.cancel delay_request; | 
| 62826 | 465 | val delay_request' = Event_Timer.future (Time.now () + 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 | 466 | |
| 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 | 467 | fun finished_import (name, (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 | 468 | finished_result node orelse is_some (loaded_theory name); | 
| 60198 
8483c2883c8c
always traverse required nodes, e.g. relevant for inlined errors of imported theory header;
 wenzelm parents: 
60027diff
changeset | 469 | |
| 
8483c2883c8c
always traverse required nodes, e.g. relevant for inlined errors of imported theory header;
 wenzelm parents: 
60027diff
changeset | 470 | 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 | 471 | 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 | 472 | val _ = | 
| 60198 
8483c2883c8c
always traverse required nodes, e.g. relevant for inlined errors of imported theory header;
 wenzelm parents: 
60027diff
changeset | 473 | nodes |> String_Graph.schedule | 
| 52573 
815461c835b9
tuned start_execution: avoid sleep on worker thread;
 wenzelm parents: 
52570diff
changeset | 474 | (fn deps => fn (name, node) => | 
| 60198 
8483c2883c8c
always traverse required nodes, e.g. relevant for inlined errors of imported theory header;
 wenzelm parents: 
60027diff
changeset | 475 | if Symtab.defined required name orelse visible_node node orelse pending_result node then | 
| 52774 
627fb639a2d9
maintain explicit execution frontier: avoid conflict with former task via static dependency;
 wenzelm parents: 
52772diff
changeset | 476 | let | 
| 52775 
e0169f13bd37
keep memo_exec execution running, which is important to cancel goal forks eventually;
 wenzelm parents: 
52774diff
changeset | 477 | fun body () = | 
| 59347 | 478 | (if forall finished_import deps then | 
| 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 | 479 | iterate_entries (fn (_, opt_exec) => fn () => | 
| 
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 | 480 | (case opt_exec of | 
| 
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 | 481 | SOME exec => | 
| 
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 | 482 | if Execution.is_running execution_id | 
| 
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 | 483 | then SOME (Command.exec execution_id exec) | 
| 
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 | 484 | else NONE | 
| 
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 | 485 | | NONE => NONE)) node () | 
| 59347 | 486 | else ()) | 
| 62505 | 487 | handle exn => (Output.system_message (Runtime.exn_message exn); Exn.reraise exn); | 
| 52774 
627fb639a2d9
maintain explicit execution frontier: avoid conflict with former task via static dependency;
 wenzelm parents: 
52772diff
changeset | 488 | val future = | 
| 
627fb639a2d9
maintain explicit execution frontier: avoid conflict with former task via static dependency;
 wenzelm parents: 
52772diff
changeset | 489 | (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 | 490 |                    {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 | 491 | group = SOME (Future.new_group NONE), | 
| 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 | 492 | deps = Future.task_of delay_request' :: maps (the_list o #2 o #2) deps, | 
| 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 | 493 | pri = 0, interrupts = false} body; | 
| 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 | 494 | 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 | 495 | 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 | 496 | val 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 | 497 |         {version_id = version_id, execution_id = execution_id, delay_request = delay_request'};
 | 
| 54519 
5fed81762406
maintain blobs within document state: digest + text in ML, digest-only in Scala;
 wenzelm parents: 
54516diff
changeset | 498 | in (versions, blobs, commands, execution') end)); | 
| 47345 
193251980a73
more scalable execute/update: avoid redundant traversal of invisible/finished nodes;
 wenzelm parents: 
47344diff
changeset | 499 | |
| 
193251980a73
more scalable execute/update: avoid redundant traversal of invisible/finished nodes;
 wenzelm parents: 
47344diff
changeset | 500 | |
| 47420 
0dbe6c69eda2
just one dedicated execution per document version -- NB: non-monotonicity of cancel always requires fresh update;
 wenzelm parents: 
47415diff
changeset | 501 | |
| 
0dbe6c69eda2
just one dedicated execution per document version -- NB: non-monotonicity of cancel always requires fresh update;
 wenzelm parents: 
47415diff
changeset | 502 | (** document update **) | 
| 38418 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 503 | |
| 52566 
52a0eacf04d1
more formal type assign_update: avoid duplicate results and redundant update of global State.execs;
 wenzelm parents: 
52536diff
changeset | 504 | (* exec state assignment *) | 
| 
52a0eacf04d1
more formal type assign_update: avoid duplicate results and redundant update of global State.execs;
 wenzelm parents: 
52536diff
changeset | 505 | |
| 
52a0eacf04d1
more formal type assign_update: avoid duplicate results and redundant update of global State.execs;
 wenzelm parents: 
52536diff
changeset | 506 | 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 | 507 | |
| 
52a0eacf04d1
more formal type assign_update: avoid duplicate results and redundant update of global State.execs;
 wenzelm parents: 
52536diff
changeset | 508 | 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 | 509 | fun assign_update_defined (tab: assign_update) command_id = Inttab.defined tab command_id; | 
| 
52a0eacf04d1
more formal type assign_update: avoid duplicate results and redundant update of global State.execs;
 wenzelm parents: 
52536diff
changeset | 510 | 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 | 511 | |
| 
52a0eacf04d1
more formal type assign_update: avoid duplicate results and redundant update of global State.execs;
 wenzelm parents: 
52536diff
changeset | 512 | fun assign_update_new upd (tab: assign_update) = | 
| 
52a0eacf04d1
more formal type assign_update: avoid duplicate results and redundant update of global State.execs;
 wenzelm parents: 
52536diff
changeset | 513 | 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 | 514 | 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 | 515 | |
| 
52a0eacf04d1
more formal type assign_update: avoid duplicate results and redundant update of global State.execs;
 wenzelm parents: 
52536diff
changeset | 516 | 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 | 517 | 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 | 518 | |
| 
52a0eacf04d1
more formal type assign_update: avoid duplicate results and redundant update of global State.execs;
 wenzelm parents: 
52536diff
changeset | 519 | |
| 
52a0eacf04d1
more formal type assign_update: avoid duplicate results and redundant update of global State.execs;
 wenzelm parents: 
52536diff
changeset | 520 | (* update *) | 
| 
52a0eacf04d1
more formal type assign_update: avoid duplicate results and redundant update of global State.execs;
 wenzelm parents: 
52536diff
changeset | 521 | |
| 38418 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 522 | local | 
| 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 523 | |
| 48927 
ef462b5558eb
theory def/ref position reports, which enable hyperlinks etc.;
 wenzelm parents: 
48918diff
changeset | 524 | fun init_theory deps node span = | 
| 47335 | 525 | let | 
| 54526 | 526 | val master_dir = master_directory node; | 
| 527 | val header = read_header node span; | |
| 48927 
ef462b5558eb
theory def/ref position reports, which enable hyperlinks etc.;
 wenzelm parents: 
48918diff
changeset | 528 | val imports = #imports header; | 
| 59716 | 529 | |
| 530 | fun maybe_end_theory pos st = | |
| 531 | SOME (Toplevel.end_theory pos st) | |
| 532 | handle ERROR msg => (Output.error_message msg; NONE); | |
| 533 | val parents_reports = | |
| 534 | imports |> map_filter (fn (import, pos) => | |
| 54516 | 535 | (case loaded_theory import of | 
| 59716 | 536 | NONE => | 
| 537 | maybe_end_theory pos | |
| 52536 | 538 | (case get_result (snd (the (AList.lookup (op =) deps import))) of | 
| 539 | NONE => Toplevel.toplevel | |
| 59716 | 540 | | SOME eval => Command.eval_result_state eval) | 
| 541 | | some => some) | |
| 542 | |> Option.map (fn thy => (thy, (pos, Theory.get_markup thy)))); | |
| 543 | ||
| 544 | val parents = | |
| 60937 | 545 | if null parents_reports then [Thy_Info.pure_theory ()] else map #1 parents_reports; | 
| 59716 | 546 | val _ = Position.reports (map #2 parents_reports); | 
| 56208 | 547 | in Resources.begin_theory master_dir header parents end; | 
| 47335 | 548 | |
| 62895 
54c2abe7e9a4
treat ROOT.ML as theory with header "theory ML_Root imports ML_Bootstrap begin";
 wenzelm parents: 
62826diff
changeset | 549 | fun check_ml_root node = | 
| 62932 
db12de2367ca
support ROOT0.ML as well -- independently of ROOT.ML;
 wenzelm parents: 
62895diff
changeset | 550 | if member (op =) Thy_Header.ml_roots (#1 (#name (#header (get_header node)))) then | 
| 62895 
54c2abe7e9a4
treat ROOT.ML as theory with header "theory ML_Root imports ML_Bootstrap begin";
 wenzelm parents: 
62826diff
changeset | 551 | let | 
| 
54c2abe7e9a4
treat ROOT.ML as theory with header "theory ML_Root imports ML_Bootstrap begin";
 wenzelm parents: 
62826diff
changeset | 552 | val master_dir = master_directory node; | 
| 
54c2abe7e9a4
treat ROOT.ML as theory with header "theory ML_Root imports ML_Bootstrap begin";
 wenzelm parents: 
62826diff
changeset | 553 | val header = #header (get_header node); | 
| 
54c2abe7e9a4
treat ROOT.ML as theory with header "theory ML_Root imports ML_Bootstrap begin";
 wenzelm parents: 
62826diff
changeset | 554 | val parent = Thy_Info.get_theory Thy_Header.ml_bootstrapN; | 
| 
54c2abe7e9a4
treat ROOT.ML as theory with header "theory ML_Root imports ML_Bootstrap begin";
 wenzelm parents: 
62826diff
changeset | 555 | in SOME (Resources.begin_theory master_dir header [parent]) end | 
| 
54c2abe7e9a4
treat ROOT.ML as theory with header "theory ML_Root imports ML_Bootstrap begin";
 wenzelm parents: 
62826diff
changeset | 556 | else NONE; | 
| 
54c2abe7e9a4
treat ROOT.ML as theory with header "theory ML_Root imports ML_Bootstrap begin";
 wenzelm parents: 
62826diff
changeset | 557 | |
| 47407 | 558 | fun check_theory full name node = | 
| 54516 | 559 | is_some (loaded_theory name) orelse | 
| 59715 
4f0d0e4ad68d
avoid duplicate header errors, more precise positions;
 wenzelm parents: 
59702diff
changeset | 560 | null (#errors (get_header node)) andalso (not full orelse is_some (get_result node)); | 
| 47335 | 561 | |
| 58923 | 562 | fun last_common keywords state node_required node0 node = | 
| 44482 
c7225307acf2
further clarification of Document.updated, based on last_common and after_entry;
 wenzelm parents: 
44481diff
changeset | 563 | let | 
| 44645 
5938beb84adc
more precise iterate_entries_after if start refers to last entry;
 wenzelm parents: 
44644diff
changeset | 564 | fun update_flags prev (visible, initial) = | 
| 
5938beb84adc
more precise iterate_entries_after if start refers to last entry;
 wenzelm parents: 
44644diff
changeset | 565 | let | 
| 52569 
18dde2cf7aa7
produce print_execs assignment earlier during last_common phase (referring to current command_id, not prev);
 wenzelm parents: 
52566diff
changeset | 566 | 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 | 567 | val initial' = initial andalso | 
| 
5938beb84adc
more precise iterate_entries_after if start refers to last entry;
 wenzelm parents: 
44644diff
changeset | 568 | (case prev of | 
| 
5938beb84adc
more precise iterate_entries_after if start refers to last entry;
 wenzelm parents: 
44644diff
changeset | 569 | NONE => true | 
| 59735 | 570 | | SOME command_id => the_command_name state command_id <> Thy_Header.theoryN); | 
| 44645 
5938beb84adc
more precise iterate_entries_after if start refers to last entry;
 wenzelm parents: 
44644diff
changeset | 571 | 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 | 572 | |
| 52784 
4ba2e8b9972f
de-assign execs that were not registered as running yet -- observe change of perspective more thoroughly;
 wenzelm parents: 
52776diff
changeset | 573 | 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 | 574 | if ok then | 
| 47630 | 575 | let | 
| 52784 
4ba2e8b9972f
de-assign execs that were not registered as running yet -- observe change of perspective more thoroughly;
 wenzelm parents: 
52776diff
changeset | 576 | 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 | 577 | val ok' = | 
| 52586 | 578 | (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 | 579 | (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 | 580 | 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 | 581 | (visible' orelse node_required orelse Command.eval_running eval) | 
| 52586 | 582 | | _ => false); | 
| 52784 
4ba2e8b9972f
de-assign execs that were not registered as running yet -- observe change of perspective more thoroughly;
 wenzelm parents: 
52776diff
changeset | 583 | 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 | 584 | (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 | 585 | SOME (eval, prints) => | 
| 
18dde2cf7aa7
produce print_execs assignment earlier during last_common phase (referring to current command_id, not prev);
 wenzelm parents: 
52566diff
changeset | 586 | let | 
| 
18dde2cf7aa7
produce print_execs assignment earlier during last_common phase (referring to current command_id, not prev);
 wenzelm parents: 
52566diff
changeset | 587 | val command_visible = visible_command node command_id; | 
| 52850 
9fff9f78240a
support print functions with explicit arguments, as provided by overlays;
 wenzelm parents: 
52849diff
changeset | 588 | val command_overlays = overlays node command_id; | 
| 52569 
18dde2cf7aa7
produce print_execs assignment earlier during last_common phase (referring to current command_id, not prev);
 wenzelm parents: 
52566diff
changeset | 589 | val command_name = the_command_name state command_id; | 
| 
18dde2cf7aa7
produce print_execs assignment earlier during last_common phase (referring to current command_id, not prev);
 wenzelm parents: 
52566diff
changeset | 590 | in | 
| 58923 | 591 | (case | 
| 592 | Command.print command_visible command_overlays keywords command_name eval prints | |
| 593 | of | |
| 52569 
18dde2cf7aa7
produce print_execs assignment earlier during last_common phase (referring to current command_id, not prev);
 wenzelm parents: 
52566diff
changeset | 594 | 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 | 595 | | NONE => I) | 
| 
18dde2cf7aa7
produce print_execs assignment earlier during last_common phase (referring to current command_id, not prev);
 wenzelm parents: 
52566diff
changeset | 596 | end | 
| 
18dde2cf7aa7
produce print_execs assignment earlier during last_common phase (referring to current command_id, not prev);
 wenzelm parents: 
52566diff
changeset | 597 | | NONE => I); | 
| 52784 
4ba2e8b9972f
de-assign execs that were not registered as running yet -- observe change of perspective more thoroughly;
 wenzelm parents: 
52776diff
changeset | 598 | in SOME (prev, ok', flags', assign_update') end | 
| 47630 | 599 | else NONE; | 
| 52784 
4ba2e8b9972f
de-assign execs that were not registered as running yet -- observe change of perspective more thoroughly;
 wenzelm parents: 
52776diff
changeset | 600 | 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 | 601 | 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 | 602 | 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 | 603 | 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 | 604 | 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 | 605 | 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 | 606 | else (common, flags); | 
| 
18dde2cf7aa7
produce print_execs assignment earlier during last_common phase (referring to current command_id, not prev);
 wenzelm parents: 
52566diff
changeset | 607 | in (assign_update', common', flags') end; | 
| 44645 
5938beb84adc
more precise iterate_entries_after if start refers to last entry;
 wenzelm parents: 
44644diff
changeset | 608 | |
| 62895 
54c2abe7e9a4
treat ROOT.ML as theory with header "theory ML_Root imports ML_Bootstrap begin";
 wenzelm parents: 
62826diff
changeset | 609 | fun illegal_init _ = error "Illegal theory header"; | 
| 52534 | 610 | |
| 58923 | 611 | fun new_exec keywords state node proper_init command_id' (assign_update, command_exec, init) = | 
| 47407 | 612 | 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 | 613 | else | 
| 
5938beb84adc
more precise iterate_entries_after if start refers to last entry;
 wenzelm parents: 
44644diff
changeset | 614 | let | 
| 52534 | 615 | val (_, (eval, _)) = command_exec; | 
| 52850 
9fff9f78240a
support print functions with explicit arguments, as provided by overlays;
 wenzelm parents: 
52849diff
changeset | 616 | |
| 
9fff9f78240a
support print functions with explicit arguments, as provided by overlays;
 wenzelm parents: 
52849diff
changeset | 617 | val command_visible = visible_command node command_id'; | 
| 
9fff9f78240a
support print functions with explicit arguments, as provided by overlays;
 wenzelm parents: 
52849diff
changeset | 618 | val command_overlays = overlays node command_id'; | 
| 59689 
7968c57ea240
simplified Command.resolve_files in ML, using blobs_index from Scala;
 wenzelm parents: 
59687diff
changeset | 619 | 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 | 620 | 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 | 621 | 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 | 622 | |
| 54519 
5fed81762406
maintain blobs within document state: digest + text in ML, digest-only in Scala;
 wenzelm parents: 
54516diff
changeset | 623 | val eval' = | 
| 58934 
385a4cc7426f
prefer externally provided keywords -- Command.read_thy may degenerate to bootstrap_thy in case of errors;
 wenzelm parents: 
58928diff
changeset | 624 | Command.eval keywords (master_directory node) | 
| 59689 
7968c57ea240
simplified Command.resolve_files in ML, using blobs_index from Scala;
 wenzelm parents: 
59687diff
changeset | 625 | (fn () => the_default illegal_init init span) (blobs, blobs_index) span eval; | 
| 58923 | 626 | val prints' = | 
| 627 | perhaps (Command.print command_visible command_overlays keywords command_name eval') []; | |
| 52566 
52a0eacf04d1
more formal type assign_update: avoid duplicate results and redundant update of global State.execs;
 wenzelm parents: 
52536diff
changeset | 628 | val exec' = (eval', prints'); | 
| 44482 
c7225307acf2
further clarification of Document.updated, based on last_common and after_entry;
 wenzelm parents: 
44481diff
changeset | 629 | |
| 52566 
52a0eacf04d1
more formal type assign_update: avoid duplicate results and redundant update of global State.execs;
 wenzelm parents: 
52536diff
changeset | 630 | val assign_update' = assign_update_new (command_id', SOME exec') assign_update; | 
| 59735 | 631 | val init' = if command_name = Thy_Header.theoryN then NONE else init; | 
| 52566 
52a0eacf04d1
more formal type assign_update: avoid duplicate results and redundant update of global State.execs;
 wenzelm parents: 
52536diff
changeset | 632 | in SOME (assign_update', (command_id', (eval', prints')), 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 | 633 | |
| 52655 
3b2b1ef13979
more careful termination of removed execs, leaving running execs undisturbed;
 wenzelm parents: 
52607diff
changeset | 634 | fun removed_execs node0 (command_id, exec_ids) = | 
| 
3b2b1ef13979
more careful termination of removed execs, leaving running execs undisturbed;
 wenzelm parents: 
52607diff
changeset | 635 | 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 | 636 | |
| 38418 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 637 | in | 
| 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 638 | |
| 59056 
cbe9563c03d1
even more exception traces for Document.update, which goes through additional execution wrappers;
 wenzelm parents: 
58934diff
changeset | 639 | fun update old_version_id new_version_id edits state = Runtime.exn_trace_system (fn () => | 
| 38418 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 640 | let | 
| 52536 | 641 | val old_version = the_version state old_version_id; | 
| 59086 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 642 | val new_version = | 
| 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 643 | timeit "Document.edit_nodes" | 
| 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 644 | (fn () => old_version |> fold edit_nodes edits |> edit_keywords edits); | 
| 38418 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 645 | |
| 44544 
da5f0af32c1b
more precise treatment of nodes that are fully required for partially visible ones;
 wenzelm parents: 
44483diff
changeset | 646 | val nodes = nodes_of new_version; | 
| 52776 | 647 | val required = make_required nodes; | 
| 648 | val required0 = make_required (nodes_of old_version); | |
| 52772 | 649 | val edited = fold (fn (name, _) => Symtab.update (name, ())) edits Symtab.empty; | 
| 44544 
da5f0af32c1b
more precise treatment of nodes that are fully required for partially visible ones;
 wenzelm parents: 
44483diff
changeset | 650 | |
| 47628 | 651 | 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 | 652 | nodes |> String_Graph.schedule | 
| 44199 
e38885e3ea60
retrieve imports from document state, with fall-back on theory loader for preloaded theories;
 wenzelm parents: 
44198diff
changeset | 653 | (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 | 654 | (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 | 655 |             {name = "Document.update", group = NONE,
 | 
| 52716 | 656 | 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 | 657 | (fn () => | 
| 
cbe9563c03d1
even more exception traces for Document.update, which goes through additional execution wrappers;
 wenzelm parents: 
58934diff
changeset | 658 |               timeit ("Document.update " ^ name) (fn () =>
 | 
| 
cbe9563c03d1
even more exception traces for Document.update, which goes through additional execution wrappers;
 wenzelm parents: 
58934diff
changeset | 659 | Runtime.exn_trace_system (fn () => | 
| 44482 
c7225307acf2
further clarification of Document.updated, based on last_common and after_entry;
 wenzelm parents: 
44481diff
changeset | 660 | let | 
| 62895 
54c2abe7e9a4
treat ROOT.ML as theory with header "theory ML_Root imports ML_Bootstrap begin";
 wenzelm parents: 
62826diff
changeset | 661 | val ml_root = check_ml_root node; | 
| 59086 
94b2690ad494
node-specific keywords, with session base syntax as default;
 wenzelm parents: 
59085diff
changeset | 662 | val keywords = the_default (Session.get_keywords ()) (get_keywords node); | 
| 59056 
cbe9563c03d1
even more exception traces for Document.update, which goes through additional execution wrappers;
 wenzelm parents: 
58934diff
changeset | 663 | 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 | 664 | val imports_result_changed = exists (#4 o #1 o #2) imports; | 
| 
cbe9563c03d1
even more exception traces for Document.update, which goes through additional execution wrappers;
 wenzelm parents: 
58934diff
changeset | 665 | val node_required = Symtab.defined required name; | 
| 
cbe9563c03d1
even more exception traces for Document.update, which goes through additional execution wrappers;
 wenzelm parents: 
58934diff
changeset | 666 | in | 
| 
cbe9563c03d1
even more exception traces for Document.update, which goes through additional execution wrappers;
 wenzelm parents: 
58934diff
changeset | 667 | if Symtab.defined edited name orelse visible_node node orelse | 
| 
cbe9563c03d1
even more exception traces for Document.update, which goes through additional execution wrappers;
 wenzelm parents: 
58934diff
changeset | 668 | imports_result_changed orelse Symtab.defined required0 name <> node_required | 
| 
cbe9563c03d1
even more exception traces for Document.update, which goes through additional execution wrappers;
 wenzelm parents: 
58934diff
changeset | 669 | then | 
| 
cbe9563c03d1
even more exception traces for Document.update, which goes through additional execution wrappers;
 wenzelm parents: 
58934diff
changeset | 670 | let | 
| 
cbe9563c03d1
even more exception traces for Document.update, which goes through additional execution wrappers;
 wenzelm parents: 
58934diff
changeset | 671 | 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 | 672 | val init = init_theory imports node; | 
| 
cbe9563c03d1
even more exception traces for Document.update, which goes through additional execution wrappers;
 wenzelm parents: 
58934diff
changeset | 673 | val proper_init = | 
| 62895 
54c2abe7e9a4
treat ROOT.ML as theory with header "theory ML_Root imports ML_Bootstrap begin";
 wenzelm parents: 
62826diff
changeset | 674 | is_some ml_root orelse | 
| 
54c2abe7e9a4
treat ROOT.ML as theory with header "theory ML_Root imports ML_Bootstrap begin";
 wenzelm parents: 
62826diff
changeset | 675 | 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 | 676 | 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 | 677 | |
| 59056 
cbe9563c03d1
even more exception traces for Document.update, which goes through additional execution wrappers;
 wenzelm parents: 
58934diff
changeset | 678 | val (print_execs, common, (still_visible, initial)) = | 
| 
cbe9563c03d1
even more exception traces for Document.update, which goes through additional execution wrappers;
 wenzelm parents: 
58934diff
changeset | 679 | if imports_result_changed then (assign_update_empty, NONE, (true, true)) | 
| 
cbe9563c03d1
even more exception traces for Document.update, which goes through additional execution wrappers;
 wenzelm parents: 
58934diff
changeset | 680 | else last_common keywords state node_required node0 node; | 
| 62895 
54c2abe7e9a4
treat ROOT.ML as theory with header "theory ML_Root imports ML_Bootstrap begin";
 wenzelm parents: 
62826diff
changeset | 681 | |
| 
54c2abe7e9a4
treat ROOT.ML as theory with header "theory ML_Root imports ML_Bootstrap begin";
 wenzelm parents: 
62826diff
changeset | 682 | val common_command_exec = | 
| 
54c2abe7e9a4
treat ROOT.ML as theory with header "theory ML_Root imports ML_Bootstrap begin";
 wenzelm parents: 
62826diff
changeset | 683 | (case common of | 
| 
54c2abe7e9a4
treat ROOT.ML as theory with header "theory ML_Root imports ML_Bootstrap begin";
 wenzelm parents: 
62826diff
changeset | 684 | SOME id => (id, the_default Command.no_exec (the_entry node id)) | 
| 
54c2abe7e9a4
treat ROOT.ML as theory with header "theory ML_Root imports ML_Bootstrap begin";
 wenzelm parents: 
62826diff
changeset | 685 | | NONE => (Document_ID.none, Command.init_exec ml_root)); | 
| 44479 
9a04e7502e22
refined document state assignment: observe perspective, more explicit assignment message;
 wenzelm parents: 
44478diff
changeset | 686 | |
| 59056 
cbe9563c03d1
even more exception traces for Document.update, which goes through additional execution wrappers;
 wenzelm parents: 
58934diff
changeset | 687 | val (updated_execs, (command_id', (eval', _)), _) = | 
| 
cbe9563c03d1
even more exception traces for Document.update, which goes through additional execution wrappers;
 wenzelm parents: 
58934diff
changeset | 688 | (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 | 689 | |> (still_visible orelse node_required) ? | 
| 
cbe9563c03d1
even more exception traces for Document.update, which goes through additional execution wrappers;
 wenzelm parents: 
58934diff
changeset | 690 | iterate_entries_after common | 
| 
cbe9563c03d1
even more exception traces for Document.update, which goes through additional execution wrappers;
 wenzelm parents: 
58934diff
changeset | 691 | (fn ((prev, id), _) => fn res => | 
| 
cbe9563c03d1
even more exception traces for Document.update, which goes through additional execution wrappers;
 wenzelm parents: 
58934diff
changeset | 692 | 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 | 693 | 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 | 694 | |
| 59056 
cbe9563c03d1
even more exception traces for Document.update, which goes through additional execution wrappers;
 wenzelm parents: 
58934diff
changeset | 695 | val assigned_execs = | 
| 
cbe9563c03d1
even more exception traces for Document.update, which goes through additional execution wrappers;
 wenzelm parents: 
58934diff
changeset | 696 | (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 | 697 | (fn ((_, command_id0), exec0) => fn res => | 
| 
cbe9563c03d1
even more exception traces for Document.update, which goes through additional execution wrappers;
 wenzelm parents: 
58934diff
changeset | 698 | if is_none exec0 then NONE | 
| 
cbe9563c03d1
even more exception traces for Document.update, which goes through additional execution wrappers;
 wenzelm parents: 
58934diff
changeset | 699 | 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 | 700 | 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 | 701 | |
| 59056 
cbe9563c03d1
even more exception traces for Document.update, which goes through additional execution wrappers;
 wenzelm parents: 
58934diff
changeset | 702 | val last_exec = | 
| 
cbe9563c03d1
even more exception traces for Document.update, which goes through additional execution wrappers;
 wenzelm parents: 
58934diff
changeset | 703 | 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 | 704 | val result = | 
| 
cbe9563c03d1
even more exception traces for Document.update, which goes through additional execution wrappers;
 wenzelm parents: 
58934diff
changeset | 705 | if is_none last_exec orelse is_some (after_entry node last_exec) then NONE | 
| 
cbe9563c03d1
even more exception traces for Document.update, which goes through additional execution wrappers;
 wenzelm parents: 
58934diff
changeset | 706 | else SOME eval'; | 
| 44480 
38c5b085fb1c
improved Document.edit: more accurate update_start and no_execs;
 wenzelm parents: 
44479diff
changeset | 707 | |
| 59056 
cbe9563c03d1
even more exception traces for Document.update, which goes through additional execution wrappers;
 wenzelm parents: 
58934diff
changeset | 708 | val assign_update = assign_update_result assigned_execs; | 
| 
cbe9563c03d1
even more exception traces for Document.update, which goes through additional execution wrappers;
 wenzelm parents: 
58934diff
changeset | 709 | val removed = maps (removed_execs node0) assign_update; | 
| 
cbe9563c03d1
even more exception traces for Document.update, which goes through additional execution wrappers;
 wenzelm parents: 
58934diff
changeset | 710 | val _ = List.app Execution.cancel removed; | 
| 52602 
00170ef1dc39
strictly monotonic Document.update: avoid disruptive cancel_execution, merely discontinue_execution and cancel/terminate old execs individually;
 wenzelm parents: 
52600diff
changeset | 711 | |
| 59056 
cbe9563c03d1
even more exception traces for Document.update, which goes through additional execution wrappers;
 wenzelm parents: 
58934diff
changeset | 712 | val node' = node | 
| 
cbe9563c03d1
even more exception traces for Document.update, which goes through additional execution wrappers;
 wenzelm parents: 
58934diff
changeset | 713 | |> assign_update_apply assigned_execs | 
| 
cbe9563c03d1
even more exception traces for Document.update, which goes through additional execution wrappers;
 wenzelm parents: 
58934diff
changeset | 714 | |> set_result result; | 
| 
cbe9563c03d1
even more exception traces for Document.update, which goes through additional execution wrappers;
 wenzelm parents: 
58934diff
changeset | 715 | val assigned_node = SOME (name, node'); | 
| 
cbe9563c03d1
even more exception traces for Document.update, which goes through additional execution wrappers;
 wenzelm parents: 
58934diff
changeset | 716 | val result_changed = changed_result node0 node'; | 
| 
cbe9563c03d1
even more exception traces for Document.update, which goes through additional execution wrappers;
 wenzelm parents: 
58934diff
changeset | 717 | in ((removed, assign_update, assigned_node, result_changed), node') end | 
| 
cbe9563c03d1
even more exception traces for Document.update, which goes through additional execution wrappers;
 wenzelm parents: 
58934diff
changeset | 718 | else (([], [], NONE, false), node) | 
| 
cbe9563c03d1
even more exception traces for Document.update, which goes through additional execution wrappers;
 wenzelm parents: 
58934diff
changeset | 719 | end)))) | 
| 47628 | 720 | |> Future.joins |> map #1); | 
| 44476 
e8a87398f35d
propagate information about last command with exec state assignment through document model;
 wenzelm parents: 
44446diff
changeset | 721 | |
| 52655 
3b2b1ef13979
more careful termination of removed execs, leaving running execs undisturbed;
 wenzelm parents: 
52607diff
changeset | 722 | val removed = maps #1 updated; | 
| 
3b2b1ef13979
more careful termination of removed execs, leaving running execs undisturbed;
 wenzelm parents: 
52607diff
changeset | 723 | val assign_update = 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 | 724 | 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 | 725 | |
| 44197 
458573968568
refined Document.edit: less stateful update via Graph.schedule;
 wenzelm parents: 
44196diff
changeset | 726 | val state' = state | 
| 52602 
00170ef1dc39
strictly monotonic Document.update: avoid disruptive cancel_execution, merely discontinue_execution and cancel/terminate old execs individually;
 wenzelm parents: 
52600diff
changeset | 727 | |> define_version new_version_id (fold put_node assigned_nodes new_version); | 
| 
00170ef1dc39
strictly monotonic Document.update: avoid disruptive cancel_execution, merely discontinue_execution and cancel/terminate old execs individually;
 wenzelm parents: 
52600diff
changeset | 728 | |
| 59056 
cbe9563c03d1
even more exception traces for Document.update, which goes through additional execution wrappers;
 wenzelm parents: 
58934diff
changeset | 729 | in (removed, assign_update, state') end); | 
| 38418 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 730 | |
| 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 731 | end; | 
| 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 732 | |
| 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 733 | |
| 43713 
1ba5331b4623
moved global state to structure Document (again);
 wenzelm parents: 
43668diff
changeset | 734 | |
| 
1ba5331b4623
moved global state to structure Document (again);
 wenzelm parents: 
43668diff
changeset | 735 | (** global state **) | 
| 
1ba5331b4623
moved global state to structure Document (again);
 wenzelm parents: 
43668diff
changeset | 736 | |
| 52508 | 737 | val global_state = Synchronized.var "Document.global_state" init_state; | 
| 43713 
1ba5331b4623
moved global state to structure Document (again);
 wenzelm parents: 
43668diff
changeset | 738 | |
| 
1ba5331b4623
moved global state to structure Document (again);
 wenzelm parents: 
43668diff
changeset | 739 | fun state () = Synchronized.value global_state; | 
| 
1ba5331b4623
moved global state to structure Document (again);
 wenzelm parents: 
43668diff
changeset | 740 | val change_state = Synchronized.change global_state; | 
| 
1ba5331b4623
moved global state to structure Document (again);
 wenzelm parents: 
43668diff
changeset | 741 | |
| 38418 
9a7af64d71bb
more explicit / functional ML version of document model;
 wenzelm parents: 
38414diff
changeset | 742 | end; |