author | wenzelm |
Thu, 16 Mar 2023 13:18:25 +0100 | |
changeset 77674 | 488a48453d74 |
parent 77647 | c14db5d67400 |
child 77675 | 9e5f8f6e58a0 |
permissions | -rw-r--r-- |
50686 | 1 |
/* Title: Pure/Tools/build.scala |
48276 | 2 |
Author: Makarius |
57923 | 3 |
Options: :folding=explicit: |
48276 | 4 |
|
77553 | 5 |
Command-line tools to build and manage Isabelle sessions. |
48276 | 6 |
*/ |
7 |
||
8 |
package isabelle |
|
9 |
||
77553 | 10 |
import scala.collection.mutable |
11 |
import scala.util.matching.Regex |
|
12 |
||
48276 | 13 |
|
75393 | 14 |
object Build { |
77553 | 15 |
/** "isabelle build" **/ |
16 |
||
77330
47eb96592aa2
support alternative build engines, via system option "build_engine";
wenzelm
parents:
77326
diff
changeset
|
17 |
/* results */ |
48424 | 18 |
|
77311 | 19 |
object Results { |
20 |
def apply(context: Build_Process.Context, results: Map[String, Process_Result]): Results = |
|
77453 | 21 |
new Results(context.store, context.build_deps, results) |
77311 | 22 |
} |
23 |
||
24 |
class Results private( |
|
76206
769a7cd5a16a
clarified signature: re-use store/cache from build results;
wenzelm
parents:
76202
diff
changeset
|
25 |
val store: Sessions.Store, |
76209 | 26 |
val deps: Sessions.Deps, |
77253
792dad9cb04f
clarified data structure: absorb Option[Process_Result] into Process_Result, e.g. to simplify database storage;
wenzelm
parents:
77252
diff
changeset
|
27 |
results: Map[String, Process_Result] |
76198
fb4215da4919
clarified presentation_sessions: work with partial results;
wenzelm
parents:
76197
diff
changeset
|
28 |
) { |
76206
769a7cd5a16a
clarified signature: re-use store/cache from build results;
wenzelm
parents:
76202
diff
changeset
|
29 |
def cache: Term.Cache = store.cache |
769a7cd5a16a
clarified signature: re-use store/cache from build results;
wenzelm
parents:
76202
diff
changeset
|
30 |
|
77311 | 31 |
def sessions_ok: List[String] = |
32 |
(for { |
|
33 |
name <- deps.sessions_structure.build_topological_order.iterator |
|
34 |
result <- results.get(name) if result.ok |
|
35 |
} yield name).toList |
|
36 |
||
77250
22016642d6af
clarified data structure: use static info from deps, not dynamic results;
wenzelm
parents:
77246
diff
changeset
|
37 |
def info(name: String): Sessions.Info = deps.sessions_structure(name) |
62403 | 38 |
def sessions: Set[String] = results.keySet |
77253
792dad9cb04f
clarified data structure: absorb Option[Process_Result] into Process_Result, e.g. to simplify database storage;
wenzelm
parents:
77252
diff
changeset
|
39 |
def cancelled(name: String): Boolean = !results(name).defined |
792dad9cb04f
clarified data structure: absorb Option[Process_Result] into Process_Result, e.g. to simplify database storage;
wenzelm
parents:
77252
diff
changeset
|
40 |
def apply(name: String): Process_Result = results(name).strict |
792dad9cb04f
clarified data structure: absorb Option[Process_Result] into Process_Result, e.g. to simplify database storage;
wenzelm
parents:
77252
diff
changeset
|
41 |
val rc: Int = results.valuesIterator.map(_.strict.rc).foldLeft(Process_Result.RC.ok)(_ max _) |
74306 | 42 |
def ok: Boolean = rc == Process_Result.RC.ok |
62406 | 43 |
|
76202 | 44 |
def unfinished: List[String] = sessions.iterator.filterNot(apply(_).ok).toList.sorted |
76199 | 45 |
|
62406 | 46 |
override def toString: String = rc.toString |
62403 | 47 |
} |
48 |
||
77330
47eb96592aa2
support alternative build engines, via system option "build_engine";
wenzelm
parents:
77326
diff
changeset
|
49 |
|
47eb96592aa2
support alternative build engines, via system option "build_engine";
wenzelm
parents:
77326
diff
changeset
|
50 |
/* engine */ |
47eb96592aa2
support alternative build engines, via system option "build_engine";
wenzelm
parents:
77326
diff
changeset
|
51 |
|
77411
149cc77f7348
clafified signature: simplify object-oriented reuse;
wenzelm
parents:
77384
diff
changeset
|
52 |
class Engine(val name: String) extends Isabelle_System.Service { |
77330
47eb96592aa2
support alternative build engines, via system option "build_engine";
wenzelm
parents:
77326
diff
changeset
|
53 |
override def toString: String = name |
77505 | 54 |
def init(build_context: Build_Process.Context, build_progress: Progress): Build_Process = |
55 |
new Build_Process(build_context, build_progress) |
|
77330
47eb96592aa2
support alternative build engines, via system option "build_engine";
wenzelm
parents:
77326
diff
changeset
|
56 |
} |
47eb96592aa2
support alternative build engines, via system option "build_engine";
wenzelm
parents:
77326
diff
changeset
|
57 |
|
77411
149cc77f7348
clafified signature: simplify object-oriented reuse;
wenzelm
parents:
77384
diff
changeset
|
58 |
class Default_Engine extends Engine("") { override def toString: String = "<default>" } |
77330
47eb96592aa2
support alternative build engines, via system option "build_engine";
wenzelm
parents:
77326
diff
changeset
|
59 |
|
47eb96592aa2
support alternative build engines, via system option "build_engine";
wenzelm
parents:
77326
diff
changeset
|
60 |
lazy val engines: List[Engine] = |
47eb96592aa2
support alternative build engines, via system option "build_engine";
wenzelm
parents:
77326
diff
changeset
|
61 |
Isabelle_System.make_services(classOf[Engine]) |
47eb96592aa2
support alternative build engines, via system option "build_engine";
wenzelm
parents:
77326
diff
changeset
|
62 |
|
47eb96592aa2
support alternative build engines, via system option "build_engine";
wenzelm
parents:
77326
diff
changeset
|
63 |
def get_engine(name: String): Engine = |
47eb96592aa2
support alternative build engines, via system option "build_engine";
wenzelm
parents:
77326
diff
changeset
|
64 |
engines.find(_.name == name).getOrElse(error("Bad build engine " + quote(name))) |
47eb96592aa2
support alternative build engines, via system option "build_engine";
wenzelm
parents:
77326
diff
changeset
|
65 |
|
47eb96592aa2
support alternative build engines, via system option "build_engine";
wenzelm
parents:
77326
diff
changeset
|
66 |
|
77558 | 67 |
/* options */ |
68 |
||
69 |
def hostname(options: Options): String = |
|
70 |
Isabelle_System.hostname(options.string("build_hostname")) |
|
77330
47eb96592aa2
support alternative build engines, via system option "build_engine";
wenzelm
parents:
77326
diff
changeset
|
71 |
|
77559
4ad322ee6025
clarified signature: support all arguments of Sessions.store();
wenzelm
parents:
77558
diff
changeset
|
72 |
def build_init(options: Options, cache: Term.Cache = Term.Cache.make()): Sessions.Store = { |
77674 | 73 |
val build_options = options + "completion_limit=0" + "editor_tracing_messages=0" |
77559
4ad322ee6025
clarified signature: support all arguments of Sessions.store();
wenzelm
parents:
77558
diff
changeset
|
74 |
val store = Sessions.store(build_options, cache = cache) |
77557 | 75 |
|
76 |
Isabelle_Fonts.init() |
|
77 |
||
78 |
store |
|
79 |
} |
|
80 |
||
77558 | 81 |
|
82 |
/* build */ |
|
83 |
||
62641 | 84 |
def build( |
50404
898cac1dad5e
avoid startup within GUI thread -- it is only required later for dialog;
wenzelm
parents:
50367
diff
changeset
|
85 |
options: Options, |
71981 | 86 |
selection: Sessions.Selection = Sessions.Selection.empty, |
75942
603852abed8f
clarified names: Browser_Info.Config vs. Browser_Info.Context;
wenzelm
parents:
75941
diff
changeset
|
87 |
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
|
88 |
progress: Progress = new Progress, |
65832
2fb85623c386
implicitly check for unknown files (not part of a Mercurial repository);
wenzelm
parents:
65831
diff
changeset
|
89 |
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
|
90 |
build_heap: Boolean = false, |
48595 | 91 |
clean_build: Boolean = false, |
56890 | 92 |
dirs: List[Path] = Nil, |
93 |
select_dirs: List[Path] = Nil, |
|
66968
9991671c98aa
allow to augment session context via explicit session infos;
wenzelm
parents:
66962
diff
changeset
|
94 |
infos: List[Sessions.Info] = Nil, |
64265 | 95 |
numa_shuffling: Boolean = false, |
48509 | 96 |
max_jobs: Int = 1, |
48903 | 97 |
list_files: Boolean = false, |
59891
9ce697050455
added isabelle build option -k, for fast off-line checking of theory sources;
wenzelm
parents:
59811
diff
changeset
|
98 |
check_keywords: Set[String] = Set.empty, |
66841 | 99 |
fresh_build: Boolean = false, |
48509 | 100 |
no_build: Boolean = false, |
66745 | 101 |
soft_build: Boolean = false, |
73805
b73777a0c076
allow build session setup, e.g. for protocol handlers;
wenzelm
parents:
73804
diff
changeset
|
102 |
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
|
103 |
augment_options: String => List[Options.Spec] = _ => Nil, |
77559
4ad322ee6025
clarified signature: support all arguments of Sessions.store();
wenzelm
parents:
77558
diff
changeset
|
104 |
session_setup: (String, Session) => Unit = (_, _) => (), |
4ad322ee6025
clarified signature: support all arguments of Sessions.store();
wenzelm
parents:
77558
diff
changeset
|
105 |
cache: Term.Cache = Term.Cache.make() |
75393 | 106 |
): Results = { |
77559
4ad322ee6025
clarified signature: support all arguments of Sessions.store();
wenzelm
parents:
77558
diff
changeset
|
107 |
val store = build_init(options, cache = cache) |
77557 | 108 |
val build_options = store.options |
69369
6ecc85955e04
prefer "Isabelle DejaVu Sans", even for headless batch-build (session_graph.pdf);
wenzelm
parents:
68957
diff
changeset
|
109 |
|
66745 | 110 |
|
111 |
/* session selection and dependencies */ |
|
65422 | 112 |
|
66961 | 113 |
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
|
114 |
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
|
115 |
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
|
116 |
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
|
117 |
|
75948 | 118 |
val build_deps = { |
66745 | 119 |
val deps0 = |
77521
5642de4d225d
clarified signature: manage "verbose" flag via "progress";
wenzelm
parents:
77505
diff
changeset
|
120 |
Sessions.deps(full_sessions.selection(selection), progress = progress, inlined_files = true, |
66962
e1bde71bace6
clarified signature: global_theories is always required;
wenzelm
parents:
66961
diff
changeset
|
121 |
list_files = list_files, check_keywords = check_keywords).check_errors |
66745 | 122 |
|
66841 | 123 |
if (soft_build && !fresh_build) { |
66745 | 124 |
val outdated = |
68204 | 125 |
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
|
126 |
store.try_open_database(name) match { |
68214 | 127 |
case Some(db) => |
68216 | 128 |
using(db)(store.read_build(_, name)) match { |
66745 | 129 |
case Some(build) |
77204 | 130 |
if build.ok && build.sources == deps0.sources_shasum(name) => None |
66745 | 131 |
case _ => Some(name) |
132 |
} |
|
133 |
case None => Some(name) |
|
134 |
}) |
|
68204 | 135 |
|
136 |
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
|
137 |
progress = progress, inlined_files = true).check_errors |
66745 | 138 |
} |
68204 | 139 |
else deps0 |
66745 | 140 |
} |
141 |
||
142 |
||
143 |
/* check unknown files */ |
|
48504
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
wenzelm
parents:
48494
diff
changeset
|
144 |
|
65832
2fb85623c386
implicitly check for unknown files (not part of a Mercurial repository);
wenzelm
parents:
65831
diff
changeset
|
145 |
if (check_unknown_files) { |
2fb85623c386
implicitly check for unknown files (not part of a Mercurial repository);
wenzelm
parents:
65831
diff
changeset
|
146 |
val source_files = |
2fb85623c386
implicitly check for unknown files (not part of a Mercurial repository);
wenzelm
parents:
65831
diff
changeset
|
147 |
(for { |
75948 | 148 |
(_, base) <- build_deps.session_bases.iterator |
75741 | 149 |
(path, _) <- base.session_sources.iterator |
65832
2fb85623c386
implicitly check for unknown files (not part of a Mercurial repository);
wenzelm
parents:
65831
diff
changeset
|
150 |
} yield path).toList |
76670
b04d45bebbc5
discontinued somewhat pointless dependency: avoid illusion of extra accuracy (see also 09fb749d1a1e and 0f750a6dc754);
wenzelm
parents:
76669
diff
changeset
|
151 |
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
|
152 |
case Nil => |
b04d45bebbc5
discontinued somewhat pointless dependency: avoid illusion of extra accuracy (see also 09fb749d1a1e and 0f750a6dc754);
wenzelm
parents:
76669
diff
changeset
|
153 |
case unknown_files => |
b04d45bebbc5
discontinued somewhat pointless dependency: avoid illusion of extra accuracy (see also 09fb749d1a1e and 0f750a6dc754);
wenzelm
parents:
76669
diff
changeset
|
154 |
progress.echo_warning("Unknown files (not part of the underlying Mercurial repository):" + |
76883 | 155 |
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
|
156 |
} |
2fb85623c386
implicitly check for unknown files (not part of a Mercurial repository);
wenzelm
parents:
65831
diff
changeset
|
157 |
} |
2fb85623c386
implicitly check for unknown files (not part of a Mercurial repository);
wenzelm
parents:
65831
diff
changeset
|
158 |
|
51220 | 159 |
|
77257 | 160 |
/* build process and results */ |
51220 | 161 |
|
77315
f34559b24277
clarified signature: move all parameters into Build_Process.Context;
wenzelm
parents:
77311
diff
changeset
|
162 |
val build_context = |
f34559b24277
clarified signature: move all parameters into Build_Process.Context;
wenzelm
parents:
77311
diff
changeset
|
163 |
Build_Process.Context(store, build_deps, progress = progress, |
77558 | 164 |
hostname = hostname(build_options), build_heap = build_heap, |
165 |
numa_shuffling = numa_shuffling, max_jobs = max_jobs, fresh_build = fresh_build, |
|
77579
69d3547206db
clarified signature: prefer Build_Process.Context for parameters;
wenzelm
parents:
77563
diff
changeset
|
166 |
no_build = no_build, session_setup = session_setup, master = true) |
77254
8d34f53871b4
clarified signature: make dynamic Queue from static Context;
wenzelm
parents:
77253
diff
changeset
|
167 |
|
77535 | 168 |
store.prepare_output() |
77536
7c7f1473e51a
clarified database content and prepare/init stages;
wenzelm
parents:
77535
diff
changeset
|
169 |
build_context.prepare_database() |
48373 | 170 |
|
48595 | 171 |
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
|
172 |
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
|
173 |
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
|
174 |
if (relevant) { |
8fc4e3d1df86
clarified store.clean_output: cleanup user_output_dir even in system_mode;
wenzelm
parents:
68219
diff
changeset
|
175 |
if (ok) progress.echo("Cleaned " + name) |
8fc4e3d1df86
clarified store.clean_output: cleanup user_output_dir even in system_mode;
wenzelm
parents:
68219
diff
changeset
|
176 |
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
|
177 |
} |
48595 | 178 |
} |
179 |
} |
|
180 |
||
77311 | 181 |
val results = |
182 |
Isabelle_Thread.uninterruptible { |
|
77330
47eb96592aa2
support alternative build engines, via system option "build_engine";
wenzelm
parents:
77326
diff
changeset
|
183 |
val engine = get_engine(build_options.string("build_engine")) |
77505 | 184 |
using(engine.init(build_context, progress)) { build_process => |
77579
69d3547206db
clarified signature: prefer Build_Process.Context for parameters;
wenzelm
parents:
77563
diff
changeset
|
185 |
val res = build_process.run() |
77372 | 186 |
Results(build_context, res) |
187 |
} |
|
77311 | 188 |
} |
62641 | 189 |
|
69811
18f61ce86425
clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents:
69777
diff
changeset
|
190 |
if (export_files) { |
76196 | 191 |
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
|
192 |
val info = results.info(name) |
18f61ce86425
clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents:
69777
diff
changeset
|
193 |
if (info.export_files.nonEmpty) { |
18f61ce86425
clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents:
69777
diff
changeset
|
194 |
progress.echo("Exporting " + info.name + " ...") |
18f61ce86425
clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents:
69777
diff
changeset
|
195 |
for ((dir, prune, pats) <- info.export_files) { |
18f61ce86425
clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents:
69777
diff
changeset
|
196 |
Export.export_files(store, name, info.dir + dir, |
77521
5642de4d225d
clarified signature: manage "verbose" flag via "progress";
wenzelm
parents:
77505
diff
changeset
|
197 |
progress = if (progress.verbose) progress else new Progress, |
69811
18f61ce86425
clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents:
69777
diff
changeset
|
198 |
export_prune = prune, |
18f61ce86425
clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents:
69777
diff
changeset
|
199 |
export_patterns = pats) |
18f61ce86425
clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents:
69777
diff
changeset
|
200 |
} |
18f61ce86425
clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents:
69777
diff
changeset
|
201 |
} |
18f61ce86425
clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents:
69777
diff
changeset
|
202 |
} |
18f61ce86425
clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents:
69777
diff
changeset
|
203 |
} |
18f61ce86425
clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents:
69777
diff
changeset
|
204 |
|
76901 | 205 |
val presentation_sessions = |
206 |
results.sessions_ok.filter(name => browser_info.enabled(results.info(name))) |
|
76230 | 207 |
if (presentation_sessions.nonEmpty && !progress.stopped) { |
208 |
Browser_Info.build(browser_info, results.store, results.deps, presentation_sessions, |
|
77521
5642de4d225d
clarified signature: manage "verbose" flag via "progress";
wenzelm
parents:
77505
diff
changeset
|
209 |
progress = progress) |
76198
fb4215da4919
clarified presentation_sessions: work with partial results;
wenzelm
parents:
76197
diff
changeset
|
210 |
} |
fb4215da4919
clarified presentation_sessions: work with partial results;
wenzelm
parents:
76197
diff
changeset
|
211 |
|
77521
5642de4d225d
clarified signature: manage "verbose" flag via "progress";
wenzelm
parents:
77505
diff
changeset
|
212 |
if (!results.ok && (progress.verbose || !no_build)) { |
76199 | 213 |
progress.echo("Unfinished session(s): " + commas(results.unfinished)) |
62641 | 214 |
} |
215 |
||
216 |
results |
|
48341 | 217 |
} |
218 |
||
219 |
||
77555 | 220 |
/* build logic image */ |
221 |
||
222 |
def build_logic(options: Options, logic: String, |
|
223 |
progress: Progress = new Progress, |
|
224 |
build_heap: Boolean = false, |
|
225 |
dirs: List[Path] = Nil, |
|
226 |
fresh: Boolean = false, |
|
227 |
strict: Boolean = false |
|
228 |
): Int = { |
|
229 |
val selection = Sessions.Selection.session(logic) |
|
230 |
val rc = |
|
231 |
if (!fresh && build(options, selection = selection, |
|
232 |
build_heap = build_heap, no_build = true, dirs = dirs).ok) Process_Result.RC.ok |
|
233 |
else { |
|
234 |
progress.echo("Build started for Isabelle/" + logic + " ...") |
|
235 |
build(options, selection = selection, progress = progress, |
|
236 |
build_heap = build_heap, fresh_build = fresh, dirs = dirs).rc |
|
237 |
} |
|
238 |
if (strict && rc != Process_Result.RC.ok) error("Failed to build Isabelle/" + logic) else rc |
|
239 |
} |
|
240 |
||
241 |
||
77553 | 242 |
/* command-line wrapper */ |
48341 | 243 |
|
77553 | 244 |
val isabelle_tool1 = Isabelle_Tool("build", "build and manage Isabelle sessions", |
75394 | 245 |
Scala_Project.here, |
246 |
{ args => |
|
247 |
var base_sessions: List[String] = Nil |
|
248 |
var select_dirs: List[Path] = Nil |
|
249 |
var numa_shuffling = false |
|
75942
603852abed8f
clarified names: Browser_Info.Config vs. Browser_Info.Context;
wenzelm
parents:
75941
diff
changeset
|
250 |
var browser_info = Browser_Info.Config.none |
75394 | 251 |
var requirements = false |
252 |
var soft_build = false |
|
253 |
var exclude_session_groups: List[String] = Nil |
|
254 |
var all_sessions = false |
|
255 |
var build_heap = false |
|
256 |
var clean_build = false |
|
257 |
var dirs: List[Path] = Nil |
|
258 |
var export_files = false |
|
259 |
var fresh_build = false |
|
260 |
var session_groups: List[String] = Nil |
|
261 |
var max_jobs = 1 |
|
262 |
var check_keywords: Set[String] = Set.empty |
|
263 |
var list_files = false |
|
264 |
var no_build = false |
|
77628 | 265 |
var options = Options.init(specs = Options.Spec.ISABELLE_BUILD_OPTIONS) |
75394 | 266 |
var verbose = false |
267 |
var exclude_sessions: List[String] = Nil |
|
62590 | 268 |
|
75394 | 269 |
val getopts = Getopts(""" |
62590 | 270 |
Usage: isabelle build [OPTIONS] [SESSIONS ...] |
271 |
||
272 |
Options are: |
|
66737
2edc0c42c883
option -B for "isabelle build" and "isabelle imports";
wenzelm
parents:
66736
diff
changeset
|
273 |
-B NAME include session NAME and all descendants |
62590 | 274 |
-D DIR include session directory and select its sessions |
64265 | 275 |
-N cyclic shuffling of NUMA CPU nodes (performance tuning) |
72648 | 276 |
-P DIR enable HTML/PDF presentation in directory (":" for default) |
71807 | 277 |
-R refer to requirements of selected sessions |
66745 | 278 |
-S soft build: only observe changes of sources, not heap images |
62590 | 279 |
-X NAME exclude sessions from group NAME and all descendants |
280 |
-a select all sessions |
|
281 |
-b build heap images |
|
282 |
-c clean build |
|
283 |
-d DIR include session directory |
|
69811
18f61ce86425
clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents:
69777
diff
changeset
|
284 |
-e export files from session specification into file-system |
66841 | 285 |
-f fresh build |
62590 | 286 |
-g NAME select session group NAME |
287 |
-j INT maximum number of parallel jobs (default 1) |
|
288 |
-k KEYWORD check theory sources for conflicts with proposed keywords |
|
289 |
-l list session source files |
|
77554
4465d9dff448
clarified terminology of "session build database", while "build database" is the one underlying Build_Process;
wenzelm
parents:
77553
diff
changeset
|
290 |
-n no build -- take existing session build databases |
62590 | 291 |
-o OPTION override Isabelle system OPTION (via NAME=VAL or NAME) |
292 |
-v verbose |
|
293 |
-x NAME exclude session NAME and all descendants |
|
294 |
||
77647 | 295 |
Build and manage Isabelle sessions: ML heaps, session databases, documents. |
62596 | 296 |
|
77647 | 297 |
Notable system options: see "isabelle options -l -t build" |
298 |
||
299 |
Notable system settings: |
|
300 |
""" + Library.indent_lines(4, Build_Log.Settings.show()) + "\n", |
|
75394 | 301 |
"B:" -> (arg => base_sessions = base_sessions ::: List(arg)), |
302 |
"D:" -> (arg => select_dirs = select_dirs ::: List(Path.explode(arg))), |
|
303 |
"N" -> (_ => numa_shuffling = true), |
|
75942
603852abed8f
clarified names: Browser_Info.Config vs. Browser_Info.Context;
wenzelm
parents:
75941
diff
changeset
|
304 |
"P:" -> (arg => browser_info = Browser_Info.Config.make(arg)), |
75394 | 305 |
"R" -> (_ => requirements = true), |
306 |
"S" -> (_ => soft_build = true), |
|
307 |
"X:" -> (arg => exclude_session_groups = exclude_session_groups ::: List(arg)), |
|
308 |
"a" -> (_ => all_sessions = true), |
|
309 |
"b" -> (_ => build_heap = true), |
|
310 |
"c" -> (_ => clean_build = true), |
|
311 |
"d:" -> (arg => dirs = dirs ::: List(Path.explode(arg))), |
|
312 |
"e" -> (_ => export_files = true), |
|
313 |
"f" -> (_ => fresh_build = true), |
|
314 |
"g:" -> (arg => session_groups = session_groups ::: List(arg)), |
|
315 |
"j:" -> (arg => max_jobs = Value.Int.parse(arg)), |
|
316 |
"k:" -> (arg => check_keywords = check_keywords + arg), |
|
317 |
"l" -> (_ => list_files = true), |
|
318 |
"n" -> (_ => no_build = true), |
|
319 |
"o:" -> (arg => options = options + arg), |
|
320 |
"v" -> (_ => verbose = true), |
|
321 |
"x:" -> (arg => exclude_sessions = exclude_sessions ::: List(arg))) |
|
62590 | 322 |
|
75394 | 323 |
val sessions = getopts(args) |
62590 | 324 |
|
75394 | 325 |
val progress = new Console_Progress(verbose = verbose) |
62590 | 326 |
|
75394 | 327 |
val start_date = Date.now() |
64140 | 328 |
|
77521
5642de4d225d
clarified signature: manage "verbose" flag via "progress";
wenzelm
parents:
77505
diff
changeset
|
329 |
progress.echo( |
5642de4d225d
clarified signature: manage "verbose" flag via "progress";
wenzelm
parents:
77505
diff
changeset
|
330 |
"Started at " + Build_Log.print_date(start_date) + |
77558 | 331 |
" (" + Isabelle_System.getenv("ML_IDENTIFIER") + " on " + hostname(options) +")", |
77521
5642de4d225d
clarified signature: manage "verbose" flag via "progress";
wenzelm
parents:
77505
diff
changeset
|
332 |
verbose = true) |
5642de4d225d
clarified signature: manage "verbose" flag via "progress";
wenzelm
parents:
77505
diff
changeset
|
333 |
progress.echo(Build_Log.Settings.show() + "\n", verbose = true) |
62590 | 334 |
|
75394 | 335 |
val results = |
336 |
progress.interrupt_handler { |
|
337 |
build(options, |
|
338 |
selection = Sessions.Selection( |
|
339 |
requirements = requirements, |
|
340 |
all_sessions = all_sessions, |
|
341 |
base_sessions = base_sessions, |
|
342 |
exclude_session_groups = exclude_session_groups, |
|
343 |
exclude_sessions = exclude_sessions, |
|
344 |
session_groups = session_groups, |
|
345 |
sessions = sessions), |
|
75942
603852abed8f
clarified names: Browser_Info.Config vs. Browser_Info.Context;
wenzelm
parents:
75941
diff
changeset
|
346 |
browser_info = browser_info, |
75394 | 347 |
progress = progress, |
348 |
check_unknown_files = Mercurial.is_repository(Path.ISABELLE_HOME), |
|
349 |
build_heap = build_heap, |
|
350 |
clean_build = clean_build, |
|
351 |
dirs = dirs, |
|
352 |
select_dirs = select_dirs, |
|
77477 | 353 |
numa_shuffling = Host.numa_check(progress, numa_shuffling), |
75394 | 354 |
max_jobs = max_jobs, |
355 |
list_files = list_files, |
|
356 |
check_keywords = check_keywords, |
|
357 |
fresh_build = fresh_build, |
|
358 |
no_build = no_build, |
|
359 |
soft_build = soft_build, |
|
360 |
export_files = export_files) |
|
361 |
} |
|
77545 | 362 |
val stop_date = Date.now() |
363 |
val elapsed_time = stop_date.time - start_date.time |
|
75394 | 364 |
|
77545 | 365 |
progress.echo("\nFinished at " + Build_Log.print_date(stop_date), verbose = true) |
62590 | 366 |
|
75394 | 367 |
val total_timing = |
368 |
results.sessions.iterator.map(a => results(a).timing).foldLeft(Timing.zero)(_ + _). |
|
369 |
copy(elapsed = elapsed_time) |
|
370 |
progress.echo(total_timing.message_resources) |
|
62590 | 371 |
|
75394 | 372 |
sys.exit(results.rc) |
373 |
}) |
|
68305 | 374 |
|
375 |
||
77553 | 376 |
|
77557 | 377 |
/** "isabelle build_worker" **/ |
378 |
||
379 |
/* build_worker */ |
|
380 |
||
381 |
def build_worker( |
|
382 |
options: Options, |
|
383 |
build_uuid: String, |
|
384 |
progress: Progress = new Progress, |
|
385 |
dirs: List[Path] = Nil, |
|
386 |
infos: List[Sessions.Info] = Nil, |
|
387 |
numa_shuffling: Boolean = false, |
|
388 |
max_jobs: Int = 1, |
|
77559
4ad322ee6025
clarified signature: support all arguments of Sessions.store();
wenzelm
parents:
77558
diff
changeset
|
389 |
session_setup: (String, Session) => Unit = (_, _) => (), |
4ad322ee6025
clarified signature: support all arguments of Sessions.store();
wenzelm
parents:
77558
diff
changeset
|
390 |
cache: Term.Cache = Term.Cache.make() |
77557 | 391 |
): Results = { |
77559
4ad322ee6025
clarified signature: support all arguments of Sessions.store();
wenzelm
parents:
77558
diff
changeset
|
392 |
val store = build_init(options, cache = cache) |
77557 | 393 |
val build_options = store.options |
394 |
||
395 |
progress.echo("build worker for " + build_uuid) |
|
396 |
progress.echo_warning("FIXME") |
|
397 |
??? |
|
398 |
} |
|
399 |
||
400 |
||
401 |
/* command-line wrapper */ |
|
402 |
||
403 |
val isabelle_tool2 = Isabelle_Tool("build_worker", "external worker for session build process", |
|
404 |
Scala_Project.here, |
|
405 |
{ args => |
|
406 |
var numa_shuffling = false |
|
407 |
var dirs: List[Path] = Nil |
|
408 |
var max_jobs = 1 |
|
77628 | 409 |
var options = Options.init(specs = Options.Spec.ISABELLE_BUILD_OPTIONS) |
77557 | 410 |
var verbose = false |
411 |
var build_uuid = "" |
|
412 |
||
413 |
val getopts = Getopts(""" |
|
414 |
Usage: isabelle build_worker [OPTIONS] ...] |
|
415 |
||
416 |
Options are: |
|
417 |
-N cyclic shuffling of NUMA CPU nodes (performance tuning) |
|
418 |
-U UUID Universally Unique Identifier of the build process |
|
419 |
-d DIR include session directory |
|
420 |
-j INT maximum number of parallel jobs (default 1) |
|
421 |
-o OPTION override Isabelle system OPTION (via NAME=VAL or NAME) |
|
422 |
-v verbose |
|
423 |
||
424 |
Run as external worker for session build process, as identified via |
|
425 |
option -U UUID. |
|
77647 | 426 |
""", |
77557 | 427 |
"N" -> (_ => numa_shuffling = true), |
428 |
"U:" -> (arg => build_uuid = arg), |
|
429 |
"d:" -> (arg => dirs = dirs ::: List(Path.explode(arg))), |
|
430 |
"j:" -> (arg => max_jobs = Value.Int.parse(arg)), |
|
431 |
"o:" -> (arg => options = options + arg), |
|
432 |
"v" -> (_ => verbose = true)) |
|
433 |
||
434 |
val more_args = getopts(args) |
|
435 |
if (more_args.nonEmpty) getopts.usage() |
|
436 |
||
437 |
if (build_uuid.isEmpty) error("Missing UUID for build process (option -U)") |
|
438 |
||
439 |
val progress = new Console_Progress(verbose = verbose) |
|
440 |
||
441 |
val results = |
|
442 |
progress.interrupt_handler { |
|
443 |
build_worker(options, build_uuid, |
|
444 |
progress = progress, |
|
445 |
dirs = dirs, |
|
446 |
numa_shuffling = Host.numa_check(progress, numa_shuffling), |
|
447 |
max_jobs = max_jobs) |
|
448 |
} |
|
449 |
||
450 |
sys.exit(results.rc) |
|
451 |
}) |
|
452 |
||
453 |
||
454 |
||
77563 | 455 |
/** "isabelle build_log" **/ |
77553 | 456 |
|
457 |
/* theory markup/messages from session database */ |
|
458 |
||
459 |
def read_theory( |
|
460 |
theory_context: Export.Theory_Context, |
|
461 |
unicode_symbols: Boolean = false |
|
462 |
): Option[Document.Snapshot] = { |
|
463 |
def decode_bytes(bytes: Bytes): String = |
|
464 |
Symbol.output(unicode_symbols, UTF8.decode_permissive(bytes)) |
|
465 |
||
466 |
def read(name: String): Export.Entry = theory_context(name, permissive = true) |
|
467 |
||
468 |
def read_xml(name: String): XML.Body = |
|
469 |
YXML.parse_body(decode_bytes(read(name).bytes), cache = theory_context.cache) |
|
470 |
||
471 |
def read_source_file(name: String): Sessions.Source_File = |
|
472 |
theory_context.session_context.source_file(name) |
|
473 |
||
474 |
for { |
|
475 |
id <- theory_context.document_id() |
|
476 |
(thy_file, blobs_files) <- theory_context.files(permissive = true) |
|
477 |
} |
|
478 |
yield { |
|
479 |
val master_dir = |
|
480 |
Path.explode(Url.strip_base_name(thy_file).getOrElse( |
|
481 |
error("Cannot determine theory master directory: " + quote(thy_file)))) |
|
482 |
||
483 |
val blobs = |
|
484 |
blobs_files.map { name => |
|
485 |
val path = Path.explode(name) |
|
486 |
val src_path = File.relative_path(master_dir, path).getOrElse(path) |
|
487 |
||
488 |
val file = read_source_file(name) |
|
489 |
val bytes = file.bytes |
|
490 |
val text = decode_bytes(bytes) |
|
491 |
val chunk = Symbol.Text_Chunk(text) |
|
492 |
||
493 |
Command.Blob(Document.Node.Name(name), src_path, Some((file.digest, chunk))) -> |
|
494 |
Document.Blobs.Item(bytes, text, chunk, changed = false) |
|
495 |
} |
|
496 |
||
497 |
val thy_source = decode_bytes(read_source_file(thy_file).bytes) |
|
498 |
val thy_xml = read_xml(Export.MARKUP) |
|
499 |
val blobs_xml = |
|
500 |
for (i <- (1 to blobs.length).toList) |
|
501 |
yield read_xml(Export.MARKUP + i) |
|
502 |
||
503 |
val markups_index = Command.Markup_Index.make(blobs.map(_._1)) |
|
504 |
val markups = |
|
505 |
Command.Markups.make( |
|
506 |
for ((index, xml) <- markups_index.zip(thy_xml :: blobs_xml)) |
|
507 |
yield index -> Markup_Tree.from_XML(xml)) |
|
508 |
||
509 |
val results = |
|
510 |
Command.Results.make( |
|
511 |
for (elem @ XML.Elem(Markup(_, Markup.Serial(i)), _) <- read_xml(Export.MESSAGES)) |
|
512 |
yield i -> elem) |
|
513 |
||
514 |
val command = |
|
515 |
Command.unparsed(thy_source, theory = true, id = id, |
|
516 |
node_name = Document.Node.Name(thy_file, theory = theory_context.theory), |
|
517 |
blobs_info = Command.Blobs_Info.make(blobs), |
|
518 |
markups = markups, results = results) |
|
519 |
||
520 |
val doc_blobs = Document.Blobs.make(blobs) |
|
521 |
||
522 |
Document.State.init.snippet(command, doc_blobs) |
|
523 |
} |
|
524 |
} |
|
525 |
||
526 |
||
527 |
/* print messages */ |
|
528 |
||
529 |
def print_log( |
|
530 |
options: Options, |
|
531 |
sessions: List[String], |
|
532 |
theories: List[String] = Nil, |
|
533 |
message_head: List[Regex] = Nil, |
|
534 |
message_body: List[Regex] = Nil, |
|
535 |
progress: Progress = new Progress, |
|
536 |
margin: Double = Pretty.default_margin, |
|
537 |
breakgain: Double = Pretty.default_breakgain, |
|
538 |
metric: Pretty.Metric = Symbol.Metric, |
|
539 |
unicode_symbols: Boolean = false |
|
540 |
): Unit = { |
|
541 |
val store = Sessions.store(options) |
|
542 |
val session = new Session(options, Resources.bootstrap) |
|
543 |
||
544 |
def check(filter: List[Regex], make_string: => String): Boolean = |
|
545 |
filter.isEmpty || { |
|
546 |
val s = Output.clean_yxml(make_string) |
|
547 |
filter.forall(r => r.findFirstIn(Output.clean_yxml(s)).nonEmpty) |
|
548 |
} |
|
549 |
||
550 |
def print(session_name: String): Unit = { |
|
551 |
using(Export.open_session_context0(store, session_name)) { session_context => |
|
552 |
val result = |
|
553 |
for { |
|
554 |
db <- session_context.session_db() |
|
555 |
theories = store.read_theories(db, session_name) |
|
556 |
errors = store.read_errors(db, session_name) |
|
557 |
info <- store.read_build(db, session_name) |
|
558 |
} yield (theories, errors, info.return_code) |
|
559 |
result match { |
|
560 |
case None => store.error_database(session_name) |
|
561 |
case Some((used_theories, errors, rc)) => |
|
562 |
theories.filterNot(used_theories.toSet) match { |
|
563 |
case Nil => |
|
564 |
case bad => error("Unknown theories " + commas_quote(bad)) |
|
565 |
} |
|
566 |
val print_theories = |
|
567 |
if (theories.isEmpty) used_theories else used_theories.filter(theories.toSet) |
|
568 |
||
569 |
for (thy <- print_theories) { |
|
570 |
val thy_heading = "\nTheory " + quote(thy) + " (in " + session_name + ")" + ":" |
|
571 |
||
572 |
Build_Job.read_theory(session_context.theory(thy), unicode_symbols = unicode_symbols) match { |
|
573 |
case None => progress.echo(thy_heading + " MISSING") |
|
574 |
case Some(snapshot) => |
|
575 |
val rendering = new Rendering(snapshot, options, session) |
|
576 |
val messages = |
|
577 |
rendering.text_messages(Text.Range.full) |
|
578 |
.filter(message => progress.verbose || Protocol.is_exported(message.info)) |
|
579 |
if (messages.nonEmpty) { |
|
580 |
val line_document = Line.Document(snapshot.node.source) |
|
581 |
val buffer = new mutable.ListBuffer[String] |
|
582 |
for (Text.Info(range, elem) <- messages) { |
|
583 |
val line = line_document.position(range.start).line1 |
|
584 |
val pos = Position.Line_File(line, snapshot.node_name.node) |
|
585 |
def message_text: String = |
|
586 |
Protocol.message_text(elem, heading = true, pos = pos, |
|
587 |
margin = margin, breakgain = breakgain, metric = metric) |
|
588 |
val ok = |
|
589 |
check(message_head, Protocol.message_heading(elem, pos)) && |
|
590 |
check(message_body, XML.content(Pretty.unformatted(List(elem)))) |
|
591 |
if (ok) buffer += message_text |
|
592 |
} |
|
593 |
if (buffer.nonEmpty) { |
|
594 |
progress.echo(thy_heading) |
|
595 |
buffer.foreach(progress.echo(_)) |
|
596 |
} |
|
597 |
} |
|
598 |
} |
|
599 |
} |
|
600 |
||
601 |
if (errors.nonEmpty) { |
|
602 |
val msg = Symbol.output(unicode_symbols, cat_lines(errors)) |
|
603 |
progress.echo("\nBuild errors:\n" + Output.error_message_text(msg)) |
|
604 |
} |
|
605 |
if (rc != Process_Result.RC.ok) { |
|
606 |
progress.echo("\n" + Process_Result.RC.print_long(rc)) |
|
607 |
} |
|
608 |
} |
|
609 |
} |
|
610 |
} |
|
611 |
||
612 |
val errors = new mutable.ListBuffer[String] |
|
613 |
for (session_name <- sessions) { |
|
614 |
Exn.interruptible_capture(print(session_name)) match { |
|
615 |
case Exn.Res(_) => |
|
616 |
case Exn.Exn(exn) => errors += Exn.message(exn) |
|
617 |
} |
|
618 |
} |
|
619 |
if (errors.nonEmpty) error(cat_lines(errors.toList)) |
|
620 |
} |
|
621 |
||
622 |
||
623 |
/* command-line wrapper */ |
|
624 |
||
77563 | 625 |
val isabelle_tool3 = Isabelle_Tool("build_log", "print messages from session build database", |
77553 | 626 |
Scala_Project.here, |
627 |
{ args => |
|
628 |
/* arguments */ |
|
629 |
||
630 |
var message_head = List.empty[Regex] |
|
631 |
var message_body = List.empty[Regex] |
|
632 |
var unicode_symbols = false |
|
633 |
var theories: List[String] = Nil |
|
634 |
var margin = Pretty.default_margin |
|
635 |
var options = Options.init() |
|
636 |
var verbose = false |
|
637 |
||
638 |
val getopts = Getopts(""" |
|
77563 | 639 |
Usage: isabelle build_log [OPTIONS] [SESSIONS ...] |
77553 | 640 |
|
641 |
Options are: |
|
642 |
-H REGEX filter messages by matching against head |
|
643 |
-M REGEX filter messages by matching against body |
|
644 |
-T NAME restrict to given theories (multiple options possible) |
|
645 |
-U output Unicode symbols |
|
646 |
-m MARGIN margin for pretty printing (default: """ + margin + """) |
|
647 |
-o OPTION override Isabelle system OPTION (via NAME=VAL or NAME) |
|
648 |
-v print all messages, including information etc. |
|
649 |
||
77554
4465d9dff448
clarified terminology of "session build database", while "build database" is the one underlying Build_Process;
wenzelm
parents:
77553
diff
changeset
|
650 |
Print messages from the session build database of the given sessions, |
4465d9dff448
clarified terminology of "session build database", while "build database" is the one underlying Build_Process;
wenzelm
parents:
77553
diff
changeset
|
651 |
without any checks against current sources nor session structure: results |
4465d9dff448
clarified terminology of "session build database", while "build database" is the one underlying Build_Process;
wenzelm
parents:
77553
diff
changeset
|
652 |
from old sessions or failed builds can be printed as well. |
77553 | 653 |
|
654 |
Multiple options -H and -M are conjunctive: all given patterns need to |
|
655 |
match. Patterns match any substring, but ^ or $ may be used to match the |
|
656 |
start or end explicitly. |
|
657 |
""", |
|
658 |
"H:" -> (arg => message_head = message_head ::: List(arg.r)), |
|
659 |
"M:" -> (arg => message_body = message_body ::: List(arg.r)), |
|
660 |
"T:" -> (arg => theories = theories ::: List(arg)), |
|
661 |
"U" -> (_ => unicode_symbols = true), |
|
662 |
"m:" -> (arg => margin = Value.Double.parse(arg)), |
|
663 |
"o:" -> (arg => options = options + arg), |
|
664 |
"v" -> (_ => verbose = true)) |
|
665 |
||
666 |
val sessions = getopts(args) |
|
667 |
||
668 |
val progress = new Console_Progress(verbose = verbose) |
|
669 |
||
670 |
if (sessions.isEmpty) progress.echo_warning("No sessions to print") |
|
671 |
else { |
|
672 |
print_log(options, sessions, theories = theories, message_head = message_head, |
|
673 |
message_body = message_body, margin = margin, progress = progress, |
|
674 |
unicode_symbols = unicode_symbols) |
|
675 |
} |
|
676 |
}) |
|
48276 | 677 |
} |