author | wenzelm |
Tue, 14 Mar 2017 00:09:15 +0100 | |
changeset 65219 | ed4b47b8c7dc |
parent 65218 | 102b8e092860 |
child 65221 | 6af51a47545b |
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:
34859
diff
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:
44732
diff
changeset
|
10 |
|
46771
06a9b24c4a36
explicit syslog_limit reduces danger of low-level message flooding;
wenzelm
parents:
46739
diff
changeset
|
11 |
import scala.collection.immutable.Queue |
34777
91d6089cef88
class Session models full session, with or without prover process (cf. heaps, browser_info);
wenzelm
parents:
diff
changeset
|
12 |
|
34815
6bae73cd8e33
unified Command and Command_State, eliminated separate Accumulator;
wenzelm
parents:
34813
diff
changeset
|
13 |
|
34791 | 14 |
object Session |
15 |
{ |
|
56715
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents:
56713
diff
changeset
|
16 |
/* outlets */ |
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents:
56713
diff
changeset
|
17 |
|
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents:
56713
diff
changeset
|
18 |
object Consumer |
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents:
56713
diff
changeset
|
19 |
{ |
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents:
56713
diff
changeset
|
20 |
def apply[A](name: String)(consume: A => Unit): Consumer[A] = |
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents:
56713
diff
changeset
|
21 |
new Consumer[A](name, consume) |
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents:
56713
diff
changeset
|
22 |
} |
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents:
56713
diff
changeset
|
23 |
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:
56713
diff
changeset
|
24 |
|
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents:
56713
diff
changeset
|
25 |
class Outlet[A](dispatcher: Consumer_Thread[() => Unit]) |
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents:
56713
diff
changeset
|
26 |
{ |
61590 | 27 |
private val consumers = Synchronized[List[Consumer[A]]](Nil) |
56715
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents:
56713
diff
changeset
|
28 |
|
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents:
56713
diff
changeset
|
29 |
def += (c: Consumer[A]) { consumers.change(Library.update(c)) } |
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents:
56713
diff
changeset
|
30 |
def -= (c: Consumer[A]) { consumers.change(Library.remove(c)) } |
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents:
56713
diff
changeset
|
31 |
|
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents:
56713
diff
changeset
|
32 |
def post(a: A) |
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents:
56713
diff
changeset
|
33 |
{ |
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents:
56713
diff
changeset
|
34 |
for (c <- consumers.value.iterator) { |
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents:
56713
diff
changeset
|
35 |
dispatcher.send(() => |
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents:
56713
diff
changeset
|
36 |
try { c.consume(a) } |
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents:
56713
diff
changeset
|
37 |
catch { |
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents:
56713
diff
changeset
|
38 |
case exn: Throwable => |
56782
433cf57550fa
more systematic Isabelle output, like in classic Isabelle/ML (without markup);
wenzelm
parents:
56775
diff
changeset
|
39 |
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:
56713
diff
changeset
|
40 |
}) |
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents:
56713
diff
changeset
|
41 |
} |
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents:
56713
diff
changeset
|
42 |
} |
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents:
56713
diff
changeset
|
43 |
} |
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents:
56713
diff
changeset
|
44 |
|
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents:
56713
diff
changeset
|
45 |
|
56315 | 46 |
/* change */ |
47 |
||
48 |
sealed case class Change( |
|
49 |
previous: Document.Version, |
|
59077
7e0d3da6e6d8
node-specific syntax, with base_syntax as default;
wenzelm
parents:
58928
diff
changeset
|
50 |
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:
56315
diff
changeset
|
51 |
deps_changed: Boolean, |
56315 | 52 |
doc_edits: List[Document.Edit_Command], |
53 |
version: Document.Version) |
|
54 |
||
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:
57867
diff
changeset
|
55 |
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:
57867
diff
changeset
|
56 |
|
56315 | 57 |
|
34813
f0107bc96961
more explicit modeling of Command and Command_State as Session.Entity;
wenzelm
parents:
34810
diff
changeset
|
58 |
/* events */ |
f0107bc96961
more explicit modeling of Command and Command_State as Session.Entity;
wenzelm
parents:
34810
diff
changeset
|
59 |
|
43716 | 60 |
//{{{ |
50697
82e9178e6a98
improved Monitor_Dockable, based on ML_Statistics operations;
wenzelm
parents:
50566
diff
changeset
|
61 |
case class Statistics(props: Properties.T) |
50117 | 62 |
case class Global_Options(options: Options) |
44805 | 63 |
case object Caret_Focus |
54521
744ea0025e11
clarified Document.Blobs environment vs. actual edits of auxiliary files;
wenzelm
parents:
54519
diff
changeset
|
64 |
case class Raw_Edits(doc_blobs: Document.Blobs, edits: List[Document.Edit_Text]) |
52531 | 65 |
case class Dialog_Result(id: Document_ID.Generic, serial: Long, result: String) |
59364 | 66 |
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:
46944
diff
changeset
|
67 |
case class Commands_Changed( |
fc3bb6c02a3c
explicit propagation of assignment event, even if changed command set is empty;
wenzelm
parents:
46944
diff
changeset
|
68 |
assignment: Boolean, nodes: Set[Document.Node.Name], commands: Set[Command]) |
39630
44181423183a
explicit Session.Phase indication with associated event bus;
wenzelm
parents:
39629
diff
changeset
|
69 |
|
44181423183a
explicit Session.Phase indication with associated event bus;
wenzelm
parents:
39629
diff
changeset
|
70 |
sealed abstract class Phase |
65206 | 71 |
{ |
72 |
def print: String = |
|
73 |
this match { |
|
74 |
case Terminated(rc) => if (rc == 0) "finished" else "failed" |
|
75 |
case _ => Word.lowercase(this.toString) |
|
76 |
} |
|
77 |
} |
|
65208
91c528cd376a
more robust Session.stop: idempotent, avoid conflict with startup;
wenzelm
parents:
65207
diff
changeset
|
78 |
case object Inactive extends Phase // stable |
39701 | 79 |
case object Startup extends Phase // transient |
65208
91c528cd376a
more robust Session.stop: idempotent, avoid conflict with startup;
wenzelm
parents:
65207
diff
changeset
|
80 |
case object Ready extends Phase // metastable |
39701 | 81 |
case object Shutdown extends Phase // transient |
65208
91c528cd376a
more robust Session.stop: idempotent, avoid conflict with startup;
wenzelm
parents:
65207
diff
changeset
|
82 |
case class Terminated(rc: Int) extends Phase // stable |
43716 | 83 |
//}}} |
52111
1fd184eaa310
explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents:
52084
diff
changeset
|
84 |
|
1fd184eaa310
explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents:
52084
diff
changeset
|
85 |
|
56775
59f70b89e5fd
improved syslog performance -- avoid denial-of-service e.g. with threads_trace = 5 and active Syslog dockable;
wenzelm
parents:
56772
diff
changeset
|
86 |
/* syslog */ |
59f70b89e5fd
improved syslog performance -- avoid denial-of-service e.g. with threads_trace = 5 and active Syslog dockable;
wenzelm
parents:
56772
diff
changeset
|
87 |
|
59f70b89e5fd
improved syslog performance -- avoid denial-of-service e.g. with threads_trace = 5 and active Syslog dockable;
wenzelm
parents:
56772
diff
changeset
|
88 |
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:
56772
diff
changeset
|
89 |
{ |
59f70b89e5fd
improved syslog performance -- avoid denial-of-service e.g. with threads_trace = 5 and active Syslog dockable;
wenzelm
parents:
56772
diff
changeset
|
90 |
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:
56772
diff
changeset
|
91 |
private var length = 0 |
59f70b89e5fd
improved syslog performance -- avoid denial-of-service e.g. with threads_trace = 5 and active Syslog dockable;
wenzelm
parents:
56772
diff
changeset
|
92 |
|
59f70b89e5fd
improved syslog performance -- avoid denial-of-service e.g. with threads_trace = 5 and active Syslog dockable;
wenzelm
parents:
56772
diff
changeset
|
93 |
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:
56772
diff
changeset
|
94 |
queue = queue.enqueue(msg) |
59f70b89e5fd
improved syslog performance -- avoid denial-of-service e.g. with threads_trace = 5 and active Syslog dockable;
wenzelm
parents:
56772
diff
changeset
|
95 |
length += 1 |
59f70b89e5fd
improved syslog performance -- avoid denial-of-service e.g. with threads_trace = 5 and active Syslog dockable;
wenzelm
parents:
56772
diff
changeset
|
96 |
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:
56772
diff
changeset
|
97 |
} |
59f70b89e5fd
improved syslog performance -- avoid denial-of-service e.g. with threads_trace = 5 and active Syslog dockable;
wenzelm
parents:
56772
diff
changeset
|
98 |
|
59f70b89e5fd
improved syslog performance -- avoid denial-of-service e.g. with threads_trace = 5 and active Syslog dockable;
wenzelm
parents:
56772
diff
changeset
|
99 |
def content: String = synchronized { |
59f70b89e5fd
improved syslog performance -- avoid denial-of-service e.g. with threads_trace = 5 and active Syslog dockable;
wenzelm
parents:
56772
diff
changeset
|
100 |
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:
56772
diff
changeset
|
101 |
(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:
56772
diff
changeset
|
102 |
} |
59f70b89e5fd
improved syslog performance -- avoid denial-of-service e.g. with threads_trace = 5 and active Syslog dockable;
wenzelm
parents:
56772
diff
changeset
|
103 |
} |
59f70b89e5fd
improved syslog performance -- avoid denial-of-service e.g. with threads_trace = 5 and active Syslog dockable;
wenzelm
parents:
56772
diff
changeset
|
104 |
|
59f70b89e5fd
improved syslog performance -- avoid denial-of-service e.g. with threads_trace = 5 and active Syslog dockable;
wenzelm
parents:
56772
diff
changeset
|
105 |
|
52111
1fd184eaa310
explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents:
52084
diff
changeset
|
106 |
/* protocol handlers */ |
1fd184eaa310
explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents:
52084
diff
changeset
|
107 |
|
1fd184eaa310
explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents:
52084
diff
changeset
|
108 |
abstract class Protocol_Handler |
1fd184eaa310
explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents:
52084
diff
changeset
|
109 |
{ |
65219 | 110 |
def init(session: Session): Unit = {} |
111 |
def exit(): Unit = {} |
|
112 |
val functions: List[(String, Prover.Protocol_Output => Boolean)] |
|
52111
1fd184eaa310
explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents:
52084
diff
changeset
|
113 |
} |
34791 | 114 |
} |
115 |
||
34777
91d6089cef88
class Session models full session, with or without prover process (cf. heaps, browser_info);
wenzelm
parents:
diff
changeset
|
116 |
|
56208 | 117 |
class Session(val resources: Resources) |
34777
91d6089cef88
class Session models full session, with or without prover process (cf. heaps, browser_info);
wenzelm
parents:
diff
changeset
|
118 |
{ |
65214 | 119 |
session => |
120 |
||
65218 | 121 |
val xml_cache: XML.Cache = new XML.Cache() |
122 |
||
65214 | 123 |
|
47653 | 124 |
/* global flags */ |
125 |
||
126 |
@volatile var timing: Boolean = false |
|
127 |
@volatile var verbose: Boolean = false |
|
128 |
||
129 |
||
49288 | 130 |
/* tuning parameters */ |
131 |
||
132 |
def output_delay: Time = Time.seconds(0.1) // prover output (markup, common messages) |
|
62115
57895801cb57
prune old versions more often, to reduce overall heap requirements;
wenzelm
parents:
62050
diff
changeset
|
133 |
def prune_delay: Time = Time.seconds(15.0) // prune history (delete old versions) |
49293
afcccb9bfa3b
prefer tuning parameters as public methods (again) -- to allow overriding in applications;
wenzelm
parents:
49288
diff
changeset
|
134 |
def prune_size: Int = 0 // size of retained history |
afcccb9bfa3b
prefer tuning parameters as public methods (again) -- to allow overriding in applications;
wenzelm
parents:
49288
diff
changeset
|
135 |
def syslog_limit: Int = 100 |
49524
68796a77c42b
Thy_Syntax.consolidate_spans is subject to editor_reparse_limit, for improved experience of unbalanced comments etc.;
wenzelm
parents:
49523
diff
changeset
|
136 |
def reparse_limit: Int = 0 |
37849 | 137 |
|
138 |
||
56715
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents:
56713
diff
changeset
|
139 |
/* outlets */ |
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents:
56713
diff
changeset
|
140 |
|
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents:
56713
diff
changeset
|
141 |
private val dispatcher = |
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents:
56713
diff
changeset
|
142 |
Consumer_Thread.fork[() => Unit]("Session.dispatcher", daemon = true) { case e => e(); true } |
34809 | 143 |
|
56715
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents:
56713
diff
changeset
|
144 |
val statistics = new Session.Outlet[Session.Statistics](dispatcher) |
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents:
56713
diff
changeset
|
145 |
val global_options = new Session.Outlet[Session.Global_Options](dispatcher) |
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents:
56713
diff
changeset
|
146 |
val caret_focus = new Session.Outlet[Session.Caret_Focus.type](dispatcher) |
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents:
56713
diff
changeset
|
147 |
val raw_edits = new Session.Outlet[Session.Raw_Edits](dispatcher) |
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents:
56713
diff
changeset
|
148 |
val commands_changed = new Session.Outlet[Session.Commands_Changed](dispatcher) |
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents:
56713
diff
changeset
|
149 |
val phase_changed = new Session.Outlet[Session.Phase](dispatcher) |
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents:
56713
diff
changeset
|
150 |
val syslog_messages = new Session.Outlet[Prover.Output](dispatcher) |
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents:
56713
diff
changeset
|
151 |
val raw_output_messages = new Session.Outlet[Prover.Output](dispatcher) |
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents:
56713
diff
changeset
|
152 |
val trace_events = new Session.Outlet[Simplifier_Trace.Event.type](dispatcher) |
60900 | 153 |
val debugger_updates = new Session.Outlet[Debugger.Update.type](dispatcher) |
34809 | 154 |
|
60749 | 155 |
val all_messages = new Session.Outlet[Prover.Message](dispatcher) // potential bottle-neck! |
34809 | 156 |
|
56706
f2f53f7046f4
converted main session manager to Consumer_Thread: messages need to be consumed immediately, postponed_changes replaces implicit actor mailbox scanning;
wenzelm
parents:
56705
diff
changeset
|
157 |
|
56799 | 158 |
/** main protocol manager **/ |
45635
d9cf3520083c
explicit change_parser thread, which avoids undirected Future.fork with its tendency towards hundreds of worker threads;
wenzelm
parents:
45633
diff
changeset
|
159 |
|
56799 | 160 |
/* internal messages */ |
45635
d9cf3520083c
explicit change_parser thread, which avoids undirected Future.fork with its tendency towards hundreds of worker threads;
wenzelm
parents:
45633
diff
changeset
|
161 |
|
62556
c115e69f457f
more abstract Session.start, without prover command-line;
wenzelm
parents:
62545
diff
changeset
|
162 |
private case class Start(start_prover: Prover.Receiver => Prover) |
56799 | 163 |
private case object Stop |
164 |
private case class Cancel_Exec(exec_id: Document_ID.Exec) |
|
165 |
private case class Protocol_Command(name: String, args: List[String]) |
|
166 |
private case class Update_Options(options: Options) |
|
167 |
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:
45633
diff
changeset
|
168 |
|
38841
4df7b76249a0
include Document.History in Document.State -- just one universal session state maintained by main actor;
wenzelm
parents:
38722
diff
changeset
|
169 |
|
65208
91c528cd376a
more robust Session.stop: idempotent, avoid conflict with startup;
wenzelm
parents:
65207
diff
changeset
|
170 |
/* phase */ |
91c528cd376a
more robust Session.stop: idempotent, avoid conflict with startup;
wenzelm
parents:
65207
diff
changeset
|
171 |
|
91c528cd376a
more robust Session.stop: idempotent, avoid conflict with startup;
wenzelm
parents:
65207
diff
changeset
|
172 |
private def post_phase(new_phase: Session.Phase): Session.Phase = |
91c528cd376a
more robust Session.stop: idempotent, avoid conflict with startup;
wenzelm
parents:
65207
diff
changeset
|
173 |
{ |
91c528cd376a
more robust Session.stop: idempotent, avoid conflict with startup;
wenzelm
parents:
65207
diff
changeset
|
174 |
phase_changed.post(new_phase) |
91c528cd376a
more robust Session.stop: idempotent, avoid conflict with startup;
wenzelm
parents:
65207
diff
changeset
|
175 |
new_phase |
91c528cd376a
more robust Session.stop: idempotent, avoid conflict with startup;
wenzelm
parents:
65207
diff
changeset
|
176 |
} |
91c528cd376a
more robust Session.stop: idempotent, avoid conflict with startup;
wenzelm
parents:
65207
diff
changeset
|
177 |
private val _phase = Synchronized[Session.Phase](Session.Inactive) |
91c528cd376a
more robust Session.stop: idempotent, avoid conflict with startup;
wenzelm
parents:
65207
diff
changeset
|
178 |
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:
65207
diff
changeset
|
179 |
|
91c528cd376a
more robust Session.stop: idempotent, avoid conflict with startup;
wenzelm
parents:
65207
diff
changeset
|
180 |
def phase = _phase.value |
91c528cd376a
more robust Session.stop: idempotent, avoid conflict with startup;
wenzelm
parents:
65207
diff
changeset
|
181 |
def is_ready: Boolean = phase == Session.Ready |
91c528cd376a
more robust Session.stop: idempotent, avoid conflict with startup;
wenzelm
parents:
65207
diff
changeset
|
182 |
|
91c528cd376a
more robust Session.stop: idempotent, avoid conflict with startup;
wenzelm
parents:
65207
diff
changeset
|
183 |
|
43651
511df47bcadc
some support for theory files within Isabelle/Scala session;
wenzelm
parents:
43649
diff
changeset
|
184 |
/* global state */ |
43644 | 185 |
|
56775
59f70b89e5fd
improved syslog performance -- avoid denial-of-service e.g. with threads_trace = 5 and active Syslog dockable;
wenzelm
parents:
56772
diff
changeset
|
186 |
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:
56772
diff
changeset
|
187 |
def syslog_content(): String = syslog.content |
39626
a5d0bcfb95a3
manage persistent syslog via Session, not Isabelle_Process;
wenzelm
parents:
39625
diff
changeset
|
188 |
|
56690 | 189 |
private val global_state = Synchronized(Document.State.init) |
56687 | 190 |
def current_state(): Document.State = global_state.value |
46944
9fc22eb6408c
more recent recent_syntax, e.g. relevant for document rendering during startup;
wenzelm
parents:
46942
diff
changeset
|
191 |
|
63584
68751fe1c036
tuned signature -- prover-independence is presently theoretical;
wenzelm
parents:
62556
diff
changeset
|
192 |
def recent_syntax(name: Document.Node.Name): Outer_Syntax = |
60934 | 193 |
global_state.value.recent_finished.version.get_finished.nodes(name).syntax getOrElse |
64854 | 194 |
resources.base.syntax |
34816
d33312514220
maintain generic session entities -- cover commands, states, etc. (but not yet documents);
wenzelm
parents:
34815
diff
changeset
|
195 |
|
43651
511df47bcadc
some support for theory files within Isabelle/Scala session;
wenzelm
parents:
43649
diff
changeset
|
196 |
|
56799 | 197 |
/* pipelined change parsing */ |
198 |
||
199 |
private case class Text_Edits( |
|
200 |
previous: Future[Document.Version], |
|
201 |
doc_blobs: Document.Blobs, |
|
202 |
text_edits: List[Document.Edit_Text], |
|
203 |
version_result: Promise[Document.Version]) |
|
43651
511df47bcadc
some support for theory files within Isabelle/Scala session;
wenzelm
parents:
43649
diff
changeset
|
204 |
|
56799 | 205 |
private val change_parser = Consumer_Thread.fork[Text_Edits]("change_parser", daemon = true) |
206 |
{ |
|
207 |
case Text_Edits(previous, doc_blobs, text_edits, version_result) => |
|
208 |
val prev = previous.get_finished |
|
209 |
val change = |
|
210 |
Timing.timeit("parse_change", timing) { |
|
211 |
resources.parse_change(reparse_limit, prev, doc_blobs, text_edits) |
|
212 |
} |
|
213 |
version_result.fulfill(change.version) |
|
214 |
manager.send(change) |
|
215 |
true |
|
216 |
} |
|
41534 | 217 |
|
56706
f2f53f7046f4
converted main session manager to Consumer_Thread: messages need to be consumed immediately, postponed_changes replaces implicit actor mailbox scanning;
wenzelm
parents:
56705
diff
changeset
|
218 |
|
56719
80eb2192516a
simplified change_buffer (again, see 937826d702d5): no thread, just timer, rely on asynchronous commands_changed.post;
wenzelm
parents:
56715
diff
changeset
|
219 |
/* buffered changes */ |
80eb2192516a
simplified change_buffer (again, see 937826d702d5): no thread, just timer, rely on asynchronous commands_changed.post;
wenzelm
parents:
56715
diff
changeset
|
220 |
|
80eb2192516a
simplified change_buffer (again, see 937826d702d5): no thread, just timer, rely on asynchronous commands_changed.post;
wenzelm
parents:
56715
diff
changeset
|
221 |
private object change_buffer |
80eb2192516a
simplified change_buffer (again, see 937826d702d5): no thread, just timer, rely on asynchronous commands_changed.post;
wenzelm
parents:
56715
diff
changeset
|
222 |
{ |
80eb2192516a
simplified change_buffer (again, see 937826d702d5): no thread, just timer, rely on asynchronous commands_changed.post;
wenzelm
parents:
56715
diff
changeset
|
223 |
private var assignment: Boolean = false |
80eb2192516a
simplified change_buffer (again, see 937826d702d5): no thread, just timer, rely on asynchronous commands_changed.post;
wenzelm
parents:
56715
diff
changeset
|
224 |
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:
56715
diff
changeset
|
225 |
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:
56715
diff
changeset
|
226 |
|
80eb2192516a
simplified change_buffer (again, see 937826d702d5): no thread, just timer, rely on asynchronous commands_changed.post;
wenzelm
parents:
56715
diff
changeset
|
227 |
def flush(): Unit = synchronized { |
59319 | 228 |
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:
56715
diff
changeset
|
229 |
commands_changed.post(Session.Commands_Changed(assignment, nodes, commands)) |
80eb2192516a
simplified change_buffer (again, see 937826d702d5): no thread, just timer, rely on asynchronous commands_changed.post;
wenzelm
parents:
56715
diff
changeset
|
230 |
assignment = false |
80eb2192516a
simplified change_buffer (again, see 937826d702d5): no thread, just timer, rely on asynchronous commands_changed.post;
wenzelm
parents:
56715
diff
changeset
|
231 |
nodes = Set.empty |
80eb2192516a
simplified change_buffer (again, see 937826d702d5): no thread, just timer, rely on asynchronous commands_changed.post;
wenzelm
parents:
56715
diff
changeset
|
232 |
commands = Set.empty |
80eb2192516a
simplified change_buffer (again, see 937826d702d5): no thread, just timer, rely on asynchronous commands_changed.post;
wenzelm
parents:
56715
diff
changeset
|
233 |
} |
61556 | 234 |
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:
56715
diff
changeset
|
235 |
|
80eb2192516a
simplified change_buffer (again, see 937826d702d5): no thread, just timer, rely on asynchronous commands_changed.post;
wenzelm
parents:
56715
diff
changeset
|
236 |
def invoke(assign: Boolean, cmds: List[Command]): Unit = synchronized { |
80eb2192516a
simplified change_buffer (again, see 937826d702d5): no thread, just timer, rely on asynchronous commands_changed.post;
wenzelm
parents:
56715
diff
changeset
|
237 |
assignment |= assign |
80eb2192516a
simplified change_buffer (again, see 937826d702d5): no thread, just timer, rely on asynchronous commands_changed.post;
wenzelm
parents:
56715
diff
changeset
|
238 |
for (command <- cmds) { |
80eb2192516a
simplified change_buffer (again, see 937826d702d5): no thread, just timer, rely on asynchronous commands_changed.post;
wenzelm
parents:
56715
diff
changeset
|
239 |
nodes += command.node_name |
64803
27328dcaf64c
emit Commands_Changed for blobs as well, e.g. relevant for isabelle.vscode.Server.prover_output;
wenzelm
parents:
63584
diff
changeset
|
240 |
command.blobs_names.foreach(nodes += _) |
56719
80eb2192516a
simplified change_buffer (again, see 937826d702d5): no thread, just timer, rely on asynchronous commands_changed.post;
wenzelm
parents:
56715
diff
changeset
|
241 |
commands += command |
80eb2192516a
simplified change_buffer (again, see 937826d702d5): no thread, just timer, rely on asynchronous commands_changed.post;
wenzelm
parents:
56715
diff
changeset
|
242 |
} |
56771
28d62a5b07e8
more systematic delay_first discipline for change_buffer and prune_history;
wenzelm
parents:
56735
diff
changeset
|
243 |
delay_flush.invoke() |
56719
80eb2192516a
simplified change_buffer (again, see 937826d702d5): no thread, just timer, rely on asynchronous commands_changed.post;
wenzelm
parents:
56715
diff
changeset
|
244 |
} |
80eb2192516a
simplified change_buffer (again, see 937826d702d5): no thread, just timer, rely on asynchronous commands_changed.post;
wenzelm
parents:
56715
diff
changeset
|
245 |
|
80eb2192516a
simplified change_buffer (again, see 937826d702d5): no thread, just timer, rely on asynchronous commands_changed.post;
wenzelm
parents:
56715
diff
changeset
|
246 |
def shutdown() |
80eb2192516a
simplified change_buffer (again, see 937826d702d5): no thread, just timer, rely on asynchronous commands_changed.post;
wenzelm
parents:
56715
diff
changeset
|
247 |
{ |
56771
28d62a5b07e8
more systematic delay_first discipline for change_buffer and prune_history;
wenzelm
parents:
56735
diff
changeset
|
248 |
delay_flush.revoke() |
56719
80eb2192516a
simplified change_buffer (again, see 937826d702d5): no thread, just timer, rely on asynchronous commands_changed.post;
wenzelm
parents:
56715
diff
changeset
|
249 |
flush() |
80eb2192516a
simplified change_buffer (again, see 937826d702d5): no thread, just timer, rely on asynchronous commands_changed.post;
wenzelm
parents:
56715
diff
changeset
|
250 |
} |
80eb2192516a
simplified change_buffer (again, see 937826d702d5): no thread, just timer, rely on asynchronous commands_changed.post;
wenzelm
parents:
56715
diff
changeset
|
251 |
} |
80eb2192516a
simplified change_buffer (again, see 937826d702d5): no thread, just timer, rely on asynchronous commands_changed.post;
wenzelm
parents:
56715
diff
changeset
|
252 |
|
80eb2192516a
simplified change_buffer (again, see 937826d702d5): no thread, just timer, rely on asynchronous commands_changed.post;
wenzelm
parents:
56715
diff
changeset
|
253 |
|
56706
f2f53f7046f4
converted main session manager to Consumer_Thread: messages need to be consumed immediately, postponed_changes replaces implicit actor mailbox scanning;
wenzelm
parents:
56705
diff
changeset
|
254 |
/* 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:
44732
diff
changeset
|
255 |
|
56706
f2f53f7046f4
converted main session manager to Consumer_Thread: messages need to be consumed immediately, postponed_changes replaces implicit actor mailbox scanning;
wenzelm
parents:
56705
diff
changeset
|
256 |
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:
56705
diff
changeset
|
257 |
{ |
f2f53f7046f4
converted main session manager to Consumer_Thread: messages need to be consumed immediately, postponed_changes replaces implicit actor mailbox scanning;
wenzelm
parents:
56705
diff
changeset
|
258 |
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:
56705
diff
changeset
|
259 |
|
f2f53f7046f4
converted main session manager to Consumer_Thread: messages need to be consumed immediately, postponed_changes replaces implicit actor mailbox scanning;
wenzelm
parents:
56705
diff
changeset
|
260 |
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:
56704
diff
changeset
|
261 |
|
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:
57867
diff
changeset
|
262 |
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:
56705
diff
changeset
|
263 |
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:
56705
diff
changeset
|
264 |
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:
57867
diff
changeset
|
265 |
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:
56705
diff
changeset
|
266 |
} |
f2f53f7046f4
converted main session manager to Consumer_Thread: messages need to be consumed immediately, postponed_changes replaces implicit actor mailbox scanning;
wenzelm
parents:
56705
diff
changeset
|
267 |
} |
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:
44732
diff
changeset
|
268 |
|
56706
f2f53f7046f4
converted main session manager to Consumer_Thread: messages need to be consumed immediately, postponed_changes replaces implicit actor mailbox scanning;
wenzelm
parents:
56705
diff
changeset
|
269 |
|
56793
d5ab6a8799ce
more synchronized treatment of prover process, which might emit more messages before shutdown and requires manager to accept them;
wenzelm
parents:
56782
diff
changeset
|
270 |
/* prover process */ |
d5ab6a8799ce
more synchronized treatment of prover process, which might emit more messages before shutdown and requires manager to accept them;
wenzelm
parents:
56782
diff
changeset
|
271 |
|
d5ab6a8799ce
more synchronized treatment of prover process, which might emit more messages before shutdown and requires manager to accept them;
wenzelm
parents:
56782
diff
changeset
|
272 |
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:
56782
diff
changeset
|
273 |
{ |
61590 | 274 |
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:
56782
diff
changeset
|
275 |
|
d5ab6a8799ce
more synchronized treatment of prover process, which might emit more messages before shutdown and requires manager to accept them;
wenzelm
parents:
56782
diff
changeset
|
276 |
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:
56782
diff
changeset
|
277 |
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:
56782
diff
changeset
|
278 |
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:
56782
diff
changeset
|
279 |
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:
56782
diff
changeset
|
280 |
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:
56782
diff
changeset
|
281 |
} |
d5ab6a8799ce
more synchronized treatment of prover process, which might emit more messages before shutdown and requires manager to accept them;
wenzelm
parents:
56782
diff
changeset
|
282 |
|
d5ab6a8799ce
more synchronized treatment of prover process, which might emit more messages before shutdown and requires manager to accept them;
wenzelm
parents:
56782
diff
changeset
|
283 |
|
59366
e94df7f6b608
clarified build_theories: proper protocol handler;
wenzelm
parents:
59364
diff
changeset
|
284 |
/* protocol handlers */ |
e94df7f6b608
clarified build_theories: proper protocol handler;
wenzelm
parents:
59364
diff
changeset
|
285 |
|
65215 | 286 |
private val protocol_handlers = Protocol_Handlers.init(session) |
59366
e94df7f6b608
clarified build_theories: proper protocol handler;
wenzelm
parents:
59364
diff
changeset
|
287 |
|
e94df7f6b608
clarified build_theories: proper protocol handler;
wenzelm
parents:
59364
diff
changeset
|
288 |
def get_protocol_handler(name: String): Option[Session.Protocol_Handler] = |
65214 | 289 |
protocol_handlers.get(name) |
59366
e94df7f6b608
clarified build_theories: proper protocol handler;
wenzelm
parents:
59364
diff
changeset
|
290 |
|
59367 | 291 |
def add_protocol_handler(handler: Session.Protocol_Handler): Unit = |
65219 | 292 |
protocol_handlers.add(handler) |
65214 | 293 |
|
294 |
def add_protocol_handler(name: String): Unit = |
|
65219 | 295 |
protocol_handlers.add(name) |
59366
e94df7f6b608
clarified build_theories: proper protocol handler;
wenzelm
parents:
59364
diff
changeset
|
296 |
|
e94df7f6b608
clarified build_theories: proper protocol handler;
wenzelm
parents:
59364
diff
changeset
|
297 |
|
56706
f2f53f7046f4
converted main session manager to Consumer_Thread: messages need to be consumed immediately, postponed_changes replaces implicit actor mailbox scanning;
wenzelm
parents:
56705
diff
changeset
|
298 |
/* 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:
44732
diff
changeset
|
299 |
|
62115
57895801cb57
prune old versions more often, to reduce overall heap requirements;
wenzelm
parents:
62050
diff
changeset
|
300 |
private val delay_prune = |
57895801cb57
prune old versions more often, to reduce overall heap requirements;
wenzelm
parents:
62050
diff
changeset
|
301 |
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:
56735
diff
changeset
|
302 |
|
56706
f2f53f7046f4
converted main session manager to Consumer_Thread: messages need to be consumed immediately, postponed_changes replaces implicit actor mailbox scanning;
wenzelm
parents:
56705
diff
changeset
|
303 |
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:
56705
diff
changeset
|
304 |
{ |
52649
f45ab3e8211b
update_options with full update, e.g. required for re-assignment of Command.prints;
wenzelm
parents:
52563
diff
changeset
|
305 |
/* raw edits */ |
f45ab3e8211b
update_options with full update, e.g. required for re-assignment of Command.prints;
wenzelm
parents:
52563
diff
changeset
|
306 |
|
54521
744ea0025e11
clarified Document.Blobs environment vs. actual edits of auxiliary files;
wenzelm
parents:
54519
diff
changeset
|
307 |
def handle_raw_edits(doc_blobs: Document.Blobs, edits: List[Document.Edit_Text]) |
52649
f45ab3e8211b
update_options with full update, e.g. required for re-assignment of Command.prints;
wenzelm
parents:
52563
diff
changeset
|
308 |
//{{{ |
f45ab3e8211b
update_options with full update, e.g. required for re-assignment of Command.prints;
wenzelm
parents:
52563
diff
changeset
|
309 |
{ |
56793
d5ab6a8799ce
more synchronized treatment of prover process, which might emit more messages before shutdown and requires manager to accept them;
wenzelm
parents:
56782
diff
changeset
|
310 |
require(prover.defined) |
56712 | 311 |
|
52649
f45ab3e8211b
update_options with full update, e.g. required for re-assignment of Command.prints;
wenzelm
parents:
52563
diff
changeset
|
312 |
prover.get.discontinue_execution() |
f45ab3e8211b
update_options with full update, e.g. required for re-assignment of Command.prints;
wenzelm
parents:
52563
diff
changeset
|
313 |
|
56687 | 314 |
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:
52563
diff
changeset
|
315 |
val version = Future.promise[Document.Version] |
56711 | 316 |
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:
52563
diff
changeset
|
317 |
|
56715
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents:
56713
diff
changeset
|
318 |
raw_edits.post(Session.Raw_Edits(doc_blobs, edits)) |
56704 | 319 |
change_parser.send(Text_Edits(previous, doc_blobs, edits, version)) |
52649
f45ab3e8211b
update_options with full update, e.g. required for re-assignment of Command.prints;
wenzelm
parents:
52563
diff
changeset
|
320 |
} |
f45ab3e8211b
update_options with full update, e.g. required for re-assignment of Command.prints;
wenzelm
parents:
52563
diff
changeset
|
321 |
//}}} |
f45ab3e8211b
update_options with full update, e.g. required for re-assignment of Command.prints;
wenzelm
parents:
52563
diff
changeset
|
322 |
|
f45ab3e8211b
update_options with full update, e.g. required for re-assignment of Command.prints;
wenzelm
parents:
52563
diff
changeset
|
323 |
|
43716 | 324 |
/* resulting changes */ |
34809 | 325 |
|
56315 | 326 |
def handle_change(change: Session.Change) |
38221 | 327 |
//{{{ |
34809 | 328 |
{ |
56793
d5ab6a8799ce
more synchronized treatment of prover process, which might emit more messages before shutdown and requires manager to accept them;
wenzelm
parents:
56782
diff
changeset
|
329 |
require(prover.defined) |
56712 | 330 |
|
44383 | 331 |
def id_command(command: Command) |
43720 | 332 |
{ |
54519
5fed81762406
maintain blobs within document state: digest + text in ML, digest-only in Scala;
wenzelm
parents:
54443
diff
changeset
|
333 |
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:
57651
diff
changeset
|
334 |
(name, digest) <- command.blobs_defined |
56687 | 335 |
if !global_state.value.defined_blob(digest) |
54519
5fed81762406
maintain blobs within document state: digest + text in ML, digest-only in Scala;
wenzelm
parents:
54443
diff
changeset
|
336 |
} { |
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:
57651
diff
changeset
|
337 |
change.version.nodes(name).get_blob match { |
54519
5fed81762406
maintain blobs within document state: digest + text in ML, digest-only in Scala;
wenzelm
parents:
54443
diff
changeset
|
338 |
case Some(blob) => |
56687 | 339 |
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:
56316
diff
changeset
|
340 |
prover.get.define_blob(digest, blob.bytes) |
55783 | 341 |
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:
57651
diff
changeset
|
342 |
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:
54443
diff
changeset
|
343 |
} |
5fed81762406
maintain blobs within document state: digest + text in ML, digest-only in Scala;
wenzelm
parents:
54443
diff
changeset
|
344 |
} |
5fed81762406
maintain blobs within document state: digest + text in ML, digest-only in Scala;
wenzelm
parents:
54443
diff
changeset
|
345 |
|
56687 | 346 |
if (!global_state.value.defined_command(command.id)) { |
347 |
global_state.change(_.define_command(command)) |
|
44644
317e4962dd0f
clarified define_command: store name as structural information;
wenzelm
parents:
44616
diff
changeset
|
348 |
prover.get.define_command(command) |
43720 | 349 |
} |
350 |
} |
|
56315 | 351 |
change.doc_edits foreach { |
44383 | 352 |
case (_, edit) => |
353 |
edit foreach { case (c1, c2) => c1 foreach id_command; c2 foreach id_command } |
|
354 |
} |
|
43722 | 355 |
|
56687 | 356 |
val assignment = global_state.value.the_assignment(change.previous).check_finished |
357 |
global_state.change(_.define_version(change.version, assignment)) |
|
56315 | 358 |
prover.get.update(change.previous.id, change.version.id, change.doc_edits) |
56316
b1cf8ddc2e04
propagate deps_changed, to resolve missing files without requiring jEdit events (e.g. buffer load/save);
wenzelm
parents:
56315
diff
changeset
|
359 |
resources.commit(change) |
34809 | 360 |
} |
38221 | 361 |
//}}} |
34809 | 362 |
|
363 |
||
46772
be21f050eda4
tuned signature -- emphasize Isabelle_Process Input vs. Output;
wenzelm
parents:
46771
diff
changeset
|
364 |
/* prover output */ |
34809 | 365 |
|
56385 | 366 |
def handle_output(output: Prover.Output) |
38221 | 367 |
//{{{ |
34809 | 368 |
{ |
51662
3391a493f39a
just one timing protocol function, with 3 implementations: TTY/PG, PIDE/document, build;
wenzelm
parents:
51083
diff
changeset
|
369 |
def bad_output() |
43716 | 370 |
{ |
371 |
if (verbose) |
|
56782
433cf57550fa
more systematic Isabelle output, like in classic Isabelle/ML (without markup);
wenzelm
parents:
56775
diff
changeset
|
372 |
Output.warning("Ignoring bad prover output: " + output.message.toString) |
43716 | 373 |
} |
374 |
||
52531 | 375 |
def accumulate(state_id: Document_ID.Generic, message: XML.Elem) |
51662
3391a493f39a
just one timing protocol function, with 3 implementations: TTY/PG, PIDE/document, build;
wenzelm
parents:
51083
diff
changeset
|
376 |
{ |
3391a493f39a
just one timing protocol function, with 3 implementations: TTY/PG, PIDE/document, build;
wenzelm
parents:
51083
diff
changeset
|
377 |
try { |
56687 | 378 |
val st = global_state.change_result(_.accumulate(state_id, message)) |
56719
80eb2192516a
simplified change_buffer (again, see 937826d702d5): no thread, just timer, rely on asynchronous commands_changed.post;
wenzelm
parents:
56715
diff
changeset
|
379 |
change_buffer.invoke(false, List(st.command)) |
51662
3391a493f39a
just one timing protocol function, with 3 implementations: TTY/PG, PIDE/document, build;
wenzelm
parents:
51083
diff
changeset
|
380 |
} |
3391a493f39a
just one timing protocol function, with 3 implementations: TTY/PG, PIDE/document, build;
wenzelm
parents:
51083
diff
changeset
|
381 |
catch { |
3391a493f39a
just one timing protocol function, with 3 implementations: TTY/PG, PIDE/document, build;
wenzelm
parents:
51083
diff
changeset
|
382 |
case _: Document.State.Fail => bad_output() |
3391a493f39a
just one timing protocol function, with 3 implementations: TTY/PG, PIDE/document, build;
wenzelm
parents:
51083
diff
changeset
|
383 |
} |
3391a493f39a
just one timing protocol function, with 3 implementations: TTY/PG, PIDE/document, build;
wenzelm
parents:
51083
diff
changeset
|
384 |
} |
3391a493f39a
just one timing protocol function, with 3 implementations: TTY/PG, PIDE/document, build;
wenzelm
parents:
51083
diff
changeset
|
385 |
|
54442
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
wenzelm
parents:
53054
diff
changeset
|
386 |
output match { |
56385 | 387 |
case msg: Prover.Protocol_Output => |
65214 | 388 |
val handled = protocol_handlers.invoke(msg) |
54442
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
wenzelm
parents:
53054
diff
changeset
|
389 |
if (!handled) { |
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
wenzelm
parents:
53054
diff
changeset
|
390 |
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:
56782
diff
changeset
|
391 |
case Markup.Protocol_Handler(name) if prover.defined => |
65214 | 392 |
add_protocol_handler(name) |
54442
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
wenzelm
parents:
53054
diff
changeset
|
393 |
|
56793
d5ab6a8799ce
more synchronized treatment of prover process, which might emit more messages before shutdown and requires manager to accept them;
wenzelm
parents:
56782
diff
changeset
|
394 |
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:
53054
diff
changeset
|
395 |
val message = XML.elem(Markup.STATUS, List(XML.Elem(Markup.Timing(timing), Nil))) |
65218 | 396 |
accumulate(state_id, xml_cache.elem(message)) |
46122 | 397 |
|
54442
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
wenzelm
parents:
53054
diff
changeset
|
398 |
case Markup.Assign_Update => |
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
wenzelm
parents:
53054
diff
changeset
|
399 |
msg.text match { |
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
wenzelm
parents:
53054
diff
changeset
|
400 |
case Protocol.Assign_Update(id, update) => |
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
wenzelm
parents:
53054
diff
changeset
|
401 |
try { |
56687 | 402 |
val cmds = global_state.change_result(_.assign(id, update)) |
56719
80eb2192516a
simplified change_buffer (again, see 937826d702d5): no thread, just timer, rely on asynchronous commands_changed.post;
wenzelm
parents:
56715
diff
changeset
|
403 |
change_buffer.invoke(true, 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:
57867
diff
changeset
|
404 |
manager.send(Session.Change_Flush) |
54442
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
wenzelm
parents:
53054
diff
changeset
|
405 |
} |
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
wenzelm
parents:
53054
diff
changeset
|
406 |
catch { case _: Document.State.Fail => bad_output() } |
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
wenzelm
parents:
53054
diff
changeset
|
407 |
case _ => bad_output() |
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
wenzelm
parents:
53054
diff
changeset
|
408 |
} |
56771
28d62a5b07e8
more systematic delay_first discipline for change_buffer and prune_history;
wenzelm
parents:
56735
diff
changeset
|
409 |
delay_prune.invoke() |
46122 | 410 |
|
54442
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
wenzelm
parents:
53054
diff
changeset
|
411 |
case Markup.Removed_Versions => |
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
wenzelm
parents:
53054
diff
changeset
|
412 |
msg.text match { |
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
wenzelm
parents:
53054
diff
changeset
|
413 |
case Protocol.Removed(removed) => |
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
wenzelm
parents:
53054
diff
changeset
|
414 |
try { |
56687 | 415 |
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:
57867
diff
changeset
|
416 |
manager.send(Session.Change_Flush) |
54442
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
wenzelm
parents:
53054
diff
changeset
|
417 |
} |
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
wenzelm
parents:
53054
diff
changeset
|
418 |
catch { case _: Document.State.Fail => bad_output() } |
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
wenzelm
parents:
53054
diff
changeset
|
419 |
case _ => bad_output() |
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
wenzelm
parents:
53054
diff
changeset
|
420 |
} |
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
wenzelm
parents:
53054
diff
changeset
|
421 |
|
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
wenzelm
parents:
53054
diff
changeset
|
422 |
case Markup.ML_Statistics(props) => |
56715
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents:
56713
diff
changeset
|
423 |
statistics.post(Session.Statistics(props)) |
54442
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
wenzelm
parents:
53054
diff
changeset
|
424 |
|
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
wenzelm
parents:
53054
diff
changeset
|
425 |
case Markup.Task_Statistics(props) => |
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
wenzelm
parents:
53054
diff
changeset
|
426 |
// FIXME |
52111
1fd184eaa310
explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents:
52084
diff
changeset
|
427 |
|
54442
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
wenzelm
parents:
53054
diff
changeset
|
428 |
case _ => bad_output() |
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
wenzelm
parents:
53054
diff
changeset
|
429 |
} |
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
wenzelm
parents:
53054
diff
changeset
|
430 |
} |
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
wenzelm
parents:
53054
diff
changeset
|
431 |
case _ => |
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
wenzelm
parents:
53054
diff
changeset
|
432 |
output.properties match { |
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
wenzelm
parents:
53054
diff
changeset
|
433 |
case Position.Id(state_id) => |
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
wenzelm
parents:
53054
diff
changeset
|
434 |
accumulate(state_id, output.message) |
56210 | 435 |
|
54442
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
wenzelm
parents:
53054
diff
changeset
|
436 |
case _ if output.is_init => |
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
wenzelm
parents:
53054
diff
changeset
|
437 |
phase = Session.Ready |
56210 | 438 |
|
54442
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
wenzelm
parents:
53054
diff
changeset
|
439 |
case Markup.Return_Code(rc) if output.is_exit => |
65206 | 440 |
phase = Session.Terminated(rc) |
56793
d5ab6a8799ce
more synchronized treatment of prover process, which might emit more messages before shutdown and requires manager to accept them;
wenzelm
parents:
56782
diff
changeset
|
441 |
prover.reset |
56210 | 442 |
|
61376
93224745477f
output HTML text according to Isabelle/Scala Symbol.Interpretation;
wenzelm
parents:
60934
diff
changeset
|
443 |
case _ => |
93224745477f
output HTML text according to Isabelle/Scala Symbol.Interpretation;
wenzelm
parents:
60934
diff
changeset
|
444 |
raw_output_messages.post(output) |
44661
383c9d758a56
raw message function "assign_execs" avoids full overhead of decoding and caching message body;
wenzelm
parents:
44644
diff
changeset
|
445 |
} |
52111
1fd184eaa310
explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents:
52084
diff
changeset
|
446 |
} |
34809 | 447 |
} |
38221 | 448 |
//}}} |
34809 | 449 |
|
34820
a8ba6cde13e9
basic setup for synchronous / modal (!) prover startup;
wenzelm
parents:
34819
diff
changeset
|
450 |
|
56706
f2f53f7046f4
converted main session manager to Consumer_Thread: messages need to be consumed immediately, postponed_changes replaces implicit actor mailbox scanning;
wenzelm
parents:
56705
diff
changeset
|
451 |
/* 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:
56705
diff
changeset
|
452 |
|
56710
8f102c18eab7
more uniform warning/error handling, potentially with propagation to send_wait caller;
wenzelm
parents:
56709
diff
changeset
|
453 |
Consumer_Thread.fork[Any]("Session.manager", daemon = true) |
56709 | 454 |
{ |
455 |
case arg: Any => |
|
456 |
//{{{ |
|
457 |
arg match { |
|
56733
f7700146678d
manager is direct receiver of prover output -- discontinued old performance tuning (329320fc88df, 1baa5d19ac44);
wenzelm
parents:
56719
diff
changeset
|
458 |
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:
56772
diff
changeset
|
459 |
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:
56772
diff
changeset
|
460 |
raw_output_messages.post(output) |
56733
f7700146678d
manager is direct receiver of prover output -- discontinued old performance tuning (329320fc88df, 1baa5d19ac44);
wenzelm
parents:
56719
diff
changeset
|
461 |
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:
56772
diff
changeset
|
462 |
|
56733
f7700146678d
manager is direct receiver of prover output -- discontinued old performance tuning (329320fc88df, 1baa5d19ac44);
wenzelm
parents:
56719
diff
changeset
|
463 |
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:
56772
diff
changeset
|
464 |
syslog += output.message |
56733
f7700146678d
manager is direct receiver of prover output -- discontinued old performance tuning (329320fc88df, 1baa5d19ac44);
wenzelm
parents:
56719
diff
changeset
|
465 |
syslog_messages.post(output) |
f7700146678d
manager is direct receiver of prover output -- discontinued old performance tuning (329320fc88df, 1baa5d19ac44);
wenzelm
parents:
56719
diff
changeset
|
466 |
} |
56775
59f70b89e5fd
improved syslog performance -- avoid denial-of-service e.g. with threads_trace = 5 and active Syslog dockable;
wenzelm
parents:
56772
diff
changeset
|
467 |
|
56733
f7700146678d
manager is direct receiver of prover output -- discontinued old performance tuning (329320fc88df, 1baa5d19ac44);
wenzelm
parents:
56719
diff
changeset
|
468 |
all_messages.post(output) |
f7700146678d
manager is direct receiver of prover output -- discontinued old performance tuning (329320fc88df, 1baa5d19ac44);
wenzelm
parents:
56719
diff
changeset
|
469 |
|
f7700146678d
manager is direct receiver of prover output -- discontinued old performance tuning (329320fc88df, 1baa5d19ac44);
wenzelm
parents:
56719
diff
changeset
|
470 |
case input: Prover.Input => |
f7700146678d
manager is direct receiver of prover output -- discontinued old performance tuning (329320fc88df, 1baa5d19ac44);
wenzelm
parents:
56719
diff
changeset
|
471 |
all_messages.post(input) |
f7700146678d
manager is direct receiver of prover output -- discontinued old performance tuning (329320fc88df, 1baa5d19ac44);
wenzelm
parents:
56719
diff
changeset
|
472 |
|
62556
c115e69f457f
more abstract Session.start, without prover command-line;
wenzelm
parents:
62545
diff
changeset
|
473 |
case Start(start_prover) if !prover.defined => |
65207
004bc5968c2a
more strict Session.start: no restart from terminated session;
wenzelm
parents:
65206
diff
changeset
|
474 |
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:
56705
diff
changeset
|
475 |
|
56709 | 476 |
case Stop => |
65208
91c528cd376a
more robust Session.stop: idempotent, avoid conflict with startup;
wenzelm
parents:
65207
diff
changeset
|
477 |
delay_prune.revoke() |
91c528cd376a
more robust Session.stop: idempotent, avoid conflict with startup;
wenzelm
parents:
65207
diff
changeset
|
478 |
if (prover.defined) { |
65219 | 479 |
protocol_handlers.exit() |
56772 | 480 |
global_state.change(_ => Document.State.init) |
56709 | 481 |
prover.get.terminate |
482 |
} |
|
56706
f2f53f7046f4
converted main session manager to Consumer_Thread: messages need to be consumed immediately, postponed_changes replaces implicit actor mailbox scanning;
wenzelm
parents:
56705
diff
changeset
|
483 |
|
56771
28d62a5b07e8
more systematic delay_first discipline for change_buffer and prune_history;
wenzelm
parents:
56735
diff
changeset
|
484 |
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:
56782
diff
changeset
|
485 |
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:
57867
diff
changeset
|
486 |
val old_versions = global_state.change_result(_.remove_versions(prune_size)) |
59319 | 487 |
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:
56735
diff
changeset
|
488 |
} |
28d62a5b07e8
more systematic delay_first discipline for change_buffer and prune_history;
wenzelm
parents:
56735
diff
changeset
|
489 |
|
56709 | 490 |
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:
56782
diff
changeset
|
491 |
if (prover.defined && is_ready) { |
56709 | 492 |
prover.get.options(options) |
493 |
handle_raw_edits(Document.Blobs.empty, Nil) |
|
494 |
} |
|
56715
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents:
56713
diff
changeset
|
495 |
global_options.post(Session.Global_Options(options)) |
34809 | 496 |
|
56793
d5ab6a8799ce
more synchronized treatment of prover process, which might emit more messages before shutdown and requires manager to accept them;
wenzelm
parents:
56782
diff
changeset
|
497 |
case Cancel_Exec(exec_id) if prover.defined => |
56709 | 498 |
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:
56705
diff
changeset
|
499 |
|
56793
d5ab6a8799ce
more synchronized treatment of prover process, which might emit more messages before shutdown and requires manager to accept them;
wenzelm
parents:
56782
diff
changeset
|
500 |
case Session.Raw_Edits(doc_blobs, edits) if prover.defined => |
56709 | 501 |
handle_raw_edits(doc_blobs, edits) |
502 |
||
56793
d5ab6a8799ce
more synchronized treatment of prover process, which might emit more messages before shutdown and requires manager to accept them;
wenzelm
parents:
56782
diff
changeset
|
503 |
case Session.Dialog_Result(id, serial, result) if prover.defined => |
56709 | 504 |
prover.get.dialog_result(serial, result) |
505 |
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:
56705
diff
changeset
|
506 |
|
59364 | 507 |
case Session.Build_Theories(id, master_dir, theories) if prover.defined => |
508 |
prover.get.build_theories(id, master_dir, theories) |
|
59362 | 509 |
|
56793
d5ab6a8799ce
more synchronized treatment of prover process, which might emit more messages before shutdown and requires manager to accept them;
wenzelm
parents:
56782
diff
changeset
|
510 |
case Protocol_Command(name, args) if prover.defined => |
56709 | 511 |
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:
56705
diff
changeset
|
512 |
|
56793
d5ab6a8799ce
more synchronized treatment of prover process, which might emit more messages before shutdown and requires manager to accept them;
wenzelm
parents:
56782
diff
changeset
|
513 |
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:
57867
diff
changeset
|
514 |
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:
57867
diff
changeset
|
515 |
if (!state.removing_versions && state.is_assigned(change.previous)) |
56709 | 516 |
handle_change(change) |
517 |
else postponed_changes.store(change) |
|
57651
10df45dd14da
less warnings -- ignore potential prover startup/shutdown races;
wenzelm
parents:
56864
diff
changeset
|
518 |
|
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:
57867
diff
changeset
|
519 |
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:
57867
diff
changeset
|
520 |
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:
57867
diff
changeset
|
521 |
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:
57867
diff
changeset
|
522 |
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:
57867
diff
changeset
|
523 |
|
57651
10df45dd14da
less warnings -- ignore potential prover startup/shutdown races;
wenzelm
parents:
56864
diff
changeset
|
524 |
case bad => |
10df45dd14da
less warnings -- ignore potential prover startup/shutdown races;
wenzelm
parents:
56864
diff
changeset
|
525 |
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:
56705
diff
changeset
|
526 |
} |
56709 | 527 |
true |
528 |
//}}} |
|
529 |
} |
|
34777
91d6089cef88
class Session models full session, with or without prover process (cf. heaps, browser_info);
wenzelm
parents:
diff
changeset
|
530 |
} |
91d6089cef88
class Session models full session, with or without prover process (cf. heaps, browser_info);
wenzelm
parents:
diff
changeset
|
531 |
|
34809 | 532 |
|
56799 | 533 |
/* main operations */ |
534 |
||
535 |
def snapshot(name: Document.Node.Name = Document.Node.Name.empty, |
|
536 |
pending_edits: List[Text.Edit] = Nil): Document.Snapshot = |
|
537 |
global_state.value.snapshot(name, pending_edits) |
|
34809 | 538 |
|
62556
c115e69f457f
more abstract Session.start, without prover command-line;
wenzelm
parents:
62545
diff
changeset
|
539 |
def start(start_prover: Prover.Receiver => Prover) |
65207
004bc5968c2a
more strict Session.start: no restart from terminated session;
wenzelm
parents:
65206
diff
changeset
|
540 |
{ |
004bc5968c2a
more strict Session.start: no restart from terminated session;
wenzelm
parents:
65206
diff
changeset
|
541 |
_phase.change( |
004bc5968c2a
more strict Session.start: no restart from terminated session;
wenzelm
parents:
65206
diff
changeset
|
542 |
{ |
004bc5968c2a
more strict Session.start: no restart from terminated session;
wenzelm
parents:
65206
diff
changeset
|
543 |
case Session.Inactive => |
004bc5968c2a
more strict Session.start: no restart from terminated session;
wenzelm
parents:
65206
diff
changeset
|
544 |
manager.send(Start(start_prover)) |
65208
91c528cd376a
more robust Session.stop: idempotent, avoid conflict with startup;
wenzelm
parents:
65207
diff
changeset
|
545 |
post_phase(Session.Startup) |
65207
004bc5968c2a
more strict Session.start: no restart from terminated session;
wenzelm
parents:
65206
diff
changeset
|
546 |
case phase => error("Cannot start prover in phase " + quote(phase.print)) |
004bc5968c2a
more strict Session.start: no restart from terminated session;
wenzelm
parents:
65206
diff
changeset
|
547 |
}) |
004bc5968c2a
more strict Session.start: no restart from terminated session;
wenzelm
parents:
65206
diff
changeset
|
548 |
} |
45076 | 549 |
|
65209 | 550 |
def stop(): Int = |
50117 | 551 |
{ |
65208
91c528cd376a
more robust Session.stop: idempotent, avoid conflict with startup;
wenzelm
parents:
65207
diff
changeset
|
552 |
val was_ready = |
91c528cd376a
more robust Session.stop: idempotent, avoid conflict with startup;
wenzelm
parents:
65207
diff
changeset
|
553 |
_phase.guarded_access(phase => |
91c528cd376a
more robust Session.stop: idempotent, avoid conflict with startup;
wenzelm
parents:
65207
diff
changeset
|
554 |
phase match { |
91c528cd376a
more robust Session.stop: idempotent, avoid conflict with startup;
wenzelm
parents:
65207
diff
changeset
|
555 |
case Session.Startup | Session.Shutdown => None |
91c528cd376a
more robust Session.stop: idempotent, avoid conflict with startup;
wenzelm
parents:
65207
diff
changeset
|
556 |
case Session.Terminated(_) => Some((false, phase)) |
91c528cd376a
more robust Session.stop: idempotent, avoid conflict with startup;
wenzelm
parents:
65207
diff
changeset
|
557 |
case Session.Inactive => Some((false, post_phase(Session.Terminated(0)))) |
91c528cd376a
more robust Session.stop: idempotent, avoid conflict with startup;
wenzelm
parents:
65207
diff
changeset
|
558 |
case Session.Ready => Some((true, post_phase(Session.Shutdown))) |
91c528cd376a
more robust Session.stop: idempotent, avoid conflict with startup;
wenzelm
parents:
65207
diff
changeset
|
559 |
}) |
91c528cd376a
more robust Session.stop: idempotent, avoid conflict with startup;
wenzelm
parents:
65207
diff
changeset
|
560 |
if (was_ready) manager.send_wait(Stop) |
56793
d5ab6a8799ce
more synchronized treatment of prover process, which might emit more messages before shutdown and requires manager to accept them;
wenzelm
parents:
56782
diff
changeset
|
561 |
prover.await_reset() |
65208
91c528cd376a
more robust Session.stop: idempotent, avoid conflict with startup;
wenzelm
parents:
65207
diff
changeset
|
562 |
|
56704 | 563 |
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:
56705
diff
changeset
|
564 |
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:
56705
diff
changeset
|
565 |
manager.shutdown() |
56715
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents:
56713
diff
changeset
|
566 |
dispatcher.shutdown() |
65209 | 567 |
|
568 |
phase match { |
|
569 |
case Session.Terminated(rc) => rc |
|
570 |
case phase => error("Bad session phase after shutdown: " + quote(phase.print)) |
|
571 |
} |
|
50117 | 572 |
} |
38841
4df7b76249a0
include Document.History in Document.State -- just one universal session state maintained by main actor;
wenzelm
parents:
38722
diff
changeset
|
573 |
|
53054
8365d7fca3de
public access for protocol handlers and protocol commands -- to be used within reason;
wenzelm
parents:
52931
diff
changeset
|
574 |
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:
56705
diff
changeset
|
575 |
{ manager.send(Protocol_Command(name, args.toList)) } |
53054
8365d7fca3de
public access for protocol handlers and protocol commands -- to be used within reason;
wenzelm
parents:
52931
diff
changeset
|
576 |
|
56706
f2f53f7046f4
converted main session manager to Consumer_Thread: messages need to be consumed immediately, postponed_changes replaces implicit actor mailbox scanning;
wenzelm
parents:
56705
diff
changeset
|
577 |
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:
56705
diff
changeset
|
578 |
{ manager.send(Cancel_Exec(exec_id)) } |
52931
ac6648c0c0fb
cancel_query via direct access to the exec_id of the running query process;
wenzelm
parents:
52800
diff
changeset
|
579 |
|
54521
744ea0025e11
clarified Document.Blobs environment vs. actual edits of auxiliary files;
wenzelm
parents:
54519
diff
changeset
|
580 |
def update(doc_blobs: Document.Blobs, edits: List[Document.Edit_Text]) |
59319 | 581 |
{ if (edits.nonEmpty) manager.send_wait(Session.Raw_Edits(doc_blobs, edits)) } |
50498 | 582 |
|
52084
573e80625c78
more explicit Session.update_options as source of Global_Options event;
wenzelm
parents:
51818
diff
changeset
|
583 |
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:
56705
diff
changeset
|
584 |
{ manager.send_wait(Update_Options(options)) } |
52084
573e80625c78
more explicit Session.update_options as source of Global_Options event;
wenzelm
parents:
51818
diff
changeset
|
585 |
|
52531 | 586 |
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:
56705
diff
changeset
|
587 |
{ manager.send(Session.Dialog_Result(id, serial, result)) } |
59362 | 588 |
|
59364 | 589 |
def build_theories(id: String, master_dir: Path, theories: List[(Options, List[Path])]) |
590 |
{ manager.send(Session.Build_Theories(id, master_dir, theories)) } |
|
34777
91d6089cef88
class Session models full session, with or without prover process (cf. heaps, browser_info);
wenzelm
parents:
diff
changeset
|
591 |
} |