author | wenzelm |
Sat, 01 Jun 2024 12:31:06 +0200 | |
changeset 80224 | db92e0b6a11a |
parent 80121 | 05cec0a3c63d |
child 80270 | 1d4300506338 |
permissions | -rw-r--r-- |
79502 | 1 |
/* Title: Pure/Build/build_job.scala |
72662 | 2 |
Author: Makarius |
3 |
||
4 |
Build job running prover process, with rudimentary PIDE session. |
|
5 |
*/ |
|
6 |
||
7 |
package isabelle |
|
8 |
||
9 |
||
10 |
import scala.collection.mutable |
|
11 |
||
12 |
||
77297
226a880d0423
clarified types: support a variety of Build_Job instances;
wenzelm
parents:
77294
diff
changeset
|
13 |
trait Build_Job { |
77486
032c76e04475
clarified execution context: main work happens within Future.thread;
wenzelm
parents:
77485
diff
changeset
|
14 |
def cancel(): Unit = () |
77298 | 15 |
def is_finished: Boolean = false |
79887
17220dc05991
revert most parts of 0e79fa88cab6: somewhat ambitious attempt to move towards "editing" builds via added/canceled workers;
wenzelm
parents:
79718
diff
changeset
|
16 |
def join: Build_Job.Result = Build_Job.no_result |
77297
226a880d0423
clarified types: support a variety of Build_Job instances;
wenzelm
parents:
77294
diff
changeset
|
17 |
} |
226a880d0423
clarified types: support a variety of Build_Job instances;
wenzelm
parents:
77294
diff
changeset
|
18 |
|
75393 | 19 |
object Build_Job { |
78530 | 20 |
sealed case class Result(process_result: Process_Result, output_shasum: SHA1.Shasum) |
79887
17220dc05991
revert most parts of 0e79fa88cab6: somewhat ambitious attempt to move towards "editing" builds via added/canceled workers;
wenzelm
parents:
79718
diff
changeset
|
21 |
val no_result: Result = Result(Process_Result.undefined, SHA1.no_shasum) |
78530 | 22 |
|
23 |
||
77396 | 24 |
/* build session */ |
25 |
||
77474 | 26 |
def start_session( |
78421 | 27 |
build_context: Build.Context, |
78237
c2c59de57df9
clarified static Build_Process.Context vs. dynamic Build_Process.State;
wenzelm
parents:
78213
diff
changeset
|
28 |
session_context: Session_Context, |
77505 | 29 |
progress: Progress, |
30 |
log: Logger, |
|
78372 | 31 |
server: SSH.Server, |
77474 | 32 |
session_background: Sessions.Background, |
78237
c2c59de57df9
clarified static Build_Process.Context vs. dynamic Build_Process.State;
wenzelm
parents:
78213
diff
changeset
|
33 |
sources_shasum: SHA1.Shasum, |
77474 | 34 |
input_shasum: SHA1.Shasum, |
78237
c2c59de57df9
clarified static Build_Process.Context vs. dynamic Build_Process.State;
wenzelm
parents:
78213
diff
changeset
|
35 |
node_info: Host.Node_Info, |
c2c59de57df9
clarified static Build_Process.Context vs. dynamic Build_Process.State;
wenzelm
parents:
78213
diff
changeset
|
36 |
store_heap: Boolean |
77505 | 37 |
): Session_Job = { |
78372 | 38 |
new Session_Job(build_context, session_context, progress, log, server, |
78237
c2c59de57df9
clarified static Build_Process.Context vs. dynamic Build_Process.State;
wenzelm
parents:
78213
diff
changeset
|
39 |
session_background, sources_shasum, input_shasum, node_info, store_heap) |
77505 | 40 |
} |
77474 | 41 |
|
77442 | 42 |
object Session_Context { |
43 |
def load( |
|
78374 | 44 |
database_server: Option[SQL.Database], |
77529
40ccee0fe19a
separate static build_uuid from dynamic worker_uuid, to allow multiple worker processes participate in one build process;
wenzelm
parents:
77521
diff
changeset
|
45 |
build_uuid: String, |
77444
0c704aba71e3
clarified signature: reduce explicit access to static Sessions.Structure;
wenzelm
parents:
77442
diff
changeset
|
46 |
name: String, |
0c704aba71e3
clarified signature: reduce explicit access to static Sessions.Structure;
wenzelm
parents:
77442
diff
changeset
|
47 |
deps: List[String], |
0c704aba71e3
clarified signature: reduce explicit access to static Sessions.Structure;
wenzelm
parents:
77442
diff
changeset
|
48 |
ancestors: List[String], |
77610
3b09ae9e40cb
clarified session prefs (or "options" within the database);
wenzelm
parents:
77587
diff
changeset
|
49 |
session_prefs: String, |
77458 | 50 |
sources_shasum: SHA1.Shasum, |
77442 | 51 |
timeout: Time, |
78178 | 52 |
store: Store, |
78374 | 53 |
progress: Progress = new Progress |
77442 | 54 |
): Session_Context = { |
77450 | 55 |
def default: Session_Context = |
77496 | 56 |
Session_Context( |
77610
3b09ae9e40cb
clarified session prefs (or "options" within the database);
wenzelm
parents:
77587
diff
changeset
|
57 |
name, deps, ancestors, session_prefs, sources_shasum, timeout, |
3b09ae9e40cb
clarified session prefs (or "options" within the database);
wenzelm
parents:
77587
diff
changeset
|
58 |
Time.zero, Bytes.empty, build_uuid) |
77444
0c704aba71e3
clarified signature: reduce explicit access to static Sessions.Structure;
wenzelm
parents:
77442
diff
changeset
|
59 |
|
78374 | 60 |
def read(db: SQL.Database): Session_Context = { |
61 |
def ignore_error(msg: String) = { |
|
62 |
progress.echo_warning( |
|
63 |
"Ignoring bad database " + db + " for session " + quote(name) + |
|
64 |
if_proper(msg, ":\n" + msg)) |
|
65 |
default |
|
66 |
} |
|
67 |
try { |
|
68 |
val command_timings = store.read_command_timings(db, name) |
|
69 |
val elapsed = |
|
70 |
store.read_session_timing(db, name) match { |
|
71 |
case Markup.Elapsed(s) => Time.seconds(s) |
|
72 |
case _ => Time.zero |
|
73 |
} |
|
74 |
new Session_Context( |
|
75 |
name, deps, ancestors, session_prefs, sources_shasum, timeout, |
|
76 |
elapsed, command_timings, build_uuid) |
|
77 |
} |
|
78 |
catch { |
|
79 |
case ERROR(msg) => ignore_error(msg) |
|
80 |
case exn: java.lang.Error => ignore_error(Exn.message(exn)) |
|
81 |
case _: XML.Error => ignore_error("XML.Error") |
|
82 |
} |
|
83 |
} |
|
84 |
||
85 |
database_server match { |
|
86 |
case Some(db) => if (store.session_info_exists(db)) read(db) else default |
|
87 |
case None => using_option(store.try_open_database(name))(read) getOrElse default |
|
77442 | 88 |
} |
89 |
} |
|
90 |
} |
|
91 |
||
77496 | 92 |
sealed case class Session_Context( |
93 |
name: String, |
|
94 |
deps: List[String], |
|
95 |
ancestors: List[String], |
|
77610
3b09ae9e40cb
clarified session prefs (or "options" within the database);
wenzelm
parents:
77587
diff
changeset
|
96 |
session_prefs: String, |
77496 | 97 |
sources_shasum: SHA1.Shasum, |
98 |
timeout: Time, |
|
99 |
old_time: Time, |
|
100 |
old_command_timings_blob: Bytes, |
|
77529
40ccee0fe19a
separate static build_uuid from dynamic worker_uuid, to allow multiple worker processes participate in one build process;
wenzelm
parents:
77521
diff
changeset
|
101 |
build_uuid: String |
77652
5f706f7c624b
more thorough synchronization of internal "_state" vs. external "_database";
wenzelm
parents:
77651
diff
changeset
|
102 |
) extends Library.Named |
77442 | 103 |
|
77474 | 104 |
class Session_Job private[Build_Job]( |
78421 | 105 |
build_context: Build.Context, |
78237
c2c59de57df9
clarified static Build_Process.Context vs. dynamic Build_Process.State;
wenzelm
parents:
78213
diff
changeset
|
106 |
session_context: Session_Context, |
77505 | 107 |
progress: Progress, |
108 |
log: Logger, |
|
78372 | 109 |
server: SSH.Server, |
77297
226a880d0423
clarified types: support a variety of Build_Job instances;
wenzelm
parents:
77294
diff
changeset
|
110 |
session_background: Sessions.Background, |
78237
c2c59de57df9
clarified static Build_Process.Context vs. dynamic Build_Process.State;
wenzelm
parents:
78213
diff
changeset
|
111 |
sources_shasum: SHA1.Shasum, |
77460
ccca589d7027
tuned signature: support general Build_Job instances;
wenzelm
parents:
77458
diff
changeset
|
112 |
input_shasum: SHA1.Shasum, |
78237
c2c59de57df9
clarified static Build_Process.Context vs. dynamic Build_Process.State;
wenzelm
parents:
78213
diff
changeset
|
113 |
node_info: Host.Node_Info, |
c2c59de57df9
clarified static Build_Process.Context vs. dynamic Build_Process.State;
wenzelm
parents:
78213
diff
changeset
|
114 |
store_heap: Boolean |
77297
226a880d0423
clarified types: support a variety of Build_Job instances;
wenzelm
parents:
77294
diff
changeset
|
115 |
) extends Build_Job { |
226a880d0423
clarified types: support a variety of Build_Job instances;
wenzelm
parents:
77294
diff
changeset
|
116 |
def session_name: String = session_background.session_name |
77349
5a84de89170d
more operations to support management of jobs, e.g. from external database;
wenzelm
parents:
77298
diff
changeset
|
117 |
|
79887
17220dc05991
revert most parts of 0e79fa88cab6: somewhat ambitious attempt to move towards "editing" builds via added/canceled workers;
wenzelm
parents:
79718
diff
changeset
|
118 |
private val future_result: Future[Result] = |
77297
226a880d0423
clarified types: support a variety of Build_Job instances;
wenzelm
parents:
77294
diff
changeset
|
119 |
Future.thread("build", uninterruptible = true) { |
78359
cb0a90df4871
prefer asynchronous operations: reduce time spent within synchronized_database("Build_Process.start_job");
wenzelm
parents:
78280
diff
changeset
|
120 |
val info = session_background.sessions_structure(session_name) |
78842
eb572f7b6689
prefer extensible next_node_info in build process over process_options in build engine (which needs the final node info anyway);
Fabian Huch <huch@in.tum.de>
parents:
78674
diff
changeset
|
121 |
val options = Host.node_options(info.options, node_info) |
78359
cb0a90df4871
prefer asynchronous operations: reduce time spent within synchronized_database("Build_Process.start_job");
wenzelm
parents:
78280
diff
changeset
|
122 |
val store = build_context.store |
cb0a90df4871
prefer asynchronous operations: reduce time spent within synchronized_database("Build_Process.start_job");
wenzelm
parents:
78280
diff
changeset
|
123 |
|
78372 | 124 |
using_optional(store.maybe_open_database_server(server = server)) { database_server => |
125 |
store.clean_output(database_server, session_name, session_init = true) |
|
77297
226a880d0423
clarified types: support a variety of Build_Job instances;
wenzelm
parents:
77294
diff
changeset
|
126 |
|
78372 | 127 |
val session_sources = |
128 |
Store.Sources.load(session_background.base, cache = store.cache.compress) |
|
77297
226a880d0423
clarified types: support a variety of Build_Job instances;
wenzelm
parents:
77294
diff
changeset
|
129 |
|
78372 | 130 |
val env = |
131 |
Isabelle_System.settings( |
|
132 |
List("ISABELLE_ML_DEBUGGER" -> options.bool("ML_debugger").toString)) |
|
77297
226a880d0423
clarified types: support a variety of Build_Job instances;
wenzelm
parents:
77294
diff
changeset
|
133 |
|
78372 | 134 |
val session_heaps = |
135 |
session_background.info.parent match { |
|
136 |
case None => Nil |
|
137 |
case Some(logic) => ML_Process.session_heaps(store, session_background, logic = logic) |
|
77297
226a880d0423
clarified types: support a variety of Build_Job instances;
wenzelm
parents:
77294
diff
changeset
|
138 |
} |
226a880d0423
clarified types: support a variety of Build_Job instances;
wenzelm
parents:
77294
diff
changeset
|
139 |
|
78372 | 140 |
val use_prelude = if (session_heaps.isEmpty) Thy_Header.ml_roots.map(_._1) else Nil |
77297
226a880d0423
clarified types: support a variety of Build_Job instances;
wenzelm
parents:
77294
diff
changeset
|
141 |
|
78372 | 142 |
val eval_store = |
143 |
if (store_heap) { |
|
144 |
(if (info.theories.nonEmpty) List("ML_Heap.share_common_data ()") else Nil) ::: |
|
145 |
List("ML_Heap.save_child " + |
|
146 |
ML_Syntax.print_string_bytes(File.platform_path(store.output_heap(session_name)))) |
|
147 |
} |
|
148 |
else Nil |
|
77297
226a880d0423
clarified types: support a variety of Build_Job instances;
wenzelm
parents:
77294
diff
changeset
|
149 |
|
78372 | 150 |
def session_blobs(node_name: Document.Node.Name): List[(Command.Blob, Document.Blobs.Item)] = |
151 |
session_background.base.theory_load_commands.get(node_name.theory) match { |
|
152 |
case None => Nil |
|
153 |
case Some(spans) => |
|
154 |
val syntax = session_background.base.theory_syntax(node_name) |
|
155 |
val master_dir = Path.explode(node_name.master_dir) |
|
156 |
for (span <- spans; file <- span.loaded_files(syntax).files) |
|
157 |
yield { |
|
158 |
val src_path = Path.explode(file) |
|
159 |
val blob_name = Document.Node.Name(File.symbolic_path(master_dir + src_path)) |
|
77297
226a880d0423
clarified types: support a variety of Build_Job instances;
wenzelm
parents:
77294
diff
changeset
|
160 |
|
78372 | 161 |
val bytes = session_sources(blob_name.node).bytes |
162 |
val text = bytes.text |
|
163 |
val chunk = Symbol.Text_Chunk(text) |
|
77297
226a880d0423
clarified types: support a variety of Build_Job instances;
wenzelm
parents:
77294
diff
changeset
|
164 |
|
78372 | 165 |
Command.Blob(blob_name, src_path, Some((SHA1.digest(bytes), chunk))) -> |
166 |
Document.Blobs.Item(bytes, text, chunk, changed = false) |
|
167 |
} |
|
77297
226a880d0423
clarified types: support a variety of Build_Job instances;
wenzelm
parents:
77294
diff
changeset
|
168 |
} |
226a880d0423
clarified types: support a variety of Build_Job instances;
wenzelm
parents:
77294
diff
changeset
|
169 |
|
77486
032c76e04475
clarified execution context: main work happens within Future.thread;
wenzelm
parents:
77485
diff
changeset
|
170 |
|
78372 | 171 |
/* session */ |
77486
032c76e04475
clarified execution context: main work happens within Future.thread;
wenzelm
parents:
77485
diff
changeset
|
172 |
|
78372 | 173 |
val resources = |
174 |
new Resources(session_background, log = log, |
|
175 |
command_timings = |
|
176 |
Properties.uncompress(session_context.old_command_timings_blob, cache = store.cache)) |
|
77485 | 177 |
|
78372 | 178 |
val session = |
179 |
new Session(options, resources) { |
|
180 |
override val cache: Term.Cache = store.cache |
|
77297
226a880d0423
clarified types: support a variety of Build_Job instances;
wenzelm
parents:
77294
diff
changeset
|
181 |
|
78372 | 182 |
override def build_blobs_info(node_name: Document.Node.Name): Command.Blobs_Info = |
183 |
Command.Blobs_Info.make(session_blobs(node_name)) |
|
184 |
||
185 |
override def build_blobs(node_name: Document.Node.Name): Document.Blobs = |
|
186 |
Document.Blobs.make(session_blobs(node_name)) |
|
187 |
} |
|
188 |
||
189 |
object Build_Session_Errors { |
|
190 |
private val promise: Promise[List[String]] = Future.promise |
|
191 |
||
192 |
def result: Exn.Result[List[String]] = promise.join_result |
|
193 |
def cancel(): Unit = promise.cancel() |
|
194 |
def apply(errs: List[String]): Unit = { |
|
195 |
try { promise.fulfill(errs) } |
|
196 |
catch { case _: IllegalStateException => } |
|
77297
226a880d0423
clarified types: support a variety of Build_Job instances;
wenzelm
parents:
77294
diff
changeset
|
197 |
} |
226a880d0423
clarified types: support a variety of Build_Job instances;
wenzelm
parents:
77294
diff
changeset
|
198 |
} |
226a880d0423
clarified types: support a variety of Build_Job instances;
wenzelm
parents:
77294
diff
changeset
|
199 |
|
78372 | 200 |
val export_consumer = |
201 |
Export.consumer(store.open_database(session_name, output = true, server = server), |
|
202 |
store.cache, progress = progress) |
|
77297
226a880d0423
clarified types: support a variety of Build_Job instances;
wenzelm
parents:
77294
diff
changeset
|
203 |
|
78372 | 204 |
val stdout = new StringBuilder(1000) |
205 |
val stderr = new StringBuilder(1000) |
|
206 |
val command_timings = new mutable.ListBuffer[Properties.T] |
|
207 |
val theory_timings = new mutable.ListBuffer[Properties.T] |
|
208 |
val session_timings = new mutable.ListBuffer[Properties.T] |
|
209 |
val runtime_statistics = new mutable.ListBuffer[Properties.T] |
|
210 |
val task_statistics = new mutable.ListBuffer[Properties.T] |
|
211 |
||
212 |
def fun( |
|
213 |
name: String, |
|
214 |
acc: mutable.ListBuffer[Properties.T], |
|
215 |
unapply: Properties.T => Option[Properties.T] |
|
216 |
): (String, Session.Protocol_Function) = { |
|
217 |
name -> ((msg: Prover.Protocol_Output) => |
|
218 |
unapply(msg.properties) match { |
|
219 |
case Some(props) => acc += props; true |
|
220 |
case _ => false |
|
221 |
}) |
|
77485 | 222 |
} |
223 |
||
78372 | 224 |
session.init_protocol_handler(new Session.Protocol_Handler { |
225 |
override def exit(): Unit = Build_Session_Errors.cancel() |
|
226 |
||
227 |
private def build_session_finished(msg: Prover.Protocol_Output): Boolean = { |
|
228 |
val (rc, errors) = |
|
229 |
try { |
|
230 |
val (rc, errs) = { |
|
231 |
import XML.Decode._ |
|
232 |
pair(int, list(x => x))(Symbol.decode_yxml(msg.text)) |
|
233 |
} |
|
234 |
val errors = |
|
235 |
for (err <- errs) yield { |
|
236 |
val prt = Protocol_Message.expose_no_reports(err) |
|
237 |
Pretty.string_of(prt, metric = Symbol.Metric) |
|
238 |
} |
|
239 |
(rc, errors) |
|
240 |
} |
|
241 |
catch { case ERROR(err) => (Process_Result.RC.failure, List(err)) } |
|
242 |
||
243 |
session.protocol_command("Prover.stop", rc.toString) |
|
244 |
Build_Session_Errors(errors) |
|
245 |
true |
|
246 |
} |
|
77297
226a880d0423
clarified types: support a variety of Build_Job instances;
wenzelm
parents:
77294
diff
changeset
|
247 |
|
78372 | 248 |
private def loading_theory(msg: Prover.Protocol_Output): Boolean = |
249 |
msg.properties match { |
|
250 |
case Markup.Loading_Theory(Markup.Name(name)) => |
|
251 |
progress.theory(Progress.Theory(name, session = session_name)) |
|
252 |
false |
|
253 |
case _ => false |
|
254 |
} |
|
255 |
||
256 |
private def export_(msg: Prover.Protocol_Output): Boolean = |
|
257 |
msg.properties match { |
|
258 |
case Protocol.Export(args) => |
|
259 |
export_consumer.make_entry(session_name, args, msg.chunk) |
|
260 |
true |
|
261 |
case _ => false |
|
262 |
} |
|
263 |
||
264 |
override val functions: Session.Protocol_Functions = |
|
265 |
List( |
|
266 |
Markup.Build_Session_Finished.name -> build_session_finished, |
|
267 |
Markup.Loading_Theory.name -> loading_theory, |
|
268 |
Markup.EXPORT -> export_, |
|
269 |
fun(Markup.Theory_Timing.name, theory_timings, Markup.Theory_Timing.unapply), |
|
270 |
fun(Markup.Session_Timing.name, session_timings, Markup.Session_Timing.unapply), |
|
271 |
fun(Markup.Task_Statistics.name, task_statistics, Markup.Task_Statistics.unapply)) |
|
272 |
}) |
|
273 |
||
274 |
session.command_timings += Session.Consumer("command_timings") { |
|
275 |
case Session.Command_Timing(props) => |
|
276 |
for { |
|
277 |
elapsed <- Markup.Elapsed.unapply(props) |
|
278 |
elapsed_time = Time.seconds(elapsed) |
|
79692 | 279 |
if elapsed_time.is_relevant && |
280 |
elapsed_time >= options.seconds("command_timing_threshold") |
|
78372 | 281 |
} command_timings += props.filter(Markup.command_timing_property) |
282 |
} |
|
77297
226a880d0423
clarified types: support a variety of Build_Job instances;
wenzelm
parents:
77294
diff
changeset
|
283 |
|
78372 | 284 |
session.runtime_statistics += Session.Consumer("ML_statistics") { |
285 |
case Session.Runtime_Statistics(props) => runtime_statistics += props |
|
286 |
} |
|
287 |
||
288 |
session.finished_theories += Session.Consumer[Document.Snapshot]("finished_theories") { |
|
289 |
case snapshot => |
|
290 |
if (!progress.stopped) { |
|
291 |
def export_(name: String, xml: XML.Body, compress: Boolean = true): Unit = { |
|
292 |
if (!progress.stopped) { |
|
293 |
val theory_name = snapshot.node_name.theory |
|
294 |
val args = |
|
79692 | 295 |
Protocol.Export.Args( |
296 |
theory_name = theory_name, name = name, compress = compress) |
|
78372 | 297 |
val body = Bytes(Symbol.encode(YXML.string_of_body(xml))) |
298 |
export_consumer.make_entry(session_name, args, body) |
|
77297
226a880d0423
clarified types: support a variety of Build_Job instances;
wenzelm
parents:
77294
diff
changeset
|
299 |
} |
78372 | 300 |
} |
301 |
def export_text(name: String, text: String, compress: Boolean = true): Unit = |
|
302 |
export_(name, List(XML.Text(text)), compress = compress) |
|
303 |
||
304 |
for (command <- snapshot.snippet_command) { |
|
305 |
export_text(Export.DOCUMENT_ID, command.id.toString, compress = false) |
|
306 |
} |
|
307 |
||
308 |
export_text(Export.FILES, |
|
309 |
cat_lines(snapshot.node_files.map(name => File.symbolic_path(name.path))), |
|
310 |
compress = false) |
|
311 |
||
312 |
for ((blob_name, i) <- snapshot.node_files.tail.zipWithIndex) { |
|
313 |
val xml = snapshot.switch(blob_name).xml_markup() |
|
314 |
export_(Export.MARKUP + (i + 1), xml) |
|
315 |
} |
|
316 |
export_(Export.MARKUP, snapshot.xml_markup()) |
|
317 |
export_(Export.MESSAGES, snapshot.messages.map(_._1)) |
|
77297
226a880d0423
clarified types: support a variety of Build_Job instances;
wenzelm
parents:
77294
diff
changeset
|
318 |
} |
226a880d0423
clarified types: support a variety of Build_Job instances;
wenzelm
parents:
77294
diff
changeset
|
319 |
} |
78372 | 320 |
|
321 |
session.all_messages += Session.Consumer[Any]("build_session_output") { |
|
322 |
case msg: Prover.Output => |
|
323 |
val message = msg.message |
|
324 |
if (msg.is_system) resources.log(Protocol.message_text(message)) |
|
325 |
||
326 |
if (msg.is_stdout) { |
|
327 |
stdout ++= Symbol.encode(XML.content(message)) |
|
328 |
} |
|
329 |
else if (msg.is_stderr) { |
|
330 |
stderr ++= Symbol.encode(XML.content(message)) |
|
331 |
} |
|
332 |
else if (msg.is_exit) { |
|
333 |
val err = |
|
334 |
"Prover terminated" + |
|
335 |
(msg.properties match { |
|
336 |
case Markup.Process_Result(result) => ": " + result.print_rc |
|
337 |
case _ => "" |
|
338 |
}) |
|
339 |
Build_Session_Errors(List(err)) |
|
340 |
} |
|
341 |
case _ => |
|
77297
226a880d0423
clarified types: support a variety of Build_Job instances;
wenzelm
parents:
77294
diff
changeset
|
342 |
} |
226a880d0423
clarified types: support a variety of Build_Job instances;
wenzelm
parents:
77294
diff
changeset
|
343 |
|
78372 | 344 |
build_context.session_setup(session_name, session) |
345 |
||
346 |
val eval_main = Command_Line.ML_tool("Isabelle_Process.init_build ()" :: eval_store) |
|
347 |
||
77486
032c76e04475
clarified execution context: main work happens within Future.thread;
wenzelm
parents:
77485
diff
changeset
|
348 |
|
78372 | 349 |
/* process */ |
350 |
||
351 |
val process = |
|
352 |
Isabelle_Process.start(options, session, session_background, session_heaps, |
|
80224
db92e0b6a11a
clarified signature: prefer symbolic isabelle.Path over physical java.io.File;
wenzelm
parents:
80121
diff
changeset
|
353 |
use_prelude = use_prelude, eval_main = eval_main, cwd = info.dir, env = env) |
78372 | 354 |
|
355 |
val timeout_request: Option[Event_Timer.Request] = |
|
356 |
if (info.timeout_ignored) None |
|
357 |
else Some(Event_Timer.request(Time.now() + info.timeout) { process.terminate() }) |
|
77486
032c76e04475
clarified execution context: main work happens within Future.thread;
wenzelm
parents:
77485
diff
changeset
|
358 |
|
78372 | 359 |
val build_errors = |
360 |
Isabelle_Thread.interrupt_handler(_ => process.terminate()) { |
|
361 |
Exn.capture { process.await_startup() } match { |
|
362 |
case Exn.Res(_) => |
|
363 |
val resources_yxml = resources.init_session_yxml |
|
364 |
val encode_options: XML.Encode.T[Options] = |
|
365 |
options => session.prover_options(options).encode |
|
366 |
val args_yxml = |
|
367 |
YXML.string_of_body( |
|
368 |
{ |
|
369 |
import XML.Encode._ |
|
370 |
pair(string, list(pair(encode_options, list(pair(string, properties)))))( |
|
371 |
(session_name, info.theories)) |
|
372 |
}) |
|
373 |
session.protocol_command("build_session", resources_yxml, args_yxml) |
|
374 |
Build_Session_Errors.result |
|
375 |
case Exn.Exn(exn) => Exn.Res(List(Exn.message(exn))) |
|
376 |
} |
|
377 |
} |
|
77297
226a880d0423
clarified types: support a variety of Build_Job instances;
wenzelm
parents:
77294
diff
changeset
|
378 |
|
78372 | 379 |
val result0 = |
380 |
Isabelle_Thread.interrupt_handler(_ => process.terminate()) { process.await_shutdown() } |
|
77297
226a880d0423
clarified types: support a variety of Build_Job instances;
wenzelm
parents:
77294
diff
changeset
|
381 |
|
78372 | 382 |
val was_timeout = |
383 |
timeout_request match { |
|
384 |
case None => false |
|
385 |
case Some(request) => !request.cancel() |
|
386 |
} |
|
387 |
||
388 |
session.stop() |
|
389 |
||
390 |
val export_errors = |
|
391 |
export_consumer.shutdown(close = true).map(Output.error_message_text) |
|
77297
226a880d0423
clarified types: support a variety of Build_Job instances;
wenzelm
parents:
77294
diff
changeset
|
392 |
|
78372 | 393 |
val (document_output, document_errors) = |
394 |
try { |
|
78674 | 395 |
if (Exn.is_res(build_errors) && result0.ok && info.documents.nonEmpty) { |
78379 | 396 |
using(Export.open_database_context(store, server = server)) { database_context => |
78372 | 397 |
val documents = |
398 |
using(database_context.open_session(session_background)) { |
|
399 |
session_context => |
|
400 |
Document_Build.build_documents( |
|
401 |
Document_Build.context(session_context, progress = progress), |
|
402 |
output_sources = info.document_output, |
|
403 |
output_pdf = info.document_output) |
|
404 |
} |
|
79692 | 405 |
using(database_context.open_database(session_name, output = true))( |
406 |
session_database => |
|
407 |
documents.foreach(_.write(session_database.db, session_name))) |
|
78372 | 408 |
(documents.flatMap(_.log_lines), Nil) |
409 |
} |
|
77484 | 410 |
} |
78372 | 411 |
else (Nil, Nil) |
412 |
} |
|
413 |
catch { |
|
414 |
case exn: Document_Build.Build_Error => (exn.log_lines, exn.log_errors) |
|
415 |
case Exn.Interrupt.ERROR(msg) => (Nil, List(msg)) |
|
416 |
} |
|
77485 | 417 |
|
77486
032c76e04475
clarified execution context: main work happens within Future.thread;
wenzelm
parents:
77485
diff
changeset
|
418 |
|
78372 | 419 |
/* process result */ |
77486
032c76e04475
clarified execution context: main work happens within Future.thread;
wenzelm
parents:
77485
diff
changeset
|
420 |
|
78372 | 421 |
val result1 = { |
422 |
val theory_timing = |
|
423 |
theory_timings.iterator.flatMap( |
|
424 |
{ |
|
425 |
case props @ Markup.Name(name) => Some(name -> props) |
|
426 |
case _ => None |
|
427 |
}).toMap |
|
428 |
val used_theory_timings = |
|
429 |
for { (name, _) <- session_background.base.used_theories } |
|
430 |
yield theory_timing.getOrElse(name.theory, Markup.Name(name.theory)) |
|
77486
032c76e04475
clarified execution context: main work happens within Future.thread;
wenzelm
parents:
77485
diff
changeset
|
431 |
|
78372 | 432 |
val more_output = |
433 |
Library.trim_line(stdout.toString) :: |
|
434 |
command_timings.toList.map(Protocol.Command_Timing_Marker.apply) ::: |
|
435 |
used_theory_timings.map(Protocol.Theory_Timing_Marker.apply) ::: |
|
436 |
session_timings.toList.map(Protocol.Session_Timing_Marker.apply) ::: |
|
437 |
runtime_statistics.toList.map(Protocol.ML_Statistics_Marker.apply) ::: |
|
438 |
task_statistics.toList.map(Protocol.Task_Statistics_Marker.apply) ::: |
|
439 |
document_output |
|
77486
032c76e04475
clarified execution context: main work happens within Future.thread;
wenzelm
parents:
77485
diff
changeset
|
440 |
|
78372 | 441 |
result0.output(more_output) |
442 |
.error(Library.trim_line(stderr.toString)) |
|
443 |
.errors_rc(export_errors ::: document_errors) |
|
444 |
} |
|
77486
032c76e04475
clarified execution context: main work happens within Future.thread;
wenzelm
parents:
77485
diff
changeset
|
445 |
|
78372 | 446 |
val result2 = |
447 |
build_errors match { |
|
448 |
case Exn.Res(build_errs) => |
|
449 |
val errs = build_errs ::: document_errors |
|
450 |
if (errs.nonEmpty) { |
|
451 |
result1.error_rc.output( |
|
452 |
errs.flatMap(s => split_lines(Output.error_message_text(s))) ::: |
|
453 |
errs.map(Protocol.Error_Message_Marker.apply)) |
|
454 |
} |
|
79692 | 455 |
else if (progress.stopped && result1.ok) { |
456 |
result1.copy(rc = Process_Result.RC.interrupt) |
|
457 |
} |
|
78372 | 458 |
else result1 |
459 |
case Exn.Exn(Exn.Interrupt()) => |
|
460 |
if (result1.ok) result1.copy(rc = Process_Result.RC.interrupt) |
|
461 |
else result1 |
|
462 |
case Exn.Exn(exn) => throw exn |
|
463 |
} |
|
464 |
||
465 |
val process_result = |
|
466 |
if (result2.ok) result2 |
|
467 |
else if (was_timeout) result2.error(Output.error_message_text("Timeout")).timeout_rc |
|
468 |
else if (result2.interrupted) result2.error(Output.error_message_text("Interrupt")) |
|
469 |
else result2 |
|
470 |
||
79691
d298c5b65d8e
clarified store_session: heap requires process_result.ok, but log_db is always stored;
wenzelm
parents:
79682
diff
changeset
|
471 |
val store_session = |
d298c5b65d8e
clarified store_session: heap requires process_result.ok, but log_db is always stored;
wenzelm
parents:
79682
diff
changeset
|
472 |
store.output_session(session_name, store_heap = process_result.ok && store_heap) |
d298c5b65d8e
clarified store_session: heap requires process_result.ok, but log_db is always stored;
wenzelm
parents:
79682
diff
changeset
|
473 |
|
78372 | 474 |
|
475 |
/* output heap */ |
|
77486
032c76e04475
clarified execution context: main work happens within Future.thread;
wenzelm
parents:
77485
diff
changeset
|
476 |
|
79682
1fa1b32b0379
build local log_db, with store/restore via optional database server;
wenzelm
parents:
79678
diff
changeset
|
477 |
val output_shasum = |
1fa1b32b0379
build local log_db, with store/restore via optional database server;
wenzelm
parents:
79678
diff
changeset
|
478 |
store_session.heap match { |
79691
d298c5b65d8e
clarified store_session: heap requires process_result.ok, but log_db is always stored;
wenzelm
parents:
79682
diff
changeset
|
479 |
case Some(path) => SHA1.shasum(ML_Heap.write_file_digest(path), session_name) |
d298c5b65d8e
clarified store_session: heap requires process_result.ok, but log_db is always stored;
wenzelm
parents:
79682
diff
changeset
|
480 |
case None => SHA1.no_shasum |
78372 | 481 |
} |
482 |
||
483 |
val log_lines = process_result.out_lines.filterNot(Protocol_Message.Marker.test) |
|
77486
032c76e04475
clarified execution context: main work happens within Future.thread;
wenzelm
parents:
77485
diff
changeset
|
484 |
|
78372 | 485 |
val build_log = |
78985
24e686fe043e
clarified Log_File.cache: reuse existing Store.cache / Build_Log.Store.cache;
wenzelm
parents:
78842
diff
changeset
|
486 |
Build_Log.Log_File(session_name, process_result.out_lines, cache = store.cache). |
78372 | 487 |
parse_session_info( |
488 |
command_timings = true, |
|
489 |
theory_timings = true, |
|
490 |
ml_statistics = true, |
|
491 |
task_statistics = true) |
|
492 |
||
493 |
// write log file |
|
494 |
if (process_result.ok) { |
|
495 |
File.write_gzip(store.output_log_gz(session_name), terminate_lines(log_lines)) |
|
496 |
} |
|
497 |
else File.write(store.output_log(session_name), terminate_lines(log_lines)) |
|
77486
032c76e04475
clarified execution context: main work happens within Future.thread;
wenzelm
parents:
77485
diff
changeset
|
498 |
|
78372 | 499 |
// write database |
78374 | 500 |
def write_info(db: SQL.Database): Unit = |
78372 | 501 |
store.write_session_info(db, session_name, session_sources, |
502 |
build_log = |
|
503 |
if (process_result.timeout) build_log.error("Timeout") else build_log, |
|
504 |
build = |
|
505 |
Store.Build_Info( |
|
506 |
sources = sources_shasum, |
|
507 |
input_heaps = input_shasum, |
|
508 |
output_heap = output_shasum, |
|
509 |
process_result.rc, |
|
78374 | 510 |
build_context.build_uuid)) |
78529
0e79fa88cab6
build_worker is stopped independently from master build_process;
wenzelm
parents:
78435
diff
changeset
|
511 |
|
79887
17220dc05991
revert most parts of 0e79fa88cab6: somewhat ambitious attempt to move towards "editing" builds via added/canceled workers;
wenzelm
parents:
79718
diff
changeset
|
512 |
database_server match { |
17220dc05991
revert most parts of 0e79fa88cab6: somewhat ambitious attempt to move towards "editing" builds via added/canceled workers;
wenzelm
parents:
79718
diff
changeset
|
513 |
case Some(db) => write_info(db) |
17220dc05991
revert most parts of 0e79fa88cab6: somewhat ambitious attempt to move towards "editing" builds via added/canceled workers;
wenzelm
parents:
79718
diff
changeset
|
514 |
case None => using(store.open_database(session_name, output = true))(write_info) |
17220dc05991
revert most parts of 0e79fa88cab6: somewhat ambitious attempt to move towards "editing" builds via added/canceled workers;
wenzelm
parents:
79718
diff
changeset
|
515 |
} |
78372 | 516 |
|
80121 | 517 |
store.in_heaps_database( |
518 |
List(store_session), database_server, server = server, progress = progress) |
|
79682
1fa1b32b0379
build local log_db, with store/restore via optional database server;
wenzelm
parents:
79678
diff
changeset
|
519 |
|
78372 | 520 |
// messages |
521 |
process_result.err_lines.foreach(progress.echo(_)) |
|
522 |
||
523 |
if (process_result.ok) { |
|
524 |
val props = build_log.session_timing |
|
525 |
val threads = Markup.Session_Timing.Threads.unapply(props) getOrElse 1 |
|
526 |
val timing = Markup.Timing_Properties.get(props) |
|
527 |
progress.echo( |
|
528 |
"Timing " + session_name + " (" + threads + " threads, " + timing.message_factor + ")", |
|
529 |
verbose = true) |
|
530 |
progress.echo( |
|
531 |
"Finished " + session_name + " (" + process_result.timing.message_resources + ")") |
|
532 |
} |
|
533 |
else { |
|
534 |
progress.echo( |
|
79692 | 535 |
session_name + " FAILED (see also \"isabelle build_log -H Error " + |
536 |
session_name + "\")") |
|
78372 | 537 |
if (!process_result.interrupted) { |
538 |
val tail = info.options.int("process_output_tail") |
|
79692 | 539 |
val suffix = |
540 |
if (tail == 0) log_lines else log_lines.drop(log_lines.length - tail max 0) |
|
541 |
val prefix = |
|
542 |
if (log_lines.length == suffix.length) Nil else List("...") |
|
78372 | 543 |
progress.echo(Library.trim_line(cat_lines(prefix ::: suffix))) |
544 |
} |
|
545 |
} |
|
546 |
||
79887
17220dc05991
revert most parts of 0e79fa88cab6: somewhat ambitious attempt to move towards "editing" builds via added/canceled workers;
wenzelm
parents:
79718
diff
changeset
|
547 |
Result(process_result.copy(out_lines = log_lines), output_shasum) |
77486
032c76e04475
clarified execution context: main work happens within Future.thread;
wenzelm
parents:
77485
diff
changeset
|
548 |
} |
77297
226a880d0423
clarified types: support a variety of Build_Job instances;
wenzelm
parents:
77294
diff
changeset
|
549 |
} |
226a880d0423
clarified types: support a variety of Build_Job instances;
wenzelm
parents:
77294
diff
changeset
|
550 |
|
77486
032c76e04475
clarified execution context: main work happens within Future.thread;
wenzelm
parents:
77485
diff
changeset
|
551 |
override def cancel(): Unit = future_result.cancel() |
77298 | 552 |
override def is_finished: Boolean = future_result.is_finished |
79887
17220dc05991
revert most parts of 0e79fa88cab6: somewhat ambitious attempt to move towards "editing" builds via added/canceled workers;
wenzelm
parents:
79718
diff
changeset
|
553 |
override def join: Result = future_result.join |
77297
226a880d0423
clarified types: support a variety of Build_Job instances;
wenzelm
parents:
77294
diff
changeset
|
554 |
} |
72848
d5d0e36eda16
read theory with PIDE markup from session database;
wenzelm
parents:
72844
diff
changeset
|
555 |
} |