author | wenzelm |
Mon, 24 Jan 2022 21:29:37 +0100 | |
changeset 74995 | 68ffcf5cc94b |
parent 74845 | 91ee232b4211 |
child 75393 | 87ebf5a50283 |
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 |
||
73364 | 11 |
import scala.collection.immutable.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 |
|
71669 | 37 |
def load_timings(progress: Progress, store: Sessions.Store, session_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 |
|
72634
5cea0993ee4f
clarified access to single database server vs. collection of database files;
wenzelm
parents:
72624
diff
changeset
|
41 |
store.try_open_database(session_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 { |
71669 | 50 |
val command_timings = store.read_command_timings(db, session_name) |
68214 | 51 |
val session_timing = |
71669 | 52 |
store.read_session_timing(db, session_name) match { |
68214 | 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 |
} |
73367 | 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 |
71669 | 71 |
def desc_timing(session_name: String): Double = |
68486
6984a55f3cba
clarified queue ordering: take session descendants into account, notably for "slow" AFP sessions;
wenzelm
parents:
68331
diff
changeset
|
72 |
{ |
71669 | 73 |
if (maximals.contains(session_name)) timing(session_name) |
68487 | 74 |
else { |
71669 | 75 |
val descendants = sessions_structure.build_descendants(List(session_name)).toSet |
68731 | 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)) |
|
71895 | 79 |
if (ps.exists(p => !timing.isDefinedAt(p))) None |
68487 | 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 |
{ |
ff27af15530c
queue ordering by descending outdegree and timeout;
wenzelm
parents:
48676
diff
changeset
|
102 |
def compare(name1: String, name2: String): Int = |
73365 | 103 |
session_timing(name2) compare session_timing(name1) match { |
48678
ff27af15530c
queue ordering by descending outdegree and timeout;
wenzelm
parents:
48676
diff
changeset
|
104 |
case 0 => |
68731 | 105 |
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
|
106 |
case 0 => name1 compare name2 |
48678
ff27af15530c
queue ordering by descending outdegree and timeout;
wenzelm
parents:
48676
diff
changeset
|
107 |
case ord => ord |
ff27af15530c
queue ordering by descending outdegree and timeout;
wenzelm
parents:
48676
diff
changeset
|
108 |
} |
ff27af15530c
queue ordering by descending outdegree and timeout;
wenzelm
parents:
48676
diff
changeset
|
109 |
case ord => ord |
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 |
} |
ff27af15530c
queue ordering by descending outdegree and timeout;
wenzelm
parents:
48676
diff
changeset
|
112 |
|
65415
8cd54b18b68b
clarified signature: tree structure is not essential;
wenzelm
parents:
65406
diff
changeset
|
113 |
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
|
114 |
} |
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents:
48675
diff
changeset
|
115 |
} |
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents:
48675
diff
changeset
|
116 |
|
65314 | 117 |
private class Queue( |
62631 | 118 |
graph: Graph[String, Sessions.Info], |
51220 | 119 |
order: SortedSet[String], |
120 |
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
|
121 |
{ |
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents:
48675
diff
changeset
|
122 |
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
|
123 |
|
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents:
48675
diff
changeset
|
124 |
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
|
125 |
|
51227
88c96e836ed6
prefer comparison of session timing, if this is known already;
wenzelm
parents:
51223
diff
changeset
|
126 |
def - (name: String): Queue = |
73365 | 127 |
new Queue(graph.del_node(name), order - name, command_timings) |
48676
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents:
48675
diff
changeset
|
128 |
|
62631 | 129 |
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
|
130 |
{ |
73365 | 131 |
val it = order.iterator.dropWhile(name => skip(name) || !graph.is_minimal(name)) |
73344 | 132 |
if (it.hasNext) { val name = it.next(); Some((name, graph.get_node(name))) } |
48676
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents:
48675
diff
changeset
|
133 |
else None |
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents:
48675
diff
changeset
|
134 |
} |
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents:
48675
diff
changeset
|
135 |
} |
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents:
48675
diff
changeset
|
136 |
|
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents:
48675
diff
changeset
|
137 |
|
62631 | 138 |
|
62641 | 139 |
/** build with results **/ |
48424 | 140 |
|
63996 | 141 |
class Results private[Build](results: Map[String, (Option[Process_Result], Sessions.Info)]) |
62403 | 142 |
{ |
143 |
def sessions: Set[String] = results.keySet |
|
72673
8ff7a0e394f9
clarified PDF/HTML presentation, based on pdf blobs from session database (e.g. from earlier builds);
wenzelm
parents:
72662
diff
changeset
|
144 |
def infos: List[Sessions.Info] = results.values.map(_._2).toList |
63082
6af03422535a
expose Sessions.Info in Build.Results
Lars Hupel <lars.hupel@mytum.de>
parents:
62946
diff
changeset
|
145 |
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
|
146 |
def apply(name: String): Process_Result = results(name)._1.getOrElse(Process_Result(1)) |
74701
2bc24136bdeb
clarified order: prefer bottom-up construction of partial content;
wenzelm
parents:
74700
diff
changeset
|
147 |
def get_info(name: String): Option[Sessions.Info] = results.get(name).map(_._2) |
2bc24136bdeb
clarified order: prefer bottom-up construction of partial content;
wenzelm
parents:
74700
diff
changeset
|
148 |
def info(name: String): Sessions.Info = get_info(name).get |
71601 | 149 |
val rc: Int = |
73359 | 150 |
results.iterator.map({ case (_, (Some(r), _)) => r.rc case (_, (None, _)) => 1 }). |
74306 | 151 |
foldLeft(Process_Result.RC.ok)(_ max _) |
152 |
def ok: Boolean = rc == Process_Result.RC.ok |
|
62406 | 153 |
|
154 |
override def toString: String = rc.toString |
|
62403 | 155 |
} |
156 |
||
72021 | 157 |
def session_finished(session_name: String, process_result: Process_Result): String = |
158 |
"Finished " + session_name + " (" + process_result.timing.message_resources + ")" |
|
72013 | 159 |
|
72021 | 160 |
def session_timing(session_name: String, build_log: Build_Log.Session_Info): String = |
161 |
{ |
|
162 |
val props = build_log.session_timing |
|
163 |
val threads = Markup.Session_Timing.Threads.unapply(props) getOrElse 1 |
|
74782 | 164 |
val timing = Markup.Timing_Properties.get(props) |
72015 | 165 |
"Timing " + session_name + " (" + threads + " threads, " + timing.message_factor + ")" |
72021 | 166 |
} |
72018 | 167 |
|
62641 | 168 |
def build( |
50404
898cac1dad5e
avoid startup within GUI thread -- it is only required later for dialog;
wenzelm
parents:
50367
diff
changeset
|
169 |
options: Options, |
71981 | 170 |
selection: Sessions.Selection = Sessions.Selection.empty, |
72652 | 171 |
presentation: Presentation.Context = Presentation.Context.none, |
71726
a5fda30edae2
clarified signature: more uniform treatment of stopped/interrupted state;
wenzelm
parents:
71718
diff
changeset
|
172 |
progress: Progress = new Progress, |
65832
2fb85623c386
implicitly check for unknown files (not part of a Mercurial repository);
wenzelm
parents:
65831
diff
changeset
|
173 |
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
|
174 |
build_heap: Boolean = false, |
48595 | 175 |
clean_build: Boolean = false, |
56890 | 176 |
dirs: List[Path] = Nil, |
177 |
select_dirs: List[Path] = Nil, |
|
66968
9991671c98aa
allow to augment session context via explicit session infos;
wenzelm
parents:
66962
diff
changeset
|
178 |
infos: List[Sessions.Info] = Nil, |
64265 | 179 |
numa_shuffling: Boolean = false, |
48509 | 180 |
max_jobs: Int = 1, |
48903 | 181 |
list_files: Boolean = false, |
59891
9ce697050455
added isabelle build option -k, for fast off-line checking of theory sources;
wenzelm
parents:
59811
diff
changeset
|
182 |
check_keywords: Set[String] = Set.empty, |
66841 | 183 |
fresh_build: Boolean = false, |
48509 | 184 |
no_build: Boolean = false, |
66745 | 185 |
soft_build: Boolean = false, |
48509 | 186 |
verbose: Boolean = false, |
73805
b73777a0c076
allow build session setup, e.g. for protocol handlers;
wenzelm
parents:
73804
diff
changeset
|
187 |
export_files: Boolean = false, |
b73777a0c076
allow build session setup, e.g. for protocol handlers;
wenzelm
parents:
73804
diff
changeset
|
188 |
session_setup: (String, Session) => Unit = (_, _) => ()): Results = |
63224 | 189 |
{ |
71677 | 190 |
val build_options = |
71679
eeaa4021f080
proper "editor_tracing_messages=0" as in "isabelle dump";
wenzelm
parents:
71677
diff
changeset
|
191 |
options + |
eeaa4021f080
proper "editor_tracing_messages=0" as in "isabelle dump";
wenzelm
parents:
71677
diff
changeset
|
192 |
"completion_limit=0" + |
eeaa4021f080
proper "editor_tracing_messages=0" as in "isabelle dump";
wenzelm
parents:
71677
diff
changeset
|
193 |
"editor_tracing_messages=0" + |
72728
caa182bdab7a
clarified options: batch-build has pide_reports disabled by default (requires significant resources);
wenzelm
parents:
72693
diff
changeset
|
194 |
("pide_reports=" + options.bool("build_pide_reports")) |
51220 | 195 |
|
69854
cc0b3e177b49
system option "system_heaps" supersedes various command-line options for "system build mode";
wenzelm
parents:
69811
diff
changeset
|
196 |
val store = Sessions.store(build_options) |
66745 | 197 |
|
69369
6ecc85955e04
prefer "Isabelle DejaVu Sans", even for headless batch-build (session_graph.pdf);
wenzelm
parents:
68957
diff
changeset
|
198 |
Isabelle_Fonts.init() |
6ecc85955e04
prefer "Isabelle DejaVu Sans", even for headless batch-build (session_graph.pdf);
wenzelm
parents:
68957
diff
changeset
|
199 |
|
66745 | 200 |
|
201 |
/* session selection and dependencies */ |
|
65422 | 202 |
|
66961 | 203 |
val full_sessions = |
67026 | 204 |
Sessions.load_structure(build_options, dirs = dirs, select_dirs = select_dirs, infos = infos) |
65422 | 205 |
|
73012
238ddf525da4
clarified HTML presentation, e.g. avoid bulky jobs like HOL or HOL-Analysis in applications;
wenzelm
parents:
72993
diff
changeset
|
206 |
val full_sessions_selection = full_sessions.imports_selection(selection) |
74808 | 207 |
val full_sessions_selected = full_sessions_selection.toSet |
73012
238ddf525da4
clarified HTML presentation, e.g. avoid bulky jobs like HOL or HOL-Analysis in applications;
wenzelm
parents:
72993
diff
changeset
|
208 |
|
71669 | 209 |
def sources_stamp(deps: Sessions.Deps, session_name: String): String = |
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
|
210 |
{ |
0445cfaf6132
more compact (second-order) digest for 10^2..10^3 source files, with slightly increased risk of collisions;
wenzelm
parents:
66747
diff
changeset
|
211 |
val digests = |
71669 | 212 |
full_sessions(session_name).meta_digest :: |
213 |
deps.sources(session_name) ::: |
|
214 |
deps.imported_sources(session_name) |
|
72654 | 215 |
SHA1.digest_set(digests).toString |
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
|
216 |
} |
66745 | 217 |
|
68204 | 218 |
val deps = |
66745 | 219 |
{ |
220 |
val deps0 = |
|
71896
ce06d6456cc8
clarified signature --- fit within limit of 22 arguments;
wenzelm
parents:
71895
diff
changeset
|
221 |
Sessions.deps(full_sessions.selection(selection), |
66962
e1bde71bace6
clarified signature: global_theories is always required;
wenzelm
parents:
66961
diff
changeset
|
222 |
progress = progress, inlined_files = true, verbose = verbose, |
e1bde71bace6
clarified signature: global_theories is always required;
wenzelm
parents:
66961
diff
changeset
|
223 |
list_files = list_files, check_keywords = check_keywords).check_errors |
66745 | 224 |
|
66841 | 225 |
if (soft_build && !fresh_build) { |
66745 | 226 |
val outdated = |
68204 | 227 |
deps0.sessions_structure.build_topological_order.flatMap(name => |
72634
5cea0993ee4f
clarified access to single database server vs. collection of database files;
wenzelm
parents:
72624
diff
changeset
|
228 |
store.try_open_database(name) match { |
68214 | 229 |
case Some(db) => |
68216 | 230 |
using(db)(store.read_build(_, name)) match { |
66745 | 231 |
case Some(build) |
66747 | 232 |
if build.ok && build.sources == sources_stamp(deps0, name) => None |
66745 | 233 |
case _ => Some(name) |
234 |
} |
|
235 |
case None => Some(name) |
|
236 |
}) |
|
68204 | 237 |
|
238 |
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
|
239 |
progress = progress, inlined_files = true).check_errors |
66745 | 240 |
} |
68204 | 241 |
else deps0 |
66745 | 242 |
} |
243 |
||
74800 | 244 |
val presentation_sessions = |
245 |
(for { |
|
74813
2ad892ac749a
present only selected session theories (as in Isabelle2021), in contrast to 2bc24136bdeb, eb89b3a37826;
wenzelm
parents:
74808
diff
changeset
|
246 |
session_name <- deps.sessions_structure.build_topological_order.iterator |
74808 | 247 |
info <- deps.sessions_structure.get(session_name) |
248 |
if full_sessions_selected(session_name) && presentation.enabled(info) } |
|
74800 | 249 |
yield info).toList |
250 |
||
66745 | 251 |
|
252 |
/* check unknown files */ |
|
48504
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
wenzelm
parents:
48494
diff
changeset
|
253 |
|
65832
2fb85623c386
implicitly check for unknown files (not part of a Mercurial repository);
wenzelm
parents:
65831
diff
changeset
|
254 |
if (check_unknown_files) { |
2fb85623c386
implicitly check for unknown files (not part of a Mercurial repository);
wenzelm
parents:
65831
diff
changeset
|
255 |
val source_files = |
2fb85623c386
implicitly check for unknown files (not part of a Mercurial repository);
wenzelm
parents:
65831
diff
changeset
|
256 |
(for { |
2fb85623c386
implicitly check for unknown files (not part of a Mercurial repository);
wenzelm
parents:
65831
diff
changeset
|
257 |
(_, base) <- deps.session_bases.iterator |
2fb85623c386
implicitly check for unknown files (not part of a Mercurial repository);
wenzelm
parents:
65831
diff
changeset
|
258 |
(path, _) <- base.sources.iterator |
2fb85623c386
implicitly check for unknown files (not part of a Mercurial repository);
wenzelm
parents:
65831
diff
changeset
|
259 |
} yield path).toList |
67098 | 260 |
val exclude_files = List(Path.explode("$POLYML_EXE")).map(_.canonical_file) |
261 |
val unknown_files = |
|
67782
7e223a05e6d8
clarified notion of unknown files: ignore files outside of a Mercurial repository;
wenzelm
parents:
67493
diff
changeset
|
262 |
Mercurial.check_files(source_files)._2. |
67098 | 263 |
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
|
264 |
if (unknown_files.nonEmpty) { |
67782
7e223a05e6d8
clarified notion of unknown files: ignore files outside of a Mercurial repository;
wenzelm
parents:
67493
diff
changeset
|
265 |
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
|
266 |
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
|
267 |
} |
2fb85623c386
implicitly check for unknown files (not part of a Mercurial repository);
wenzelm
parents:
65831
diff
changeset
|
268 |
} |
2fb85623c386
implicitly check for unknown files (not part of a Mercurial repository);
wenzelm
parents:
65831
diff
changeset
|
269 |
|
51220 | 270 |
|
271 |
/* main build process */ |
|
272 |
||
68204 | 273 |
val queue = Queue(progress, deps.sessions_structure, store) |
65289 | 274 |
|
68219 | 275 |
store.prepare_output_dir() |
48373 | 276 |
|
48595 | 277 |
if (clean_build) { |
73012
238ddf525da4
clarified HTML presentation, e.g. avoid bulky jobs like HOL or HOL-Analysis in applications;
wenzelm
parents:
72993
diff
changeset
|
278 |
for (name <- full_sessions.imports_descendants(full_sessions_selection)) { |
68220
8fc4e3d1df86
clarified store.clean_output: cleanup user_output_dir even in system_mode;
wenzelm
parents:
68219
diff
changeset
|
279 |
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
|
280 |
if (relevant) { |
8fc4e3d1df86
clarified store.clean_output: cleanup user_output_dir even in system_mode;
wenzelm
parents:
68219
diff
changeset
|
281 |
if (ok) progress.echo("Cleaned " + name) |
8fc4e3d1df86
clarified store.clean_output: cleanup user_output_dir even in system_mode;
wenzelm
parents:
68219
diff
changeset
|
282 |
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
|
283 |
} |
48595 | 284 |
} |
285 |
} |
|
286 |
||
48425 | 287 |
// scheduler loop |
63082
6af03422535a
expose Sessions.Info in Build.Results
Lars Hupel <lars.hupel@mytum.de>
parents:
62946
diff
changeset
|
288 |
case class Result( |
66594 | 289 |
current: Boolean, |
68213 | 290 |
heap_digest: Option[String], |
66594 | 291 |
process: Option[Process_Result], |
292 |
info: Sessions.Info) |
|
62402 | 293 |
{ |
294 |
def ok: Boolean = |
|
295 |
process match { |
|
296 |
case None => false |
|
74306 | 297 |
case Some(res) => res.ok |
62402 | 298 |
} |
299 |
} |
|
48639
675988e64bf9
store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents:
48626
diff
changeset
|
300 |
|
73340 | 301 |
def sleep(): Unit = |
73702
7202e12cb324
tuned signature --- following hints by IntelliJ IDEA;
wenzelm
parents:
73522
diff
changeset
|
302 |
Isabelle_Thread.interrupt_handler(_ => progress.stop()) { Time.seconds(0.5).sleep() } |
50366 | 303 |
|
73777
52e43a93d51f
clarified system_log: make this work independently of the particular "isabelle build" command-line (e.g. "isabelle mirabelle");
wenzelm
parents:
73774
diff
changeset
|
304 |
val log = |
52e43a93d51f
clarified system_log: make this work independently of the particular "isabelle build" command-line (e.g. "isabelle mirabelle");
wenzelm
parents:
73774
diff
changeset
|
305 |
build_options.string("system_log") match { |
52e43a93d51f
clarified system_log: make this work independently of the particular "isabelle build" command-line (e.g. "isabelle mirabelle");
wenzelm
parents:
73774
diff
changeset
|
306 |
case "" => No_Logger |
74827
c1b5d6e6ff74
clarified system option standard values: avoid oddities like "isabelle build -o document_output" producing directories named "true";
wenzelm
parents:
74818
diff
changeset
|
307 |
case "-" => Logger.make(progress) |
73777
52e43a93d51f
clarified system_log: make this work independently of the particular "isabelle build" command-line (e.g. "isabelle mirabelle");
wenzelm
parents:
73774
diff
changeset
|
308 |
case log_file => Logger.make(Some(Path.explode(log_file))) |
52e43a93d51f
clarified system_log: make this work independently of the particular "isabelle build" command-line (e.g. "isabelle mirabelle");
wenzelm
parents:
73774
diff
changeset
|
309 |
} |
52e43a93d51f
clarified system_log: make this work independently of the particular "isabelle build" command-line (e.g. "isabelle mirabelle");
wenzelm
parents:
73774
diff
changeset
|
310 |
|
64265 | 311 |
val numa_nodes = new NUMA.Nodes(numa_shuffling) |
312 |
||
48425 | 313 |
@tailrec def loop( |
48676
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents:
48675
diff
changeset
|
314 |
pending: Queue, |
72662 | 315 |
running: Map[String, (List[String], Build_Job)], |
48639
675988e64bf9
store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents:
48626
diff
changeset
|
316 |
results: Map[String, Result]): Map[String, Result] = |
48425 | 317 |
{ |
64265 | 318 |
def used_node(i: Int): Boolean = |
319 |
running.iterator.exists( |
|
320 |
{ case (_, (_, job)) => job.numa_node.isDefined && job.numa_node.get == i }) |
|
321 |
||
48425 | 322 |
if (pending.is_empty) results |
51253 | 323 |
else { |
71726
a5fda30edae2
clarified signature: more uniform treatment of stopped/interrupted state;
wenzelm
parents:
71718
diff
changeset
|
324 |
if (progress.stopped) { |
73367 | 325 |
for ((_, (_, job)) <- running) job.terminate() |
71726
a5fda30edae2
clarified signature: more uniform treatment of stopped/interrupted state;
wenzelm
parents:
71718
diff
changeset
|
326 |
} |
51253 | 327 |
|
48674 | 328 |
running.find({ case (_, (_, job)) => job.is_finished }) match { |
71669 | 329 |
case Some((session_name, (input_heaps, job))) => |
50367 | 330 |
//{{{ finish job |
48424 | 331 |
|
68217 | 332 |
val (process_result, heap_digest) = job.join |
48373 | 333 |
|
71623
b3bddebe44ca
clarified signature: more explicit type Protocol_Message.Marker;
wenzelm
parents:
71614
diff
changeset
|
334 |
val log_lines = process_result.out_lines.filterNot(Protocol_Message.Marker.test) |
62404
13a0f537e232
retain tail out_lines as printed, but not the whole log content;
wenzelm
parents:
62403
diff
changeset
|
335 |
val process_result_tail = |
13a0f537e232
retain tail out_lines as printed, but not the whole log content;
wenzelm
parents:
62403
diff
changeset
|
336 |
{ |
62409
e391528eff3b
proper option process_output_tail, more generous default;
wenzelm
parents:
62406
diff
changeset
|
337 |
val tail = job.info.options.int("process_output_tail") |
62632 | 338 |
process_result.copy( |
339 |
out_lines = |
|
71669 | 340 |
"(see also " + store.output_log(session_name).file.toString + ")" :: |
65294 | 341 |
(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
|
342 |
} |
13a0f537e232
retain tail out_lines as printed, but not the whole log content;
wenzelm
parents:
62403
diff
changeset
|
343 |
|
72017 | 344 |
val build_log = |
345 |
Build_Log.Log_File(session_name, process_result.out_lines). |
|
346 |
parse_session_info( |
|
347 |
command_timings = true, |
|
348 |
theory_timings = true, |
|
349 |
ml_statistics = true, |
|
350 |
task_statistics = true) |
|
66666
1a620647285c
clarified messages: after writing all files (see also 27f90319a499 and 57c85c83c11b);
wenzelm
parents:
66595
diff
changeset
|
351 |
|
1a620647285c
clarified messages: after writing all files (see also 27f90319a499 and 57c85c83c11b);
wenzelm
parents:
66595
diff
changeset
|
352 |
// write log file |
68217 | 353 |
if (process_result.ok) { |
71669 | 354 |
File.write_gzip(store.output_log_gz(session_name), terminate_lines(log_lines)) |
68217 | 355 |
} |
71669 | 356 |
else File.write(store.output_log(session_name), terminate_lines(log_lines)) |
65291
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65289
diff
changeset
|
357 |
|
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65289
diff
changeset
|
358 |
// write database |
72017 | 359 |
using(store.open_database(session_name, output = true))(db => |
360 |
store.write_session_info(db, session_name, |
|
361 |
build_log = |
|
362 |
if (process_result.timeout) build_log.error("Timeout") else build_log, |
|
363 |
build = |
|
364 |
Session_Info(sources_stamp(deps, session_name), input_heaps, heap_digest, |
|
365 |
process_result.rc))) |
|
65291
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65289
diff
changeset
|
366 |
|
66666
1a620647285c
clarified messages: after writing all files (see also 27f90319a499 and 57c85c83c11b);
wenzelm
parents:
66595
diff
changeset
|
367 |
// messages |
71601 | 368 |
process_result.err_lines.foreach(progress.echo) |
66666
1a620647285c
clarified messages: after writing all files (see also 27f90319a499 and 57c85c83c11b);
wenzelm
parents:
66595
diff
changeset
|
369 |
|
72013 | 370 |
if (process_result.ok) { |
72022
45865bb06182
clarified message --- as in former ML version (see 940195fbb282);
wenzelm
parents:
72021
diff
changeset
|
371 |
if (verbose) progress.echo(session_timing(session_name, build_log)) |
72021 | 372 |
progress.echo(session_finished(session_name, process_result)) |
72013 | 373 |
} |
66666
1a620647285c
clarified messages: after writing all files (see also 27f90319a499 and 57c85c83c11b);
wenzelm
parents:
66595
diff
changeset
|
374 |
else { |
71669 | 375 |
progress.echo(session_name + " FAILED") |
66666
1a620647285c
clarified messages: after writing all files (see also 27f90319a499 and 57c85c83c11b);
wenzelm
parents:
66595
diff
changeset
|
376 |
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
|
377 |
} |
1a620647285c
clarified messages: after writing all files (see also 27f90319a499 and 57c85c83c11b);
wenzelm
parents:
66595
diff
changeset
|
378 |
|
71669 | 379 |
loop(pending - session_name, running - session_name, |
380 |
results + |
|
381 |
(session_name -> Result(false, heap_digest, Some(process_result_tail), job.info))) |
|
50367 | 382 |
//}}} |
60215 | 383 |
case None if running.size < (max_jobs max 1) => |
50367 | 384 |
//{{{ check/start next job |
71601 | 385 |
pending.dequeue(running.isDefinedAt) match { |
71669 | 386 |
case Some((session_name, info)) => |
66848 | 387 |
val ancestor_results = |
71669 | 388 |
deps.sessions_structure.build_requirements(List(session_name)). |
389 |
filterNot(_ == session_name).map(results(_)) |
|
68213 | 390 |
val ancestor_heaps = ancestor_results.flatMap(_.heap_digest) |
62628 | 391 |
|
71669 | 392 |
val do_store = |
393 |
build_heap || Sessions.is_pure(session_name) || queue.is_inner(session_name) |
|
48547 | 394 |
|
68213 | 395 |
val (current, heap_digest) = |
48547 | 396 |
{ |
72634
5cea0993ee4f
clarified access to single database server vs. collection of database files;
wenzelm
parents:
72624
diff
changeset
|
397 |
store.try_open_database(session_name) match { |
68212
5a59fded83c7
clarified heap vs. database operations: discontinued correlation of directory;
wenzelm
parents:
68209
diff
changeset
|
398 |
case Some(db) => |
71669 | 399 |
using(db)(store.read_build(_, session_name)) match { |
68216 | 400 |
case Some(build) => |
71669 | 401 |
val heap_digest = store.find_heap_digest(session_name) |
68216 | 402 |
val current = |
403 |
!fresh_build && |
|
404 |
build.ok && |
|
71669 | 405 |
build.sources == sources_stamp(deps, session_name) && |
68216 | 406 |
build.input_heaps == ancestor_heaps && |
407 |
build.output_heap == heap_digest && |
|
71614 | 408 |
!(do_store && heap_digest.isEmpty) |
68216 | 409 |
(current, heap_digest) |
410 |
case None => (false, None) |
|
411 |
} |
|
62636 | 412 |
case None => (false, None) |
48504
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
wenzelm
parents:
48494
diff
changeset
|
413 |
} |
48547 | 414 |
} |
62628 | 415 |
val all_current = current && ancestor_results.forall(_.current) |
48528
784c6f63d79c
proper all_current, which regards parent status as well;
wenzelm
parents:
48511
diff
changeset
|
416 |
|
48547 | 417 |
if (all_current) |
71669 | 418 |
loop(pending - session_name, running, |
419 |
results + |
|
420 |
(session_name -> Result(true, heap_digest, Some(Process_Result(0)), info))) |
|
48678
ff27af15530c
queue ordering by descending outdegree and timeout;
wenzelm
parents:
48676
diff
changeset
|
421 |
else if (no_build) { |
71894 | 422 |
progress.echo_if(verbose, "Skipping " + session_name + " ...") |
71669 | 423 |
loop(pending - session_name, running, |
424 |
results + |
|
425 |
(session_name -> Result(false, heap_digest, Some(Process_Result(1)), info))) |
|
48678
ff27af15530c
queue ordering by descending outdegree and timeout;
wenzelm
parents:
48676
diff
changeset
|
426 |
} |
62628 | 427 |
else if (ancestor_results.forall(_.ok) && !progress.stopped) { |
71669 | 428 |
progress.echo((if (do_store) "Building " else "Running ") + session_name + " ...") |
68086
9e1c670301b8
cleanup session output before starting build job;
wenzelm
parents:
67852
diff
changeset
|
429 |
|
71669 | 430 |
store.clean_output(session_name) |
431 |
using(store.open_database(session_name, output = true))( |
|
432 |
store.init_session_info(_, session_name)) |
|
68086
9e1c670301b8
cleanup session output before starting build job;
wenzelm
parents:
67852
diff
changeset
|
433 |
|
71601 | 434 |
val numa_node = numa_nodes.next(used_node) |
51220 | 435 |
val job = |
72693 | 436 |
new Build_Job(progress, session_name, info, deps, store, do_store, |
73805
b73777a0c076
allow build session setup, e.g. for protocol handlers;
wenzelm
parents:
73804
diff
changeset
|
437 |
log, session_setup, numa_node, queue.command_timings(session_name)) |
71669 | 438 |
loop(pending, running + (session_name -> (ancestor_heaps, job)), results) |
48547 | 439 |
} |
440 |
else { |
|
71669 | 441 |
progress.echo(session_name + " CANCELLED") |
442 |
loop(pending - session_name, running, |
|
443 |
results + (session_name -> Result(false, heap_digest, None, info))) |
|
48547 | 444 |
} |
445 |
case None => sleep(); loop(pending, running, results) |
|
48425 | 446 |
} |
50367 | 447 |
///}}} |
48425 | 448 |
case None => sleep(); loop(pending, running, results) |
48373 | 449 |
} |
51253 | 450 |
} |
48425 | 451 |
} |
452 |
||
51220 | 453 |
|
454 |
/* build results */ |
|
455 |
||
72673
8ff7a0e394f9
clarified PDF/HTML presentation, based on pdf blobs from session database (e.g. from earlier builds);
wenzelm
parents:
72662
diff
changeset
|
456 |
val results = |
8ff7a0e394f9
clarified PDF/HTML presentation, based on pdf blobs from session database (e.g. from earlier builds);
wenzelm
parents:
72662
diff
changeset
|
457 |
{ |
8ff7a0e394f9
clarified PDF/HTML presentation, based on pdf blobs from session database (e.g. from earlier builds);
wenzelm
parents:
72662
diff
changeset
|
458 |
val results0 = |
8ff7a0e394f9
clarified PDF/HTML presentation, based on pdf blobs from session database (e.g. from earlier builds);
wenzelm
parents:
72662
diff
changeset
|
459 |
if (deps.is_empty) { |
8ff7a0e394f9
clarified PDF/HTML presentation, based on pdf blobs from session database (e.g. from earlier builds);
wenzelm
parents:
72662
diff
changeset
|
460 |
progress.echo_warning("Nothing to build") |
8ff7a0e394f9
clarified PDF/HTML presentation, based on pdf blobs from session database (e.g. from earlier builds);
wenzelm
parents:
72662
diff
changeset
|
461 |
Map.empty[String, Result] |
8ff7a0e394f9
clarified PDF/HTML presentation, based on pdf blobs from session database (e.g. from earlier builds);
wenzelm
parents:
72662
diff
changeset
|
462 |
} |
8ff7a0e394f9
clarified PDF/HTML presentation, based on pdf blobs from session database (e.g. from earlier builds);
wenzelm
parents:
72662
diff
changeset
|
463 |
else Isabelle_Thread.uninterruptible { loop(queue, Map.empty, Map.empty) } |
48583 | 464 |
|
64265 | 465 |
new Results( |
466 |
(for ((name, result) <- results0.iterator) |
|
467 |
yield (name, (result.process, result.info))).toMap) |
|
72673
8ff7a0e394f9
clarified PDF/HTML presentation, based on pdf blobs from session database (e.g. from earlier builds);
wenzelm
parents:
72662
diff
changeset
|
468 |
} |
62641 | 469 |
|
69811
18f61ce86425
clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents:
69777
diff
changeset
|
470 |
if (export_files) { |
71896
ce06d6456cc8
clarified signature --- fit within limit of 22 arguments;
wenzelm
parents:
71895
diff
changeset
|
471 |
for (name <- full_sessions.imports_selection(selection).iterator if results(name).ok) { |
69811
18f61ce86425
clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents:
69777
diff
changeset
|
472 |
val info = results.info(name) |
18f61ce86425
clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents:
69777
diff
changeset
|
473 |
if (info.export_files.nonEmpty) { |
18f61ce86425
clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents:
69777
diff
changeset
|
474 |
progress.echo("Exporting " + info.name + " ...") |
18f61ce86425
clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents:
69777
diff
changeset
|
475 |
for ((dir, prune, pats) <- info.export_files) { |
18f61ce86425
clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents:
69777
diff
changeset
|
476 |
Export.export_files(store, name, info.dir + dir, |
71726
a5fda30edae2
clarified signature: more uniform treatment of stopped/interrupted state;
wenzelm
parents:
71718
diff
changeset
|
477 |
progress = if (verbose) progress else new Progress, |
69811
18f61ce86425
clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents:
69777
diff
changeset
|
478 |
export_prune = prune, |
18f61ce86425
clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents:
69777
diff
changeset
|
479 |
export_patterns = pats) |
18f61ce86425
clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents:
69777
diff
changeset
|
480 |
} |
18f61ce86425
clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents:
69777
diff
changeset
|
481 |
} |
18f61ce86425
clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents:
69777
diff
changeset
|
482 |
} |
18f61ce86425
clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents:
69777
diff
changeset
|
483 |
} |
18f61ce86425
clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents:
69777
diff
changeset
|
484 |
|
74306 | 485 |
if (results.rc != Process_Result.RC.ok && (verbose || !no_build)) { |
62641 | 486 |
val unfinished = |
487 |
(for { |
|
488 |
name <- results.sessions.iterator |
|
489 |
if !results(name).ok |
|
490 |
} yield name).toList.sorted |
|
491 |
progress.echo("Unfinished session(s): " + commas(unfinished)) |
|
492 |
} |
|
493 |
||
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
|
494 |
|
72673
8ff7a0e394f9
clarified PDF/HTML presentation, based on pdf blobs from session database (e.g. from earlier builds);
wenzelm
parents:
72662
diff
changeset
|
495 |
/* PDF/HTML presentation */ |
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
|
496 |
|
72677 | 497 |
if (!no_build && !progress.stopped && results.ok) { |
74698 | 498 |
if (presentation_sessions.nonEmpty) { |
72676 | 499 |
val presentation_dir = presentation.dir(store) |
500 |
progress.echo("Presentation in " + presentation_dir.absolute) |
|
74709 | 501 |
Presentation.update_root(presentation_dir) |
74701
2bc24136bdeb
clarified order: prefer bottom-up construction of partial content;
wenzelm
parents:
74700
diff
changeset
|
502 |
|
2bc24136bdeb
clarified order: prefer bottom-up construction of partial content;
wenzelm
parents:
74700
diff
changeset
|
503 |
for ((chapter, infos) <- presentation_sessions.groupBy(_.chapter).iterator) { |
2bc24136bdeb
clarified order: prefer bottom-up construction of partial content;
wenzelm
parents:
74700
diff
changeset
|
504 |
val entries = infos.map(info => (info.name, info.description)) |
74709 | 505 |
Presentation.update_chapter(presentation_dir, chapter, entries) |
74701
2bc24136bdeb
clarified order: prefer bottom-up construction of partial content;
wenzelm
parents:
74700
diff
changeset
|
506 |
} |
72676 | 507 |
|
74818
3064e165c660
clarified HTML_Context.theory_exports: prefer value-oriented parallelism;
wenzelm
parents:
74815
diff
changeset
|
508 |
using(store.open_database_context())(db_context => |
3064e165c660
clarified HTML_Context.theory_exports: prefer value-oriented parallelism;
wenzelm
parents:
74815
diff
changeset
|
509 |
{ |
3064e165c660
clarified HTML_Context.theory_exports: prefer value-oriented parallelism;
wenzelm
parents:
74815
diff
changeset
|
510 |
val exports = |
3064e165c660
clarified HTML_Context.theory_exports: prefer value-oriented parallelism;
wenzelm
parents:
74815
diff
changeset
|
511 |
Presentation.read_exports(presentation_sessions.map(_.name), deps, db_context) |
74798
507f50dbeb79
just one Presentation.State for all sessions: avoid duplication of already presented theories (very slow) and cached theory export (not very slow);
wenzelm
parents:
74782
diff
changeset
|
512 |
|
74815
cfc15da73a78
afford more parallelism for sessions (instead of theories in 5eac4b13d1f1): depend on disjoint data areas (notably base.session_theories in 2ad892ac749a);
wenzelm
parents:
74813
diff
changeset
|
513 |
Par_List.map((session: String) => |
cfc15da73a78
afford more parallelism for sessions (instead of theories in 5eac4b13d1f1): depend on disjoint data areas (notably base.session_theories in 2ad892ac749a);
wenzelm
parents:
74813
diff
changeset
|
514 |
{ |
72683 | 515 |
progress.expose_interrupt() |
74770
32c2587cda4f
clarified HTML_Context: more explicit directory structure;
wenzelm
parents:
74767
diff
changeset
|
516 |
progress.echo("Presenting " + session + " ...") |
32c2587cda4f
clarified HTML_Context: more explicit directory structure;
wenzelm
parents:
74767
diff
changeset
|
517 |
|
32c2587cda4f
clarified HTML_Context: more explicit directory structure;
wenzelm
parents:
74767
diff
changeset
|
518 |
val html_context = |
32c2587cda4f
clarified HTML_Context: more explicit directory structure;
wenzelm
parents:
74767
diff
changeset
|
519 |
new Presentation.HTML_Context { |
32c2587cda4f
clarified HTML_Context: more explicit directory structure;
wenzelm
parents:
74767
diff
changeset
|
520 |
override def root_dir: Path = presentation_dir |
32c2587cda4f
clarified HTML_Context: more explicit directory structure;
wenzelm
parents:
74767
diff
changeset
|
521 |
override def theory_session(name: Document.Node.Name): Sessions.Info = |
32c2587cda4f
clarified HTML_Context: more explicit directory structure;
wenzelm
parents:
74767
diff
changeset
|
522 |
deps.sessions_structure(deps(session).theory_qualifier(name)) |
74828
46c7fafbea3d
more compact data during presentation: Entity_Context.Theory_Export instead of full Export_Theory.Theory;
wenzelm
parents:
74827
diff
changeset
|
523 |
override def theory_exports: Theory_Exports = exports |
74770
32c2587cda4f
clarified HTML_Context: more explicit directory structure;
wenzelm
parents:
74767
diff
changeset
|
524 |
} |
72962 | 525 |
Presentation.session_html( |
74770
32c2587cda4f
clarified HTML_Context: more explicit directory structure;
wenzelm
parents:
74767
diff
changeset
|
526 |
session, deps, db_context, progress = progress, |
74818
3064e165c660
clarified HTML_Context.theory_exports: prefer value-oriented parallelism;
wenzelm
parents:
74815
diff
changeset
|
527 |
verbose = verbose, html_context = html_context, |
74770
32c2587cda4f
clarified HTML_Context: more explicit directory structure;
wenzelm
parents:
74767
diff
changeset
|
528 |
Presentation.elements1) |
74818
3064e165c660
clarified HTML_Context.theory_exports: prefer value-oriented parallelism;
wenzelm
parents:
74815
diff
changeset
|
529 |
}, presentation_sessions.map(_.name)) |
3064e165c660
clarified HTML_Context.theory_exports: prefer value-oriented parallelism;
wenzelm
parents:
74815
diff
changeset
|
530 |
}) |
72676 | 531 |
} |
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
|
532 |
} |
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
|
533 |
|
62641 | 534 |
results |
48341 | 535 |
} |
536 |
||
537 |
||
62833 | 538 |
/* Isabelle tool wrapper */ |
48341 | 539 |
|
72763 | 540 |
val isabelle_tool = Isabelle_Tool("build", "build and manage Isabelle sessions", |
541 |
Scala_Project.here, args => |
|
48341 | 542 |
{ |
62833 | 543 |
val build_options = Word.explode(Isabelle_System.getenv("ISABELLE_BUILD_OPTIONS")) |
62590 | 544 |
|
66737
2edc0c42c883
option -B for "isabelle build" and "isabelle imports";
wenzelm
parents:
66736
diff
changeset
|
545 |
var base_sessions: List[String] = Nil |
62833 | 546 |
var select_dirs: List[Path] = Nil |
64265 | 547 |
var numa_shuffling = false |
72652 | 548 |
var presentation = Presentation.Context.none |
62833 | 549 |
var requirements = false |
66745 | 550 |
var soft_build = false |
62833 | 551 |
var exclude_session_groups: List[String] = Nil |
552 |
var all_sessions = false |
|
553 |
var build_heap = false |
|
554 |
var clean_build = false |
|
555 |
var dirs: List[Path] = Nil |
|
69811
18f61ce86425
clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents:
69777
diff
changeset
|
556 |
var export_files = false |
66841 | 557 |
var fresh_build = false |
62833 | 558 |
var session_groups: List[String] = Nil |
559 |
var max_jobs = 1 |
|
560 |
var check_keywords: Set[String] = Set.empty |
|
561 |
var list_files = false |
|
562 |
var no_build = false |
|
67847 | 563 |
var options = Options.init(opts = build_options) |
62833 | 564 |
var verbose = false |
565 |
var exclude_sessions: List[String] = Nil |
|
62590 | 566 |
|
62833 | 567 |
val getopts = Getopts(""" |
62590 | 568 |
Usage: isabelle build [OPTIONS] [SESSIONS ...] |
569 |
||
570 |
Options are: |
|
66737
2edc0c42c883
option -B for "isabelle build" and "isabelle imports";
wenzelm
parents:
66736
diff
changeset
|
571 |
-B NAME include session NAME and all descendants |
62590 | 572 |
-D DIR include session directory and select its sessions |
64265 | 573 |
-N cyclic shuffling of NUMA CPU nodes (performance tuning) |
72648 | 574 |
-P DIR enable HTML/PDF presentation in directory (":" for default) |
71807 | 575 |
-R refer to requirements of selected sessions |
66745 | 576 |
-S soft build: only observe changes of sources, not heap images |
62590 | 577 |
-X NAME exclude sessions from group NAME and all descendants |
578 |
-a select all sessions |
|
579 |
-b build heap images |
|
580 |
-c clean build |
|
581 |
-d DIR include session directory |
|
69811
18f61ce86425
clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents:
69777
diff
changeset
|
582 |
-e export files from session specification into file-system |
66841 | 583 |
-f fresh build |
62590 | 584 |
-g NAME select session group NAME |
585 |
-j INT maximum number of parallel jobs (default 1) |
|
586 |
-k KEYWORD check theory sources for conflicts with proposed keywords |
|
587 |
-l list session source files |
|
588 |
-n no build -- test dependencies only |
|
589 |
-o OPTION override Isabelle system OPTION (via NAME=VAL or NAME) |
|
590 |
-v verbose |
|
591 |
-x NAME exclude session NAME and all descendants |
|
592 |
||
62596 | 593 |
Build and manage Isabelle sessions, depending on implicit settings: |
594 |
||
73736 | 595 |
""" + Library.indent_lines(2, Build_Log.Settings.show()) + "\n", |
66737
2edc0c42c883
option -B for "isabelle build" and "isabelle imports";
wenzelm
parents:
66736
diff
changeset
|
596 |
"B:" -> (arg => base_sessions = base_sessions ::: List(arg)), |
62833 | 597 |
"D:" -> (arg => select_dirs = select_dirs ::: List(Path.explode(arg))), |
64265 | 598 |
"N" -> (_ => numa_shuffling = true), |
72652 | 599 |
"P:" -> (arg => presentation = Presentation.Context.make(arg)), |
62833 | 600 |
"R" -> (_ => requirements = true), |
66745 | 601 |
"S" -> (_ => soft_build = true), |
62833 | 602 |
"X:" -> (arg => exclude_session_groups = exclude_session_groups ::: List(arg)), |
603 |
"a" -> (_ => all_sessions = true), |
|
604 |
"b" -> (_ => build_heap = true), |
|
605 |
"c" -> (_ => clean_build = true), |
|
606 |
"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
|
607 |
"e" -> (_ => export_files = true), |
66841 | 608 |
"f" -> (_ => fresh_build = true), |
62833 | 609 |
"g:" -> (arg => session_groups = session_groups ::: List(arg)), |
63805 | 610 |
"j:" -> (arg => max_jobs = Value.Int.parse(arg)), |
62833 | 611 |
"k:" -> (arg => check_keywords = check_keywords + arg), |
612 |
"l" -> (_ => list_files = true), |
|
613 |
"n" -> (_ => no_build = true), |
|
614 |
"o:" -> (arg => options = options + arg), |
|
615 |
"v" -> (_ => verbose = true), |
|
616 |
"x:" -> (arg => exclude_sessions = exclude_sessions ::: List(arg))) |
|
62590 | 617 |
|
62833 | 618 |
val sessions = getopts(args) |
62590 | 619 |
|
64115 | 620 |
val progress = new Console_Progress(verbose = verbose) |
62590 | 621 |
|
64140 | 622 |
val start_date = Date.now() |
623 |
||
62833 | 624 |
if (verbose) { |
625 |
progress.echo( |
|
64155 | 626 |
"Started at " + Build_Log.print_date(start_date) + |
64140 | 627 |
" (" + Isabelle_System.getenv("ML_IDENTIFIER") + " on " + Isabelle_System.hostname() +")") |
64081 | 628 |
progress.echo(Build_Log.Settings.show() + "\n") |
62833 | 629 |
} |
62590 | 630 |
|
62833 | 631 |
val results = |
632 |
progress.interrupt_handler { |
|
67846 | 633 |
build(options, |
71981 | 634 |
selection = Sessions.Selection( |
71896
ce06d6456cc8
clarified signature --- fit within limit of 22 arguments;
wenzelm
parents:
71895
diff
changeset
|
635 |
requirements = requirements, |
ce06d6456cc8
clarified signature --- fit within limit of 22 arguments;
wenzelm
parents:
71895
diff
changeset
|
636 |
all_sessions = all_sessions, |
ce06d6456cc8
clarified signature --- fit within limit of 22 arguments;
wenzelm
parents:
71895
diff
changeset
|
637 |
base_sessions = base_sessions, |
ce06d6456cc8
clarified signature --- fit within limit of 22 arguments;
wenzelm
parents:
71895
diff
changeset
|
638 |
exclude_session_groups = exclude_session_groups, |
ce06d6456cc8
clarified signature --- fit within limit of 22 arguments;
wenzelm
parents:
71895
diff
changeset
|
639 |
exclude_sessions = exclude_sessions, |
ce06d6456cc8
clarified signature --- fit within limit of 22 arguments;
wenzelm
parents:
71895
diff
changeset
|
640 |
session_groups = session_groups, |
ce06d6456cc8
clarified signature --- fit within limit of 22 arguments;
wenzelm
parents:
71895
diff
changeset
|
641 |
sessions = sessions), |
72648 | 642 |
presentation = presentation, |
67846 | 643 |
progress = progress, |
73522 | 644 |
check_unknown_files = Mercurial.is_repository(Path.ISABELLE_HOME), |
63224 | 645 |
build_heap = build_heap, |
646 |
clean_build = clean_build, |
|
647 |
dirs = dirs, |
|
648 |
select_dirs = select_dirs, |
|
65831 | 649 |
numa_shuffling = NUMA.enabled_warning(progress, numa_shuffling), |
63224 | 650 |
max_jobs = max_jobs, |
651 |
list_files = list_files, |
|
652 |
check_keywords = check_keywords, |
|
66841 | 653 |
fresh_build = fresh_build, |
63224 | 654 |
no_build = no_build, |
66745 | 655 |
soft_build = soft_build, |
63224 | 656 |
verbose = verbose, |
71896
ce06d6456cc8
clarified signature --- fit within limit of 22 arguments;
wenzelm
parents:
71895
diff
changeset
|
657 |
export_files = export_files) |
62833 | 658 |
} |
64140 | 659 |
val end_date = Date.now() |
660 |
val elapsed_time = end_date.time - start_date.time |
|
62590 | 661 |
|
62833 | 662 |
if (verbose) { |
64155 | 663 |
progress.echo("\nFinished at " + Build_Log.print_date(end_date)) |
62833 | 664 |
} |
62590 | 665 |
|
62833 | 666 |
val total_timing = |
73359 | 667 |
results.sessions.iterator.map(a => results(a).timing).foldLeft(Timing.zero)(_ + _). |
62833 | 668 |
copy(elapsed = elapsed_time) |
669 |
progress.echo(total_timing.message_resources) |
|
62590 | 670 |
|
62833 | 671 |
sys.exit(results.rc) |
672 |
}) |
|
68305 | 673 |
|
674 |
||
675 |
/* build logic image */ |
|
676 |
||
677 |
def build_logic(options: Options, logic: String, |
|
71726
a5fda30edae2
clarified signature: more uniform treatment of stopped/interrupted state;
wenzelm
parents:
71718
diff
changeset
|
678 |
progress: Progress = new Progress, |
68305 | 679 |
build_heap: Boolean = false, |
680 |
dirs: List[Path] = Nil, |
|
70791 | 681 |
fresh: Boolean = false, |
69540 | 682 |
strict: Boolean = false): Int = |
68305 | 683 |
{ |
71896
ce06d6456cc8
clarified signature --- fit within limit of 22 arguments;
wenzelm
parents:
71895
diff
changeset
|
684 |
val selection = Sessions.Selection.session(logic) |
69540 | 685 |
val rc = |
71981 | 686 |
if (!fresh && build(options, selection = selection, |
74306 | 687 |
build_heap = build_heap, no_build = true, dirs = dirs).ok) Process_Result.RC.ok |
69540 | 688 |
else { |
689 |
progress.echo("Build started for Isabelle/" + logic + " ...") |
|
71981 | 690 |
Build.build(options, selection = selection, progress = progress, |
691 |
build_heap = build_heap, fresh_build = fresh, dirs = dirs).rc |
|
69540 | 692 |
} |
74306 | 693 |
if (strict && rc != Process_Result.RC.ok) error("Failed to build Isabelle/" + logic) else rc |
68305 | 694 |
} |
48276 | 695 |
} |