author | wenzelm |
Sat, 11 Feb 2023 22:02:39 +0100 | |
changeset 77251 | e2d0794d0e24 |
parent 77250 | 22016642d6af |
child 77252 | 36c856e25b73 |
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 |
|
75393 | 15 |
object Build { |
62631 | 16 |
/** auxiliary **/ |
48424 | 17 |
|
65291
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65289
diff
changeset
|
18 |
/* persistent build info */ |
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65289
diff
changeset
|
19 |
|
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65289
diff
changeset
|
20 |
sealed case class Session_Info( |
77207
d98a99e4eea9
proper Shasum.digest, to emulate old form from build_history database;
wenzelm
parents:
77206
diff
changeset
|
21 |
sources: SHA1.Shasum, |
d98a99e4eea9
proper Shasum.digest, to emulate old form from build_history database;
wenzelm
parents:
77206
diff
changeset
|
22 |
input_heaps: SHA1.Shasum, |
d98a99e4eea9
proper Shasum.digest, to emulate old form from build_history database;
wenzelm
parents:
77206
diff
changeset
|
23 |
output_heap: SHA1.Shasum, |
75967
ff164add75cd
maintain "uuid" column in session build database, to identity the original build process uniquely;
wenzelm
parents:
75948
diff
changeset
|
24 |
return_code: Int, |
ff164add75cd
maintain "uuid" column in session build database, to identity the original build process uniquely;
wenzelm
parents:
75948
diff
changeset
|
25 |
uuid: String |
75393 | 26 |
) { |
66747 | 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 |
|
75393 | 33 |
private object Queue { |
34 |
def apply( |
|
35 |
sessions_structure: Sessions.Structure, |
|
77246 | 36 |
store: Sessions.Store, |
37 |
progress: Progress = new Progress |
|
38 |
): Queue = { |
|
39 |
val context = Build_Process.Context(sessions_structure, store, progress = progress) |
|
40 |
val build_graph = sessions_structure.build_graph |
|
77251 | 41 |
val build_order = SortedSet.from(build_graph.keys)(context.ordering) |
42 |
new Queue(context, build_graph, build_order) |
|
48676
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents:
48675
diff
changeset
|
43 |
} |
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents:
48675
diff
changeset
|
44 |
} |
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents:
48675
diff
changeset
|
45 |
|
65314 | 46 |
private class Queue( |
77246 | 47 |
context: Build_Process.Context, |
48 |
build_graph: Graph[String, Sessions.Info], |
|
77251 | 49 |
build_order: SortedSet[String] |
75393 | 50 |
) { |
77246 | 51 |
def old_command_timings(name: String): List[Properties.T] = |
52 |
context(name).old_command_timings |
|
48676
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents:
48675
diff
changeset
|
53 |
|
77246 | 54 |
def is_inner(name: String): Boolean = !build_graph.is_maximal(name) |
55 |
||
56 |
def is_empty: Boolean = build_graph.is_empty |
|
48676
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents:
48675
diff
changeset
|
57 |
|
51227
88c96e836ed6
prefer comparison of session timing, if this is known already;
wenzelm
parents:
51223
diff
changeset
|
58 |
def - (name: String): Queue = |
77251 | 59 |
new Queue(context, build_graph.del_node(name), build_order - name) |
48676
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents:
48675
diff
changeset
|
60 |
|
77250
22016642d6af
clarified data structure: use static info from deps, not dynamic results;
wenzelm
parents:
77246
diff
changeset
|
61 |
def dequeue(skip: String => Boolean): Option[String] = |
77251 | 62 |
build_order.iterator.dropWhile(name => skip(name) || !build_graph.is_minimal(name)) |
77250
22016642d6af
clarified data structure: use static info from deps, not dynamic results;
wenzelm
parents:
77246
diff
changeset
|
63 |
.nextOption() |
48676
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents:
48675
diff
changeset
|
64 |
} |
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents:
48675
diff
changeset
|
65 |
|
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents:
48675
diff
changeset
|
66 |
|
62631 | 67 |
|
62641 | 68 |
/** build with results **/ |
48424 | 69 |
|
76198
fb4215da4919
clarified presentation_sessions: work with partial results;
wenzelm
parents:
76197
diff
changeset
|
70 |
class Results private[Build]( |
76206
769a7cd5a16a
clarified signature: re-use store/cache from build results;
wenzelm
parents:
76202
diff
changeset
|
71 |
val store: Sessions.Store, |
76209 | 72 |
val deps: Sessions.Deps, |
76901 | 73 |
val sessions_ok: List[String], |
77250
22016642d6af
clarified data structure: use static info from deps, not dynamic results;
wenzelm
parents:
77246
diff
changeset
|
74 |
results: Map[String, Option[Process_Result]] |
76198
fb4215da4919
clarified presentation_sessions: work with partial results;
wenzelm
parents:
76197
diff
changeset
|
75 |
) { |
76206
769a7cd5a16a
clarified signature: re-use store/cache from build results;
wenzelm
parents:
76202
diff
changeset
|
76 |
def cache: Term.Cache = store.cache |
769a7cd5a16a
clarified signature: re-use store/cache from build results;
wenzelm
parents:
76202
diff
changeset
|
77 |
|
77250
22016642d6af
clarified data structure: use static info from deps, not dynamic results;
wenzelm
parents:
77246
diff
changeset
|
78 |
def info(name: String): Sessions.Info = deps.sessions_structure(name) |
62403 | 79 |
def sessions: Set[String] = results.keySet |
77250
22016642d6af
clarified data structure: use static info from deps, not dynamic results;
wenzelm
parents:
77246
diff
changeset
|
80 |
def cancelled(name: String): Boolean = results(name).isEmpty |
22016642d6af
clarified data structure: use static info from deps, not dynamic results;
wenzelm
parents:
77246
diff
changeset
|
81 |
def apply(name: String): Process_Result = results(name).getOrElse(Process_Result.error) |
71601 | 82 |
val rc: Int = |
77250
22016642d6af
clarified data structure: use static info from deps, not dynamic results;
wenzelm
parents:
77246
diff
changeset
|
83 |
results.iterator.map({ case (_, Some(r)) => r.rc case (_, None) => Process_Result.RC.error }). |
74306 | 84 |
foldLeft(Process_Result.RC.ok)(_ max _) |
85 |
def ok: Boolean = rc == Process_Result.RC.ok |
|
62406 | 86 |
|
76202 | 87 |
def unfinished: List[String] = sessions.iterator.filterNot(apply(_).ok).toList.sorted |
76199 | 88 |
|
62406 | 89 |
override def toString: String = rc.toString |
62403 | 90 |
} |
91 |
||
72021 | 92 |
def session_finished(session_name: String, process_result: Process_Result): String = |
93 |
"Finished " + session_name + " (" + process_result.timing.message_resources + ")" |
|
72013 | 94 |
|
75393 | 95 |
def session_timing(session_name: String, build_log: Build_Log.Session_Info): String = { |
72021 | 96 |
val props = build_log.session_timing |
97 |
val threads = Markup.Session_Timing.Threads.unapply(props) getOrElse 1 |
|
74782 | 98 |
val timing = Markup.Timing_Properties.get(props) |
72015 | 99 |
"Timing " + session_name + " (" + threads + " threads, " + timing.message_factor + ")" |
72021 | 100 |
} |
72018 | 101 |
|
62641 | 102 |
def build( |
50404
898cac1dad5e
avoid startup within GUI thread -- it is only required later for dialog;
wenzelm
parents:
50367
diff
changeset
|
103 |
options: Options, |
71981 | 104 |
selection: Sessions.Selection = Sessions.Selection.empty, |
75942
603852abed8f
clarified names: Browser_Info.Config vs. Browser_Info.Context;
wenzelm
parents:
75941
diff
changeset
|
105 |
browser_info: Browser_Info.Config = Browser_Info.Config.none, |
71726
a5fda30edae2
clarified signature: more uniform treatment of stopped/interrupted state;
wenzelm
parents:
71718
diff
changeset
|
106 |
progress: Progress = new Progress, |
65832
2fb85623c386
implicitly check for unknown files (not part of a Mercurial repository);
wenzelm
parents:
65831
diff
changeset
|
107 |
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
|
108 |
build_heap: Boolean = false, |
48595 | 109 |
clean_build: Boolean = false, |
56890 | 110 |
dirs: List[Path] = Nil, |
111 |
select_dirs: List[Path] = Nil, |
|
66968
9991671c98aa
allow to augment session context via explicit session infos;
wenzelm
parents:
66962
diff
changeset
|
112 |
infos: List[Sessions.Info] = Nil, |
64265 | 113 |
numa_shuffling: Boolean = false, |
48509 | 114 |
max_jobs: Int = 1, |
48903 | 115 |
list_files: Boolean = false, |
59891
9ce697050455
added isabelle build option -k, for fast off-line checking of theory sources;
wenzelm
parents:
59811
diff
changeset
|
116 |
check_keywords: Set[String] = Set.empty, |
66841 | 117 |
fresh_build: Boolean = false, |
48509 | 118 |
no_build: Boolean = false, |
66745 | 119 |
soft_build: Boolean = false, |
48509 | 120 |
verbose: Boolean = false, |
73805
b73777a0c076
allow build session setup, e.g. for protocol handlers;
wenzelm
parents:
73804
diff
changeset
|
121 |
export_files: Boolean = false, |
76927
da13da82f6f9
treat update_options as part of Sessions.Info meta_digest, for proper re-build of updated sessions;
wenzelm
parents:
76919
diff
changeset
|
122 |
augment_options: String => List[Options.Spec] = _ => Nil, |
75393 | 123 |
session_setup: (String, Session) => Unit = (_, _) => () |
124 |
): Results = { |
|
71677 | 125 |
val build_options = |
71679
eeaa4021f080
proper "editor_tracing_messages=0" as in "isabelle dump";
wenzelm
parents:
71677
diff
changeset
|
126 |
options + |
eeaa4021f080
proper "editor_tracing_messages=0" as in "isabelle dump";
wenzelm
parents:
71677
diff
changeset
|
127 |
"completion_limit=0" + |
eeaa4021f080
proper "editor_tracing_messages=0" as in "isabelle dump";
wenzelm
parents:
71677
diff
changeset
|
128 |
"editor_tracing_messages=0" + |
72728
caa182bdab7a
clarified options: batch-build has pide_reports disabled by default (requires significant resources);
wenzelm
parents:
72693
diff
changeset
|
129 |
("pide_reports=" + options.bool("build_pide_reports")) |
51220 | 130 |
|
69854
cc0b3e177b49
system option "system_heaps" supersedes various command-line options for "system build mode";
wenzelm
parents:
69811
diff
changeset
|
131 |
val store = Sessions.store(build_options) |
66745 | 132 |
|
69369
6ecc85955e04
prefer "Isabelle DejaVu Sans", even for headless batch-build (session_graph.pdf);
wenzelm
parents:
68957
diff
changeset
|
133 |
Isabelle_Fonts.init() |
6ecc85955e04
prefer "Isabelle DejaVu Sans", even for headless batch-build (session_graph.pdf);
wenzelm
parents:
68957
diff
changeset
|
134 |
|
66745 | 135 |
|
136 |
/* session selection and dependencies */ |
|
65422 | 137 |
|
66961 | 138 |
val full_sessions = |
76927
da13da82f6f9
treat update_options as part of Sessions.Info meta_digest, for proper re-build of updated sessions;
wenzelm
parents:
76919
diff
changeset
|
139 |
Sessions.load_structure(build_options, dirs = dirs, select_dirs = select_dirs, infos = infos, |
da13da82f6f9
treat update_options as part of Sessions.Info meta_digest, for proper re-build of updated sessions;
wenzelm
parents:
76919
diff
changeset
|
140 |
augment_options = augment_options) |
73012
238ddf525da4
clarified HTML presentation, e.g. avoid bulky jobs like HOL or HOL-Analysis in applications;
wenzelm
parents:
72993
diff
changeset
|
141 |
val full_sessions_selection = full_sessions.imports_selection(selection) |
238ddf525da4
clarified HTML presentation, e.g. avoid bulky jobs like HOL or HOL-Analysis in applications;
wenzelm
parents:
72993
diff
changeset
|
142 |
|
75948 | 143 |
val build_deps = { |
66745 | 144 |
val deps0 = |
71896
ce06d6456cc8
clarified signature --- fit within limit of 22 arguments;
wenzelm
parents:
71895
diff
changeset
|
145 |
Sessions.deps(full_sessions.selection(selection), |
66962
e1bde71bace6
clarified signature: global_theories is always required;
wenzelm
parents:
66961
diff
changeset
|
146 |
progress = progress, inlined_files = true, verbose = verbose, |
e1bde71bace6
clarified signature: global_theories is always required;
wenzelm
parents:
66961
diff
changeset
|
147 |
list_files = list_files, check_keywords = check_keywords).check_errors |
66745 | 148 |
|
66841 | 149 |
if (soft_build && !fresh_build) { |
66745 | 150 |
val outdated = |
68204 | 151 |
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
|
152 |
store.try_open_database(name) match { |
68214 | 153 |
case Some(db) => |
68216 | 154 |
using(db)(store.read_build(_, name)) match { |
66745 | 155 |
case Some(build) |
77204 | 156 |
if build.ok && build.sources == deps0.sources_shasum(name) => None |
66745 | 157 |
case _ => Some(name) |
158 |
} |
|
159 |
case None => Some(name) |
|
160 |
}) |
|
68204 | 161 |
|
162 |
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
|
163 |
progress = progress, inlined_files = true).check_errors |
66745 | 164 |
} |
68204 | 165 |
else deps0 |
66745 | 166 |
} |
167 |
||
168 |
||
169 |
/* check unknown files */ |
|
48504
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
wenzelm
parents:
48494
diff
changeset
|
170 |
|
65832
2fb85623c386
implicitly check for unknown files (not part of a Mercurial repository);
wenzelm
parents:
65831
diff
changeset
|
171 |
if (check_unknown_files) { |
2fb85623c386
implicitly check for unknown files (not part of a Mercurial repository);
wenzelm
parents:
65831
diff
changeset
|
172 |
val source_files = |
2fb85623c386
implicitly check for unknown files (not part of a Mercurial repository);
wenzelm
parents:
65831
diff
changeset
|
173 |
(for { |
75948 | 174 |
(_, base) <- build_deps.session_bases.iterator |
75741 | 175 |
(path, _) <- base.session_sources.iterator |
65832
2fb85623c386
implicitly check for unknown files (not part of a Mercurial repository);
wenzelm
parents:
65831
diff
changeset
|
176 |
} yield path).toList |
76670
b04d45bebbc5
discontinued somewhat pointless dependency: avoid illusion of extra accuracy (see also 09fb749d1a1e and 0f750a6dc754);
wenzelm
parents:
76669
diff
changeset
|
177 |
Mercurial.check_files(source_files)._2 match { |
b04d45bebbc5
discontinued somewhat pointless dependency: avoid illusion of extra accuracy (see also 09fb749d1a1e and 0f750a6dc754);
wenzelm
parents:
76669
diff
changeset
|
178 |
case Nil => |
b04d45bebbc5
discontinued somewhat pointless dependency: avoid illusion of extra accuracy (see also 09fb749d1a1e and 0f750a6dc754);
wenzelm
parents:
76669
diff
changeset
|
179 |
case unknown_files => |
b04d45bebbc5
discontinued somewhat pointless dependency: avoid illusion of extra accuracy (see also 09fb749d1a1e and 0f750a6dc754);
wenzelm
parents:
76669
diff
changeset
|
180 |
progress.echo_warning("Unknown files (not part of the underlying Mercurial repository):" + |
76883 | 181 |
unknown_files.map(File.standard_path).sorted.mkString("\n ", "\n ", "")) |
65832
2fb85623c386
implicitly check for unknown files (not part of a Mercurial repository);
wenzelm
parents:
65831
diff
changeset
|
182 |
} |
2fb85623c386
implicitly check for unknown files (not part of a Mercurial repository);
wenzelm
parents:
65831
diff
changeset
|
183 |
} |
2fb85623c386
implicitly check for unknown files (not part of a Mercurial repository);
wenzelm
parents:
65831
diff
changeset
|
184 |
|
51220 | 185 |
|
186 |
/* main build process */ |
|
187 |
||
77246 | 188 |
val queue = Queue(build_deps.sessions_structure, store, progress = progress) |
65289 | 189 |
|
68219 | 190 |
store.prepare_output_dir() |
48373 | 191 |
|
48595 | 192 |
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
|
193 |
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
|
194 |
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
|
195 |
if (relevant) { |
8fc4e3d1df86
clarified store.clean_output: cleanup user_output_dir even in system_mode;
wenzelm
parents:
68219
diff
changeset
|
196 |
if (ok) progress.echo("Cleaned " + name) |
8fc4e3d1df86
clarified store.clean_output: cleanup user_output_dir even in system_mode;
wenzelm
parents:
68219
diff
changeset
|
197 |
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
|
198 |
} |
48595 | 199 |
} |
200 |
} |
|
201 |
||
48425 | 202 |
// scheduler loop |
63082
6af03422535a
expose Sessions.Info in Build.Results
Lars Hupel <lars.hupel@mytum.de>
parents:
62946
diff
changeset
|
203 |
case class Result( |
66594 | 204 |
current: Boolean, |
77207
d98a99e4eea9
proper Shasum.digest, to emulate old form from build_history database;
wenzelm
parents:
77206
diff
changeset
|
205 |
output_heap: SHA1.Shasum, |
77250
22016642d6af
clarified data structure: use static info from deps, not dynamic results;
wenzelm
parents:
77246
diff
changeset
|
206 |
process: Option[Process_Result] |
75393 | 207 |
) { |
62402 | 208 |
def ok: Boolean = |
209 |
process match { |
|
210 |
case None => false |
|
74306 | 211 |
case Some(res) => res.ok |
62402 | 212 |
} |
213 |
} |
|
48639
675988e64bf9
store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents:
48626
diff
changeset
|
214 |
|
73340 | 215 |
def sleep(): Unit = |
76476 | 216 |
Isabelle_Thread.interrupt_handler(_ => progress.stop()) { |
217 |
build_options.seconds("editor_input_delay").sleep() |
|
218 |
} |
|
50366 | 219 |
|
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
|
220 |
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
|
221 |
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
|
222 |
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
|
223 |
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
|
224 |
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
|
225 |
} |
52e43a93d51f
clarified system_log: make this work independently of the particular "isabelle build" command-line (e.g. "isabelle mirabelle");
wenzelm
parents:
73774
diff
changeset
|
226 |
|
64265 | 227 |
val numa_nodes = new NUMA.Nodes(numa_shuffling) |
228 |
||
48425 | 229 |
@tailrec def loop( |
48676
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents:
48675
diff
changeset
|
230 |
pending: Queue, |
77207
d98a99e4eea9
proper Shasum.digest, to emulate old form from build_history database;
wenzelm
parents:
77206
diff
changeset
|
231 |
running: Map[String, (SHA1.Shasum, Build_Job)], |
75393 | 232 |
results: Map[String, Result] |
233 |
): Map[String, Result] = { |
|
64265 | 234 |
def used_node(i: Int): Boolean = |
235 |
running.iterator.exists( |
|
236 |
{ case (_, (_, job)) => job.numa_node.isDefined && job.numa_node.get == i }) |
|
237 |
||
48425 | 238 |
if (pending.is_empty) results |
51253 | 239 |
else { |
71726
a5fda30edae2
clarified signature: more uniform treatment of stopped/interrupted state;
wenzelm
parents:
71718
diff
changeset
|
240 |
if (progress.stopped) { |
73367 | 241 |
for ((_, (_, job)) <- running) job.terminate() |
71726
a5fda30edae2
clarified signature: more uniform treatment of stopped/interrupted state;
wenzelm
parents:
71718
diff
changeset
|
242 |
} |
51253 | 243 |
|
48674 | 244 |
running.find({ case (_, (_, job)) => job.is_finished }) match { |
71669 | 245 |
case Some((session_name, (input_heaps, job))) => |
50367 | 246 |
//{{{ finish job |
48424 | 247 |
|
77236 | 248 |
val process_result = job.join |
249 |
||
250 |
val output_heap = |
|
251 |
if (process_result.ok && job.do_store && store.output_heap(session_name).is_file) { |
|
252 |
SHA1.shasum(ML_Heap.write_digest(store.output_heap(session_name)), session_name) |
|
253 |
} |
|
254 |
else SHA1.no_shasum |
|
48373 | 255 |
|
71623
b3bddebe44ca
clarified signature: more explicit type Protocol_Message.Marker;
wenzelm
parents:
71614
diff
changeset
|
256 |
val log_lines = process_result.out_lines.filterNot(Protocol_Message.Marker.test) |
75393 | 257 |
val process_result_tail = { |
62409
e391528eff3b
proper option process_output_tail, more generous default;
wenzelm
parents:
62406
diff
changeset
|
258 |
val tail = job.info.options.int("process_output_tail") |
62632 | 259 |
process_result.copy( |
260 |
out_lines = |
|
77177
76180e429491
clarified message: old-style log is usually empty;
wenzelm
parents:
76927
diff
changeset
|
261 |
"(more details via \"isabelle log -H Error " + session_name + "\")" :: |
65294 | 262 |
(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
|
263 |
} |
13a0f537e232
retain tail out_lines as printed, but not the whole log content;
wenzelm
parents:
62403
diff
changeset
|
264 |
|
72017 | 265 |
val build_log = |
266 |
Build_Log.Log_File(session_name, process_result.out_lines). |
|
267 |
parse_session_info( |
|
268 |
command_timings = true, |
|
269 |
theory_timings = true, |
|
270 |
ml_statistics = true, |
|
271 |
task_statistics = true) |
|
66666
1a620647285c
clarified messages: after writing all files (see also 27f90319a499 and 57c85c83c11b);
wenzelm
parents:
66595
diff
changeset
|
272 |
|
1a620647285c
clarified messages: after writing all files (see also 27f90319a499 and 57c85c83c11b);
wenzelm
parents:
66595
diff
changeset
|
273 |
// write log file |
68217 | 274 |
if (process_result.ok) { |
71669 | 275 |
File.write_gzip(store.output_log_gz(session_name), terminate_lines(log_lines)) |
68217 | 276 |
} |
71669 | 277 |
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
|
278 |
|
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65289
diff
changeset
|
279 |
// write database |
72017 | 280 |
using(store.open_database(session_name, output = true))(db => |
76871
a17f9ff37558
clarified session_sources (again, see also 9d0e6ea7aa68);
wenzelm
parents:
76866
diff
changeset
|
281 |
store.write_session_info(db, session_name, job.session_sources, |
72017 | 282 |
build_log = |
283 |
if (process_result.timeout) build_log.error("Timeout") else build_log, |
|
284 |
build = |
|
77206 | 285 |
Session_Info(build_deps.sources_shasum(session_name), input_heaps, output_heap, |
75967
ff164add75cd
maintain "uuid" column in session build database, to identity the original build process uniquely;
wenzelm
parents:
75948
diff
changeset
|
286 |
process_result.rc, UUID.random().toString))) |
65291
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65289
diff
changeset
|
287 |
|
66666
1a620647285c
clarified messages: after writing all files (see also 27f90319a499 and 57c85c83c11b);
wenzelm
parents:
66595
diff
changeset
|
288 |
// messages |
71601 | 289 |
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
|
290 |
|
72013 | 291 |
if (process_result.ok) { |
72022
45865bb06182
clarified message --- as in former ML version (see 940195fbb282);
wenzelm
parents:
72021
diff
changeset
|
292 |
if (verbose) progress.echo(session_timing(session_name, build_log)) |
72021 | 293 |
progress.echo(session_finished(session_name, process_result)) |
72013 | 294 |
} |
66666
1a620647285c
clarified messages: after writing all files (see also 27f90319a499 and 57c85c83c11b);
wenzelm
parents:
66595
diff
changeset
|
295 |
else { |
71669 | 296 |
progress.echo(session_name + " FAILED") |
66666
1a620647285c
clarified messages: after writing all files (see also 27f90319a499 and 57c85c83c11b);
wenzelm
parents:
66595
diff
changeset
|
297 |
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
|
298 |
} |
1a620647285c
clarified messages: after writing all files (see also 27f90319a499 and 57c85c83c11b);
wenzelm
parents:
66595
diff
changeset
|
299 |
|
71669 | 300 |
loop(pending - session_name, running - session_name, |
77250
22016642d6af
clarified data structure: use static info from deps, not dynamic results;
wenzelm
parents:
77246
diff
changeset
|
301 |
results + (session_name -> Result(false, output_heap, Some(process_result_tail)))) |
50367 | 302 |
//}}} |
60215 | 303 |
case None if running.size < (max_jobs max 1) => |
50367 | 304 |
//{{{ check/start next job |
71601 | 305 |
pending.dequeue(running.isDefinedAt) match { |
77250
22016642d6af
clarified data structure: use static info from deps, not dynamic results;
wenzelm
parents:
77246
diff
changeset
|
306 |
case Some(session_name) => |
66848 | 307 |
val ancestor_results = |
76669 | 308 |
build_deps.sessions_structure.build_requirements(List(session_name)). |
71669 | 309 |
filterNot(_ == session_name).map(results(_)) |
77206 | 310 |
val input_heaps = |
77192 | 311 |
if (ancestor_results.isEmpty) { |
77207
d98a99e4eea9
proper Shasum.digest, to emulate old form from build_history database;
wenzelm
parents:
77206
diff
changeset
|
312 |
SHA1.shasum_meta_info(SHA1.digest(Path.explode("$POLYML_EXE"))) |
77192 | 313 |
} |
77207
d98a99e4eea9
proper Shasum.digest, to emulate old form from build_history database;
wenzelm
parents:
77206
diff
changeset
|
314 |
else SHA1.flat_shasum(ancestor_results.map(_.output_heap)) |
62628 | 315 |
|
71669 | 316 |
val do_store = |
317 |
build_heap || Sessions.is_pure(session_name) || queue.is_inner(session_name) |
|
48547 | 318 |
|
77206 | 319 |
val (current, output_heap) = { |
72634
5cea0993ee4f
clarified access to single database server vs. collection of database files;
wenzelm
parents:
72624
diff
changeset
|
320 |
store.try_open_database(session_name) match { |
68212
5a59fded83c7
clarified heap vs. database operations: discontinued correlation of directory;
wenzelm
parents:
68209
diff
changeset
|
321 |
case Some(db) => |
71669 | 322 |
using(db)(store.read_build(_, session_name)) match { |
68216 | 323 |
case Some(build) => |
77206 | 324 |
val output_heap = store.find_heap_shasum(session_name) |
68216 | 325 |
val current = |
326 |
!fresh_build && |
|
327 |
build.ok && |
|
77204 | 328 |
build.sources == build_deps.sources_shasum(session_name) && |
77206 | 329 |
build.input_heaps == input_heaps && |
330 |
build.output_heap == output_heap && |
|
77207
d98a99e4eea9
proper Shasum.digest, to emulate old form from build_history database;
wenzelm
parents:
77206
diff
changeset
|
331 |
!(do_store && output_heap.is_empty) |
77206 | 332 |
(current, output_heap) |
77207
d98a99e4eea9
proper Shasum.digest, to emulate old form from build_history database;
wenzelm
parents:
77206
diff
changeset
|
333 |
case None => (false, SHA1.no_shasum) |
68216 | 334 |
} |
77207
d98a99e4eea9
proper Shasum.digest, to emulate old form from build_history database;
wenzelm
parents:
77206
diff
changeset
|
335 |
case None => (false, SHA1.no_shasum) |
48504
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
wenzelm
parents:
48494
diff
changeset
|
336 |
} |
48547 | 337 |
} |
62628 | 338 |
val all_current = current && ancestor_results.forall(_.current) |
48528
784c6f63d79c
proper all_current, which regards parent status as well;
wenzelm
parents:
48511
diff
changeset
|
339 |
|
76201
9d1819c28f67
clarified conditions: no_build is ok for presentation if "all_current" holds;
wenzelm
parents:
76200
diff
changeset
|
340 |
if (all_current) { |
71669 | 341 |
loop(pending - session_name, running, |
77250
22016642d6af
clarified data structure: use static info from deps, not dynamic results;
wenzelm
parents:
77246
diff
changeset
|
342 |
results + (session_name -> Result(true, output_heap, Some(Process_Result.ok)))) |
76201
9d1819c28f67
clarified conditions: no_build is ok for presentation if "all_current" holds;
wenzelm
parents:
76200
diff
changeset
|
343 |
} |
48678
ff27af15530c
queue ordering by descending outdegree and timeout;
wenzelm
parents:
48676
diff
changeset
|
344 |
else if (no_build) { |
71894 | 345 |
progress.echo_if(verbose, "Skipping " + session_name + " ...") |
71669 | 346 |
loop(pending - session_name, running, |
77250
22016642d6af
clarified data structure: use static info from deps, not dynamic results;
wenzelm
parents:
77246
diff
changeset
|
347 |
results + (session_name -> Result(false, output_heap, Some(Process_Result.error)))) |
48678
ff27af15530c
queue ordering by descending outdegree and timeout;
wenzelm
parents:
48676
diff
changeset
|
348 |
} |
62628 | 349 |
else if (ancestor_results.forall(_.ok) && !progress.stopped) { |
71669 | 350 |
progress.echo((if (do_store) "Building " else "Running ") + session_name + " ...") |
68086
9e1c670301b8
cleanup session output before starting build job;
wenzelm
parents:
67852
diff
changeset
|
351 |
|
71669 | 352 |
store.clean_output(session_name) |
76871
a17f9ff37558
clarified session_sources (again, see also 9d0e6ea7aa68);
wenzelm
parents:
76866
diff
changeset
|
353 |
using(store.open_database(session_name, output = true))( |
a17f9ff37558
clarified session_sources (again, see also 9d0e6ea7aa68);
wenzelm
parents:
76866
diff
changeset
|
354 |
store.init_session_info(_, session_name)) |
68086
9e1c670301b8
cleanup session output before starting build job;
wenzelm
parents:
67852
diff
changeset
|
355 |
|
77237 | 356 |
val session_background = build_deps.background(session_name) |
357 |
val resources = |
|
358 |
new Resources(session_background, log = log, |
|
77246 | 359 |
command_timings = queue.old_command_timings(session_name)) |
77237 | 360 |
|
71601 | 361 |
val numa_node = numa_nodes.next(used_node) |
51220 | 362 |
val job = |
77237 | 363 |
new Build_Job(progress, session_background, store, do_store, |
364 |
resources, session_setup, numa_node) |
|
77206 | 365 |
loop(pending, running + (session_name -> (input_heaps, job)), results) |
48547 | 366 |
} |
367 |
else { |
|
71669 | 368 |
progress.echo(session_name + " CANCELLED") |
369 |
loop(pending - session_name, running, |
|
77250
22016642d6af
clarified data structure: use static info from deps, not dynamic results;
wenzelm
parents:
77246
diff
changeset
|
370 |
results + (session_name -> Result(false, output_heap, None))) |
48547 | 371 |
} |
372 |
case None => sleep(); loop(pending, running, results) |
|
48425 | 373 |
} |
50367 | 374 |
///}}} |
48425 | 375 |
case None => sleep(); loop(pending, running, results) |
48373 | 376 |
} |
51253 | 377 |
} |
48425 | 378 |
} |
379 |
||
51220 | 380 |
|
381 |
/* build results */ |
|
382 |
||
75393 | 383 |
val results = { |
76200 | 384 |
val build_results = |
75948 | 385 |
if (build_deps.is_empty) { |
72673
8ff7a0e394f9
clarified PDF/HTML presentation, based on pdf blobs from session database (e.g. from earlier builds);
wenzelm
parents:
72662
diff
changeset
|
386 |
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
|
387 |
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
|
388 |
} |
8ff7a0e394f9
clarified PDF/HTML presentation, based on pdf blobs from session database (e.g. from earlier builds);
wenzelm
parents:
72662
diff
changeset
|
389 |
else Isabelle_Thread.uninterruptible { loop(queue, Map.empty, Map.empty) } |
48583 | 390 |
|
76901 | 391 |
val sessions_ok: List[String] = |
392 |
(for { |
|
393 |
name <- build_deps.sessions_structure.build_topological_order.iterator |
|
394 |
result <- build_results.get(name) |
|
395 |
if result.ok |
|
396 |
} yield name).toList |
|
397 |
||
76200 | 398 |
val results = |
399 |
(for ((name, result) <- build_results.iterator) |
|
77250
22016642d6af
clarified data structure: use static info from deps, not dynamic results;
wenzelm
parents:
77246
diff
changeset
|
400 |
yield (name, result.process)).toMap |
76196 | 401 |
|
76901 | 402 |
new Results(store, build_deps, sessions_ok, results) |
72673
8ff7a0e394f9
clarified PDF/HTML presentation, based on pdf blobs from session database (e.g. from earlier builds);
wenzelm
parents:
72662
diff
changeset
|
403 |
} |
62641 | 404 |
|
69811
18f61ce86425
clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents:
69777
diff
changeset
|
405 |
if (export_files) { |
76196 | 406 |
for (name <- full_sessions_selection.iterator if results(name).ok) { |
69811
18f61ce86425
clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents:
69777
diff
changeset
|
407 |
val info = results.info(name) |
18f61ce86425
clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents:
69777
diff
changeset
|
408 |
if (info.export_files.nonEmpty) { |
18f61ce86425
clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents:
69777
diff
changeset
|
409 |
progress.echo("Exporting " + info.name + " ...") |
18f61ce86425
clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents:
69777
diff
changeset
|
410 |
for ((dir, prune, pats) <- info.export_files) { |
18f61ce86425
clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents:
69777
diff
changeset
|
411 |
Export.export_files(store, name, info.dir + dir, |
71726
a5fda30edae2
clarified signature: more uniform treatment of stopped/interrupted state;
wenzelm
parents:
71718
diff
changeset
|
412 |
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
|
413 |
export_prune = prune, |
18f61ce86425
clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents:
69777
diff
changeset
|
414 |
export_patterns = pats) |
18f61ce86425
clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents:
69777
diff
changeset
|
415 |
} |
18f61ce86425
clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents:
69777
diff
changeset
|
416 |
} |
18f61ce86425
clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents:
69777
diff
changeset
|
417 |
} |
18f61ce86425
clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents:
69777
diff
changeset
|
418 |
} |
18f61ce86425
clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents:
69777
diff
changeset
|
419 |
|
76901 | 420 |
val presentation_sessions = |
421 |
results.sessions_ok.filter(name => browser_info.enabled(results.info(name))) |
|
76230 | 422 |
if (presentation_sessions.nonEmpty && !progress.stopped) { |
423 |
Browser_Info.build(browser_info, results.store, results.deps, presentation_sessions, |
|
76198
fb4215da4919
clarified presentation_sessions: work with partial results;
wenzelm
parents:
76197
diff
changeset
|
424 |
progress = progress, verbose = verbose) |
fb4215da4919
clarified presentation_sessions: work with partial results;
wenzelm
parents:
76197
diff
changeset
|
425 |
} |
fb4215da4919
clarified presentation_sessions: work with partial results;
wenzelm
parents:
76197
diff
changeset
|
426 |
|
76196 | 427 |
if (!results.ok && (verbose || !no_build)) { |
76199 | 428 |
progress.echo("Unfinished session(s): " + commas(results.unfinished)) |
62641 | 429 |
} |
430 |
||
431 |
results |
|
48341 | 432 |
} |
433 |
||
434 |
||
62833 | 435 |
/* Isabelle tool wrapper */ |
48341 | 436 |
|
72763 | 437 |
val isabelle_tool = Isabelle_Tool("build", "build and manage Isabelle sessions", |
75394 | 438 |
Scala_Project.here, |
439 |
{ args => |
|
440 |
val build_options = Word.explode(Isabelle_System.getenv("ISABELLE_BUILD_OPTIONS")) |
|
62590 | 441 |
|
75394 | 442 |
var base_sessions: List[String] = Nil |
443 |
var select_dirs: List[Path] = Nil |
|
444 |
var numa_shuffling = false |
|
75942
603852abed8f
clarified names: Browser_Info.Config vs. Browser_Info.Context;
wenzelm
parents:
75941
diff
changeset
|
445 |
var browser_info = Browser_Info.Config.none |
75394 | 446 |
var requirements = false |
447 |
var soft_build = false |
|
448 |
var exclude_session_groups: List[String] = Nil |
|
449 |
var all_sessions = false |
|
450 |
var build_heap = false |
|
451 |
var clean_build = false |
|
452 |
var dirs: List[Path] = Nil |
|
453 |
var export_files = false |
|
454 |
var fresh_build = false |
|
455 |
var session_groups: List[String] = Nil |
|
456 |
var max_jobs = 1 |
|
457 |
var check_keywords: Set[String] = Set.empty |
|
458 |
var list_files = false |
|
459 |
var no_build = false |
|
460 |
var options = Options.init(opts = build_options) |
|
461 |
var verbose = false |
|
462 |
var exclude_sessions: List[String] = Nil |
|
62590 | 463 |
|
75394 | 464 |
val getopts = Getopts(""" |
62590 | 465 |
Usage: isabelle build [OPTIONS] [SESSIONS ...] |
466 |
||
467 |
Options are: |
|
66737
2edc0c42c883
option -B for "isabelle build" and "isabelle imports";
wenzelm
parents:
66736
diff
changeset
|
468 |
-B NAME include session NAME and all descendants |
62590 | 469 |
-D DIR include session directory and select its sessions |
64265 | 470 |
-N cyclic shuffling of NUMA CPU nodes (performance tuning) |
72648 | 471 |
-P DIR enable HTML/PDF presentation in directory (":" for default) |
71807 | 472 |
-R refer to requirements of selected sessions |
66745 | 473 |
-S soft build: only observe changes of sources, not heap images |
62590 | 474 |
-X NAME exclude sessions from group NAME and all descendants |
475 |
-a select all sessions |
|
476 |
-b build heap images |
|
477 |
-c clean build |
|
478 |
-d DIR include session directory |
|
69811
18f61ce86425
clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents:
69777
diff
changeset
|
479 |
-e export files from session specification into file-system |
66841 | 480 |
-f fresh build |
62590 | 481 |
-g NAME select session group NAME |
482 |
-j INT maximum number of parallel jobs (default 1) |
|
483 |
-k KEYWORD check theory sources for conflicts with proposed keywords |
|
484 |
-l list session source files |
|
76919 | 485 |
-n no build -- take existing build databases |
62590 | 486 |
-o OPTION override Isabelle system OPTION (via NAME=VAL or NAME) |
487 |
-v verbose |
|
488 |
-x NAME exclude session NAME and all descendants |
|
489 |
||
62596 | 490 |
Build and manage Isabelle sessions, depending on implicit settings: |
491 |
||
73736 | 492 |
""" + Library.indent_lines(2, Build_Log.Settings.show()) + "\n", |
75394 | 493 |
"B:" -> (arg => base_sessions = base_sessions ::: List(arg)), |
494 |
"D:" -> (arg => select_dirs = select_dirs ::: List(Path.explode(arg))), |
|
495 |
"N" -> (_ => numa_shuffling = true), |
|
75942
603852abed8f
clarified names: Browser_Info.Config vs. Browser_Info.Context;
wenzelm
parents:
75941
diff
changeset
|
496 |
"P:" -> (arg => browser_info = Browser_Info.Config.make(arg)), |
75394 | 497 |
"R" -> (_ => requirements = true), |
498 |
"S" -> (_ => soft_build = true), |
|
499 |
"X:" -> (arg => exclude_session_groups = exclude_session_groups ::: List(arg)), |
|
500 |
"a" -> (_ => all_sessions = true), |
|
501 |
"b" -> (_ => build_heap = true), |
|
502 |
"c" -> (_ => clean_build = true), |
|
503 |
"d:" -> (arg => dirs = dirs ::: List(Path.explode(arg))), |
|
504 |
"e" -> (_ => export_files = true), |
|
505 |
"f" -> (_ => fresh_build = true), |
|
506 |
"g:" -> (arg => session_groups = session_groups ::: List(arg)), |
|
507 |
"j:" -> (arg => max_jobs = Value.Int.parse(arg)), |
|
508 |
"k:" -> (arg => check_keywords = check_keywords + arg), |
|
509 |
"l" -> (_ => list_files = true), |
|
510 |
"n" -> (_ => no_build = true), |
|
511 |
"o:" -> (arg => options = options + arg), |
|
512 |
"v" -> (_ => verbose = true), |
|
513 |
"x:" -> (arg => exclude_sessions = exclude_sessions ::: List(arg))) |
|
62590 | 514 |
|
75394 | 515 |
val sessions = getopts(args) |
62590 | 516 |
|
75394 | 517 |
val progress = new Console_Progress(verbose = verbose) |
62590 | 518 |
|
75394 | 519 |
val start_date = Date.now() |
64140 | 520 |
|
75394 | 521 |
if (verbose) { |
522 |
progress.echo( |
|
523 |
"Started at " + Build_Log.print_date(start_date) + |
|
524 |
" (" + Isabelle_System.getenv("ML_IDENTIFIER") + " on " + Isabelle_System.hostname() +")") |
|
525 |
progress.echo(Build_Log.Settings.show() + "\n") |
|
526 |
} |
|
62590 | 527 |
|
75394 | 528 |
val results = |
529 |
progress.interrupt_handler { |
|
530 |
build(options, |
|
531 |
selection = Sessions.Selection( |
|
532 |
requirements = requirements, |
|
533 |
all_sessions = all_sessions, |
|
534 |
base_sessions = base_sessions, |
|
535 |
exclude_session_groups = exclude_session_groups, |
|
536 |
exclude_sessions = exclude_sessions, |
|
537 |
session_groups = session_groups, |
|
538 |
sessions = sessions), |
|
75942
603852abed8f
clarified names: Browser_Info.Config vs. Browser_Info.Context;
wenzelm
parents:
75941
diff
changeset
|
539 |
browser_info = browser_info, |
75394 | 540 |
progress = progress, |
541 |
check_unknown_files = Mercurial.is_repository(Path.ISABELLE_HOME), |
|
542 |
build_heap = build_heap, |
|
543 |
clean_build = clean_build, |
|
544 |
dirs = dirs, |
|
545 |
select_dirs = select_dirs, |
|
546 |
numa_shuffling = NUMA.enabled_warning(progress, numa_shuffling), |
|
547 |
max_jobs = max_jobs, |
|
548 |
list_files = list_files, |
|
549 |
check_keywords = check_keywords, |
|
550 |
fresh_build = fresh_build, |
|
551 |
no_build = no_build, |
|
552 |
soft_build = soft_build, |
|
553 |
verbose = verbose, |
|
554 |
export_files = export_files) |
|
555 |
} |
|
556 |
val end_date = Date.now() |
|
557 |
val elapsed_time = end_date.time - start_date.time |
|
558 |
||
559 |
if (verbose) { |
|
560 |
progress.echo("\nFinished at " + Build_Log.print_date(end_date)) |
|
62833 | 561 |
} |
62590 | 562 |
|
75394 | 563 |
val total_timing = |
564 |
results.sessions.iterator.map(a => results(a).timing).foldLeft(Timing.zero)(_ + _). |
|
565 |
copy(elapsed = elapsed_time) |
|
566 |
progress.echo(total_timing.message_resources) |
|
62590 | 567 |
|
75394 | 568 |
sys.exit(results.rc) |
569 |
}) |
|
68305 | 570 |
|
571 |
||
572 |
/* build logic image */ |
|
573 |
||
574 |
def build_logic(options: Options, logic: String, |
|
71726
a5fda30edae2
clarified signature: more uniform treatment of stopped/interrupted state;
wenzelm
parents:
71718
diff
changeset
|
575 |
progress: Progress = new Progress, |
68305 | 576 |
build_heap: Boolean = false, |
577 |
dirs: List[Path] = Nil, |
|
70791 | 578 |
fresh: Boolean = false, |
75393 | 579 |
strict: Boolean = false |
580 |
): Int = { |
|
71896
ce06d6456cc8
clarified signature --- fit within limit of 22 arguments;
wenzelm
parents:
71895
diff
changeset
|
581 |
val selection = Sessions.Selection.session(logic) |
69540 | 582 |
val rc = |
71981 | 583 |
if (!fresh && build(options, selection = selection, |
74306 | 584 |
build_heap = build_heap, no_build = true, dirs = dirs).ok) Process_Result.RC.ok |
69540 | 585 |
else { |
586 |
progress.echo("Build started for Isabelle/" + logic + " ...") |
|
71981 | 587 |
Build.build(options, selection = selection, progress = progress, |
588 |
build_heap = build_heap, fresh_build = fresh, dirs = dirs).rc |
|
69540 | 589 |
} |
74306 | 590 |
if (strict && rc != Process_Result.RC.ok) error("Failed to build Isabelle/" + logic) else rc |
68305 | 591 |
} |
48276 | 592 |
} |