author | wenzelm |
Mon, 13 Feb 2023 10:39:49 +0100 | |
changeset 77285 | f04672649483 |
parent 77237 | f947e045fa61 |
child 77291 | f7e413e8d269 |
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 |
||
10 |
import scala.collection.mutable |
|
76087 | 11 |
import scala.util.matching.Regex |
72662 | 12 |
|
13 |
||
75393 | 14 |
object Build_Job { |
75778
d18c96b9b955
prefer Export.Context/Session_Context/Theory_Context over Sessions.Database_Context;
wenzelm
parents:
75762
diff
changeset
|
15 |
/* theory markup/messages from session database */ |
72854 | 16 |
|
75778
d18c96b9b955
prefer Export.Context/Session_Context/Theory_Context over Sessions.Database_Context;
wenzelm
parents:
75762
diff
changeset
|
17 |
def read_theory( |
d18c96b9b955
prefer Export.Context/Session_Context/Theory_Context over Sessions.Database_Context;
wenzelm
parents:
75762
diff
changeset
|
18 |
theory_context: Export.Theory_Context, |
d18c96b9b955
prefer Export.Context/Session_Context/Theory_Context over Sessions.Database_Context;
wenzelm
parents:
75762
diff
changeset
|
19 |
unicode_symbols: Boolean = false |
76205 | 20 |
): Option[Document.Snapshot] = { |
76936 | 21 |
def decode_bytes(bytes: Bytes): String = |
22 |
Symbol.output(unicode_symbols, UTF8.decode_permissive(bytes)) |
|
23 |
||
75778
d18c96b9b955
prefer Export.Context/Session_Context/Theory_Context over Sessions.Database_Context;
wenzelm
parents:
75762
diff
changeset
|
24 |
def read(name: String): Export.Entry = theory_context(name, permissive = true) |
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_xml(name: String): XML.Body = |
76936 | 27 |
YXML.parse_body(decode_bytes(read(name).bytes), cache = theory_context.cache) |
72848
d5d0e36eda16
read theory with PIDE markup from session database;
wenzelm
parents:
72844
diff
changeset
|
28 |
|
76912
ca872f20cf5b
clarified session sources: theory and blobs are read from database, instead of physical file-system;
wenzelm
parents:
76911
diff
changeset
|
29 |
def read_source_file(name: String): Sessions.Source_File = |
ca872f20cf5b
clarified session sources: theory and blobs are read from database, instead of physical file-system;
wenzelm
parents:
76911
diff
changeset
|
30 |
theory_context.session_context.source_file(name) |
ca872f20cf5b
clarified session sources: theory and blobs are read from database, instead of physical file-system;
wenzelm
parents:
76911
diff
changeset
|
31 |
|
75733 | 32 |
for { |
75778
d18c96b9b955
prefer Export.Context/Session_Context/Theory_Context over Sessions.Database_Context;
wenzelm
parents:
75762
diff
changeset
|
33 |
id <- theory_context.document_id() |
75903 | 34 |
(thy_file, blobs_files) <- theory_context.files(permissive = true) |
75733 | 35 |
} |
36 |
yield { |
|
76881
b59118d11a46
clarified master_dir: avoid somewhat fragile Document.Node.Name.master_dir_path;
wenzelm
parents:
76879
diff
changeset
|
37 |
val master_dir = |
b59118d11a46
clarified master_dir: avoid somewhat fragile Document.Node.Name.master_dir_path;
wenzelm
parents:
76879
diff
changeset
|
38 |
Path.explode(Url.strip_base_name(thy_file).getOrElse( |
b59118d11a46
clarified master_dir: avoid somewhat fragile Document.Node.Name.master_dir_path;
wenzelm
parents:
76879
diff
changeset
|
39 |
error("Cannot determine theory master directory: " + quote(thy_file)))) |
b59118d11a46
clarified master_dir: avoid somewhat fragile Document.Node.Name.master_dir_path;
wenzelm
parents:
76879
diff
changeset
|
40 |
|
75733 | 41 |
val blobs = |
76912
ca872f20cf5b
clarified session sources: theory and blobs are read from database, instead of physical file-system;
wenzelm
parents:
76911
diff
changeset
|
42 |
blobs_files.map { name => |
ca872f20cf5b
clarified session sources: theory and blobs are read from database, instead of physical file-system;
wenzelm
parents:
76911
diff
changeset
|
43 |
val path = Path.explode(name) |
76881
b59118d11a46
clarified master_dir: avoid somewhat fragile Document.Node.Name.master_dir_path;
wenzelm
parents:
76879
diff
changeset
|
44 |
val src_path = File.relative_path(master_dir, path).getOrElse(path) |
76912
ca872f20cf5b
clarified session sources: theory and blobs are read from database, instead of physical file-system;
wenzelm
parents:
76911
diff
changeset
|
45 |
|
ca872f20cf5b
clarified session sources: theory and blobs are read from database, instead of physical file-system;
wenzelm
parents:
76911
diff
changeset
|
46 |
val file = read_source_file(name) |
ca872f20cf5b
clarified session sources: theory and blobs are read from database, instead of physical file-system;
wenzelm
parents:
76911
diff
changeset
|
47 |
val bytes = file.bytes |
76936 | 48 |
val text = decode_bytes(bytes) |
76912
ca872f20cf5b
clarified session sources: theory and blobs are read from database, instead of physical file-system;
wenzelm
parents:
76911
diff
changeset
|
49 |
val chunk = Symbol.Text_Chunk(text) |
ca872f20cf5b
clarified session sources: theory and blobs are read from database, instead of physical file-system;
wenzelm
parents:
76911
diff
changeset
|
50 |
|
ca872f20cf5b
clarified session sources: theory and blobs are read from database, instead of physical file-system;
wenzelm
parents:
76911
diff
changeset
|
51 |
Command.Blob(Document.Node.Name(name), src_path, Some((file.digest, chunk))) -> |
ca872f20cf5b
clarified session sources: theory and blobs are read from database, instead of physical file-system;
wenzelm
parents:
76911
diff
changeset
|
52 |
Document.Blobs.Item(bytes, text, chunk, changed = false) |
75733 | 53 |
} |
76912
ca872f20cf5b
clarified session sources: theory and blobs are read from database, instead of physical file-system;
wenzelm
parents:
76911
diff
changeset
|
54 |
|
76936 | 55 |
val thy_source = decode_bytes(read_source_file(thy_file).bytes) |
76912
ca872f20cf5b
clarified session sources: theory and blobs are read from database, instead of physical file-system;
wenzelm
parents:
76911
diff
changeset
|
56 |
val thy_xml = read_xml(Export.MARKUP) |
75733 | 57 |
val blobs_xml = |
58 |
for (i <- (1 to blobs.length).toList) |
|
59 |
yield read_xml(Export.MARKUP + i) |
|
72865
ebf72a3b8daa
clarified file sources: take from build database instead of file-system;
wenzelm
parents:
72864
diff
changeset
|
60 |
|
76912
ca872f20cf5b
clarified session sources: theory and blobs are read from database, instead of physical file-system;
wenzelm
parents:
76911
diff
changeset
|
61 |
val markups_index = Command.Markup_Index.make(blobs.map(_._1)) |
75733 | 62 |
val markups = |
63 |
Command.Markups.make( |
|
64 |
for ((index, xml) <- markups_index.zip(thy_xml :: blobs_xml)) |
|
65 |
yield index -> Markup_Tree.from_XML(xml)) |
|
66 |
||
76911 | 67 |
val results = |
68 |
Command.Results.make( |
|
69 |
for (elem @ XML.Elem(Markup(_, Markup.Serial(i)), _) <- read_xml(Export.MESSAGES)) |
|
70 |
yield i -> elem) |
|
71 |
||
76205 | 72 |
val command = |
76881
b59118d11a46
clarified master_dir: avoid somewhat fragile Document.Node.Name.master_dir_path;
wenzelm
parents:
76879
diff
changeset
|
73 |
Command.unparsed(thy_source, theory = true, id = id, |
b59118d11a46
clarified master_dir: avoid somewhat fragile Document.Node.Name.master_dir_path;
wenzelm
parents:
76879
diff
changeset
|
74 |
node_name = Document.Node.Name(thy_file, theory = theory_context.theory), |
76913 | 75 |
blobs_info = Command.Blobs_Info.make(blobs), |
76912
ca872f20cf5b
clarified session sources: theory and blobs are read from database, instead of physical file-system;
wenzelm
parents:
76911
diff
changeset
|
76 |
markups = markups, results = results) |
76205 | 77 |
|
76913 | 78 |
val doc_blobs = Document.Blobs.make(blobs) |
76912
ca872f20cf5b
clarified session sources: theory and blobs are read from database, instead of physical file-system;
wenzelm
parents:
76911
diff
changeset
|
79 |
|
ca872f20cf5b
clarified session sources: theory and blobs are read from database, instead of physical file-system;
wenzelm
parents:
76911
diff
changeset
|
80 |
Document.State.init.snippet(command, doc_blobs) |
72848
d5d0e36eda16
read theory with PIDE markup from session database;
wenzelm
parents:
72844
diff
changeset
|
81 |
} |
d5d0e36eda16
read theory with PIDE markup from session database;
wenzelm
parents:
72844
diff
changeset
|
82 |
} |
72858
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 |
|
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
85 |
/* print messages */ |
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
86 |
|
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
87 |
def print_log( |
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
88 |
options: Options, |
76088
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
89 |
sessions: List[String], |
72858
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
90 |
theories: List[String] = Nil, |
76087 | 91 |
message_head: List[Regex] = Nil, |
92 |
message_body: List[Regex] = Nil, |
|
72878 | 93 |
verbose: Boolean = false, |
72858
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
94 |
progress: Progress = new Progress, |
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
95 |
margin: Double = Pretty.default_margin, |
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
96 |
breakgain: Double = Pretty.default_breakgain, |
72873 | 97 |
metric: Pretty.Metric = Symbol.Metric, |
75393 | 98 |
unicode_symbols: Boolean = false |
99 |
): Unit = { |
|
72858
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
100 |
val store = Sessions.store(options) |
76654 | 101 |
val session = new Session(options, Resources.bootstrap) |
72858
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
102 |
|
76087 | 103 |
def check(filter: List[Regex], make_string: => String): Boolean = |
104 |
filter.isEmpty || { |
|
105 |
val s = Output.clean_yxml(make_string) |
|
106 |
filter.forall(r => r.findFirstIn(Output.clean_yxml(s)).nonEmpty) |
|
107 |
} |
|
108 |
||
76088
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
109 |
def print(session_name: String): Unit = { |
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
110 |
using(Export.open_session_context0(store, session_name)) { session_context => |
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
111 |
val result = |
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
112 |
for { |
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
113 |
db <- session_context.session_db() |
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
114 |
theories = store.read_theories(db, session_name) |
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
115 |
errors = store.read_errors(db, session_name) |
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
116 |
info <- store.read_build(db, session_name) |
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
117 |
} yield (theories, errors, info.return_code) |
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
118 |
result match { |
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
119 |
case None => store.error_database(session_name) |
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
120 |
case Some((used_theories, errors, rc)) => |
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
121 |
theories.filterNot(used_theories.toSet) match { |
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
122 |
case Nil => |
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
123 |
case bad => error("Unknown theories " + commas_quote(bad)) |
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
124 |
} |
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
125 |
val print_theories = |
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
126 |
if (theories.isEmpty) used_theories else used_theories.filter(theories.toSet) |
75778
d18c96b9b955
prefer Export.Context/Session_Context/Theory_Context over Sessions.Database_Context;
wenzelm
parents:
75762
diff
changeset
|
127 |
|
76088
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
128 |
for (thy <- print_theories) { |
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
129 |
val thy_heading = "\nTheory " + quote(thy) + " (in " + session_name + ")" + ":" |
75778
d18c96b9b955
prefer Export.Context/Session_Context/Theory_Context over Sessions.Database_Context;
wenzelm
parents:
75762
diff
changeset
|
130 |
|
76088
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
131 |
read_theory(session_context.theory(thy), unicode_symbols = unicode_symbols) match { |
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
132 |
case None => progress.echo(thy_heading + " MISSING") |
76205 | 133 |
case Some(snapshot) => |
76088
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
134 |
val rendering = new Rendering(snapshot, options, session) |
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
135 |
val messages = |
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
136 |
rendering.text_messages(Text.Range.full) |
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
137 |
.filter(message => verbose || Protocol.is_exported(message.info)) |
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
138 |
if (messages.nonEmpty) { |
76933 | 139 |
val line_document = Line.Document(snapshot.node.source) |
76088
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
140 |
val buffer = new mutable.ListBuffer[String] |
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
141 |
for (Text.Info(range, elem) <- messages) { |
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
142 |
val line = line_document.position(range.start).line1 |
76205 | 143 |
val pos = Position.Line_File(line, snapshot.node_name.node) |
76088
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
144 |
def message_text: String = |
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
145 |
Protocol.message_text(elem, heading = true, pos = pos, |
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
146 |
margin = margin, breakgain = breakgain, metric = metric) |
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
147 |
val ok = |
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
148 |
check(message_head, Protocol.message_heading(elem, pos)) && |
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
149 |
check(message_body, XML.content(Pretty.unformatted(List(elem)))) |
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
150 |
if (ok) buffer += message_text |
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
151 |
} |
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
152 |
if (buffer.nonEmpty) { |
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
153 |
progress.echo(thy_heading) |
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
154 |
buffer.foreach(progress.echo) |
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
155 |
} |
76087 | 156 |
} |
76088
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
157 |
} |
72858
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
158 |
} |
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
159 |
|
76088
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
160 |
if (errors.nonEmpty) { |
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
161 |
val msg = Symbol.output(unicode_symbols, cat_lines(errors)) |
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
162 |
progress.echo("\nBuild errors:\n" + Output.error_message_text(msg)) |
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
163 |
} |
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
164 |
if (rc != Process_Result.RC.ok) { |
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
165 |
progress.echo("\n" + Process_Result.RC.print_long(rc)) |
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
166 |
} |
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
167 |
} |
72858
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
168 |
} |
75394 | 169 |
} |
76088
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
170 |
|
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
171 |
val errors = new mutable.ListBuffer[String] |
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
172 |
for (session_name <- sessions) { |
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
173 |
Exn.interruptible_capture(print(session_name)) match { |
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
174 |
case Exn.Res(_) => |
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
175 |
case Exn.Exn(exn) => errors += Exn.message(exn) |
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
176 |
} |
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
177 |
} |
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
178 |
if (errors.nonEmpty) error(cat_lines(errors.toList)) |
72858
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
179 |
} |
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
180 |
|
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
181 |
|
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
182 |
/* Isabelle tool wrapper */ |
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
183 |
|
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
184 |
val isabelle_tool = Isabelle_Tool("log", "print messages from build database", |
75394 | 185 |
Scala_Project.here, |
186 |
{ args => |
|
187 |
/* arguments */ |
|
72858
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
188 |
|
76087 | 189 |
var message_head = List.empty[Regex] |
190 |
var message_body = List.empty[Regex] |
|
75394 | 191 |
var unicode_symbols = false |
192 |
var theories: List[String] = Nil |
|
193 |
var margin = Pretty.default_margin |
|
194 |
var options = Options.init() |
|
195 |
var verbose = false |
|
72858
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
196 |
|
75394 | 197 |
val getopts = Getopts(""" |
76088
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
198 |
Usage: isabelle log [OPTIONS] [SESSIONS ...] |
72858
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
199 |
|
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
200 |
Options are: |
76087 | 201 |
-H REGEX filter messages by matching against head |
202 |
-M REGEX filter messages by matching against body |
|
72876 | 203 |
-T NAME restrict to given theories (multiple options possible) |
72867 | 204 |
-U output Unicode symbols |
72858
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
205 |
-m MARGIN margin for pretty printing (default: """ + margin + """) |
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
206 |
-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
|
207 |
-v print all messages, including information etc. |
72858
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
208 |
|
76088
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
209 |
Print messages from the build database of the given sessions, without any |
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
210 |
checks against current sources nor session structure: results from old |
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
211 |
sessions or failed builds can be printed as well. |
76087 | 212 |
|
213 |
Multiple options -H and -M are conjunctive: all given patterns need to |
|
76088
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
214 |
match. Patterns match any substring, but ^ or $ may be used to match the |
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
215 |
start or end explicitly. |
72858
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
216 |
""", |
76087 | 217 |
"H:" -> (arg => message_head = message_head ::: List(arg.r)), |
218 |
"M:" -> (arg => message_body = message_body ::: List(arg.r)), |
|
75394 | 219 |
"T:" -> (arg => theories = theories ::: List(arg)), |
220 |
"U" -> (_ => unicode_symbols = true), |
|
221 |
"m:" -> (arg => margin = Value.Double.parse(arg)), |
|
222 |
"o:" -> (arg => options = options + arg), |
|
223 |
"v" -> (_ => verbose = true)) |
|
72858
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
224 |
|
76088
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
225 |
val sessions = getopts(args) |
72858
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
226 |
|
75394 | 227 |
val progress = new Console_Progress() |
72858
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72857
diff
changeset
|
228 |
|
76088
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
229 |
if (sessions.isEmpty) progress.echo_warning("No sessions to print") |
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
230 |
else { |
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
231 |
print_log(options, sessions, theories = theories, message_head = message_head, |
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
232 |
message_body = message_body, verbose = verbose, margin = margin, progress = progress, |
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
233 |
unicode_symbols = unicode_symbols) |
bec8677d0e5b
support multiple sessions, with cumulative errors;
wenzelm
parents:
76087
diff
changeset
|
234 |
} |
75394 | 235 |
}) |
72848
d5d0e36eda16
read theory with PIDE markup from session database;
wenzelm
parents:
72844
diff
changeset
|
236 |
} |
d5d0e36eda16
read theory with PIDE markup from session database;
wenzelm
parents:
72844
diff
changeset
|
237 |
|
72662 | 238 |
class Build_Job(progress: Progress, |
76668 | 239 |
session_background: Sessions.Background, |
72662 | 240 |
store: Sessions.Store, |
77236 | 241 |
val do_store: Boolean, |
77237 | 242 |
resources: Resources, |
73805
b73777a0c076
allow build session setup, e.g. for protocol handlers;
wenzelm
parents:
73804
diff
changeset
|
243 |
session_setup: (String, Session) => Unit, |
77285 | 244 |
val input_heaps: SHA1.Shasum, |
77237 | 245 |
val numa_node: Option[Int] |
75393 | 246 |
) { |
76668 | 247 |
def session_name: String = session_background.session_name |
248 |
val info: Sessions.Info = session_background.sessions_structure(session_name) |
|
72662 | 249 |
val options: Options = NUMA.policy_options(info.options, numa_node) |
250 |
||
76873 | 251 |
val session_sources: Sessions.Sources = |
252 |
Sessions.Sources.load(session_background.base, cache = store.cache.compress) |
|
76871
a17f9ff37558
clarified session_sources (again, see also 9d0e6ea7aa68);
wenzelm
parents:
76860
diff
changeset
|
253 |
|
72662 | 254 |
private val future_result: Future[Process_Result] = |
255 |
Future.thread("build", uninterruptible = true) { |
|
256 |
val parent = info.parent.getOrElse("") |
|
257 |
||
75454 | 258 |
val env = |
259 |
Isabelle_System.settings( |
|
260 |
List("ISABELLE_ML_DEBUGGER" -> options.bool("ML_debugger").toString)) |
|
72662 | 261 |
|
262 |
val is_pure = Sessions.is_pure(session_name) |
|
263 |
||
264 |
val use_prelude = if (is_pure) Thy_Header.ml_roots.map(_._1) else Nil |
|
265 |
||
266 |
val eval_store = |
|
267 |
if (do_store) { |
|
268 |
(if (info.theories.nonEmpty) List("ML_Heap.share_common_data ()") else Nil) ::: |
|
269 |
List("ML_Heap.save_child " + |
|
270 |
ML_Syntax.print_string_bytes(File.platform_path(store.output_heap(session_name)))) |
|
271 |
} |
|
272 |
else Nil |
|
273 |
||
76912
ca872f20cf5b
clarified session sources: theory and blobs are read from database, instead of physical file-system;
wenzelm
parents:
76911
diff
changeset
|
274 |
def session_blobs(node_name: Document.Node.Name): List[(Command.Blob, Document.Blobs.Item)] = |
ca872f20cf5b
clarified session sources: theory and blobs are read from database, instead of physical file-system;
wenzelm
parents:
76911
diff
changeset
|
275 |
session_background.base.theory_load_commands.get(node_name.theory) match { |
ca872f20cf5b
clarified session sources: theory and blobs are read from database, instead of physical file-system;
wenzelm
parents:
76911
diff
changeset
|
276 |
case None => Nil |
ca872f20cf5b
clarified session sources: theory and blobs are read from database, instead of physical file-system;
wenzelm
parents:
76911
diff
changeset
|
277 |
case Some(spans) => |
ca872f20cf5b
clarified session sources: theory and blobs are read from database, instead of physical file-system;
wenzelm
parents:
76911
diff
changeset
|
278 |
val syntax = session_background.base.theory_syntax(node_name) |
ca872f20cf5b
clarified session sources: theory and blobs are read from database, instead of physical file-system;
wenzelm
parents:
76911
diff
changeset
|
279 |
val master_dir = Path.explode(node_name.master_dir) |
ca872f20cf5b
clarified session sources: theory and blobs are read from database, instead of physical file-system;
wenzelm
parents:
76911
diff
changeset
|
280 |
for (span <- spans; file <- span.loaded_files(syntax).files) |
ca872f20cf5b
clarified session sources: theory and blobs are read from database, instead of physical file-system;
wenzelm
parents:
76911
diff
changeset
|
281 |
yield { |
ca872f20cf5b
clarified session sources: theory and blobs are read from database, instead of physical file-system;
wenzelm
parents:
76911
diff
changeset
|
282 |
val src_path = Path.explode(file) |
ca872f20cf5b
clarified session sources: theory and blobs are read from database, instead of physical file-system;
wenzelm
parents:
76911
diff
changeset
|
283 |
val blob_name = Document.Node.Name(File.symbolic_path(master_dir + src_path)) |
ca872f20cf5b
clarified session sources: theory and blobs are read from database, instead of physical file-system;
wenzelm
parents:
76911
diff
changeset
|
284 |
|
ca872f20cf5b
clarified session sources: theory and blobs are read from database, instead of physical file-system;
wenzelm
parents:
76911
diff
changeset
|
285 |
val bytes = session_sources(blob_name.node).bytes |
ca872f20cf5b
clarified session sources: theory and blobs are read from database, instead of physical file-system;
wenzelm
parents:
76911
diff
changeset
|
286 |
val text = bytes.text |
ca872f20cf5b
clarified session sources: theory and blobs are read from database, instead of physical file-system;
wenzelm
parents:
76911
diff
changeset
|
287 |
val chunk = Symbol.Text_Chunk(text) |
ca872f20cf5b
clarified session sources: theory and blobs are read from database, instead of physical file-system;
wenzelm
parents:
76911
diff
changeset
|
288 |
|
ca872f20cf5b
clarified session sources: theory and blobs are read from database, instead of physical file-system;
wenzelm
parents:
76911
diff
changeset
|
289 |
Command.Blob(blob_name, src_path, Some((SHA1.digest(bytes), chunk))) -> |
ca872f20cf5b
clarified session sources: theory and blobs are read from database, instead of physical file-system;
wenzelm
parents:
76911
diff
changeset
|
290 |
Document.Blobs.Item(bytes, text, chunk, changed = false) |
ca872f20cf5b
clarified session sources: theory and blobs are read from database, instead of physical file-system;
wenzelm
parents:
76911
diff
changeset
|
291 |
} |
ca872f20cf5b
clarified session sources: theory and blobs are read from database, instead of physical file-system;
wenzelm
parents:
76911
diff
changeset
|
292 |
} |
ca872f20cf5b
clarified session sources: theory and blobs are read from database, instead of physical file-system;
wenzelm
parents:
76911
diff
changeset
|
293 |
|
72662 | 294 |
val session = |
295 |
new Session(options, resources) { |
|
74731
161e84e6b40a
just one cache, via HTML_Context, via Sessions.Store or Session;
wenzelm
parents:
74712
diff
changeset
|
296 |
override val cache: Term.Cache = store.cache |
72816
ea4f86914cb2
support for PIDE markup for auxiliary files ("blobs");
wenzelm
parents:
72783
diff
changeset
|
297 |
|
76912
ca872f20cf5b
clarified session sources: theory and blobs are read from database, instead of physical file-system;
wenzelm
parents:
76911
diff
changeset
|
298 |
override def build_blobs_info(node_name: Document.Node.Name): Command.Blobs_Info = |
76913 | 299 |
Command.Blobs_Info.make(session_blobs(node_name)) |
76912
ca872f20cf5b
clarified session sources: theory and blobs are read from database, instead of physical file-system;
wenzelm
parents:
76911
diff
changeset
|
300 |
|
ca872f20cf5b
clarified session sources: theory and blobs are read from database, instead of physical file-system;
wenzelm
parents:
76911
diff
changeset
|
301 |
override def build_blobs(node_name: Document.Node.Name): Document.Blobs = |
76913 | 302 |
Document.Blobs.make(session_blobs(node_name)) |
72662 | 303 |
} |
304 |
||
75393 | 305 |
object Build_Session_Errors { |
72662 | 306 |
private val promise: Promise[List[String]] = Future.promise |
307 |
||
308 |
def result: Exn.Result[List[String]] = promise.join_result |
|
73367 | 309 |
def cancel(): Unit = promise.cancel() |
75393 | 310 |
def apply(errs: List[String]): Unit = { |
72662 | 311 |
try { promise.fulfill(errs) } |
312 |
catch { case _: IllegalStateException => } |
|
313 |
} |
|
314 |
} |
|
315 |
||
316 |
val export_consumer = |
|
74255 | 317 |
Export.consumer(store.open_database(session_name, output = true), store.cache, |
318 |
progress = progress) |
|
72662 | 319 |
|
320 |
val stdout = new StringBuilder(1000) |
|
321 |
val stderr = new StringBuilder(1000) |
|
322 |
val command_timings = new mutable.ListBuffer[Properties.T] |
|
323 |
val theory_timings = new mutable.ListBuffer[Properties.T] |
|
324 |
val session_timings = new mutable.ListBuffer[Properties.T] |
|
325 |
val runtime_statistics = new mutable.ListBuffer[Properties.T] |
|
326 |
val task_statistics = new mutable.ListBuffer[Properties.T] |
|
327 |
||
328 |
def fun( |
|
329 |
name: String, |
|
330 |
acc: mutable.ListBuffer[Properties.T], |
|
75393 | 331 |
unapply: Properties.T => Option[Properties.T] |
332 |
): (String, Session.Protocol_Function) = { |
|
72662 | 333 |
name -> ((msg: Prover.Protocol_Output) => |
334 |
unapply(msg.properties) match { |
|
335 |
case Some(props) => acc += props; true |
|
336 |
case _ => false |
|
337 |
}) |
|
338 |
} |
|
339 |
||
75393 | 340 |
session.init_protocol_handler(new Session.Protocol_Handler { |
73367 | 341 |
override def exit(): Unit = Build_Session_Errors.cancel() |
72662 | 342 |
|
75393 | 343 |
private def build_session_finished(msg: Prover.Protocol_Output): Boolean = { |
72662 | 344 |
val (rc, errors) = |
345 |
try { |
|
75393 | 346 |
val (rc, errs) = { |
72662 | 347 |
import XML.Decode._ |
348 |
pair(int, list(x => x))(Symbol.decode_yxml(msg.text)) |
|
349 |
} |
|
350 |
val errors = |
|
351 |
for (err <- errs) yield { |
|
352 |
val prt = Protocol_Message.expose_no_reports(err) |
|
353 |
Pretty.string_of(prt, metric = Symbol.Metric) |
|
354 |
} |
|
355 |
(rc, errors) |
|
356 |
} |
|
74306 | 357 |
catch { case ERROR(err) => (Process_Result.RC.failure, List(err)) } |
72662 | 358 |
|
359 |
session.protocol_command("Prover.stop", rc.toString) |
|
360 |
Build_Session_Errors(errors) |
|
361 |
true |
|
362 |
} |
|
363 |
||
364 |
private def loading_theory(msg: Prover.Protocol_Output): Boolean = |
|
365 |
msg.properties match { |
|
72692
22aeec526ffd
support for PIDE markup in batch build (inactive due to pide_reports=false);
wenzelm
parents:
72683
diff
changeset
|
366 |
case Markup.Loading_Theory(Markup.Name(name)) => |
72662 | 367 |
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
|
368 |
false |
72662 | 369 |
case _ => false |
370 |
} |
|
371 |
||
74685 | 372 |
private def export_(msg: Prover.Protocol_Output): Boolean = |
72662 | 373 |
msg.properties match { |
374 |
case Protocol.Export(args) => |
|
75762
985c3a64748c
clarified signature: more uniform treatment of empty exports;
wenzelm
parents:
75738
diff
changeset
|
375 |
export_consumer.make_entry(session_name, args, msg.chunk) |
72662 | 376 |
true |
377 |
case _ => false |
|
378 |
} |
|
379 |
||
75440 | 380 |
override val functions: Session.Protocol_Functions = |
72662 | 381 |
List( |
382 |
Markup.Build_Session_Finished.name -> build_session_finished, |
|
383 |
Markup.Loading_Theory.name -> loading_theory, |
|
74685 | 384 |
Markup.EXPORT -> export_, |
72662 | 385 |
fun(Markup.Theory_Timing.name, theory_timings, Markup.Theory_Timing.unapply), |
386 |
fun(Markup.Session_Timing.name, session_timings, Markup.Session_Timing.unapply), |
|
387 |
fun(Markup.Task_Statistics.name, task_statistics, Markup.Task_Statistics.unapply)) |
|
388 |
}) |
|
389 |
||
75393 | 390 |
session.command_timings += Session.Consumer("command_timings") { |
391 |
case Session.Command_Timing(props) => |
|
392 |
for { |
|
393 |
elapsed <- Markup.Elapsed.unapply(props) |
|
394 |
elapsed_time = Time.seconds(elapsed) |
|
395 |
if elapsed_time.is_relevant && elapsed_time >= options.seconds("command_timing_threshold") |
|
396 |
} command_timings += props.filter(Markup.command_timing_property) |
|
397 |
} |
|
72711 | 398 |
|
75393 | 399 |
session.runtime_statistics += Session.Consumer("ML_statistics") { |
400 |
case Session.Runtime_Statistics(props) => runtime_statistics += props |
|
401 |
} |
|
72662 | 402 |
|
75393 | 403 |
session.finished_theories += Session.Consumer[Document.Snapshot]("finished_theories") { |
404 |
case snapshot => |
|
405 |
if (!progress.stopped) { |
|
406 |
def export_(name: String, xml: XML.Body, compress: Boolean = true): Unit = { |
|
407 |
if (!progress.stopped) { |
|
408 |
val theory_name = snapshot.node_name.theory |
|
409 |
val args = |
|
410 |
Protocol.Export.Args(theory_name = theory_name, name = name, compress = compress) |
|
75762
985c3a64748c
clarified signature: more uniform treatment of empty exports;
wenzelm
parents:
75738
diff
changeset
|
411 |
val body = Bytes(Symbol.encode(YXML.string_of_body(xml))) |
985c3a64748c
clarified signature: more uniform treatment of empty exports;
wenzelm
parents:
75738
diff
changeset
|
412 |
export_consumer.make_entry(session_name, args, body) |
74258 | 413 |
} |
75393 | 414 |
} |
415 |
def export_text(name: String, text: String, compress: Boolean = true): Unit = |
|
416 |
export_(name, List(XML.Text(text)), compress = compress) |
|
72730 | 417 |
|
75393 | 418 |
for (command <- snapshot.snippet_command) { |
419 |
export_text(Export.DOCUMENT_ID, command.id.toString, compress = false) |
|
420 |
} |
|
72844 | 421 |
|
75393 | 422 |
export_text(Export.FILES, |
76884 | 423 |
cat_lines(snapshot.node_files.map(name => File.symbolic_path(name.path))), |
424 |
compress = false) |
|
72816
ea4f86914cb2
support for PIDE markup for auxiliary files ("blobs");
wenzelm
parents:
72783
diff
changeset
|
425 |
|
76930 | 426 |
for ((blob_name, i) <- snapshot.node_files.tail.zipWithIndex) { |
427 |
val xml = snapshot.switch(blob_name).xml_markup() |
|
75393 | 428 |
export_(Export.MARKUP + (i + 1), xml) |
429 |
} |
|
430 |
export_(Export.MARKUP, snapshot.xml_markup()) |
|
431 |
export_(Export.MESSAGES, snapshot.messages.map(_._1)) |
|
432 |
} |
|
433 |
} |
|
72692
22aeec526ffd
support for PIDE markup in batch build (inactive due to pide_reports=false);
wenzelm
parents:
72683
diff
changeset
|
434 |
|
75393 | 435 |
session.all_messages += Session.Consumer[Any]("build_session_output") { |
436 |
case msg: Prover.Output => |
|
437 |
val message = msg.message |
|
438 |
if (msg.is_system) resources.log(Protocol.message_text(message)) |
|
73774 | 439 |
|
75393 | 440 |
if (msg.is_stdout) { |
441 |
stdout ++= Symbol.encode(XML.content(message)) |
|
442 |
} |
|
443 |
else if (msg.is_stderr) { |
|
444 |
stderr ++= Symbol.encode(XML.content(message)) |
|
445 |
} |
|
446 |
else if (msg.is_exit) { |
|
447 |
val err = |
|
448 |
"Prover terminated" + |
|
449 |
(msg.properties match { |
|
450 |
case Markup.Process_Result(result) => ": " + result.print_rc |
|
451 |
case _ => "" |
|
452 |
}) |
|
453 |
Build_Session_Errors(List(err)) |
|
454 |
} |
|
455 |
case _ => |
|
456 |
} |
|
72662 | 457 |
|
73805
b73777a0c076
allow build session setup, e.g. for protocol handlers;
wenzelm
parents:
73804
diff
changeset
|
458 |
session_setup(session_name, session) |
b73777a0c076
allow build session setup, e.g. for protocol handlers;
wenzelm
parents:
73804
diff
changeset
|
459 |
|
72662 | 460 |
val eval_main = Command_Line.ML_tool("Isabelle_Process.init_build ()" :: eval_store) |
461 |
||
462 |
val process = |
|
76729 | 463 |
Isabelle_Process.start(store, options, session, session_background, |
72662 | 464 |
logic = parent, raw_ml_system = is_pure, |
465 |
use_prelude = use_prelude, eval_main = eval_main, |
|
466 |
cwd = info.dir.file, env = env) |
|
467 |
||
468 |
val build_errors = |
|
73367 | 469 |
Isabelle_Thread.interrupt_handler(_ => process.terminate()) { |
470 |
Exn.capture { process.await_startup() } match { |
|
72662 | 471 |
case Exn.Res(_) => |
472 |
val resources_yxml = resources.init_session_yxml |
|
74144 | 473 |
val encode_options: XML.Encode.T[Options] = |
474 |
options => session.prover_options(options).encode |
|
72662 | 475 |
val args_yxml = |
476 |
YXML.string_of_body( |
|
477 |
{ |
|
478 |
import XML.Encode._ |
|
74144 | 479 |
pair(string, list(pair(encode_options, list(pair(string, properties)))))( |
72662 | 480 |
(session_name, info.theories)) |
481 |
}) |
|
482 |
session.protocol_command("build_session", resources_yxml, args_yxml) |
|
483 |
Build_Session_Errors.result |
|
484 |
case Exn.Exn(exn) => Exn.Res(List(Exn.message(exn))) |
|
485 |
} |
|
486 |
} |
|
487 |
||
488 |
val process_result = |
|
73367 | 489 |
Isabelle_Thread.interrupt_handler(_ => process.terminate()) { process.await_shutdown() } |
72662 | 490 |
|
72697 | 491 |
session.stop() |
492 |
||
72662 | 493 |
val export_errors = |
494 |
export_consumer.shutdown(close = true).map(Output.error_message_text) |
|
495 |
||
72699 | 496 |
val (document_output, document_errors) = |
72662 | 497 |
try { |
72881 | 498 |
if (build_errors.isInstanceOf[Exn.Res[_]] && process_result.ok && info.documents.nonEmpty) { |
75786 | 499 |
using(Export.open_database_context(store)) { database_context => |
75394 | 500 |
val documents = |
76668 | 501 |
using(database_context.open_session(session_background)) { |
75782
dba571dd0ba9
clarified signature: prefer Export.Session_Context over Sessions.Database_Context;
wenzelm
parents:
75780
diff
changeset
|
502 |
session_context => |
dba571dd0ba9
clarified signature: prefer Export.Session_Context over Sessions.Database_Context;
wenzelm
parents:
75780
diff
changeset
|
503 |
Document_Build.build_documents( |
dba571dd0ba9
clarified signature: prefer Export.Session_Context over Sessions.Database_Context;
wenzelm
parents:
75780
diff
changeset
|
504 |
Document_Build.context(session_context, progress = progress), |
dba571dd0ba9
clarified signature: prefer Export.Session_Context over Sessions.Database_Context;
wenzelm
parents:
75780
diff
changeset
|
505 |
output_sources = info.document_output, |
dba571dd0ba9
clarified signature: prefer Export.Session_Context over Sessions.Database_Context;
wenzelm
parents:
75780
diff
changeset
|
506 |
output_pdf = info.document_output) |
dba571dd0ba9
clarified signature: prefer Export.Session_Context over Sessions.Database_Context;
wenzelm
parents:
75780
diff
changeset
|
507 |
} |
75970 | 508 |
using(database_context.open_database(session_name, output = true))(session_database => |
75787 | 509 |
documents.foreach(_.write(session_database.db, session_name))) |
75394 | 510 |
(documents.flatMap(_.log_lines), Nil) |
511 |
} |
|
72662 | 512 |
} |
72881 | 513 |
else (Nil, Nil) |
72662 | 514 |
} |
72882 | 515 |
catch { |
76734 | 516 |
case exn: Document_Build.Build_Error => (exn.log_lines, exn.log_errors) |
72882 | 517 |
case Exn.Interrupt.ERROR(msg) => (Nil, List(msg)) |
518 |
} |
|
72662 | 519 |
|
75393 | 520 |
val result = { |
72738
a4d7da18ac5c
store timings for used_theories in canonical order, with reconstructed store.read_theories;
wenzelm
parents:
72730
diff
changeset
|
521 |
val theory_timing = |
75438 | 522 |
theory_timings.iterator.flatMap( |
75425 | 523 |
{ |
75438 | 524 |
case props @ Markup.Name(name) => Some(name -> props) |
525 |
case _ => None |
|
75425 | 526 |
}).toMap |
72738
a4d7da18ac5c
store timings for used_theories in canonical order, with reconstructed store.read_theories;
wenzelm
parents:
72730
diff
changeset
|
527 |
val used_theory_timings = |
76668 | 528 |
for { (name, _) <- session_background.base.used_theories } |
72738
a4d7da18ac5c
store timings for used_theories in canonical order, with reconstructed store.read_theories;
wenzelm
parents:
72730
diff
changeset
|
529 |
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
|
530 |
|
72662 | 531 |
val more_output = |
532 |
Library.trim_line(stdout.toString) :: |
|
533 |
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
|
534 |
used_theory_timings.map(Protocol.Theory_Timing_Marker.apply) ::: |
72662 | 535 |
session_timings.toList.map(Protocol.Session_Timing_Marker.apply) ::: |
536 |
runtime_statistics.toList.map(Protocol.ML_Statistics_Marker.apply) ::: |
|
537 |
task_statistics.toList.map(Protocol.Task_Statistics_Marker.apply) ::: |
|
72699 | 538 |
document_output |
72662 | 539 |
|
72726
ec6a27bbdab8
proper return code for more errors (amending d892f6d66402);
wenzelm
parents:
72725
diff
changeset
|
540 |
process_result.output(more_output) |
ec6a27bbdab8
proper return code for more errors (amending d892f6d66402);
wenzelm
parents:
72725
diff
changeset
|
541 |
.error(Library.trim_line(stderr.toString)) |
ec6a27bbdab8
proper return code for more errors (amending d892f6d66402);
wenzelm
parents:
72725
diff
changeset
|
542 |
.errors_rc(export_errors ::: document_errors) |
72662 | 543 |
} |
544 |
||
545 |
build_errors match { |
|
546 |
case Exn.Res(build_errs) => |
|
547 |
val errs = build_errs ::: document_errors |
|
74259
6d48d6ba58df
more robust: progress.stopped means that build has failed;
wenzelm
parents:
74258
diff
changeset
|
548 |
if (errs.nonEmpty) { |
72662 | 549 |
result.error_rc.output( |
550 |
errs.flatMap(s => split_lines(Output.error_message_text(s))) ::: |
|
551 |
errs.map(Protocol.Error_Message_Marker.apply)) |
|
552 |
} |
|
74306 | 553 |
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
|
554 |
else result |
72662 | 555 |
case Exn.Exn(Exn.Interrupt()) => |
74306 | 556 |
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
|
557 |
else result |
72662 | 558 |
case Exn.Exn(exn) => throw exn |
559 |
} |
|
560 |
} |
|
561 |
||
73367 | 562 |
def terminate(): Unit = future_result.cancel() |
72662 | 563 |
def is_finished: Boolean = future_result.is_finished |
564 |
||
75393 | 565 |
private val timeout_request: Option[Event_Timer.Request] = { |
73700
908351c8c0b1
check timeout_ignored as in ML, before applying timeout_scale;
wenzelm
parents:
73559
diff
changeset
|
566 |
if (info.timeout_ignored) None |
908351c8c0b1
check timeout_ignored as in ML, before applying timeout_scale;
wenzelm
parents:
73559
diff
changeset
|
567 |
else Some(Event_Timer.request(Time.now() + info.timeout) { terminate() }) |
72662 | 568 |
} |
569 |
||
77236 | 570 |
def join: Process_Result = { |
571 |
val result = future_result.join |
|
72662 | 572 |
|
573 |
val was_timeout = |
|
574 |
timeout_request match { |
|
575 |
case None => false |
|
73367 | 576 |
case Some(request) => !request.cancel() |
72662 | 577 |
} |
578 |
||
77236 | 579 |
if (result.ok) result |
580 |
else if (was_timeout) result.error(Output.error_message_text("Timeout")).timeout_rc |
|
581 |
else if (result.interrupted) result.error(Output.error_message_text("Interrupt")) |
|
582 |
else result |
|
72662 | 583 |
} |
584 |
} |