author | wenzelm |
Sat, 05 May 2018 22:33:35 +0200 | |
changeset 68088 | 0763d4eb3ebc |
parent 68086 | 9e1c670301b8 |
child 68092 | 888d35a19866 |
permissions | -rw-r--r-- |
50686 | 1 |
/* Title: Pure/Tools/build.scala |
48276 | 2 |
Author: Makarius |
57923 | 3 |
Options: :folding=explicit: |
48276 | 4 |
|
5 |
Build and manage Isabelle sessions. |
|
6 |
*/ |
|
7 |
||
8 |
package isabelle |
|
9 |
||
10 |
||
48676
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents:
48675
diff
changeset
|
11 |
import scala.collection.SortedSet |
48340
6f4fc030882a
allow explicit specification of additional session directories;
wenzelm
parents:
48339
diff
changeset
|
12 |
import scala.annotation.tailrec |
48337
9c7f8e5805b4
cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents:
48336
diff
changeset
|
13 |
|
48335 | 14 |
|
48276 | 15 |
object Build |
16 |
{ |
|
62631 | 17 |
/** auxiliary **/ |
48424 | 18 |
|
65291
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65289
diff
changeset
|
19 |
/* persistent build info */ |
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65289
diff
changeset
|
20 |
|
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65289
diff
changeset
|
21 |
sealed case class Session_Info( |
66749
0445cfaf6132
more compact (second-order) digest for 10^2..10^3 source files, with slightly increased risk of collisions;
wenzelm
parents:
66747
diff
changeset
|
22 |
sources: String, |
65291
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65289
diff
changeset
|
23 |
input_heaps: List[String], |
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65289
diff
changeset
|
24 |
output_heap: Option[String], |
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65289
diff
changeset
|
25 |
return_code: Int) |
66747 | 26 |
{ |
27 |
def ok: Boolean = return_code == 0 |
|
28 |
} |
|
65291
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65289
diff
changeset
|
29 |
|
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65289
diff
changeset
|
30 |
|
65289 | 31 |
/* queue with scheduling information */ |
48676
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents:
48675
diff
changeset
|
32 |
|
62631 | 33 |
private object Queue |
48676
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents:
48675
diff
changeset
|
34 |
{ |
68086
9e1c670301b8
cleanup session output before starting build job;
wenzelm
parents:
67852
diff
changeset
|
35 |
type Timings = (List[Properties.T], Double) |
9e1c670301b8
cleanup session output before starting build job;
wenzelm
parents:
67852
diff
changeset
|
36 |
|
9e1c670301b8
cleanup session output before starting build job;
wenzelm
parents:
67852
diff
changeset
|
37 |
def load_timings(progress: Progress, store: Sessions.Store, name: String): Timings = |
65289 | 38 |
{ |
68086
9e1c670301b8
cleanup session output before starting build job;
wenzelm
parents:
67852
diff
changeset
|
39 |
val no_timings: Timings = (Nil, 0.0) |
65289 | 40 |
|
65291
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65289
diff
changeset
|
41 |
store.find_database(name) match { |
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65289
diff
changeset
|
42 |
case None => no_timings |
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65289
diff
changeset
|
43 |
case Some(database) => |
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65289
diff
changeset
|
44 |
def ignore_error(msg: String) = |
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65289
diff
changeset
|
45 |
{ |
65831 | 46 |
progress.echo_warning("Ignoring bad database: " + |
65365 | 47 |
database.expand + (if (msg == "") "" else "\n" + msg)) |
65291
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65289
diff
changeset
|
48 |
no_timings |
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65289
diff
changeset
|
49 |
} |
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65289
diff
changeset
|
50 |
try { |
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65289
diff
changeset
|
51 |
using(SQLite.open_database(database))(db => |
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65289
diff
changeset
|
52 |
{ |
65935 | 53 |
val command_timings = store.read_command_timings(db, name) |
54 |
val session_timing = |
|
55 |
store.read_session_timing(db, name) match { |
|
56 |
case Markup.Elapsed(t) => t |
|
57 |
case _ => 0.0 |
|
58 |
} |
|
59 |
(command_timings, session_timing) |
|
65291
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65289
diff
changeset
|
60 |
}) |
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65289
diff
changeset
|
61 |
} |
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65289
diff
changeset
|
62 |
catch { |
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65289
diff
changeset
|
63 |
case ERROR(msg) => ignore_error(msg) |
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65289
diff
changeset
|
64 |
case exn: java.lang.Error => ignore_error(Exn.message(exn)) |
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65289
diff
changeset
|
65 |
case _: XML.Error => ignore_error("") |
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65289
diff
changeset
|
66 |
} |
65289 | 67 |
} |
68 |
} |
|
69 |
||
67052 | 70 |
def apply(progress: Progress, sessions: Sessions.Structure, store: Sessions.Store): Queue = |
48676
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents:
48675
diff
changeset
|
71 |
{ |
65420
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
72 |
val graph = sessions.build_graph |
65415
8cd54b18b68b
clarified signature: tree structure is not essential;
wenzelm
parents:
65406
diff
changeset
|
73 |
val names = graph.keys |
51220 | 74 |
|
65831 | 75 |
val timings = names.map(name => (name, load_timings(progress, store, name))) |
51220 | 76 |
val command_timings = |
77 |
Map(timings.map({ case (name, (ts, _)) => (name, ts) }): _*).withDefaultValue(Nil) |
|
78 |
val session_timing = |
|
79 |
Map(timings.map({ case (name, (_, t)) => (name, t) }): _*).withDefaultValue(0.0) |
|
48678
ff27af15530c
queue ordering by descending outdegree and timeout;
wenzelm
parents:
48676
diff
changeset
|
80 |
|
ff27af15530c
queue ordering by descending outdegree and timeout;
wenzelm
parents:
48676
diff
changeset
|
81 |
def outdegree(name: String): Int = graph.imm_succs(name).size |
ff27af15530c
queue ordering by descending outdegree and timeout;
wenzelm
parents:
48676
diff
changeset
|
82 |
|
ff27af15530c
queue ordering by descending outdegree and timeout;
wenzelm
parents:
48676
diff
changeset
|
83 |
object Ordering extends scala.math.Ordering[String] |
ff27af15530c
queue ordering by descending outdegree and timeout;
wenzelm
parents:
48676
diff
changeset
|
84 |
{ |
51227
88c96e836ed6
prefer comparison of session timing, if this is known already;
wenzelm
parents:
51223
diff
changeset
|
85 |
def compare_timing(name1: String, name2: String): Int = |
88c96e836ed6
prefer comparison of session timing, if this is known already;
wenzelm
parents:
51223
diff
changeset
|
86 |
{ |
88c96e836ed6
prefer comparison of session timing, if this is known already;
wenzelm
parents:
51223
diff
changeset
|
87 |
val t1 = session_timing(name1) |
88c96e836ed6
prefer comparison of session timing, if this is known already;
wenzelm
parents:
51223
diff
changeset
|
88 |
val t2 = session_timing(name2) |
88c96e836ed6
prefer comparison of session timing, if this is known already;
wenzelm
parents:
51223
diff
changeset
|
89 |
if (t1 == 0.0 || t2 == 0.0) 0 |
88c96e836ed6
prefer comparison of session timing, if this is known already;
wenzelm
parents:
51223
diff
changeset
|
90 |
else t1 compare t2 |
88c96e836ed6
prefer comparison of session timing, if this is known already;
wenzelm
parents:
51223
diff
changeset
|
91 |
} |
88c96e836ed6
prefer comparison of session timing, if this is known already;
wenzelm
parents:
51223
diff
changeset
|
92 |
|
48678
ff27af15530c
queue ordering by descending outdegree and timeout;
wenzelm
parents:
48676
diff
changeset
|
93 |
def compare(name1: String, name2: String): Int = |
51229
6e40d0bb89e3
prefer outdegree in comparison again (cf. 88c96e836ed6) -- NB: big jobs might hide behind small ones in this naive queuing scheme;
wenzelm
parents:
51227
diff
changeset
|
94 |
outdegree(name2) compare outdegree(name1) match { |
48678
ff27af15530c
queue ordering by descending outdegree and timeout;
wenzelm
parents:
48676
diff
changeset
|
95 |
case 0 => |
51229
6e40d0bb89e3
prefer outdegree in comparison again (cf. 88c96e836ed6) -- NB: big jobs might hide behind small ones in this naive queuing scheme;
wenzelm
parents:
51227
diff
changeset
|
96 |
compare_timing(name2, name1) match { |
51220 | 97 |
case 0 => |
65415
8cd54b18b68b
clarified signature: tree structure is not essential;
wenzelm
parents:
65406
diff
changeset
|
98 |
sessions(name2).timeout compare sessions(name1).timeout match { |
51220 | 99 |
case 0 => name1 compare name2 |
100 |
case ord => ord |
|
101 |
} |
|
48678
ff27af15530c
queue ordering by descending outdegree and timeout;
wenzelm
parents:
48676
diff
changeset
|
102 |
case ord => ord |
ff27af15530c
queue ordering by descending outdegree and timeout;
wenzelm
parents:
48676
diff
changeset
|
103 |
} |
ff27af15530c
queue ordering by descending outdegree and timeout;
wenzelm
parents:
48676
diff
changeset
|
104 |
case ord => ord |
ff27af15530c
queue ordering by descending outdegree and timeout;
wenzelm
parents:
48676
diff
changeset
|
105 |
} |
ff27af15530c
queue ordering by descending outdegree and timeout;
wenzelm
parents:
48676
diff
changeset
|
106 |
} |
ff27af15530c
queue ordering by descending outdegree and timeout;
wenzelm
parents:
48676
diff
changeset
|
107 |
|
65415
8cd54b18b68b
clarified signature: tree structure is not essential;
wenzelm
parents:
65406
diff
changeset
|
108 |
new Queue(graph, SortedSet(names: _*)(Ordering), command_timings) |
48676
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents:
48675
diff
changeset
|
109 |
} |
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents:
48675
diff
changeset
|
110 |
} |
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents:
48675
diff
changeset
|
111 |
|
65314 | 112 |
private class Queue( |
62631 | 113 |
graph: Graph[String, Sessions.Info], |
51220 | 114 |
order: SortedSet[String], |
115 |
val command_timings: String => List[Properties.T]) |
|
48676
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents:
48675
diff
changeset
|
116 |
{ |
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents:
48675
diff
changeset
|
117 |
def is_inner(name: String): Boolean = !graph.is_maximal(name) |
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents:
48675
diff
changeset
|
118 |
|
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents:
48675
diff
changeset
|
119 |
def is_empty: Boolean = graph.is_empty |
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents:
48675
diff
changeset
|
120 |
|
51227
88c96e836ed6
prefer comparison of session timing, if this is known already;
wenzelm
parents:
51223
diff
changeset
|
121 |
def - (name: String): Queue = |
88c96e836ed6
prefer comparison of session timing, if this is known already;
wenzelm
parents:
51223
diff
changeset
|
122 |
new Queue(graph.del_node(name), |
67011 | 123 |
order - name, // FIXME scala-2.10.0 .. 2.12.4 TreeSet problem!? |
51227
88c96e836ed6
prefer comparison of session timing, if this is known already;
wenzelm
parents:
51223
diff
changeset
|
124 |
command_timings) |
48676
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents:
48675
diff
changeset
|
125 |
|
62631 | 126 |
def dequeue(skip: String => Boolean): Option[(String, Sessions.Info)] = |
48676
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents:
48675
diff
changeset
|
127 |
{ |
51227
88c96e836ed6
prefer comparison of session timing, if this is known already;
wenzelm
parents:
51223
diff
changeset
|
128 |
val it = order.iterator.dropWhile(name => |
88c96e836ed6
prefer comparison of session timing, if this is known already;
wenzelm
parents:
51223
diff
changeset
|
129 |
skip(name) |
67011 | 130 |
|| !graph.defined(name) // FIXME scala-2.10.0 .. 2.12.4 TreeSet problem!? |
51227
88c96e836ed6
prefer comparison of session timing, if this is known already;
wenzelm
parents:
51223
diff
changeset
|
131 |
|| !graph.is_minimal(name)) |
48680 | 132 |
if (it.hasNext) { val name = it.next; Some((name, graph.get_node(name))) } |
48676
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents:
48675
diff
changeset
|
133 |
else None |
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents:
48675
diff
changeset
|
134 |
} |
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents:
48675
diff
changeset
|
135 |
} |
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents:
48675
diff
changeset
|
136 |
|
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents:
48675
diff
changeset
|
137 |
|
65313 | 138 |
/* PIDE protocol handler */ |
139 |
||
140 |
class Handler(progress: Progress, session: Session, session_name: String) |
|
141 |
extends Session.Protocol_Handler |
|
142 |
{ |
|
143 |
val result_error: Promise[String] = Future.promise |
|
144 |
||
145 |
override def exit() { result_error.cancel } |
|
146 |
||
147 |
private def build_session_finished(msg: Prover.Protocol_Output): Boolean = |
|
148 |
{ |
|
149 |
val error_message = |
|
65344
b99283eed13c
clarified YXML vs. symbol encoding: operate on whole message;
wenzelm
parents:
65320
diff
changeset
|
150 |
try { Pretty.string_of(Symbol.decode_yxml(msg.text)) } |
65313 | 151 |
catch { case ERROR(msg) => msg } |
152 |
result_error.fulfill(error_message) |
|
153 |
session.send_stop() |
|
154 |
true |
|
155 |
} |
|
156 |
||
157 |
private def loading_theory(msg: Prover.Protocol_Output): Boolean = |
|
158 |
msg.properties match { |
|
159 |
case Markup.Loading_Theory(name) => |
|
160 |
progress.theory(session_name, name) |
|
161 |
true |
|
162 |
case _ => false |
|
163 |
} |
|
164 |
||
165 |
val functions = |
|
166 |
List( |
|
167 |
Markup.BUILD_SESSION_FINISHED -> build_session_finished _, |
|
168 |
Markup.LOADING_THEORY -> loading_theory _) |
|
169 |
} |
|
170 |
||
171 |
||
65308 | 172 |
/* job: running prover process */ |
48341 | 173 |
|
65308 | 174 |
private class Job(progress: Progress, |
175 |
name: String, |
|
176 |
val info: Sessions.Info, |
|
67052 | 177 |
sessions: Sessions.Structure, |
65313 | 178 |
deps: Sessions.Deps, |
65308 | 179 |
store: Sessions.Store, |
180 |
do_output: Boolean, |
|
181 |
verbose: Boolean, |
|
182 |
pide: Boolean, |
|
183 |
val numa_node: Option[Int], |
|
184 |
command_timings: List[Properties.T]) |
|
48418 | 185 |
{ |
62633 | 186 |
val output = store.output_dir + Path.basic(name) |
48674 | 187 |
def output_path: Option[Path] = if (do_output) Some(output) else None |
188 |
||
65312 | 189 |
val options = |
190 |
numa_node match { |
|
191 |
case None => info.options |
|
192 |
case Some(n) => info.options.string("ML_process_policy") = NUMA.policy(n) |
|
193 |
} |
|
194 |
||
59445 | 195 |
private val graph_file = Isabelle_System.tmp_file("session_graph", "pdf") |
66822 | 196 |
isabelle.graphview.Graph_File.write(options, graph_file, deps(name).session_graph_display) |
59445 | 197 |
|
62573 | 198 |
private val future_result: Future[Process_Result] = |
61559
313eca3fa847
more direct task future implementation, with proper cancel operation;
wenzelm
parents:
61556
diff
changeset
|
199 |
Future.thread("build") { |
65308 | 200 |
val parent = info.parent.getOrElse("") |
65441 | 201 |
val base = deps(name) |
65308 | 202 |
val args_yxml = |
203 |
YXML.string_of_body( |
|
62944
3ee643c5ed00
more standard session build process, including browser_info;
wenzelm
parents:
62902
diff
changeset
|
204 |
{ |
3ee643c5ed00
more standard session build process, including browser_info;
wenzelm
parents:
62902
diff
changeset
|
205 |
import XML.Encode._ |
3ee643c5ed00
more standard session build process, including browser_info;
wenzelm
parents:
62902
diff
changeset
|
206 |
pair(list(pair(string, int)), pair(list(properties), pair(bool, pair(bool, |
3ee643c5ed00
more standard session build process, including browser_info;
wenzelm
parents:
62902
diff
changeset
|
207 |
pair(Path.encode, pair(list(pair(Path.encode, Path.encode)), pair(string, |
65307 | 208 |
pair(string, pair(string, pair(string, pair(Path.encode, |
65517 | 209 |
pair(list(pair(Options.encode, list(pair(string, properties)))), |
67493
c4e9e0c50487
treat sessions as entities with defining position;
wenzelm
parents:
67471
diff
changeset
|
210 |
pair(list(pair(string, properties)), pair(list(string), |
c4e9e0c50487
treat sessions as entities with defining position;
wenzelm
parents:
67471
diff
changeset
|
211 |
pair(list(pair(string, string)), |
67471 | 212 |
pair(list(string), pair(list(pair(string, string)), list(string))))))))))))))))))( |
62944
3ee643c5ed00
more standard session build process, including browser_info;
wenzelm
parents:
62902
diff
changeset
|
213 |
(Symbol.codes, (command_timings, (do_output, (verbose, |
3ee643c5ed00
more standard session build process, including browser_info;
wenzelm
parents:
62902
diff
changeset
|
214 |
(store.browser_info, (info.document_files, (File.standard_path(graph_file), |
65307 | 215 |
(parent, (info.chapter, (name, (Path.current, |
67471 | 216 |
(info.theories, (base.known.sessions.toList, (base.doc_names, |
217 |
(base.global_theories.toList, (base.loaded_theories.keys, (base.dest_known_theories, |
|
218 |
info.bibtex_entries.map(_.info))))))))))))))))))) |
|
65308 | 219 |
}) |
220 |
||
221 |
val env = |
|
222 |
Isabelle_System.settings() + |
|
65312 | 223 |
("ISABELLE_ML_DEBUGGER" -> options.bool("ML_debugger").toString) |
65308 | 224 |
|
225 |
def save_heap: String = |
|
66972
f65fc869e835
no heap sharing for empty session (e.g. HOL-ODE);
wenzelm
parents:
66968
diff
changeset
|
226 |
(if (info.theories.isEmpty) "" else "ML_Heap.share_common_data (); ") + |
f65fc869e835
no heap sharing for empty session (e.g. HOL-ODE);
wenzelm
parents:
66968
diff
changeset
|
227 |
"ML_Heap.save_child " + ML_Syntax.print_string_bytes(File.platform_path(output)) |
62944
3ee643c5ed00
more standard session build process, including browser_info;
wenzelm
parents:
62902
diff
changeset
|
228 |
|
65360 | 229 |
if (pide && !Sessions.is_pure(name)) { |
65532 | 230 |
val resources = new Resources(deps(parent)) |
65313 | 231 |
val session = new Session(options, resources) |
232 |
val handler = new Handler(progress, session, name) |
|
65315 | 233 |
session.init_protocol_handler(handler) |
65313 | 234 |
|
65317 | 235 |
val session_result = Future.promise[Process_Result] |
65313 | 236 |
|
237 |
Isabelle_Process.start(session, options, logic = parent, |
|
65415
8cd54b18b68b
clarified signature: tree structure is not essential;
wenzelm
parents:
65406
diff
changeset
|
238 |
cwd = info.dir.file, env = env, sessions = Some(sessions), store = store, |
65313 | 239 |
phase_changed = |
240 |
{ |
|
241 |
case Session.Ready => session.protocol_command("build_session", args_yxml) |
|
65317 | 242 |
case Session.Terminated(result) => session_result.fulfill(result) |
65313 | 243 |
case _ => |
244 |
}) |
|
245 |
||
65317 | 246 |
val result = session_result.join |
65313 | 247 |
handler.result_error.join match { |
65317 | 248 |
case "" => result |
249 |
case msg => |
|
250 |
result.copy( |
|
251 |
rc = result.rc max 1, |
|
65828 | 252 |
out_lines = result.out_lines ::: split_lines(Output.error_message_text(msg))) |
65313 | 253 |
} |
65308 | 254 |
} |
255 |
else { |
|
256 |
val args_file = Isabelle_System.tmp_file("build") |
|
257 |
File.write(args_file, args_yxml) |
|
258 |
||
259 |
val eval = |
|
260 |
"Command_Line.tool0 (fn () => (" + |
|
66782 | 261 |
"Build.build " + ML_Syntax.print_string_bytes(File.standard_path(args_file)) + |
67380 | 262 |
(if (Sessions.is_pure(name)) "; Theory.install_pure (Thy_Info.get_theory Context.PureN)" |
263 |
else "") + (if (do_output) "; " + save_heap else "") + "));" |
|
64265 | 264 |
|
65308 | 265 |
val process = |
65360 | 266 |
if (Sessions.is_pure(name)) { |
65312 | 267 |
ML_Process(options, raw_ml_system = true, cwd = info.dir.file, |
65308 | 268 |
args = |
269 |
(for ((root, _) <- Thy_Header.ml_roots) yield List("--use", root)).flatten ::: |
|
270 |
List("--eval", eval), |
|
65415
8cd54b18b68b
clarified signature: tree structure is not essential;
wenzelm
parents:
65406
diff
changeset
|
271 |
env = env, sessions = Some(sessions), store = store, |
8cd54b18b68b
clarified signature: tree structure is not essential;
wenzelm
parents:
65406
diff
changeset
|
272 |
cleanup = () => args_file.delete) |
65308 | 273 |
} |
274 |
else { |
|
65312 | 275 |
ML_Process(options, parent, List("--eval", eval), cwd = info.dir.file, |
65415
8cd54b18b68b
clarified signature: tree structure is not essential;
wenzelm
parents:
65406
diff
changeset
|
276 |
env = env, sessions = Some(sessions), store = store, |
8cd54b18b68b
clarified signature: tree structure is not essential;
wenzelm
parents:
65406
diff
changeset
|
277 |
cleanup = () => args_file.delete) |
65308 | 278 |
} |
64265 | 279 |
|
65308 | 280 |
process.result( |
281 |
progress_stdout = (line: String) => |
|
282 |
Library.try_unprefix("\floading_theory = ", line) match { |
|
283 |
case Some(theory) => progress.theory(name, theory) |
|
284 |
case None => |
|
68088 | 285 |
for { |
286 |
text <- Library.try_unprefix("\fexport = ", line) |
|
287 |
(args, body) <- |
|
288 |
Markup.Export.dest_inline(XML.Decode.properties(YXML.parse_body(text))) |
|
289 |
} { } // FIXME |
|
65308 | 290 |
}, |
291 |
progress_limit = |
|
65312 | 292 |
options.int("process_output_limit") match { |
65308 | 293 |
case 0 => None |
294 |
case m => Some(m * 1000000L) |
|
295 |
}, |
|
296 |
strict = false) |
|
297 |
} |
|
50845 | 298 |
} |
48674 | 299 |
|
62572 | 300 |
def terminate: Unit = future_result.cancel |
301 |
def is_finished: Boolean = future_result.is_finished |
|
48674 | 302 |
|
56779 | 303 |
private val timeout_request: Option[Event_Timer.Request] = |
304 |
{ |
|
62569 | 305 |
if (info.timeout > Time.zero) |
66943 | 306 |
Some(Event_Timer.request(Time.now() + info.timeout) { terminate }) |
48674 | 307 |
else None |
56779 | 308 |
} |
48674 | 309 |
|
62400 | 310 |
def join: Process_Result = |
50845 | 311 |
{ |
62572 | 312 |
val result = future_result.join |
50845 | 313 |
|
62944
3ee643c5ed00
more standard session build process, including browser_info;
wenzelm
parents:
62902
diff
changeset
|
314 |
if (result.ok) |
62633 | 315 |
Present.finish(progress, store.browser_info, graph_file, info, name) |
61372 | 316 |
|
59445 | 317 |
graph_file.delete |
66943 | 318 |
|
319 |
val was_timeout = |
|
320 |
timeout_request match { |
|
321 |
case None => false |
|
322 |
case Some(request) => !request.cancel |
|
323 |
} |
|
48674 | 324 |
|
62572 | 325 |
if (result.interrupted) { |
65828 | 326 |
if (was_timeout) result.error(Output.error_message_text("Timeout")).was_timeout |
327 |
else result.error(Output.error_message_text("Interrupt")) |
|
52063
fd533ac64390
timeout counts as regular error, with rc = 1 (cf. special Exn.Interrupt vs. regular TimeLimit.TimeOut in Isabelle/ML);
wenzelm
parents:
51987
diff
changeset
|
328 |
} |
62572 | 329 |
else result |
48674 | 330 |
} |
48364 | 331 |
} |
332 |
||
48424 | 333 |
|
62631 | 334 |
|
62641 | 335 |
/** build with results **/ |
48424 | 336 |
|
63996 | 337 |
class Results private[Build](results: Map[String, (Option[Process_Result], Sessions.Info)]) |
62403 | 338 |
{ |
339 |
def sessions: Set[String] = results.keySet |
|
63082
6af03422535a
expose Sessions.Info in Build.Results
Lars Hupel <lars.hupel@mytum.de>
parents:
62946
diff
changeset
|
340 |
def cancelled(name: String): Boolean = results(name)._1.isEmpty |
6af03422535a
expose Sessions.Info in Build.Results
Lars Hupel <lars.hupel@mytum.de>
parents:
62946
diff
changeset
|
341 |
def apply(name: String): Process_Result = results(name)._1.getOrElse(Process_Result(1)) |
6af03422535a
expose Sessions.Info in Build.Results
Lars Hupel <lars.hupel@mytum.de>
parents:
62946
diff
changeset
|
342 |
def info(name: String): Sessions.Info = results(name)._2 |
65253 | 343 |
val rc = |
344 |
(0 /: results.iterator.map( |
|
345 |
{ case (_, (Some(r), _)) => r.rc case (_, (None, _)) => 1 }))(_ max _) |
|
62641 | 346 |
def ok: Boolean = rc == 0 |
62406 | 347 |
|
348 |
override def toString: String = rc.toString |
|
62403 | 349 |
} |
350 |
||
62641 | 351 |
def build( |
50404
898cac1dad5e
avoid startup within GUI thread -- it is only required later for dialog;
wenzelm
parents:
50367
diff
changeset
|
352 |
options: Options, |
64909 | 353 |
progress: Progress = No_Progress, |
65832
2fb85623c386
implicitly check for unknown files (not part of a Mercurial repository);
wenzelm
parents:
65831
diff
changeset
|
354 |
check_unknown_files: Boolean = false, |
48511
37999ee01156
remove old output heaps, to ensure that result is valid wrt. check_stamps;
wenzelm
parents:
48509
diff
changeset
|
355 |
build_heap: Boolean = false, |
48595 | 356 |
clean_build: Boolean = false, |
56890 | 357 |
dirs: List[Path] = Nil, |
358 |
select_dirs: List[Path] = Nil, |
|
66968
9991671c98aa
allow to augment session context via explicit session infos;
wenzelm
parents:
66962
diff
changeset
|
359 |
infos: List[Sessions.Info] = Nil, |
64265 | 360 |
numa_shuffling: Boolean = false, |
48509 | 361 |
max_jobs: Int = 1, |
48903 | 362 |
list_files: Boolean = false, |
59891
9ce697050455
added isabelle build option -k, for fast off-line checking of theory sources;
wenzelm
parents:
59811
diff
changeset
|
363 |
check_keywords: Set[String] = Set.empty, |
66841 | 364 |
fresh_build: Boolean = false, |
48509 | 365 |
no_build: Boolean = false, |
66745 | 366 |
soft_build: Boolean = false, |
48509 | 367 |
system_mode: Boolean = false, |
368 |
verbose: Boolean = false, |
|
65308 | 369 |
pide: Boolean = false, |
63224 | 370 |
requirements: Boolean = false, |
371 |
all_sessions: Boolean = false, |
|
66737
2edc0c42c883
option -B for "isabelle build" and "isabelle imports";
wenzelm
parents:
66736
diff
changeset
|
372 |
base_sessions: List[String] = Nil, |
63224 | 373 |
exclude_session_groups: List[String] = Nil, |
59892
2a616319c171
added isabelle build option -x, to exclude sessions;
wenzelm
parents:
59891
diff
changeset
|
374 |
exclude_sessions: List[String] = Nil, |
63224 | 375 |
session_groups: List[String] = Nil, |
65422 | 376 |
sessions: List[String] = Nil, |
377 |
selection: Sessions.Selection = Sessions.Selection.empty): Results = |
|
63224 | 378 |
{ |
66745 | 379 |
val build_options = options.int.update("completion_limit", 0).bool.update("ML_statistics", true) |
51220 | 380 |
|
66745 | 381 |
val store = Sessions.store(system_mode) |
382 |
||
383 |
||
384 |
/* session selection and dependencies */ |
|
65422 | 385 |
|
66961 | 386 |
val full_sessions = |
67026 | 387 |
Sessions.load_structure(build_options, dirs = dirs, select_dirs = select_dirs, infos = infos) |
65422 | 388 |
|
66749
0445cfaf6132
more compact (second-order) digest for 10^2..10^3 source files, with slightly increased risk of collisions;
wenzelm
parents:
66747
diff
changeset
|
389 |
def sources_stamp(deps: Sessions.Deps, name: String): String = |
0445cfaf6132
more compact (second-order) digest for 10^2..10^3 source files, with slightly increased risk of collisions;
wenzelm
parents:
66747
diff
changeset
|
390 |
{ |
0445cfaf6132
more compact (second-order) digest for 10^2..10^3 source files, with slightly increased risk of collisions;
wenzelm
parents:
66747
diff
changeset
|
391 |
val digests = |
0445cfaf6132
more compact (second-order) digest for 10^2..10^3 source files, with slightly increased risk of collisions;
wenzelm
parents:
66747
diff
changeset
|
392 |
full_sessions(name).meta_digest :: deps.sources(name) ::: deps.imported_sources(name) |
0445cfaf6132
more compact (second-order) digest for 10^2..10^3 source files, with slightly increased risk of collisions;
wenzelm
parents:
66747
diff
changeset
|
393 |
SHA1.digest(cat_lines(digests.map(_.toString).sorted)).toString |
0445cfaf6132
more compact (second-order) digest for 10^2..10^3 source files, with slightly increased risk of collisions;
wenzelm
parents:
66747
diff
changeset
|
394 |
} |
66745 | 395 |
|
67030
a9859e879f38
proper build_selection for clean_build (amending 961285f581e6): e.g. relevant for "isabelle build_doc";
wenzelm
parents:
67026
diff
changeset
|
396 |
val selection1 = |
a9859e879f38
proper build_selection for clean_build (amending 961285f581e6): e.g. relevant for "isabelle build_doc";
wenzelm
parents:
67026
diff
changeset
|
397 |
Sessions.Selection(requirements, all_sessions, base_sessions, exclude_session_groups, |
a9859e879f38
proper build_selection for clean_build (amending 961285f581e6): e.g. relevant for "isabelle build_doc";
wenzelm
parents:
67026
diff
changeset
|
398 |
exclude_sessions, session_groups, sessions) ++ selection |
a9859e879f38
proper build_selection for clean_build (amending 961285f581e6): e.g. relevant for "isabelle build_doc";
wenzelm
parents:
67026
diff
changeset
|
399 |
|
67025
961285f581e6
clarifified selection: always wrt. build_graph structure;
wenzelm
parents:
67011
diff
changeset
|
400 |
val (selected_sessions, deps) = |
66745 | 401 |
{ |
67030
a9859e879f38
proper build_selection for clean_build (amending 961285f581e6): e.g. relevant for "isabelle build_doc";
wenzelm
parents:
67026
diff
changeset
|
402 |
val selected_sessions0 = full_sessions.selection(selection1) |
66745 | 403 |
val deps0 = |
66962
e1bde71bace6
clarified signature: global_theories is always required;
wenzelm
parents:
66961
diff
changeset
|
404 |
Sessions.deps(selected_sessions0, full_sessions.global_theories, |
e1bde71bace6
clarified signature: global_theories is always required;
wenzelm
parents:
66961
diff
changeset
|
405 |
progress = progress, inlined_files = true, verbose = verbose, |
e1bde71bace6
clarified signature: global_theories is always required;
wenzelm
parents:
66961
diff
changeset
|
406 |
list_files = list_files, check_keywords = check_keywords).check_errors |
66745 | 407 |
|
66841 | 408 |
if (soft_build && !fresh_build) { |
66745 | 409 |
val outdated = |
67025
961285f581e6
clarifified selection: always wrt. build_graph structure;
wenzelm
parents:
67011
diff
changeset
|
410 |
selected_sessions0.build_topological_order.flatMap(name => |
66745 | 411 |
store.find_database(name) match { |
412 |
case Some(database) => |
|
413 |
using(SQLite.open_database(database))(store.read_build(_, name)) match { |
|
414 |
case Some(build) |
|
66747 | 415 |
if build.ok && build.sources == sources_stamp(deps0, name) => None |
66745 | 416 |
case _ => Some(name) |
417 |
} |
|
418 |
case None => Some(name) |
|
419 |
}) |
|
67025
961285f581e6
clarifified selection: always wrt. build_graph structure;
wenzelm
parents:
67011
diff
changeset
|
420 |
val selected_sessions = |
66745 | 421 |
full_sessions.selection(Sessions.Selection(sessions = outdated)) |
422 |
val deps = |
|
67852
f701a1d5d852
allow cancellation of Sessions.deps/base_info via progress.stopped (progress.echo only happens for options like "verbose");
wenzelm
parents:
67847
diff
changeset
|
423 |
Sessions.deps(selected_sessions, full_sessions.global_theories, |
f701a1d5d852
allow cancellation of Sessions.deps/base_info via progress.stopped (progress.echo only happens for options like "verbose");
wenzelm
parents:
67847
diff
changeset
|
424 |
progress = progress, inlined_files = true).check_errors |
67025
961285f581e6
clarifified selection: always wrt. build_graph structure;
wenzelm
parents:
67011
diff
changeset
|
425 |
(selected_sessions, deps) |
66745 | 426 |
} |
67025
961285f581e6
clarifified selection: always wrt. build_graph structure;
wenzelm
parents:
67011
diff
changeset
|
427 |
else (selected_sessions0, deps0) |
66745 | 428 |
} |
429 |
||
430 |
||
431 |
/* check unknown files */ |
|
48504
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
wenzelm
parents:
48494
diff
changeset
|
432 |
|
65832
2fb85623c386
implicitly check for unknown files (not part of a Mercurial repository);
wenzelm
parents:
65831
diff
changeset
|
433 |
if (check_unknown_files) { |
2fb85623c386
implicitly check for unknown files (not part of a Mercurial repository);
wenzelm
parents:
65831
diff
changeset
|
434 |
val source_files = |
2fb85623c386
implicitly check for unknown files (not part of a Mercurial repository);
wenzelm
parents:
65831
diff
changeset
|
435 |
(for { |
2fb85623c386
implicitly check for unknown files (not part of a Mercurial repository);
wenzelm
parents:
65831
diff
changeset
|
436 |
(_, base) <- deps.session_bases.iterator |
2fb85623c386
implicitly check for unknown files (not part of a Mercurial repository);
wenzelm
parents:
65831
diff
changeset
|
437 |
(path, _) <- base.sources.iterator |
2fb85623c386
implicitly check for unknown files (not part of a Mercurial repository);
wenzelm
parents:
65831
diff
changeset
|
438 |
} yield path).toList |
67098 | 439 |
val exclude_files = List(Path.explode("$POLYML_EXE")).map(_.canonical_file) |
440 |
val unknown_files = |
|
67782
7e223a05e6d8
clarified notion of unknown files: ignore files outside of a Mercurial repository;
wenzelm
parents:
67493
diff
changeset
|
441 |
Mercurial.check_files(source_files)._2. |
67098 | 442 |
filterNot(path => exclude_files.contains(path.canonical_file)) |
65832
2fb85623c386
implicitly check for unknown files (not part of a Mercurial repository);
wenzelm
parents:
65831
diff
changeset
|
443 |
if (unknown_files.nonEmpty) { |
67782
7e223a05e6d8
clarified notion of unknown files: ignore files outside of a Mercurial repository;
wenzelm
parents:
67493
diff
changeset
|
444 |
progress.echo_warning("Unknown files (not part of the underlying Mercurial repository):" + |
65832
2fb85623c386
implicitly check for unknown files (not part of a Mercurial repository);
wenzelm
parents:
65831
diff
changeset
|
445 |
unknown_files.map(path => path.expand.implode).sorted.mkString("\n ", "\n ", "")) |
2fb85623c386
implicitly check for unknown files (not part of a Mercurial repository);
wenzelm
parents:
65831
diff
changeset
|
446 |
} |
2fb85623c386
implicitly check for unknown files (not part of a Mercurial repository);
wenzelm
parents:
65831
diff
changeset
|
447 |
} |
2fb85623c386
implicitly check for unknown files (not part of a Mercurial repository);
wenzelm
parents:
65831
diff
changeset
|
448 |
|
51220 | 449 |
|
450 |
/* main build process */ |
|
451 |
||
65831 | 452 |
val queue = Queue(progress, selected_sessions, store) |
65289 | 453 |
|
62632 | 454 |
store.prepare_output() |
48373 | 455 |
|
68086
9e1c670301b8
cleanup session output before starting build job;
wenzelm
parents:
67852
diff
changeset
|
456 |
// cleanup |
9e1c670301b8
cleanup session output before starting build job;
wenzelm
parents:
67852
diff
changeset
|
457 |
def cleanup(name: String, echo: Boolean = false) |
9e1c670301b8
cleanup session output before starting build job;
wenzelm
parents:
67852
diff
changeset
|
458 |
{ |
9e1c670301b8
cleanup session output before starting build job;
wenzelm
parents:
67852
diff
changeset
|
459 |
val files = |
9e1c670301b8
cleanup session output before starting build job;
wenzelm
parents:
67852
diff
changeset
|
460 |
List(Path.basic(name), store.database(name), store.log(name), store.log_gz(name)). |
9e1c670301b8
cleanup session output before starting build job;
wenzelm
parents:
67852
diff
changeset
|
461 |
map(store.output_dir + _).filter(_.is_file) |
9e1c670301b8
cleanup session output before starting build job;
wenzelm
parents:
67852
diff
changeset
|
462 |
if (files.nonEmpty) progress.echo_if(echo, "Cleaning " + name + " ...") |
9e1c670301b8
cleanup session output before starting build job;
wenzelm
parents:
67852
diff
changeset
|
463 |
val res = files.map(p => p.file.delete) |
9e1c670301b8
cleanup session output before starting build job;
wenzelm
parents:
67852
diff
changeset
|
464 |
if (!res.forall(ok => ok)) progress.echo_if(echo, name + " FAILED to delete") |
9e1c670301b8
cleanup session output before starting build job;
wenzelm
parents:
67852
diff
changeset
|
465 |
} |
48595 | 466 |
if (clean_build) { |
67030
a9859e879f38
proper build_selection for clean_build (amending 961285f581e6): e.g. relevant for "isabelle build_doc";
wenzelm
parents:
67026
diff
changeset
|
467 |
for (name <- full_sessions.build_descendants(full_sessions.build_selection(selection1))) { |
68086
9e1c670301b8
cleanup session output before starting build job;
wenzelm
parents:
67852
diff
changeset
|
468 |
cleanup(name, echo = true) |
48595 | 469 |
} |
470 |
} |
|
471 |
||
48425 | 472 |
// scheduler loop |
63082
6af03422535a
expose Sessions.Info in Build.Results
Lars Hupel <lars.hupel@mytum.de>
parents:
62946
diff
changeset
|
473 |
case class Result( |
66594 | 474 |
current: Boolean, |
475 |
heap_stamp: Option[String], |
|
476 |
process: Option[Process_Result], |
|
477 |
info: Sessions.Info) |
|
62402 | 478 |
{ |
479 |
def ok: Boolean = |
|
480 |
process match { |
|
481 |
case None => false |
|
482 |
case Some(res) => res.rc == 0 |
|
483 |
} |
|
484 |
} |
|
48639
675988e64bf9
store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents:
48626
diff
changeset
|
485 |
|
56837
5a598f1eecfd
more robust interrupt handling for Scala_Console, which uses JVM Thread.interrupt instead of POSIX SIGINT;
wenzelm
parents:
56831
diff
changeset
|
486 |
def sleep() |
5a598f1eecfd
more robust interrupt handling for Scala_Console, which uses JVM Thread.interrupt instead of POSIX SIGINT;
wenzelm
parents:
56831
diff
changeset
|
487 |
{ |
5a598f1eecfd
more robust interrupt handling for Scala_Console, which uses JVM Thread.interrupt instead of POSIX SIGINT;
wenzelm
parents:
56831
diff
changeset
|
488 |
try { Thread.sleep(500) } |
56861 | 489 |
catch { case Exn.Interrupt() => Exn.Interrupt.impose() } |
56837
5a598f1eecfd
more robust interrupt handling for Scala_Console, which uses JVM Thread.interrupt instead of POSIX SIGINT;
wenzelm
parents:
56831
diff
changeset
|
490 |
} |
50366 | 491 |
|
64265 | 492 |
val numa_nodes = new NUMA.Nodes(numa_shuffling) |
493 |
||
48425 | 494 |
@tailrec def loop( |
48676
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents:
48675
diff
changeset
|
495 |
pending: Queue, |
62628 | 496 |
running: Map[String, (List[String], Job)], |
48639
675988e64bf9
store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents:
48626
diff
changeset
|
497 |
results: Map[String, Result]): Map[String, Result] = |
48425 | 498 |
{ |
64265 | 499 |
def used_node(i: Int): Boolean = |
500 |
running.iterator.exists( |
|
501 |
{ case (_, (_, job)) => job.numa_node.isDefined && job.numa_node.get == i }) |
|
502 |
||
48425 | 503 |
if (pending.is_empty) results |
51253 | 504 |
else { |
505 |
if (progress.stopped) |
|
506 |
for ((_, (_, job)) <- running) job.terminate |
|
507 |
||
48674 | 508 |
running.find({ case (_, (_, job)) => job.is_finished }) match { |
62628 | 509 |
case Some((name, (input_heaps, job))) => |
50367 | 510 |
//{{{ finish job |
48424 | 511 |
|
62401 | 512 |
val process_result = job.join |
48373 | 513 |
|
65294 | 514 |
val log_lines = process_result.out_lines.filterNot(_.startsWith("\f")) |
62404
13a0f537e232
retain tail out_lines as printed, but not the whole log content;
wenzelm
parents:
62403
diff
changeset
|
515 |
val process_result_tail = |
13a0f537e232
retain tail out_lines as printed, but not the whole log content;
wenzelm
parents:
62403
diff
changeset
|
516 |
{ |
62409
e391528eff3b
proper option process_output_tail, more generous default;
wenzelm
parents:
62406
diff
changeset
|
517 |
val tail = job.info.options.int("process_output_tail") |
62632 | 518 |
process_result.copy( |
519 |
out_lines = |
|
68086
9e1c670301b8
cleanup session output before starting build job;
wenzelm
parents:
67852
diff
changeset
|
520 |
"(see also " + store.output_log(name).file.toString + ")" :: |
65294 | 521 |
(if (tail == 0) log_lines else log_lines.drop(log_lines.length - tail max 0))) |
62404
13a0f537e232
retain tail out_lines as printed, but not the whole log content;
wenzelm
parents:
62403
diff
changeset
|
522 |
} |
13a0f537e232
retain tail out_lines as printed, but not the whole log content;
wenzelm
parents:
62403
diff
changeset
|
523 |
|
66666
1a620647285c
clarified messages: after writing all files (see also 27f90319a499 and 57c85c83c11b);
wenzelm
parents:
66595
diff
changeset
|
524 |
|
1a620647285c
clarified messages: after writing all files (see also 27f90319a499 and 57c85c83c11b);
wenzelm
parents:
66595
diff
changeset
|
525 |
// write log file |
62636 | 526 |
val heap_stamp = |
62401 | 527 |
if (process_result.ok) { |
62636 | 528 |
val heap_stamp = |
62704
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62643
diff
changeset
|
529 |
for (path <- job.output_path if path.is_file) |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62643
diff
changeset
|
530 |
yield Sessions.write_heap_digest(path) |
48639
675988e64bf9
store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents:
48626
diff
changeset
|
531 |
|
68086
9e1c670301b8
cleanup session output before starting build job;
wenzelm
parents:
67852
diff
changeset
|
532 |
File.write_gzip(store.output_log_gz(name), terminate_lines(log_lines)) |
48639
675988e64bf9
store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents:
48626
diff
changeset
|
533 |
|
62636 | 534 |
heap_stamp |
48639
675988e64bf9
store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents:
48626
diff
changeset
|
535 |
} |
675988e64bf9
store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents:
48626
diff
changeset
|
536 |
else { |
68086
9e1c670301b8
cleanup session output before starting build job;
wenzelm
parents:
67852
diff
changeset
|
537 |
File.write(store.output_log(name), terminate_lines(log_lines)) |
48639
675988e64bf9
store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents:
48626
diff
changeset
|
538 |
|
62636 | 539 |
None |
48639
675988e64bf9
store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents:
48626
diff
changeset
|
540 |
} |
65291
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65289
diff
changeset
|
541 |
|
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65289
diff
changeset
|
542 |
// write database |
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65289
diff
changeset
|
543 |
{ |
66944
05df740cb54b
more informative timeout message, notably for build_status;
wenzelm
parents:
66943
diff
changeset
|
544 |
val build_log = |
05df740cb54b
more informative timeout message, notably for build_status;
wenzelm
parents:
66943
diff
changeset
|
545 |
Build_Log.Log_File(name, process_result.out_lines). |
05df740cb54b
more informative timeout message, notably for build_status;
wenzelm
parents:
66943
diff
changeset
|
546 |
parse_session_info( |
05df740cb54b
more informative timeout message, notably for build_status;
wenzelm
parents:
66943
diff
changeset
|
547 |
command_timings = true, |
05df740cb54b
more informative timeout message, notably for build_status;
wenzelm
parents:
66943
diff
changeset
|
548 |
theory_timings = true, |
05df740cb54b
more informative timeout message, notably for build_status;
wenzelm
parents:
66943
diff
changeset
|
549 |
ml_statistics = true, |
05df740cb54b
more informative timeout message, notably for build_status;
wenzelm
parents:
66943
diff
changeset
|
550 |
task_statistics = true) |
05df740cb54b
more informative timeout message, notably for build_status;
wenzelm
parents:
66943
diff
changeset
|
551 |
|
68086
9e1c670301b8
cleanup session output before starting build job;
wenzelm
parents:
67852
diff
changeset
|
552 |
using(SQLite.open_database(store.output_database(name)))(db => |
65318
342efc382558
eliminated somewhat redundant inlined name (despite a7aa17a1f721);
wenzelm
parents:
65317
diff
changeset
|
553 |
store.write_session_info(db, name, |
65291
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65289
diff
changeset
|
554 |
build_log = |
66944
05df740cb54b
more informative timeout message, notably for build_status;
wenzelm
parents:
66943
diff
changeset
|
555 |
if (process_result.timeout) build_log.error("Timeout") else build_log, |
65291
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65289
diff
changeset
|
556 |
build = |
66746 | 557 |
Session_Info(sources_stamp(deps, name), input_heaps, heap_stamp, |
66744 | 558 |
process_result.rc))) |
65291
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65289
diff
changeset
|
559 |
} |
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65289
diff
changeset
|
560 |
|
66666
1a620647285c
clarified messages: after writing all files (see also 27f90319a499 and 57c85c83c11b);
wenzelm
parents:
66595
diff
changeset
|
561 |
// messages |
1a620647285c
clarified messages: after writing all files (see also 27f90319a499 and 57c85c83c11b);
wenzelm
parents:
66595
diff
changeset
|
562 |
process_result.err_lines.foreach(progress.echo(_)) |
1a620647285c
clarified messages: after writing all files (see also 27f90319a499 and 57c85c83c11b);
wenzelm
parents:
66595
diff
changeset
|
563 |
|
1a620647285c
clarified messages: after writing all files (see also 27f90319a499 and 57c85c83c11b);
wenzelm
parents:
66595
diff
changeset
|
564 |
if (process_result.ok) |
1a620647285c
clarified messages: after writing all files (see also 27f90319a499 and 57c85c83c11b);
wenzelm
parents:
66595
diff
changeset
|
565 |
progress.echo("Finished " + name + " (" + process_result.timing.message_resources + ")") |
1a620647285c
clarified messages: after writing all files (see also 27f90319a499 and 57c85c83c11b);
wenzelm
parents:
66595
diff
changeset
|
566 |
else { |
1a620647285c
clarified messages: after writing all files (see also 27f90319a499 and 57c85c83c11b);
wenzelm
parents:
66595
diff
changeset
|
567 |
progress.echo(name + " FAILED") |
1a620647285c
clarified messages: after writing all files (see also 27f90319a499 and 57c85c83c11b);
wenzelm
parents:
66595
diff
changeset
|
568 |
if (!process_result.interrupted) progress.echo(process_result_tail.out) |
1a620647285c
clarified messages: after writing all files (see also 27f90319a499 and 57c85c83c11b);
wenzelm
parents:
66595
diff
changeset
|
569 |
} |
1a620647285c
clarified messages: after writing all files (see also 27f90319a499 and 57c85c83c11b);
wenzelm
parents:
66595
diff
changeset
|
570 |
|
50707
5b2bf7611662
maintain session index on Scala side, for more determistic results;
wenzelm
parents:
50686
diff
changeset
|
571 |
loop(pending - name, running - name, |
63082
6af03422535a
expose Sessions.Info in Build.Results
Lars Hupel <lars.hupel@mytum.de>
parents:
62946
diff
changeset
|
572 |
results + (name -> Result(false, heap_stamp, Some(process_result_tail), job.info))) |
50367 | 573 |
//}}} |
60215 | 574 |
case None if running.size < (max_jobs max 1) => |
50367 | 575 |
//{{{ check/start next job |
48547 | 576 |
pending.dequeue(running.isDefinedAt(_)) match { |
577 |
case Some((name, info)) => |
|
66848 | 578 |
val ancestor_results = |
579 |
selected_sessions.build_requirements(List(name)).filterNot(_ == name). |
|
580 |
map(results(_)) |
|
62636 | 581 |
val ancestor_heaps = ancestor_results.flatMap(_.heap_stamp) |
62628 | 582 |
|
65360 | 583 |
val do_output = build_heap || Sessions.is_pure(name) || queue.is_inner(name) |
48547 | 584 |
|
62636 | 585 |
val (current, heap_stamp) = |
48547 | 586 |
{ |
65291
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65289
diff
changeset
|
587 |
store.find_database_heap(name) match { |
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65289
diff
changeset
|
588 |
case Some((database, heap_stamp)) => |
65320
52861eebf58d
access table via session_name: db may in principle contain multiple entries;
wenzelm
parents:
65318
diff
changeset
|
589 |
using(SQLite.open_database(database))(store.read_build(_, name)) match { |
65291
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65289
diff
changeset
|
590 |
case Some(build) => |
62628 | 591 |
val current = |
66841 | 592 |
!fresh_build && |
66747 | 593 |
build.ok && |
66745 | 594 |
build.sources == sources_stamp(deps, name) && |
65291
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65289
diff
changeset
|
595 |
build.input_heaps == ancestor_heaps && |
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65289
diff
changeset
|
596 |
build.output_heap == heap_stamp && |
66595 | 597 |
!(do_output && heap_stamp.isEmpty) |
62636 | 598 |
(current, heap_stamp) |
599 |
case None => (false, None) |
|
48547 | 600 |
} |
62636 | 601 |
case None => (false, None) |
48504
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
wenzelm
parents:
48494
diff
changeset
|
602 |
} |
48547 | 603 |
} |
62628 | 604 |
val all_current = current && ancestor_results.forall(_.current) |
48528
784c6f63d79c
proper all_current, which regards parent status as well;
wenzelm
parents:
48511
diff
changeset
|
605 |
|
48547 | 606 |
if (all_current) |
62402 | 607 |
loop(pending - name, running, |
63082
6af03422535a
expose Sessions.Info in Build.Results
Lars Hupel <lars.hupel@mytum.de>
parents:
62946
diff
changeset
|
608 |
results + (name -> Result(true, heap_stamp, Some(Process_Result(0)), info))) |
48678
ff27af15530c
queue ordering by descending outdegree and timeout;
wenzelm
parents:
48676
diff
changeset
|
609 |
else if (no_build) { |
50366 | 610 |
if (verbose) progress.echo("Skipping " + name + " ...") |
62402 | 611 |
loop(pending - name, running, |
63082
6af03422535a
expose Sessions.Info in Build.Results
Lars Hupel <lars.hupel@mytum.de>
parents:
62946
diff
changeset
|
612 |
results + (name -> Result(false, heap_stamp, Some(Process_Result(1)), info))) |
48678
ff27af15530c
queue ordering by descending outdegree and timeout;
wenzelm
parents:
48676
diff
changeset
|
613 |
} |
62628 | 614 |
else if (ancestor_results.forall(_.ok) && !progress.stopped) { |
68086
9e1c670301b8
cleanup session output before starting build job;
wenzelm
parents:
67852
diff
changeset
|
615 |
progress.echo((if (do_output) "Building " else "Running ") + name + " ...") |
9e1c670301b8
cleanup session output before starting build job;
wenzelm
parents:
67852
diff
changeset
|
616 |
|
9e1c670301b8
cleanup session output before starting build job;
wenzelm
parents:
67852
diff
changeset
|
617 |
cleanup(name) |
9e1c670301b8
cleanup session output before starting build job;
wenzelm
parents:
67852
diff
changeset
|
618 |
using(SQLite.open_database(store.output_database(name)))(db => |
9e1c670301b8
cleanup session output before starting build job;
wenzelm
parents:
67852
diff
changeset
|
619 |
store.init_session_info(db, name)) |
9e1c670301b8
cleanup session output before starting build job;
wenzelm
parents:
67852
diff
changeset
|
620 |
|
64265 | 621 |
val numa_node = numa_nodes.next(used_node(_)) |
51220 | 622 |
val job = |
65415
8cd54b18b68b
clarified signature: tree structure is not essential;
wenzelm
parents:
65406
diff
changeset
|
623 |
new Job(progress, name, info, selected_sessions, deps, store, do_output, |
8cd54b18b68b
clarified signature: tree structure is not essential;
wenzelm
parents:
65406
diff
changeset
|
624 |
verbose, pide, numa_node, queue.command_timings(name)) |
62628 | 625 |
loop(pending, running + (name -> (ancestor_heaps, job)), results) |
48547 | 626 |
} |
627 |
else { |
|
50366 | 628 |
progress.echo(name + " CANCELLED") |
65253 | 629 |
loop(pending - name, running, |
630 |
results + (name -> Result(false, heap_stamp, None, info))) |
|
48547 | 631 |
} |
632 |
case None => sleep(); loop(pending, running, results) |
|
48425 | 633 |
} |
50367 | 634 |
///}}} |
48425 | 635 |
case None => sleep(); loop(pending, running, results) |
48373 | 636 |
} |
51253 | 637 |
} |
48425 | 638 |
} |
639 |
||
51220 | 640 |
|
641 |
/* build results */ |
|
642 |
||
62641 | 643 |
val results0 = |
48583 | 644 |
if (deps.is_empty) { |
65827 | 645 |
progress.echo_warning("Nothing to build") |
50707
5b2bf7611662
maintain session index on Scala side, for more determistic results;
wenzelm
parents:
50686
diff
changeset
|
646 |
Map.empty[String, Result] |
48583 | 647 |
} |
648 |
else loop(queue, Map.empty, Map.empty) |
|
649 |
||
62641 | 650 |
val results = |
64265 | 651 |
new Results( |
652 |
(for ((name, result) <- results0.iterator) |
|
653 |
yield (name, (result.process, result.info))).toMap) |
|
62641 | 654 |
|
655 |
if (results.rc != 0 && (verbose || !no_build)) { |
|
656 |
val unfinished = |
|
657 |
(for { |
|
658 |
name <- results.sessions.iterator |
|
659 |
if !results(name).ok |
|
660 |
} yield name).toList.sorted |
|
661 |
progress.echo("Unfinished session(s): " + commas(unfinished)) |
|
662 |
} |
|
663 |
||
51418
7b8ce8403340
more accurate handling of global browser info at the very end (without races), subject to no_build and info.browser_info;
wenzelm
parents:
51402
diff
changeset
|
664 |
|
7b8ce8403340
more accurate handling of global browser info at the very end (without races), subject to no_build and info.browser_info;
wenzelm
parents:
51402
diff
changeset
|
665 |
/* global browser info */ |
7b8ce8403340
more accurate handling of global browser info at the very end (without races), subject to no_build and info.browser_info;
wenzelm
parents:
51402
diff
changeset
|
666 |
|
7b8ce8403340
more accurate handling of global browser info at the very end (without races), subject to no_build and info.browser_info;
wenzelm
parents:
51402
diff
changeset
|
667 |
if (!no_build) { |
7b8ce8403340
more accurate handling of global browser info at the very end (without races), subject to no_build and info.browser_info;
wenzelm
parents:
51402
diff
changeset
|
668 |
val browser_chapters = |
7b8ce8403340
more accurate handling of global browser info at the very end (without races), subject to no_build and info.browser_info;
wenzelm
parents:
51402
diff
changeset
|
669 |
(for { |
62641 | 670 |
(name, result) <- results0.iterator |
62944
3ee643c5ed00
more standard session build process, including browser_info;
wenzelm
parents:
62902
diff
changeset
|
671 |
if result.ok |
65415
8cd54b18b68b
clarified signature: tree structure is not essential;
wenzelm
parents:
65406
diff
changeset
|
672 |
info = full_sessions(name) |
51418
7b8ce8403340
more accurate handling of global browser info at the very end (without races), subject to no_build and info.browser_info;
wenzelm
parents:
51402
diff
changeset
|
673 |
if info.options.bool("browser_info") |
7b8ce8403340
more accurate handling of global browser info at the very end (without races), subject to no_build and info.browser_info;
wenzelm
parents:
51402
diff
changeset
|
674 |
} yield (info.chapter, (name, info.description))).toList.groupBy(_._1). |
7b8ce8403340
more accurate handling of global browser info at the very end (without races), subject to no_build and info.browser_info;
wenzelm
parents:
51402
diff
changeset
|
675 |
map({ case (chapter, es) => (chapter, es.map(_._2)) }).filterNot(_._2.isEmpty) |
7b8ce8403340
more accurate handling of global browser info at the very end (without races), subject to no_build and info.browser_info;
wenzelm
parents:
51402
diff
changeset
|
676 |
|
7b8ce8403340
more accurate handling of global browser info at the very end (without races), subject to no_build and info.browser_info;
wenzelm
parents:
51402
diff
changeset
|
677 |
for ((chapter, entries) <- browser_chapters) |
62632 | 678 |
Present.update_chapter_index(store.browser_info, chapter, entries) |
51418
7b8ce8403340
more accurate handling of global browser info at the very end (without races), subject to no_build and info.browser_info;
wenzelm
parents:
51402
diff
changeset
|
679 |
|
62632 | 680 |
if (browser_chapters.nonEmpty) Present.make_global_index(store.browser_info) |
51418
7b8ce8403340
more accurate handling of global browser info at the very end (without races), subject to no_build and info.browser_info;
wenzelm
parents:
51402
diff
changeset
|
681 |
} |
7b8ce8403340
more accurate handling of global browser info at the very end (without races), subject to no_build and info.browser_info;
wenzelm
parents:
51402
diff
changeset
|
682 |
|
62641 | 683 |
results |
48341 | 684 |
} |
685 |
||
686 |
||
62833 | 687 |
/* Isabelle tool wrapper */ |
48341 | 688 |
|
62833 | 689 |
val isabelle_tool = Isabelle_Tool("build", "build and manage Isabelle sessions", args => |
48341 | 690 |
{ |
62833 | 691 |
val build_options = Word.explode(Isabelle_System.getenv("ISABELLE_BUILD_OPTIONS")) |
62590 | 692 |
|
66737
2edc0c42c883
option -B for "isabelle build" and "isabelle imports";
wenzelm
parents:
66736
diff
changeset
|
693 |
var base_sessions: List[String] = Nil |
62833 | 694 |
var select_dirs: List[Path] = Nil |
64265 | 695 |
var numa_shuffling = false |
65308 | 696 |
var pide = false |
62833 | 697 |
var requirements = false |
66745 | 698 |
var soft_build = false |
62833 | 699 |
var exclude_session_groups: List[String] = Nil |
700 |
var all_sessions = false |
|
701 |
var build_heap = false |
|
702 |
var clean_build = false |
|
703 |
var dirs: List[Path] = Nil |
|
66841 | 704 |
var fresh_build = false |
62833 | 705 |
var session_groups: List[String] = Nil |
706 |
var max_jobs = 1 |
|
707 |
var check_keywords: Set[String] = Set.empty |
|
708 |
var list_files = false |
|
709 |
var no_build = false |
|
67847 | 710 |
var options = Options.init(opts = build_options) |
62833 | 711 |
var system_mode = false |
712 |
var verbose = false |
|
713 |
var exclude_sessions: List[String] = Nil |
|
62590 | 714 |
|
62833 | 715 |
val getopts = Getopts(""" |
62590 | 716 |
Usage: isabelle build [OPTIONS] [SESSIONS ...] |
717 |
||
718 |
Options are: |
|
66737
2edc0c42c883
option -B for "isabelle build" and "isabelle imports";
wenzelm
parents:
66736
diff
changeset
|
719 |
-B NAME include session NAME and all descendants |
62590 | 720 |
-D DIR include session directory and select its sessions |
64265 | 721 |
-N cyclic shuffling of NUMA CPU nodes (performance tuning) |
65308 | 722 |
-P build via PIDE protocol |
62590 | 723 |
-R operate on requirements of selected sessions |
66745 | 724 |
-S soft build: only observe changes of sources, not heap images |
62590 | 725 |
-X NAME exclude sessions from group NAME and all descendants |
726 |
-a select all sessions |
|
727 |
-b build heap images |
|
728 |
-c clean build |
|
729 |
-d DIR include session directory |
|
66841 | 730 |
-f fresh build |
62590 | 731 |
-g NAME select session group NAME |
732 |
-j INT maximum number of parallel jobs (default 1) |
|
733 |
-k KEYWORD check theory sources for conflicts with proposed keywords |
|
734 |
-l list session source files |
|
735 |
-n no build -- test dependencies only |
|
736 |
-o OPTION override Isabelle system OPTION (via NAME=VAL or NAME) |
|
737 |
-s system build mode: produce output in ISABELLE_HOME |
|
738 |
-v verbose |
|
739 |
-x NAME exclude session NAME and all descendants |
|
740 |
||
62596 | 741 |
Build and manage Isabelle sessions, depending on implicit settings: |
742 |
||
64455 | 743 |
""" + Library.prefix_lines(" ", Build_Log.Settings.show()) + "\n", |
66737
2edc0c42c883
option -B for "isabelle build" and "isabelle imports";
wenzelm
parents:
66736
diff
changeset
|
744 |
"B:" -> (arg => base_sessions = base_sessions ::: List(arg)), |
62833 | 745 |
"D:" -> (arg => select_dirs = select_dirs ::: List(Path.explode(arg))), |
64265 | 746 |
"N" -> (_ => numa_shuffling = true), |
65308 | 747 |
"P" -> (_ => pide = true), |
62833 | 748 |
"R" -> (_ => requirements = true), |
66745 | 749 |
"S" -> (_ => soft_build = true), |
62833 | 750 |
"X:" -> (arg => exclude_session_groups = exclude_session_groups ::: List(arg)), |
751 |
"a" -> (_ => all_sessions = true), |
|
752 |
"b" -> (_ => build_heap = true), |
|
753 |
"c" -> (_ => clean_build = true), |
|
754 |
"d:" -> (arg => dirs = dirs ::: List(Path.explode(arg))), |
|
66841 | 755 |
"f" -> (_ => fresh_build = true), |
62833 | 756 |
"g:" -> (arg => session_groups = session_groups ::: List(arg)), |
63805 | 757 |
"j:" -> (arg => max_jobs = Value.Int.parse(arg)), |
62833 | 758 |
"k:" -> (arg => check_keywords = check_keywords + arg), |
759 |
"l" -> (_ => list_files = true), |
|
760 |
"n" -> (_ => no_build = true), |
|
761 |
"o:" -> (arg => options = options + arg), |
|
762 |
"s" -> (_ => system_mode = true), |
|
763 |
"v" -> (_ => verbose = true), |
|
764 |
"x:" -> (arg => exclude_sessions = exclude_sessions ::: List(arg))) |
|
62590 | 765 |
|
62833 | 766 |
val sessions = getopts(args) |
62590 | 767 |
|
64115 | 768 |
val progress = new Console_Progress(verbose = verbose) |
62590 | 769 |
|
64140 | 770 |
val start_date = Date.now() |
771 |
||
62833 | 772 |
if (verbose) { |
773 |
progress.echo( |
|
64155 | 774 |
"Started at " + Build_Log.print_date(start_date) + |
64140 | 775 |
" (" + Isabelle_System.getenv("ML_IDENTIFIER") + " on " + Isabelle_System.hostname() +")") |
64081 | 776 |
progress.echo(Build_Log.Settings.show() + "\n") |
62833 | 777 |
} |
62590 | 778 |
|
62833 | 779 |
val results = |
780 |
progress.interrupt_handler { |
|
67846 | 781 |
build(options, |
782 |
progress = progress, |
|
65832
2fb85623c386
implicitly check for unknown files (not part of a Mercurial repository);
wenzelm
parents:
65831
diff
changeset
|
783 |
check_unknown_files = Mercurial.is_repository(Path.explode("~~")), |
63224 | 784 |
build_heap = build_heap, |
785 |
clean_build = clean_build, |
|
786 |
dirs = dirs, |
|
787 |
select_dirs = select_dirs, |
|
65831 | 788 |
numa_shuffling = NUMA.enabled_warning(progress, numa_shuffling), |
63224 | 789 |
max_jobs = max_jobs, |
790 |
list_files = list_files, |
|
791 |
check_keywords = check_keywords, |
|
66841 | 792 |
fresh_build = fresh_build, |
63224 | 793 |
no_build = no_build, |
66745 | 794 |
soft_build = soft_build, |
63224 | 795 |
system_mode = system_mode, |
796 |
verbose = verbose, |
|
65308 | 797 |
pide = pide, |
63224 | 798 |
requirements = requirements, |
799 |
all_sessions = all_sessions, |
|
66737
2edc0c42c883
option -B for "isabelle build" and "isabelle imports";
wenzelm
parents:
66736
diff
changeset
|
800 |
base_sessions = base_sessions, |
63224 | 801 |
exclude_session_groups = exclude_session_groups, |
802 |
exclude_sessions = exclude_sessions, |
|
803 |
session_groups = session_groups, |
|
804 |
sessions = sessions) |
|
62833 | 805 |
} |
64140 | 806 |
val end_date = Date.now() |
807 |
val elapsed_time = end_date.time - start_date.time |
|
62590 | 808 |
|
62833 | 809 |
if (verbose) { |
64155 | 810 |
progress.echo("\nFinished at " + Build_Log.print_date(end_date)) |
62833 | 811 |
} |
62590 | 812 |
|
62833 | 813 |
val total_timing = |
814 |
(Timing.zero /: results.sessions.iterator.map(a => results(a).timing))(_ + _). |
|
815 |
copy(elapsed = elapsed_time) |
|
816 |
progress.echo(total_timing.message_resources) |
|
62590 | 817 |
|
62833 | 818 |
sys.exit(results.rc) |
819 |
}) |
|
48276 | 820 |
} |