author | wenzelm |
Mon, 25 Oct 2021 17:26:27 +0200 | |
changeset 74576 | 0b43d42cfde7 |
parent 74306 | a117c076aa22 |
child 74657 | 9fcf80ceb863 |
permissions | -rw-r--r-- |
72662 | 1 |
/* Title: Pure/Tools/build_job.scala |
2 |
Author: Makarius |
|
3 |
||
4 |
Build job running prover process, with rudimentary PIDE session. |
|
5 |
*/ |
|
6 |
||
7 |
package isabelle |
|
8 |
||
9 |
||
73897 | 10 |
import java.util.HashMap |
11 |
||
72662 | 12 |
import scala.collection.mutable |
13 |
||
14 |
||
72848
d5d0e36eda16
read theory with PIDE markup from session database;
wenzelm
parents:
72844
diff
changeset
|
15 |
object Build_Job |
d5d0e36eda16
read theory with PIDE markup from session database;
wenzelm
parents:
72844
diff
changeset
|
16 |
{ |
72854 | 17 |
/* theory markup/messages from database */ |
18 |
||
72848
d5d0e36eda16
read theory with PIDE markup from session database;
wenzelm
parents:
72844
diff
changeset
|
19 |
def read_theory( |
72857 | 20 |
db_context: Sessions.Database_Context, |
21 |
resources: Resources, |
|
22 |
session: String, |
|
72867 | 23 |
theory: String, |
24 |
unicode_symbols: Boolean = false): Option[Command] = |
|
72848
d5d0e36eda16
read theory with PIDE markup from session database;
wenzelm
parents:
72844
diff
changeset
|
25 |
{ |
d5d0e36eda16
read theory with PIDE markup from session database;
wenzelm
parents:
72844
diff
changeset
|
26 |
def read(name: String): Export.Entry = |
72854 | 27 |
db_context.get_export(List(session), theory, name) |
72848
d5d0e36eda16
read theory with PIDE markup from session database;
wenzelm
parents:
72844
diff
changeset
|
28 |
|
d5d0e36eda16
read theory with PIDE markup from session database;
wenzelm
parents:
72844
diff
changeset
|
29 |
def read_xml(name: String): XML.Body = |
73033 | 30 |
YXML.parse_body( |
31 |
Symbol.output(unicode_symbols, UTF8.decode_permissive(read(name).uncompressed)), |
|
32 |
cache = db_context.cache) |
|
72848
d5d0e36eda16
read theory with PIDE markup from session database;
wenzelm
parents:
72844
diff
changeset
|
33 |
|
d5d0e36eda16
read theory with PIDE markup from session database;
wenzelm
parents:
72844
diff
changeset
|
34 |
(read(Export.DOCUMENT_ID).text, split_lines(read(Export.FILES).text)) match { |
d5d0e36eda16
read theory with PIDE markup from session database;
wenzelm
parents:
72844
diff
changeset
|
35 |
case (Value.Long(id), thy_file :: blobs_files) => |
72964 | 36 |
val node_name = resources.file_node(Path.explode(thy_file), theory = theory) |
72848
d5d0e36eda16
read theory with PIDE markup from session database;
wenzelm
parents:
72844
diff
changeset
|
37 |
|
d5d0e36eda16
read theory with PIDE markup from session database;
wenzelm
parents:
72844
diff
changeset
|
38 |
val results = |
d5d0e36eda16
read theory with PIDE markup from session database;
wenzelm
parents:
72844
diff
changeset
|
39 |
Command.Results.make( |
72871 | 40 |
for (elem @ XML.Elem(Markup(_, Markup.Serial(i)), _) <- read_xml(Export.MESSAGES)) |
41 |
yield i -> elem) |
|
72848
d5d0e36eda16
read theory with PIDE markup from session database;
wenzelm
parents:
72844
diff
changeset
|
42 |
|
72865
ebf72a3b8daa
clarified file sources: take from build database instead of file-system;
wenzelm
parents:
72864
diff
changeset
|
43 |
val blobs = |
ebf72a3b8daa
clarified file sources: take from build database instead of file-system;
wenzelm
parents:
72864
diff
changeset
|
44 |
blobs_files.map(file => |
ebf72a3b8daa
clarified file sources: take from build database instead of file-system;
wenzelm
parents:
72864
diff
changeset
|
45 |
{ |
ebf72a3b8daa
clarified file sources: take from build database instead of file-system;
wenzelm
parents:
72864
diff
changeset
|
46 |
val path = Path.explode(file) |
ebf72a3b8daa
clarified file sources: take from build database instead of file-system;
wenzelm
parents:
72864
diff
changeset
|
47 |
val name = resources.file_node(path) |
72964 | 48 |
val src_path = File.relative_path(node_name.master_dir_path, path).getOrElse(path) |
72865
ebf72a3b8daa
clarified file sources: take from build database instead of file-system;
wenzelm
parents:
72864
diff
changeset
|
49 |
Command.Blob(name, src_path, None) |
ebf72a3b8daa
clarified file sources: take from build database instead of file-system;
wenzelm
parents:
72864
diff
changeset
|
50 |
}) |
72864 | 51 |
val blobs_xml = |
52 |
for (i <- (1 to blobs.length).toList) |
|
72865
ebf72a3b8daa
clarified file sources: take from build database instead of file-system;
wenzelm
parents:
72864
diff
changeset
|
53 |
yield read_xml(Export.MARKUP + i) |
ebf72a3b8daa
clarified file sources: take from build database instead of file-system;
wenzelm
parents:
72864
diff
changeset
|
54 |
|
ebf72a3b8daa
clarified file sources: take from build database instead of file-system;
wenzelm
parents:
72864
diff
changeset
|
55 |
val blobs_info = |
ebf72a3b8daa
clarified file sources: take from build database instead of file-system;
wenzelm
parents:
72864
diff
changeset
|
56 |
Command.Blobs_Info( |
ebf72a3b8daa
clarified file sources: take from build database instead of file-system;
wenzelm
parents:
72864
diff
changeset
|
57 |
for { (Command.Blob(name, src_path, _), xml) <- blobs zip blobs_xml } |
ebf72a3b8daa
clarified file sources: take from build database instead of file-system;
wenzelm
parents:
72864
diff
changeset
|
58 |
yield { |
ebf72a3b8daa
clarified file sources: take from build database instead of file-system;
wenzelm
parents:
72864
diff
changeset
|
59 |
val text = XML.content(xml) |
ebf72a3b8daa
clarified file sources: take from build database instead of file-system;
wenzelm
parents:
72864
diff
changeset
|
60 |
val chunk = Symbol.Text_Chunk(text) |
ebf72a3b8daa
clarified file sources: take from build database instead of file-system;
wenzelm
parents:
72864
diff
changeset
|
61 |
val digest = SHA1.digest(Symbol.encode(text)) |
ebf72a3b8daa
clarified file sources: take from build database instead of file-system;
wenzelm
parents:
72864
diff
changeset
|
62 |
Exn.Res(Command.Blob(name, src_path, Some((digest, chunk)))) |
ebf72a3b8daa
clarified file sources: take from build database instead of file-system;
wenzelm
parents:
72864
diff
changeset
|
63 |
}) |
ebf72a3b8daa
clarified file sources: take from build database instead of file-system;
wenzelm
parents:
72864
diff
changeset
|
64 |
|
ebf72a3b8daa
clarified file sources: take from build database instead of file-system;
wenzelm
parents:
72864
diff
changeset
|
65 |
val thy_xml = read_xml(Export.MARKUP) |
ebf72a3b8daa
clarified file sources: take from build database instead of file-system;
wenzelm
parents:
72864
diff
changeset
|
66 |
val thy_source = XML.content(thy_xml) |
72864 | 67 |
|
68 |
val markups_index = |
|
72848
d5d0e36eda16
read theory with PIDE markup from session database;
wenzelm
parents:
72844
diff
changeset
|
69 |
Command.Markup_Index.markup :: blobs.map(Command.Markup_Index.blob) |
d5d0e36eda16
read theory with PIDE markup from session database;
wenzelm
parents:
72844
diff
changeset
|
70 |
val markups = |
d5d0e36eda16
read theory with PIDE markup from session database;
wenzelm
parents:
72844
diff
changeset
|
71 |
Command.Markups.make( |
72864 | 72 |
for ((index, xml) <- markups_index.zip(thy_xml :: blobs_xml)) |
73 |
yield index -> Markup_Tree.from_XML(xml)) |
|
72848
d5d0e36eda16
read theory with PIDE markup from session database;
wenzelm
parents:
72844
diff
changeset
|
74 |
|
72853
d0038b553e0e
clarified signature: name according to db model without Sessions.Structure/Deps;
wenzelm
parents:
72849
diff
changeset
|
75 |
val command = |
d0038b553e0e
clarified signature: name according to db model without Sessions.Structure/Deps;
wenzelm
parents:
72849
diff
changeset
|
76 |
Command.unparsed(thy_source, theory = true, id = id, node_name = node_name, |
d0038b553e0e
clarified signature: name according to db model without Sessions.Structure/Deps;
wenzelm
parents:
72849
diff
changeset
|
77 |
blobs_info = blobs_info, results = results, markups = markups) |
d0038b553e0e
clarified signature: name according to db model without Sessions.Structure/Deps;
wenzelm
parents:
72849
diff
changeset
|
78 |
Some(command) |
d0038b553e0e
clarified signature: name according to db model without Sessions.Structure/Deps;
wenzelm
parents:
72849
diff
changeset
|
79 |
case _ => None |
72848
d5d0e36eda16
read theory with PIDE markup from session database;
wenzelm
parents:
72844
diff
changeset
|
80 |
} |
d5d0e36eda16
read theory with PIDE markup from session database;
wenzelm
parents:
72844
diff
changeset
|
81 |
} |
72858
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
82 |
|
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
83 |
|
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
84 |
/* print messages */ |
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
85 |
|
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
86 |
def print_log( |
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
87 |
options: Options, |
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
88 |
session_name: String, |
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
89 |
theories: List[String] = Nil, |
72878 | 90 |
verbose: Boolean = false, |
72858
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
91 |
progress: Progress = new Progress, |
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
92 |
margin: Double = Pretty.default_margin, |
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
93 |
breakgain: Double = Pretty.default_breakgain, |
72873 | 94 |
metric: Pretty.Metric = Symbol.Metric, |
73340 | 95 |
unicode_symbols: Boolean = false): Unit = |
72858
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
96 |
{ |
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
97 |
val store = Sessions.store(options) |
72962 | 98 |
val resources = Resources.empty |
72858
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
99 |
val session = new Session(options, resources) |
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
100 |
|
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
101 |
using(store.open_database_context())(db_context => |
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
102 |
{ |
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
103 |
val result = |
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
104 |
db_context.input_database(session_name)((db, _) => |
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
105 |
{ |
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
106 |
val theories = store.read_theories(db, session_name) |
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
107 |
val errors = store.read_errors(db, session_name) |
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
108 |
store.read_build(db, session_name).map(info => (theories, errors, info.return_code)) |
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
109 |
}) |
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
110 |
result match { |
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
111 |
case None => error("Missing build database for session " + quote(session_name)) |
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
112 |
case Some((used_theories, errors, rc)) => |
73835 | 113 |
theories.filterNot(used_theories.toSet) match { |
114 |
case Nil => |
|
115 |
case bad => error("Unknown theories " + commas_quote(bad)) |
|
116 |
} |
|
72858
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
117 |
val print_theories = |
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
118 |
if (theories.isEmpty) used_theories else used_theories.filter(theories.toSet) |
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
119 |
for (thy <- print_theories) { |
72868 | 120 |
val thy_heading = "\nTheory " + quote(thy) + ":" |
72867 | 121 |
read_theory(db_context, resources, session_name, thy, unicode_symbols = unicode_symbols) |
122 |
match { |
|
72863 | 123 |
case None => progress.echo(thy_heading + " MISSING") |
72858
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
124 |
case Some(command) => |
72958 | 125 |
val snapshot = Document.State.init.snippet(command) |
72858
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
126 |
val rendering = new Rendering(snapshot, options, session) |
72878 | 127 |
val messages = |
128 |
rendering.text_messages(Text.Range.full) |
|
129 |
.filter(message => verbose || Protocol.is_exported(message.info)) |
|
72863 | 130 |
if (messages.nonEmpty) { |
72875 | 131 |
val line_document = Line.Document(command.source) |
72863 | 132 |
progress.echo(thy_heading) |
72875 | 133 |
for (Text.Info(range, elem) <- messages) { |
134 |
val line = line_document.position(range.start).line1 |
|
135 |
val pos = Position.Line_File(line, command.node_name.node) |
|
72863 | 136 |
progress.echo( |
72875 | 137 |
Protocol.message_text(elem, heading = true, pos = pos, |
138 |
margin = margin, breakgain = breakgain, metric = metric)) |
|
72863 | 139 |
} |
72858
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
140 |
} |
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
141 |
} |
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
142 |
} |
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
143 |
|
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
144 |
if (errors.nonEmpty) { |
72867 | 145 |
val msg = Symbol.output(unicode_symbols, cat_lines(errors)) |
72868 | 146 |
progress.echo("\nBuild errors:\n" + Output.error_message_text(msg)) |
72858
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
147 |
} |
74306 | 148 |
if (rc != Process_Result.RC.ok) { |
149 |
progress.echo("\n" + Process_Result.RC.print_long(rc)) |
|
150 |
} |
|
72858
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
151 |
} |
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
152 |
}) |
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
153 |
} |
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
154 |
|
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
155 |
|
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
156 |
/* Isabelle tool wrapper */ |
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
157 |
|
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
158 |
val isabelle_tool = Isabelle_Tool("log", "print messages from build database", |
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
159 |
Scala_Project.here, args => |
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
160 |
{ |
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
161 |
/* arguments */ |
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
162 |
|
72867 | 163 |
var unicode_symbols = false |
72858
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
164 |
var theories: List[String] = Nil |
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
165 |
var margin = Pretty.default_margin |
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
166 |
var options = Options.init() |
72878 | 167 |
var verbose = false |
72858
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
168 |
|
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
169 |
val getopts = Getopts(""" |
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
170 |
Usage: isabelle log [OPTIONS] SESSION |
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
171 |
|
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
172 |
Options are: |
72876 | 173 |
-T NAME restrict to given theories (multiple options possible) |
72867 | 174 |
-U output Unicode symbols |
72858
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
175 |
-m MARGIN margin for pretty printing (default: """ + margin + """) |
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
176 |
-o OPTION override Isabelle system OPTION (via NAME=VAL or NAME) |
73837
f72335f6a9ed
clarified documentation: tracing messages are not shown here;
wenzelm
parents:
73835
diff
changeset
|
177 |
-v print all messages, including information etc. |
72858
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
178 |
|
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
179 |
Print messages from the build database of the given session, without any |
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
180 |
checks against current sources: results from a failed build can be |
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
181 |
printed as well. |
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
182 |
""", |
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
183 |
"T:" -> (arg => theories = theories ::: List(arg)), |
72867 | 184 |
"U" -> (_ => unicode_symbols = true), |
72858
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
185 |
"m:" -> (arg => margin = Value.Double.parse(arg)), |
72878 | 186 |
"o:" -> (arg => options = options + arg), |
187 |
"v" -> (_ => verbose = true)) |
|
72858
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
188 |
|
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
189 |
val more_args = getopts(args) |
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
190 |
val session_name = |
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
191 |
more_args match { |
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
192 |
case List(session_name) => session_name |
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
193 |
case _ => getopts.usage() |
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
194 |
} |
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
195 |
|
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
196 |
val progress = new Console_Progress() |
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
197 |
|
72878 | 198 |
print_log(options, session_name, theories = theories, verbose = verbose, margin = margin, |
199 |
progress = progress, unicode_symbols = unicode_symbols) |
|
72858
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
200 |
}) |
72848
d5d0e36eda16
read theory with PIDE markup from session database;
wenzelm
parents:
72844
diff
changeset
|
201 |
} |
d5d0e36eda16
read theory with PIDE markup from session database;
wenzelm
parents:
72844
diff
changeset
|
202 |
|
72662 | 203 |
class Build_Job(progress: Progress, |
204 |
session_name: String, |
|
205 |
val info: Sessions.Info, |
|
206 |
deps: Sessions.Deps, |
|
207 |
store: Sessions.Store, |
|
208 |
do_store: Boolean, |
|
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
|
209 |
log: Logger, |
73805
b73777a0c076
allow build session setup, e.g. for protocol handlers;
wenzelm
parents:
73804
diff
changeset
|
210 |
session_setup: (String, Session) => Unit, |
72662 | 211 |
val numa_node: Option[Int], |
212 |
command_timings0: List[Properties.T]) |
|
213 |
{ |
|
214 |
val options: Options = NUMA.policy_options(info.options, numa_node) |
|
215 |
||
216 |
private val sessions_structure = deps.sessions_structure |
|
217 |
||
218 |
private val future_result: Future[Process_Result] = |
|
219 |
Future.thread("build", uninterruptible = true) { |
|
220 |
val parent = info.parent.getOrElse("") |
|
221 |
val base = deps(parent) |
|
72816
ea4f86914cb2
support for PIDE markup for auxiliary files ("blobs");
wenzelm
parents:
72783
diff
changeset
|
222 |
val result_base = deps(session_name) |
72662 | 223 |
|
73897 | 224 |
val env = new HashMap(Isabelle_System.settings()) |
225 |
env.put("ISABELLE_ML_DEBUGGER", options.bool("ML_debugger").toString) |
|
72662 | 226 |
|
227 |
val is_pure = Sessions.is_pure(session_name) |
|
228 |
||
229 |
val use_prelude = if (is_pure) Thy_Header.ml_roots.map(_._1) else Nil |
|
230 |
||
231 |
val eval_store = |
|
232 |
if (do_store) { |
|
233 |
(if (info.theories.nonEmpty) List("ML_Heap.share_common_data ()") else Nil) ::: |
|
234 |
List("ML_Heap.save_child " + |
|
235 |
ML_Syntax.print_string_bytes(File.platform_path(store.output_heap(session_name)))) |
|
236 |
} |
|
237 |
else Nil |
|
238 |
||
73774 | 239 |
val resources = |
240 |
new Resources(sessions_structure, base, log = log, command_timings = command_timings0) |
|
72662 | 241 |
val session = |
242 |
new Session(options, resources) { |
|
73031
f93f0597f4fb
clarified signature: absorb XZ.Cache into XML.Cache;
wenzelm
parents:
72964
diff
changeset
|
243 |
override val cache: XML.Cache = store.cache |
72816
ea4f86914cb2
support for PIDE markup for auxiliary files ("blobs");
wenzelm
parents:
72783
diff
changeset
|
244 |
|
ea4f86914cb2
support for PIDE markup for auxiliary files ("blobs");
wenzelm
parents:
72783
diff
changeset
|
245 |
override def build_blobs_info(name: Document.Node.Name): Command.Blobs_Info = |
ea4f86914cb2
support for PIDE markup for auxiliary files ("blobs");
wenzelm
parents:
72783
diff
changeset
|
246 |
{ |
ea4f86914cb2
support for PIDE markup for auxiliary files ("blobs");
wenzelm
parents:
72783
diff
changeset
|
247 |
result_base.load_commands.get(name.expand) match { |
ea4f86914cb2
support for PIDE markup for auxiliary files ("blobs");
wenzelm
parents:
72783
diff
changeset
|
248 |
case Some(spans) => |
ea4f86914cb2
support for PIDE markup for auxiliary files ("blobs");
wenzelm
parents:
72783
diff
changeset
|
249 |
val syntax = result_base.theory_syntax(name) |
ea4f86914cb2
support for PIDE markup for auxiliary files ("blobs");
wenzelm
parents:
72783
diff
changeset
|
250 |
Command.build_blobs_info(syntax, name, spans) |
ea4f86914cb2
support for PIDE markup for auxiliary files ("blobs");
wenzelm
parents:
72783
diff
changeset
|
251 |
case None => Command.Blobs_Info.none |
ea4f86914cb2
support for PIDE markup for auxiliary files ("blobs");
wenzelm
parents:
72783
diff
changeset
|
252 |
} |
ea4f86914cb2
support for PIDE markup for auxiliary files ("blobs");
wenzelm
parents:
72783
diff
changeset
|
253 |
} |
72662 | 254 |
} |
255 |
||
256 |
object Build_Session_Errors |
|
257 |
{ |
|
258 |
private val promise: Promise[List[String]] = Future.promise |
|
259 |
||
260 |
def result: Exn.Result[List[String]] = promise.join_result |
|
73367 | 261 |
def cancel(): Unit = promise.cancel() |
73340 | 262 |
def apply(errs: List[String]): Unit = |
72662 | 263 |
{ |
264 |
try { promise.fulfill(errs) } |
|
265 |
catch { case _: IllegalStateException => } |
|
266 |
} |
|
267 |
} |
|
268 |
||
269 |
val export_consumer = |
|
74255 | 270 |
Export.consumer(store.open_database(session_name, output = true), store.cache, |
271 |
progress = progress) |
|
72662 | 272 |
|
273 |
val stdout = new StringBuilder(1000) |
|
274 |
val stderr = new StringBuilder(1000) |
|
275 |
val command_timings = new mutable.ListBuffer[Properties.T] |
|
276 |
val theory_timings = new mutable.ListBuffer[Properties.T] |
|
277 |
val session_timings = new mutable.ListBuffer[Properties.T] |
|
278 |
val runtime_statistics = new mutable.ListBuffer[Properties.T] |
|
279 |
val task_statistics = new mutable.ListBuffer[Properties.T] |
|
280 |
||
281 |
def fun( |
|
282 |
name: String, |
|
283 |
acc: mutable.ListBuffer[Properties.T], |
|
284 |
unapply: Properties.T => Option[Properties.T]): (String, Session.Protocol_Function) = |
|
285 |
{ |
|
286 |
name -> ((msg: Prover.Protocol_Output) => |
|
287 |
unapply(msg.properties) match { |
|
288 |
case Some(props) => acc += props; true |
|
289 |
case _ => false |
|
290 |
}) |
|
291 |
} |
|
292 |
||
293 |
session.init_protocol_handler(new Session.Protocol_Handler |
|
294 |
{ |
|
73367 | 295 |
override def exit(): Unit = Build_Session_Errors.cancel() |
72662 | 296 |
|
297 |
private def build_session_finished(msg: Prover.Protocol_Output): Boolean = |
|
298 |
{ |
|
299 |
val (rc, errors) = |
|
300 |
try { |
|
301 |
val (rc, errs) = |
|
302 |
{ |
|
303 |
import XML.Decode._ |
|
304 |
pair(int, list(x => x))(Symbol.decode_yxml(msg.text)) |
|
305 |
} |
|
306 |
val errors = |
|
307 |
for (err <- errs) yield { |
|
308 |
val prt = Protocol_Message.expose_no_reports(err) |
|
309 |
Pretty.string_of(prt, metric = Symbol.Metric) |
|
310 |
} |
|
311 |
(rc, errors) |
|
312 |
} |
|
74306 | 313 |
catch { case ERROR(err) => (Process_Result.RC.failure, List(err)) } |
72662 | 314 |
|
315 |
session.protocol_command("Prover.stop", rc.toString) |
|
316 |
Build_Session_Errors(errors) |
|
317 |
true |
|
318 |
} |
|
319 |
||
320 |
private def loading_theory(msg: Prover.Protocol_Output): Boolean = |
|
321 |
msg.properties match { |
|
72692
22aeec526ffd
support for PIDE markup in batch build (inactive due to pide_reports=false);
wenzelm
parents:
72683
diff
changeset
|
322 |
case Markup.Loading_Theory(Markup.Name(name)) => |
72662 | 323 |
progress.theory(Progress.Theory(name, session = session_name)) |
72692
22aeec526ffd
support for PIDE markup in batch build (inactive due to pide_reports=false);
wenzelm
parents:
72683
diff
changeset
|
324 |
false |
72662 | 325 |
case _ => false |
326 |
} |
|
327 |
||
328 |
private def export(msg: Prover.Protocol_Output): Boolean = |
|
329 |
msg.properties match { |
|
330 |
case Protocol.Export(args) => |
|
73559 | 331 |
export_consumer(session_name, args, msg.chunk) |
72662 | 332 |
true |
333 |
case _ => false |
|
334 |
} |
|
335 |
||
336 |
override val functions = |
|
337 |
List( |
|
338 |
Markup.Build_Session_Finished.name -> build_session_finished, |
|
339 |
Markup.Loading_Theory.name -> loading_theory, |
|
340 |
Markup.EXPORT -> export, |
|
341 |
fun(Markup.Theory_Timing.name, theory_timings, Markup.Theory_Timing.unapply), |
|
342 |
fun(Markup.Session_Timing.name, session_timings, Markup.Session_Timing.unapply), |
|
343 |
fun(Markup.Task_Statistics.name, task_statistics, Markup.Task_Statistics.unapply)) |
|
344 |
}) |
|
345 |
||
72711 | 346 |
session.command_timings += Session.Consumer("command_timings") |
347 |
{ |
|
348 |
case Session.Command_Timing(props) => |
|
349 |
for { |
|
350 |
elapsed <- Markup.Elapsed.unapply(props) |
|
351 |
elapsed_time = Time.seconds(elapsed) |
|
352 |
if elapsed_time.is_relevant && elapsed_time >= options.seconds("command_timing_threshold") |
|
353 |
} command_timings += props.filter(Markup.command_timing_property) |
|
354 |
} |
|
355 |
||
72662 | 356 |
session.runtime_statistics += Session.Consumer("ML_statistics") |
357 |
{ |
|
358 |
case Session.Runtime_Statistics(props) => runtime_statistics += props |
|
359 |
} |
|
360 |
||
72721
79f5e843e5ec
clarified signature: prefer high-level Snapshot over low-level Command.State;
wenzelm
parents:
72717
diff
changeset
|
361 |
session.finished_theories += Session.Consumer[Document.Snapshot]("finished_theories") |
72692
22aeec526ffd
support for PIDE markup in batch build (inactive due to pide_reports=false);
wenzelm
parents:
72683
diff
changeset
|
362 |
{ |
72721
79f5e843e5ec
clarified signature: prefer high-level Snapshot over low-level Command.State;
wenzelm
parents:
72717
diff
changeset
|
363 |
case snapshot => |
74258 | 364 |
if (!progress.stopped) { |
365 |
val rendering = new Rendering(snapshot, options, session) |
|
72730 | 366 |
|
74258 | 367 |
def export(name: String, xml: XML.Body, compress: Boolean = true): Unit = |
368 |
{ |
|
369 |
if (!progress.stopped) { |
|
370 |
val theory_name = snapshot.node_name.theory |
|
371 |
val args = |
|
372 |
Protocol.Export.Args(theory_name = theory_name, name = name, compress = compress) |
|
373 |
val bytes = Bytes(Symbol.encode(YXML.string_of_body(xml))) |
|
374 |
if (!bytes.is_empty) export_consumer(session_name, args, bytes) |
|
375 |
} |
|
376 |
} |
|
377 |
def export_text(name: String, text: String, compress: Boolean = true): Unit = |
|
378 |
export(name, List(XML.Text(text)), compress = compress) |
|
72730 | 379 |
|
74258 | 380 |
for (command <- snapshot.snippet_command) { |
381 |
export_text(Export.DOCUMENT_ID, command.id.toString, compress = false) |
|
382 |
} |
|
72844 | 383 |
|
74258 | 384 |
export_text(Export.FILES, |
385 |
cat_lines(snapshot.node_files.map(_.symbolic.node)), compress = false) |
|
72816
ea4f86914cb2
support for PIDE markup for auxiliary files ("blobs");
wenzelm
parents:
72783
diff
changeset
|
386 |
|
74258 | 387 |
for (((_, xml), i) <- snapshot.xml_markup_blobs().zipWithIndex) { |
388 |
export(Export.MARKUP + (i + 1), xml) |
|
389 |
} |
|
390 |
export(Export.MARKUP, snapshot.xml_markup()) |
|
391 |
export(Export.MESSAGES, snapshot.messages.map(_._1)) |
|
392 |
||
393 |
val citations = Library.distinct(rendering.citations(Text.Range.full).map(_.info)) |
|
394 |
export_text(Export.DOCUMENT_CITATIONS, cat_lines(citations)) |
|
72817
1c378ab75d48
clarified signature, notably access to blob files;
wenzelm
parents:
72816
diff
changeset
|
395 |
} |
72692
22aeec526ffd
support for PIDE markup in batch build (inactive due to pide_reports=false);
wenzelm
parents:
72683
diff
changeset
|
396 |
} |
22aeec526ffd
support for PIDE markup in batch build (inactive due to pide_reports=false);
wenzelm
parents:
72683
diff
changeset
|
397 |
|
72662 | 398 |
session.all_messages += Session.Consumer[Any]("build_session_output") |
399 |
{ |
|
400 |
case msg: Prover.Output => |
|
401 |
val message = msg.message |
|
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
|
402 |
if (msg.is_system) resources.log(Protocol.message_text(message)) |
73774 | 403 |
|
72662 | 404 |
if (msg.is_stdout) { |
405 |
stdout ++= Symbol.encode(XML.content(message)) |
|
406 |
} |
|
407 |
else if (msg.is_stderr) { |
|
408 |
stderr ++= Symbol.encode(XML.content(message)) |
|
409 |
} |
|
410 |
else if (msg.is_exit) { |
|
411 |
val err = |
|
412 |
"Prover terminated" + |
|
413 |
(msg.properties match { |
|
414 |
case Markup.Process_Result(result) => ": " + result.print_rc |
|
415 |
case _ => "" |
|
416 |
}) |
|
417 |
Build_Session_Errors(List(err)) |
|
418 |
} |
|
419 |
case _ => |
|
420 |
} |
|
421 |
||
73805
b73777a0c076
allow build session setup, e.g. for protocol handlers;
wenzelm
parents:
73804
diff
changeset
|
422 |
session_setup(session_name, session) |
b73777a0c076
allow build session setup, e.g. for protocol handlers;
wenzelm
parents:
73804
diff
changeset
|
423 |
|
72662 | 424 |
val eval_main = Command_Line.ML_tool("Isabelle_Process.init_build ()" :: eval_store) |
425 |
||
426 |
val process = |
|
73802 | 427 |
Isabelle_Process.start(session, options, sessions_structure, store, |
72662 | 428 |
logic = parent, raw_ml_system = is_pure, |
429 |
use_prelude = use_prelude, eval_main = eval_main, |
|
430 |
cwd = info.dir.file, env = env) |
|
431 |
||
432 |
val build_errors = |
|
73367 | 433 |
Isabelle_Thread.interrupt_handler(_ => process.terminate()) { |
434 |
Exn.capture { process.await_startup() } match { |
|
72662 | 435 |
case Exn.Res(_) => |
436 |
val resources_yxml = resources.init_session_yxml |
|
74144 | 437 |
val encode_options: XML.Encode.T[Options] = |
438 |
options => session.prover_options(options).encode |
|
72662 | 439 |
val args_yxml = |
440 |
YXML.string_of_body( |
|
441 |
{ |
|
442 |
import XML.Encode._ |
|
74144 | 443 |
pair(string, list(pair(encode_options, list(pair(string, properties)))))( |
72662 | 444 |
(session_name, info.theories)) |
445 |
}) |
|
446 |
session.protocol_command("build_session", resources_yxml, args_yxml) |
|
447 |
Build_Session_Errors.result |
|
448 |
case Exn.Exn(exn) => Exn.Res(List(Exn.message(exn))) |
|
449 |
} |
|
450 |
} |
|
451 |
||
452 |
val process_result = |
|
73367 | 453 |
Isabelle_Thread.interrupt_handler(_ => process.terminate()) { process.await_shutdown() } |
72662 | 454 |
|
72697 | 455 |
session.stop() |
456 |
||
72662 | 457 |
val export_errors = |
458 |
export_consumer.shutdown(close = true).map(Output.error_message_text) |
|
459 |
||
72699 | 460 |
val (document_output, document_errors) = |
72662 | 461 |
try { |
72881 | 462 |
if (build_errors.isInstanceOf[Exn.Res[_]] && process_result.ok && info.documents.nonEmpty) { |
72854 | 463 |
using(store.open_database_context())(db_context => |
72715
2615b8c05337
clarified signature --- avoid repeated open_database on server;
wenzelm
parents:
72711
diff
changeset
|
464 |
{ |
2615b8c05337
clarified signature --- avoid repeated open_database on server;
wenzelm
parents:
72711
diff
changeset
|
465 |
val documents = |
73719 | 466 |
Document_Build.build_documents( |
467 |
Document_Build.context(session_name, deps, db_context, progress = progress), |
|
72715
2615b8c05337
clarified signature --- avoid repeated open_database on server;
wenzelm
parents:
72711
diff
changeset
|
468 |
output_sources = info.document_output, |
73781
0909fd14f8a4
avoid former verbose_latex, which has been renamed to verbose in 52030acb19ac;
wenzelm
parents:
73777
diff
changeset
|
469 |
output_pdf = info.document_output) |
72715
2615b8c05337
clarified signature --- avoid repeated open_database on server;
wenzelm
parents:
72711
diff
changeset
|
470 |
db_context.output_database(session_name)(db => |
2615b8c05337
clarified signature --- avoid repeated open_database on server;
wenzelm
parents:
72711
diff
changeset
|
471 |
documents.foreach(_.write(db, session_name))) |
2615b8c05337
clarified signature --- avoid repeated open_database on server;
wenzelm
parents:
72711
diff
changeset
|
472 |
(documents.flatMap(_.log_lines), Nil) |
2615b8c05337
clarified signature --- avoid repeated open_database on server;
wenzelm
parents:
72711
diff
changeset
|
473 |
}) |
72662 | 474 |
} |
72881 | 475 |
else (Nil, Nil) |
72662 | 476 |
} |
72882 | 477 |
catch { |
73718 | 478 |
case exn: Document_Build.Build_Error => (exn.log_lines, List(exn.message)) |
72882 | 479 |
case Exn.Interrupt.ERROR(msg) => (Nil, List(msg)) |
480 |
} |
|
72662 | 481 |
|
482 |
val result = |
|
483 |
{ |
|
72738
a4d7da18ac5c
store timings for used_theories in canonical order, with reconstructed store.read_theories;
wenzelm
parents:
72730
diff
changeset
|
484 |
val theory_timing = |
a4d7da18ac5c
store timings for used_theories in canonical order, with reconstructed store.read_theories;
wenzelm
parents:
72730
diff
changeset
|
485 |
theory_timings.iterator.map( |
a4d7da18ac5c
store timings for used_theories in canonical order, with reconstructed store.read_theories;
wenzelm
parents:
72730
diff
changeset
|
486 |
{ case props @ Markup.Name(name) => name -> props }).toMap |
a4d7da18ac5c
store timings for used_theories in canonical order, with reconstructed store.read_theories;
wenzelm
parents:
72730
diff
changeset
|
487 |
val used_theory_timings = |
a4d7da18ac5c
store timings for used_theories in canonical order, with reconstructed store.read_theories;
wenzelm
parents:
72730
diff
changeset
|
488 |
for { (name, _) <- deps(session_name).used_theories } |
a4d7da18ac5c
store timings for used_theories in canonical order, with reconstructed store.read_theories;
wenzelm
parents:
72730
diff
changeset
|
489 |
yield theory_timing.getOrElse(name.theory, Markup.Name(name.theory)) |
a4d7da18ac5c
store timings for used_theories in canonical order, with reconstructed store.read_theories;
wenzelm
parents:
72730
diff
changeset
|
490 |
|
72662 | 491 |
val more_output = |
492 |
Library.trim_line(stdout.toString) :: |
|
493 |
command_timings.toList.map(Protocol.Command_Timing_Marker.apply) ::: |
|
72738
a4d7da18ac5c
store timings for used_theories in canonical order, with reconstructed store.read_theories;
wenzelm
parents:
72730
diff
changeset
|
494 |
used_theory_timings.map(Protocol.Theory_Timing_Marker.apply) ::: |
72662 | 495 |
session_timings.toList.map(Protocol.Session_Timing_Marker.apply) ::: |
496 |
runtime_statistics.toList.map(Protocol.ML_Statistics_Marker.apply) ::: |
|
497 |
task_statistics.toList.map(Protocol.Task_Statistics_Marker.apply) ::: |
|
72699 | 498 |
document_output |
72662 | 499 |
|
72726
ec6a27bbdab8
proper return code for more errors (amending d892f6d66402);
wenzelm
parents:
72725
diff
changeset
|
500 |
process_result.output(more_output) |
ec6a27bbdab8
proper return code for more errors (amending d892f6d66402);
wenzelm
parents:
72725
diff
changeset
|
501 |
.error(Library.trim_line(stderr.toString)) |
ec6a27bbdab8
proper return code for more errors (amending d892f6d66402);
wenzelm
parents:
72725
diff
changeset
|
502 |
.errors_rc(export_errors ::: document_errors) |
72662 | 503 |
} |
504 |
||
505 |
build_errors match { |
|
506 |
case Exn.Res(build_errs) => |
|
507 |
val errs = build_errs ::: document_errors |
|
74259
6d48d6ba58df
more robust: progress.stopped means that build has failed;
wenzelm
parents:
74258
diff
changeset
|
508 |
if (errs.nonEmpty) { |
72662 | 509 |
result.error_rc.output( |
510 |
errs.flatMap(s => split_lines(Output.error_message_text(s))) ::: |
|
511 |
errs.map(Protocol.Error_Message_Marker.apply)) |
|
512 |
} |
|
74306 | 513 |
else if (progress.stopped && result.ok) result.copy(rc = Process_Result.RC.interrupt) |
74259
6d48d6ba58df
more robust: progress.stopped means that build has failed;
wenzelm
parents:
74258
diff
changeset
|
514 |
else result |
72662 | 515 |
case Exn.Exn(Exn.Interrupt()) => |
74306 | 516 |
if (result.ok) result.copy(rc = Process_Result.RC.interrupt) |
74259
6d48d6ba58df
more robust: progress.stopped means that build has failed;
wenzelm
parents:
74258
diff
changeset
|
517 |
else result |
72662 | 518 |
case Exn.Exn(exn) => throw exn |
519 |
} |
|
520 |
} |
|
521 |
||
73367 | 522 |
def terminate(): Unit = future_result.cancel() |
72662 | 523 |
def is_finished: Boolean = future_result.is_finished |
524 |
||
525 |
private val timeout_request: Option[Event_Timer.Request] = |
|
526 |
{ |
|
73700
908351c8c0b1
check timeout_ignored as in ML, before applying timeout_scale;
wenzelm
parents:
73559
diff
changeset
|
527 |
if (info.timeout_ignored) None |
908351c8c0b1
check timeout_ignored as in ML, before applying timeout_scale;
wenzelm
parents:
73559
diff
changeset
|
528 |
else Some(Event_Timer.request(Time.now() + info.timeout) { terminate() }) |
72662 | 529 |
} |
530 |
||
531 |
def join: (Process_Result, Option[String]) = |
|
532 |
{ |
|
533 |
val result1 = future_result.join |
|
534 |
||
535 |
val was_timeout = |
|
536 |
timeout_request match { |
|
537 |
case None => false |
|
73367 | 538 |
case Some(request) => !request.cancel() |
72662 | 539 |
} |
540 |
||
541 |
val result2 = |
|
73134
8a8ffe78eee7
clarified return code: re-use SIGALRM for soft timeout;
wenzelm
parents:
73033
diff
changeset
|
542 |
if (result1.ok) result1 |
8a8ffe78eee7
clarified return code: re-use SIGALRM for soft timeout;
wenzelm
parents:
73033
diff
changeset
|
543 |
else if (was_timeout) result1.error(Output.error_message_text("Timeout")).timeout_rc |
8a8ffe78eee7
clarified return code: re-use SIGALRM for soft timeout;
wenzelm
parents:
73033
diff
changeset
|
544 |
else if (result1.interrupted) result1.error(Output.error_message_text("Interrupt")) |
72662 | 545 |
else result1 |
546 |
||
547 |
val heap_digest = |
|
548 |
if (result2.ok && do_store && store.output_heap(session_name).is_file) |
|
549 |
Some(Sessions.write_heap_digest(store.output_heap(session_name))) |
|
550 |
else None |
|
551 |
||
552 |
(result2, heap_digest) |
|
553 |
} |
|
554 |
} |