author | wenzelm |
Mon, 14 Oct 2019 21:00:04 +0200 | |
changeset 70867 | 4c8e28dabbc4 |
parent 69980 | f2e3adfd916f |
child 71163 | b5822f4c3fde |
permissions | -rw-r--r-- |
64160 | 1 |
/* Title: Pure/Admin/build_log.scala |
64045 | 2 |
Author: Makarius |
3 |
||
65608 | 4 |
Management of build log files and database storage. |
64045 | 5 |
*/ |
6 |
||
7 |
package isabelle |
|
8 |
||
9 |
||
64100 | 10 |
import java.io.{File => JFile} |
64110 | 11 |
import java.time.format.{DateTimeFormatter, DateTimeParseException} |
64096 | 12 |
import java.util.Locale |
64061
1bbea2b55d22
some support for header and data fields, notably from afp-test;
wenzelm
parents:
64054
diff
changeset
|
13 |
|
65600 | 14 |
import scala.collection.immutable.SortedMap |
64054 | 15 |
import scala.collection.mutable |
16 |
import scala.util.matching.Regex |
|
17 |
||
18 |
||
64045 | 19 |
object Build_Log |
20 |
{ |
|
64298 | 21 |
/** content **/ |
64101 | 22 |
|
64298 | 23 |
/* properties */ |
64150 | 24 |
|
64298 | 25 |
object Prop |
26 |
{ |
|
65624 | 27 |
val build_tags = SQL.Column.string("build_tags") // lines |
28 |
val build_args = SQL.Column.string("build_args") // lines |
|
65591 | 29 |
val build_group_id = SQL.Column.string("build_group_id") |
30 |
val build_id = SQL.Column.string("build_id") |
|
31 |
val build_engine = SQL.Column.string("build_engine") |
|
32 |
val build_host = SQL.Column.string("build_host") |
|
33 |
val build_start = SQL.Column.date("build_start") |
|
34 |
val build_end = SQL.Column.date("build_end") |
|
35 |
val isabelle_version = SQL.Column.string("isabelle_version") |
|
36 |
val afp_version = SQL.Column.string("afp_version") |
|
37 |
||
65611 | 38 |
val all_props: List[SQL.Column] = |
65591 | 39 |
List(build_tags, build_args, build_group_id, build_id, build_engine, |
40 |
build_host, build_start, build_end, isabelle_version, afp_version) |
|
64298 | 41 |
} |
64150 | 42 |
|
43 |
||
64298 | 44 |
/* settings */ |
64080 | 45 |
|
64081 | 46 |
object Settings |
47 |
{ |
|
65611 | 48 |
val ISABELLE_BUILD_OPTIONS = SQL.Column.string("ISABELLE_BUILD_OPTIONS") |
49 |
val ML_PLATFORM = SQL.Column.string("ML_PLATFORM") |
|
50 |
val ML_HOME = SQL.Column.string("ML_HOME") |
|
51 |
val ML_SYSTEM = SQL.Column.string("ML_SYSTEM") |
|
52 |
val ML_OPTIONS = SQL.Column.string("ML_OPTIONS") |
|
53 |
||
54 |
val ml_settings = List(ML_PLATFORM, ML_HOME, ML_SYSTEM, ML_OPTIONS) |
|
55 |
val all_settings = ISABELLE_BUILD_OPTIONS :: ml_settings |
|
64081 | 56 |
|
57 |
type Entry = (String, String) |
|
58 |
type T = List[Entry] |
|
64080 | 59 |
|
64081 | 60 |
object Entry |
61 |
{ |
|
62 |
def unapply(s: String): Option[Entry] = |
|
63 |
s.indexOf('=') match { |
|
64 |
case -1 => None |
|
65 |
case i => |
|
66 |
val a = s.substring(0, i) |
|
67 |
val b = Library.perhaps_unquote(s.substring(i + 1)) |
|
68 |
Some((a, b)) |
|
69 |
} |
|
70 |
def apply(a: String, b: String): String = a + "=" + quote(b) |
|
71 |
def getenv(a: String): String = apply(a, Isabelle_System.getenv(a)) |
|
72 |
} |
|
64080 | 73 |
|
64081 | 74 |
def show(): String = |
75 |
cat_lines( |
|
65611 | 76 |
List(Entry.getenv(ISABELLE_BUILD_OPTIONS.name), "") ::: |
77 |
ml_settings.map(c => Entry.getenv(c.name))) |
|
64080 | 78 |
} |
79 |
||
80 |
||
64298 | 81 |
/* file names */ |
82 |
||
83 |
def log_date(date: Date): String = |
|
84 |
String.format(Locale.ROOT, "%s.%05d", |
|
85 |
DateTimeFormatter.ofPattern("yyyy-MM-dd").format(date.rep), |
|
86 |
new java.lang.Long((date.time - date.midnight.time).ms / 1000)) |
|
87 |
||
88 |
def log_subdir(date: Date): Path = |
|
89 |
Path.explode("log") + Path.explode(date.rep.getYear.toString) |
|
90 |
||
91 |
def log_filename(engine: String, date: Date, more: List[String] = Nil): Path = |
|
92 |
Path.explode((engine :: log_date(date) :: more).mkString("", "_", ".log")) |
|
93 |
||
94 |
||
64100 | 95 |
|
64062 | 96 |
/** log file **/ |
64045 | 97 |
|
64155 | 98 |
def print_date(date: Date): String = Log_File.Date_Format(date) |
99 |
||
64062 | 100 |
object Log_File |
101 |
{ |
|
65607 | 102 |
/* log file */ |
103 |
||
65609 | 104 |
def plain_name(name: String): String = |
105 |
{ |
|
106 |
List(".log", ".log.gz", ".log.xz", ".gz", ".xz").find(name.endsWith(_)) match { |
|
107 |
case Some(s) => Library.try_unsuffix(s, name).get |
|
108 |
case None => name |
|
109 |
} |
|
110 |
} |
|
111 |
||
64062 | 112 |
def apply(name: String, lines: List[String]): Log_File = |
65609 | 113 |
new Log_File(plain_name(name), lines) |
64062 | 114 |
|
115 |
def apply(name: String, text: String): Log_File = |
|
64063 | 116 |
Log_File(name, Library.trim_split_lines(text)) |
64090 | 117 |
|
118 |
def apply(file: JFile): Log_File = |
|
119 |
{ |
|
120 |
val name = file.getName |
|
65609 | 121 |
val text = |
122 |
if (name.endsWith(".gz")) File.read_gzip(file) |
|
123 |
else if (name.endsWith(".xz")) File.read_xz(file) |
|
124 |
else File.read(file) |
|
125 |
apply(name, text) |
|
64090 | 126 |
} |
127 |
||
128 |
def apply(path: Path): Log_File = apply(path.file) |
|
64101 | 129 |
|
64110 | 130 |
|
65607 | 131 |
/* log file collections */ |
132 |
||
133 |
def is_log(file: JFile, |
|
134 |
prefixes: List[String] = |
|
66995
9cb263dbb2f7
plain identify job for Isabelle + AFP, independent of any Isabelle technology;
wenzelm
parents:
66944
diff
changeset
|
135 |
List(Build_History.log_prefix, Identify.log_prefix, Identify.log_prefix2, |
9cb263dbb2f7
plain identify job for Isabelle + AFP, independent of any Isabelle technology;
wenzelm
parents:
66944
diff
changeset
|
136 |
Isatest.log_prefix, AFP_Test.log_prefix, Jenkins.log_prefix), |
65609 | 137 |
suffixes: List[String] = List(".log", ".log.gz", ".log.xz")): Boolean = |
65607 | 138 |
{ |
139 |
val name = file.getName |
|
65639 | 140 |
|
65607 | 141 |
prefixes.exists(name.startsWith(_)) && |
65639 | 142 |
suffixes.exists(name.endsWith(_)) && |
143 |
name != "isatest.log" && |
|
144 |
name != "afp-test.log" && |
|
145 |
name != "main.log" |
|
65607 | 146 |
} |
147 |
||
148 |
||
64110 | 149 |
/* date format */ |
150 |
||
64101 | 151 |
val Date_Format = |
152 |
{ |
|
153 |
val fmts = |
|
154 |
Date.Formatter.variants( |
|
64116 | 155 |
List("EEE MMM d HH:mm:ss O yyyy", "EEE MMM d HH:mm:ss VV yyyy"), |
64104
b70fa05d6746
more permissive: accept all historic isatest and afp-test logs;
wenzelm
parents:
64103
diff
changeset
|
156 |
List(Locale.ENGLISH, Locale.GERMAN)) ::: |
64110 | 157 |
List( |
158 |
DateTimeFormatter.RFC_1123_DATE_TIME, |
|
69980 | 159 |
Date.Formatter.pattern("EEE MMM d HH:mm:ss yyyy").withZone(Date.timezone_berlin)) |
64101 | 160 |
|
64104
b70fa05d6746
more permissive: accept all historic isatest and afp-test logs;
wenzelm
parents:
64103
diff
changeset
|
161 |
def tune_timezone(s: String): String = |
b70fa05d6746
more permissive: accept all historic isatest and afp-test logs;
wenzelm
parents:
64103
diff
changeset
|
162 |
s match { |
64101 | 163 |
case "CET" | "MET" => "GMT+1" |
164 |
case "CEST" | "MEST" => "GMT+2" |
|
64104
b70fa05d6746
more permissive: accept all historic isatest and afp-test logs;
wenzelm
parents:
64103
diff
changeset
|
165 |
case "EST" => "Europe/Berlin" |
b70fa05d6746
more permissive: accept all historic isatest and afp-test logs;
wenzelm
parents:
64103
diff
changeset
|
166 |
case _ => s |
b70fa05d6746
more permissive: accept all historic isatest and afp-test logs;
wenzelm
parents:
64103
diff
changeset
|
167 |
} |
b70fa05d6746
more permissive: accept all historic isatest and afp-test logs;
wenzelm
parents:
64103
diff
changeset
|
168 |
def tune_weekday(s: String): String = |
b70fa05d6746
more permissive: accept all historic isatest and afp-test logs;
wenzelm
parents:
64103
diff
changeset
|
169 |
s match { |
b70fa05d6746
more permissive: accept all historic isatest and afp-test logs;
wenzelm
parents:
64103
diff
changeset
|
170 |
case "Die" => "Di" |
b70fa05d6746
more permissive: accept all historic isatest and afp-test logs;
wenzelm
parents:
64103
diff
changeset
|
171 |
case "Mit" => "Mi" |
b70fa05d6746
more permissive: accept all historic isatest and afp-test logs;
wenzelm
parents:
64103
diff
changeset
|
172 |
case "Don" => "Do" |
b70fa05d6746
more permissive: accept all historic isatest and afp-test logs;
wenzelm
parents:
64103
diff
changeset
|
173 |
case "Fre" => "Fr" |
b70fa05d6746
more permissive: accept all historic isatest and afp-test logs;
wenzelm
parents:
64103
diff
changeset
|
174 |
case "Sam" => "Sa" |
b70fa05d6746
more permissive: accept all historic isatest and afp-test logs;
wenzelm
parents:
64103
diff
changeset
|
175 |
case "Son" => "So" |
b70fa05d6746
more permissive: accept all historic isatest and afp-test logs;
wenzelm
parents:
64103
diff
changeset
|
176 |
case _ => s |
b70fa05d6746
more permissive: accept all historic isatest and afp-test logs;
wenzelm
parents:
64103
diff
changeset
|
177 |
} |
b70fa05d6746
more permissive: accept all historic isatest and afp-test logs;
wenzelm
parents:
64103
diff
changeset
|
178 |
|
b70fa05d6746
more permissive: accept all historic isatest and afp-test logs;
wenzelm
parents:
64103
diff
changeset
|
179 |
def tune(s: String): String = |
b70fa05d6746
more permissive: accept all historic isatest and afp-test logs;
wenzelm
parents:
64103
diff
changeset
|
180 |
Word.implode( |
b70fa05d6746
more permissive: accept all historic isatest and afp-test logs;
wenzelm
parents:
64103
diff
changeset
|
181 |
Word.explode(s) match { |
b70fa05d6746
more permissive: accept all historic isatest and afp-test logs;
wenzelm
parents:
64103
diff
changeset
|
182 |
case a :: "M\uFFFDr" :: bs => tune_weekday(a) :: "Mär" :: bs.map(tune_timezone(_)) |
b70fa05d6746
more permissive: accept all historic isatest and afp-test logs;
wenzelm
parents:
64103
diff
changeset
|
183 |
case a :: bs => tune_weekday(a) :: bs.map(tune_timezone(_)) |
b70fa05d6746
more permissive: accept all historic isatest and afp-test logs;
wenzelm
parents:
64103
diff
changeset
|
184 |
case Nil => Nil |
b70fa05d6746
more permissive: accept all historic isatest and afp-test logs;
wenzelm
parents:
64103
diff
changeset
|
185 |
} |
b70fa05d6746
more permissive: accept all historic isatest and afp-test logs;
wenzelm
parents:
64103
diff
changeset
|
186 |
) |
64101 | 187 |
|
188 |
Date.Format.make(fmts, tune) |
|
189 |
} |
|
64117 | 190 |
|
191 |
||
192 |
/* inlined content */ |
|
193 |
||
64119
8094eaa38d4b
inline session ML statistics into main build log;
wenzelm
parents:
64117
diff
changeset
|
194 |
def print_props(marker: String, props: Properties.T): String = |
65624 | 195 |
marker + YXML.string_of_body(XML.Encode.properties(Properties.encode_lines(props))) |
64102 | 196 |
} |
197 |
||
198 |
class Log_File private(val name: String, val lines: List[String]) |
|
199 |
{ |
|
200 |
log_file => |
|
201 |
||
202 |
override def toString: String = name |
|
203 |
||
204 |
def text: String = cat_lines(lines) |
|
205 |
||
206 |
def err(msg: String): Nothing = |
|
207 |
error("Error in log file " + quote(name) + ": " + msg) |
|
208 |
||
209 |
||
210 |
/* date format */ |
|
64101 | 211 |
|
212 |
object Strict_Date |
|
213 |
{ |
|
214 |
def unapply(s: String): Some[Date] = |
|
64102 | 215 |
try { Some(Log_File.Date_Format.parse(s)) } |
64101 | 216 |
catch { case exn: DateTimeParseException => log_file.err(exn.getMessage) } |
217 |
} |
|
218 |
||
219 |
||
64062 | 220 |
/* inlined content */ |
221 |
||
222 |
def find[A](f: String => Option[A]): Option[A] = |
|
223 |
lines.iterator.map(f).find(_.isDefined).map(_.get) |
|
224 |
||
64196
6688b9cd443b
more robust wrt. old versions that use clear-text properties (e.g. Timing in build_history_base);
wenzelm
parents:
64193
diff
changeset
|
225 |
def find_line(marker: String): Option[String] = |
6688b9cd443b
more robust wrt. old versions that use clear-text properties (e.g. Timing in build_history_base);
wenzelm
parents:
64193
diff
changeset
|
226 |
find(Library.try_unprefix(marker, _)) |
6688b9cd443b
more robust wrt. old versions that use clear-text properties (e.g. Timing in build_history_base);
wenzelm
parents:
64193
diff
changeset
|
227 |
|
65684 | 228 |
def find_match(regexes: List[Regex]): Option[String] = |
229 |
regexes match { |
|
230 |
case Nil => None |
|
231 |
case regex :: rest => |
|
232 |
lines.iterator.map(regex.unapplySeq(_)).find(res => res.isDefined && res.get.length == 1). |
|
233 |
map(res => res.get.head) orElse find_match(rest) |
|
234 |
} |
|
64062 | 235 |
|
236 |
||
237 |
/* settings */ |
|
238 |
||
64091 | 239 |
def get_setting(a: String): Option[Settings.Entry] = |
240 |
lines.find(_.startsWith(a + "=")) match { |
|
241 |
case Some(line) => Settings.Entry.unapply(line) |
|
242 |
case None => None |
|
243 |
} |
|
64045 | 244 |
|
65611 | 245 |
def get_all_settings: Settings.T = |
246 |
for { c <- Settings.all_settings; entry <- get_setting(c.name) } |
|
247 |
yield entry |
|
64062 | 248 |
|
249 |
||
250 |
/* properties (YXML) */ |
|
251 |
||
68169 | 252 |
val xml_cache = XML.make_cache() |
64062 | 253 |
|
254 |
def parse_props(text: String): Properties.T = |
|
66046 | 255 |
try { |
256 |
xml_cache.props(Properties.decode_lines(XML.Decode.properties(YXML.parse_body(text)))) |
|
257 |
} |
|
258 |
catch { case _: XML.Error => log_file.err("malformed properties") } |
|
64062 | 259 |
|
65934 | 260 |
def filter_lines(marker: String): List[String] = |
261 |
for (line <- lines; s <- Library.try_unprefix(marker, line)) yield s |
|
262 |
||
64119
8094eaa38d4b
inline session ML statistics into main build log;
wenzelm
parents:
64117
diff
changeset
|
263 |
def filter_props(marker: String): List[Properties.T] = |
65934 | 264 |
for (s <- filter_lines(marker) if YXML.detect(s)) yield parse_props(s) |
64062 | 265 |
|
64119
8094eaa38d4b
inline session ML statistics into main build log;
wenzelm
parents:
64117
diff
changeset
|
266 |
def find_props(marker: String): Option[Properties.T] = |
64196
6688b9cd443b
more robust wrt. old versions that use clear-text properties (e.g. Timing in build_history_base);
wenzelm
parents:
64193
diff
changeset
|
267 |
find_line(marker) match { |
6688b9cd443b
more robust wrt. old versions that use clear-text properties (e.g. Timing in build_history_base);
wenzelm
parents:
64193
diff
changeset
|
268 |
case Some(text) if YXML.detect(text) => Some(parse_props(text)) |
6688b9cd443b
more robust wrt. old versions that use clear-text properties (e.g. Timing in build_history_base);
wenzelm
parents:
64193
diff
changeset
|
269 |
case _ => None |
6688b9cd443b
more robust wrt. old versions that use clear-text properties (e.g. Timing in build_history_base);
wenzelm
parents:
64193
diff
changeset
|
270 |
} |
64062 | 271 |
|
272 |
||
273 |
/* parse various formats */ |
|
274 |
||
64105 | 275 |
def parse_meta_info(): Meta_Info = Build_Log.parse_meta_info(log_file) |
276 |
||
65646 | 277 |
def parse_build_info(ml_statistics: Boolean = false): Build_Info = |
278 |
Build_Log.parse_build_info(log_file, ml_statistics) |
|
64105 | 279 |
|
64082 | 280 |
def parse_session_info( |
281 |
command_timings: Boolean = false, |
|
66873
9953ae603a23
provide theory timing information, similar to command timing but always considered relevant;
wenzelm
parents:
66863
diff
changeset
|
282 |
theory_timings: Boolean = false, |
64082 | 283 |
ml_statistics: Boolean = false, |
284 |
task_statistics: Boolean = false): Session_Info = |
|
66873
9953ae603a23
provide theory timing information, similar to command timing but always considered relevant;
wenzelm
parents:
66863
diff
changeset
|
285 |
Build_Log.parse_session_info( |
9953ae603a23
provide theory timing information, similar to command timing but always considered relevant;
wenzelm
parents:
66863
diff
changeset
|
286 |
log_file, command_timings, theory_timings, ml_statistics, task_statistics) |
64045 | 287 |
} |
288 |
||
289 |
||
64098 | 290 |
|
65276 | 291 |
/** digested meta info: produced by Admin/build_history in log.xz file **/ |
64045 | 292 |
|
64108 | 293 |
object Meta_Info |
64099 | 294 |
{ |
64108 | 295 |
val empty: Meta_Info = Meta_Info(Nil, Nil) |
64099 | 296 |
} |
64098 | 297 |
|
65611 | 298 |
sealed case class Meta_Info(props: Properties.T, settings: Settings.T) |
64103 | 299 |
{ |
300 |
def is_empty: Boolean = props.isEmpty && settings.isEmpty |
|
65599 | 301 |
|
65611 | 302 |
def get(c: SQL.Column): Option[String] = |
303 |
Properties.get(props, c.name) orElse |
|
304 |
Properties.get(settings, c.name) |
|
305 |
||
306 |
def get_date(c: SQL.Column): Option[Date] = |
|
307 |
get(c).map(Log_File.Date_Format.parse(_)) |
|
64103 | 308 |
} |
64061
1bbea2b55d22
some support for header and data fields, notably from afp-test;
wenzelm
parents:
64054
diff
changeset
|
309 |
|
65625 | 310 |
object Identify |
311 |
{ |
|
312 |
val log_prefix = "isabelle_identify_" |
|
66995
9cb263dbb2f7
plain identify job for Isabelle + AFP, independent of any Isabelle technology;
wenzelm
parents:
66944
diff
changeset
|
313 |
val log_prefix2 = "plain_identify_" |
65674
23897f5d885d
approximate repository identify job based on isabelle-nightly-slow;
wenzelm
parents:
65670
diff
changeset
|
314 |
|
23897f5d885d
approximate repository identify job based on isabelle-nightly-slow;
wenzelm
parents:
65670
diff
changeset
|
315 |
def engine(log_file: Log_File): String = |
23897f5d885d
approximate repository identify job based on isabelle-nightly-slow;
wenzelm
parents:
65670
diff
changeset
|
316 |
if (log_file.name.startsWith(Jenkins.log_prefix)) "jenkins_identify" |
66995
9cb263dbb2f7
plain identify job for Isabelle + AFP, independent of any Isabelle technology;
wenzelm
parents:
66944
diff
changeset
|
317 |
else if (log_file.name.startsWith(log_prefix2)) "plain_identify" |
65674
23897f5d885d
approximate repository identify job based on isabelle-nightly-slow;
wenzelm
parents:
65670
diff
changeset
|
318 |
else "identify" |
23897f5d885d
approximate repository identify job based on isabelle-nightly-slow;
wenzelm
parents:
65670
diff
changeset
|
319 |
|
23897f5d885d
approximate repository identify job based on isabelle-nightly-slow;
wenzelm
parents:
65670
diff
changeset
|
320 |
def content(date: Date, isabelle_version: Option[String], afp_version: Option[String]): String = |
23897f5d885d
approximate repository identify job based on isabelle-nightly-slow;
wenzelm
parents:
65670
diff
changeset
|
321 |
terminate_lines( |
23897f5d885d
approximate repository identify job based on isabelle-nightly-slow;
wenzelm
parents:
65670
diff
changeset
|
322 |
List("isabelle_identify: " + Build_Log.print_date(date), "") ::: |
23897f5d885d
approximate repository identify job based on isabelle-nightly-slow;
wenzelm
parents:
65670
diff
changeset
|
323 |
isabelle_version.map("Isabelle version: " + _).toList ::: |
23897f5d885d
approximate repository identify job based on isabelle-nightly-slow;
wenzelm
parents:
65670
diff
changeset
|
324 |
afp_version.map("AFP version: " + _).toList) |
23897f5d885d
approximate repository identify job based on isabelle-nightly-slow;
wenzelm
parents:
65670
diff
changeset
|
325 |
|
65625 | 326 |
val Start = new Regex("""^isabelle_identify: (.+)$""") |
327 |
val No_End = new Regex("""$.""") |
|
65684 | 328 |
val Isabelle_Version = List(new Regex("""^Isabelle version: (\S+)$""")) |
329 |
val AFP_Version = List(new Regex("""^AFP version: (\S+)$""")) |
|
65625 | 330 |
} |
331 |
||
64095 | 332 |
object Isatest |
333 |
{ |
|
65588 | 334 |
val log_prefix = "isatest-makeall-" |
64108 | 335 |
val engine = "isatest" |
64109 | 336 |
val Start = new Regex("""^------------------- starting test --- (.+) --- (.+)$""") |
337 |
val End = new Regex("""^------------------- test (?:successful|FAILED) --- (.+) --- .*$""") |
|
65684 | 338 |
val Isabelle_Version = List(new Regex("""^Isabelle version: (\S+)$""")) |
64095 | 339 |
} |
340 |
||
64109 | 341 |
object AFP_Test |
64061
1bbea2b55d22
some support for header and data fields, notably from afp-test;
wenzelm
parents:
64054
diff
changeset
|
342 |
{ |
65588 | 343 |
val log_prefix = "afp-test-devel-" |
64108 | 344 |
val engine = "afp-test" |
64109 | 345 |
val Start = new Regex("""^Start test(?: for .+)? at ([^,]+), (.*)$""") |
346 |
val Start_Old = new Regex("""^Start test(?: for .+)? at ([^,]+)$""") |
|
347 |
val End = new Regex("""^End test on (.+), .+, elapsed time:.*$""") |
|
65684 | 348 |
val Isabelle_Version = List(new Regex("""^Isabelle version: .* -- hg id (\S+)$""")) |
349 |
val AFP_Version = List(new Regex("""^AFP version: .* -- hg id (\S+)$""")) |
|
64104
b70fa05d6746
more permissive: accept all historic isatest and afp-test logs;
wenzelm
parents:
64103
diff
changeset
|
350 |
val Bad_Init = new Regex("""^cp:.*: Disc quota exceeded$""") |
64061
1bbea2b55d22
some support for header and data fields, notably from afp-test;
wenzelm
parents:
64054
diff
changeset
|
351 |
} |
1bbea2b55d22
some support for header and data fields, notably from afp-test;
wenzelm
parents:
64054
diff
changeset
|
352 |
|
64110 | 353 |
object Jenkins |
354 |
{ |
|
65664 | 355 |
val log_prefix = "jenkins_" |
64110 | 356 |
val engine = "jenkins" |
65663 | 357 |
val Host = new Regex("""^Building remotely on (\S+) \((\S+)\).*$""") |
65665 | 358 |
val Start = new Regex("""^(?:Started by an SCM change|Started from command line by admin|).*$""") |
64110 | 359 |
val Start_Date = new Regex("""^Build started at (.+)$""") |
360 |
val No_End = new Regex("""$.""") |
|
65674
23897f5d885d
approximate repository identify job based on isabelle-nightly-slow;
wenzelm
parents:
65670
diff
changeset
|
361 |
val Isabelle_Version = |
65684 | 362 |
List(new Regex("""^(?:Build for Isabelle id|Isabelle id) (\w+).*$"""), |
65685 | 363 |
new Regex("""^ISABELLE_CI_REPO_ID="(\w+)".*$"""), |
364 |
new Regex("""^(\w{12}) tip.*$""")) |
|
65674
23897f5d885d
approximate repository identify job based on isabelle-nightly-slow;
wenzelm
parents:
65670
diff
changeset
|
365 |
val AFP_Version = |
65684 | 366 |
List(new Regex("""^(?:Build for AFP id|AFP id) (\w+).*$"""), |
367 |
new Regex("""^ISABELLE_CI_AFP_ID="(\w+)".*$""")) |
|
64110 | 368 |
val CONFIGURATION = "=== CONFIGURATION ===" |
369 |
val BUILD = "=== BUILD ===" |
|
370 |
} |
|
371 |
||
64105 | 372 |
private def parse_meta_info(log_file: Log_File): Meta_Info = |
64061
1bbea2b55d22
some support for header and data fields, notably from afp-test;
wenzelm
parents:
64054
diff
changeset
|
373 |
{ |
64108 | 374 |
def parse(engine: String, host: String, start: Date, |
65684 | 375 |
End: Regex, Isabelle_Version: List[Regex], AFP_Version: List[Regex]): Meta_Info = |
64091 | 376 |
{ |
64296
544481988e65
explicit identification of builds and correlated build groups;
wenzelm
parents:
64196
diff
changeset
|
377 |
val build_id = |
544481988e65
explicit identification of builds and correlated build groups;
wenzelm
parents:
64196
diff
changeset
|
378 |
{ |
65714 | 379 |
val prefix = proper_string(host) orElse proper_string(engine) getOrElse "build" |
380 |
prefix + ":" + start.time.ms |
|
64296
544481988e65
explicit identification of builds and correlated build groups;
wenzelm
parents:
64196
diff
changeset
|
381 |
} |
65591 | 382 |
val build_engine = if (engine == "") Nil else List(Prop.build_engine.name -> engine) |
383 |
val build_host = if (host == "") Nil else List(Prop.build_host.name -> host) |
|
64108 | 384 |
|
65599 | 385 |
val start_date = List(Prop.build_start.name -> print_date(start)) |
64091 | 386 |
val end_date = |
387 |
log_file.lines.last match { |
|
64109 | 388 |
case End(log_file.Strict_Date(end_date)) => |
65599 | 389 |
List(Prop.build_end.name -> print_date(end_date)) |
64091 | 390 |
case _ => Nil |
391 |
} |
|
392 |
||
393 |
val isabelle_version = |
|
65591 | 394 |
log_file.find_match(Isabelle_Version).map(Prop.isabelle_version.name -> _) |
64091 | 395 |
val afp_version = |
65591 | 396 |
log_file.find_match(AFP_Version).map(Prop.afp_version.name -> _) |
64062 | 397 |
|
65591 | 398 |
Meta_Info((Prop.build_id.name -> build_id) :: build_engine ::: build_host ::: |
64108 | 399 |
start_date ::: end_date ::: isabelle_version.toList ::: afp_version.toList, |
65611 | 400 |
log_file.get_all_settings) |
64091 | 401 |
} |
402 |
||
403 |
log_file.lines match { |
|
64119
8094eaa38d4b
inline session ML statistics into main build log;
wenzelm
parents:
64117
diff
changeset
|
404 |
case line :: _ if line.startsWith(Build_History.META_INFO_MARKER) => |
8094eaa38d4b
inline session ML statistics into main build log;
wenzelm
parents:
64117
diff
changeset
|
405 |
Meta_Info(log_file.find_props(Build_History.META_INFO_MARKER).get, |
65611 | 406 |
log_file.get_all_settings) |
64117 | 407 |
|
65625 | 408 |
case Identify.Start(log_file.Strict_Date(start)) :: _ => |
65674
23897f5d885d
approximate repository identify job based on isabelle-nightly-slow;
wenzelm
parents:
65670
diff
changeset
|
409 |
parse(Identify.engine(log_file), "", start, Identify.No_End, |
65625 | 410 |
Identify.Isabelle_Version, Identify.AFP_Version) |
411 |
||
64109 | 412 |
case Isatest.Start(log_file.Strict_Date(start), host) :: _ => |
413 |
parse(Isatest.engine, host, start, Isatest.End, |
|
65684 | 414 |
Isatest.Isabelle_Version, Nil) |
64099 | 415 |
|
64109 | 416 |
case AFP_Test.Start(log_file.Strict_Date(start), host) :: _ => |
417 |
parse(AFP_Test.engine, host, start, AFP_Test.End, |
|
418 |
AFP_Test.Isabelle_Version, AFP_Test.AFP_Version) |
|
64099 | 419 |
|
64109 | 420 |
case AFP_Test.Start_Old(log_file.Strict_Date(start)) :: _ => |
421 |
parse(AFP_Test.engine, "", start, AFP_Test.End, |
|
422 |
AFP_Test.Isabelle_Version, AFP_Test.AFP_Version) |
|
64099 | 423 |
|
65665 | 424 |
case Jenkins.Start() :: _ => |
64110 | 425 |
log_file.lines.dropWhile(_ != Jenkins.BUILD) match { |
426 |
case Jenkins.BUILD :: _ :: Jenkins.Start_Date(log_file.Strict_Date(start)) :: _ => |
|
65663 | 427 |
val host = |
428 |
log_file.lines.takeWhile(_ != Jenkins.CONFIGURATION).collectFirst({ |
|
429 |
case Jenkins.Host(a, b) => a + "." + b |
|
430 |
}).getOrElse("") |
|
69980 | 431 |
parse(Jenkins.engine, host, start.to(Date.timezone_berlin), Jenkins.No_End, |
64110 | 432 |
Jenkins.Isabelle_Version, Jenkins.AFP_Version) |
433 |
case _ => Meta_Info.empty |
|
434 |
} |
|
435 |
||
64341 | 436 |
case line :: _ if line.startsWith("\u0000") => Meta_Info.empty |
64109 | 437 |
case List(Isatest.End(_)) => Meta_Info.empty |
438 |
case _ :: AFP_Test.Bad_Init() :: _ => Meta_Info.empty |
|
64105 | 439 |
case Nil => Meta_Info.empty |
64104
b70fa05d6746
more permissive: accept all historic isatest and afp-test logs;
wenzelm
parents:
64103
diff
changeset
|
440 |
|
64110 | 441 |
case _ => log_file.err("cannot detect log file format") |
64061
1bbea2b55d22
some support for header and data fields, notably from afp-test;
wenzelm
parents:
64054
diff
changeset
|
442 |
} |
1bbea2b55d22
some support for header and data fields, notably from afp-test;
wenzelm
parents:
64054
diff
changeset
|
443 |
} |
1bbea2b55d22
some support for header and data fields, notably from afp-test;
wenzelm
parents:
64054
diff
changeset
|
444 |
|
64085
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
445 |
|
64098 | 446 |
|
65276 | 447 |
/** build info: toplevel output of isabelle build or Admin/build_history **/ |
64119
8094eaa38d4b
inline session ML statistics into main build log;
wenzelm
parents:
64117
diff
changeset
|
448 |
|
66873
9953ae603a23
provide theory timing information, similar to command timing but always considered relevant;
wenzelm
parents:
66863
diff
changeset
|
449 |
val THEORY_TIMING_MARKER = "\ftheory_timing = " |
64119
8094eaa38d4b
inline session ML statistics into main build log;
wenzelm
parents:
64117
diff
changeset
|
450 |
val ML_STATISTICS_MARKER = "\fML_statistics = " |
65937 | 451 |
val ERROR_MESSAGE_MARKER = "\ferror_message = " |
64119
8094eaa38d4b
inline session ML statistics into main build log;
wenzelm
parents:
64117
diff
changeset
|
452 |
val SESSION_NAME = "session_name" |
64085
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
453 |
|
64061
1bbea2b55d22
some support for header and data fields, notably from afp-test;
wenzelm
parents:
64054
diff
changeset
|
454 |
object Session_Status extends Enumeration |
1bbea2b55d22
some support for header and data fields, notably from afp-test;
wenzelm
parents:
64054
diff
changeset
|
455 |
{ |
65633 | 456 |
val existing, finished, failed, cancelled = Value |
64061
1bbea2b55d22
some support for header and data fields, notably from afp-test;
wenzelm
parents:
64054
diff
changeset
|
457 |
} |
1bbea2b55d22
some support for header and data fields, notably from afp-test;
wenzelm
parents:
64054
diff
changeset
|
458 |
|
64085
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
459 |
sealed case class Session_Entry( |
65643 | 460 |
chapter: String = "", |
461 |
groups: List[String] = Nil, |
|
462 |
threads: Option[Int] = None, |
|
463 |
timing: Timing = Timing.zero, |
|
464 |
ml_timing: Timing = Timing.zero, |
|
66913 | 465 |
sources: Option[String] = None, |
65643 | 466 |
heap_size: Option[Long] = None, |
467 |
status: Option[Session_Status.Value] = None, |
|
65937 | 468 |
errors: List[String] = Nil, |
66874
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
469 |
theory_timings: Map[String, Timing] = Map.empty, |
65643 | 470 |
ml_statistics: List[Properties.T] = Nil) |
64085
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
471 |
{ |
65631 | 472 |
def proper_groups: Option[String] = if (groups.isEmpty) None else Some(cat_lines(groups)) |
65643 | 473 |
def finished: Boolean = status == Some(Session_Status.finished) |
65937 | 474 |
def failed: Boolean = status == Some(Session_Status.failed) |
64085
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
475 |
} |
64054 | 476 |
|
66874
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
477 |
object Build_Info |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
478 |
{ |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
479 |
val sessions_dummy: Map[String, Session_Entry] = |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
480 |
Map("" -> Session_Entry(theory_timings = Map("" -> Timing.zero))) |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
481 |
} |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
482 |
|
64085
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
483 |
sealed case class Build_Info(sessions: Map[String, Session_Entry]) |
64054 | 484 |
{ |
65937 | 485 |
def finished_sessions: List[String] = for ((a, b) <- sessions.toList if b.finished) yield a |
486 |
def failed_sessions: List[String] = for ((a, b) <- sessions.toList if b.failed) yield a |
|
64054 | 487 |
} |
488 |
||
65646 | 489 |
private def parse_build_info(log_file: Log_File, parse_ml_statistics: Boolean): Build_Info = |
64085
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
490 |
{ |
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
491 |
object Chapter_Name |
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
492 |
{ |
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
493 |
def unapply(s: String): Some[(String, String)] = |
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
494 |
space_explode('/', s) match { |
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
495 |
case List(chapter, name) => Some((chapter, name)) |
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
496 |
case _ => Some(("", s)) |
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
497 |
} |
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
498 |
} |
64054 | 499 |
|
64085
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
500 |
val Session_No_Groups = new Regex("""^Session (\S+)$""") |
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
501 |
val Session_Groups = new Regex("""^Session (\S+) \((.*)\)$""") |
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
502 |
val Session_Finished1 = |
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
503 |
new Regex("""^Finished (\S+) \((\d+):(\d+):(\d+) elapsed time, (\d+):(\d+):(\d+) cpu time.*$""") |
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
504 |
val Session_Finished2 = |
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
505 |
new Regex("""^Finished (\S+) \((\d+):(\d+):(\d+) elapsed time.*$""") |
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
506 |
val Session_Timing = |
65679 | 507 |
new Regex("""^Timing (\S+) \((\d+) threads, (\d+\.\d+)s elapsed time, (\d+\.\d+)s cpu time, (\d+\.\d+)s GC time.*$""") |
64086
ac7ae5067783
clarified status: started sessions may bomb without explicit FAILED or CANCELLED (cf. in afp-test-devel-2016-01-03.log);
wenzelm
parents:
64085
diff
changeset
|
508 |
val Session_Started = new Regex("""^(?:Running|Building) (\S+) \.\.\.$""") |
64085
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
509 |
val Session_Failed = new Regex("""^(\S+) FAILED""") |
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
510 |
val Session_Cancelled = new Regex("""^(\S+) CANCELLED""") |
66913 | 511 |
val Sources = new Regex("""^Sources (\S+) (\S{""" + SHA1.digest_length + """})$""") |
64120 | 512 |
val Heap = new Regex("""^Heap (\S+) \((\d+) bytes\)$""") |
64085
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
513 |
|
66874
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
514 |
object Theory_Timing |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
515 |
{ |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
516 |
def unapply(line: String): Option[(String, (String, Timing))] = |
67007
978c584609de
tolerate odd negative times from old log files (before 1698e9ccef2d);
wenzelm
parents:
66995
diff
changeset
|
517 |
{ |
978c584609de
tolerate odd negative times from old log files (before 1698e9ccef2d);
wenzelm
parents:
66995
diff
changeset
|
518 |
val line1 = line.replace('~', '-') |
978c584609de
tolerate odd negative times from old log files (before 1698e9ccef2d);
wenzelm
parents:
66995
diff
changeset
|
519 |
Library.try_unprefix(THEORY_TIMING_MARKER, line1).map(log_file.parse_props(_)) match { |
66874
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
520 |
case Some((SESSION_NAME, name) :: props) => |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
521 |
(props, props) match { |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
522 |
case (Markup.Name(thy), Markup.Timing_Properties(t)) => Some((name, thy -> t)) |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
523 |
case _ => None |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
524 |
} |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
525 |
case _ => None |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
526 |
} |
67007
978c584609de
tolerate odd negative times from old log files (before 1698e9ccef2d);
wenzelm
parents:
66995
diff
changeset
|
527 |
} |
66874
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
528 |
} |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
529 |
|
64085
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
530 |
var chapter = Map.empty[String, String] |
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
531 |
var groups = Map.empty[String, List[String]] |
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
532 |
var threads = Map.empty[String, Int] |
64054 | 533 |
var timing = Map.empty[String, Timing] |
64085
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
534 |
var ml_timing = Map.empty[String, Timing] |
64086
ac7ae5067783
clarified status: started sessions may bomb without explicit FAILED or CANCELLED (cf. in afp-test-devel-2016-01-03.log);
wenzelm
parents:
64085
diff
changeset
|
535 |
var started = Set.empty[String] |
64085
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
536 |
var failed = Set.empty[String] |
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
537 |
var cancelled = Set.empty[String] |
66913 | 538 |
var sources = Map.empty[String, String] |
65627 | 539 |
var heap_sizes = Map.empty[String, Long] |
66874
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
540 |
var theory_timings = Map.empty[String, Map[String, Timing]] |
64119
8094eaa38d4b
inline session ML statistics into main build log;
wenzelm
parents:
64117
diff
changeset
|
541 |
var ml_statistics = Map.empty[String, List[Properties.T]] |
65937 | 542 |
var errors = Map.empty[String, List[String]] |
64119
8094eaa38d4b
inline session ML statistics into main build log;
wenzelm
parents:
64117
diff
changeset
|
543 |
|
64085
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
544 |
def all_sessions: Set[String] = |
64120 | 545 |
chapter.keySet ++ groups.keySet ++ threads.keySet ++ timing.keySet ++ ml_timing.keySet ++ |
66913 | 546 |
failed ++ cancelled ++ started ++ sources.keySet ++ heap_sizes.keySet ++ |
547 |
theory_timings.keySet ++ ml_statistics.keySet |
|
64085
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
548 |
|
64054 | 549 |
|
64062 | 550 |
for (line <- log_file.lines) { |
64054 | 551 |
line match { |
64085
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
552 |
case Session_No_Groups(Chapter_Name(chapt, name)) => |
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
553 |
chapter += (name -> chapt) |
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
554 |
groups += (name -> Nil) |
64119
8094eaa38d4b
inline session ML statistics into main build log;
wenzelm
parents:
64117
diff
changeset
|
555 |
|
64085
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
556 |
case Session_Groups(Chapter_Name(chapt, name), grps) => |
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
557 |
chapter += (name -> chapt) |
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
558 |
groups += (name -> Word.explode(grps)) |
64119
8094eaa38d4b
inline session ML statistics into main build log;
wenzelm
parents:
64117
diff
changeset
|
559 |
|
64086
ac7ae5067783
clarified status: started sessions may bomb without explicit FAILED or CANCELLED (cf. in afp-test-devel-2016-01-03.log);
wenzelm
parents:
64085
diff
changeset
|
560 |
case Session_Started(name) => |
ac7ae5067783
clarified status: started sessions may bomb without explicit FAILED or CANCELLED (cf. in afp-test-devel-2016-01-03.log);
wenzelm
parents:
64085
diff
changeset
|
561 |
started += name |
64119
8094eaa38d4b
inline session ML statistics into main build log;
wenzelm
parents:
64117
diff
changeset
|
562 |
|
64054 | 563 |
case Session_Finished1(name, |
564 |
Value.Int(e1), Value.Int(e2), Value.Int(e3), |
|
565 |
Value.Int(c1), Value.Int(c2), Value.Int(c3)) => |
|
566 |
val elapsed = Time.hms(e1, e2, e3) |
|
567 |
val cpu = Time.hms(c1, c2, c3) |
|
64085
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
568 |
timing += (name -> Timing(elapsed, cpu, Time.zero)) |
64119
8094eaa38d4b
inline session ML statistics into main build log;
wenzelm
parents:
64117
diff
changeset
|
569 |
|
64054 | 570 |
case Session_Finished2(name, |
571 |
Value.Int(e1), Value.Int(e2), Value.Int(e3)) => |
|
572 |
val elapsed = Time.hms(e1, e2, e3) |
|
64085
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
573 |
timing += (name -> Timing(elapsed, Time.zero, Time.zero)) |
64119
8094eaa38d4b
inline session ML statistics into main build log;
wenzelm
parents:
64117
diff
changeset
|
574 |
|
64054 | 575 |
case Session_Timing(name, |
576 |
Value.Int(t), Value.Double(e), Value.Double(c), Value.Double(g)) => |
|
577 |
val elapsed = Time.seconds(e) |
|
578 |
val cpu = Time.seconds(c) |
|
579 |
val gc = Time.seconds(g) |
|
64085
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
580 |
ml_timing += (name -> Timing(elapsed, cpu, gc)) |
64054 | 581 |
threads += (name -> t) |
64119
8094eaa38d4b
inline session ML statistics into main build log;
wenzelm
parents:
64117
diff
changeset
|
582 |
|
66913 | 583 |
case Sources(name, s) => |
584 |
sources += (name -> s) |
|
585 |
||
64120 | 586 |
case Heap(name, Value.Long(size)) => |
587 |
heap_sizes += (name -> size) |
|
588 |
||
66874
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
589 |
case _ if line.startsWith(THEORY_TIMING_MARKER) && YXML.detect(line) => |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
590 |
line match { |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
591 |
case Theory_Timing(name, theory_timing) => |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
592 |
theory_timings += (name -> (theory_timings.getOrElse(name, Map.empty) + theory_timing)) |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
593 |
case _ => log_file.err("malformed theory_timing " + quote(line)) |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
594 |
} |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
595 |
|
65937 | 596 |
case _ if parse_ml_statistics && line.startsWith(ML_STATISTICS_MARKER) && YXML.detect(line) => |
66874
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
597 |
Library.try_unprefix(ML_STATISTICS_MARKER, line).map(log_file.parse_props(_)) match { |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
598 |
case Some((SESSION_NAME, name) :: props) => |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
599 |
ml_statistics += (name -> (props :: ml_statistics.getOrElse(name, Nil))) |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
600 |
case _ => log_file.err("malformed ML_statistics " + quote(line)) |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
601 |
} |
64119
8094eaa38d4b
inline session ML statistics into main build log;
wenzelm
parents:
64117
diff
changeset
|
602 |
|
65937 | 603 |
case _ if line.startsWith(ERROR_MESSAGE_MARKER) && YXML.detect(line) => |
66874
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
604 |
Library.try_unprefix(ERROR_MESSAGE_MARKER, line).map(log_file.parse_props(_)) match { |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
605 |
case Some(List((SESSION_NAME, name), (Markup.CONTENT, msg))) => |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
606 |
errors += (name -> (Library.decode_lines(msg) :: errors.getOrElse(name, Nil))) |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
607 |
case _ => log_file.err("malformed error message " + quote(line)) |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
608 |
} |
65937 | 609 |
|
64054 | 610 |
case _ => |
611 |
} |
|
612 |
} |
|
613 |
||
64085
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
614 |
val sessions = |
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
615 |
Map( |
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
616 |
(for (name <- all_sessions.toList) yield { |
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
617 |
val status = |
65633 | 618 |
if (failed(name)) Session_Status.failed |
619 |
else if (cancelled(name)) Session_Status.cancelled |
|
64086
ac7ae5067783
clarified status: started sessions may bomb without explicit FAILED or CANCELLED (cf. in afp-test-devel-2016-01-03.log);
wenzelm
parents:
64085
diff
changeset
|
620 |
else if (timing.isDefinedAt(name) || ml_timing.isDefinedAt(name)) |
65633 | 621 |
Session_Status.finished |
622 |
else if (started(name)) Session_Status.failed |
|
623 |
else Session_Status.existing |
|
64085
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
624 |
val entry = |
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
625 |
Session_Entry( |
65643 | 626 |
chapter = chapter.getOrElse(name, ""), |
627 |
groups = groups.getOrElse(name, Nil), |
|
628 |
threads = threads.get(name), |
|
629 |
timing = timing.getOrElse(name, Timing.zero), |
|
630 |
ml_timing = ml_timing.getOrElse(name, Timing.zero), |
|
66913 | 631 |
sources = sources.get(name), |
65643 | 632 |
heap_size = heap_sizes.get(name), |
633 |
status = Some(status), |
|
65937 | 634 |
errors = errors.getOrElse(name, Nil).reverse, |
66874
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
635 |
theory_timings = theory_timings.getOrElse(name, Map.empty), |
65643 | 636 |
ml_statistics = ml_statistics.getOrElse(name, Nil).reverse) |
64085
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
637 |
(name -> entry) |
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
638 |
}):_*) |
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
639 |
Build_Info(sessions) |
64054 | 640 |
} |
64099 | 641 |
|
642 |
||
643 |
||
65276 | 644 |
/** session info: produced by isabelle build as session log.gz file **/ |
64099 | 645 |
|
646 |
sealed case class Session_Info( |
|
647 |
session_timing: Properties.T, |
|
648 |
command_timings: List[Properties.T], |
|
66873
9953ae603a23
provide theory timing information, similar to command timing but always considered relevant;
wenzelm
parents:
66863
diff
changeset
|
649 |
theory_timings: List[Properties.T], |
64099 | 650 |
ml_statistics: List[Properties.T], |
65934 | 651 |
task_statistics: List[Properties.T], |
652 |
errors: List[String]) |
|
66944
05df740cb54b
more informative timeout message, notably for build_status;
wenzelm
parents:
66913
diff
changeset
|
653 |
{ |
05df740cb54b
more informative timeout message, notably for build_status;
wenzelm
parents:
66913
diff
changeset
|
654 |
def error(s: String): Session_Info = |
05df740cb54b
more informative timeout message, notably for build_status;
wenzelm
parents:
66913
diff
changeset
|
655 |
copy(errors = errors ::: List(s)) |
05df740cb54b
more informative timeout message, notably for build_status;
wenzelm
parents:
66913
diff
changeset
|
656 |
} |
64099 | 657 |
|
658 |
private def parse_session_info( |
|
659 |
log_file: Log_File, |
|
660 |
command_timings: Boolean, |
|
66873
9953ae603a23
provide theory timing information, similar to command timing but always considered relevant;
wenzelm
parents:
66863
diff
changeset
|
661 |
theory_timings: Boolean, |
64099 | 662 |
ml_statistics: Boolean, |
663 |
task_statistics: Boolean): Session_Info = |
|
664 |
{ |
|
65290 | 665 |
Session_Info( |
666 |
session_timing = log_file.find_props("\fTiming = ") getOrElse Nil, |
|
667 |
command_timings = if (command_timings) log_file.filter_props("\fcommand_timing = ") else Nil, |
|
66873
9953ae603a23
provide theory timing information, similar to command timing but always considered relevant;
wenzelm
parents:
66863
diff
changeset
|
668 |
theory_timings = if (theory_timings) log_file.filter_props(THEORY_TIMING_MARKER) else Nil, |
65290 | 669 |
ml_statistics = if (ml_statistics) log_file.filter_props(ML_STATISTICS_MARKER) else Nil, |
65934 | 670 |
task_statistics = if (task_statistics) log_file.filter_props("\ftask_statistics = ") else Nil, |
65937 | 671 |
errors = log_file.filter_lines(ERROR_MESSAGE_MARKER).map(Library.decode_lines(_))) |
64099 | 672 |
} |
65595 | 673 |
|
68018 | 674 |
def compress_errors(errors: List[String], cache: XZ.Cache = XZ.cache()): Option[Bytes] = |
65937 | 675 |
if (errors.isEmpty) None |
68018 | 676 |
else { |
677 |
Some(Bytes(YXML.string_of_body(XML.Encode.list(XML.Encode.string)(errors))). |
|
678 |
compress(cache = cache)) |
|
679 |
} |
|
65937 | 680 |
|
68018 | 681 |
def uncompress_errors(bytes: Bytes, cache: XZ.Cache = XZ.cache()): List[String] = |
65937 | 682 |
if (bytes.isEmpty) Nil |
68018 | 683 |
else { |
684 |
XML.Decode.list(YXML.string_of_body(_))(YXML.parse_body(bytes.uncompress(cache = cache).text)) |
|
685 |
} |
|
65937 | 686 |
|
65595 | 687 |
|
688 |
||
689 |
/** persistent store **/ |
|
690 |
||
65694 | 691 |
/* SQL data model */ |
692 |
||
693 |
object Data |
|
694 |
{ |
|
65702 | 695 |
def build_log_table(name: String, columns: List[SQL.Column], body: String = ""): SQL.Table = |
65700 | 696 |
SQL.Table("isabelle_build_log_" + name, columns, body) |
697 |
||
698 |
||
65694 | 699 |
/* main content */ |
700 |
||
66857 | 701 |
val log_name = SQL.Column.string("log_name").make_primary_key |
702 |
val session_name = SQL.Column.string("session_name").make_primary_key |
|
66874
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
703 |
val theory_name = SQL.Column.string("theory_name").make_primary_key |
65694 | 704 |
val chapter = SQL.Column.string("chapter") |
705 |
val groups = SQL.Column.string("groups") |
|
706 |
val threads = SQL.Column.int("threads") |
|
707 |
val timing_elapsed = SQL.Column.long("timing_elapsed") |
|
708 |
val timing_cpu = SQL.Column.long("timing_cpu") |
|
709 |
val timing_gc = SQL.Column.long("timing_gc") |
|
710 |
val timing_factor = SQL.Column.double("timing_factor") |
|
711 |
val ml_timing_elapsed = SQL.Column.long("ml_timing_elapsed") |
|
712 |
val ml_timing_cpu = SQL.Column.long("ml_timing_cpu") |
|
713 |
val ml_timing_gc = SQL.Column.long("ml_timing_gc") |
|
714 |
val ml_timing_factor = SQL.Column.double("ml_timing_factor") |
|
66874
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
715 |
val theory_timing_elapsed = SQL.Column.long("theory_timing_elapsed") |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
716 |
val theory_timing_cpu = SQL.Column.long("theory_timing_cpu") |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
717 |
val theory_timing_gc = SQL.Column.long("theory_timing_gc") |
65694 | 718 |
val heap_size = SQL.Column.long("heap_size") |
719 |
val status = SQL.Column.string("status") |
|
65937 | 720 |
val errors = SQL.Column.bytes("errors") |
66913 | 721 |
val sources = SQL.Column.string("sources") |
65694 | 722 |
val ml_statistics = SQL.Column.bytes("ml_statistics") |
65783
d3d5cb2d6866
pick isabelle_version based on build_log database;
wenzelm
parents:
65781
diff
changeset
|
723 |
val known = SQL.Column.bool("known") |
65694 | 724 |
|
725 |
val meta_info_table = |
|
65702 | 726 |
build_log_table("meta_info", log_name :: Prop.all_props ::: Settings.all_settings) |
65694 | 727 |
|
728 |
val sessions_table = |
|
65702 | 729 |
build_log_table("sessions", |
65694 | 730 |
List(log_name, session_name, chapter, groups, threads, timing_elapsed, timing_cpu, |
731 |
timing_gc, timing_factor, ml_timing_elapsed, ml_timing_cpu, ml_timing_gc, ml_timing_factor, |
|
66913 | 732 |
heap_size, status, errors, sources)) |
65694 | 733 |
|
66874
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
734 |
val theories_table = |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
735 |
build_log_table("theories", |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
736 |
List(log_name, session_name, theory_name, theory_timing_elapsed, theory_timing_cpu, |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
737 |
theory_timing_gc)) |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
738 |
|
65694 | 739 |
val ml_statistics_table = |
65702 | 740 |
build_log_table("ml_statistics", List(log_name, session_name, ml_statistics)) |
65694 | 741 |
|
742 |
||
66855 | 743 |
/* AFP versions */ |
744 |
||
745 |
val isabelle_afp_versions_table: SQL.Table = |
|
746 |
{ |
|
747 |
val version1 = Prop.isabelle_version |
|
748 |
val version2 = Prop.afp_version |
|
66857 | 749 |
build_log_table("isabelle_afp_versions", List(version1.make_primary_key, version2), |
66855 | 750 |
SQL.select(List(version1, version2), distinct = true) + meta_info_table + |
66856 | 751 |
" WHERE " + version1.defined + " AND " + version2.defined) |
66855 | 752 |
} |
753 |
||
754 |
||
65705 | 755 |
/* earliest pull date for repository version (PostgreSQL queries) */ |
65694 | 756 |
|
66880
486f4af28db9
more thorough treatment of afp_version and afp_pull_date;
wenzelm
parents:
66874
diff
changeset
|
757 |
def pull_date(afp: Boolean = false) = |
486f4af28db9
more thorough treatment of afp_version and afp_pull_date;
wenzelm
parents:
66874
diff
changeset
|
758 |
if (afp) SQL.Column.date("afp_pull_date") |
486f4af28db9
more thorough treatment of afp_version and afp_pull_date;
wenzelm
parents:
66874
diff
changeset
|
759 |
else SQL.Column.date("pull_date") |
65694 | 760 |
|
66863
6acd1a2bd146
clarified afp_pull_date: both repository versions are relevant;
wenzelm
parents:
66858
diff
changeset
|
761 |
def pull_date_table(afp: Boolean = false): SQL.Table = |
65709 | 762 |
{ |
66863
6acd1a2bd146
clarified afp_pull_date: both repository versions are relevant;
wenzelm
parents:
66858
diff
changeset
|
763 |
val (name, versions) = |
6acd1a2bd146
clarified afp_pull_date: both repository versions are relevant;
wenzelm
parents:
66858
diff
changeset
|
764 |
if (afp) ("afp_pull_date", List(Prop.isabelle_version, Prop.afp_version)) |
6acd1a2bd146
clarified afp_pull_date: both repository versions are relevant;
wenzelm
parents:
66858
diff
changeset
|
765 |
else ("pull_date", List(Prop.isabelle_version)) |
65694 | 766 |
|
66880
486f4af28db9
more thorough treatment of afp_version and afp_pull_date;
wenzelm
parents:
66874
diff
changeset
|
767 |
build_log_table(name, versions.map(_.make_primary_key) ::: List(pull_date(afp)), |
486f4af28db9
more thorough treatment of afp_version and afp_pull_date;
wenzelm
parents:
66874
diff
changeset
|
768 |
"SELECT " + versions.mkString(", ") + |
486f4af28db9
more thorough treatment of afp_version and afp_pull_date;
wenzelm
parents:
66874
diff
changeset
|
769 |
", min(" + Prop.build_start + ") AS " + pull_date(afp) + |
66863
6acd1a2bd146
clarified afp_pull_date: both repository versions are relevant;
wenzelm
parents:
66858
diff
changeset
|
770 |
" FROM " + meta_info_table + |
6acd1a2bd146
clarified afp_pull_date: both repository versions are relevant;
wenzelm
parents:
66858
diff
changeset
|
771 |
" WHERE " + (versions ::: List(Prop.build_start)).map(_.defined).mkString(" AND ") + |
6acd1a2bd146
clarified afp_pull_date: both repository versions are relevant;
wenzelm
parents:
66858
diff
changeset
|
772 |
" GROUP BY " + versions.mkString(", ")) |
66855 | 773 |
} |
774 |
||
775 |
||
776 |
/* recent entries */ |
|
777 |
||
65736 | 778 |
def recent_time(days: Int): SQL.Source = |
779 |
"now() - INTERVAL '" + days.max(0) + " days'" |
|
780 |
||
66863
6acd1a2bd146
clarified afp_pull_date: both repository versions are relevant;
wenzelm
parents:
66858
diff
changeset
|
781 |
def recent_pull_date_table( |
6acd1a2bd146
clarified afp_pull_date: both repository versions are relevant;
wenzelm
parents:
66858
diff
changeset
|
782 |
days: Int, rev: String = "", afp_rev: Option[String] = None): SQL.Table = |
65702 | 783 |
{ |
66863
6acd1a2bd146
clarified afp_pull_date: both repository versions are relevant;
wenzelm
parents:
66858
diff
changeset
|
784 |
val afp = afp_rev.isDefined |
6acd1a2bd146
clarified afp_pull_date: both repository versions are relevant;
wenzelm
parents:
66858
diff
changeset
|
785 |
val rev2 = afp_rev.getOrElse("") |
6acd1a2bd146
clarified afp_pull_date: both repository versions are relevant;
wenzelm
parents:
66858
diff
changeset
|
786 |
val table = pull_date_table(afp) |
6acd1a2bd146
clarified afp_pull_date: both repository versions are relevant;
wenzelm
parents:
66858
diff
changeset
|
787 |
|
6acd1a2bd146
clarified afp_pull_date: both repository versions are relevant;
wenzelm
parents:
66858
diff
changeset
|
788 |
val version1 = Prop.isabelle_version |
6acd1a2bd146
clarified afp_pull_date: both repository versions are relevant;
wenzelm
parents:
66858
diff
changeset
|
789 |
val version2 = Prop.afp_version |
6acd1a2bd146
clarified afp_pull_date: both repository versions are relevant;
wenzelm
parents:
66858
diff
changeset
|
790 |
val eq1 = version1(table) + " = " + SQL.string(rev) |
6acd1a2bd146
clarified afp_pull_date: both repository versions are relevant;
wenzelm
parents:
66858
diff
changeset
|
791 |
val eq2 = version2(table) + " = " + SQL.string(rev2) |
6acd1a2bd146
clarified afp_pull_date: both repository versions are relevant;
wenzelm
parents:
66858
diff
changeset
|
792 |
|
65777 | 793 |
SQL.Table("recent_pull_date", table.columns, |
65783
d3d5cb2d6866
pick isabelle_version based on build_log database;
wenzelm
parents:
65781
diff
changeset
|
794 |
table.select(table.columns, |
66880
486f4af28db9
more thorough treatment of afp_version and afp_pull_date;
wenzelm
parents:
66874
diff
changeset
|
795 |
"WHERE " + pull_date(afp)(table) + " > " + recent_time(days) + |
66863
6acd1a2bd146
clarified afp_pull_date: both repository versions are relevant;
wenzelm
parents:
66858
diff
changeset
|
796 |
(if (rev != "" && rev2 == "") " OR " + eq1 |
6acd1a2bd146
clarified afp_pull_date: both repository versions are relevant;
wenzelm
parents:
66858
diff
changeset
|
797 |
else if (rev == "" && rev2 != "") " OR " + eq2 |
6acd1a2bd146
clarified afp_pull_date: both repository versions are relevant;
wenzelm
parents:
66858
diff
changeset
|
798 |
else if (rev != "" && rev2 != "") " OR (" + eq1 + " AND " + eq2 + ")" |
6acd1a2bd146
clarified afp_pull_date: both repository versions are relevant;
wenzelm
parents:
66858
diff
changeset
|
799 |
else ""))) |
65702 | 800 |
} |
65694 | 801 |
|
65781 | 802 |
def select_recent_log_names(days: Int): SQL.Source = |
803 |
{ |
|
804 |
val table1 = meta_info_table |
|
805 |
val table2 = recent_pull_date_table(days) |
|
806 |
table1.select(List(log_name), distinct = true) + SQL.join_inner + table2.query_named + |
|
807 |
" ON " + Prop.isabelle_version(table1) + " = " + Prop.isabelle_version(table2) |
|
808 |
} |
|
809 |
||
66863
6acd1a2bd146
clarified afp_pull_date: both repository versions are relevant;
wenzelm
parents:
66858
diff
changeset
|
810 |
def select_recent_versions(days: Int, |
6acd1a2bd146
clarified afp_pull_date: both repository versions are relevant;
wenzelm
parents:
66858
diff
changeset
|
811 |
rev: String = "", afp_rev: Option[String] = None, sql: SQL.Source = ""): SQL.Source = |
65783
d3d5cb2d6866
pick isabelle_version based on build_log database;
wenzelm
parents:
65781
diff
changeset
|
812 |
{ |
66880
486f4af28db9
more thorough treatment of afp_version and afp_pull_date;
wenzelm
parents:
66874
diff
changeset
|
813 |
val afp = afp_rev.isDefined |
66858 | 814 |
val version = Prop.isabelle_version |
66863
6acd1a2bd146
clarified afp_pull_date: both repository versions are relevant;
wenzelm
parents:
66858
diff
changeset
|
815 |
val table1 = recent_pull_date_table(days, rev = rev, afp_rev = afp_rev) |
65783
d3d5cb2d6866
pick isabelle_version based on build_log database;
wenzelm
parents:
65781
diff
changeset
|
816 |
val table2 = meta_info_table |
d3d5cb2d6866
pick isabelle_version based on build_log database;
wenzelm
parents:
65781
diff
changeset
|
817 |
val aux_table = SQL.Table("aux", table2.columns, table2.select(sql = sql)) |
d3d5cb2d6866
pick isabelle_version based on build_log database;
wenzelm
parents:
65781
diff
changeset
|
818 |
|
d3d5cb2d6866
pick isabelle_version based on build_log database;
wenzelm
parents:
65781
diff
changeset
|
819 |
val columns = |
66858 | 820 |
table1.columns.map(c => c(table1)) ::: |
821 |
List(known.copy(expr = log_name(aux_table).defined)) |
|
65783
d3d5cb2d6866
pick isabelle_version based on build_log database;
wenzelm
parents:
65781
diff
changeset
|
822 |
SQL.select(columns, distinct = true) + |
d3d5cb2d6866
pick isabelle_version based on build_log database;
wenzelm
parents:
65781
diff
changeset
|
823 |
table1.query_named + SQL.join_outer + aux_table.query_named + |
66858 | 824 |
" ON " + version(table1) + " = " + version(aux_table) + |
66880
486f4af28db9
more thorough treatment of afp_version and afp_pull_date;
wenzelm
parents:
66874
diff
changeset
|
825 |
" ORDER BY " + pull_date(afp)(table1) + " DESC" |
65783
d3d5cb2d6866
pick isabelle_version based on build_log database;
wenzelm
parents:
65781
diff
changeset
|
826 |
} |
d3d5cb2d6866
pick isabelle_version based on build_log database;
wenzelm
parents:
65781
diff
changeset
|
827 |
|
65724 | 828 |
|
829 |
/* universal view on main data */ |
|
830 |
||
831 |
val universal_table: SQL.Table = |
|
832 |
{ |
|
66880
486f4af28db9
more thorough treatment of afp_version and afp_pull_date;
wenzelm
parents:
66874
diff
changeset
|
833 |
val afp_pull_date = pull_date(afp = true) |
486f4af28db9
more thorough treatment of afp_version and afp_pull_date;
wenzelm
parents:
66874
diff
changeset
|
834 |
val version1 = Prop.isabelle_version |
486f4af28db9
more thorough treatment of afp_version and afp_pull_date;
wenzelm
parents:
66874
diff
changeset
|
835 |
val version2 = Prop.afp_version |
65724 | 836 |
val table1 = meta_info_table |
66880
486f4af28db9
more thorough treatment of afp_version and afp_pull_date;
wenzelm
parents:
66874
diff
changeset
|
837 |
val table2 = pull_date_table(afp = true) |
486f4af28db9
more thorough treatment of afp_version and afp_pull_date;
wenzelm
parents:
66874
diff
changeset
|
838 |
val table3 = pull_date_table() |
65724 | 839 |
|
66880
486f4af28db9
more thorough treatment of afp_version and afp_pull_date;
wenzelm
parents:
66874
diff
changeset
|
840 |
val a_columns = log_name :: afp_pull_date :: table1.columns.tail |
65850
5414c14c3984
clarified universal table: include ml_statistics;
wenzelm
parents:
65804
diff
changeset
|
841 |
val a_table = |
5414c14c3984
clarified universal table: include ml_statistics;
wenzelm
parents:
65804
diff
changeset
|
842 |
SQL.Table("a", a_columns, |
66880
486f4af28db9
more thorough treatment of afp_version and afp_pull_date;
wenzelm
parents:
66874
diff
changeset
|
843 |
SQL.select(List(log_name, afp_pull_date) ::: table1.columns.tail.map(_.apply(table1))) + |
486f4af28db9
more thorough treatment of afp_version and afp_pull_date;
wenzelm
parents:
66874
diff
changeset
|
844 |
table1 + SQL.join_outer + table2 + |
486f4af28db9
more thorough treatment of afp_version and afp_pull_date;
wenzelm
parents:
66874
diff
changeset
|
845 |
" ON " + version1(table1) + " = " + version1(table2) + |
486f4af28db9
more thorough treatment of afp_version and afp_pull_date;
wenzelm
parents:
66874
diff
changeset
|
846 |
" AND " + version2(table1) + " = " + version2(table2)) |
65724 | 847 |
|
66880
486f4af28db9
more thorough treatment of afp_version and afp_pull_date;
wenzelm
parents:
66874
diff
changeset
|
848 |
val b_columns = log_name :: pull_date() :: a_columns.tail |
65850
5414c14c3984
clarified universal table: include ml_statistics;
wenzelm
parents:
65804
diff
changeset
|
849 |
val b_table = |
5414c14c3984
clarified universal table: include ml_statistics;
wenzelm
parents:
65804
diff
changeset
|
850 |
SQL.Table("b", b_columns, |
66880
486f4af28db9
more thorough treatment of afp_version and afp_pull_date;
wenzelm
parents:
66874
diff
changeset
|
851 |
SQL.select( |
486f4af28db9
more thorough treatment of afp_version and afp_pull_date;
wenzelm
parents:
66874
diff
changeset
|
852 |
List(log_name(a_table), pull_date()(table3)) ::: a_columns.tail.map(_.apply(a_table))) + |
486f4af28db9
more thorough treatment of afp_version and afp_pull_date;
wenzelm
parents:
66874
diff
changeset
|
853 |
a_table.query_named + SQL.join_outer + table3 + |
486f4af28db9
more thorough treatment of afp_version and afp_pull_date;
wenzelm
parents:
66874
diff
changeset
|
854 |
" ON " + version1(a_table) + " = " + version1(table3)) |
65850
5414c14c3984
clarified universal table: include ml_statistics;
wenzelm
parents:
65804
diff
changeset
|
855 |
|
66880
486f4af28db9
more thorough treatment of afp_version and afp_pull_date;
wenzelm
parents:
66874
diff
changeset
|
856 |
val c_columns = b_columns ::: sessions_table.columns.tail |
486f4af28db9
more thorough treatment of afp_version and afp_pull_date;
wenzelm
parents:
66874
diff
changeset
|
857 |
val c_table = |
486f4af28db9
more thorough treatment of afp_version and afp_pull_date;
wenzelm
parents:
66874
diff
changeset
|
858 |
SQL.Table("c", c_columns, |
486f4af28db9
more thorough treatment of afp_version and afp_pull_date;
wenzelm
parents:
66874
diff
changeset
|
859 |
SQL.select(log_name(b_table) :: c_columns.tail) + |
486f4af28db9
more thorough treatment of afp_version and afp_pull_date;
wenzelm
parents:
66874
diff
changeset
|
860 |
b_table.query_named + SQL.join_inner + sessions_table + |
486f4af28db9
more thorough treatment of afp_version and afp_pull_date;
wenzelm
parents:
66874
diff
changeset
|
861 |
" ON " + log_name(b_table) + " = " + log_name(sessions_table)) |
486f4af28db9
more thorough treatment of afp_version and afp_pull_date;
wenzelm
parents:
66874
diff
changeset
|
862 |
|
486f4af28db9
more thorough treatment of afp_version and afp_pull_date;
wenzelm
parents:
66874
diff
changeset
|
863 |
SQL.Table("isabelle_build_log", c_columns ::: List(ml_statistics), |
65724 | 864 |
{ |
66880
486f4af28db9
more thorough treatment of afp_version and afp_pull_date;
wenzelm
parents:
66874
diff
changeset
|
865 |
SQL.select(c_columns.map(_.apply(c_table)) ::: List(ml_statistics)) + |
486f4af28db9
more thorough treatment of afp_version and afp_pull_date;
wenzelm
parents:
66874
diff
changeset
|
866 |
c_table.query_named + SQL.join_outer + ml_statistics_table + |
486f4af28db9
more thorough treatment of afp_version and afp_pull_date;
wenzelm
parents:
66874
diff
changeset
|
867 |
" ON " + log_name(c_table) + " = " + log_name(ml_statistics_table) + |
486f4af28db9
more thorough treatment of afp_version and afp_pull_date;
wenzelm
parents:
66874
diff
changeset
|
868 |
" AND " + session_name(c_table) + " = " + session_name(ml_statistics_table) |
65724 | 869 |
}) |
870 |
} |
|
65694 | 871 |
} |
872 |
||
873 |
||
874 |
/* database access */ |
|
875 |
||
65595 | 876 |
def store(options: Options): Store = new Store(options) |
877 |
||
65857 | 878 |
class Store private[Build_Log](options: Options) |
65595 | 879 |
{ |
68169 | 880 |
val xml_cache: XML.Cache = XML.make_cache() |
68018 | 881 |
val xz_cache: XZ.Cache = XZ.make_cache() |
65857 | 882 |
|
65595 | 883 |
def open_database( |
884 |
user: String = options.string("build_log_database_user"), |
|
885 |
password: String = options.string("build_log_database_password"), |
|
886 |
database: String = options.string("build_log_database_name"), |
|
887 |
host: String = options.string("build_log_database_host"), |
|
888 |
port: Int = options.int("build_log_database_port"), |
|
889 |
ssh_host: String = options.string("build_log_ssh_host"), |
|
890 |
ssh_user: String = options.string("build_log_ssh_user"), |
|
891 |
ssh_port: Int = options.int("build_log_ssh_port")): PostgreSQL.Database = |
|
892 |
{ |
|
893 |
PostgreSQL.open_database( |
|
894 |
user = user, password = password, database = database, host = host, port = port, |
|
895 |
ssh = |
|
896 |
if (ssh_host == "") None |
|
67067 | 897 |
else Some(SSH.open_session(options, host = ssh_host, user = ssh_user, port = port)), |
65636
df804cdba5f9
ssh_close for proper termination after use of database;
wenzelm
parents:
65633
diff
changeset
|
898 |
ssh_close = true) |
65595 | 899 |
} |
65599 | 900 |
|
65723
3ee466e89047
clarified signature: PostgreSQL manages high-volume data, SQLite only sees small snapshots;
wenzelm
parents:
65722
diff
changeset
|
901 |
def update_database(db: PostgreSQL.Database, dirs: List[Path], ml_statistics: Boolean = false) |
65694 | 902 |
{ |
69299
2fd070377c99
clarified default (amending 72a9860f8602): avoid implicit change of File.find_files (it can have bad effects e.g. on "isabelle update_cartouches");
wenzelm
parents:
68169
diff
changeset
|
903 |
val log_files = |
2fd070377c99
clarified default (amending 72a9860f8602): avoid implicit change of File.find_files (it can have bad effects e.g. on "isabelle update_cartouches");
wenzelm
parents:
68169
diff
changeset
|
904 |
dirs.flatMap(dir => |
2fd070377c99
clarified default (amending 72a9860f8602): avoid implicit change of File.find_files (it can have bad effects e.g. on "isabelle update_cartouches");
wenzelm
parents:
68169
diff
changeset
|
905 |
File.find_files(dir.file, pred = Log_File.is_log(_), follow_links = true)) |
2fd070377c99
clarified default (amending 72a9860f8602): avoid implicit change of File.find_files (it can have bad effects e.g. on "isabelle update_cartouches");
wenzelm
parents:
68169
diff
changeset
|
906 |
write_info(db, log_files, ml_statistics = ml_statistics) |
65694 | 907 |
|
66863
6acd1a2bd146
clarified afp_pull_date: both repository versions are relevant;
wenzelm
parents:
66858
diff
changeset
|
908 |
db.create_view(Data.pull_date_table()) |
6acd1a2bd146
clarified afp_pull_date: both repository versions are relevant;
wenzelm
parents:
66858
diff
changeset
|
909 |
db.create_view(Data.pull_date_table(afp = true)) |
65724 | 910 |
db.create_view(Data.universal_table) |
65694 | 911 |
} |
912 |
||
65723
3ee466e89047
clarified signature: PostgreSQL manages high-volume data, SQLite only sees small snapshots;
wenzelm
parents:
65722
diff
changeset
|
913 |
def snapshot_database(db: PostgreSQL.Database, sqlite_database: Path, |
65705 | 914 |
days: Int = 100, ml_statistics: Boolean = false) |
65694 | 915 |
{ |
916 |
Isabelle_System.mkdirs(sqlite_database.dir) |
|
917 |
sqlite_database.file.delete |
|
918 |
||
919 |
using(SQLite.open_database(sqlite_database))(db2 => |
|
920 |
{ |
|
921 |
db.transaction { |
|
922 |
db2.transaction { |
|
65705 | 923 |
// main content |
924 |
db2.create_table(Data.meta_info_table) |
|
925 |
db2.create_table(Data.sessions_table) |
|
66874
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
926 |
db2.create_table(Data.theories_table) |
65705 | 927 |
db2.create_table(Data.ml_statistics_table) |
928 |
||
929 |
val recent_log_names = |
|
65781 | 930 |
db.using_statement(Data.select_recent_log_names(days))(stmt => |
65779 | 931 |
stmt.execute_query().iterator(_.string(Data.log_name)).toList) |
65705 | 932 |
|
933 |
for (log_name <- recent_log_names) { |
|
934 |
read_meta_info(db, log_name).foreach(meta_info => |
|
935 |
update_meta_info(db2, log_name, meta_info)) |
|
936 |
||
937 |
update_sessions(db2, log_name, read_build_info(db, log_name)) |
|
938 |
||
65856 | 939 |
if (ml_statistics) { |
940 |
update_ml_statistics(db2, log_name, |
|
941 |
read_build_info(db, log_name, ml_statistics = true)) |
|
942 |
} |
|
65705 | 943 |
} |
944 |
||
945 |
// pull_date |
|
66880
486f4af28db9
more thorough treatment of afp_version and afp_pull_date;
wenzelm
parents:
66874
diff
changeset
|
946 |
for (afp <- List(false, true)) |
65694 | 947 |
{ |
66880
486f4af28db9
more thorough treatment of afp_version and afp_pull_date;
wenzelm
parents:
66874
diff
changeset
|
948 |
val afp_rev = if (afp) Some("") else None |
486f4af28db9
more thorough treatment of afp_version and afp_pull_date;
wenzelm
parents:
66874
diff
changeset
|
949 |
val table = Data.pull_date_table(afp) |
65694 | 950 |
db2.create_table(table) |
65698 | 951 |
db2.using_statement(table.insert())(stmt2 => |
65694 | 952 |
{ |
66880
486f4af28db9
more thorough treatment of afp_version and afp_pull_date;
wenzelm
parents:
66874
diff
changeset
|
953 |
db.using_statement( |
486f4af28db9
more thorough treatment of afp_version and afp_pull_date;
wenzelm
parents:
66874
diff
changeset
|
954 |
Data.recent_pull_date_table(days, afp_rev = afp_rev).query)(stmt => |
65694 | 955 |
{ |
65740 | 956 |
val res = stmt.execute_query() |
957 |
while (res.next()) { |
|
65748 | 958 |
for ((c, i) <- table.columns.zipWithIndex) { |
959 |
stmt2.string(i + 1) = res.get_string(c) |
|
960 |
} |
|
65740 | 961 |
stmt2.execute() |
65694 | 962 |
} |
963 |
}) |
|
964 |
}) |
|
65709 | 965 |
} |
65705 | 966 |
|
967 |
// full view |
|
65724 | 968 |
db2.create_view(Data.universal_table) |
65694 | 969 |
} |
970 |
} |
|
65708 | 971 |
db2.rebuild |
65694 | 972 |
}) |
973 |
} |
|
974 |
||
65688 | 975 |
def domain(db: SQL.Database, table: SQL.Table, column: SQL.Column): Set[String] = |
65698 | 976 |
db.using_statement(table.select(List(column), distinct = true))(stmt => |
65740 | 977 |
stmt.execute_query().iterator(_.string(column)).toSet) |
65688 | 978 |
|
65705 | 979 |
def update_meta_info(db: SQL.Database, log_name: String, meta_info: Meta_Info) |
65632 | 980 |
{ |
65694 | 981 |
val table = Data.meta_info_table |
65703
cead65c19f2e
more direct insert_permissive statement, which avoids somewhat fragile nested transactions;
wenzelm
parents:
65702
diff
changeset
|
982 |
db.using_statement(db.insert_permissive(table))(stmt => |
cead65c19f2e
more direct insert_permissive statement, which avoids somewhat fragile nested transactions;
wenzelm
parents:
65702
diff
changeset
|
983 |
{ |
65748 | 984 |
stmt.string(1) = log_name |
65703
cead65c19f2e
more direct insert_permissive statement, which avoids somewhat fragile nested transactions;
wenzelm
parents:
65702
diff
changeset
|
985 |
for ((c, i) <- table.columns.tail.zipWithIndex) { |
cead65c19f2e
more direct insert_permissive statement, which avoids somewhat fragile nested transactions;
wenzelm
parents:
65702
diff
changeset
|
986 |
if (c.T == SQL.Type.Date) |
65748 | 987 |
stmt.date(i + 2) = meta_info.get_date(c) |
65703
cead65c19f2e
more direct insert_permissive statement, which avoids somewhat fragile nested transactions;
wenzelm
parents:
65702
diff
changeset
|
988 |
else |
65748 | 989 |
stmt.string(i + 2) = meta_info.get(c) |
65703
cead65c19f2e
more direct insert_permissive statement, which avoids somewhat fragile nested transactions;
wenzelm
parents:
65702
diff
changeset
|
990 |
} |
cead65c19f2e
more direct insert_permissive statement, which avoids somewhat fragile nested transactions;
wenzelm
parents:
65702
diff
changeset
|
991 |
stmt.execute() |
cead65c19f2e
more direct insert_permissive statement, which avoids somewhat fragile nested transactions;
wenzelm
parents:
65702
diff
changeset
|
992 |
}) |
65600 | 993 |
} |
994 |
||
65705 | 995 |
def update_sessions(db: SQL.Database, log_name: String, build_info: Build_Info) |
65599 | 996 |
{ |
65694 | 997 |
val table = Data.sessions_table |
65703
cead65c19f2e
more direct insert_permissive statement, which avoids somewhat fragile nested transactions;
wenzelm
parents:
65702
diff
changeset
|
998 |
db.using_statement(db.insert_permissive(table))(stmt => |
cead65c19f2e
more direct insert_permissive statement, which avoids somewhat fragile nested transactions;
wenzelm
parents:
65702
diff
changeset
|
999 |
{ |
66874
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
1000 |
val sessions = |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
1001 |
if (build_info.sessions.isEmpty) Build_Info.sessions_dummy |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
1002 |
else build_info.sessions |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
1003 |
for ((session_name, session) <- sessions) { |
65748 | 1004 |
stmt.string(1) = log_name |
1005 |
stmt.string(2) = session_name |
|
65853 | 1006 |
stmt.string(3) = proper_string(session.chapter) |
65748 | 1007 |
stmt.string(4) = session.proper_groups |
1008 |
stmt.int(5) = session.threads |
|
1009 |
stmt.long(6) = session.timing.elapsed.proper_ms |
|
1010 |
stmt.long(7) = session.timing.cpu.proper_ms |
|
1011 |
stmt.long(8) = session.timing.gc.proper_ms |
|
1012 |
stmt.double(9) = session.timing.factor |
|
1013 |
stmt.long(10) = session.ml_timing.elapsed.proper_ms |
|
1014 |
stmt.long(11) = session.ml_timing.cpu.proper_ms |
|
1015 |
stmt.long(12) = session.ml_timing.gc.proper_ms |
|
1016 |
stmt.double(13) = session.ml_timing.factor |
|
1017 |
stmt.long(14) = session.heap_size |
|
1018 |
stmt.string(15) = session.status.map(_.toString) |
|
68018 | 1019 |
stmt.bytes(16) = compress_errors(session.errors, cache = xz_cache) |
66913 | 1020 |
stmt.string(17) = session.sources |
65703
cead65c19f2e
more direct insert_permissive statement, which avoids somewhat fragile nested transactions;
wenzelm
parents:
65702
diff
changeset
|
1021 |
stmt.execute() |
cead65c19f2e
more direct insert_permissive statement, which avoids somewhat fragile nested transactions;
wenzelm
parents:
65702
diff
changeset
|
1022 |
} |
cead65c19f2e
more direct insert_permissive statement, which avoids somewhat fragile nested transactions;
wenzelm
parents:
65702
diff
changeset
|
1023 |
}) |
65642 | 1024 |
} |
1025 |
||
66874
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
1026 |
def update_theories(db: SQL.Database, log_name: String, build_info: Build_Info) |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
1027 |
{ |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
1028 |
val table = Data.theories_table |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
1029 |
db.using_statement(db.insert_permissive(table))(stmt => |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
1030 |
{ |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
1031 |
val sessions = |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
1032 |
if (build_info.sessions.forall({ case (_, session) => session.theory_timings.isEmpty })) |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
1033 |
Build_Info.sessions_dummy |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
1034 |
else build_info.sessions |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
1035 |
for { |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
1036 |
(session_name, session) <- sessions |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
1037 |
(theory_name, timing) <- session.theory_timings |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
1038 |
} { |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
1039 |
stmt.string(1) = log_name |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
1040 |
stmt.string(2) = session_name |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
1041 |
stmt.string(3) = theory_name |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
1042 |
stmt.long(4) = timing.elapsed.ms |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
1043 |
stmt.long(5) = timing.cpu.ms |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
1044 |
stmt.long(6) = timing.gc.ms |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
1045 |
stmt.execute() |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
1046 |
} |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
1047 |
}) |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
1048 |
} |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
1049 |
|
65705 | 1050 |
def update_ml_statistics(db: SQL.Database, log_name: String, build_info: Build_Info) |
65645
2c704ae04db1
clarified database layout: bulky ml_statistics are stored/retrieved separately;
wenzelm
parents:
65643
diff
changeset
|
1051 |
{ |
65694 | 1052 |
val table = Data.ml_statistics_table |
65703
cead65c19f2e
more direct insert_permissive statement, which avoids somewhat fragile nested transactions;
wenzelm
parents:
65702
diff
changeset
|
1053 |
db.using_statement(db.insert_permissive(table))(stmt => |
cead65c19f2e
more direct insert_permissive statement, which avoids somewhat fragile nested transactions;
wenzelm
parents:
65702
diff
changeset
|
1054 |
{ |
cead65c19f2e
more direct insert_permissive statement, which avoids somewhat fragile nested transactions;
wenzelm
parents:
65702
diff
changeset
|
1055 |
val ml_stats: List[(String, Option[Bytes])] = |
cead65c19f2e
more direct insert_permissive statement, which avoids somewhat fragile nested transactions;
wenzelm
parents:
65702
diff
changeset
|
1056 |
Par_List.map[(String, Session_Entry), (String, Option[Bytes])]( |
68018 | 1057 |
{ case (a, b) => (a, Properties.compress(b.ml_statistics, cache = xz_cache).proper) }, |
65703
cead65c19f2e
more direct insert_permissive statement, which avoids somewhat fragile nested transactions;
wenzelm
parents:
65702
diff
changeset
|
1058 |
build_info.sessions.iterator.filter(p => p._2.ml_statistics.nonEmpty).toList) |
cead65c19f2e
more direct insert_permissive statement, which avoids somewhat fragile nested transactions;
wenzelm
parents:
65702
diff
changeset
|
1059 |
val entries = if (ml_stats.nonEmpty) ml_stats else List("" -> None) |
cead65c19f2e
more direct insert_permissive statement, which avoids somewhat fragile nested transactions;
wenzelm
parents:
65702
diff
changeset
|
1060 |
for ((session_name, ml_statistics) <- entries) { |
65748 | 1061 |
stmt.string(1) = log_name |
1062 |
stmt.string(2) = session_name |
|
1063 |
stmt.bytes(3) = ml_statistics |
|
65703
cead65c19f2e
more direct insert_permissive statement, which avoids somewhat fragile nested transactions;
wenzelm
parents:
65702
diff
changeset
|
1064 |
stmt.execute() |
cead65c19f2e
more direct insert_permissive statement, which avoids somewhat fragile nested transactions;
wenzelm
parents:
65702
diff
changeset
|
1065 |
} |
cead65c19f2e
more direct insert_permissive statement, which avoids somewhat fragile nested transactions;
wenzelm
parents:
65702
diff
changeset
|
1066 |
}) |
65645
2c704ae04db1
clarified database layout: bulky ml_statistics are stored/retrieved separately;
wenzelm
parents:
65643
diff
changeset
|
1067 |
} |
2c704ae04db1
clarified database layout: bulky ml_statistics are stored/retrieved separately;
wenzelm
parents:
65643
diff
changeset
|
1068 |
|
2c704ae04db1
clarified database layout: bulky ml_statistics are stored/retrieved separately;
wenzelm
parents:
65643
diff
changeset
|
1069 |
def write_info(db: SQL.Database, files: List[JFile], ml_statistics: Boolean = false) |
65642 | 1070 |
{ |
65705 | 1071 |
abstract class Table_Status(table: SQL.Table) |
65642 | 1072 |
{ |
65688 | 1073 |
db.create_table(table) |
65694 | 1074 |
private var known: Set[String] = domain(db, table, Data.log_name) |
65688 | 1075 |
|
65642 | 1076 |
def required(file: JFile): Boolean = !known(Log_File.plain_name(file.getName)) |
65705 | 1077 |
|
1078 |
def update_db(db: SQL.Database, log_file: Log_File): Unit |
|
65642 | 1079 |
def update(log_file: Log_File) |
1080 |
{ |
|
1081 |
if (!known(log_file.name)) { |
|
1082 |
update_db(db, log_file) |
|
1083 |
known += log_file.name |
|
65618 | 1084 |
} |
65614
325801edb37d
clarified transaction boundaries: more robust incremental write operations;
wenzelm
parents:
65613
diff
changeset
|
1085 |
} |
65605 | 1086 |
} |
65642 | 1087 |
val status = |
1088 |
List( |
|
65705 | 1089 |
new Table_Status(Data.meta_info_table) { |
1090 |
override def update_db(db: SQL.Database, log_file: Log_File): Unit = |
|
1091 |
update_meta_info(db, log_file.name, log_file.parse_meta_info()) |
|
1092 |
}, |
|
1093 |
new Table_Status(Data.sessions_table) { |
|
1094 |
override def update_db(db: SQL.Database, log_file: Log_File): Unit = |
|
1095 |
update_sessions(db, log_file.name, log_file.parse_build_info()) |
|
1096 |
}, |
|
66874
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
1097 |
new Table_Status(Data.theories_table) { |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
1098 |
override def update_db(db: SQL.Database, log_file: Log_File): Unit = |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
1099 |
update_theories(db, log_file.name, log_file.parse_build_info()) |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
1100 |
}, |
65705 | 1101 |
new Table_Status(Data.ml_statistics_table) { |
1102 |
override def update_db(db: SQL.Database, log_file: Log_File): Unit = |
|
1103 |
if (ml_statistics) { |
|
1104 |
update_ml_statistics(db, log_file.name, |
|
1105 |
log_file.parse_build_info(ml_statistics = true)) |
|
1106 |
} |
|
1107 |
}) |
|
65642 | 1108 |
|
67743 | 1109 |
for (file_group <- |
1110 |
files.filter(file => status.exists(_.required(file))). |
|
1111 |
grouped(options.int("build_log_transaction_size") max 1)) |
|
1112 |
{ |
|
65642 | 1113 |
val log_files = Par_List.map[JFile, Log_File](Log_File.apply _, file_group) |
1114 |
db.transaction { log_files.foreach(log_file => status.foreach(_.update(log_file))) } |
|
1115 |
} |
|
65605 | 1116 |
} |
1117 |
||
65621 | 1118 |
def read_meta_info(db: SQL.Database, log_name: String): Option[Meta_Info] = |
1119 |
{ |
|
65694 | 1120 |
val table = Data.meta_info_table |
65642 | 1121 |
val columns = table.columns.tail |
65699 | 1122 |
db.using_statement(table.select(columns, Data.log_name.where_equal(log_name)))(stmt => |
65621 | 1123 |
{ |
65740 | 1124 |
val res = stmt.execute_query() |
1125 |
if (!res.next) None |
|
65621 | 1126 |
else { |
1127 |
val results = |
|
65642 | 1128 |
columns.map(c => c.name -> |
65621 | 1129 |
(if (c.T == SQL.Type.Date) |
65740 | 1130 |
res.get_date(c).map(Log_File.Date_Format(_)) |
65621 | 1131 |
else |
65740 | 1132 |
res.get_string(c))) |
65621 | 1133 |
val n = Prop.all_props.length |
1134 |
val props = for ((x, Some(y)) <- results.take(n)) yield (x, y) |
|
1135 |
val settings = for ((x, Some(y)) <- results.drop(n)) yield (x, y) |
|
1136 |
Some(Meta_Info(props, settings)) |
|
1137 |
} |
|
1138 |
}) |
|
1139 |
} |
|
1140 |
||
1141 |
def read_build_info( |
|
65629 | 1142 |
db: SQL.Database, |
1143 |
log_name: String, |
|
1144 |
session_names: List[String] = Nil, |
|
1145 |
ml_statistics: Boolean = false): Build_Info = |
|
65621 | 1146 |
{ |
65694 | 1147 |
val table1 = Data.sessions_table |
1148 |
val table2 = Data.ml_statistics_table |
|
65629 | 1149 |
|
65645
2c704ae04db1
clarified database layout: bulky ml_statistics are stored/retrieved separately;
wenzelm
parents:
65643
diff
changeset
|
1150 |
val where_log_name = |
65699 | 1151 |
Data.log_name(table1).where_equal(log_name) + " AND " + |
65701 | 1152 |
Data.session_name(table1) + " <> ''" |
65621 | 1153 |
val where = |
65645
2c704ae04db1
clarified database layout: bulky ml_statistics are stored/retrieved separately;
wenzelm
parents:
65643
diff
changeset
|
1154 |
if (session_names.isEmpty) where_log_name |
65804 | 1155 |
else where_log_name + " AND " + SQL.member(Data.session_name(table1).ident, session_names) |
65629 | 1156 |
|
65645
2c704ae04db1
clarified database layout: bulky ml_statistics are stored/retrieved separately;
wenzelm
parents:
65643
diff
changeset
|
1157 |
val columns1 = table1.columns.tail.map(_.apply(table1)) |
2c704ae04db1
clarified database layout: bulky ml_statistics are stored/retrieved separately;
wenzelm
parents:
65643
diff
changeset
|
1158 |
val (columns, from) = |
2c704ae04db1
clarified database layout: bulky ml_statistics are stored/retrieved separately;
wenzelm
parents:
65643
diff
changeset
|
1159 |
if (ml_statistics) { |
65694 | 1160 |
val columns = columns1 ::: List(Data.ml_statistics(table2)) |
65668 | 1161 |
val join = |
65775 | 1162 |
table1 + SQL.join_outer + table2 + " ON " + |
65738 | 1163 |
Data.log_name(table1) + " = " + Data.log_name(table2) + " AND " + |
1164 |
Data.session_name(table1) + " = " + Data.session_name(table2) |
|
65668 | 1165 |
(columns, SQL.enclose(join)) |
65645
2c704ae04db1
clarified database layout: bulky ml_statistics are stored/retrieved separately;
wenzelm
parents:
65643
diff
changeset
|
1166 |
} |
65695 | 1167 |
else (columns1, table1.ident) |
65645
2c704ae04db1
clarified database layout: bulky ml_statistics are stored/retrieved separately;
wenzelm
parents:
65643
diff
changeset
|
1168 |
|
65621 | 1169 |
val sessions = |
65698 | 1170 |
db.using_statement(SQL.select(columns) + from + " " + where)(stmt => |
65621 | 1171 |
{ |
65740 | 1172 |
stmt.execute_query().iterator(res => |
65621 | 1173 |
{ |
65740 | 1174 |
val session_name = res.string(Data.session_name) |
65626 | 1175 |
val session_entry = |
1176 |
Session_Entry( |
|
65740 | 1177 |
chapter = res.string(Data.chapter), |
1178 |
groups = split_lines(res.string(Data.groups)), |
|
1179 |
threads = res.get_int(Data.threads), |
|
65741 | 1180 |
timing = res.timing(Data.timing_elapsed, Data.timing_cpu, Data.timing_gc), |
65626 | 1181 |
ml_timing = |
65741 | 1182 |
res.timing(Data.ml_timing_elapsed, Data.ml_timing_cpu, Data.ml_timing_gc), |
66913 | 1183 |
sources = res.get_string(Data.sources), |
65740 | 1184 |
heap_size = res.get_long(Data.heap_size), |
1185 |
status = res.get_string(Data.status).map(Session_Status.withName(_)), |
|
68018 | 1186 |
errors = uncompress_errors(res.bytes(Data.errors), cache = xz_cache), |
65629 | 1187 |
ml_statistics = |
68018 | 1188 |
if (ml_statistics) { |
1189 |
Properties.uncompress( |
|
1190 |
res.bytes(Data.ml_statistics), cache = xz_cache, Some(xml_cache)) |
|
1191 |
} |
|
65629 | 1192 |
else Nil) |
65626 | 1193 |
session_name -> session_entry |
65621 | 1194 |
}).toMap |
1195 |
}) |
|
1196 |
Build_Info(sessions) |
|
1197 |
} |
|
65595 | 1198 |
} |
64045 | 1199 |
} |