| author | wenzelm | 
| Sat, 17 Aug 2019 19:04:03 +0200 | |
| changeset 70570 | d94456876f2d | 
| parent 70284 | 3e17c3a5fd39 | 
| child 70625 | 1ae987cc052f | 
| permissions | -rw-r--r-- | 
| 56210 | 1 | /* Title: Pure/PIDE/session.scala | 
| 36676 | 2 | Author: Makarius | 
| 57923 | 3 | Options: :folding=explicit: | 
| 36676 | 4 | |
| 56210 | 5 | PIDE editor session, potentially with running prover process. | 
| 36676 | 6 | */ | 
| 34777 
91d6089cef88
class Session models full session, with or without prover process (cf. heaps, browser_info);
 wenzelm parents: diff
changeset | 7 | |
| 34871 
e596a0b71f3c
incorporate "proofdocument" part into main Isabelle/Pure.jar -- except for html_panel.scala, which depends on external library (Lobo/Cobra browser);
 wenzelm parents: 
34859diff
changeset | 8 | package isabelle | 
| 34777 
91d6089cef88
class Session models full session, with or without prover process (cf. heaps, browser_info);
 wenzelm parents: diff
changeset | 9 | |
| 44733 
329320fc88df
buffer prover messages to prevent overloading of session_actor input channel -- which is critical due to synchronous messages wrt. GUI thread;
 wenzelm parents: 
44732diff
changeset | 10 | |
| 46771 
06a9b24c4a36
explicit syslog_limit reduces danger of low-level message flooding;
 wenzelm parents: 
46739diff
changeset | 11 | import scala.collection.immutable.Queue | 
| 69640 
af09cc4792dc
more robust: no assumptions about GUI thread or document model;
 wenzelm parents: 
69492diff
changeset | 12 | import scala.annotation.tailrec | 
| 34777 
91d6089cef88
class Session models full session, with or without prover process (cf. heaps, browser_info);
 wenzelm parents: diff
changeset | 13 | |
| 34815 
6bae73cd8e33
unified Command and Command_State, eliminated separate Accumulator;
 wenzelm parents: 
34813diff
changeset | 14 | |
| 34791 | 15 | object Session | 
| 16 | {
 | |
| 56715 
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
 wenzelm parents: 
56713diff
changeset | 17 | /* outlets */ | 
| 
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
 wenzelm parents: 
56713diff
changeset | 18 | |
| 
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
 wenzelm parents: 
56713diff
changeset | 19 | object Consumer | 
| 
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
 wenzelm parents: 
56713diff
changeset | 20 |   {
 | 
| 
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
 wenzelm parents: 
56713diff
changeset | 21 | def apply[A](name: String)(consume: A => Unit): Consumer[A] = | 
| 
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
 wenzelm parents: 
56713diff
changeset | 22 | new Consumer[A](name, consume) | 
| 
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
 wenzelm parents: 
56713diff
changeset | 23 | } | 
| 
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
 wenzelm parents: 
56713diff
changeset | 24 | final class Consumer[-A] private(val name: String, val consume: A => Unit) | 
| 
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
 wenzelm parents: 
56713diff
changeset | 25 | |
| 
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
 wenzelm parents: 
56713diff
changeset | 26 | class Outlet[A](dispatcher: Consumer_Thread[() => Unit]) | 
| 
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
 wenzelm parents: 
56713diff
changeset | 27 |   {
 | 
| 61590 | 28 | private val consumers = Synchronized[List[Consumer[A]]](Nil) | 
| 56715 
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
 wenzelm parents: 
56713diff
changeset | 29 | |
| 
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
 wenzelm parents: 
56713diff
changeset | 30 |     def += (c: Consumer[A]) { consumers.change(Library.update(c)) }
 | 
| 
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
 wenzelm parents: 
56713diff
changeset | 31 |     def -= (c: Consumer[A]) { consumers.change(Library.remove(c)) }
 | 
| 
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
 wenzelm parents: 
56713diff
changeset | 32 | |
| 
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
 wenzelm parents: 
56713diff
changeset | 33 | def post(a: A) | 
| 
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
 wenzelm parents: 
56713diff
changeset | 34 |     {
 | 
| 
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
 wenzelm parents: 
56713diff
changeset | 35 |       for (c <- consumers.value.iterator) {
 | 
| 
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
 wenzelm parents: 
56713diff
changeset | 36 | dispatcher.send(() => | 
| 
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
 wenzelm parents: 
56713diff
changeset | 37 |           try { c.consume(a) }
 | 
| 
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
 wenzelm parents: 
56713diff
changeset | 38 |           catch {
 | 
| 
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
 wenzelm parents: 
56713diff
changeset | 39 | case exn: Throwable => | 
| 56782 
433cf57550fa
more systematic Isabelle output, like in classic Isabelle/ML (without markup);
 wenzelm parents: 
56775diff
changeset | 40 |               Output.error_message("Consumer failed: " + quote(c.name) + "\n" + Exn.message(exn))
 | 
| 56715 
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
 wenzelm parents: 
56713diff
changeset | 41 | }) | 
| 
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
 wenzelm parents: 
56713diff
changeset | 42 | } | 
| 
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
 wenzelm parents: 
56713diff
changeset | 43 | } | 
| 
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
 wenzelm parents: 
56713diff
changeset | 44 | } | 
| 
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
 wenzelm parents: 
56713diff
changeset | 45 | |
| 
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
 wenzelm parents: 
56713diff
changeset | 46 | |
| 56315 | 47 | /* change */ | 
| 48 | ||
| 49 | sealed case class Change( | |
| 50 | previous: Document.Version, | |
| 59077 
7e0d3da6e6d8
node-specific syntax, with base_syntax as default;
 wenzelm parents: 
58928diff
changeset | 51 | syntax_changed: List[Document.Node.Name], | 
| 56316 
b1cf8ddc2e04
propagate deps_changed, to resolve missing files without requiring jEdit events (e.g. buffer load/save);
 wenzelm parents: 
56315diff
changeset | 52 | deps_changed: Boolean, | 
| 56315 | 53 | doc_edits: List[Document.Edit_Command], | 
| 68381 
2fd3a6d6ba2e
less wasteful consolidation, based on PIDE front-end state and recent changes;
 wenzelm parents: 
68336diff
changeset | 54 | consolidate: List[Document.Node.Name], | 
| 56315 | 55 | version: Document.Version) | 
| 56 | ||
| 57976 
bf99106b6672
postpone changes in intermediate state between remove_versions/removed_versions, which is important for handle_change to refer to defined items on prover side;
 wenzelm parents: 
57867diff
changeset | 57 | case object Change_Flush | 
| 
bf99106b6672
postpone changes in intermediate state between remove_versions/removed_versions, which is important for handle_change to refer to defined items on prover side;
 wenzelm parents: 
57867diff
changeset | 58 | |
| 56315 | 59 | |
| 34813 
f0107bc96961
more explicit modeling of Command and Command_State as Session.Entity;
 wenzelm parents: 
34810diff
changeset | 60 | /* events */ | 
| 
f0107bc96961
more explicit modeling of Command and Command_State as Session.Entity;
 wenzelm parents: 
34810diff
changeset | 61 | |
| 43716 | 62 |   //{{{
 | 
| 50697 
82e9178e6a98
improved Monitor_Dockable, based on ML_Statistics operations;
 wenzelm parents: 
50566diff
changeset | 63 | case class Statistics(props: Properties.T) | 
| 50117 | 64 | case class Global_Options(options: Options) | 
| 44805 | 65 | case object Caret_Focus | 
| 54521 
744ea0025e11
clarified Document.Blobs environment vs. actual edits of auxiliary files;
 wenzelm parents: 
54519diff
changeset | 66 | case class Raw_Edits(doc_blobs: Document.Blobs, edits: List[Document.Edit_Text]) | 
| 52531 | 67 | case class Dialog_Result(id: Document_ID.Generic, serial: Long, result: String) | 
| 59364 | 68 | case class Build_Theories(id: String, master_dir: Path, theories: List[(Options, List[Path])]) | 
| 47027 
fc3bb6c02a3c
explicit propagation of assignment event, even if changed command set is empty;
 wenzelm parents: 
46944diff
changeset | 69 | case class Commands_Changed( | 
| 
fc3bb6c02a3c
explicit propagation of assignment event, even if changed command set is empty;
 wenzelm parents: 
46944diff
changeset | 70 | assignment: Boolean, nodes: Set[Document.Node.Name], commands: Set[Command]) | 
| 39630 
44181423183a
explicit Session.Phase indication with associated event bus;
 wenzelm parents: 
39629diff
changeset | 71 | |
| 
44181423183a
explicit Session.Phase indication with associated event bus;
 wenzelm parents: 
39629diff
changeset | 72 | sealed abstract class Phase | 
| 65206 | 73 |   {
 | 
| 74 | def print: String = | |
| 75 |       this match {
 | |
| 65317 | 76 | case Terminated(result) => if (result.ok) "finished" else "failed" | 
| 65206 | 77 | case _ => Word.lowercase(this.toString) | 
| 78 | } | |
| 79 | } | |
| 65208 
91c528cd376a
more robust Session.stop: idempotent, avoid conflict with startup;
 wenzelm parents: 
65207diff
changeset | 80 | case object Inactive extends Phase // stable | 
| 39701 | 81 | case object Startup extends Phase // transient | 
| 65208 
91c528cd376a
more robust Session.stop: idempotent, avoid conflict with startup;
 wenzelm parents: 
65207diff
changeset | 82 | case object Ready extends Phase // metastable | 
| 39701 | 83 | case object Shutdown extends Phase // transient | 
| 65317 | 84 | case class Terminated(result: Process_Result) extends Phase // stable | 
| 43716 | 85 | //}}} | 
| 52111 
1fd184eaa310
explicit management of Session.Protocol_Handlers, with protocol state and functions;
 wenzelm parents: 
52084diff
changeset | 86 | |
| 
1fd184eaa310
explicit management of Session.Protocol_Handlers, with protocol state and functions;
 wenzelm parents: 
52084diff
changeset | 87 | |
| 56775 
59f70b89e5fd
improved syslog performance -- avoid denial-of-service e.g. with threads_trace = 5 and active Syslog dockable;
 wenzelm parents: 
56772diff
changeset | 88 | /* syslog */ | 
| 
59f70b89e5fd
improved syslog performance -- avoid denial-of-service e.g. with threads_trace = 5 and active Syslog dockable;
 wenzelm parents: 
56772diff
changeset | 89 | |
| 
59f70b89e5fd
improved syslog performance -- avoid denial-of-service e.g. with threads_trace = 5 and active Syslog dockable;
 wenzelm parents: 
56772diff
changeset | 90 | private[Session] class Syslog(limit: Int) | 
| 
59f70b89e5fd
improved syslog performance -- avoid denial-of-service e.g. with threads_trace = 5 and active Syslog dockable;
 wenzelm parents: 
56772diff
changeset | 91 |   {
 | 
| 
59f70b89e5fd
improved syslog performance -- avoid denial-of-service e.g. with threads_trace = 5 and active Syslog dockable;
 wenzelm parents: 
56772diff
changeset | 92 | private var queue = Queue.empty[XML.Elem] | 
| 
59f70b89e5fd
improved syslog performance -- avoid denial-of-service e.g. with threads_trace = 5 and active Syslog dockable;
 wenzelm parents: 
56772diff
changeset | 93 | private var length = 0 | 
| 
59f70b89e5fd
improved syslog performance -- avoid denial-of-service e.g. with threads_trace = 5 and active Syslog dockable;
 wenzelm parents: 
56772diff
changeset | 94 | |
| 
59f70b89e5fd
improved syslog performance -- avoid denial-of-service e.g. with threads_trace = 5 and active Syslog dockable;
 wenzelm parents: 
56772diff
changeset | 95 |     def += (msg: XML.Elem): Unit = synchronized {
 | 
| 
59f70b89e5fd
improved syslog performance -- avoid denial-of-service e.g. with threads_trace = 5 and active Syslog dockable;
 wenzelm parents: 
56772diff
changeset | 96 | queue = queue.enqueue(msg) | 
| 
59f70b89e5fd
improved syslog performance -- avoid denial-of-service e.g. with threads_trace = 5 and active Syslog dockable;
 wenzelm parents: 
56772diff
changeset | 97 | length += 1 | 
| 
59f70b89e5fd
improved syslog performance -- avoid denial-of-service e.g. with threads_trace = 5 and active Syslog dockable;
 wenzelm parents: 
56772diff
changeset | 98 | if (length > limit) queue = queue.dequeue._2 | 
| 
59f70b89e5fd
improved syslog performance -- avoid denial-of-service e.g. with threads_trace = 5 and active Syslog dockable;
 wenzelm parents: 
56772diff
changeset | 99 | } | 
| 
59f70b89e5fd
improved syslog performance -- avoid denial-of-service e.g. with threads_trace = 5 and active Syslog dockable;
 wenzelm parents: 
56772diff
changeset | 100 | |
| 
59f70b89e5fd
improved syslog performance -- avoid denial-of-service e.g. with threads_trace = 5 and active Syslog dockable;
 wenzelm parents: 
56772diff
changeset | 101 |     def content: String = synchronized {
 | 
| 
59f70b89e5fd
improved syslog performance -- avoid denial-of-service e.g. with threads_trace = 5 and active Syslog dockable;
 wenzelm parents: 
56772diff
changeset | 102 | cat_lines(queue.iterator.map(XML.content)) + | 
| 
59f70b89e5fd
improved syslog performance -- avoid denial-of-service e.g. with threads_trace = 5 and active Syslog dockable;
 wenzelm parents: 
56772diff
changeset | 103 | (if (length > limit) "\n(A total of " + length + " messages...)" else "") | 
| 
59f70b89e5fd
improved syslog performance -- avoid denial-of-service e.g. with threads_trace = 5 and active Syslog dockable;
 wenzelm parents: 
56772diff
changeset | 104 | } | 
| 
59f70b89e5fd
improved syslog performance -- avoid denial-of-service e.g. with threads_trace = 5 and active Syslog dockable;
 wenzelm parents: 
56772diff
changeset | 105 | } | 
| 
59f70b89e5fd
improved syslog performance -- avoid denial-of-service e.g. with threads_trace = 5 and active Syslog dockable;
 wenzelm parents: 
56772diff
changeset | 106 | |
| 
59f70b89e5fd
improved syslog performance -- avoid denial-of-service e.g. with threads_trace = 5 and active Syslog dockable;
 wenzelm parents: 
56772diff
changeset | 107 | |
| 52111 
1fd184eaa310
explicit management of Session.Protocol_Handlers, with protocol state and functions;
 wenzelm parents: 
52084diff
changeset | 108 | /* protocol handlers */ | 
| 
1fd184eaa310
explicit management of Session.Protocol_Handlers, with protocol state and functions;
 wenzelm parents: 
52084diff
changeset | 109 | |
| 
1fd184eaa310
explicit management of Session.Protocol_Handlers, with protocol state and functions;
 wenzelm parents: 
52084diff
changeset | 110 | abstract class Protocol_Handler | 
| 
1fd184eaa310
explicit management of Session.Protocol_Handlers, with protocol state and functions;
 wenzelm parents: 
52084diff
changeset | 111 |   {
 | 
| 65219 | 112 |     def init(session: Session): Unit = {}
 | 
| 113 |     def exit(): Unit = {}
 | |
| 114 | val functions: List[(String, Prover.Protocol_Output => Boolean)] | |
| 52111 
1fd184eaa310
explicit management of Session.Protocol_Handlers, with protocol state and functions;
 wenzelm parents: 
52084diff
changeset | 115 | } | 
| 34791 | 116 | } | 
| 117 | ||
| 34777 
91d6089cef88
class Session models full session, with or without prover process (cf. heaps, browser_info);
 wenzelm parents: diff
changeset | 118 | |
| 69492 | 119 | class Session(_session_options: => Options, val resources: Resources) extends Document.Session | 
| 34777 
91d6089cef88
class Session models full session, with or without prover process (cf. heaps, browser_info);
 wenzelm parents: diff
changeset | 120 | {
 | 
| 65214 | 121 | session => | 
| 122 | ||
| 68169 | 123 | val xml_cache: XML.Cache = XML.make_cache() | 
| 68168 | 124 | val xz_cache: XZ.Cache = XZ.make_cache() | 
| 65218 | 125 | |
| 65214 | 126 | |
| 47653 | 127 | /* global flags */ | 
| 128 | ||
| 129 | @volatile var timing: Boolean = false | |
| 130 | @volatile var verbose: Boolean = false | |
| 131 | ||
| 132 | ||
| 65264 
7e6ecd04b5fe
dynamic session_options for tuning parameters and initial prover options;
 wenzelm parents: 
65223diff
changeset | 133 | /* dynamic session options */ | 
| 49288 | 134 | |
| 69492 | 135 | def session_options: Options = _session_options | 
| 136 | ||
| 65264 
7e6ecd04b5fe
dynamic session_options for tuning parameters and initial prover options;
 wenzelm parents: 
65223diff
changeset | 137 |   def output_delay: Time = session_options.seconds("editor_output_delay")
 | 
| 66379 
6392766f3c25
maintain "consolidated" status of theory nodes, which means all evals are finished (but not necessarily prints nor imports);
 wenzelm parents: 
66094diff
changeset | 138 |   def consolidate_delay: Time = session_options.seconds("editor_consolidate_delay")
 | 
| 65264 
7e6ecd04b5fe
dynamic session_options for tuning parameters and initial prover options;
 wenzelm parents: 
65223diff
changeset | 139 |   def prune_delay: Time = session_options.seconds("editor_prune_delay")
 | 
| 
7e6ecd04b5fe
dynamic session_options for tuning parameters and initial prover options;
 wenzelm parents: 
65223diff
changeset | 140 |   def prune_size: Int = session_options.int("editor_prune_size")
 | 
| 
7e6ecd04b5fe
dynamic session_options for tuning parameters and initial prover options;
 wenzelm parents: 
65223diff
changeset | 141 |   def syslog_limit: Int = session_options.int("editor_syslog_limit")
 | 
| 
7e6ecd04b5fe
dynamic session_options for tuning parameters and initial prover options;
 wenzelm parents: 
65223diff
changeset | 142 |   def reparse_limit: Int = session_options.int("editor_reparse_limit")
 | 
| 37849 | 143 | |
| 144 | ||
| 66094 | 145 | /* dispatcher */ | 
| 56715 
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
 wenzelm parents: 
56713diff
changeset | 146 | |
| 
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
 wenzelm parents: 
56713diff
changeset | 147 | private val dispatcher = | 
| 
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
 wenzelm parents: 
56713diff
changeset | 148 |     Consumer_Thread.fork[() => Unit]("Session.dispatcher", daemon = true) { case e => e(); true }
 | 
| 34809 | 149 | |
| 66094 | 150 | def assert_dispatcher[A](body: => A): A = | 
| 151 |   {
 | |
| 152 | assert(dispatcher.check_thread) | |
| 153 | body | |
| 154 | } | |
| 155 | ||
| 156 | def require_dispatcher[A](body: => A): A = | |
| 157 |   {
 | |
| 158 | require(dispatcher.check_thread) | |
| 159 | body | |
| 160 | } | |
| 161 | ||
| 162 | def send_dispatcher(body: => Unit): Unit = | |
| 163 |   {
 | |
| 164 | if (dispatcher.check_thread) body | |
| 165 | else dispatcher.send(() => body) | |
| 166 | } | |
| 167 | ||
| 168 | def send_wait_dispatcher(body: => Unit): Unit = | |
| 169 |   {
 | |
| 170 | if (dispatcher.check_thread) body | |
| 171 | else dispatcher.send_wait(() => body) | |
| 172 | } | |
| 173 | ||
| 174 | ||
| 175 | /* outlets */ | |
| 176 | ||
| 56715 
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
 wenzelm parents: 
56713diff
changeset | 177 | val statistics = new Session.Outlet[Session.Statistics](dispatcher) | 
| 
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
 wenzelm parents: 
56713diff
changeset | 178 | val global_options = new Session.Outlet[Session.Global_Options](dispatcher) | 
| 
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
 wenzelm parents: 
56713diff
changeset | 179 | val caret_focus = new Session.Outlet[Session.Caret_Focus.type](dispatcher) | 
| 
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
 wenzelm parents: 
56713diff
changeset | 180 | val raw_edits = new Session.Outlet[Session.Raw_Edits](dispatcher) | 
| 
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
 wenzelm parents: 
56713diff
changeset | 181 | val commands_changed = new Session.Outlet[Session.Commands_Changed](dispatcher) | 
| 
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
 wenzelm parents: 
56713diff
changeset | 182 | val phase_changed = new Session.Outlet[Session.Phase](dispatcher) | 
| 
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
 wenzelm parents: 
56713diff
changeset | 183 | val syslog_messages = new Session.Outlet[Prover.Output](dispatcher) | 
| 
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
 wenzelm parents: 
56713diff
changeset | 184 | val raw_output_messages = new Session.Outlet[Prover.Output](dispatcher) | 
| 
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
 wenzelm parents: 
56713diff
changeset | 185 | val trace_events = new Session.Outlet[Simplifier_Trace.Event.type](dispatcher) | 
| 60900 | 186 | val debugger_updates = new Session.Outlet[Debugger.Update.type](dispatcher) | 
| 34809 | 187 | |
| 60749 | 188 | val all_messages = new Session.Outlet[Prover.Message](dispatcher) // potential bottle-neck! | 
| 34809 | 189 | |
| 56706 
f2f53f7046f4
converted main session manager to Consumer_Thread: messages need to be consumed immediately, postponed_changes replaces implicit actor mailbox scanning;
 wenzelm parents: 
56705diff
changeset | 190 | |
| 56799 | 191 | /** main protocol manager **/ | 
| 45635 
d9cf3520083c
explicit change_parser thread, which avoids undirected Future.fork with its tendency towards hundreds of worker threads;
 wenzelm parents: 
45633diff
changeset | 192 | |
| 56799 | 193 | /* internal messages */ | 
| 45635 
d9cf3520083c
explicit change_parser thread, which avoids undirected Future.fork with its tendency towards hundreds of worker threads;
 wenzelm parents: 
45633diff
changeset | 194 | |
| 62556 
c115e69f457f
more abstract Session.start, without prover command-line;
 wenzelm parents: 
62545diff
changeset | 195 | private case class Start(start_prover: Prover.Receiver => Prover) | 
| 56799 | 196 | private case object Stop | 
| 197 | private case class Cancel_Exec(exec_id: Document_ID.Exec) | |
| 198 | private case class Protocol_Command(name: String, args: List[String]) | |
| 199 | private case class Update_Options(options: Options) | |
| 66379 
6392766f3c25
maintain "consolidated" status of theory nodes, which means all evals are finished (but not necessarily prints nor imports);
 wenzelm parents: 
66094diff
changeset | 200 | private case object Consolidate_Execution | 
| 56799 | 201 | private case object Prune_History | 
| 45635 
d9cf3520083c
explicit change_parser thread, which avoids undirected Future.fork with its tendency towards hundreds of worker threads;
 wenzelm parents: 
45633diff
changeset | 202 | |
| 38841 
4df7b76249a0
include Document.History in Document.State -- just one universal session state maintained by main actor;
 wenzelm parents: 
38722diff
changeset | 203 | |
| 65208 
91c528cd376a
more robust Session.stop: idempotent, avoid conflict with startup;
 wenzelm parents: 
65207diff
changeset | 204 | /* phase */ | 
| 
91c528cd376a
more robust Session.stop: idempotent, avoid conflict with startup;
 wenzelm parents: 
65207diff
changeset | 205 | |
| 
91c528cd376a
more robust Session.stop: idempotent, avoid conflict with startup;
 wenzelm parents: 
65207diff
changeset | 206 | private def post_phase(new_phase: Session.Phase): Session.Phase = | 
| 
91c528cd376a
more robust Session.stop: idempotent, avoid conflict with startup;
 wenzelm parents: 
65207diff
changeset | 207 |   {
 | 
| 
91c528cd376a
more robust Session.stop: idempotent, avoid conflict with startup;
 wenzelm parents: 
65207diff
changeset | 208 | phase_changed.post(new_phase) | 
| 
91c528cd376a
more robust Session.stop: idempotent, avoid conflict with startup;
 wenzelm parents: 
65207diff
changeset | 209 | new_phase | 
| 
91c528cd376a
more robust Session.stop: idempotent, avoid conflict with startup;
 wenzelm parents: 
65207diff
changeset | 210 | } | 
| 
91c528cd376a
more robust Session.stop: idempotent, avoid conflict with startup;
 wenzelm parents: 
65207diff
changeset | 211 | private val _phase = Synchronized[Session.Phase](Session.Inactive) | 
| 
91c528cd376a
more robust Session.stop: idempotent, avoid conflict with startup;
 wenzelm parents: 
65207diff
changeset | 212 | private def phase_=(new_phase: Session.Phase): Unit = _phase.change(_ => post_phase(new_phase)) | 
| 
91c528cd376a
more robust Session.stop: idempotent, avoid conflict with startup;
 wenzelm parents: 
65207diff
changeset | 213 | |
| 
91c528cd376a
more robust Session.stop: idempotent, avoid conflict with startup;
 wenzelm parents: 
65207diff
changeset | 214 | def phase = _phase.value | 
| 
91c528cd376a
more robust Session.stop: idempotent, avoid conflict with startup;
 wenzelm parents: 
65207diff
changeset | 215 | def is_ready: Boolean = phase == Session.Ready | 
| 
91c528cd376a
more robust Session.stop: idempotent, avoid conflict with startup;
 wenzelm parents: 
65207diff
changeset | 216 | |
| 
91c528cd376a
more robust Session.stop: idempotent, avoid conflict with startup;
 wenzelm parents: 
65207diff
changeset | 217 | |
| 43651 
511df47bcadc
some support for theory files within Isabelle/Scala session;
 wenzelm parents: 
43649diff
changeset | 218 | /* global state */ | 
| 43644 | 219 | |
| 56775 
59f70b89e5fd
improved syslog performance -- avoid denial-of-service e.g. with threads_trace = 5 and active Syslog dockable;
 wenzelm parents: 
56772diff
changeset | 220 | private val syslog = new Session.Syslog(syslog_limit) | 
| 
59f70b89e5fd
improved syslog performance -- avoid denial-of-service e.g. with threads_trace = 5 and active Syslog dockable;
 wenzelm parents: 
56772diff
changeset | 221 | def syslog_content(): String = syslog.content | 
| 39626 
a5d0bcfb95a3
manage persistent syslog via Session, not Isabelle_Process;
 wenzelm parents: 
39625diff
changeset | 222 | |
| 56690 | 223 | private val global_state = Synchronized(Document.State.init) | 
| 56687 | 224 | def current_state(): Document.State = global_state.value | 
| 46944 
9fc22eb6408c
more recent recent_syntax, e.g. relevant for document rendering during startup;
 wenzelm parents: 
46942diff
changeset | 225 | |
| 63584 
68751fe1c036
tuned signature -- prover-independence is presently theoretical;
 wenzelm parents: 
62556diff
changeset | 226 | def recent_syntax(name: Document.Node.Name): Outer_Syntax = | 
| 60934 | 227 | global_state.value.recent_finished.version.get_finished.nodes(name).syntax getOrElse | 
| 66720 | 228 | resources.session_base.overall_syntax | 
| 34816 
d33312514220
maintain generic session entities -- cover commands, states, etc. (but not yet documents);
 wenzelm parents: 
34815diff
changeset | 229 | |
| 43651 
511df47bcadc
some support for theory files within Isabelle/Scala session;
 wenzelm parents: 
43649diff
changeset | 230 | |
| 56799 | 231 | /* pipelined change parsing */ | 
| 232 | ||
| 233 | private case class Text_Edits( | |
| 234 | previous: Future[Document.Version], | |
| 235 | doc_blobs: Document.Blobs, | |
| 236 | text_edits: List[Document.Edit_Text], | |
| 68381 
2fd3a6d6ba2e
less wasteful consolidation, based on PIDE front-end state and recent changes;
 wenzelm parents: 
68336diff
changeset | 237 | consolidate: List[Document.Node.Name], | 
| 56799 | 238 | version_result: Promise[Document.Version]) | 
| 43651 
511df47bcadc
some support for theory files within Isabelle/Scala session;
 wenzelm parents: 
43649diff
changeset | 239 | |
| 56799 | 240 |   private val change_parser = Consumer_Thread.fork[Text_Edits]("change_parser", daemon = true)
 | 
| 241 |   {
 | |
| 68336 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68293diff
changeset | 242 | case Text_Edits(previous, doc_blobs, text_edits, consolidate, version_result) => | 
| 56799 | 243 | val prev = previous.get_finished | 
| 244 | val change = | |
| 245 |         Timing.timeit("parse_change", timing) {
 | |
| 68336 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68293diff
changeset | 246 | resources.parse_change(reparse_limit, prev, doc_blobs, text_edits, consolidate) | 
| 56799 | 247 | } | 
| 248 | version_result.fulfill(change.version) | |
| 249 | manager.send(change) | |
| 250 | true | |
| 251 | } | |
| 41534 | 252 | |
| 56706 
f2f53f7046f4
converted main session manager to Consumer_Thread: messages need to be consumed immediately, postponed_changes replaces implicit actor mailbox scanning;
 wenzelm parents: 
56705diff
changeset | 253 | |
| 56719 
80eb2192516a
simplified change_buffer (again, see 937826d702d5): no thread, just timer, rely on asynchronous commands_changed.post;
 wenzelm parents: 
56715diff
changeset | 254 | /* buffered changes */ | 
| 
80eb2192516a
simplified change_buffer (again, see 937826d702d5): no thread, just timer, rely on asynchronous commands_changed.post;
 wenzelm parents: 
56715diff
changeset | 255 | |
| 
80eb2192516a
simplified change_buffer (again, see 937826d702d5): no thread, just timer, rely on asynchronous commands_changed.post;
 wenzelm parents: 
56715diff
changeset | 256 | private object change_buffer | 
| 
80eb2192516a
simplified change_buffer (again, see 937826d702d5): no thread, just timer, rely on asynchronous commands_changed.post;
 wenzelm parents: 
56715diff
changeset | 257 |   {
 | 
| 
80eb2192516a
simplified change_buffer (again, see 937826d702d5): no thread, just timer, rely on asynchronous commands_changed.post;
 wenzelm parents: 
56715diff
changeset | 258 | private var assignment: Boolean = false | 
| 
80eb2192516a
simplified change_buffer (again, see 937826d702d5): no thread, just timer, rely on asynchronous commands_changed.post;
 wenzelm parents: 
56715diff
changeset | 259 | private var nodes: Set[Document.Node.Name] = Set.empty | 
| 
80eb2192516a
simplified change_buffer (again, see 937826d702d5): no thread, just timer, rely on asynchronous commands_changed.post;
 wenzelm parents: 
56715diff
changeset | 260 | private var commands: Set[Command] = Set.empty | 
| 
80eb2192516a
simplified change_buffer (again, see 937826d702d5): no thread, just timer, rely on asynchronous commands_changed.post;
 wenzelm parents: 
56715diff
changeset | 261 | |
| 
80eb2192516a
simplified change_buffer (again, see 937826d702d5): no thread, just timer, rely on asynchronous commands_changed.post;
 wenzelm parents: 
56715diff
changeset | 262 |     def flush(): Unit = synchronized {
 | 
| 59319 | 263 | if (assignment || nodes.nonEmpty || commands.nonEmpty) | 
| 56719 
80eb2192516a
simplified change_buffer (again, see 937826d702d5): no thread, just timer, rely on asynchronous commands_changed.post;
 wenzelm parents: 
56715diff
changeset | 264 | commands_changed.post(Session.Commands_Changed(assignment, nodes, commands)) | 
| 68381 
2fd3a6d6ba2e
less wasteful consolidation, based on PIDE front-end state and recent changes;
 wenzelm parents: 
68336diff
changeset | 265 | if (nodes.nonEmpty) consolidation.update(nodes) | 
| 56719 
80eb2192516a
simplified change_buffer (again, see 937826d702d5): no thread, just timer, rely on asynchronous commands_changed.post;
 wenzelm parents: 
56715diff
changeset | 266 | assignment = false | 
| 
80eb2192516a
simplified change_buffer (again, see 937826d702d5): no thread, just timer, rely on asynchronous commands_changed.post;
 wenzelm parents: 
56715diff
changeset | 267 | nodes = Set.empty | 
| 
80eb2192516a
simplified change_buffer (again, see 937826d702d5): no thread, just timer, rely on asynchronous commands_changed.post;
 wenzelm parents: 
56715diff
changeset | 268 | commands = Set.empty | 
| 
80eb2192516a
simplified change_buffer (again, see 937826d702d5): no thread, just timer, rely on asynchronous commands_changed.post;
 wenzelm parents: 
56715diff
changeset | 269 | } | 
| 61556 | 270 |     private val delay_flush = Standard_Thread.delay_first(output_delay) { flush() }
 | 
| 56719 
80eb2192516a
simplified change_buffer (again, see 937826d702d5): no thread, just timer, rely on asynchronous commands_changed.post;
 wenzelm parents: 
56715diff
changeset | 271 | |
| 70284 
3e17c3a5fd39
more thorough assignment, e.g. when "purge" removes commands that were not assigned;
 wenzelm parents: 
69640diff
changeset | 272 | def invoke(assign: Boolean, edited_nodes: List[Document.Node.Name], cmds: List[Command]): Unit = | 
| 
3e17c3a5fd39
more thorough assignment, e.g. when "purge" removes commands that were not assigned;
 wenzelm parents: 
69640diff
changeset | 273 |       synchronized {
 | 
| 
3e17c3a5fd39
more thorough assignment, e.g. when "purge" removes commands that were not assigned;
 wenzelm parents: 
69640diff
changeset | 274 | assignment |= assign | 
| 
3e17c3a5fd39
more thorough assignment, e.g. when "purge" removes commands that were not assigned;
 wenzelm parents: 
69640diff
changeset | 275 |         for (node <- edited_nodes) {
 | 
| 
3e17c3a5fd39
more thorough assignment, e.g. when "purge" removes commands that were not assigned;
 wenzelm parents: 
69640diff
changeset | 276 | nodes += node | 
| 
3e17c3a5fd39
more thorough assignment, e.g. when "purge" removes commands that were not assigned;
 wenzelm parents: 
69640diff
changeset | 277 | } | 
| 
3e17c3a5fd39
more thorough assignment, e.g. when "purge" removes commands that were not assigned;
 wenzelm parents: 
69640diff
changeset | 278 |         for (command <- cmds) {
 | 
| 
3e17c3a5fd39
more thorough assignment, e.g. when "purge" removes commands that were not assigned;
 wenzelm parents: 
69640diff
changeset | 279 | nodes += command.node_name | 
| 
3e17c3a5fd39
more thorough assignment, e.g. when "purge" removes commands that were not assigned;
 wenzelm parents: 
69640diff
changeset | 280 | command.blobs_names.foreach(nodes += _) | 
| 
3e17c3a5fd39
more thorough assignment, e.g. when "purge" removes commands that were not assigned;
 wenzelm parents: 
69640diff
changeset | 281 | commands += command | 
| 
3e17c3a5fd39
more thorough assignment, e.g. when "purge" removes commands that were not assigned;
 wenzelm parents: 
69640diff
changeset | 282 | } | 
| 
3e17c3a5fd39
more thorough assignment, e.g. when "purge" removes commands that were not assigned;
 wenzelm parents: 
69640diff
changeset | 283 | delay_flush.invoke() | 
| 56719 
80eb2192516a
simplified change_buffer (again, see 937826d702d5): no thread, just timer, rely on asynchronous commands_changed.post;
 wenzelm parents: 
56715diff
changeset | 284 | } | 
| 
80eb2192516a
simplified change_buffer (again, see 937826d702d5): no thread, just timer, rely on asynchronous commands_changed.post;
 wenzelm parents: 
56715diff
changeset | 285 | |
| 
80eb2192516a
simplified change_buffer (again, see 937826d702d5): no thread, just timer, rely on asynchronous commands_changed.post;
 wenzelm parents: 
56715diff
changeset | 286 | def shutdown() | 
| 
80eb2192516a
simplified change_buffer (again, see 937826d702d5): no thread, just timer, rely on asynchronous commands_changed.post;
 wenzelm parents: 
56715diff
changeset | 287 |     {
 | 
| 56771 
28d62a5b07e8
more systematic delay_first discipline for change_buffer and prune_history;
 wenzelm parents: 
56735diff
changeset | 288 | delay_flush.revoke() | 
| 56719 
80eb2192516a
simplified change_buffer (again, see 937826d702d5): no thread, just timer, rely on asynchronous commands_changed.post;
 wenzelm parents: 
56715diff
changeset | 289 | flush() | 
| 
80eb2192516a
simplified change_buffer (again, see 937826d702d5): no thread, just timer, rely on asynchronous commands_changed.post;
 wenzelm parents: 
56715diff
changeset | 290 | } | 
| 
80eb2192516a
simplified change_buffer (again, see 937826d702d5): no thread, just timer, rely on asynchronous commands_changed.post;
 wenzelm parents: 
56715diff
changeset | 291 | } | 
| 
80eb2192516a
simplified change_buffer (again, see 937826d702d5): no thread, just timer, rely on asynchronous commands_changed.post;
 wenzelm parents: 
56715diff
changeset | 292 | |
| 
80eb2192516a
simplified change_buffer (again, see 937826d702d5): no thread, just timer, rely on asynchronous commands_changed.post;
 wenzelm parents: 
56715diff
changeset | 293 | |
| 56706 
f2f53f7046f4
converted main session manager to Consumer_Thread: messages need to be consumed immediately, postponed_changes replaces implicit actor mailbox scanning;
 wenzelm parents: 
56705diff
changeset | 294 | /* postponed changes */ | 
| 44733 
329320fc88df
buffer prover messages to prevent overloading of session_actor input channel -- which is critical due to synchronous messages wrt. GUI thread;
 wenzelm parents: 
44732diff
changeset | 295 | |
| 56706 
f2f53f7046f4
converted main session manager to Consumer_Thread: messages need to be consumed immediately, postponed_changes replaces implicit actor mailbox scanning;
 wenzelm parents: 
56705diff
changeset | 296 | private object postponed_changes | 
| 
f2f53f7046f4
converted main session manager to Consumer_Thread: messages need to be consumed immediately, postponed_changes replaces implicit actor mailbox scanning;
 wenzelm parents: 
56705diff
changeset | 297 |   {
 | 
| 
f2f53f7046f4
converted main session manager to Consumer_Thread: messages need to be consumed immediately, postponed_changes replaces implicit actor mailbox scanning;
 wenzelm parents: 
56705diff
changeset | 298 | private var postponed: List[Session.Change] = Nil | 
| 
f2f53f7046f4
converted main session manager to Consumer_Thread: messages need to be consumed immediately, postponed_changes replaces implicit actor mailbox scanning;
 wenzelm parents: 
56705diff
changeset | 299 | |
| 
f2f53f7046f4
converted main session manager to Consumer_Thread: messages need to be consumed immediately, postponed_changes replaces implicit actor mailbox scanning;
 wenzelm parents: 
56705diff
changeset | 300 |     def store(change: Session.Change): Unit = synchronized { postponed ::= change }
 | 
| 56705 
937826d702d5
simplified commands_changed_buffer (in contrast to a8331fb5c959): rely on better performance of Consumer_Thread/Mailbox and more direct Timer (like session_actor.receiver);
 wenzelm parents: 
56704diff
changeset | 301 | |
| 57976 
bf99106b6672
postpone changes in intermediate state between remove_versions/removed_versions, which is important for handle_change to refer to defined items on prover side;
 wenzelm parents: 
57867diff
changeset | 302 |     def flush(state: Document.State): List[Session.Change] = synchronized {
 | 
| 56706 
f2f53f7046f4
converted main session manager to Consumer_Thread: messages need to be consumed immediately, postponed_changes replaces implicit actor mailbox scanning;
 wenzelm parents: 
56705diff
changeset | 303 | val (assigned, unassigned) = postponed.partition(change => state.is_assigned(change.previous)) | 
| 
f2f53f7046f4
converted main session manager to Consumer_Thread: messages need to be consumed immediately, postponed_changes replaces implicit actor mailbox scanning;
 wenzelm parents: 
56705diff
changeset | 304 | postponed = unassigned | 
| 57976 
bf99106b6672
postpone changes in intermediate state between remove_versions/removed_versions, which is important for handle_change to refer to defined items on prover side;
 wenzelm parents: 
57867diff
changeset | 305 | assigned.reverse | 
| 56706 
f2f53f7046f4
converted main session manager to Consumer_Thread: messages need to be consumed immediately, postponed_changes replaces implicit actor mailbox scanning;
 wenzelm parents: 
56705diff
changeset | 306 | } | 
| 
f2f53f7046f4
converted main session manager to Consumer_Thread: messages need to be consumed immediately, postponed_changes replaces implicit actor mailbox scanning;
 wenzelm parents: 
56705diff
changeset | 307 | } | 
| 44733 
329320fc88df
buffer prover messages to prevent overloading of session_actor input channel -- which is critical due to synchronous messages wrt. GUI thread;
 wenzelm parents: 
44732diff
changeset | 308 | |
| 56706 
f2f53f7046f4
converted main session manager to Consumer_Thread: messages need to be consumed immediately, postponed_changes replaces implicit actor mailbox scanning;
 wenzelm parents: 
56705diff
changeset | 309 | |
| 68381 
2fd3a6d6ba2e
less wasteful consolidation, based on PIDE front-end state and recent changes;
 wenzelm parents: 
68336diff
changeset | 310 | /* node consolidation */ | 
| 
2fd3a6d6ba2e
less wasteful consolidation, based on PIDE front-end state and recent changes;
 wenzelm parents: 
68336diff
changeset | 311 | |
| 
2fd3a6d6ba2e
less wasteful consolidation, based on PIDE front-end state and recent changes;
 wenzelm parents: 
68336diff
changeset | 312 | private object consolidation | 
| 
2fd3a6d6ba2e
less wasteful consolidation, based on PIDE front-end state and recent changes;
 wenzelm parents: 
68336diff
changeset | 313 |   {
 | 
| 
2fd3a6d6ba2e
less wasteful consolidation, based on PIDE front-end state and recent changes;
 wenzelm parents: 
68336diff
changeset | 314 | private val delay = | 
| 
2fd3a6d6ba2e
less wasteful consolidation, based on PIDE front-end state and recent changes;
 wenzelm parents: 
68336diff
changeset | 315 |       Standard_Thread.delay_first(consolidate_delay) { manager.send(Consolidate_Execution) }
 | 
| 
2fd3a6d6ba2e
less wasteful consolidation, based on PIDE front-end state and recent changes;
 wenzelm parents: 
68336diff
changeset | 316 | |
| 68807 
e28978310a2a
more robust exit: avoid later Consolidate_Execution with handle_raw_edits (cf. 2fd3a6d6ba2e);
 wenzelm parents: 
68382diff
changeset | 317 | private val init_state: Option[Set[Document.Node.Name]] = Some(Set.empty) | 
| 
e28978310a2a
more robust exit: avoid later Consolidate_Execution with handle_raw_edits (cf. 2fd3a6d6ba2e);
 wenzelm parents: 
68382diff
changeset | 318 | private val state = Synchronized(init_state) | 
| 
e28978310a2a
more robust exit: avoid later Consolidate_Execution with handle_raw_edits (cf. 2fd3a6d6ba2e);
 wenzelm parents: 
68382diff
changeset | 319 | |
| 
e28978310a2a
more robust exit: avoid later Consolidate_Execution with handle_raw_edits (cf. 2fd3a6d6ba2e);
 wenzelm parents: 
68382diff
changeset | 320 | def exit() | 
| 
e28978310a2a
more robust exit: avoid later Consolidate_Execution with handle_raw_edits (cf. 2fd3a6d6ba2e);
 wenzelm parents: 
68382diff
changeset | 321 |     {
 | 
| 
e28978310a2a
more robust exit: avoid later Consolidate_Execution with handle_raw_edits (cf. 2fd3a6d6ba2e);
 wenzelm parents: 
68382diff
changeset | 322 | delay.revoke() | 
| 
e28978310a2a
more robust exit: avoid later Consolidate_Execution with handle_raw_edits (cf. 2fd3a6d6ba2e);
 wenzelm parents: 
68382diff
changeset | 323 | state.change(_ => None) | 
| 
e28978310a2a
more robust exit: avoid later Consolidate_Execution with handle_raw_edits (cf. 2fd3a6d6ba2e);
 wenzelm parents: 
68382diff
changeset | 324 | } | 
| 68381 
2fd3a6d6ba2e
less wasteful consolidation, based on PIDE front-end state and recent changes;
 wenzelm parents: 
68336diff
changeset | 325 | |
| 
2fd3a6d6ba2e
less wasteful consolidation, based on PIDE front-end state and recent changes;
 wenzelm parents: 
68336diff
changeset | 326 | def update(new_nodes: Set[Document.Node.Name] = Set.empty) | 
| 
2fd3a6d6ba2e
less wasteful consolidation, based on PIDE front-end state and recent changes;
 wenzelm parents: 
68336diff
changeset | 327 |     {
 | 
| 68807 
e28978310a2a
more robust exit: avoid later Consolidate_Execution with handle_raw_edits (cf. 2fd3a6d6ba2e);
 wenzelm parents: 
68382diff
changeset | 328 | val active = | 
| 
e28978310a2a
more robust exit: avoid later Consolidate_Execution with handle_raw_edits (cf. 2fd3a6d6ba2e);
 wenzelm parents: 
68382diff
changeset | 329 | state.change_result(st => | 
| 
e28978310a2a
more robust exit: avoid later Consolidate_Execution with handle_raw_edits (cf. 2fd3a6d6ba2e);
 wenzelm parents: 
68382diff
changeset | 330 | (st.isDefined, st.map(nodes => if (nodes.isEmpty) new_nodes else nodes ++ new_nodes))) | 
| 
e28978310a2a
more robust exit: avoid later Consolidate_Execution with handle_raw_edits (cf. 2fd3a6d6ba2e);
 wenzelm parents: 
68382diff
changeset | 331 | if (active) delay.invoke() | 
| 68381 
2fd3a6d6ba2e
less wasteful consolidation, based on PIDE front-end state and recent changes;
 wenzelm parents: 
68336diff
changeset | 332 | } | 
| 
2fd3a6d6ba2e
less wasteful consolidation, based on PIDE front-end state and recent changes;
 wenzelm parents: 
68336diff
changeset | 333 | |
| 
2fd3a6d6ba2e
less wasteful consolidation, based on PIDE front-end state and recent changes;
 wenzelm parents: 
68336diff
changeset | 334 | def flush(): Set[Document.Node.Name] = | 
| 68807 
e28978310a2a
more robust exit: avoid later Consolidate_Execution with handle_raw_edits (cf. 2fd3a6d6ba2e);
 wenzelm parents: 
68382diff
changeset | 335 | state.change_result(st => if (st.isDefined) (st.get, init_state) else (Set.empty, None)) | 
| 68381 
2fd3a6d6ba2e
less wasteful consolidation, based on PIDE front-end state and recent changes;
 wenzelm parents: 
68336diff
changeset | 336 | } | 
| 
2fd3a6d6ba2e
less wasteful consolidation, based on PIDE front-end state and recent changes;
 wenzelm parents: 
68336diff
changeset | 337 | |
| 
2fd3a6d6ba2e
less wasteful consolidation, based on PIDE front-end state and recent changes;
 wenzelm parents: 
68336diff
changeset | 338 | |
| 56793 
d5ab6a8799ce
more synchronized treatment of prover process, which might emit more messages before shutdown and requires manager to accept them;
 wenzelm parents: 
56782diff
changeset | 339 | /* prover process */ | 
| 
d5ab6a8799ce
more synchronized treatment of prover process, which might emit more messages before shutdown and requires manager to accept them;
 wenzelm parents: 
56782diff
changeset | 340 | |
| 
d5ab6a8799ce
more synchronized treatment of prover process, which might emit more messages before shutdown and requires manager to accept them;
 wenzelm parents: 
56782diff
changeset | 341 | private object prover | 
| 
d5ab6a8799ce
more synchronized treatment of prover process, which might emit more messages before shutdown and requires manager to accept them;
 wenzelm parents: 
56782diff
changeset | 342 |   {
 | 
| 61590 | 343 | private val variable = Synchronized[Option[Prover]](None) | 
| 56793 
d5ab6a8799ce
more synchronized treatment of prover process, which might emit more messages before shutdown and requires manager to accept them;
 wenzelm parents: 
56782diff
changeset | 344 | |
| 
d5ab6a8799ce
more synchronized treatment of prover process, which might emit more messages before shutdown and requires manager to accept them;
 wenzelm parents: 
56782diff
changeset | 345 | def defined: Boolean = variable.value.isDefined | 
| 
d5ab6a8799ce
more synchronized treatment of prover process, which might emit more messages before shutdown and requires manager to accept them;
 wenzelm parents: 
56782diff
changeset | 346 | def get: Prover = variable.value.get | 
| 
d5ab6a8799ce
more synchronized treatment of prover process, which might emit more messages before shutdown and requires manager to accept them;
 wenzelm parents: 
56782diff
changeset | 347 |     def set(p: Prover) { variable.change(_ => Some(p)) }
 | 
| 
d5ab6a8799ce
more synchronized treatment of prover process, which might emit more messages before shutdown and requires manager to accept them;
 wenzelm parents: 
56782diff
changeset | 348 |     def reset { variable.change(_ => None) }
 | 
| 
d5ab6a8799ce
more synchronized treatment of prover process, which might emit more messages before shutdown and requires manager to accept them;
 wenzelm parents: 
56782diff
changeset | 349 |     def await_reset() { variable.guarded_access({ case None => Some((), None) case _ => None }) }
 | 
| 
d5ab6a8799ce
more synchronized treatment of prover process, which might emit more messages before shutdown and requires manager to accept them;
 wenzelm parents: 
56782diff
changeset | 350 | } | 
| 
d5ab6a8799ce
more synchronized treatment of prover process, which might emit more messages before shutdown and requires manager to accept them;
 wenzelm parents: 
56782diff
changeset | 351 | |
| 
d5ab6a8799ce
more synchronized treatment of prover process, which might emit more messages before shutdown and requires manager to accept them;
 wenzelm parents: 
56782diff
changeset | 352 | |
| 69488 
b05c0bb47f6d
support for File_Format.Session, e.g. server process accessible via prover options;
 wenzelm parents: 
68807diff
changeset | 353 | /* file formats */ | 
| 
b05c0bb47f6d
support for File_Format.Session, e.g. server process accessible via prover options;
 wenzelm parents: 
68807diff
changeset | 354 | |
| 
b05c0bb47f6d
support for File_Format.Session, e.g. server process accessible via prover options;
 wenzelm parents: 
68807diff
changeset | 355 | lazy val file_formats: File_Format.Session = | 
| 
b05c0bb47f6d
support for File_Format.Session, e.g. server process accessible via prover options;
 wenzelm parents: 
68807diff
changeset | 356 | resources.file_formats.start_session(session) | 
| 
b05c0bb47f6d
support for File_Format.Session, e.g. server process accessible via prover options;
 wenzelm parents: 
68807diff
changeset | 357 | |
| 
b05c0bb47f6d
support for File_Format.Session, e.g. server process accessible via prover options;
 wenzelm parents: 
68807diff
changeset | 358 | |
| 59366 
e94df7f6b608
clarified build_theories: proper protocol handler;
 wenzelm parents: 
59364diff
changeset | 359 | /* protocol handlers */ | 
| 
e94df7f6b608
clarified build_theories: proper protocol handler;
 wenzelm parents: 
59364diff
changeset | 360 | |
| 65215 | 361 | private val protocol_handlers = Protocol_Handlers.init(session) | 
| 59366 
e94df7f6b608
clarified build_theories: proper protocol handler;
 wenzelm parents: 
59364diff
changeset | 362 | |
| 
e94df7f6b608
clarified build_theories: proper protocol handler;
 wenzelm parents: 
59364diff
changeset | 363 | def get_protocol_handler(name: String): Option[Session.Protocol_Handler] = | 
| 65214 | 364 | protocol_handlers.get(name) | 
| 59366 
e94df7f6b608
clarified build_theories: proper protocol handler;
 wenzelm parents: 
59364diff
changeset | 365 | |
| 65315 | 366 | def init_protocol_handler(handler: Session.Protocol_Handler): Unit = | 
| 367 | protocol_handlers.init(handler) | |
| 65214 | 368 | |
| 65315 | 369 | def init_protocol_handler(name: String): Unit = | 
| 370 | protocol_handlers.init(name) | |
| 59366 
e94df7f6b608
clarified build_theories: proper protocol handler;
 wenzelm parents: 
59364diff
changeset | 371 | |
| 
e94df7f6b608
clarified build_theories: proper protocol handler;
 wenzelm parents: 
59364diff
changeset | 372 | |
| 65222 
fb8253564483
more robust debugger initialization, e.g. required for GUI components before actual session startup;
 wenzelm parents: 
65221diff
changeset | 373 | /* debugger */ | 
| 
fb8253564483
more robust debugger initialization, e.g. required for GUI components before actual session startup;
 wenzelm parents: 
65221diff
changeset | 374 | |
| 
fb8253564483
more robust debugger initialization, e.g. required for GUI components before actual session startup;
 wenzelm parents: 
65221diff
changeset | 375 | private val debugger_handler = new Debugger.Handler(this) | 
| 65315 | 376 | init_protocol_handler(debugger_handler) | 
| 65222 
fb8253564483
more robust debugger initialization, e.g. required for GUI components before actual session startup;
 wenzelm parents: 
65221diff
changeset | 377 | |
| 
fb8253564483
more robust debugger initialization, e.g. required for GUI components before actual session startup;
 wenzelm parents: 
65221diff
changeset | 378 | def debugger: Debugger = debugger_handler.debugger | 
| 
fb8253564483
more robust debugger initialization, e.g. required for GUI components before actual session startup;
 wenzelm parents: 
65221diff
changeset | 379 | |
| 
fb8253564483
more robust debugger initialization, e.g. required for GUI components before actual session startup;
 wenzelm parents: 
65221diff
changeset | 380 | |
| 56706 
f2f53f7046f4
converted main session manager to Consumer_Thread: messages need to be consumed immediately, postponed_changes replaces implicit actor mailbox scanning;
 wenzelm parents: 
56705diff
changeset | 381 | /* manager thread */ | 
| 44733 
329320fc88df
buffer prover messages to prevent overloading of session_actor input channel -- which is critical due to synchronous messages wrt. GUI thread;
 wenzelm parents: 
44732diff
changeset | 382 | |
| 62115 
57895801cb57
prune old versions more often, to reduce overall heap requirements;
 wenzelm parents: 
62050diff
changeset | 383 | private val delay_prune = | 
| 
57895801cb57
prune old versions more often, to reduce overall heap requirements;
 wenzelm parents: 
62050diff
changeset | 384 |     Standard_Thread.delay_first(prune_delay) { manager.send(Prune_History) }
 | 
| 56771 
28d62a5b07e8
more systematic delay_first discipline for change_buffer and prune_history;
 wenzelm parents: 
56735diff
changeset | 385 | |
| 56706 
f2f53f7046f4
converted main session manager to Consumer_Thread: messages need to be consumed immediately, postponed_changes replaces implicit actor mailbox scanning;
 wenzelm parents: 
56705diff
changeset | 386 | private val manager: Consumer_Thread[Any] = | 
| 
f2f53f7046f4
converted main session manager to Consumer_Thread: messages need to be consumed immediately, postponed_changes replaces implicit actor mailbox scanning;
 wenzelm parents: 
56705diff
changeset | 387 |   {
 | 
| 52649 
f45ab3e8211b
update_options with full update, e.g. required for re-assignment of Command.prints;
 wenzelm parents: 
52563diff
changeset | 388 | /* raw edits */ | 
| 
f45ab3e8211b
update_options with full update, e.g. required for re-assignment of Command.prints;
 wenzelm parents: 
52563diff
changeset | 389 | |
| 68336 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68293diff
changeset | 390 | def handle_raw_edits( | 
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68293diff
changeset | 391 | doc_blobs: Document.Blobs = Document.Blobs.empty, | 
| 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68293diff
changeset | 392 | edits: List[Document.Edit_Text] = Nil, | 
| 68381 
2fd3a6d6ba2e
less wasteful consolidation, based on PIDE front-end state and recent changes;
 wenzelm parents: 
68336diff
changeset | 393 | consolidate: List[Document.Node.Name] = Nil) | 
| 52649 
f45ab3e8211b
update_options with full update, e.g. required for re-assignment of Command.prints;
 wenzelm parents: 
52563diff
changeset | 394 |     //{{{
 | 
| 
f45ab3e8211b
update_options with full update, e.g. required for re-assignment of Command.prints;
 wenzelm parents: 
52563diff
changeset | 395 |     {
 | 
| 56793 
d5ab6a8799ce
more synchronized treatment of prover process, which might emit more messages before shutdown and requires manager to accept them;
 wenzelm parents: 
56782diff
changeset | 396 | require(prover.defined) | 
| 56712 | 397 | |
| 52649 
f45ab3e8211b
update_options with full update, e.g. required for re-assignment of Command.prints;
 wenzelm parents: 
52563diff
changeset | 398 | prover.get.discontinue_execution() | 
| 
f45ab3e8211b
update_options with full update, e.g. required for re-assignment of Command.prints;
 wenzelm parents: 
52563diff
changeset | 399 | |
| 56687 | 400 | val previous = global_state.value.history.tip.version | 
| 52649 
f45ab3e8211b
update_options with full update, e.g. required for re-assignment of Command.prints;
 wenzelm parents: 
52563diff
changeset | 401 | val version = Future.promise[Document.Version] | 
| 56711 | 402 | global_state.change(_.continue_history(previous, edits, version)) | 
| 52649 
f45ab3e8211b
update_options with full update, e.g. required for re-assignment of Command.prints;
 wenzelm parents: 
52563diff
changeset | 403 | |
| 56715 
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
 wenzelm parents: 
56713diff
changeset | 404 | raw_edits.post(Session.Raw_Edits(doc_blobs, edits)) | 
| 68336 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68293diff
changeset | 405 | change_parser.send(Text_Edits(previous, doc_blobs, edits, consolidate, version)) | 
| 52649 
f45ab3e8211b
update_options with full update, e.g. required for re-assignment of Command.prints;
 wenzelm parents: 
52563diff
changeset | 406 | } | 
| 
f45ab3e8211b
update_options with full update, e.g. required for re-assignment of Command.prints;
 wenzelm parents: 
52563diff
changeset | 407 | //}}} | 
| 
f45ab3e8211b
update_options with full update, e.g. required for re-assignment of Command.prints;
 wenzelm parents: 
52563diff
changeset | 408 | |
| 
f45ab3e8211b
update_options with full update, e.g. required for re-assignment of Command.prints;
 wenzelm parents: 
52563diff
changeset | 409 | |
| 43716 | 410 | /* resulting changes */ | 
| 34809 | 411 | |
| 56315 | 412 | def handle_change(change: Session.Change) | 
| 38221 | 413 |     //{{{
 | 
| 34809 | 414 |     {
 | 
| 56793 
d5ab6a8799ce
more synchronized treatment of prover process, which might emit more messages before shutdown and requires manager to accept them;
 wenzelm parents: 
56782diff
changeset | 415 | require(prover.defined) | 
| 56712 | 416 | |
| 44383 | 417 | def id_command(command: Command) | 
| 43720 | 418 |       {
 | 
| 54519 
5fed81762406
maintain blobs within document state: digest + text in ML, digest-only in Scala;
 wenzelm parents: 
54443diff
changeset | 419 |         for {
 | 
| 57842 
8e4ae2db1849
more direct access to persistent blobs (see also 8953d4cc060a), avoiding fragile digest lookup from later version (which might have removed unused blobs already);
 wenzelm parents: 
57651diff
changeset | 420 | (name, digest) <- command.blobs_defined | 
| 56687 | 421 | if !global_state.value.defined_blob(digest) | 
| 54519 
5fed81762406
maintain blobs within document state: digest + text in ML, digest-only in Scala;
 wenzelm parents: 
54443diff
changeset | 422 |         } {
 | 
| 57842 
8e4ae2db1849
more direct access to persistent blobs (see also 8953d4cc060a), avoiding fragile digest lookup from later version (which might have removed unused blobs already);
 wenzelm parents: 
57651diff
changeset | 423 |           change.version.nodes(name).get_blob match {
 | 
| 54519 
5fed81762406
maintain blobs within document state: digest + text in ML, digest-only in Scala;
 wenzelm parents: 
54443diff
changeset | 424 | case Some(blob) => | 
| 56687 | 425 | global_state.change(_.define_blob(digest)) | 
| 56335 
8953d4cc060a
store blob content within document node: aux. files that were once open are made persistent;
 wenzelm parents: 
56316diff
changeset | 426 | prover.get.define_blob(digest, blob.bytes) | 
| 55783 | 427 | case None => | 
| 57842 
8e4ae2db1849
more direct access to persistent blobs (see also 8953d4cc060a), avoiding fragile digest lookup from later version (which might have removed unused blobs already);
 wenzelm parents: 
57651diff
changeset | 428 |               Output.error_message("Missing blob " + quote(name.toString))
 | 
| 54519 
5fed81762406
maintain blobs within document state: digest + text in ML, digest-only in Scala;
 wenzelm parents: 
54443diff
changeset | 429 | } | 
| 
5fed81762406
maintain blobs within document state: digest + text in ML, digest-only in Scala;
 wenzelm parents: 
54443diff
changeset | 430 | } | 
| 
5fed81762406
maintain blobs within document state: digest + text in ML, digest-only in Scala;
 wenzelm parents: 
54443diff
changeset | 431 | |
| 56687 | 432 |         if (!global_state.value.defined_command(command.id)) {
 | 
| 433 | global_state.change(_.define_command(command)) | |
| 44644 
317e4962dd0f
clarified define_command: store name as structural information;
 wenzelm parents: 
44616diff
changeset | 434 | prover.get.define_command(command) | 
| 43720 | 435 | } | 
| 436 | } | |
| 68293 | 437 |       for { (_, edit) <- change.doc_edits } {
 | 
| 438 |         edit.foreach({ case (c1, c2) => c1.foreach(id_command); c2.foreach(id_command) })
 | |
| 44383 | 439 | } | 
| 43722 | 440 | |
| 56687 | 441 | val assignment = global_state.value.the_assignment(change.previous).check_finished | 
| 442 | global_state.change(_.define_version(change.version, assignment)) | |
| 68336 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68293diff
changeset | 443 | prover.get.update(change.previous.id, change.version.id, change.doc_edits, change.consolidate) | 
| 56316 
b1cf8ddc2e04
propagate deps_changed, to resolve missing files without requiring jEdit events (e.g. buffer load/save);
 wenzelm parents: 
56315diff
changeset | 444 | resources.commit(change) | 
| 34809 | 445 | } | 
| 38221 | 446 | //}}} | 
| 34809 | 447 | |
| 448 | ||
| 46772 
be21f050eda4
tuned signature -- emphasize Isabelle_Process Input vs. Output;
 wenzelm parents: 
46771diff
changeset | 449 | /* prover output */ | 
| 34809 | 450 | |
| 56385 | 451 | def handle_output(output: Prover.Output) | 
| 38221 | 452 |     //{{{
 | 
| 34809 | 453 |     {
 | 
| 68103 
c5764b8b2a87
more robust (synchronous) management of Export.Entry: Future.fork happens inside the data structure;
 wenzelm parents: 
68101diff
changeset | 454 | def bad_output() | 
| 
c5764b8b2a87
more robust (synchronous) management of Export.Entry: Future.fork happens inside the data structure;
 wenzelm parents: 
68101diff
changeset | 455 |       {
 | 
| 
c5764b8b2a87
more robust (synchronous) management of Export.Entry: Future.fork happens inside the data structure;
 wenzelm parents: 
68101diff
changeset | 456 | if (verbose) | 
| 
c5764b8b2a87
more robust (synchronous) management of Export.Entry: Future.fork happens inside the data structure;
 wenzelm parents: 
68101diff
changeset | 457 |           Output.warning("Ignoring bad prover output: " + output.message.toString)
 | 
| 
c5764b8b2a87
more robust (synchronous) management of Export.Entry: Future.fork happens inside the data structure;
 wenzelm parents: 
68101diff
changeset | 458 | } | 
| 
c5764b8b2a87
more robust (synchronous) management of Export.Entry: Future.fork happens inside the data structure;
 wenzelm parents: 
68101diff
changeset | 459 | |
| 
c5764b8b2a87
more robust (synchronous) management of Export.Entry: Future.fork happens inside the data structure;
 wenzelm parents: 
68101diff
changeset | 460 | def change_command(f: Document.State => (Command.State, Document.State)) | 
| 
c5764b8b2a87
more robust (synchronous) management of Export.Entry: Future.fork happens inside the data structure;
 wenzelm parents: 
68101diff
changeset | 461 |       {
 | 
| 
c5764b8b2a87
more robust (synchronous) management of Export.Entry: Future.fork happens inside the data structure;
 wenzelm parents: 
68101diff
changeset | 462 |         try {
 | 
| 
c5764b8b2a87
more robust (synchronous) management of Export.Entry: Future.fork happens inside the data structure;
 wenzelm parents: 
68101diff
changeset | 463 | val st = global_state.change_result(f) | 
| 70284 
3e17c3a5fd39
more thorough assignment, e.g. when "purge" removes commands that were not assigned;
 wenzelm parents: 
69640diff
changeset | 464 | change_buffer.invoke(false, Nil, List(st.command)) | 
| 68103 
c5764b8b2a87
more robust (synchronous) management of Export.Entry: Future.fork happens inside the data structure;
 wenzelm parents: 
68101diff
changeset | 465 | } | 
| 
c5764b8b2a87
more robust (synchronous) management of Export.Entry: Future.fork happens inside the data structure;
 wenzelm parents: 
68101diff
changeset | 466 |         catch { case _: Document.State.Fail => bad_output() }
 | 
| 
c5764b8b2a87
more robust (synchronous) management of Export.Entry: Future.fork happens inside the data structure;
 wenzelm parents: 
68101diff
changeset | 467 | } | 
| 51662 
3391a493f39a
just one timing protocol function, with 3 implementations: TTY/PG, PIDE/document, build;
 wenzelm parents: 
51083diff
changeset | 468 | |
| 54442 
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
 wenzelm parents: 
53054diff
changeset | 469 |       output match {
 | 
| 56385 | 470 | case msg: Prover.Protocol_Output => | 
| 65214 | 471 | val handled = protocol_handlers.invoke(msg) | 
| 54442 
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
 wenzelm parents: 
53054diff
changeset | 472 |           if (!handled) {
 | 
| 
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
 wenzelm parents: 
53054diff
changeset | 473 |             msg.properties match {
 | 
| 56793 
d5ab6a8799ce
more synchronized treatment of prover process, which might emit more messages before shutdown and requires manager to accept them;
 wenzelm parents: 
56782diff
changeset | 474 | case Markup.Protocol_Handler(name) if prover.defined => | 
| 65315 | 475 | init_protocol_handler(name) | 
| 54442 
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
 wenzelm parents: 
53054diff
changeset | 476 | |
| 56793 
d5ab6a8799ce
more synchronized treatment of prover process, which might emit more messages before shutdown and requires manager to accept them;
 wenzelm parents: 
56782diff
changeset | 477 | case Protocol.Command_Timing(state_id, timing) if prover.defined => | 
| 54442 
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
 wenzelm parents: 
53054diff
changeset | 478 | val message = XML.elem(Markup.STATUS, List(XML.Elem(Markup.Timing(timing), Nil))) | 
| 68103 
c5764b8b2a87
more robust (synchronous) management of Export.Entry: Future.fork happens inside the data structure;
 wenzelm parents: 
68101diff
changeset | 479 | change_command(_.accumulate(state_id, xml_cache.elem(message), xml_cache)) | 
| 46122 | 480 | |
| 66873 
9953ae603a23
provide theory timing information, similar to command timing but always considered relevant;
 wenzelm parents: 
66720diff
changeset | 481 | case Protocol.Theory_Timing(_, _) => | 
| 
9953ae603a23
provide theory timing information, similar to command timing but always considered relevant;
 wenzelm parents: 
66720diff
changeset | 482 | // FIXME | 
| 
9953ae603a23
provide theory timing information, similar to command timing but always considered relevant;
 wenzelm parents: 
66720diff
changeset | 483 | |
| 68101 | 484 | case Markup.Export(args) | 
| 485 | if args.id.isDefined && Value.Long.unapply(args.id.get).isDefined => | |
| 68103 
c5764b8b2a87
more robust (synchronous) management of Export.Entry: Future.fork happens inside the data structure;
 wenzelm parents: 
68101diff
changeset | 486 | val id = Value.Long.unapply(args.id.get).get | 
| 68168 | 487 |                 val export = Export.make_entry("", args, msg.bytes, cache = xz_cache)
 | 
| 488 | change_command(_.add_export(id, (args.serial, export))) | |
| 68088 | 489 | |
| 54442 
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
 wenzelm parents: 
53054diff
changeset | 490 | case Markup.Assign_Update => | 
| 
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
 wenzelm parents: 
53054diff
changeset | 491 |                 msg.text match {
 | 
| 70284 
3e17c3a5fd39
more thorough assignment, e.g. when "purge" removes commands that were not assigned;
 wenzelm parents: 
69640diff
changeset | 492 | case Protocol.Assign_Update(id, edited, update) => | 
| 54442 
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
 wenzelm parents: 
53054diff
changeset | 493 |                     try {
 | 
| 70284 
3e17c3a5fd39
more thorough assignment, e.g. when "purge" removes commands that were not assigned;
 wenzelm parents: 
69640diff
changeset | 494 | val (edited_nodes, cmds) = | 
| 
3e17c3a5fd39
more thorough assignment, e.g. when "purge" removes commands that were not assigned;
 wenzelm parents: 
69640diff
changeset | 495 | global_state.change_result(_.assign(id, edited, update)) | 
| 
3e17c3a5fd39
more thorough assignment, e.g. when "purge" removes commands that were not assigned;
 wenzelm parents: 
69640diff
changeset | 496 | change_buffer.invoke(true, edited_nodes, cmds) | 
| 57976 
bf99106b6672
postpone changes in intermediate state between remove_versions/removed_versions, which is important for handle_change to refer to defined items on prover side;
 wenzelm parents: 
57867diff
changeset | 497 | manager.send(Session.Change_Flush) | 
| 54442 
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
 wenzelm parents: 
53054diff
changeset | 498 | } | 
| 68103 
c5764b8b2a87
more robust (synchronous) management of Export.Entry: Future.fork happens inside the data structure;
 wenzelm parents: 
68101diff
changeset | 499 |                     catch { case _: Document.State.Fail => bad_output() }
 | 
| 
c5764b8b2a87
more robust (synchronous) management of Export.Entry: Future.fork happens inside the data structure;
 wenzelm parents: 
68101diff
changeset | 500 | case _ => bad_output() | 
| 54442 
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
 wenzelm parents: 
53054diff
changeset | 501 | } | 
| 56771 
28d62a5b07e8
more systematic delay_first discipline for change_buffer and prune_history;
 wenzelm parents: 
56735diff
changeset | 502 | delay_prune.invoke() | 
| 46122 | 503 | |
| 54442 
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
 wenzelm parents: 
53054diff
changeset | 504 | case Markup.Removed_Versions => | 
| 
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
 wenzelm parents: 
53054diff
changeset | 505 |                 msg.text match {
 | 
| 
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
 wenzelm parents: 
53054diff
changeset | 506 | case Protocol.Removed(removed) => | 
| 
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
 wenzelm parents: 
53054diff
changeset | 507 |                     try {
 | 
| 56687 | 508 | global_state.change(_.removed_versions(removed)) | 
| 57976 
bf99106b6672
postpone changes in intermediate state between remove_versions/removed_versions, which is important for handle_change to refer to defined items on prover side;
 wenzelm parents: 
57867diff
changeset | 509 | manager.send(Session.Change_Flush) | 
| 54442 
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
 wenzelm parents: 
53054diff
changeset | 510 | } | 
| 68103 
c5764b8b2a87
more robust (synchronous) management of Export.Entry: Future.fork happens inside the data structure;
 wenzelm parents: 
68101diff
changeset | 511 |                     catch { case _: Document.State.Fail => bad_output() }
 | 
| 
c5764b8b2a87
more robust (synchronous) management of Export.Entry: Future.fork happens inside the data structure;
 wenzelm parents: 
68101diff
changeset | 512 | case _ => bad_output() | 
| 54442 
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
 wenzelm parents: 
53054diff
changeset | 513 | } | 
| 
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
 wenzelm parents: 
53054diff
changeset | 514 | |
| 
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
 wenzelm parents: 
53054diff
changeset | 515 | case Markup.ML_Statistics(props) => | 
| 56715 
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
 wenzelm parents: 
56713diff
changeset | 516 | statistics.post(Session.Statistics(props)) | 
| 54442 
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
 wenzelm parents: 
53054diff
changeset | 517 | |
| 
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
 wenzelm parents: 
53054diff
changeset | 518 | case Markup.Task_Statistics(props) => | 
| 
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
 wenzelm parents: 
53054diff
changeset | 519 | // FIXME | 
| 52111 
1fd184eaa310
explicit management of Session.Protocol_Handlers, with protocol state and functions;
 wenzelm parents: 
52084diff
changeset | 520 | |
| 68103 
c5764b8b2a87
more robust (synchronous) management of Export.Entry: Future.fork happens inside the data structure;
 wenzelm parents: 
68101diff
changeset | 521 | case _ => bad_output() | 
| 54442 
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
 wenzelm parents: 
53054diff
changeset | 522 | } | 
| 
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
 wenzelm parents: 
53054diff
changeset | 523 | } | 
| 
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
 wenzelm parents: 
53054diff
changeset | 524 | case _ => | 
| 
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
 wenzelm parents: 
53054diff
changeset | 525 |           output.properties match {
 | 
| 
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
 wenzelm parents: 
53054diff
changeset | 526 | case Position.Id(state_id) => | 
| 68103 
c5764b8b2a87
more robust (synchronous) management of Export.Entry: Future.fork happens inside the data structure;
 wenzelm parents: 
68101diff
changeset | 527 | change_command(_.accumulate(state_id, output.message, xml_cache)) | 
| 56210 | 528 | |
| 54442 
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
 wenzelm parents: 
53054diff
changeset | 529 | case _ if output.is_init => | 
| 69488 
b05c0bb47f6d
support for File_Format.Session, e.g. server process accessible via prover options;
 wenzelm parents: 
68807diff
changeset | 530 | prover.get.options(file_formats.prover_options(session_options)) | 
| 65470 | 531 | prover.get.session_base(resources) | 
| 54442 
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
 wenzelm parents: 
53054diff
changeset | 532 | phase = Session.Ready | 
| 65223 
844c067bc3d4
more robust startup, despite remaining race condition of debugger.is_active vs. session.is_ready;
 wenzelm parents: 
65222diff
changeset | 533 | debugger.ready() | 
| 56210 | 534 | |
| 65317 | 535 | case Markup.Process_Result(result) if output.is_exit => | 
| 69488 
b05c0bb47f6d
support for File_Format.Session, e.g. server process accessible via prover options;
 wenzelm parents: 
68807diff
changeset | 536 | file_formats.stop_session | 
| 65317 | 537 | phase = Session.Terminated(result) | 
| 56793 
d5ab6a8799ce
more synchronized treatment of prover process, which might emit more messages before shutdown and requires manager to accept them;
 wenzelm parents: 
56782diff
changeset | 538 | prover.reset | 
| 56210 | 539 | |
| 61376 
93224745477f
output HTML text according to Isabelle/Scala Symbol.Interpretation;
 wenzelm parents: 
60934diff
changeset | 540 | case _ => | 
| 
93224745477f
output HTML text according to Isabelle/Scala Symbol.Interpretation;
 wenzelm parents: 
60934diff
changeset | 541 | raw_output_messages.post(output) | 
| 44661 
383c9d758a56
raw message function "assign_execs" avoids full overhead of decoding and caching message body;
 wenzelm parents: 
44644diff
changeset | 542 | } | 
| 52111 
1fd184eaa310
explicit management of Session.Protocol_Handlers, with protocol state and functions;
 wenzelm parents: 
52084diff
changeset | 543 | } | 
| 34809 | 544 | } | 
| 38221 | 545 | //}}} | 
| 34809 | 546 | |
| 34820 
a8ba6cde13e9
basic setup for synchronous / modal (!) prover startup;
 wenzelm parents: 
34819diff
changeset | 547 | |
| 56706 
f2f53f7046f4
converted main session manager to Consumer_Thread: messages need to be consumed immediately, postponed_changes replaces implicit actor mailbox scanning;
 wenzelm parents: 
56705diff
changeset | 548 | /* main thread */ | 
| 
f2f53f7046f4
converted main session manager to Consumer_Thread: messages need to be consumed immediately, postponed_changes replaces implicit actor mailbox scanning;
 wenzelm parents: 
56705diff
changeset | 549 | |
| 56710 
8f102c18eab7
more uniform warning/error handling, potentially with propagation to send_wait caller;
 wenzelm parents: 
56709diff
changeset | 550 |     Consumer_Thread.fork[Any]("Session.manager", daemon = true)
 | 
| 56709 | 551 |     {
 | 
| 552 | case arg: Any => | |
| 553 |         //{{{
 | |
| 554 |         arg match {
 | |
| 56733 
f7700146678d
manager is direct receiver of prover output -- discontinued old performance tuning (329320fc88df, 1baa5d19ac44);
 wenzelm parents: 
56719diff
changeset | 555 | case output: Prover.Output => | 
| 56775 
59f70b89e5fd
improved syslog performance -- avoid denial-of-service e.g. with threads_trace = 5 and active Syslog dockable;
 wenzelm parents: 
56772diff
changeset | 556 | if (output.is_stdout || output.is_stderr) | 
| 
59f70b89e5fd
improved syslog performance -- avoid denial-of-service e.g. with threads_trace = 5 and active Syslog dockable;
 wenzelm parents: 
56772diff
changeset | 557 | raw_output_messages.post(output) | 
| 56733 
f7700146678d
manager is direct receiver of prover output -- discontinued old performance tuning (329320fc88df, 1baa5d19ac44);
 wenzelm parents: 
56719diff
changeset | 558 | else handle_output(output) | 
| 56775 
59f70b89e5fd
improved syslog performance -- avoid denial-of-service e.g. with threads_trace = 5 and active Syslog dockable;
 wenzelm parents: 
56772diff
changeset | 559 | |
| 56733 
f7700146678d
manager is direct receiver of prover output -- discontinued old performance tuning (329320fc88df, 1baa5d19ac44);
 wenzelm parents: 
56719diff
changeset | 560 |             if (output.is_syslog) {
 | 
| 56775 
59f70b89e5fd
improved syslog performance -- avoid denial-of-service e.g. with threads_trace = 5 and active Syslog dockable;
 wenzelm parents: 
56772diff
changeset | 561 | syslog += output.message | 
| 56733 
f7700146678d
manager is direct receiver of prover output -- discontinued old performance tuning (329320fc88df, 1baa5d19ac44);
 wenzelm parents: 
56719diff
changeset | 562 | syslog_messages.post(output) | 
| 
f7700146678d
manager is direct receiver of prover output -- discontinued old performance tuning (329320fc88df, 1baa5d19ac44);
 wenzelm parents: 
56719diff
changeset | 563 | } | 
| 56775 
59f70b89e5fd
improved syslog performance -- avoid denial-of-service e.g. with threads_trace = 5 and active Syslog dockable;
 wenzelm parents: 
56772diff
changeset | 564 | |
| 56733 
f7700146678d
manager is direct receiver of prover output -- discontinued old performance tuning (329320fc88df, 1baa5d19ac44);
 wenzelm parents: 
56719diff
changeset | 565 | all_messages.post(output) | 
| 
f7700146678d
manager is direct receiver of prover output -- discontinued old performance tuning (329320fc88df, 1baa5d19ac44);
 wenzelm parents: 
56719diff
changeset | 566 | |
| 
f7700146678d
manager is direct receiver of prover output -- discontinued old performance tuning (329320fc88df, 1baa5d19ac44);
 wenzelm parents: 
56719diff
changeset | 567 | case input: Prover.Input => | 
| 
f7700146678d
manager is direct receiver of prover output -- discontinued old performance tuning (329320fc88df, 1baa5d19ac44);
 wenzelm parents: 
56719diff
changeset | 568 | all_messages.post(input) | 
| 
f7700146678d
manager is direct receiver of prover output -- discontinued old performance tuning (329320fc88df, 1baa5d19ac44);
 wenzelm parents: 
56719diff
changeset | 569 | |
| 62556 
c115e69f457f
more abstract Session.start, without prover command-line;
 wenzelm parents: 
62545diff
changeset | 570 | case Start(start_prover) if !prover.defined => | 
| 65207 
004bc5968c2a
more strict Session.start: no restart from terminated session;
 wenzelm parents: 
65206diff
changeset | 571 | prover.set(start_prover(manager.send(_))) | 
| 56706 
f2f53f7046f4
converted main session manager to Consumer_Thread: messages need to be consumed immediately, postponed_changes replaces implicit actor mailbox scanning;
 wenzelm parents: 
56705diff
changeset | 572 | |
| 56709 | 573 | case Stop => | 
| 68807 
e28978310a2a
more robust exit: avoid later Consolidate_Execution with handle_raw_edits (cf. 2fd3a6d6ba2e);
 wenzelm parents: 
68382diff
changeset | 574 | consolidation.exit() | 
| 65208 
91c528cd376a
more robust Session.stop: idempotent, avoid conflict with startup;
 wenzelm parents: 
65207diff
changeset | 575 | delay_prune.revoke() | 
| 
91c528cd376a
more robust Session.stop: idempotent, avoid conflict with startup;
 wenzelm parents: 
65207diff
changeset | 576 |             if (prover.defined) {
 | 
| 65219 | 577 | protocol_handlers.exit() | 
| 56772 | 578 | global_state.change(_ => Document.State.init) | 
| 56709 | 579 | prover.get.terminate | 
| 580 | } | |
| 56706 
f2f53f7046f4
converted main session manager to Consumer_Thread: messages need to be consumed immediately, postponed_changes replaces implicit actor mailbox scanning;
 wenzelm parents: 
56705diff
changeset | 581 | |
| 66379 
6392766f3c25
maintain "consolidated" status of theory nodes, which means all evals are finished (but not necessarily prints nor imports);
 wenzelm parents: 
66094diff
changeset | 582 | case Consolidate_Execution => | 
| 68381 
2fd3a6d6ba2e
less wasteful consolidation, based on PIDE front-end state and recent changes;
 wenzelm parents: 
68336diff
changeset | 583 |             if (prover.defined) {
 | 
| 
2fd3a6d6ba2e
less wasteful consolidation, based on PIDE front-end state and recent changes;
 wenzelm parents: 
68336diff
changeset | 584 | val state = global_state.value | 
| 
2fd3a6d6ba2e
less wasteful consolidation, based on PIDE front-end state and recent changes;
 wenzelm parents: 
68336diff
changeset | 585 |               state.stable_tip_version match {
 | 
| 
2fd3a6d6ba2e
less wasteful consolidation, based on PIDE front-end state and recent changes;
 wenzelm parents: 
68336diff
changeset | 586 | case None => consolidation.update() | 
| 
2fd3a6d6ba2e
less wasteful consolidation, based on PIDE front-end state and recent changes;
 wenzelm parents: 
68336diff
changeset | 587 | case Some(version) => | 
| 
2fd3a6d6ba2e
less wasteful consolidation, based on PIDE front-end state and recent changes;
 wenzelm parents: 
68336diff
changeset | 588 | val consolidate = | 
| 
2fd3a6d6ba2e
less wasteful consolidation, based on PIDE front-end state and recent changes;
 wenzelm parents: 
68336diff
changeset | 589 | consolidation.flush().iterator.filter(name => | 
| 
2fd3a6d6ba2e
less wasteful consolidation, based on PIDE front-end state and recent changes;
 wenzelm parents: 
68336diff
changeset | 590 | !resources.session_base.loaded_theory(name) && | 
| 
2fd3a6d6ba2e
less wasteful consolidation, based on PIDE front-end state and recent changes;
 wenzelm parents: 
68336diff
changeset | 591 | !state.node_consolidated(version, name) && | 
| 
2fd3a6d6ba2e
less wasteful consolidation, based on PIDE front-end state and recent changes;
 wenzelm parents: 
68336diff
changeset | 592 | state.node_maybe_consolidated(version, name)).toList | 
| 
2fd3a6d6ba2e
less wasteful consolidation, based on PIDE front-end state and recent changes;
 wenzelm parents: 
68336diff
changeset | 593 | if (consolidate.nonEmpty) handle_raw_edits(consolidate = consolidate) | 
| 
2fd3a6d6ba2e
less wasteful consolidation, based on PIDE front-end state and recent changes;
 wenzelm parents: 
68336diff
changeset | 594 | } | 
| 
2fd3a6d6ba2e
less wasteful consolidation, based on PIDE front-end state and recent changes;
 wenzelm parents: 
68336diff
changeset | 595 | } | 
| 66379 
6392766f3c25
maintain "consolidated" status of theory nodes, which means all evals are finished (but not necessarily prints nor imports);
 wenzelm parents: 
66094diff
changeset | 596 | |
| 56771 
28d62a5b07e8
more systematic delay_first discipline for change_buffer and prune_history;
 wenzelm parents: 
56735diff
changeset | 597 | case Prune_History => | 
| 56793 
d5ab6a8799ce
more synchronized treatment of prover process, which might emit more messages before shutdown and requires manager to accept them;
 wenzelm parents: 
56782diff
changeset | 598 |             if (prover.defined) {
 | 
| 57976 
bf99106b6672
postpone changes in intermediate state between remove_versions/removed_versions, which is important for handle_change to refer to defined items on prover side;
 wenzelm parents: 
57867diff
changeset | 599 | val old_versions = global_state.change_result(_.remove_versions(prune_size)) | 
| 59319 | 600 | if (old_versions.nonEmpty) prover.get.remove_versions(old_versions) | 
| 56771 
28d62a5b07e8
more systematic delay_first discipline for change_buffer and prune_history;
 wenzelm parents: 
56735diff
changeset | 601 | } | 
| 
28d62a5b07e8
more systematic delay_first discipline for change_buffer and prune_history;
 wenzelm parents: 
56735diff
changeset | 602 | |
| 56709 | 603 | case Update_Options(options) => | 
| 56793 
d5ab6a8799ce
more synchronized treatment of prover process, which might emit more messages before shutdown and requires manager to accept them;
 wenzelm parents: 
56782diff
changeset | 604 |             if (prover.defined && is_ready) {
 | 
| 69488 
b05c0bb47f6d
support for File_Format.Session, e.g. server process accessible via prover options;
 wenzelm parents: 
68807diff
changeset | 605 | prover.get.options(file_formats.prover_options(options)) | 
| 68336 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68293diff
changeset | 606 | handle_raw_edits() | 
| 56709 | 607 | } | 
| 56715 
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
 wenzelm parents: 
56713diff
changeset | 608 | global_options.post(Session.Global_Options(options)) | 
| 34809 | 609 | |
| 56793 
d5ab6a8799ce
more synchronized treatment of prover process, which might emit more messages before shutdown and requires manager to accept them;
 wenzelm parents: 
56782diff
changeset | 610 | case Cancel_Exec(exec_id) if prover.defined => | 
| 56709 | 611 | prover.get.cancel_exec(exec_id) | 
| 56706 
f2f53f7046f4
converted main session manager to Consumer_Thread: messages need to be consumed immediately, postponed_changes replaces implicit actor mailbox scanning;
 wenzelm parents: 
56705diff
changeset | 612 | |
| 56793 
d5ab6a8799ce
more synchronized treatment of prover process, which might emit more messages before shutdown and requires manager to accept them;
 wenzelm parents: 
56782diff
changeset | 613 | case Session.Raw_Edits(doc_blobs, edits) if prover.defined => | 
| 68336 
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
 wenzelm parents: 
68293diff
changeset | 614 | handle_raw_edits(doc_blobs = doc_blobs, edits = edits) | 
| 56709 | 615 | |
| 56793 
d5ab6a8799ce
more synchronized treatment of prover process, which might emit more messages before shutdown and requires manager to accept them;
 wenzelm parents: 
56782diff
changeset | 616 | case Session.Dialog_Result(id, serial, result) if prover.defined => | 
| 56709 | 617 | prover.get.dialog_result(serial, result) | 
| 618 | handle_output(new Prover.Output(Protocol.Dialog_Result(id, serial, result))) | |
| 56706 
f2f53f7046f4
converted main session manager to Consumer_Thread: messages need to be consumed immediately, postponed_changes replaces implicit actor mailbox scanning;
 wenzelm parents: 
56705diff
changeset | 619 | |
| 56793 
d5ab6a8799ce
more synchronized treatment of prover process, which might emit more messages before shutdown and requires manager to accept them;
 wenzelm parents: 
56782diff
changeset | 620 | case Protocol_Command(name, args) if prover.defined => | 
| 56709 | 621 | prover.get.protocol_command(name, args:_*) | 
| 56706 
f2f53f7046f4
converted main session manager to Consumer_Thread: messages need to be consumed immediately, postponed_changes replaces implicit actor mailbox scanning;
 wenzelm parents: 
56705diff
changeset | 622 | |
| 56793 
d5ab6a8799ce
more synchronized treatment of prover process, which might emit more messages before shutdown and requires manager to accept them;
 wenzelm parents: 
56782diff
changeset | 623 | case change: Session.Change if prover.defined => | 
| 57976 
bf99106b6672
postpone changes in intermediate state between remove_versions/removed_versions, which is important for handle_change to refer to defined items on prover side;
 wenzelm parents: 
57867diff
changeset | 624 | val state = global_state.value | 
| 
bf99106b6672
postpone changes in intermediate state between remove_versions/removed_versions, which is important for handle_change to refer to defined items on prover side;
 wenzelm parents: 
57867diff
changeset | 625 | if (!state.removing_versions && state.is_assigned(change.previous)) | 
| 56709 | 626 | handle_change(change) | 
| 627 | else postponed_changes.store(change) | |
| 57651 
10df45dd14da
less warnings -- ignore potential prover startup/shutdown races;
 wenzelm parents: 
56864diff
changeset | 628 | |
| 57976 
bf99106b6672
postpone changes in intermediate state between remove_versions/removed_versions, which is important for handle_change to refer to defined items on prover side;
 wenzelm parents: 
57867diff
changeset | 629 | case Session.Change_Flush if prover.defined => | 
| 
bf99106b6672
postpone changes in intermediate state between remove_versions/removed_versions, which is important for handle_change to refer to defined items on prover side;
 wenzelm parents: 
57867diff
changeset | 630 | val state = global_state.value | 
| 
bf99106b6672
postpone changes in intermediate state between remove_versions/removed_versions, which is important for handle_change to refer to defined items on prover side;
 wenzelm parents: 
57867diff
changeset | 631 | if (!state.removing_versions) | 
| 
bf99106b6672
postpone changes in intermediate state between remove_versions/removed_versions, which is important for handle_change to refer to defined items on prover side;
 wenzelm parents: 
57867diff
changeset | 632 | postponed_changes.flush(state).foreach(handle_change(_)) | 
| 
bf99106b6672
postpone changes in intermediate state between remove_versions/removed_versions, which is important for handle_change to refer to defined items on prover side;
 wenzelm parents: 
57867diff
changeset | 633 | |
| 57651 
10df45dd14da
less warnings -- ignore potential prover startup/shutdown races;
 wenzelm parents: 
56864diff
changeset | 634 | case bad => | 
| 
10df45dd14da
less warnings -- ignore potential prover startup/shutdown races;
 wenzelm parents: 
56864diff
changeset | 635 |             if (verbose) Output.warning("Ignoring bad message: " + bad.toString)
 | 
| 56706 
f2f53f7046f4
converted main session manager to Consumer_Thread: messages need to be consumed immediately, postponed_changes replaces implicit actor mailbox scanning;
 wenzelm parents: 
56705diff
changeset | 636 | } | 
| 56709 | 637 | true | 
| 638 | //}}} | |
| 639 | } | |
| 34777 
91d6089cef88
class Session models full session, with or without prover process (cf. heaps, browser_info);
 wenzelm parents: diff
changeset | 640 | } | 
| 
91d6089cef88
class Session models full session, with or without prover process (cf. heaps, browser_info);
 wenzelm parents: diff
changeset | 641 | |
| 34809 | 642 | |
| 56799 | 643 | /* main operations */ | 
| 644 | ||
| 645 | def snapshot(name: Document.Node.Name = Document.Node.Name.empty, | |
| 646 | pending_edits: List[Text.Edit] = Nil): Document.Snapshot = | |
| 647 | global_state.value.snapshot(name, pending_edits) | |
| 34809 | 648 | |
| 69640 
af09cc4792dc
more robust: no assumptions about GUI thread or document model;
 wenzelm parents: 
69492diff
changeset | 649 | @tailrec final def await_stable_snapshot(): Document.Snapshot = | 
| 
af09cc4792dc
more robust: no assumptions about GUI thread or document model;
 wenzelm parents: 
69492diff
changeset | 650 |   {
 | 
| 
af09cc4792dc
more robust: no assumptions about GUI thread or document model;
 wenzelm parents: 
69492diff
changeset | 651 | val snapshot = this.snapshot() | 
| 
af09cc4792dc
more robust: no assumptions about GUI thread or document model;
 wenzelm parents: 
69492diff
changeset | 652 |     if (snapshot.is_outdated) {
 | 
| 
af09cc4792dc
more robust: no assumptions about GUI thread or document model;
 wenzelm parents: 
69492diff
changeset | 653 | Thread.sleep(output_delay.ms) | 
| 
af09cc4792dc
more robust: no assumptions about GUI thread or document model;
 wenzelm parents: 
69492diff
changeset | 654 | await_stable_snapshot() | 
| 
af09cc4792dc
more robust: no assumptions about GUI thread or document model;
 wenzelm parents: 
69492diff
changeset | 655 | } | 
| 
af09cc4792dc
more robust: no assumptions about GUI thread or document model;
 wenzelm parents: 
69492diff
changeset | 656 | else snapshot | 
| 
af09cc4792dc
more robust: no assumptions about GUI thread or document model;
 wenzelm parents: 
69492diff
changeset | 657 | } | 
| 
af09cc4792dc
more robust: no assumptions about GUI thread or document model;
 wenzelm parents: 
69492diff
changeset | 658 | |
| 62556 
c115e69f457f
more abstract Session.start, without prover command-line;
 wenzelm parents: 
62545diff
changeset | 659 | def start(start_prover: Prover.Receiver => Prover) | 
| 65207 
004bc5968c2a
more strict Session.start: no restart from terminated session;
 wenzelm parents: 
65206diff
changeset | 660 |   {
 | 
| 69488 
b05c0bb47f6d
support for File_Format.Session, e.g. server process accessible via prover options;
 wenzelm parents: 
68807diff
changeset | 661 | file_formats | 
| 65207 
004bc5968c2a
more strict Session.start: no restart from terminated session;
 wenzelm parents: 
65206diff
changeset | 662 | _phase.change( | 
| 
004bc5968c2a
more strict Session.start: no restart from terminated session;
 wenzelm parents: 
65206diff
changeset | 663 |       {
 | 
| 
004bc5968c2a
more strict Session.start: no restart from terminated session;
 wenzelm parents: 
65206diff
changeset | 664 | case Session.Inactive => | 
| 
004bc5968c2a
more strict Session.start: no restart from terminated session;
 wenzelm parents: 
65206diff
changeset | 665 | manager.send(Start(start_prover)) | 
| 65208 
91c528cd376a
more robust Session.stop: idempotent, avoid conflict with startup;
 wenzelm parents: 
65207diff
changeset | 666 | post_phase(Session.Startup) | 
| 65207 
004bc5968c2a
more strict Session.start: no restart from terminated session;
 wenzelm parents: 
65206diff
changeset | 667 |         case phase => error("Cannot start prover in phase " + quote(phase.print))
 | 
| 
004bc5968c2a
more strict Session.start: no restart from terminated session;
 wenzelm parents: 
65206diff
changeset | 668 | }) | 
| 
004bc5968c2a
more strict Session.start: no restart from terminated session;
 wenzelm parents: 
65206diff
changeset | 669 | } | 
| 45076 | 670 | |
| 65311 | 671 | def send_stop() | 
| 50117 | 672 |   {
 | 
| 65208 
91c528cd376a
more robust Session.stop: idempotent, avoid conflict with startup;
 wenzelm parents: 
65207diff
changeset | 673 | val was_ready = | 
| 
91c528cd376a
more robust Session.stop: idempotent, avoid conflict with startup;
 wenzelm parents: 
65207diff
changeset | 674 | _phase.guarded_access(phase => | 
| 
91c528cd376a
more robust Session.stop: idempotent, avoid conflict with startup;
 wenzelm parents: 
65207diff
changeset | 675 |         phase match {
 | 
| 
91c528cd376a
more robust Session.stop: idempotent, avoid conflict with startup;
 wenzelm parents: 
65207diff
changeset | 676 | case Session.Startup | Session.Shutdown => None | 
| 
91c528cd376a
more robust Session.stop: idempotent, avoid conflict with startup;
 wenzelm parents: 
65207diff
changeset | 677 | case Session.Terminated(_) => Some((false, phase)) | 
| 65317 | 678 | case Session.Inactive => Some((false, post_phase(Session.Terminated(Process_Result(0))))) | 
| 65208 
91c528cd376a
more robust Session.stop: idempotent, avoid conflict with startup;
 wenzelm parents: 
65207diff
changeset | 679 | case Session.Ready => Some((true, post_phase(Session.Shutdown))) | 
| 
91c528cd376a
more robust Session.stop: idempotent, avoid conflict with startup;
 wenzelm parents: 
65207diff
changeset | 680 | }) | 
| 65311 | 681 | if (was_ready) manager.send(Stop) | 
| 682 | } | |
| 683 | ||
| 65317 | 684 | def stop(): Process_Result = | 
| 65311 | 685 |   {
 | 
| 686 | send_stop() | |
| 56793 
d5ab6a8799ce
more synchronized treatment of prover process, which might emit more messages before shutdown and requires manager to accept them;
 wenzelm parents: 
56782diff
changeset | 687 | prover.await_reset() | 
| 65208 
91c528cd376a
more robust Session.stop: idempotent, avoid conflict with startup;
 wenzelm parents: 
65207diff
changeset | 688 | |
| 56704 | 689 | change_parser.shutdown() | 
| 56706 
f2f53f7046f4
converted main session manager to Consumer_Thread: messages need to be consumed immediately, postponed_changes replaces implicit actor mailbox scanning;
 wenzelm parents: 
56705diff
changeset | 690 | change_buffer.shutdown() | 
| 
f2f53f7046f4
converted main session manager to Consumer_Thread: messages need to be consumed immediately, postponed_changes replaces implicit actor mailbox scanning;
 wenzelm parents: 
56705diff
changeset | 691 | manager.shutdown() | 
| 56715 
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
 wenzelm parents: 
56713diff
changeset | 692 | dispatcher.shutdown() | 
| 65209 | 693 | |
| 694 |     phase match {
 | |
| 65317 | 695 | case Session.Terminated(result) => result | 
| 65209 | 696 |       case phase => error("Bad session phase after shutdown: " + quote(phase.print))
 | 
| 697 | } | |
| 50117 | 698 | } | 
| 38841 
4df7b76249a0
include Document.History in Document.State -- just one universal session state maintained by main actor;
 wenzelm parents: 
38722diff
changeset | 699 | |
| 53054 
8365d7fca3de
public access for protocol handlers and protocol commands -- to be used within reason;
 wenzelm parents: 
52931diff
changeset | 700 | def protocol_command(name: String, args: String*) | 
| 56706 
f2f53f7046f4
converted main session manager to Consumer_Thread: messages need to be consumed immediately, postponed_changes replaces implicit actor mailbox scanning;
 wenzelm parents: 
56705diff
changeset | 701 |   { manager.send(Protocol_Command(name, args.toList)) }
 | 
| 53054 
8365d7fca3de
public access for protocol handlers and protocol commands -- to be used within reason;
 wenzelm parents: 
52931diff
changeset | 702 | |
| 56706 
f2f53f7046f4
converted main session manager to Consumer_Thread: messages need to be consumed immediately, postponed_changes replaces implicit actor mailbox scanning;
 wenzelm parents: 
56705diff
changeset | 703 | def cancel_exec(exec_id: Document_ID.Exec) | 
| 
f2f53f7046f4
converted main session manager to Consumer_Thread: messages need to be consumed immediately, postponed_changes replaces implicit actor mailbox scanning;
 wenzelm parents: 
56705diff
changeset | 704 |   { manager.send(Cancel_Exec(exec_id)) }
 | 
| 52931 
ac6648c0c0fb
cancel_query via direct access to the exec_id of the running query process;
 wenzelm parents: 
52800diff
changeset | 705 | |
| 54521 
744ea0025e11
clarified Document.Blobs environment vs. actual edits of auxiliary files;
 wenzelm parents: 
54519diff
changeset | 706 | def update(doc_blobs: Document.Blobs, edits: List[Document.Edit_Text]) | 
| 59319 | 707 |   { if (edits.nonEmpty) manager.send_wait(Session.Raw_Edits(doc_blobs, edits)) }
 | 
| 50498 | 708 | |
| 52084 
573e80625c78
more explicit Session.update_options as source of Global_Options event;
 wenzelm parents: 
51818diff
changeset | 709 | def update_options(options: Options) | 
| 56706 
f2f53f7046f4
converted main session manager to Consumer_Thread: messages need to be consumed immediately, postponed_changes replaces implicit actor mailbox scanning;
 wenzelm parents: 
56705diff
changeset | 710 |   { manager.send_wait(Update_Options(options)) }
 | 
| 52084 
573e80625c78
more explicit Session.update_options as source of Global_Options event;
 wenzelm parents: 
51818diff
changeset | 711 | |
| 52531 | 712 | def dialog_result(id: Document_ID.Generic, serial: Long, result: String) | 
| 56706 
f2f53f7046f4
converted main session manager to Consumer_Thread: messages need to be consumed immediately, postponed_changes replaces implicit actor mailbox scanning;
 wenzelm parents: 
56705diff
changeset | 713 |   { manager.send(Session.Dialog_Result(id, serial, result)) }
 | 
| 34777 
91d6089cef88
class Session models full session, with or without prover process (cf. heaps, browser_info);
 wenzelm parents: diff
changeset | 714 | } |