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