author | wenzelm |
Fri, 27 Mar 2020 12:46:56 +0100 | |
changeset 71598 | 269dc4bf1f40 |
parent 71597 | d025735a4090 |
child 71601 | 97ccf48c2f0c |
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 |
|
68221 | 41 |
store.access_database(name) match { |
65291
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65289
diff
changeset
|
42 |
case None => no_timings |
68214 | 43 |
case Some(db) => |
65291
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 |
{ |
68214 | 46 |
progress.echo_warning("Ignoring bad database " + db + (if (msg == "") "" else "\n" + msg)) |
65291
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65289
diff
changeset
|
47 |
no_timings |
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65289
diff
changeset
|
48 |
} |
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65289
diff
changeset
|
49 |
try { |
68214 | 50 |
val command_timings = store.read_command_timings(db, name) |
51 |
val session_timing = |
|
52 |
store.read_session_timing(db, name) match { |
|
53 |
case Markup.Elapsed(t) => t |
|
54 |
case _ => 0.0 |
|
55 |
} |
|
56 |
(command_timings, session_timing) |
|
65291
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65289
diff
changeset
|
57 |
} |
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65289
diff
changeset
|
58 |
catch { |
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65289
diff
changeset
|
59 |
case ERROR(msg) => ignore_error(msg) |
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65289
diff
changeset
|
60 |
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
|
61 |
case _: XML.Error => ignore_error("") |
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65289
diff
changeset
|
62 |
} |
68214 | 63 |
finally { db.close } |
65289 | 64 |
} |
65 |
} |
|
66 |
||
68731 | 67 |
def make_session_timing(sessions_structure: Sessions.Structure, timing: Map[String, Double]) |
68486
6984a55f3cba
clarified queue ordering: take session descendants into account, notably for "slow" AFP sessions;
wenzelm
parents:
68331
diff
changeset
|
68 |
: Map[String, Double] = |
6984a55f3cba
clarified queue ordering: take session descendants into account, notably for "slow" AFP sessions;
wenzelm
parents:
68331
diff
changeset
|
69 |
{ |
68731 | 70 |
val maximals = sessions_structure.build_graph.maximals.toSet |
68486
6984a55f3cba
clarified queue ordering: take session descendants into account, notably for "slow" AFP sessions;
wenzelm
parents:
68331
diff
changeset
|
71 |
def desc_timing(name: String): Double = |
6984a55f3cba
clarified queue ordering: take session descendants into account, notably for "slow" AFP sessions;
wenzelm
parents:
68331
diff
changeset
|
72 |
{ |
68487 | 73 |
if (maximals.contains(name)) timing(name) |
74 |
else { |
|
68731 | 75 |
val descendants = sessions_structure.build_descendants(List(name)).toSet |
76 |
val g = sessions_structure.build_graph.restrict(descendants) |
|
68487 | 77 |
(0.0 :: g.maximals.flatMap(desc => { |
78 |
val ps = g.all_preds(List(desc)) |
|
79 |
if (ps.exists(p => timing.get(p).isEmpty)) None |
|
80 |
else Some(ps.map(timing(_)).sum) |
|
81 |
})).max |
|
82 |
} |
|
68486
6984a55f3cba
clarified queue ordering: take session descendants into account, notably for "slow" AFP sessions;
wenzelm
parents:
68331
diff
changeset
|
83 |
} |
6984a55f3cba
clarified queue ordering: take session descendants into account, notably for "slow" AFP sessions;
wenzelm
parents:
68331
diff
changeset
|
84 |
timing.keySet.iterator.map(name => (name -> desc_timing(name))).toMap.withDefaultValue(0.0) |
6984a55f3cba
clarified queue ordering: take session descendants into account, notably for "slow" AFP sessions;
wenzelm
parents:
68331
diff
changeset
|
85 |
} |
6984a55f3cba
clarified queue ordering: take session descendants into account, notably for "slow" AFP sessions;
wenzelm
parents:
68331
diff
changeset
|
86 |
|
68731 | 87 |
def apply(progress: Progress, sessions_structure: Sessions.Structure, store: Sessions.Store) |
88 |
: Queue = |
|
48676
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents:
48675
diff
changeset
|
89 |
{ |
68731 | 90 |
val graph = sessions_structure.build_graph |
65415
8cd54b18b68b
clarified signature: tree structure is not essential;
wenzelm
parents:
65406
diff
changeset
|
91 |
val names = graph.keys |
51220 | 92 |
|
65831 | 93 |
val timings = names.map(name => (name, load_timings(progress, store, name))) |
51220 | 94 |
val command_timings = |
68486
6984a55f3cba
clarified queue ordering: take session descendants into account, notably for "slow" AFP sessions;
wenzelm
parents:
68331
diff
changeset
|
95 |
timings.map({ case (name, (ts, _)) => (name, ts) }).toMap.withDefaultValue(Nil) |
51220 | 96 |
val session_timing = |
68731 | 97 |
make_session_timing(sessions_structure, |
98 |
timings.map({ case (name, (_, t)) => (name, t) }).toMap) |
|
48678
ff27af15530c
queue ordering by descending outdegree and timeout;
wenzelm
parents:
48676
diff
changeset
|
99 |
|
ff27af15530c
queue ordering by descending outdegree and timeout;
wenzelm
parents:
48676
diff
changeset
|
100 |
object Ordering extends scala.math.Ordering[String] |
ff27af15530c
queue ordering by descending outdegree and timeout;
wenzelm
parents:
48676
diff
changeset
|
101 |
{ |
51227
88c96e836ed6
prefer comparison of session timing, if this is known already;
wenzelm
parents:
51223
diff
changeset
|
102 |
def compare_timing(name1: String, name2: String): Int = |
88c96e836ed6
prefer comparison of session timing, if this is known already;
wenzelm
parents:
51223
diff
changeset
|
103 |
{ |
88c96e836ed6
prefer comparison of session timing, if this is known already;
wenzelm
parents:
51223
diff
changeset
|
104 |
val t1 = session_timing(name1) |
88c96e836ed6
prefer comparison of session timing, if this is known already;
wenzelm
parents:
51223
diff
changeset
|
105 |
val t2 = session_timing(name2) |
88c96e836ed6
prefer comparison of session timing, if this is known already;
wenzelm
parents:
51223
diff
changeset
|
106 |
if (t1 == 0.0 || t2 == 0.0) 0 |
88c96e836ed6
prefer comparison of session timing, if this is known already;
wenzelm
parents:
51223
diff
changeset
|
107 |
else t1 compare t2 |
88c96e836ed6
prefer comparison of session timing, if this is known already;
wenzelm
parents:
51223
diff
changeset
|
108 |
} |
88c96e836ed6
prefer comparison of session timing, if this is known already;
wenzelm
parents:
51223
diff
changeset
|
109 |
|
48678
ff27af15530c
queue ordering by descending outdegree and timeout;
wenzelm
parents:
48676
diff
changeset
|
110 |
def compare(name1: String, name2: String): Int = |
68486
6984a55f3cba
clarified queue ordering: take session descendants into account, notably for "slow" AFP sessions;
wenzelm
parents:
68331
diff
changeset
|
111 |
compare_timing(name2, name1) match { |
48678
ff27af15530c
queue ordering by descending outdegree and timeout;
wenzelm
parents:
48676
diff
changeset
|
112 |
case 0 => |
68731 | 113 |
sessions_structure(name2).timeout compare sessions_structure(name1).timeout match { |
68486
6984a55f3cba
clarified queue ordering: take session descendants into account, notably for "slow" AFP sessions;
wenzelm
parents:
68331
diff
changeset
|
114 |
case 0 => name1 compare name2 |
48678
ff27af15530c
queue ordering by descending outdegree and timeout;
wenzelm
parents:
48676
diff
changeset
|
115 |
case ord => ord |
ff27af15530c
queue ordering by descending outdegree and timeout;
wenzelm
parents:
48676
diff
changeset
|
116 |
} |
ff27af15530c
queue ordering by descending outdegree and timeout;
wenzelm
parents:
48676
diff
changeset
|
117 |
case ord => ord |
ff27af15530c
queue ordering by descending outdegree and timeout;
wenzelm
parents:
48676
diff
changeset
|
118 |
} |
ff27af15530c
queue ordering by descending outdegree and timeout;
wenzelm
parents:
48676
diff
changeset
|
119 |
} |
ff27af15530c
queue ordering by descending outdegree and timeout;
wenzelm
parents:
48676
diff
changeset
|
120 |
|
65415
8cd54b18b68b
clarified signature: tree structure is not essential;
wenzelm
parents:
65406
diff
changeset
|
121 |
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
|
122 |
} |
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents:
48675
diff
changeset
|
123 |
} |
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents:
48675
diff
changeset
|
124 |
|
65314 | 125 |
private class Queue( |
62631 | 126 |
graph: Graph[String, Sessions.Info], |
51220 | 127 |
order: SortedSet[String], |
128 |
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
|
129 |
{ |
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents:
48675
diff
changeset
|
130 |
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
|
131 |
|
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents:
48675
diff
changeset
|
132 |
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
|
133 |
|
51227
88c96e836ed6
prefer comparison of session timing, if this is known already;
wenzelm
parents:
51223
diff
changeset
|
134 |
def - (name: String): Queue = |
88c96e836ed6
prefer comparison of session timing, if this is known already;
wenzelm
parents:
51223
diff
changeset
|
135 |
new Queue(graph.del_node(name), |
67011 | 136 |
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
|
137 |
command_timings) |
48676
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents:
48675
diff
changeset
|
138 |
|
62631 | 139 |
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
|
140 |
{ |
51227
88c96e836ed6
prefer comparison of session timing, if this is known already;
wenzelm
parents:
51223
diff
changeset
|
141 |
val it = order.iterator.dropWhile(name => |
88c96e836ed6
prefer comparison of session timing, if this is known already;
wenzelm
parents:
51223
diff
changeset
|
142 |
skip(name) |
67011 | 143 |
|| !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
|
144 |
|| !graph.is_minimal(name)) |
48680 | 145 |
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
|
146 |
else None |
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents:
48675
diff
changeset
|
147 |
} |
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents:
48675
diff
changeset
|
148 |
} |
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents:
48675
diff
changeset
|
149 |
|
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents:
48675
diff
changeset
|
150 |
|
65313 | 151 |
/* PIDE protocol handler */ |
152 |
||
153 |
class Handler(progress: Progress, session: Session, session_name: String) |
|
154 |
extends Session.Protocol_Handler |
|
155 |
{ |
|
156 |
val result_error: Promise[String] = Future.promise |
|
157 |
||
158 |
override def exit() { result_error.cancel } |
|
159 |
||
160 |
private def build_session_finished(msg: Prover.Protocol_Output): Boolean = |
|
161 |
{ |
|
162 |
val error_message = |
|
65344
b99283eed13c
clarified YXML vs. symbol encoding: operate on whole message;
wenzelm
parents:
65320
diff
changeset
|
163 |
try { Pretty.string_of(Symbol.decode_yxml(msg.text)) } |
65313 | 164 |
catch { case ERROR(msg) => msg } |
165 |
result_error.fulfill(error_message) |
|
166 |
session.send_stop() |
|
167 |
true |
|
168 |
} |
|
169 |
||
170 |
private def loading_theory(msg: Prover.Protocol_Output): Boolean = |
|
171 |
msg.properties match { |
|
172 |
case Markup.Loading_Theory(name) => |
|
68957 | 173 |
progress.theory(Progress.Theory(name, session = session_name)) |
65313 | 174 |
true |
175 |
case _ => false |
|
176 |
} |
|
177 |
||
178 |
val functions = |
|
179 |
List( |
|
180 |
Markup.BUILD_SESSION_FINISHED -> build_session_finished _, |
|
181 |
Markup.LOADING_THEORY -> loading_theory _) |
|
182 |
} |
|
183 |
||
184 |
||
65308 | 185 |
/* job: running prover process */ |
48341 | 186 |
|
65308 | 187 |
private class Job(progress: Progress, |
188 |
name: String, |
|
189 |
val info: Sessions.Info, |
|
65313 | 190 |
deps: Sessions.Deps, |
65308 | 191 |
store: Sessions.Store, |
192 |
do_output: Boolean, |
|
193 |
verbose: Boolean, |
|
194 |
pide: Boolean, |
|
195 |
val numa_node: Option[Int], |
|
196 |
command_timings: List[Properties.T]) |
|
48418 | 197 |
{ |
68953 | 198 |
val options = NUMA.policy_options(info.options, numa_node) |
65312 | 199 |
|
70683
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70671
diff
changeset
|
200 |
val sessions_structure = deps.sessions_structure |
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70671
diff
changeset
|
201 |
|
59445 | 202 |
private val graph_file = Isabelle_System.tmp_file("session_graph", "pdf") |
66822 | 203 |
isabelle.graphview.Graph_File.write(options, graph_file, deps(name).session_graph_display) |
59445 | 204 |
|
68198
6710167e17af
avoid race condition wrt. ISABELLE_TMP, which is removed in Bash.cleanup() before Bash.result(progress_stdout);
wenzelm
parents:
68148
diff
changeset
|
205 |
private val export_tmp_dir = Isabelle_System.tmp_dir("export") |
68289 | 206 |
private val export_consumer = |
207 |
Export.consumer(store.open_database(name, output = true), cache = store.xz_cache) |
|
68092
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
68088
diff
changeset
|
208 |
|
62573 | 209 |
private val future_result: Future[Process_Result] = |
61559
313eca3fa847
more direct task future implementation, with proper cancel operation;
wenzelm
parents:
61556
diff
changeset
|
210 |
Future.thread("build") { |
65308 | 211 |
val parent = info.parent.getOrElse("") |
65441 | 212 |
val base = deps(name) |
65308 | 213 |
val args_yxml = |
214 |
YXML.string_of_body( |
|
62944
3ee643c5ed00
more standard session build process, including browser_info;
wenzelm
parents:
62902
diff
changeset
|
215 |
{ |
3ee643c5ed00
more standard session build process, including browser_info;
wenzelm
parents:
62902
diff
changeset
|
216 |
import XML.Encode._ |
3ee643c5ed00
more standard session build process, including browser_info;
wenzelm
parents:
62902
diff
changeset
|
217 |
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
|
218 |
pair(Path.encode, pair(list(pair(Path.encode, Path.encode)), pair(string, |
65307 | 219 |
pair(string, pair(string, pair(string, pair(Path.encode, |
65517 | 220 |
pair(list(pair(Options.encode, list(pair(string, properties)))), |
70683
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70671
diff
changeset
|
221 |
pair(list(pair(string, properties)), |
67493
c4e9e0c50487
treat sessions as entities with defining position;
wenzelm
parents:
67471
diff
changeset
|
222 |
pair(list(pair(string, string)), |
70683
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70671
diff
changeset
|
223 |
pair(list(string), pair(list(pair(string, string)), |
70712
a3cfe859d915
find theories via session directories only -- ignore known_theories;
wenzelm
parents:
70683
diff
changeset
|
224 |
pair(list(string), list(string))))))))))))))))))( |
62944
3ee643c5ed00
more standard session build process, including browser_info;
wenzelm
parents:
62902
diff
changeset
|
225 |
(Symbol.codes, (command_timings, (do_output, (verbose, |
3ee643c5ed00
more standard session build process, including browser_info;
wenzelm
parents:
62902
diff
changeset
|
226 |
(store.browser_info, (info.document_files, (File.standard_path(graph_file), |
65307 | 227 |
(parent, (info.chapter, (name, (Path.current, |
70683
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70671
diff
changeset
|
228 |
(info.theories, |
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70671
diff
changeset
|
229 |
(sessions_structure.session_positions, |
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70671
diff
changeset
|
230 |
(sessions_structure.dest_session_directories, |
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70671
diff
changeset
|
231 |
(base.doc_names, (base.global_theories.toList, |
70712
a3cfe859d915
find theories via session directories only -- ignore known_theories;
wenzelm
parents:
70683
diff
changeset
|
232 |
(base.loaded_theories.keys, info.bibtex_entries.map(_.info))))))))))))))))))) |
65308 | 233 |
}) |
234 |
||
235 |
val env = |
|
236 |
Isabelle_System.settings() + |
|
68198
6710167e17af
avoid race condition wrt. ISABELLE_TMP, which is removed in Bash.cleanup() before Bash.result(progress_stdout);
wenzelm
parents:
68148
diff
changeset
|
237 |
("ISABELLE_EXPORT_TMP" -> File.standard_path(export_tmp_dir)) + |
65312 | 238 |
("ISABELLE_ML_DEBUGGER" -> options.bool("ML_debugger").toString) |
65308 | 239 |
|
240 |
def save_heap: String = |
|
69777
1df241e340c8
removed left-over test material (amending bb0a354f6b46);
wenzelm
parents:
69744
diff
changeset
|
241 |
(if (info.theories.isEmpty) "" else "ML_Heap.share_common_data (); ") + |
68217 | 242 |
"ML_Heap.save_child " + |
243 |
ML_Syntax.print_string_bytes(File.platform_path(store.output_heap(name))) |
|
62944
3ee643c5ed00
more standard session build process, including browser_info;
wenzelm
parents:
62902
diff
changeset
|
244 |
|
65360 | 245 |
if (pide && !Sessions.is_pure(name)) { |
70683
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70671
diff
changeset
|
246 |
val resources = new Resources(sessions_structure, deps(parent)) |
65313 | 247 |
val session = new Session(options, resources) |
248 |
val handler = new Handler(progress, session, name) |
|
65315 | 249 |
session.init_protocol_handler(handler) |
65313 | 250 |
|
65317 | 251 |
val session_result = Future.promise[Process_Result] |
65313 | 252 |
|
71598 | 253 |
Isabelle_Process(session, options, sessions_structure, store, |
254 |
logic = parent, cwd = info.dir.file, env = env, |
|
65313 | 255 |
phase_changed = |
256 |
{ |
|
257 |
case Session.Ready => session.protocol_command("build_session", args_yxml) |
|
65317 | 258 |
case Session.Terminated(result) => session_result.fulfill(result) |
65313 | 259 |
case _ => |
260 |
}) |
|
261 |
||
65317 | 262 |
val result = session_result.join |
65313 | 263 |
handler.result_error.join match { |
65317 | 264 |
case "" => result |
265 |
case msg => |
|
266 |
result.copy( |
|
267 |
rc = result.rc max 1, |
|
65828 | 268 |
out_lines = result.out_lines ::: split_lines(Output.error_message_text(msg))) |
65313 | 269 |
} |
65308 | 270 |
} |
271 |
else { |
|
272 |
val args_file = Isabelle_System.tmp_file("build") |
|
273 |
File.write(args_file, args_yxml) |
|
274 |
||
275 |
val eval = |
|
276 |
"Command_Line.tool0 (fn () => (" + |
|
66782 | 277 |
"Build.build " + ML_Syntax.print_string_bytes(File.standard_path(args_file)) + |
67380 | 278 |
(if (Sessions.is_pure(name)) "; Theory.install_pure (Thy_Info.get_theory Context.PureN)" |
279 |
else "") + (if (do_output) "; " + save_heap else "") + "));" |
|
64265 | 280 |
|
65308 | 281 |
val process = |
65360 | 282 |
if (Sessions.is_pure(name)) { |
71598 | 283 |
ML_Process(options, deps.sessions_structure, store, raw_ml_system = true, |
65308 | 284 |
args = |
285 |
(for ((root, _) <- Thy_Header.ml_roots) yield List("--use", root)).flatten ::: |
|
71596 | 286 |
List("--eval", eval), |
71598 | 287 |
cwd = info.dir.file, env = env, cleanup = () => args_file.delete) |
65308 | 288 |
} |
289 |
else { |
|
71598 | 290 |
ML_Process(options, deps.sessions_structure, store, logic = parent, |
291 |
args = List("--eval", eval), |
|
292 |
cwd = info.dir.file, env = env, cleanup = () => args_file.delete) |
|
65308 | 293 |
} |
64265 | 294 |
|
65308 | 295 |
process.result( |
296 |
progress_stdout = (line: String) => |
|
297 |
Library.try_unprefix("\floading_theory = ", line) match { |
|
68957 | 298 |
case Some(theory) => |
299 |
progress.theory(Progress.Theory(theory, session = name)) |
|
65308 | 300 |
case None => |
68088 | 301 |
for { |
302 |
text <- Library.try_unprefix("\fexport = ", line) |
|
68148 | 303 |
(args, path) <- |
68088 | 304 |
Markup.Export.dest_inline(XML.Decode.properties(YXML.parse_body(text))) |
68148 | 305 |
} { |
71153
8563046f15c3
clarified error: tmp file can be invalid in odd situations;
wenzelm
parents:
70791
diff
changeset
|
306 |
val body = |
8563046f15c3
clarified error: tmp file can be invalid in odd situations;
wenzelm
parents:
70791
diff
changeset
|
307 |
try { Bytes.read(path) } |
8563046f15c3
clarified error: tmp file can be invalid in odd situations;
wenzelm
parents:
70791
diff
changeset
|
308 |
catch { |
8563046f15c3
clarified error: tmp file can be invalid in odd situations;
wenzelm
parents:
70791
diff
changeset
|
309 |
case ERROR(msg) => |
8563046f15c3
clarified error: tmp file can be invalid in odd situations;
wenzelm
parents:
70791
diff
changeset
|
310 |
error("Failed to read export " + quote(args.compound_name) + "\n" + msg) |
8563046f15c3
clarified error: tmp file can be invalid in odd situations;
wenzelm
parents:
70791
diff
changeset
|
311 |
} |
68148 | 312 |
path.file.delete |
313 |
export_consumer(name, args, body) |
|
314 |
} |
|
65308 | 315 |
}, |
316 |
progress_limit = |
|
65312 | 317 |
options.int("process_output_limit") match { |
65308 | 318 |
case 0 => None |
319 |
case m => Some(m * 1000000L) |
|
320 |
}, |
|
321 |
strict = false) |
|
322 |
} |
|
50845 | 323 |
} |
48674 | 324 |
|
62572 | 325 |
def terminate: Unit = future_result.cancel |
326 |
def is_finished: Boolean = future_result.is_finished |
|
48674 | 327 |
|
56779 | 328 |
private val timeout_request: Option[Event_Timer.Request] = |
329 |
{ |
|
62569 | 330 |
if (info.timeout > Time.zero) |
66943 | 331 |
Some(Event_Timer.request(Time.now() + info.timeout) { terminate }) |
48674 | 332 |
else None |
56779 | 333 |
} |
48674 | 334 |
|
68217 | 335 |
def join: (Process_Result, Option[String]) = |
50845 | 336 |
{ |
68217 | 337 |
val result0 = future_result.join |
338 |
val result1 = |
|
68092
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
68088
diff
changeset
|
339 |
export_consumer.shutdown(close = true).map(Output.error_message_text(_)) match { |
68217 | 340 |
case Nil => result0 |
68928 | 341 |
case errs => result0.errors(errs).error_rc |
68092
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
68088
diff
changeset
|
342 |
} |
50845 | 343 |
|
68198
6710167e17af
avoid race condition wrt. ISABELLE_TMP, which is removed in Bash.cleanup() before Bash.result(progress_stdout);
wenzelm
parents:
68148
diff
changeset
|
344 |
Isabelle_System.rm_tree(export_tmp_dir) |
6710167e17af
avoid race condition wrt. ISABELLE_TMP, which is removed in Bash.cleanup() before Bash.result(progress_stdout);
wenzelm
parents:
68148
diff
changeset
|
345 |
|
69811
18f61ce86425
clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents:
69777
diff
changeset
|
346 |
if (result1.ok) |
62633 | 347 |
Present.finish(progress, store.browser_info, graph_file, info, name) |
61372 | 348 |
|
59445 | 349 |
graph_file.delete |
66943 | 350 |
|
351 |
val was_timeout = |
|
352 |
timeout_request match { |
|
353 |
case None => false |
|
354 |
case Some(request) => !request.cancel |
|
355 |
} |
|
48674 | 356 |
|
68217 | 357 |
val result2 = |
358 |
if (result1.interrupted) { |
|
359 |
if (was_timeout) result1.error(Output.error_message_text("Timeout")).was_timeout |
|
360 |
else result1.error(Output.error_message_text("Interrupt")) |
|
361 |
} |
|
362 |
else result1 |
|
363 |
||
364 |
val heap_digest = |
|
365 |
if (result2.ok && do_output && store.output_heap(name).is_file) |
|
366 |
Some(Sessions.write_heap_digest(store.output_heap(name))) |
|
367 |
else None |
|
368 |
||
369 |
(result2, heap_digest) |
|
48674 | 370 |
} |
48364 | 371 |
} |
372 |
||
48424 | 373 |
|
62631 | 374 |
|
62641 | 375 |
/** build with results **/ |
48424 | 376 |
|
63996 | 377 |
class Results private[Build](results: Map[String, (Option[Process_Result], Sessions.Info)]) |
62403 | 378 |
{ |
379 |
def sessions: Set[String] = results.keySet |
|
63082
6af03422535a
expose Sessions.Info in Build.Results
Lars Hupel <lars.hupel@mytum.de>
parents:
62946
diff
changeset
|
380 |
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
|
381 |
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
|
382 |
def info(name: String): Sessions.Info = results(name)._2 |
65253 | 383 |
val rc = |
384 |
(0 /: results.iterator.map( |
|
385 |
{ case (_, (Some(r), _)) => r.rc case (_, (None, _)) => 1 }))(_ max _) |
|
62641 | 386 |
def ok: Boolean = rc == 0 |
62406 | 387 |
|
388 |
override def toString: String = rc.toString |
|
62403 | 389 |
} |
390 |
||
62641 | 391 |
def build( |
50404
898cac1dad5e
avoid startup within GUI thread -- it is only required later for dialog;
wenzelm
parents:
50367
diff
changeset
|
392 |
options: Options, |
64909 | 393 |
progress: Progress = No_Progress, |
65832
2fb85623c386
implicitly check for unknown files (not part of a Mercurial repository);
wenzelm
parents:
65831
diff
changeset
|
394 |
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
|
395 |
build_heap: Boolean = false, |
48595 | 396 |
clean_build: Boolean = false, |
56890 | 397 |
dirs: List[Path] = Nil, |
398 |
select_dirs: List[Path] = Nil, |
|
66968
9991671c98aa
allow to augment session context via explicit session infos;
wenzelm
parents:
66962
diff
changeset
|
399 |
infos: List[Sessions.Info] = Nil, |
64265 | 400 |
numa_shuffling: Boolean = false, |
48509 | 401 |
max_jobs: Int = 1, |
48903 | 402 |
list_files: Boolean = false, |
59891
9ce697050455
added isabelle build option -k, for fast off-line checking of theory sources;
wenzelm
parents:
59811
diff
changeset
|
403 |
check_keywords: Set[String] = Set.empty, |
66841 | 404 |
fresh_build: Boolean = false, |
48509 | 405 |
no_build: Boolean = false, |
66745 | 406 |
soft_build: Boolean = false, |
48509 | 407 |
verbose: Boolean = false, |
69811
18f61ce86425
clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents:
69777
diff
changeset
|
408 |
export_files: Boolean = false, |
65308 | 409 |
pide: Boolean = false, |
63224 | 410 |
requirements: Boolean = false, |
411 |
all_sessions: Boolean = false, |
|
66737
2edc0c42c883
option -B for "isabelle build" and "isabelle imports";
wenzelm
parents:
66736
diff
changeset
|
412 |
base_sessions: List[String] = Nil, |
63224 | 413 |
exclude_session_groups: List[String] = Nil, |
59892
2a616319c171
added isabelle build option -x, to exclude sessions;
wenzelm
parents:
59891
diff
changeset
|
414 |
exclude_sessions: List[String] = Nil, |
63224 | 415 |
session_groups: List[String] = Nil, |
65422 | 416 |
sessions: List[String] = Nil, |
417 |
selection: Sessions.Selection = Sessions.Selection.empty): Results = |
|
63224 | 418 |
{ |
66745 | 419 |
val build_options = options.int.update("completion_limit", 0).bool.update("ML_statistics", true) |
51220 | 420 |
|
69854
cc0b3e177b49
system option "system_heaps" supersedes various command-line options for "system build mode";
wenzelm
parents:
69811
diff
changeset
|
421 |
val store = Sessions.store(build_options) |
66745 | 422 |
|
69369
6ecc85955e04
prefer "Isabelle DejaVu Sans", even for headless batch-build (session_graph.pdf);
wenzelm
parents:
68957
diff
changeset
|
423 |
Isabelle_Fonts.init() |
6ecc85955e04
prefer "Isabelle DejaVu Sans", even for headless batch-build (session_graph.pdf);
wenzelm
parents:
68957
diff
changeset
|
424 |
|
66745 | 425 |
|
426 |
/* session selection and dependencies */ |
|
65422 | 427 |
|
66961 | 428 |
val full_sessions = |
67026 | 429 |
Sessions.load_structure(build_options, dirs = dirs, select_dirs = select_dirs, infos = infos) |
65422 | 430 |
|
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
|
431 |
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
|
432 |
{ |
0445cfaf6132
more compact (second-order) digest for 10^2..10^3 source files, with slightly increased risk of collisions;
wenzelm
parents:
66747
diff
changeset
|
433 |
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
|
434 |
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
|
435 |
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
|
436 |
} |
66745 | 437 |
|
67030
a9859e879f38
proper build_selection for clean_build (amending 961285f581e6): e.g. relevant for "isabelle build_doc";
wenzelm
parents:
67026
diff
changeset
|
438 |
val selection1 = |
a9859e879f38
proper build_selection for clean_build (amending 961285f581e6): e.g. relevant for "isabelle build_doc";
wenzelm
parents:
67026
diff
changeset
|
439 |
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
|
440 |
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
|
441 |
|
68204 | 442 |
val deps = |
66745 | 443 |
{ |
444 |
val deps0 = |
|
70671
cb1776c8e216
clarified signature: retain global session information, unaffected by later restriction;
wenzelm
parents:
70509
diff
changeset
|
445 |
Sessions.deps(full_sessions.selection(selection1), |
66962
e1bde71bace6
clarified signature: global_theories is always required;
wenzelm
parents:
66961
diff
changeset
|
446 |
progress = progress, inlined_files = true, verbose = verbose, |
e1bde71bace6
clarified signature: global_theories is always required;
wenzelm
parents:
66961
diff
changeset
|
447 |
list_files = list_files, check_keywords = check_keywords).check_errors |
66745 | 448 |
|
66841 | 449 |
if (soft_build && !fresh_build) { |
66745 | 450 |
val outdated = |
68204 | 451 |
deps0.sessions_structure.build_topological_order.flatMap(name => |
68221 | 452 |
store.access_database(name) match { |
68214 | 453 |
case Some(db) => |
68216 | 454 |
using(db)(store.read_build(_, name)) match { |
66745 | 455 |
case Some(build) |
66747 | 456 |
if build.ok && build.sources == sources_stamp(deps0, name) => None |
66745 | 457 |
case _ => Some(name) |
458 |
} |
|
459 |
case None => Some(name) |
|
460 |
}) |
|
68204 | 461 |
|
462 |
Sessions.deps(full_sessions.selection(Sessions.Selection(sessions = outdated)), |
|
70671
cb1776c8e216
clarified signature: retain global session information, unaffected by later restriction;
wenzelm
parents:
70509
diff
changeset
|
463 |
progress = progress, inlined_files = true).check_errors |
66745 | 464 |
} |
68204 | 465 |
else deps0 |
66745 | 466 |
} |
467 |
||
468 |
||
469 |
/* check unknown files */ |
|
48504
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
wenzelm
parents:
48494
diff
changeset
|
470 |
|
65832
2fb85623c386
implicitly check for unknown files (not part of a Mercurial repository);
wenzelm
parents:
65831
diff
changeset
|
471 |
if (check_unknown_files) { |
2fb85623c386
implicitly check for unknown files (not part of a Mercurial repository);
wenzelm
parents:
65831
diff
changeset
|
472 |
val source_files = |
2fb85623c386
implicitly check for unknown files (not part of a Mercurial repository);
wenzelm
parents:
65831
diff
changeset
|
473 |
(for { |
2fb85623c386
implicitly check for unknown files (not part of a Mercurial repository);
wenzelm
parents:
65831
diff
changeset
|
474 |
(_, base) <- deps.session_bases.iterator |
2fb85623c386
implicitly check for unknown files (not part of a Mercurial repository);
wenzelm
parents:
65831
diff
changeset
|
475 |
(path, _) <- base.sources.iterator |
2fb85623c386
implicitly check for unknown files (not part of a Mercurial repository);
wenzelm
parents:
65831
diff
changeset
|
476 |
} yield path).toList |
67098 | 477 |
val exclude_files = List(Path.explode("$POLYML_EXE")).map(_.canonical_file) |
478 |
val unknown_files = |
|
67782
7e223a05e6d8
clarified notion of unknown files: ignore files outside of a Mercurial repository;
wenzelm
parents:
67493
diff
changeset
|
479 |
Mercurial.check_files(source_files)._2. |
67098 | 480 |
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
|
481 |
if (unknown_files.nonEmpty) { |
67782
7e223a05e6d8
clarified notion of unknown files: ignore files outside of a Mercurial repository;
wenzelm
parents:
67493
diff
changeset
|
482 |
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
|
483 |
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
|
484 |
} |
2fb85623c386
implicitly check for unknown files (not part of a Mercurial repository);
wenzelm
parents:
65831
diff
changeset
|
485 |
} |
2fb85623c386
implicitly check for unknown files (not part of a Mercurial repository);
wenzelm
parents:
65831
diff
changeset
|
486 |
|
51220 | 487 |
|
488 |
/* main build process */ |
|
489 |
||
68204 | 490 |
val queue = Queue(progress, deps.sessions_structure, store) |
65289 | 491 |
|
68219 | 492 |
store.prepare_output_dir() |
48373 | 493 |
|
48595 | 494 |
if (clean_build) { |
68734
c14a2cc9b5ef
isabelle build options -c -x -B refer to imports_graph;
wenzelm
parents:
68731
diff
changeset
|
495 |
for (name <- full_sessions.imports_descendants(full_sessions.imports_selection(selection1))) { |
68220
8fc4e3d1df86
clarified store.clean_output: cleanup user_output_dir even in system_mode;
wenzelm
parents:
68219
diff
changeset
|
496 |
val (relevant, ok) = store.clean_output(name) |
8fc4e3d1df86
clarified store.clean_output: cleanup user_output_dir even in system_mode;
wenzelm
parents:
68219
diff
changeset
|
497 |
if (relevant) { |
8fc4e3d1df86
clarified store.clean_output: cleanup user_output_dir even in system_mode;
wenzelm
parents:
68219
diff
changeset
|
498 |
if (ok) progress.echo("Cleaned " + name) |
8fc4e3d1df86
clarified store.clean_output: cleanup user_output_dir even in system_mode;
wenzelm
parents:
68219
diff
changeset
|
499 |
else progress.echo(name + " FAILED to clean") |
8fc4e3d1df86
clarified store.clean_output: cleanup user_output_dir even in system_mode;
wenzelm
parents:
68219
diff
changeset
|
500 |
} |
48595 | 501 |
} |
502 |
} |
|
503 |
||
48425 | 504 |
// scheduler loop |
63082
6af03422535a
expose Sessions.Info in Build.Results
Lars Hupel <lars.hupel@mytum.de>
parents:
62946
diff
changeset
|
505 |
case class Result( |
66594 | 506 |
current: Boolean, |
68213 | 507 |
heap_digest: Option[String], |
66594 | 508 |
process: Option[Process_Result], |
509 |
info: Sessions.Info) |
|
62402 | 510 |
{ |
511 |
def ok: Boolean = |
|
512 |
process match { |
|
513 |
case None => false |
|
514 |
case Some(res) => res.rc == 0 |
|
515 |
} |
|
516 |
} |
|
48639
675988e64bf9
store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents:
48626
diff
changeset
|
517 |
|
56837
5a598f1eecfd
more robust interrupt handling for Scala_Console, which uses JVM Thread.interrupt instead of POSIX SIGINT;
wenzelm
parents:
56831
diff
changeset
|
518 |
def sleep() |
5a598f1eecfd
more robust interrupt handling for Scala_Console, which uses JVM Thread.interrupt instead of POSIX SIGINT;
wenzelm
parents:
56831
diff
changeset
|
519 |
{ |
5a598f1eecfd
more robust interrupt handling for Scala_Console, which uses JVM Thread.interrupt instead of POSIX SIGINT;
wenzelm
parents:
56831
diff
changeset
|
520 |
try { Thread.sleep(500) } |
56861 | 521 |
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
|
522 |
} |
50366 | 523 |
|
64265 | 524 |
val numa_nodes = new NUMA.Nodes(numa_shuffling) |
525 |
||
48425 | 526 |
@tailrec def loop( |
48676
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents:
48675
diff
changeset
|
527 |
pending: Queue, |
62628 | 528 |
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
|
529 |
results: Map[String, Result]): Map[String, Result] = |
48425 | 530 |
{ |
64265 | 531 |
def used_node(i: Int): Boolean = |
532 |
running.iterator.exists( |
|
533 |
{ case (_, (_, job)) => job.numa_node.isDefined && job.numa_node.get == i }) |
|
534 |
||
48425 | 535 |
if (pending.is_empty) results |
51253 | 536 |
else { |
537 |
if (progress.stopped) |
|
538 |
for ((_, (_, job)) <- running) job.terminate |
|
539 |
||
48674 | 540 |
running.find({ case (_, (_, job)) => job.is_finished }) match { |
62628 | 541 |
case Some((name, (input_heaps, job))) => |
50367 | 542 |
//{{{ finish job |
48424 | 543 |
|
68217 | 544 |
val (process_result, heap_digest) = job.join |
48373 | 545 |
|
65294 | 546 |
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
|
547 |
val process_result_tail = |
13a0f537e232
retain tail out_lines as printed, but not the whole log content;
wenzelm
parents:
62403
diff
changeset
|
548 |
{ |
62409
e391528eff3b
proper option process_output_tail, more generous default;
wenzelm
parents:
62406
diff
changeset
|
549 |
val tail = job.info.options.int("process_output_tail") |
62632 | 550 |
process_result.copy( |
551 |
out_lines = |
|
68086
9e1c670301b8
cleanup session output before starting build job;
wenzelm
parents:
67852
diff
changeset
|
552 |
"(see also " + store.output_log(name).file.toString + ")" :: |
65294 | 553 |
(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
|
554 |
} |
13a0f537e232
retain tail out_lines as printed, but not the whole log content;
wenzelm
parents:
62403
diff
changeset
|
555 |
|
66666
1a620647285c
clarified messages: after writing all files (see also 27f90319a499 and 57c85c83c11b);
wenzelm
parents:
66595
diff
changeset
|
556 |
|
1a620647285c
clarified messages: after writing all files (see also 27f90319a499 and 57c85c83c11b);
wenzelm
parents:
66595
diff
changeset
|
557 |
// write log file |
68217 | 558 |
if (process_result.ok) { |
559 |
File.write_gzip(store.output_log_gz(name), terminate_lines(log_lines)) |
|
560 |
} |
|
561 |
else File.write(store.output_log(name), terminate_lines(log_lines)) |
|
65291
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65289
diff
changeset
|
562 |
|
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65289
diff
changeset
|
563 |
// write database |
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65289
diff
changeset
|
564 |
{ |
66944
05df740cb54b
more informative timeout message, notably for build_status;
wenzelm
parents:
66943
diff
changeset
|
565 |
val build_log = |
05df740cb54b
more informative timeout message, notably for build_status;
wenzelm
parents:
66943
diff
changeset
|
566 |
Build_Log.Log_File(name, process_result.out_lines). |
05df740cb54b
more informative timeout message, notably for build_status;
wenzelm
parents:
66943
diff
changeset
|
567 |
parse_session_info( |
05df740cb54b
more informative timeout message, notably for build_status;
wenzelm
parents:
66943
diff
changeset
|
568 |
command_timings = true, |
05df740cb54b
more informative timeout message, notably for build_status;
wenzelm
parents:
66943
diff
changeset
|
569 |
theory_timings = true, |
05df740cb54b
more informative timeout message, notably for build_status;
wenzelm
parents:
66943
diff
changeset
|
570 |
ml_statistics = true, |
05df740cb54b
more informative timeout message, notably for build_status;
wenzelm
parents:
66943
diff
changeset
|
571 |
task_statistics = true) |
05df740cb54b
more informative timeout message, notably for build_status;
wenzelm
parents:
66943
diff
changeset
|
572 |
|
68221 | 573 |
using(store.open_database(name, output = true))(db => |
65318
342efc382558
eliminated somewhat redundant inlined name (despite a7aa17a1f721);
wenzelm
parents:
65317
diff
changeset
|
574 |
store.write_session_info(db, name, |
65291
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65289
diff
changeset
|
575 |
build_log = |
66944
05df740cb54b
more informative timeout message, notably for build_status;
wenzelm
parents:
66943
diff
changeset
|
576 |
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
|
577 |
build = |
68213 | 578 |
Session_Info(sources_stamp(deps, name), input_heaps, heap_digest, |
66744 | 579 |
process_result.rc))) |
65291
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65289
diff
changeset
|
580 |
} |
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65289
diff
changeset
|
581 |
|
66666
1a620647285c
clarified messages: after writing all files (see also 27f90319a499 and 57c85c83c11b);
wenzelm
parents:
66595
diff
changeset
|
582 |
// messages |
1a620647285c
clarified messages: after writing all files (see also 27f90319a499 and 57c85c83c11b);
wenzelm
parents:
66595
diff
changeset
|
583 |
process_result.err_lines.foreach(progress.echo(_)) |
1a620647285c
clarified messages: after writing all files (see also 27f90319a499 and 57c85c83c11b);
wenzelm
parents:
66595
diff
changeset
|
584 |
|
1a620647285c
clarified messages: after writing all files (see also 27f90319a499 and 57c85c83c11b);
wenzelm
parents:
66595
diff
changeset
|
585 |
if (process_result.ok) |
1a620647285c
clarified messages: after writing all files (see also 27f90319a499 and 57c85c83c11b);
wenzelm
parents:
66595
diff
changeset
|
586 |
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
|
587 |
else { |
1a620647285c
clarified messages: after writing all files (see also 27f90319a499 and 57c85c83c11b);
wenzelm
parents:
66595
diff
changeset
|
588 |
progress.echo(name + " FAILED") |
1a620647285c
clarified messages: after writing all files (see also 27f90319a499 and 57c85c83c11b);
wenzelm
parents:
66595
diff
changeset
|
589 |
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
|
590 |
} |
1a620647285c
clarified messages: after writing all files (see also 27f90319a499 and 57c85c83c11b);
wenzelm
parents:
66595
diff
changeset
|
591 |
|
50707
5b2bf7611662
maintain session index on Scala side, for more determistic results;
wenzelm
parents:
50686
diff
changeset
|
592 |
loop(pending - name, running - name, |
68213 | 593 |
results + (name -> Result(false, heap_digest, Some(process_result_tail), job.info))) |
50367 | 594 |
//}}} |
60215 | 595 |
case None if running.size < (max_jobs max 1) => |
50367 | 596 |
//{{{ check/start next job |
48547 | 597 |
pending.dequeue(running.isDefinedAt(_)) match { |
598 |
case Some((name, info)) => |
|
66848 | 599 |
val ancestor_results = |
68204 | 600 |
deps.sessions_structure.build_requirements(List(name)).filterNot(_ == name). |
66848 | 601 |
map(results(_)) |
68213 | 602 |
val ancestor_heaps = ancestor_results.flatMap(_.heap_digest) |
62628 | 603 |
|
65360 | 604 |
val do_output = build_heap || Sessions.is_pure(name) || queue.is_inner(name) |
48547 | 605 |
|
68213 | 606 |
val (current, heap_digest) = |
48547 | 607 |
{ |
68221 | 608 |
store.access_database(name) match { |
68212
5a59fded83c7
clarified heap vs. database operations: discontinued correlation of directory;
wenzelm
parents:
68209
diff
changeset
|
609 |
case Some(db) => |
68216 | 610 |
using(db)(store.read_build(_, name)) match { |
611 |
case Some(build) => |
|
612 |
val heap_digest = store.find_heap_digest(name) |
|
613 |
val current = |
|
614 |
!fresh_build && |
|
615 |
build.ok && |
|
616 |
build.sources == sources_stamp(deps, name) && |
|
617 |
build.input_heaps == ancestor_heaps && |
|
618 |
build.output_heap == heap_digest && |
|
619 |
!(do_output && heap_digest.isEmpty) |
|
620 |
(current, heap_digest) |
|
621 |
case None => (false, None) |
|
622 |
} |
|
62636 | 623 |
case None => (false, None) |
48504
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
wenzelm
parents:
48494
diff
changeset
|
624 |
} |
48547 | 625 |
} |
62628 | 626 |
val all_current = current && ancestor_results.forall(_.current) |
48528
784c6f63d79c
proper all_current, which regards parent status as well;
wenzelm
parents:
48511
diff
changeset
|
627 |
|
48547 | 628 |
if (all_current) |
62402 | 629 |
loop(pending - name, running, |
68213 | 630 |
results + (name -> Result(true, heap_digest, Some(Process_Result(0)), info))) |
48678
ff27af15530c
queue ordering by descending outdegree and timeout;
wenzelm
parents:
48676
diff
changeset
|
631 |
else if (no_build) { |
50366 | 632 |
if (verbose) progress.echo("Skipping " + name + " ...") |
62402 | 633 |
loop(pending - name, running, |
68213 | 634 |
results + (name -> Result(false, heap_digest, Some(Process_Result(1)), info))) |
48678
ff27af15530c
queue ordering by descending outdegree and timeout;
wenzelm
parents:
48676
diff
changeset
|
635 |
} |
62628 | 636 |
else if (ancestor_results.forall(_.ok) && !progress.stopped) { |
68086
9e1c670301b8
cleanup session output before starting build job;
wenzelm
parents:
67852
diff
changeset
|
637 |
progress.echo((if (do_output) "Building " else "Running ") + name + " ...") |
9e1c670301b8
cleanup session output before starting build job;
wenzelm
parents:
67852
diff
changeset
|
638 |
|
68220
8fc4e3d1df86
clarified store.clean_output: cleanup user_output_dir even in system_mode;
wenzelm
parents:
68219
diff
changeset
|
639 |
store.clean_output(name) |
68221 | 640 |
using(store.open_database(name, output = true))(store.init_session_info(_, name)) |
68086
9e1c670301b8
cleanup session output before starting build job;
wenzelm
parents:
67852
diff
changeset
|
641 |
|
64265 | 642 |
val numa_node = numa_nodes.next(used_node(_)) |
51220 | 643 |
val job = |
69811
18f61ce86425
clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents:
69777
diff
changeset
|
644 |
new Job(progress, name, info, deps, store, do_output, verbose, pide = pide, |
18f61ce86425
clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents:
69777
diff
changeset
|
645 |
numa_node, queue.command_timings(name)) |
62628 | 646 |
loop(pending, running + (name -> (ancestor_heaps, job)), results) |
48547 | 647 |
} |
648 |
else { |
|
50366 | 649 |
progress.echo(name + " CANCELLED") |
65253 | 650 |
loop(pending - name, running, |
68213 | 651 |
results + (name -> Result(false, heap_digest, None, info))) |
48547 | 652 |
} |
653 |
case None => sleep(); loop(pending, running, results) |
|
48425 | 654 |
} |
50367 | 655 |
///}}} |
48425 | 656 |
case None => sleep(); loop(pending, running, results) |
48373 | 657 |
} |
51253 | 658 |
} |
48425 | 659 |
} |
660 |
||
51220 | 661 |
|
662 |
/* build results */ |
|
663 |
||
62641 | 664 |
val results0 = |
48583 | 665 |
if (deps.is_empty) { |
65827 | 666 |
progress.echo_warning("Nothing to build") |
50707
5b2bf7611662
maintain session index on Scala side, for more determistic results;
wenzelm
parents:
50686
diff
changeset
|
667 |
Map.empty[String, Result] |
48583 | 668 |
} |
669 |
else loop(queue, Map.empty, Map.empty) |
|
670 |
||
62641 | 671 |
val results = |
64265 | 672 |
new Results( |
673 |
(for ((name, result) <- results0.iterator) |
|
674 |
yield (name, (result.process, result.info))).toMap) |
|
62641 | 675 |
|
69811
18f61ce86425
clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents:
69777
diff
changeset
|
676 |
if (export_files) { |
18f61ce86425
clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents:
69777
diff
changeset
|
677 |
for (name <- full_sessions.imports_selection(selection1).iterator if results(name).ok) { |
18f61ce86425
clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents:
69777
diff
changeset
|
678 |
val info = results.info(name) |
18f61ce86425
clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents:
69777
diff
changeset
|
679 |
if (info.export_files.nonEmpty) { |
18f61ce86425
clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents:
69777
diff
changeset
|
680 |
progress.echo("Exporting " + info.name + " ...") |
18f61ce86425
clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents:
69777
diff
changeset
|
681 |
for ((dir, prune, pats) <- info.export_files) { |
18f61ce86425
clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents:
69777
diff
changeset
|
682 |
Export.export_files(store, name, info.dir + dir, |
18f61ce86425
clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents:
69777
diff
changeset
|
683 |
progress = if (verbose) progress else No_Progress, |
18f61ce86425
clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents:
69777
diff
changeset
|
684 |
export_prune = prune, |
18f61ce86425
clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents:
69777
diff
changeset
|
685 |
export_patterns = pats) |
18f61ce86425
clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents:
69777
diff
changeset
|
686 |
} |
18f61ce86425
clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents:
69777
diff
changeset
|
687 |
} |
18f61ce86425
clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents:
69777
diff
changeset
|
688 |
} |
18f61ce86425
clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents:
69777
diff
changeset
|
689 |
} |
18f61ce86425
clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents:
69777
diff
changeset
|
690 |
|
62641 | 691 |
if (results.rc != 0 && (verbose || !no_build)) { |
692 |
val unfinished = |
|
693 |
(for { |
|
694 |
name <- results.sessions.iterator |
|
695 |
if !results(name).ok |
|
696 |
} yield name).toList.sorted |
|
697 |
progress.echo("Unfinished session(s): " + commas(unfinished)) |
|
698 |
} |
|
699 |
||
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
|
700 |
|
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
|
701 |
/* 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
|
702 |
|
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
|
703 |
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
|
704 |
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
|
705 |
(for { |
62641 | 706 |
(name, result) <- results0.iterator |
62944
3ee643c5ed00
more standard session build process, including browser_info;
wenzelm
parents:
62902
diff
changeset
|
707 |
if result.ok |
65415
8cd54b18b68b
clarified signature: tree structure is not essential;
wenzelm
parents:
65406
diff
changeset
|
708 |
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
|
709 |
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
|
710 |
} 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
|
711 |
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
|
712 |
|
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
|
713 |
for ((chapter, entries) <- browser_chapters) |
62632 | 714 |
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
|
715 |
|
62632 | 716 |
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
|
717 |
} |
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
|
718 |
|
62641 | 719 |
results |
48341 | 720 |
} |
721 |
||
722 |
||
62833 | 723 |
/* Isabelle tool wrapper */ |
48341 | 724 |
|
62833 | 725 |
val isabelle_tool = Isabelle_Tool("build", "build and manage Isabelle sessions", args => |
48341 | 726 |
{ |
62833 | 727 |
val build_options = Word.explode(Isabelle_System.getenv("ISABELLE_BUILD_OPTIONS")) |
62590 | 728 |
|
66737
2edc0c42c883
option -B for "isabelle build" and "isabelle imports";
wenzelm
parents:
66736
diff
changeset
|
729 |
var base_sessions: List[String] = Nil |
62833 | 730 |
var select_dirs: List[Path] = Nil |
64265 | 731 |
var numa_shuffling = false |
65308 | 732 |
var pide = false |
62833 | 733 |
var requirements = false |
66745 | 734 |
var soft_build = false |
62833 | 735 |
var exclude_session_groups: List[String] = Nil |
736 |
var all_sessions = false |
|
737 |
var build_heap = false |
|
738 |
var clean_build = false |
|
739 |
var dirs: List[Path] = Nil |
|
69811
18f61ce86425
clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents:
69777
diff
changeset
|
740 |
var export_files = false |
66841 | 741 |
var fresh_build = false |
62833 | 742 |
var session_groups: List[String] = Nil |
743 |
var max_jobs = 1 |
|
744 |
var check_keywords: Set[String] = Set.empty |
|
745 |
var list_files = false |
|
746 |
var no_build = false |
|
67847 | 747 |
var options = Options.init(opts = build_options) |
62833 | 748 |
var verbose = false |
749 |
var exclude_sessions: List[String] = Nil |
|
62590 | 750 |
|
62833 | 751 |
val getopts = Getopts(""" |
62590 | 752 |
Usage: isabelle build [OPTIONS] [SESSIONS ...] |
753 |
||
754 |
Options are: |
|
66737
2edc0c42c883
option -B for "isabelle build" and "isabelle imports";
wenzelm
parents:
66736
diff
changeset
|
755 |
-B NAME include session NAME and all descendants |
62590 | 756 |
-D DIR include session directory and select its sessions |
64265 | 757 |
-N cyclic shuffling of NUMA CPU nodes (performance tuning) |
65308 | 758 |
-P build via PIDE protocol |
62590 | 759 |
-R operate on requirements of selected sessions |
66745 | 760 |
-S soft build: only observe changes of sources, not heap images |
62590 | 761 |
-X NAME exclude sessions from group NAME and all descendants |
762 |
-a select all sessions |
|
763 |
-b build heap images |
|
764 |
-c clean build |
|
765 |
-d DIR include session directory |
|
69811
18f61ce86425
clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents:
69777
diff
changeset
|
766 |
-e export files from session specification into file-system |
66841 | 767 |
-f fresh build |
62590 | 768 |
-g NAME select session group NAME |
769 |
-j INT maximum number of parallel jobs (default 1) |
|
770 |
-k KEYWORD check theory sources for conflicts with proposed keywords |
|
771 |
-l list session source files |
|
772 |
-n no build -- test dependencies only |
|
773 |
-o OPTION override Isabelle system OPTION (via NAME=VAL or NAME) |
|
774 |
-v verbose |
|
775 |
-x NAME exclude session NAME and all descendants |
|
776 |
||
62596 | 777 |
Build and manage Isabelle sessions, depending on implicit settings: |
778 |
||
64455 | 779 |
""" + Library.prefix_lines(" ", Build_Log.Settings.show()) + "\n", |
66737
2edc0c42c883
option -B for "isabelle build" and "isabelle imports";
wenzelm
parents:
66736
diff
changeset
|
780 |
"B:" -> (arg => base_sessions = base_sessions ::: List(arg)), |
62833 | 781 |
"D:" -> (arg => select_dirs = select_dirs ::: List(Path.explode(arg))), |
64265 | 782 |
"N" -> (_ => numa_shuffling = true), |
65308 | 783 |
"P" -> (_ => pide = true), |
62833 | 784 |
"R" -> (_ => requirements = true), |
66745 | 785 |
"S" -> (_ => soft_build = true), |
62833 | 786 |
"X:" -> (arg => exclude_session_groups = exclude_session_groups ::: List(arg)), |
787 |
"a" -> (_ => all_sessions = true), |
|
788 |
"b" -> (_ => build_heap = true), |
|
789 |
"c" -> (_ => clean_build = true), |
|
790 |
"d:" -> (arg => dirs = dirs ::: List(Path.explode(arg))), |
|
69811
18f61ce86425
clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents:
69777
diff
changeset
|
791 |
"e" -> (_ => export_files = true), |
66841 | 792 |
"f" -> (_ => fresh_build = true), |
62833 | 793 |
"g:" -> (arg => session_groups = session_groups ::: List(arg)), |
63805 | 794 |
"j:" -> (arg => max_jobs = Value.Int.parse(arg)), |
62833 | 795 |
"k:" -> (arg => check_keywords = check_keywords + arg), |
796 |
"l" -> (_ => list_files = true), |
|
797 |
"n" -> (_ => no_build = true), |
|
798 |
"o:" -> (arg => options = options + arg), |
|
799 |
"v" -> (_ => verbose = true), |
|
800 |
"x:" -> (arg => exclude_sessions = exclude_sessions ::: List(arg))) |
|
62590 | 801 |
|
62833 | 802 |
val sessions = getopts(args) |
62590 | 803 |
|
64115 | 804 |
val progress = new Console_Progress(verbose = verbose) |
62590 | 805 |
|
64140 | 806 |
val start_date = Date.now() |
807 |
||
62833 | 808 |
if (verbose) { |
809 |
progress.echo( |
|
64155 | 810 |
"Started at " + Build_Log.print_date(start_date) + |
64140 | 811 |
" (" + Isabelle_System.getenv("ML_IDENTIFIER") + " on " + Isabelle_System.hostname() +")") |
64081 | 812 |
progress.echo(Build_Log.Settings.show() + "\n") |
62833 | 813 |
} |
62590 | 814 |
|
62833 | 815 |
val results = |
816 |
progress.interrupt_handler { |
|
67846 | 817 |
build(options, |
818 |
progress = progress, |
|
65832
2fb85623c386
implicitly check for unknown files (not part of a Mercurial repository);
wenzelm
parents:
65831
diff
changeset
|
819 |
check_unknown_files = Mercurial.is_repository(Path.explode("~~")), |
63224 | 820 |
build_heap = build_heap, |
821 |
clean_build = clean_build, |
|
822 |
dirs = dirs, |
|
823 |
select_dirs = select_dirs, |
|
65831 | 824 |
numa_shuffling = NUMA.enabled_warning(progress, numa_shuffling), |
63224 | 825 |
max_jobs = max_jobs, |
826 |
list_files = list_files, |
|
827 |
check_keywords = check_keywords, |
|
66841 | 828 |
fresh_build = fresh_build, |
63224 | 829 |
no_build = no_build, |
66745 | 830 |
soft_build = soft_build, |
63224 | 831 |
verbose = verbose, |
69811
18f61ce86425
clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents:
69777
diff
changeset
|
832 |
export_files = export_files, |
65308 | 833 |
pide = pide, |
63224 | 834 |
requirements = requirements, |
835 |
all_sessions = all_sessions, |
|
66737
2edc0c42c883
option -B for "isabelle build" and "isabelle imports";
wenzelm
parents:
66736
diff
changeset
|
836 |
base_sessions = base_sessions, |
63224 | 837 |
exclude_session_groups = exclude_session_groups, |
838 |
exclude_sessions = exclude_sessions, |
|
839 |
session_groups = session_groups, |
|
840 |
sessions = sessions) |
|
62833 | 841 |
} |
64140 | 842 |
val end_date = Date.now() |
843 |
val elapsed_time = end_date.time - start_date.time |
|
62590 | 844 |
|
62833 | 845 |
if (verbose) { |
64155 | 846 |
progress.echo("\nFinished at " + Build_Log.print_date(end_date)) |
62833 | 847 |
} |
62590 | 848 |
|
62833 | 849 |
val total_timing = |
850 |
(Timing.zero /: results.sessions.iterator.map(a => results(a).timing))(_ + _). |
|
851 |
copy(elapsed = elapsed_time) |
|
852 |
progress.echo(total_timing.message_resources) |
|
62590 | 853 |
|
62833 | 854 |
sys.exit(results.rc) |
855 |
}) |
|
68305 | 856 |
|
857 |
||
858 |
/* build logic image */ |
|
859 |
||
860 |
def build_logic(options: Options, logic: String, |
|
861 |
progress: Progress = No_Progress, |
|
862 |
build_heap: Boolean = false, |
|
863 |
dirs: List[Path] = Nil, |
|
70791 | 864 |
fresh: Boolean = false, |
69540 | 865 |
strict: Boolean = false): Int = |
68305 | 866 |
{ |
69540 | 867 |
val rc = |
70791 | 868 |
if (!fresh && build(options, build_heap = build_heap, no_build = true, dirs = dirs, |
69854
cc0b3e177b49
system option "system_heaps" supersedes various command-line options for "system build mode";
wenzelm
parents:
69811
diff
changeset
|
869 |
sessions = List(logic)).ok) 0 |
69540 | 870 |
else { |
871 |
progress.echo("Build started for Isabelle/" + logic + " ...") |
|
70791 | 872 |
Build.build(options, progress = progress, build_heap = build_heap, fresh_build = fresh, |
873 |
dirs = dirs, sessions = List(logic)).rc |
|
69540 | 874 |
} |
875 |
||
876 |
if (strict && rc != 0) error("Failed to build Isabelle/" + logic) else rc |
|
68305 | 877 |
} |
48276 | 878 |
} |