1 (* Title: Pure/PIDE/document.ML
4 Document as collection of named nodes, each consisting of an editable
5 list of commands, associated with asynchronous execution process.
10 val timing: bool Unsynchronized.ref
11 type node_header = string * Thy_Header.header * string list
12 type overlay = Document_ID.command * (string * string list)
14 Edits of (Document_ID.command option * Document_ID.command option) list |
16 Perspective of bool * Document_ID.command list * overlay list
17 type edit = string * node_edit
20 val define_blob: string -> string -> state -> state
21 type blob_digest = (string * string option) Exn.result
22 val define_command: Document_ID.command -> string -> blob_digest list -> string ->
24 val remove_versions: Document_ID.version list -> state -> state
25 val start_execution: state -> state
26 val update: Document_ID.version -> Document_ID.version -> edit list -> state ->
27 Document_ID.exec list * (Document_ID.command * Document_ID.exec list) list * state
28 val state: unit -> state
29 val change_state: (state -> state) -> unit
32 structure Document: DOCUMENT =
35 val timing = Unsynchronized.ref false;
36 fun timeit msg e = cond_timeit (! timing) msg e;
40 (** document structure **)
42 fun err_dup kind id = error ("Duplicate " ^ kind ^ ": " ^ Document_ID.print id);
43 fun err_undef kind id = error ("Undefined " ^ kind ^ ": " ^ Document_ID.print id);
45 type node_header = string * Thy_Header.header * string list;
48 {required: bool, (*required node*)
49 visible: Inttab.set, (*visible commands*)
50 visible_last: Document_ID.command option, (*last visible command*)
51 overlays: (string * string list) list Inttab.table}; (*command id -> print functions with args*)
53 structure Entries = Linear_Set(type key = Document_ID.command val ord = int_ord);
55 abstype node = Node of
56 {header: node_header, (*master directory, theory header, errors*)
57 perspective: perspective, (*command perspective*)
58 entries: Command.exec option Entries.T, (*command entries with excecutions*)
59 result: Command.eval option} (*result of last execution*)
60 and version = Version of node String_Graph.T (*development graph wrt. static imports*)
63 fun make_node (header, perspective, entries, result) =
64 Node {header = header, perspective = perspective, entries = entries, result = result};
66 fun map_node f (Node {header, perspective, entries, result}) =
67 make_node (f (header, perspective, entries, result));
69 fun make_perspective (required, command_ids, overlays) : perspective =
71 visible = Inttab.make_set command_ids,
72 visible_last = try List.last command_ids,
73 overlays = Inttab.make_list overlays};
75 val no_header: node_header = ("", Thy_Header.make ("", Position.none) [] [], []);
76 val no_perspective = make_perspective (false, [], []);
78 val empty_node = make_node (no_header, no_perspective, Entries.empty, NONE);
80 fun is_no_perspective ({required, visible, visible_last, overlays}: perspective) =
82 Inttab.is_empty visible andalso
83 is_none visible_last andalso
84 Inttab.is_empty overlays;
86 fun is_empty_node (Node {header, perspective, entries, result}) =
87 header = no_header andalso
88 is_no_perspective perspective andalso
89 Entries.is_empty entries andalso
93 (* basic components *)
95 fun master_directory (Node {header = (master, _, _), ...}) =
96 (case try Url.explode master of
97 SOME (Url.File path) => path
100 fun set_header header =
101 map_node (fn (_, perspective, entries, result) => (header, perspective, entries, result));
103 fun get_header (Node {header = (master, header, errors), ...}) =
104 if null errors then (master, header)
105 else error (cat_lines errors);
107 fun read_header node span =
109 val {name = (name, _), imports, keywords} = #2 (get_header node);
110 val {name = (_, pos), imports = imports', ...} = Thy_Header.read_tokens span;
111 in Thy_Header.make (name, pos) (map #1 imports ~~ map #2 imports') keywords end;
113 fun get_perspective (Node {perspective, ...}) = perspective;
114 fun set_perspective args =
115 map_node (fn (header, _, entries, result) => (header, make_perspective args, entries, result));
117 val required_node = #required o get_perspective;
118 val visible_command = Inttab.defined o #visible o get_perspective;
119 val visible_last = #visible_last o get_perspective;
120 val visible_node = is_some o visible_last
121 val overlays = Inttab.lookup_list o #overlays o get_perspective;
124 map_node (fn (header, perspective, entries, result) => (header, perspective, f entries, result));
125 fun get_entries (Node {entries, ...}) = entries;
127 fun iterate_entries f = Entries.iterate NONE f o get_entries;
128 fun iterate_entries_after start f (Node {entries, ...}) =
129 (case Entries.get_after entries start of
131 | SOME id => Entries.iterate (SOME id) f entries);
133 fun get_result (Node {result, ...}) = result;
134 fun set_result result =
135 map_node (fn (header, perspective, entries, _) => (header, perspective, entries, result));
137 fun changed_result node node' =
138 (case (get_result node, get_result node') of
139 (SOME eval, SOME eval') => not (Command.eval_eq (eval, eval'))
140 | (NONE, NONE) => false
143 fun pending_result node =
144 (case get_result node of
145 SOME eval => not (Command.eval_finished eval)
148 fun get_node nodes name = String_Graph.get_node nodes name
149 handle String_Graph.UNDEF _ => empty_node;
150 fun default_node name = String_Graph.default_node (name, empty_node);
151 fun update_node name f = default_node name #> String_Graph.map_node name f;
154 (* node edits and associated executions *)
156 type overlay = Document_ID.command * (string * string list);
159 Edits of (Document_ID.command option * Document_ID.command option) list |
160 Deps of node_header |
161 Perspective of bool * Document_ID.command list * overlay list;
163 type edit = string * node_edit;
165 val after_entry = Entries.get_after o get_entries;
167 fun lookup_entry node id =
168 (case Entries.lookup (get_entries node) id of
170 | SOME (exec, _) => exec);
172 fun the_entry node id =
173 (case Entries.lookup (get_entries node) id of
174 NONE => err_undef "command entry" id
175 | SOME (exec, _) => exec);
177 fun the_default_entry node (SOME id) = (id, the_default Command.no_exec (the_entry node id))
178 | the_default_entry _ NONE = (Document_ID.none, Command.no_exec);
180 fun assign_entry (command_id, exec) node =
181 if is_none (Entries.lookup (get_entries node) command_id) then node
182 else map_entries (Entries.update (command_id, exec)) node;
184 fun reset_after id entries =
185 (case Entries.get_after entries id of
187 | SOME next => Entries.update (next, NONE) entries);
189 val edit_node = map_entries o fold
190 (fn (id, SOME id2) => Entries.insert_after id (id2, NONE)
191 | (id, NONE) => Entries.delete_after id #> reset_after id);
194 (* version operations *)
196 val empty_version = Version String_Graph.empty;
198 fun nodes_of (Version nodes) = nodes;
199 val node_of = get_node o nodes_of;
201 fun cycle_msg names = "Cyclic dependency of " ^ space_implode " via " (map quote names);
203 fun edit_nodes (name, node_edit) (Version nodes) =
206 Edits edits => update_node name (edit_node edits) nodes
207 | Deps (master, header, errors) =>
209 val imports = map fst (#imports header);
211 (Thy_Header.define_keywords header; errors)
212 handle ERROR msg => errors @ [msg];
215 |> fold default_node imports;
217 |> String_Graph.Keys.fold
218 (fn dep => String_Graph.del_edge (dep, name)) (String_Graph.imm_preds nodes1 name);
219 val (nodes3, errors2) =
220 (String_Graph.add_deps_acyclic (name, imports) nodes2, errors1)
221 handle String_Graph.CYCLES cs => (nodes2, errors1 @ map cycle_msg cs);
222 in String_Graph.map_node name (set_header (master, header, errors2)) nodes3 end
223 | Perspective perspective => update_node name (set_perspective perspective) nodes);
225 fun put_node (name, node) (Version nodes) =
227 val nodes1 = update_node name (K node) nodes;
229 if String_Graph.is_maximal nodes1 name andalso is_empty_node node
230 then String_Graph.del_node name nodes1
232 in Version nodes2 end;
238 (** main state -- document structure and execution process **)
240 type blob_digest = (string * string option) Exn.result; (*file node name, raw digest*)
243 {version_id: Document_ID.version, (*static version id*)
244 execution_id: Document_ID.execution, (*dynamic execution id*)
245 delay_request: unit future, (*pending event timer request*)
246 frontier: Future.task Symtab.table}; (*node name -> running execution task*)
248 val no_execution: execution =
249 {version_id = Document_ID.none, execution_id = Document_ID.none,
250 delay_request = Future.value (), frontier = Symtab.empty};
252 fun new_execution version_id delay_request frontier : execution =
253 {version_id = version_id, execution_id = Execution.start (),
254 delay_request = delay_request, frontier = frontier};
256 abstype state = State of
257 {versions: version Inttab.table, (*version id -> document content*)
258 blobs: (SHA1.digest * string list) Symtab.table, (*raw digest -> digest, lines*)
259 commands: (string * blob_digest list * Token.T list lazy) Inttab.table,
260 (*command id -> name, inlined files, command span*)
261 execution: execution} (*current execution process*)
264 fun make_state (versions, blobs, commands, execution) =
265 State {versions = versions, blobs = blobs, commands = commands, execution = execution};
267 fun map_state f (State {versions, blobs, commands, execution}) =
268 make_state (f (versions, blobs, commands, execution));
271 make_state (Inttab.make [(Document_ID.none, empty_version)],
272 Symtab.empty, Inttab.empty, no_execution);
275 (* document versions *)
277 fun define_version version_id version =
278 map_state (fn (versions, blobs, commands, {delay_request, frontier, ...}) =>
280 val versions' = Inttab.update_new (version_id, version) versions
281 handle Inttab.DUP dup => err_dup "document version" dup;
282 val execution' = new_execution version_id delay_request frontier;
283 in (versions', blobs, commands, execution') end);
285 fun the_version (State {versions, ...}) version_id =
286 (case Inttab.lookup versions version_id of
287 NONE => err_undef "document version" version_id
288 | SOME version => version);
290 fun delete_version version_id versions =
291 Inttab.delete version_id versions
292 handle Inttab.UNDEF _ => err_undef "document version" version_id;
297 fun define_blob digest text =
298 map_state (fn (versions, blobs, commands, execution) =>
299 let val blobs' = Symtab.update (digest, (SHA1.fake digest, split_lines text)) blobs
300 in (versions, blobs', commands, execution) end);
302 fun the_blob (State {blobs, ...}) digest =
303 (case Symtab.lookup blobs digest of
304 NONE => error ("Undefined blob: " ^ digest)
305 | SOME content => content);
307 fun resolve_blob state (blob_digest: blob_digest) =
308 blob_digest |> Exn.map_result (fn (file_node, raw_digest) =>
309 (file_node, Option.map (the_blob state) raw_digest));
314 fun define_command command_id name command_blobs text =
315 map_state (fn (versions, blobs, commands, execution) =>
317 val id = Document_ID.print command_id;
320 Position.setmp_thread_data (Position.id_only id)
321 (fn () => Thy_Syntax.parse_tokens (Keyword.get_lexicons ()) (Position.id id) text) ());
323 Position.setmp_thread_data (Position.id_only id)
324 (fn () => Output.status (Markup.markup_only Markup.accepted)) ();
326 Inttab.update_new (command_id, (name, command_blobs, span)) commands
327 handle Inttab.DUP dup => err_dup "command" dup;
328 in (versions, blobs, commands', execution) end);
330 fun the_command (State {commands, ...}) command_id =
331 (case Inttab.lookup commands command_id of
332 NONE => err_undef "command" command_id
333 | SOME command => command);
335 val the_command_name = #1 oo the_command;
340 (* remove_versions *)
342 fun remove_versions version_ids state = state |> map_state (fn (versions, _, _, execution) =>
345 member (op =) version_ids (#version_id execution) andalso
346 error ("Attempt to remove execution version " ^ Document_ID.print (#version_id execution));
348 val versions' = fold delete_version version_ids versions;
350 (versions', Inttab.empty) |->
351 Inttab.fold (fn (_, version) => nodes_of version |>
352 String_Graph.fold (fn (_, (node, _)) => node |>
353 iterate_entries (fn ((_, command_id), _) =>
354 SOME o Inttab.insert (K true) (command_id, the_command state command_id))));
356 (commands', Symtab.empty) |->
357 Inttab.fold (fn (_, (_, blobs, _)) => blobs |>
358 fold (fn Exn.Res (_, SOME b) => Symtab.update (b, the_blob state b) | _ => I));
360 in (versions', blobs', commands', execution) end);
363 (* document execution *)
365 fun start_execution state = state |> map_state (fn (versions, blobs, commands, execution) =>
366 timeit "Document.start_execution" (fn () =>
368 val {version_id, execution_id, delay_request, frontier} = execution;
370 val delay = seconds (Options.default_real "editor_execution_delay");
372 val _ = Future.cancel delay_request;
373 val delay_request' = Event_Timer.future (Time.+ (Time.now (), delay));
376 nodes_of (the_version state version_id) |> String_Graph.schedule
377 (fn deps => fn (name, node) =>
378 if visible_node node orelse pending_result node then
381 Future.task_of delay_request' :: the_list (Symtab.lookup frontier name);
383 iterate_entries (fn (_, opt_exec) => fn () =>
386 if Execution.is_running execution_id
387 then SOME (Command.exec execution_id exec)
389 | NONE => NONE)) node ()
390 handle exn => if Exn.is_interrupt exn then () (*sic!*) else reraise exn;
392 (singleton o Future.forks)
393 {name = "theory:" ^ name, group = SOME (Future.new_group NONE),
394 deps = more_deps @ map #2 (maps #2 deps),
395 pri = 0, interrupts = false} body;
396 in [(name, Future.task_of future)] end
398 val frontier' = (fold o fold) Symtab.update new_tasks frontier;
400 {version_id = version_id, execution_id = execution_id,
401 delay_request = delay_request', frontier = frontier'};
402 in (versions, blobs, commands, execution') end));
406 (** document update **)
408 (* exec state assignment *)
410 type assign_update = Command.exec option Inttab.table; (*command id -> exec*)
412 val assign_update_empty: assign_update = Inttab.empty;
413 fun assign_update_defined (tab: assign_update) command_id = Inttab.defined tab command_id;
414 fun assign_update_apply (tab: assign_update) node = Inttab.fold assign_entry tab node;
416 fun assign_update_new upd (tab: assign_update) =
417 Inttab.update_new upd tab
418 handle Inttab.DUP dup => err_dup "exec state assignment" dup;
420 fun assign_update_result (tab: assign_update) =
421 Inttab.fold (fn (command_id, exec) => cons (command_id, Command.exec_ids exec)) tab [];
428 fun make_required nodes =
431 String_Graph.fold (fn (a, (node, _)) => P node ? cons a) nodes []
432 |> String_Graph.all_preds nodes
435 val all_visible = all_preds visible_node;
436 val all_required = all_preds required_node;
438 Symtab.fold (fn (a, ()) =>
439 exists (Symtab.defined all_visible) (String_Graph.immediate_succs nodes a) ?
440 Symtab.update (a, ())) all_visible all_required
443 fun loaded_theory name =
444 (case try (unsuffix ".thy") name of
445 SOME a => get_first Thy_Info.lookup_theory [a, Long_Name.base_name a]
448 fun init_theory deps node span =
450 val master_dir = master_directory node;
451 val header = read_header node span;
452 val imports = #imports header;
454 imports |> map (fn (import, _) =>
455 (case loaded_theory import of
458 Toplevel.end_theory (Position.file_only import)
459 (case get_result (snd (the (AList.lookup (op =) deps import))) of
460 NONE => Toplevel.toplevel
461 | SOME eval => Command.eval_result_state eval)));
462 val _ = Position.reports (map #2 imports ~~ map Theory.get_markup parents);
463 in Resources.begin_theory master_dir header parents end;
465 fun check_theory full name node =
466 is_some (loaded_theory name) orelse
467 can get_header node andalso (not full orelse is_some (get_result node));
469 fun last_common state node_required node0 node =
471 fun update_flags prev (visible, initial) =
473 val visible' = visible andalso prev <> visible_last node;
474 val initial' = initial andalso
477 | SOME command_id => not (Keyword.is_theory_begin (the_command_name state command_id)));
478 in (visible', initial') end;
480 fun get_common ((prev, command_id), opt_exec) (_, ok, flags, assign_update) =
483 val flags' as (visible', _) = update_flags prev flags;
485 (case (lookup_entry node0 command_id, opt_exec) of
486 (SOME (eval0, _), SOME (eval, _)) =>
487 Command.eval_eq (eval0, eval) andalso
488 (visible' orelse node_required orelse Command.eval_running eval)
490 val assign_update' = assign_update |> ok' ?
492 SOME (eval, prints) =>
494 val command_visible = visible_command node command_id;
495 val command_overlays = overlays node command_id;
496 val command_name = the_command_name state command_id;
498 (case Command.print command_visible command_overlays command_name eval prints of
499 SOME prints' => assign_update_new (command_id, SOME (eval, prints'))
503 in SOME (prev, ok', flags', assign_update') end
505 val (common, ok, flags, assign_update') =
506 iterate_entries get_common node (NONE, true, (true, true), assign_update_empty);
507 val (common', flags') =
509 let val last = Entries.get_after (get_entries node) common
510 in (last, update_flags last flags) end
511 else (common, flags);
512 in (assign_update', common', flags') end;
514 fun illegal_init _ = error "Illegal theory header after end of theory";
516 fun new_exec state node proper_init command_id' (assign_update, command_exec, init) =
517 if not proper_init andalso is_none init then NONE
520 val (_, (eval, _)) = command_exec;
522 val command_visible = visible_command node command_id';
523 val command_overlays = overlays node command_id';
524 val (command_name, blob_digests, span0) = the_command state command_id';
525 val blobs = map (resolve_blob state) blob_digests;
526 val span = Lazy.force span0;
529 Command.eval (fn () => the_default illegal_init init span)
530 (master_directory node) blobs span eval;
531 val prints' = perhaps (Command.print command_visible command_overlays command_name eval') [];
532 val exec' = (eval', prints');
534 val assign_update' = assign_update_new (command_id', SOME exec') assign_update;
535 val init' = if Keyword.is_theory_begin command_name then NONE else init;
536 in SOME (assign_update', (command_id', (eval', prints')), init') end;
538 fun removed_execs node0 (command_id, exec_ids) =
539 subtract (op =) exec_ids (Command.exec_ids (lookup_entry node0 command_id));
543 fun update old_version_id new_version_id edits state =
545 val old_version = the_version state old_version_id;
546 val new_version = timeit "Document.edit_nodes" (fn () => fold edit_nodes edits old_version);
548 val nodes = nodes_of new_version;
549 val required = make_required nodes;
550 val required0 = make_required (nodes_of old_version);
551 val edited = fold (fn (name, _) => Symtab.update (name, ())) edits Symtab.empty;
553 val updated = timeit "Document.update" (fn () =>
554 nodes |> String_Graph.schedule
555 (fn deps => fn (name, node) =>
556 (singleton o Future.forks)
557 {name = "Document.update", group = NONE,
558 deps = map (Future.task_of o #2) deps, pri = 1, interrupts = false}
559 (fn () => timeit ("Document.update " ^ name) (fn () =>
561 val imports = map (apsnd Future.join) deps;
562 val imports_result_changed = exists (#4 o #1 o #2) imports;
563 val node_required = Symtab.defined required name;
565 if Symtab.defined edited name orelse visible_node node orelse
566 imports_result_changed orelse Symtab.defined required0 name <> node_required
569 val node0 = node_of old_version name;
570 val init = init_theory imports node;
572 check_theory false name node andalso
573 forall (fn (name, (_, node)) => check_theory true name node) imports;
575 val (print_execs, common, (still_visible, initial)) =
576 if imports_result_changed then (assign_update_empty, NONE, (true, true))
577 else last_common state node_required node0 node;
578 val common_command_exec = the_default_entry node common;
580 val (updated_execs, (command_id', (eval', _)), _) =
581 (print_execs, common_command_exec, if initial then SOME init else NONE)
582 |> (still_visible orelse node_required) ?
583 iterate_entries_after common
584 (fn ((prev, id), _) => fn res =>
585 if not node_required andalso prev = visible_last node then NONE
586 else new_exec state node proper_init id res) node;
589 (node0, updated_execs) |-> iterate_entries_after common
590 (fn ((_, command_id0), exec0) => fn res =>
591 if is_none exec0 then NONE
592 else if assign_update_defined updated_execs command_id0 then SOME res
593 else SOME (assign_update_new (command_id0, NONE) res));
596 if command_id' = Document_ID.none then NONE else SOME command_id';
598 if is_none last_exec orelse is_some (after_entry node last_exec) then NONE
601 val assign_update = assign_update_result assigned_execs;
602 val removed = maps (removed_execs node0) assign_update;
603 val _ = List.app Execution.cancel removed;
606 |> assign_update_apply assigned_execs
607 |> set_result result;
608 val assigned_node = SOME (name, node');
609 val result_changed = changed_result node0 node';
610 in ((removed, assign_update, assigned_node, result_changed), node') end
611 else (([], [], NONE, false), node)
613 |> Future.joins |> map #1);
615 val removed = maps #1 updated;
616 val assign_update = maps #2 updated;
617 val assigned_nodes = map_filter #3 updated;
620 |> define_version new_version_id (fold put_node assigned_nodes new_version);
622 in (removed, assign_update, state') end;
630 val global_state = Synchronized.var "Document.global_state" init_state;
632 fun state () = Synchronized.value global_state;
633 val change_state = Synchronized.change global_state;