author | wenzelm |
Sun, 19 Nov 2023 12:46:41 +0100 | |
changeset 78991 | ae2f5fd0bb5d |
parent 78985 | 24e686fe043e |
child 78992 | bd250213c262 |
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 |
||
75393 | 19 |
object Build_Log { |
64298 | 20 |
/** content **/ |
64101 | 21 |
|
64298 | 22 |
/* properties */ |
64150 | 23 |
|
75393 | 24 |
object Prop { |
65624 | 25 |
val build_tags = SQL.Column.string("build_tags") // lines |
26 |
val build_args = SQL.Column.string("build_args") // lines |
|
65591 | 27 |
val build_group_id = SQL.Column.string("build_group_id") |
28 |
val build_id = SQL.Column.string("build_id") |
|
29 |
val build_engine = SQL.Column.string("build_engine") |
|
30 |
val build_host = SQL.Column.string("build_host") |
|
31 |
val build_start = SQL.Column.date("build_start") |
|
32 |
val build_end = SQL.Column.date("build_end") |
|
33 |
val isabelle_version = SQL.Column.string("isabelle_version") |
|
34 |
val afp_version = SQL.Column.string("afp_version") |
|
35 |
||
65611 | 36 |
val all_props: List[SQL.Column] = |
65591 | 37 |
List(build_tags, build_args, build_group_id, build_id, build_engine, |
38 |
build_host, build_start, build_end, isabelle_version, afp_version) |
|
64298 | 39 |
} |
64150 | 40 |
|
41 |
||
64298 | 42 |
/* settings */ |
64080 | 43 |
|
75393 | 44 |
object Settings { |
65611 | 45 |
val ISABELLE_BUILD_OPTIONS = SQL.Column.string("ISABELLE_BUILD_OPTIONS") |
46 |
val ML_PLATFORM = SQL.Column.string("ML_PLATFORM") |
|
47 |
val ML_HOME = SQL.Column.string("ML_HOME") |
|
48 |
val ML_SYSTEM = SQL.Column.string("ML_SYSTEM") |
|
49 |
val ML_OPTIONS = SQL.Column.string("ML_OPTIONS") |
|
50 |
||
51 |
val ml_settings = List(ML_PLATFORM, ML_HOME, ML_SYSTEM, ML_OPTIONS) |
|
52 |
val all_settings = ISABELLE_BUILD_OPTIONS :: ml_settings |
|
64081 | 53 |
|
54 |
type Entry = (String, String) |
|
55 |
type T = List[Entry] |
|
64080 | 56 |
|
75393 | 57 |
object Entry { |
64081 | 58 |
def unapply(s: String): Option[Entry] = |
73712 | 59 |
for { (a, b) <- Properties.Eq.unapply(s) } |
60 |
yield (a, Library.perhaps_unquote(b)) |
|
73713 | 61 |
def getenv(a: String): String = |
73715
bf51c23f3f99
clarified signature -- avoid odd warning about scala/bug#6675;
wenzelm
parents:
73713
diff
changeset
|
62 |
Properties.Eq(a, quote(Isabelle_System.getenv(a))) |
64081 | 63 |
} |
64080 | 64 |
|
71992 | 65 |
def show(): String = |
64081 | 66 |
cat_lines( |
71992 | 67 |
List(Entry.getenv("ISABELLE_TOOL_JAVA_OPTIONS"), |
68 |
Entry.getenv(ISABELLE_BUILD_OPTIONS.name), "") ::: |
|
65611 | 69 |
ml_settings.map(c => Entry.getenv(c.name))) |
64080 | 70 |
} |
71 |
||
72 |
||
64298 | 73 |
/* file names */ |
74 |
||
75 |
def log_date(date: Date): String = |
|
76 |
String.format(Locale.ROOT, "%s.%05d", |
|
77 |
DateTimeFormatter.ofPattern("yyyy-MM-dd").format(date.rep), |
|
71163 | 78 |
java.lang.Long.valueOf((date.time - date.midnight.time).ms / 1000)) |
64298 | 79 |
|
80 |
def log_subdir(date: Date): Path = |
|
81 |
Path.explode("log") + Path.explode(date.rep.getYear.toString) |
|
82 |
||
83 |
def log_filename(engine: String, date: Date, more: List[String] = Nil): Path = |
|
84 |
Path.explode((engine :: log_date(date) :: more).mkString("", "_", ".log")) |
|
85 |
||
86 |
||
64100 | 87 |
|
64062 | 88 |
/** log file **/ |
64045 | 89 |
|
64155 | 90 |
def print_date(date: Date): String = Log_File.Date_Format(date) |
91 |
||
75393 | 92 |
object Log_File { |
65607 | 93 |
/* log file */ |
94 |
||
78856 | 95 |
val all_suffixes: List[String] = List(".log", ".log.gz", ".log.xz", ".gz", ".xz") |
96 |
||
75393 | 97 |
def plain_name(name: String): String = { |
78856 | 98 |
all_suffixes.find(name.endsWith) match { |
65609 | 99 |
case Some(s) => Library.try_unsuffix(s, name).get |
100 |
case None => name |
|
101 |
} |
|
102 |
} |
|
77748 | 103 |
def plain_name(file: JFile): String = plain_name(file.getName) |
65609 | 104 |
|
78985
24e686fe043e
clarified Log_File.cache: reuse existing Store.cache / Build_Log.Store.cache;
wenzelm
parents:
78984
diff
changeset
|
105 |
def apply(name: String, lines: List[String], cache: XML.Cache = XML.Cache.none): Log_File = |
24e686fe043e
clarified Log_File.cache: reuse existing Store.cache / Build_Log.Store.cache;
wenzelm
parents:
78984
diff
changeset
|
106 |
new Log_File(plain_name(name), lines.map(s => cache.string(Library.trim_line(s))), cache) |
64062 | 107 |
|
78985
24e686fe043e
clarified Log_File.cache: reuse existing Store.cache / Build_Log.Store.cache;
wenzelm
parents:
78984
diff
changeset
|
108 |
def read(file: JFile, cache: XML.Cache = XML.Cache.none): Log_File = { |
64090 | 109 |
val name = file.getName |
65609 | 110 |
val text = |
75906
2167b9e3157a
clarified signature: support for adhoc file types;
wenzelm
parents:
75776
diff
changeset
|
111 |
if (File.is_gz(name)) File.read_gzip(file) |
78985
24e686fe043e
clarified Log_File.cache: reuse existing Store.cache / Build_Log.Store.cache;
wenzelm
parents:
78984
diff
changeset
|
112 |
else if (File.is_xz(name)) Bytes.read(file).uncompress_xz(cache = cache.compress).text |
65609 | 113 |
else File.read(file) |
78985
24e686fe043e
clarified Log_File.cache: reuse existing Store.cache / Build_Log.Store.cache;
wenzelm
parents:
78984
diff
changeset
|
114 |
apply(name, Library.trim_split_lines(text), cache = cache) |
64090 | 115 |
} |
116 |
||
64110 | 117 |
|
65607 | 118 |
/* log file collections */ |
119 |
||
78856 | 120 |
val log_prefixes: List[String] = |
121 |
List(Build_History.log_prefix, Identify.log_prefix, Identify.log_prefix2, |
|
122 |
Isatest.log_prefix, AFP_Test.log_prefix) |
|
123 |
||
124 |
val log_suffixes: List[String] = List(".log", ".log.gz", ".log.xz") |
|
125 |
||
65607 | 126 |
def is_log(file: JFile, |
78856 | 127 |
prefixes: List[String] = log_prefixes, |
128 |
suffixes: List[String] = log_suffixes |
|
75393 | 129 |
): Boolean = { |
65607 | 130 |
val name = file.getName |
65639 | 131 |
|
71621 | 132 |
prefixes.exists(name.startsWith) && |
133 |
suffixes.exists(name.endsWith) && |
|
65639 | 134 |
name != "isatest.log" && |
135 |
name != "afp-test.log" && |
|
136 |
name != "main.log" |
|
65607 | 137 |
} |
138 |
||
78857 | 139 |
def find_files(starts: List[JFile]): List[JFile] = |
140 |
starts.flatMap(start => File.find_files(start, pred = is_log(_), follow_links = true)) |
|
141 |
.sortBy(plain_name) |
|
142 |
||
65607 | 143 |
|
64110 | 144 |
/* date format */ |
145 |
||
75393 | 146 |
val Date_Format = { |
64101 | 147 |
val fmts = |
148 |
Date.Formatter.variants( |
|
64116 | 149 |
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
|
150 |
List(Locale.ENGLISH, Locale.GERMAN)) ::: |
64110 | 151 |
List( |
152 |
DateTimeFormatter.RFC_1123_DATE_TIME, |
|
69980 | 153 |
Date.Formatter.pattern("EEE MMM d HH:mm:ss yyyy").withZone(Date.timezone_berlin)) |
64101 | 154 |
|
64104
b70fa05d6746
more permissive: accept all historic isatest and afp-test logs;
wenzelm
parents:
64103
diff
changeset
|
155 |
def tune_timezone(s: String): String = |
b70fa05d6746
more permissive: accept all historic isatest and afp-test logs;
wenzelm
parents:
64103
diff
changeset
|
156 |
s match { |
64101 | 157 |
case "CET" | "MET" => "GMT+1" |
158 |
case "CEST" | "MEST" => "GMT+2" |
|
64104
b70fa05d6746
more permissive: accept all historic isatest and afp-test logs;
wenzelm
parents:
64103
diff
changeset
|
159 |
case "EST" => "Europe/Berlin" |
b70fa05d6746
more permissive: accept all historic isatest and afp-test logs;
wenzelm
parents:
64103
diff
changeset
|
160 |
case _ => s |
b70fa05d6746
more permissive: accept all historic isatest and afp-test logs;
wenzelm
parents:
64103
diff
changeset
|
161 |
} |
b70fa05d6746
more permissive: accept all historic isatest and afp-test logs;
wenzelm
parents:
64103
diff
changeset
|
162 |
def tune_weekday(s: String): String = |
b70fa05d6746
more permissive: accept all historic isatest and afp-test logs;
wenzelm
parents:
64103
diff
changeset
|
163 |
s match { |
b70fa05d6746
more permissive: accept all historic isatest and afp-test logs;
wenzelm
parents:
64103
diff
changeset
|
164 |
case "Die" => "Di" |
b70fa05d6746
more permissive: accept all historic isatest and afp-test logs;
wenzelm
parents:
64103
diff
changeset
|
165 |
case "Mit" => "Mi" |
b70fa05d6746
more permissive: accept all historic isatest and afp-test logs;
wenzelm
parents:
64103
diff
changeset
|
166 |
case "Don" => "Do" |
b70fa05d6746
more permissive: accept all historic isatest and afp-test logs;
wenzelm
parents:
64103
diff
changeset
|
167 |
case "Fre" => "Fr" |
b70fa05d6746
more permissive: accept all historic isatest and afp-test logs;
wenzelm
parents:
64103
diff
changeset
|
168 |
case "Sam" => "Sa" |
b70fa05d6746
more permissive: accept all historic isatest and afp-test logs;
wenzelm
parents:
64103
diff
changeset
|
169 |
case "Son" => "So" |
b70fa05d6746
more permissive: accept all historic isatest and afp-test logs;
wenzelm
parents:
64103
diff
changeset
|
170 |
case _ => s |
b70fa05d6746
more permissive: accept all historic isatest and afp-test logs;
wenzelm
parents:
64103
diff
changeset
|
171 |
} |
b70fa05d6746
more permissive: accept all historic isatest and afp-test logs;
wenzelm
parents:
64103
diff
changeset
|
172 |
|
b70fa05d6746
more permissive: accept all historic isatest and afp-test logs;
wenzelm
parents:
64103
diff
changeset
|
173 |
def tune(s: String): String = |
b70fa05d6746
more permissive: accept all historic isatest and afp-test logs;
wenzelm
parents:
64103
diff
changeset
|
174 |
Word.implode( |
b70fa05d6746
more permissive: accept all historic isatest and afp-test logs;
wenzelm
parents:
64103
diff
changeset
|
175 |
Word.explode(s) match { |
71621 | 176 |
case a :: "M\uFFFDr" :: bs => tune_weekday(a) :: "Mär" :: bs.map(tune_timezone) |
177 |
case a :: bs => tune_weekday(a) :: bs.map(tune_timezone) |
|
64104
b70fa05d6746
more permissive: accept all historic isatest and afp-test logs;
wenzelm
parents:
64103
diff
changeset
|
178 |
case Nil => Nil |
b70fa05d6746
more permissive: accept all historic isatest and afp-test logs;
wenzelm
parents:
64103
diff
changeset
|
179 |
} |
b70fa05d6746
more permissive: accept all historic isatest and afp-test logs;
wenzelm
parents:
64103
diff
changeset
|
180 |
) |
64101 | 181 |
|
182 |
Date.Format.make(fmts, tune) |
|
183 |
} |
|
64102 | 184 |
} |
185 |
||
78985
24e686fe043e
clarified Log_File.cache: reuse existing Store.cache / Build_Log.Store.cache;
wenzelm
parents:
78984
diff
changeset
|
186 |
class Log_File private( |
24e686fe043e
clarified Log_File.cache: reuse existing Store.cache / Build_Log.Store.cache;
wenzelm
parents:
78984
diff
changeset
|
187 |
val name: String, |
24e686fe043e
clarified Log_File.cache: reuse existing Store.cache / Build_Log.Store.cache;
wenzelm
parents:
78984
diff
changeset
|
188 |
val lines: List[String], |
24e686fe043e
clarified Log_File.cache: reuse existing Store.cache / Build_Log.Store.cache;
wenzelm
parents:
78984
diff
changeset
|
189 |
val cache: XML.Cache |
24e686fe043e
clarified Log_File.cache: reuse existing Store.cache / Build_Log.Store.cache;
wenzelm
parents:
78984
diff
changeset
|
190 |
) { |
64102 | 191 |
log_file => |
192 |
||
193 |
override def toString: String = name |
|
194 |
||
195 |
def text: String = cat_lines(lines) |
|
196 |
||
197 |
def err(msg: String): Nothing = |
|
77750 | 198 |
error("Bad log file " + quote(name) + ": " + msg) |
64102 | 199 |
|
200 |
||
201 |
/* date format */ |
|
64101 | 202 |
|
75393 | 203 |
object Strict_Date { |
64101 | 204 |
def unapply(s: String): Some[Date] = |
64102 | 205 |
try { Some(Log_File.Date_Format.parse(s)) } |
64101 | 206 |
catch { case exn: DateTimeParseException => log_file.err(exn.getMessage) } |
207 |
} |
|
208 |
||
209 |
||
71620 | 210 |
/* inlined text */ |
64062 | 211 |
|
71620 | 212 |
def filter(Marker: Protocol_Message.Marker): List[String] = |
78592 | 213 |
for (case Marker(text) <- lines) yield text |
64062 | 214 |
|
71620 | 215 |
def find(Marker: Protocol_Message.Marker): Option[String] = |
216 |
lines.collectFirst({ case Marker(text) => text }) |
|
64196
6688b9cd443b
more robust wrt. old versions that use clear-text properties (e.g. Timing in build_history_base);
wenzelm
parents:
64193
diff
changeset
|
217 |
|
65684 | 218 |
def find_match(regexes: List[Regex]): Option[String] = |
219 |
regexes match { |
|
220 |
case Nil => None |
|
221 |
case regex :: rest => |
|
222 |
lines.iterator.map(regex.unapplySeq(_)).find(res => res.isDefined && res.get.length == 1). |
|
223 |
map(res => res.get.head) orElse find_match(rest) |
|
224 |
} |
|
64062 | 225 |
|
226 |
||
227 |
/* settings */ |
|
228 |
||
73715
bf51c23f3f99
clarified signature -- avoid odd warning about scala/bug#6675;
wenzelm
parents:
73713
diff
changeset
|
229 |
def get_setting(name: String): Option[Settings.Entry] = |
bf51c23f3f99
clarified signature -- avoid odd warning about scala/bug#6675;
wenzelm
parents:
73713
diff
changeset
|
230 |
lines.collectFirst({ case Settings.Entry(a, b) if a == name => a -> b }) |
64045 | 231 |
|
65611 | 232 |
def get_all_settings: Settings.T = |
233 |
for { c <- Settings.all_settings; entry <- get_setting(c.name) } |
|
234 |
yield entry |
|
64062 | 235 |
|
236 |
||
237 |
/* properties (YXML) */ |
|
238 |
||
239 |
def parse_props(text: String): Properties.T = |
|
78985
24e686fe043e
clarified Log_File.cache: reuse existing Store.cache / Build_Log.Store.cache;
wenzelm
parents:
78984
diff
changeset
|
240 |
try { cache.props(XML.Decode.properties(YXML.parse_body(text, cache = cache))) } |
66046 | 241 |
catch { case _: XML.Error => log_file.err("malformed properties") } |
64062 | 242 |
|
71620 | 243 |
def filter_props(marker: Protocol_Message.Marker): List[Properties.T] = |
244 |
for (text <- filter(marker) if YXML.detect(text)) yield parse_props(text) |
|
64062 | 245 |
|
71620 | 246 |
def find_props(marker: Protocol_Message.Marker): Option[Properties.T] = |
247 |
for (text <- find(marker) if YXML.detect(text)) yield parse_props(text) |
|
64062 | 248 |
|
249 |
||
250 |
/* parse various formats */ |
|
251 |
||
64105 | 252 |
def parse_meta_info(): Meta_Info = Build_Log.parse_meta_info(log_file) |
253 |
||
65646 | 254 |
def parse_build_info(ml_statistics: Boolean = false): Build_Info = |
255 |
Build_Log.parse_build_info(log_file, ml_statistics) |
|
64105 | 256 |
|
64082 | 257 |
def parse_session_info( |
258 |
command_timings: Boolean = false, |
|
66873
9953ae603a23
provide theory timing information, similar to command timing but always considered relevant;
wenzelm
parents:
66863
diff
changeset
|
259 |
theory_timings: Boolean = false, |
64082 | 260 |
ml_statistics: Boolean = false, |
261 |
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
|
262 |
Build_Log.parse_session_info( |
9953ae603a23
provide theory timing information, similar to command timing but always considered relevant;
wenzelm
parents:
66863
diff
changeset
|
263 |
log_file, command_timings, theory_timings, ml_statistics, task_statistics) |
64045 | 264 |
} |
265 |
||
266 |
||
64098 | 267 |
|
75518
cb4af8c6152f
clarified remote vs. local build_history: operate on hg_sync directory instead of repository;
wenzelm
parents:
75394
diff
changeset
|
268 |
/** digested meta info: produced by Admin/build_other in log.xz file **/ |
64045 | 269 |
|
75393 | 270 |
object Meta_Info { |
64108 | 271 |
val empty: Meta_Info = Meta_Info(Nil, Nil) |
64099 | 272 |
} |
64098 | 273 |
|
75393 | 274 |
sealed case class Meta_Info(props: Properties.T, settings: Settings.T) { |
64103 | 275 |
def is_empty: Boolean = props.isEmpty && settings.isEmpty |
65599 | 276 |
|
65611 | 277 |
def get(c: SQL.Column): Option[String] = |
278 |
Properties.get(props, c.name) orElse |
|
279 |
Properties.get(settings, c.name) |
|
280 |
||
281 |
def get_date(c: SQL.Column): Option[Date] = |
|
71621 | 282 |
get(c).map(Log_File.Date_Format.parse) |
64103 | 283 |
} |
64061
1bbea2b55d22
some support for header and data fields, notably from afp-test;
wenzelm
parents:
64054
diff
changeset
|
284 |
|
75393 | 285 |
object Identify { |
65625 | 286 |
val log_prefix = "isabelle_identify_" |
66995
9cb263dbb2f7
plain identify job for Isabelle + AFP, independent of any Isabelle technology;
wenzelm
parents:
66944
diff
changeset
|
287 |
val log_prefix2 = "plain_identify_" |
65674
23897f5d885d
approximate repository identify job based on isabelle-nightly-slow;
wenzelm
parents:
65670
diff
changeset
|
288 |
|
23897f5d885d
approximate repository identify job based on isabelle-nightly-slow;
wenzelm
parents:
65670
diff
changeset
|
289 |
def engine(log_file: Log_File): String = |
77133
536c033fb6eb
removed somewhat pointless support for Jenkins log files: it has stopped working long ago;
wenzelm
parents:
77113
diff
changeset
|
290 |
if (log_file.name.startsWith(log_prefix2)) "plain_identify" else "identify" |
65674
23897f5d885d
approximate repository identify job based on isabelle-nightly-slow;
wenzelm
parents:
65670
diff
changeset
|
291 |
|
23897f5d885d
approximate repository identify job based on isabelle-nightly-slow;
wenzelm
parents:
65670
diff
changeset
|
292 |
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
|
293 |
terminate_lines( |
23897f5d885d
approximate repository identify job based on isabelle-nightly-slow;
wenzelm
parents:
65670
diff
changeset
|
294 |
List("isabelle_identify: " + Build_Log.print_date(date), "") ::: |
23897f5d885d
approximate repository identify job based on isabelle-nightly-slow;
wenzelm
parents:
65670
diff
changeset
|
295 |
isabelle_version.map("Isabelle version: " + _).toList ::: |
23897f5d885d
approximate repository identify job based on isabelle-nightly-slow;
wenzelm
parents:
65670
diff
changeset
|
296 |
afp_version.map("AFP version: " + _).toList) |
23897f5d885d
approximate repository identify job based on isabelle-nightly-slow;
wenzelm
parents:
65670
diff
changeset
|
297 |
|
65625 | 298 |
val Start = new Regex("""^isabelle_identify: (.+)$""") |
299 |
val No_End = new Regex("""$.""") |
|
65684 | 300 |
val Isabelle_Version = List(new Regex("""^Isabelle version: (\S+)$""")) |
301 |
val AFP_Version = List(new Regex("""^AFP version: (\S+)$""")) |
|
65625 | 302 |
} |
303 |
||
75393 | 304 |
object Isatest { |
65588 | 305 |
val log_prefix = "isatest-makeall-" |
64108 | 306 |
val engine = "isatest" |
64109 | 307 |
val Start = new Regex("""^------------------- starting test --- (.+) --- (.+)$""") |
308 |
val End = new Regex("""^------------------- test (?:successful|FAILED) --- (.+) --- .*$""") |
|
65684 | 309 |
val Isabelle_Version = List(new Regex("""^Isabelle version: (\S+)$""")) |
64095 | 310 |
} |
311 |
||
75393 | 312 |
object AFP_Test { |
65588 | 313 |
val log_prefix = "afp-test-devel-" |
64108 | 314 |
val engine = "afp-test" |
64109 | 315 |
val Start = new Regex("""^Start test(?: for .+)? at ([^,]+), (.*)$""") |
316 |
val Start_Old = new Regex("""^Start test(?: for .+)? at ([^,]+)$""") |
|
317 |
val End = new Regex("""^End test on (.+), .+, elapsed time:.*$""") |
|
65684 | 318 |
val Isabelle_Version = List(new Regex("""^Isabelle version: .* -- hg id (\S+)$""")) |
319 |
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
|
320 |
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
|
321 |
} |
1bbea2b55d22
some support for header and data fields, notably from afp-test;
wenzelm
parents:
64054
diff
changeset
|
322 |
|
75393 | 323 |
object Jenkins { |
65664 | 324 |
val log_prefix = "jenkins_" |
64110 | 325 |
val engine = "jenkins" |
65663 | 326 |
val Host = new Regex("""^Building remotely on (\S+) \((\S+)\).*$""") |
65665 | 327 |
val Start = new Regex("""^(?:Started by an SCM change|Started from command line by admin|).*$""") |
64110 | 328 |
val Start_Date = new Regex("""^Build started at (.+)$""") |
329 |
val No_End = new Regex("""$.""") |
|
65674
23897f5d885d
approximate repository identify job based on isabelle-nightly-slow;
wenzelm
parents:
65670
diff
changeset
|
330 |
val Isabelle_Version = |
65684 | 331 |
List(new Regex("""^(?:Build for Isabelle id|Isabelle id) (\w+).*$"""), |
65685 | 332 |
new Regex("""^ISABELLE_CI_REPO_ID="(\w+)".*$"""), |
333 |
new Regex("""^(\w{12}) tip.*$""")) |
|
65674
23897f5d885d
approximate repository identify job based on isabelle-nightly-slow;
wenzelm
parents:
65670
diff
changeset
|
334 |
val AFP_Version = |
65684 | 335 |
List(new Regex("""^(?:Build for AFP id|AFP id) (\w+).*$"""), |
336 |
new Regex("""^ISABELLE_CI_AFP_ID="(\w+)".*$""")) |
|
64110 | 337 |
val CONFIGURATION = "=== CONFIGURATION ===" |
338 |
val BUILD = "=== BUILD ===" |
|
339 |
} |
|
340 |
||
75393 | 341 |
private def parse_meta_info(log_file: Log_File): Meta_Info = { |
64108 | 342 |
def parse(engine: String, host: String, start: Date, |
75393 | 343 |
End: Regex, Isabelle_Version: List[Regex], AFP_Version: List[Regex] |
344 |
): Meta_Info = { |
|
345 |
val build_id = { |
|
65714 | 346 |
val prefix = proper_string(host) orElse proper_string(engine) getOrElse "build" |
347 |
prefix + ":" + start.time.ms |
|
64296
544481988e65
explicit identification of builds and correlated build groups;
wenzelm
parents:
64196
diff
changeset
|
348 |
} |
65591 | 349 |
val build_engine = if (engine == "") Nil else List(Prop.build_engine.name -> engine) |
350 |
val build_host = if (host == "") Nil else List(Prop.build_host.name -> host) |
|
64108 | 351 |
|
65599 | 352 |
val start_date = List(Prop.build_start.name -> print_date(start)) |
64091 | 353 |
val end_date = |
354 |
log_file.lines.last match { |
|
64109 | 355 |
case End(log_file.Strict_Date(end_date)) => |
65599 | 356 |
List(Prop.build_end.name -> print_date(end_date)) |
64091 | 357 |
case _ => Nil |
358 |
} |
|
359 |
||
360 |
val isabelle_version = |
|
65591 | 361 |
log_file.find_match(Isabelle_Version).map(Prop.isabelle_version.name -> _) |
64091 | 362 |
val afp_version = |
65591 | 363 |
log_file.find_match(AFP_Version).map(Prop.afp_version.name -> _) |
64062 | 364 |
|
65591 | 365 |
Meta_Info((Prop.build_id.name -> build_id) :: build_engine ::: build_host ::: |
64108 | 366 |
start_date ::: end_date ::: isabelle_version.toList ::: afp_version.toList, |
65611 | 367 |
log_file.get_all_settings) |
64091 | 368 |
} |
369 |
||
370 |
log_file.lines match { |
|
71630
50425e4c3910
clarified modules: global quasi-scope for markers;
wenzelm
parents:
71621
diff
changeset
|
371 |
case line :: _ if Protocol.Meta_Info_Marker.test_yxml(line) => |
50425e4c3910
clarified modules: global quasi-scope for markers;
wenzelm
parents:
71621
diff
changeset
|
372 |
Meta_Info(log_file.find_props(Protocol.Meta_Info_Marker).get, log_file.get_all_settings) |
64117 | 373 |
|
65625 | 374 |
case Identify.Start(log_file.Strict_Date(start)) :: _ => |
65674
23897f5d885d
approximate repository identify job based on isabelle-nightly-slow;
wenzelm
parents:
65670
diff
changeset
|
375 |
parse(Identify.engine(log_file), "", start, Identify.No_End, |
65625 | 376 |
Identify.Isabelle_Version, Identify.AFP_Version) |
377 |
||
64109 | 378 |
case Isatest.Start(log_file.Strict_Date(start), host) :: _ => |
379 |
parse(Isatest.engine, host, start, Isatest.End, |
|
65684 | 380 |
Isatest.Isabelle_Version, Nil) |
64099 | 381 |
|
64109 | 382 |
case AFP_Test.Start(log_file.Strict_Date(start), host) :: _ => |
383 |
parse(AFP_Test.engine, host, start, AFP_Test.End, |
|
384 |
AFP_Test.Isabelle_Version, AFP_Test.AFP_Version) |
|
64099 | 385 |
|
64109 | 386 |
case AFP_Test.Start_Old(log_file.Strict_Date(start)) :: _ => |
387 |
parse(AFP_Test.engine, "", start, AFP_Test.End, |
|
388 |
AFP_Test.Isabelle_Version, AFP_Test.AFP_Version) |
|
64099 | 389 |
|
64341 | 390 |
case line :: _ if line.startsWith("\u0000") => Meta_Info.empty |
64109 | 391 |
case List(Isatest.End(_)) => Meta_Info.empty |
392 |
case _ :: AFP_Test.Bad_Init() :: _ => Meta_Info.empty |
|
64105 | 393 |
case Nil => Meta_Info.empty |
64104
b70fa05d6746
more permissive: accept all historic isatest and afp-test logs;
wenzelm
parents:
64103
diff
changeset
|
394 |
|
64110 | 395 |
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
|
396 |
} |
1bbea2b55d22
some support for header and data fields, notably from afp-test;
wenzelm
parents:
64054
diff
changeset
|
397 |
} |
1bbea2b55d22
some support for header and data fields, notably from afp-test;
wenzelm
parents:
64054
diff
changeset
|
398 |
|
64085
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
399 |
|
64098 | 400 |
|
75518
cb4af8c6152f
clarified remote vs. local build_history: operate on hg_sync directory instead of repository;
wenzelm
parents:
75394
diff
changeset
|
401 |
/** build info: toplevel output of isabelle build or Admin/build_other **/ |
64119
8094eaa38d4b
inline session ML statistics into main build log;
wenzelm
parents:
64117
diff
changeset
|
402 |
|
8094eaa38d4b
inline session ML statistics into main build log;
wenzelm
parents:
64117
diff
changeset
|
403 |
val SESSION_NAME = "session_name" |
64085
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
404 |
|
78608 | 405 |
enum Session_Status { case existing, finished, failed, cancelled } |
64061
1bbea2b55d22
some support for header and data fields, notably from afp-test;
wenzelm
parents:
64054
diff
changeset
|
406 |
|
64085
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
407 |
sealed case class Session_Entry( |
65643 | 408 |
chapter: String = "", |
409 |
groups: List[String] = Nil, |
|
78836
dd350a41594c
defined statically known tables of Build_Log;
Fabian Huch <huch@in.tum.de>
parents:
78768
diff
changeset
|
410 |
hostname: Option[String] = None, |
65643 | 411 |
threads: Option[Int] = None, |
412 |
timing: Timing = Timing.zero, |
|
413 |
ml_timing: Timing = Timing.zero, |
|
66913 | 414 |
sources: Option[String] = None, |
77113 | 415 |
heap_size: Option[Space] = None, |
78608 | 416 |
status: Option[Session_Status] = None, |
65937 | 417 |
errors: List[String] = Nil, |
66874
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
418 |
theory_timings: Map[String, Timing] = Map.empty, |
75393 | 419 |
ml_statistics: List[Properties.T] = Nil |
420 |
) { |
|
65631 | 421 |
def proper_groups: Option[String] = if (groups.isEmpty) None else Some(cat_lines(groups)) |
65643 | 422 |
def finished: Boolean = status == Some(Session_Status.finished) |
65937 | 423 |
def failed: Boolean = status == Some(Session_Status.failed) |
64085
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
424 |
} |
64054 | 425 |
|
75393 | 426 |
object Build_Info { |
66874
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
427 |
val sessions_dummy: Map[String, Session_Entry] = |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
428 |
Map("" -> Session_Entry(theory_timings = Map("" -> Timing.zero))) |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
429 |
} |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
430 |
|
75393 | 431 |
sealed case class Build_Info(sessions: Map[String, Session_Entry]) { |
65937 | 432 |
def finished_sessions: List[String] = for ((a, b) <- sessions.toList if b.finished) yield a |
433 |
def failed_sessions: List[String] = for ((a, b) <- sessions.toList if b.failed) yield a |
|
64054 | 434 |
} |
435 |
||
75393 | 436 |
private def parse_build_info(log_file: Log_File, parse_ml_statistics: Boolean): Build_Info = { |
437 |
object Chapter_Name { |
|
64085
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
438 |
def unapply(s: String): Some[(String, String)] = |
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
439 |
space_explode('/', s) match { |
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
440 |
case List(chapter, name) => Some((chapter, name)) |
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
441 |
case _ => Some(("", s)) |
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
442 |
} |
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
443 |
} |
64054 | 444 |
|
64085
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
445 |
val Session_No_Groups = new Regex("""^Session (\S+)$""") |
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
446 |
val Session_Groups = new Regex("""^Session (\S+) \((.*)\)$""") |
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
447 |
val Session_Finished1 = |
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
448 |
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
|
449 |
val Session_Finished2 = |
72695 | 450 |
new Regex("""^Finished ([^\s/]+) \((\d+):(\d+):(\d+) elapsed time.*$""") |
64085
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
451 |
val Session_Timing = |
65679 | 452 |
new Regex("""^Timing (\S+) \((\d+) threads, (\d+\.\d+)s elapsed time, (\d+\.\d+)s cpu time, (\d+\.\d+)s GC time.*$""") |
77551 | 453 |
val Session_Started1 = new Regex("""^(?:Running|Building) (\S+) \.\.\.$""") |
78843
fc3ba0a1c82f
read relative cpu from build log;
Fabian Huch <huch@in.tum.de>
parents:
78836
diff
changeset
|
454 |
val Session_Started2 = new Regex("""^(?:Running|Building) (\S+) \(?on ([^\s/]+)/?(\d+)\+?(\S+)\)? \.\.\.$""") |
66913 | 455 |
val Sources = new Regex("""^Sources (\S+) (\S{""" + SHA1.digest_length + """})$""") |
64120 | 456 |
val Heap = new Regex("""^Heap (\S+) \((\d+) bytes\)$""") |
64085
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
457 |
|
75393 | 458 |
object Theory_Timing { |
66874
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
459 |
def unapply(line: String): Option[(String, (String, Timing))] = |
71630
50425e4c3910
clarified modules: global quasi-scope for markers;
wenzelm
parents:
71621
diff
changeset
|
460 |
Protocol.Theory_Timing_Marker.unapply(line.replace('~', '-')).map(log_file.parse_props) |
50425e4c3910
clarified modules: global quasi-scope for markers;
wenzelm
parents:
71621
diff
changeset
|
461 |
match { |
72753 | 462 |
case Some((SESSION_NAME, session) :: props) => |
463 |
for (theory <- Markup.Name.unapply(props)) |
|
74782 | 464 |
yield (session, theory -> Markup.Timing_Properties.get(props)) |
66874
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
465 |
case _ => None |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
466 |
} |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
467 |
} |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
468 |
|
64085
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
469 |
var chapter = Map.empty[String, String] |
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
470 |
var groups = Map.empty[String, List[String]] |
78836
dd350a41594c
defined statically known tables of Build_Log;
Fabian Huch <huch@in.tum.de>
parents:
78768
diff
changeset
|
471 |
var hostnames = Map.empty[String, String] |
64085
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
472 |
var threads = Map.empty[String, Int] |
64054 | 473 |
var timing = Map.empty[String, Timing] |
64085
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
474 |
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
|
475 |
var started = Set.empty[String] |
66913 | 476 |
var sources = Map.empty[String, String] |
77113 | 477 |
var heap_sizes = Map.empty[String, Space] |
66874
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
478 |
var theory_timings = Map.empty[String, Map[String, Timing]] |
64119
8094eaa38d4b
inline session ML statistics into main build log;
wenzelm
parents:
64117
diff
changeset
|
479 |
var ml_statistics = Map.empty[String, List[Properties.T]] |
65937 | 480 |
var errors = Map.empty[String, List[String]] |
64119
8094eaa38d4b
inline session ML statistics into main build log;
wenzelm
parents:
64117
diff
changeset
|
481 |
|
64085
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
482 |
def all_sessions: Set[String] = |
64120 | 483 |
chapter.keySet ++ groups.keySet ++ threads.keySet ++ timing.keySet ++ ml_timing.keySet ++ |
72694 | 484 |
started ++ sources.keySet ++ heap_sizes.keySet ++ |
66913 | 485 |
theory_timings.keySet ++ ml_statistics.keySet |
64085
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
486 |
|
64054 | 487 |
|
64062 | 488 |
for (line <- log_file.lines) { |
64054 | 489 |
line match { |
64085
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
490 |
case Session_No_Groups(Chapter_Name(chapt, name)) => |
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
491 |
chapter += (name -> chapt) |
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
492 |
groups += (name -> Nil) |
64119
8094eaa38d4b
inline session ML statistics into main build log;
wenzelm
parents:
64117
diff
changeset
|
493 |
|
64085
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
494 |
case Session_Groups(Chapter_Name(chapt, name), grps) => |
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
495 |
chapter += (name -> chapt) |
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
496 |
groups += (name -> Word.explode(grps)) |
64119
8094eaa38d4b
inline session ML statistics into main build log;
wenzelm
parents:
64117
diff
changeset
|
497 |
|
77551 | 498 |
case Session_Started1(name) => |
499 |
started += name |
|
500 |
||
78843
fc3ba0a1c82f
read relative cpu from build log;
Fabian Huch <huch@in.tum.de>
parents:
78836
diff
changeset
|
501 |
case Session_Started2(name, hostname, numa_node, rel_cpus) => |
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
|
502 |
started += name |
78836
dd350a41594c
defined statically known tables of Build_Log;
Fabian Huch <huch@in.tum.de>
parents:
78768
diff
changeset
|
503 |
hostnames += (name -> hostname) |
64119
8094eaa38d4b
inline session ML statistics into main build log;
wenzelm
parents:
64117
diff
changeset
|
504 |
|
64054 | 505 |
case Session_Finished1(name, |
506 |
Value.Int(e1), Value.Int(e2), Value.Int(e3), |
|
507 |
Value.Int(c1), Value.Int(c2), Value.Int(c3)) => |
|
508 |
val elapsed = Time.hms(e1, e2, e3) |
|
509 |
val cpu = Time.hms(c1, c2, c3) |
|
64085
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
510 |
timing += (name -> Timing(elapsed, cpu, Time.zero)) |
64119
8094eaa38d4b
inline session ML statistics into main build log;
wenzelm
parents:
64117
diff
changeset
|
511 |
|
64054 | 512 |
case Session_Finished2(name, |
513 |
Value.Int(e1), Value.Int(e2), Value.Int(e3)) => |
|
514 |
val elapsed = Time.hms(e1, e2, e3) |
|
64085
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
515 |
timing += (name -> Timing(elapsed, Time.zero, Time.zero)) |
64119
8094eaa38d4b
inline session ML statistics into main build log;
wenzelm
parents:
64117
diff
changeset
|
516 |
|
64054 | 517 |
case Session_Timing(name, |
518 |
Value.Int(t), Value.Double(e), Value.Double(c), Value.Double(g)) => |
|
519 |
val elapsed = Time.seconds(e) |
|
520 |
val cpu = Time.seconds(c) |
|
521 |
val gc = Time.seconds(g) |
|
64085
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
522 |
ml_timing += (name -> Timing(elapsed, cpu, gc)) |
64054 | 523 |
threads += (name -> t) |
64119
8094eaa38d4b
inline session ML statistics into main build log;
wenzelm
parents:
64117
diff
changeset
|
524 |
|
66913 | 525 |
case Sources(name, s) => |
526 |
sources += (name -> s) |
|
527 |
||
64120 | 528 |
case Heap(name, Value.Long(size)) => |
77113 | 529 |
heap_sizes += (name -> Space.bytes(size)) |
64120 | 530 |
|
71630
50425e4c3910
clarified modules: global quasi-scope for markers;
wenzelm
parents:
71621
diff
changeset
|
531 |
case _ if Protocol.Theory_Timing_Marker.test_yxml(line) => |
66874
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
532 |
line match { |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
533 |
case Theory_Timing(name, theory_timing) => |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
534 |
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
|
535 |
case _ => log_file.err("malformed theory_timing " + quote(line)) |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
536 |
} |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
537 |
|
71630
50425e4c3910
clarified modules: global quasi-scope for markers;
wenzelm
parents:
71621
diff
changeset
|
538 |
case _ if parse_ml_statistics && Protocol.ML_Statistics_Marker.test_yxml(line) => |
50425e4c3910
clarified modules: global quasi-scope for markers;
wenzelm
parents:
71621
diff
changeset
|
539 |
Protocol.ML_Statistics_Marker.unapply(line).map(log_file.parse_props) match { |
66874
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
540 |
case Some((SESSION_NAME, name) :: props) => |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
541 |
ml_statistics += (name -> (props :: ml_statistics.getOrElse(name, Nil))) |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
542 |
case _ => log_file.err("malformed ML_statistics " + quote(line)) |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
543 |
} |
64119
8094eaa38d4b
inline session ML statistics into main build log;
wenzelm
parents:
64117
diff
changeset
|
544 |
|
71630
50425e4c3910
clarified modules: global quasi-scope for markers;
wenzelm
parents:
71621
diff
changeset
|
545 |
case _ if Protocol.Error_Message_Marker.test_yxml(line) => |
50425e4c3910
clarified modules: global quasi-scope for markers;
wenzelm
parents:
71621
diff
changeset
|
546 |
Protocol.Error_Message_Marker.unapply(line).map(log_file.parse_props) match { |
66874
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
547 |
case Some(List((SESSION_NAME, name), (Markup.CONTENT, msg))) => |
71620 | 548 |
errors += (name -> (msg :: errors.getOrElse(name, Nil))) |
66874
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
549 |
case _ => log_file.err("malformed error message " + quote(line)) |
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
550 |
} |
65937 | 551 |
|
64054 | 552 |
case _ => |
553 |
} |
|
554 |
} |
|
555 |
||
64085
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
556 |
val sessions = |
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
557 |
Map( |
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
558 |
(for (name <- all_sessions.toList) yield { |
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
559 |
val status = |
72694 | 560 |
if (timing.isDefinedAt(name) || ml_timing.isDefinedAt(name)) |
65633 | 561 |
Session_Status.finished |
562 |
else if (started(name)) Session_Status.failed |
|
563 |
else Session_Status.existing |
|
64085
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
564 |
val entry = |
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
565 |
Session_Entry( |
65643 | 566 |
chapter = chapter.getOrElse(name, ""), |
567 |
groups = groups.getOrElse(name, Nil), |
|
78836
dd350a41594c
defined statically known tables of Build_Log;
Fabian Huch <huch@in.tum.de>
parents:
78768
diff
changeset
|
568 |
hostname = hostnames.get(name), |
65643 | 569 |
threads = threads.get(name), |
570 |
timing = timing.getOrElse(name, Timing.zero), |
|
571 |
ml_timing = ml_timing.getOrElse(name, Timing.zero), |
|
66913 | 572 |
sources = sources.get(name), |
65643 | 573 |
heap_size = heap_sizes.get(name), |
574 |
status = Some(status), |
|
65937 | 575 |
errors = errors.getOrElse(name, Nil).reverse, |
66874
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
576 |
theory_timings = theory_timings.getOrElse(name, Map.empty), |
65643 | 577 |
ml_statistics = ml_statistics.getOrElse(name, Nil).reverse) |
64085
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
578 |
(name -> entry) |
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
579 |
}):_*) |
1c451e5c145f
clarified parse_build_info: isabelle build output;
wenzelm
parents:
64083
diff
changeset
|
580 |
Build_Info(sessions) |
64054 | 581 |
} |
64099 | 582 |
|
583 |
||
584 |
||
72860 | 585 |
/** session info: produced by isabelle build as session database **/ |
64099 | 586 |
|
587 |
sealed case class Session_Info( |
|
588 |
session_timing: Properties.T, |
|
589 |
command_timings: List[Properties.T], |
|
66873
9953ae603a23
provide theory timing information, similar to command timing but always considered relevant;
wenzelm
parents:
66863
diff
changeset
|
590 |
theory_timings: List[Properties.T], |
64099 | 591 |
ml_statistics: List[Properties.T], |
65934 | 592 |
task_statistics: List[Properties.T], |
75393 | 593 |
errors: List[String] |
594 |
) { |
|
66944
05df740cb54b
more informative timeout message, notably for build_status;
wenzelm
parents:
66913
diff
changeset
|
595 |
def error(s: String): Session_Info = |
05df740cb54b
more informative timeout message, notably for build_status;
wenzelm
parents:
66913
diff
changeset
|
596 |
copy(errors = errors ::: List(s)) |
05df740cb54b
more informative timeout message, notably for build_status;
wenzelm
parents:
66913
diff
changeset
|
597 |
} |
64099 | 598 |
|
599 |
private def parse_session_info( |
|
600 |
log_file: Log_File, |
|
601 |
command_timings: Boolean, |
|
66873
9953ae603a23
provide theory timing information, similar to command timing but always considered relevant;
wenzelm
parents:
66863
diff
changeset
|
602 |
theory_timings: Boolean, |
64099 | 603 |
ml_statistics: Boolean, |
75393 | 604 |
task_statistics: Boolean |
605 |
): Session_Info = { |
|
65290 | 606 |
Session_Info( |
72012 | 607 |
session_timing = log_file.find_props(Protocol.Session_Timing_Marker) getOrElse Nil, |
71630
50425e4c3910
clarified modules: global quasi-scope for markers;
wenzelm
parents:
71621
diff
changeset
|
608 |
command_timings = |
50425e4c3910
clarified modules: global quasi-scope for markers;
wenzelm
parents:
71621
diff
changeset
|
609 |
if (command_timings) log_file.filter_props(Protocol.Command_Timing_Marker) else Nil, |
50425e4c3910
clarified modules: global quasi-scope for markers;
wenzelm
parents:
71621
diff
changeset
|
610 |
theory_timings = |
50425e4c3910
clarified modules: global quasi-scope for markers;
wenzelm
parents:
71621
diff
changeset
|
611 |
if (theory_timings) log_file.filter_props(Protocol.Theory_Timing_Marker) else Nil, |
50425e4c3910
clarified modules: global quasi-scope for markers;
wenzelm
parents:
71621
diff
changeset
|
612 |
ml_statistics = |
50425e4c3910
clarified modules: global quasi-scope for markers;
wenzelm
parents:
71621
diff
changeset
|
613 |
if (ml_statistics) log_file.filter_props(Protocol.ML_Statistics_Marker) else Nil, |
50425e4c3910
clarified modules: global quasi-scope for markers;
wenzelm
parents:
71621
diff
changeset
|
614 |
task_statistics = |
50425e4c3910
clarified modules: global quasi-scope for markers;
wenzelm
parents:
71621
diff
changeset
|
615 |
if (task_statistics) log_file.filter_props(Protocol.Task_Statistics_Marker) else Nil, |
50425e4c3910
clarified modules: global quasi-scope for markers;
wenzelm
parents:
71621
diff
changeset
|
616 |
errors = log_file.filter(Protocol.Error_Message_Marker)) |
64099 | 617 |
} |
65595 | 618 |
|
76351
2cee31cd92f0
generic support for XZ and Zstd compression in Isabelle/Scala;
wenzelm
parents:
76350
diff
changeset
|
619 |
def compress_errors( |
2cee31cd92f0
generic support for XZ and Zstd compression in Isabelle/Scala;
wenzelm
parents:
76350
diff
changeset
|
620 |
errors: List[String], |
2cee31cd92f0
generic support for XZ and Zstd compression in Isabelle/Scala;
wenzelm
parents:
76350
diff
changeset
|
621 |
cache: Compress.Cache = Compress.Cache.none |
2cee31cd92f0
generic support for XZ and Zstd compression in Isabelle/Scala;
wenzelm
parents:
76350
diff
changeset
|
622 |
): Option[Bytes] = |
65937 | 623 |
if (errors.isEmpty) None |
68018 | 624 |
else { |
625 |
Some(Bytes(YXML.string_of_body(XML.Encode.list(XML.Encode.string)(errors))). |
|
626 |
compress(cache = cache)) |
|
627 |
} |
|
65937 | 628 |
|
73033 | 629 |
def uncompress_errors(bytes: Bytes, cache: XML.Cache = XML.Cache.make()): List[String] = |
72885 | 630 |
if (bytes.is_empty) Nil |
68018 | 631 |
else { |
73033 | 632 |
XML.Decode.list(YXML.string_of_body)( |
76351
2cee31cd92f0
generic support for XZ and Zstd compression in Isabelle/Scala;
wenzelm
parents:
76350
diff
changeset
|
633 |
YXML.parse_body(bytes.uncompress(cache = cache.compress).text, cache = cache)) |
68018 | 634 |
} |
65937 | 635 |
|
65595 | 636 |
|
637 |
||
638 |
/** persistent store **/ |
|
639 |
||
65694 | 640 |
/* SQL data model */ |
641 |
||
78849 | 642 |
object private_data extends SQL.Data("isabelle_build_log") { |
78836
dd350a41594c
defined statically known tables of Build_Log;
Fabian Huch <huch@in.tum.de>
parents:
78768
diff
changeset
|
643 |
override def tables: SQL.Tables = |
dd350a41594c
defined statically known tables of Build_Log;
Fabian Huch <huch@in.tum.de>
parents:
78768
diff
changeset
|
644 |
SQL.Tables( |
dd350a41594c
defined statically known tables of Build_Log;
Fabian Huch <huch@in.tum.de>
parents:
78768
diff
changeset
|
645 |
meta_info_table, |
dd350a41594c
defined statically known tables of Build_Log;
Fabian Huch <huch@in.tum.de>
parents:
78768
diff
changeset
|
646 |
sessions_table, |
dd350a41594c
defined statically known tables of Build_Log;
Fabian Huch <huch@in.tum.de>
parents:
78768
diff
changeset
|
647 |
theories_table, |
78852 | 648 |
ml_statistics_table) |
78389
41e8ae87184d
clarified signature: eliminate SQL.Tables.empty to avoid confusion (see also 0bd366fad888);
wenzelm
parents:
78352
diff
changeset
|
649 |
|
41e8ae87184d
clarified signature: eliminate SQL.Tables.empty to avoid confusion (see also 0bd366fad888);
wenzelm
parents:
78352
diff
changeset
|
650 |
|
65694 | 651 |
/* main content */ |
652 |
||
66857 | 653 |
val log_name = SQL.Column.string("log_name").make_primary_key |
654 |
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
|
655 |
val theory_name = SQL.Column.string("theory_name").make_primary_key |
65694 | 656 |
val chapter = SQL.Column.string("chapter") |
657 |
val groups = SQL.Column.string("groups") |
|
78836
dd350a41594c
defined statically known tables of Build_Log;
Fabian Huch <huch@in.tum.de>
parents:
78768
diff
changeset
|
658 |
val hostname = SQL.Column.string("hostname") |
65694 | 659 |
val threads = SQL.Column.int("threads") |
660 |
val timing_elapsed = SQL.Column.long("timing_elapsed") |
|
661 |
val timing_cpu = SQL.Column.long("timing_cpu") |
|
662 |
val timing_gc = SQL.Column.long("timing_gc") |
|
663 |
val timing_factor = SQL.Column.double("timing_factor") |
|
664 |
val ml_timing_elapsed = SQL.Column.long("ml_timing_elapsed") |
|
665 |
val ml_timing_cpu = SQL.Column.long("ml_timing_cpu") |
|
666 |
val ml_timing_gc = SQL.Column.long("ml_timing_gc") |
|
667 |
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
|
668 |
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
|
669 |
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
|
670 |
val theory_timing_gc = SQL.Column.long("theory_timing_gc") |
65694 | 671 |
val heap_size = SQL.Column.long("heap_size") |
672 |
val status = SQL.Column.string("status") |
|
65937 | 673 |
val errors = SQL.Column.bytes("errors") |
66913 | 674 |
val sources = SQL.Column.string("sources") |
65694 | 675 |
val ml_statistics = SQL.Column.bytes("ml_statistics") |
65783
d3d5cb2d6866
pick isabelle_version based on build_log database;
wenzelm
parents:
65781
diff
changeset
|
676 |
val known = SQL.Column.bool("known") |
65694 | 677 |
|
678 |
val meta_info_table = |
|
78266 | 679 |
make_table(log_name :: Prop.all_props ::: Settings.all_settings, name = "meta_info") |
65694 | 680 |
|
681 |
val sessions_table = |
|
78266 | 682 |
make_table( |
78836
dd350a41594c
defined statically known tables of Build_Log;
Fabian Huch <huch@in.tum.de>
parents:
78768
diff
changeset
|
683 |
List(log_name, session_name, chapter, groups, hostname, threads, timing_elapsed, timing_cpu, |
65694 | 684 |
timing_gc, timing_factor, ml_timing_elapsed, ml_timing_cpu, ml_timing_gc, ml_timing_factor, |
78266 | 685 |
heap_size, status, errors, sources), |
686 |
name = "sessions") |
|
65694 | 687 |
|
66874
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
688 |
val theories_table = |
78266 | 689 |
make_table( |
66874
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
690 |
List(log_name, session_name, theory_name, theory_timing_elapsed, theory_timing_cpu, |
78266 | 691 |
theory_timing_gc), |
692 |
name = "theories") |
|
66874
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
693 |
|
65694 | 694 |
val ml_statistics_table = |
78266 | 695 |
make_table(List(log_name, session_name, ml_statistics), name = "ml_statistics") |
65694 | 696 |
|
697 |
||
65705 | 698 |
/* earliest pull date for repository version (PostgreSQL queries) */ |
65694 | 699 |
|
71621 | 700 |
def pull_date(afp: Boolean = false): SQL.Column = |
66880
486f4af28db9
more thorough treatment of afp_version and afp_pull_date;
wenzelm
parents:
66874
diff
changeset
|
701 |
if (afp) SQL.Column.date("afp_pull_date") |
486f4af28db9
more thorough treatment of afp_version and afp_pull_date;
wenzelm
parents:
66874
diff
changeset
|
702 |
else SQL.Column.date("pull_date") |
65694 | 703 |
|
75393 | 704 |
def pull_date_table(afp: Boolean = false): SQL.Table = { |
66863
6acd1a2bd146
clarified afp_pull_date: both repository versions are relevant;
wenzelm
parents:
66858
diff
changeset
|
705 |
val (name, versions) = |
6acd1a2bd146
clarified afp_pull_date: both repository versions are relevant;
wenzelm
parents:
66858
diff
changeset
|
706 |
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
|
707 |
else ("pull_date", List(Prop.isabelle_version)) |
65694 | 708 |
|
78266 | 709 |
make_table(versions.map(_.make_primary_key) ::: List(pull_date(afp)), |
710 |
body = |
|
711 |
"SELECT " + versions.mkString(", ") + |
|
712 |
", min(" + Prop.build_start + ") AS " + pull_date(afp) + |
|
713 |
" FROM " + meta_info_table + |
|
714 |
" WHERE " + SQL.AND((versions ::: List(Prop.build_start)).map(_.defined)) + |
|
715 |
" GROUP BY " + versions.mkString(", "), |
|
716 |
name = name) |
|
66855 | 717 |
} |
718 |
||
719 |
||
720 |
/* recent entries */ |
|
721 |
||
78921
2fee5fba3116
proper default for disjunction (amending 9f7a94117666);
wenzelm
parents:
78900
diff
changeset
|
722 |
def recent(c: SQL.Column, days: Int, default: PostgreSQL.Source = ""): PostgreSQL.Source = |
2fee5fba3116
proper default for disjunction (amending 9f7a94117666);
wenzelm
parents:
78900
diff
changeset
|
723 |
if (days <= 0) default |
78900
9f7a94117666
clarified "recent" time: days <= 0 means infinity (no constraint);
wenzelm
parents:
78894
diff
changeset
|
724 |
else c.ident + " > now() - INTERVAL '" + days + " days'" |
65736 | 725 |
|
66863
6acd1a2bd146
clarified afp_pull_date: both repository versions are relevant;
wenzelm
parents:
66858
diff
changeset
|
726 |
def recent_pull_date_table( |
78900
9f7a94117666
clarified "recent" time: days <= 0 means infinity (no constraint);
wenzelm
parents:
78894
diff
changeset
|
727 |
days: Int = 0, |
75393 | 728 |
rev: String = "", |
729 |
afp_rev: Option[String] = None |
|
730 |
): SQL.Table = { |
|
66863
6acd1a2bd146
clarified afp_pull_date: both repository versions are relevant;
wenzelm
parents:
66858
diff
changeset
|
731 |
val afp = afp_rev.isDefined |
6acd1a2bd146
clarified afp_pull_date: both repository versions are relevant;
wenzelm
parents:
66858
diff
changeset
|
732 |
val rev2 = afp_rev.getOrElse("") |
6acd1a2bd146
clarified afp_pull_date: both repository versions are relevant;
wenzelm
parents:
66858
diff
changeset
|
733 |
val table = pull_date_table(afp) |
6acd1a2bd146
clarified afp_pull_date: both repository versions are relevant;
wenzelm
parents:
66858
diff
changeset
|
734 |
|
77376 | 735 |
val eq_rev = if_proper(rev, Prop.isabelle_version(table).equal(rev)) |
736 |
val eq_rev2 = if_proper(rev2, Prop.afp_version(table).equal(rev2)) |
|
66863
6acd1a2bd146
clarified afp_pull_date: both repository versions are relevant;
wenzelm
parents:
66858
diff
changeset
|
737 |
|
65777 | 738 |
SQL.Table("recent_pull_date", table.columns, |
77381
a86e346b20d8
misc tuning and clarification: more uniform use of optional "sql" in SQL.Table.delete/select;
wenzelm
parents:
77376
diff
changeset
|
739 |
table.select(table.columns, sql = |
78153 | 740 |
SQL.where_or( |
78921
2fee5fba3116
proper default for disjunction (amending 9f7a94117666);
wenzelm
parents:
78900
diff
changeset
|
741 |
recent(pull_date(afp)(table), days, default = SQL.TRUE), |
78153 | 742 |
SQL.and(eq_rev, eq_rev2)))) |
65702 | 743 |
} |
65694 | 744 |
|
78900
9f7a94117666
clarified "recent" time: days <= 0 means infinity (no constraint);
wenzelm
parents:
78894
diff
changeset
|
745 |
def select_recent_log_names(days: Int = 0): PostgreSQL.Source = { |
65781 | 746 |
val table1 = meta_info_table |
78900
9f7a94117666
clarified "recent" time: days <= 0 means infinity (no constraint);
wenzelm
parents:
78894
diff
changeset
|
747 |
val table2 = recent_pull_date_table(days = days) |
77381
a86e346b20d8
misc tuning and clarification: more uniform use of optional "sql" in SQL.Table.delete/select;
wenzelm
parents:
77376
diff
changeset
|
748 |
table1.select(List(log_name), distinct = true, sql = |
a86e346b20d8
misc tuning and clarification: more uniform use of optional "sql" in SQL.Table.delete/select;
wenzelm
parents:
77376
diff
changeset
|
749 |
SQL.join_inner + table2.query_named + |
a86e346b20d8
misc tuning and clarification: more uniform use of optional "sql" in SQL.Table.delete/select;
wenzelm
parents:
77376
diff
changeset
|
750 |
" ON " + Prop.isabelle_version(table1) + " = " + Prop.isabelle_version(table2)) |
65781 | 751 |
} |
752 |
||
75393 | 753 |
def select_recent_versions( |
78900
9f7a94117666
clarified "recent" time: days <= 0 means infinity (no constraint);
wenzelm
parents:
78894
diff
changeset
|
754 |
days: Int = 0, |
75393 | 755 |
rev: String = "", |
756 |
afp_rev: Option[String] = None, |
|
75968
5a782ca6872b
tuned signature: build_log db is specific to PostgreSQL;
wenzelm
parents:
75906
diff
changeset
|
757 |
sql: PostgreSQL.Source = "" |
5a782ca6872b
tuned signature: build_log db is specific to PostgreSQL;
wenzelm
parents:
75906
diff
changeset
|
758 |
): PostgreSQL.Source = { |
66880
486f4af28db9
more thorough treatment of afp_version and afp_pull_date;
wenzelm
parents:
66874
diff
changeset
|
759 |
val afp = afp_rev.isDefined |
66858 | 760 |
val version = Prop.isabelle_version |
78900
9f7a94117666
clarified "recent" time: days <= 0 means infinity (no constraint);
wenzelm
parents:
78894
diff
changeset
|
761 |
val table1 = recent_pull_date_table(days = days, rev = rev, afp_rev = afp_rev) |
65783
d3d5cb2d6866
pick isabelle_version based on build_log database;
wenzelm
parents:
65781
diff
changeset
|
762 |
val table2 = meta_info_table |
d3d5cb2d6866
pick isabelle_version based on build_log database;
wenzelm
parents:
65781
diff
changeset
|
763 |
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
|
764 |
|
d3d5cb2d6866
pick isabelle_version based on build_log database;
wenzelm
parents:
65781
diff
changeset
|
765 |
val columns = |
66858 | 766 |
table1.columns.map(c => c(table1)) ::: |
767 |
List(known.copy(expr = log_name(aux_table).defined)) |
|
65783
d3d5cb2d6866
pick isabelle_version based on build_log database;
wenzelm
parents:
65781
diff
changeset
|
768 |
SQL.select(columns, distinct = true) + |
d3d5cb2d6866
pick isabelle_version based on build_log database;
wenzelm
parents:
65781
diff
changeset
|
769 |
table1.query_named + SQL.join_outer + aux_table.query_named + |
66858 | 770 |
" ON " + version(table1) + " = " + version(aux_table) + |
76870 | 771 |
SQL.order_by(List(pull_date(afp)(table1)), descending = true) |
65783
d3d5cb2d6866
pick isabelle_version based on build_log database;
wenzelm
parents:
65781
diff
changeset
|
772 |
} |
d3d5cb2d6866
pick isabelle_version based on build_log database;
wenzelm
parents:
65781
diff
changeset
|
773 |
|
65724 | 774 |
|
775 |
/* universal view on main data */ |
|
776 |
||
75393 | 777 |
val universal_table: SQL.Table = { |
66880
486f4af28db9
more thorough treatment of afp_version and afp_pull_date;
wenzelm
parents:
66874
diff
changeset
|
778 |
val afp_pull_date = pull_date(afp = true) |
486f4af28db9
more thorough treatment of afp_version and afp_pull_date;
wenzelm
parents:
66874
diff
changeset
|
779 |
val version1 = Prop.isabelle_version |
486f4af28db9
more thorough treatment of afp_version and afp_pull_date;
wenzelm
parents:
66874
diff
changeset
|
780 |
val version2 = Prop.afp_version |
65724 | 781 |
val table1 = meta_info_table |
66880
486f4af28db9
more thorough treatment of afp_version and afp_pull_date;
wenzelm
parents:
66874
diff
changeset
|
782 |
val table2 = pull_date_table(afp = true) |
486f4af28db9
more thorough treatment of afp_version and afp_pull_date;
wenzelm
parents:
66874
diff
changeset
|
783 |
val table3 = pull_date_table() |
65724 | 784 |
|
66880
486f4af28db9
more thorough treatment of afp_version and afp_pull_date;
wenzelm
parents:
66874
diff
changeset
|
785 |
val a_columns = log_name :: afp_pull_date :: table1.columns.tail |
65850
5414c14c3984
clarified universal table: include ml_statistics;
wenzelm
parents:
65804
diff
changeset
|
786 |
val a_table = |
5414c14c3984
clarified universal table: include ml_statistics;
wenzelm
parents:
65804
diff
changeset
|
787 |
SQL.Table("a", a_columns, |
66880
486f4af28db9
more thorough treatment of afp_version and afp_pull_date;
wenzelm
parents:
66874
diff
changeset
|
788 |
SQL.select(List(log_name, afp_pull_date) ::: table1.columns.tail.map(_.apply(table1))) + |
77376 | 789 |
table1 + SQL.join_outer + table2 + " ON " + |
790 |
SQL.and( |
|
791 |
version1(table1).ident + " = " + version1(table2).ident, |
|
792 |
version2(table1).ident + " = " + version2(table2).ident)) |
|
65724 | 793 |
|
66880
486f4af28db9
more thorough treatment of afp_version and afp_pull_date;
wenzelm
parents:
66874
diff
changeset
|
794 |
val b_columns = log_name :: pull_date() :: a_columns.tail |
65850
5414c14c3984
clarified universal table: include ml_statistics;
wenzelm
parents:
65804
diff
changeset
|
795 |
val b_table = |
5414c14c3984
clarified universal table: include ml_statistics;
wenzelm
parents:
65804
diff
changeset
|
796 |
SQL.Table("b", b_columns, |
66880
486f4af28db9
more thorough treatment of afp_version and afp_pull_date;
wenzelm
parents:
66874
diff
changeset
|
797 |
SQL.select( |
486f4af28db9
more thorough treatment of afp_version and afp_pull_date;
wenzelm
parents:
66874
diff
changeset
|
798 |
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
|
799 |
a_table.query_named + SQL.join_outer + table3 + |
486f4af28db9
more thorough treatment of afp_version and afp_pull_date;
wenzelm
parents:
66874
diff
changeset
|
800 |
" ON " + version1(a_table) + " = " + version1(table3)) |
65850
5414c14c3984
clarified universal table: include ml_statistics;
wenzelm
parents:
65804
diff
changeset
|
801 |
|
66880
486f4af28db9
more thorough treatment of afp_version and afp_pull_date;
wenzelm
parents:
66874
diff
changeset
|
802 |
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
|
803 |
val c_table = |
486f4af28db9
more thorough treatment of afp_version and afp_pull_date;
wenzelm
parents:
66874
diff
changeset
|
804 |
SQL.Table("c", c_columns, |
486f4af28db9
more thorough treatment of afp_version and afp_pull_date;
wenzelm
parents:
66874
diff
changeset
|
805 |
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
|
806 |
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
|
807 |
" 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
|
808 |
|
78266 | 809 |
make_table(c_columns ::: List(ml_statistics), |
810 |
body = |
|
66880
486f4af28db9
more thorough treatment of afp_version and afp_pull_date;
wenzelm
parents:
66874
diff
changeset
|
811 |
SQL.select(c_columns.map(_.apply(c_table)) ::: List(ml_statistics)) + |
77376 | 812 |
c_table.query_named + SQL.join_outer + ml_statistics_table + " ON " + |
813 |
SQL.and( |
|
814 |
log_name(c_table).ident + " = " + log_name(ml_statistics_table).ident, |
|
78266 | 815 |
session_name(c_table).ident + " = " + session_name(ml_statistics_table).ident)) |
65724 | 816 |
} |
65694 | 817 |
} |
818 |
||
819 |
||
820 |
/* database access */ |
|
821 |
||
73031
f93f0597f4fb
clarified signature: absorb XZ.Cache into XML.Cache;
wenzelm
parents:
73025
diff
changeset
|
822 |
def store(options: Options, cache: XML.Cache = XML.Cache.make()): Store = |
f93f0597f4fb
clarified signature: absorb XZ.Cache into XML.Cache;
wenzelm
parents:
73025
diff
changeset
|
823 |
new Store(options, cache) |
65595 | 824 |
|
78343 | 825 |
class Store private[Build_Log](val options: Options, val cache: XML.Cache) { |
77746 | 826 |
override def toString: String = { |
827 |
val s = |
|
78768
280a228dc2f1
prefer Exn.result: avoid accidental capture of interrupts, similar to ML;
wenzelm
parents:
78619
diff
changeset
|
828 |
Exn.result { open_database() } match { |
77746 | 829 |
case Exn.Res(db) => |
830 |
val db_name = db.toString |
|
831 |
db.close() |
|
832 |
"database = " + db_name |
|
833 |
case Exn.Exn(_) => "no database" |
|
834 |
} |
|
835 |
"Store(" + s + ")" |
|
836 |
} |
|
837 |
||
78347 | 838 |
def open_database(server: SSH.Server = SSH.no_server): PostgreSQL.Database = |
839 |
PostgreSQL.open_database_server(options, server = server, |
|
840 |
user = options.string("build_log_database_user"), |
|
841 |
password = options.string("build_log_database_password"), |
|
842 |
database = options.string("build_log_database_name"), |
|
843 |
host = options.string("build_log_database_host"), |
|
844 |
port = options.int("build_log_database_port"), |
|
845 |
ssh_host = options.string("build_log_ssh_host"), |
|
846 |
ssh_port = options.int("build_log_ssh_port"), |
|
78863
f627ab8c276c
discontinued pointless option (reverting 63d55ba90a9f): performance tuning works better via SQL.Database.execute_batch_statement;
wenzelm
parents:
78862
diff
changeset
|
847 |
ssh_user = options.string("build_log_ssh_user")) |
65599 | 848 |
|
78851 | 849 |
def init_database(db: SQL.Database, minimal: Boolean = false): Unit = |
850 |
private_data.transaction_lock(db, create = true, label = "build_log_init") { |
|
851 |
if (!minimal) { |
|
852 |
db.create_view(private_data.pull_date_table()) |
|
853 |
db.create_view(private_data.pull_date_table(afp = true)) |
|
854 |
} |
|
855 |
db.create_view(private_data.universal_table) |
|
856 |
} |
|
857 |
||
75393 | 858 |
def snapshot_database( |
859 |
db: PostgreSQL.Database, |
|
860 |
sqlite_database: Path, |
|
861 |
days: Int = 100, |
|
862 |
ml_statistics: Boolean = false |
|
863 |
): Unit = { |
|
72375 | 864 |
Isabelle_System.make_directory(sqlite_database.dir) |
65694 | 865 |
sqlite_database.file.delete |
866 |
||
75394 | 867 |
using(SQLite.open_database(sqlite_database)) { db2 => |
65694 | 868 |
db.transaction { |
869 |
db2.transaction { |
|
65705 | 870 |
// main content |
78849 | 871 |
db2.create_table(private_data.meta_info_table) |
872 |
db2.create_table(private_data.sessions_table) |
|
873 |
db2.create_table(private_data.theories_table) |
|
874 |
db2.create_table(private_data.ml_statistics_table) |
|
65705 | 875 |
|
876 |
val recent_log_names = |
|
77552 | 877 |
db.execute_query_statement( |
78900
9f7a94117666
clarified "recent" time: days <= 0 means infinity (no constraint);
wenzelm
parents:
78894
diff
changeset
|
878 |
private_data.select_recent_log_names(days = days), |
78849 | 879 |
List.from[String], res => res.string(private_data.log_name)) |
65705 | 880 |
|
881 |
for (log_name <- recent_log_names) { |
|
882 |
read_meta_info(db, log_name).foreach(meta_info => |
|
883 |
update_meta_info(db2, log_name, meta_info)) |
|
884 |
||
885 |
update_sessions(db2, log_name, read_build_info(db, log_name)) |
|
886 |
||
65856 | 887 |
if (ml_statistics) { |
888 |
update_ml_statistics(db2, log_name, |
|
889 |
read_build_info(db, log_name, ml_statistics = true)) |
|
890 |
} |
|
65705 | 891 |
} |
892 |
||
893 |
// pull_date |
|
75393 | 894 |
for (afp <- List(false, true)) { |
66880
486f4af28db9
more thorough treatment of afp_version and afp_pull_date;
wenzelm
parents:
66874
diff
changeset
|
895 |
val afp_rev = if (afp) Some("") else None |
78849 | 896 |
val table = private_data.pull_date_table(afp) |
65694 | 897 |
db2.create_table(table) |
75394 | 898 |
db2.using_statement(table.insert()) { stmt2 => |
66880
486f4af28db9
more thorough treatment of afp_version and afp_pull_date;
wenzelm
parents:
66874
diff
changeset
|
899 |
db.using_statement( |
78900
9f7a94117666
clarified "recent" time: days <= 0 means infinity (no constraint);
wenzelm
parents:
78894
diff
changeset
|
900 |
private_data.recent_pull_date_table(days = days, afp_rev = afp_rev).query) { stmt => |
78352 | 901 |
using(stmt.execute_query()) { res => |
902 |
while (res.next()) { |
|
903 |
for ((c, i) <- table.columns.zipWithIndex) { |
|
904 |
stmt2.string(i + 1) = res.get_string(c) |
|
905 |
} |
|
906 |
stmt2.execute() |
|
65748 | 907 |
} |
65694 | 908 |
} |
75394 | 909 |
} |
910 |
} |
|
65709 | 911 |
} |
65705 | 912 |
|
913 |
// full view |
|
78849 | 914 |
db2.create_view(private_data.universal_table) |
65694 | 915 |
} |
916 |
} |
|
77664
f5d3ade80d15
more specific vacuum operation, which is also relevant to PostgreSQL;
wenzelm
parents:
77552
diff
changeset
|
917 |
db2.vacuum() |
75394 | 918 |
} |
65694 | 919 |
} |
920 |
||
78859
aeb511a520f4
performance tuning: more careful database access;
wenzelm
parents:
78858
diff
changeset
|
921 |
def read_domain( |
aeb511a520f4
performance tuning: more careful database access;
wenzelm
parents:
78858
diff
changeset
|
922 |
db: SQL.Database, |
aeb511a520f4
performance tuning: more careful database access;
wenzelm
parents:
78858
diff
changeset
|
923 |
table: SQL.Table, |
aeb511a520f4
performance tuning: more careful database access;
wenzelm
parents:
78858
diff
changeset
|
924 |
column: SQL.Column, |
aeb511a520f4
performance tuning: more careful database access;
wenzelm
parents:
78858
diff
changeset
|
925 |
restriction: Option[Iterable[String]] = None |
aeb511a520f4
performance tuning: more careful database access;
wenzelm
parents:
78858
diff
changeset
|
926 |
): Set[String] = { |
aeb511a520f4
performance tuning: more careful database access;
wenzelm
parents:
78858
diff
changeset
|
927 |
private_data.transaction_lock(db, label = "Build_Log.read_domain") { |
aeb511a520f4
performance tuning: more careful database access;
wenzelm
parents:
78858
diff
changeset
|
928 |
db.execute_query_statement( |
aeb511a520f4
performance tuning: more careful database access;
wenzelm
parents:
78858
diff
changeset
|
929 |
table.select(List(column), |
aeb511a520f4
performance tuning: more careful database access;
wenzelm
parents:
78858
diff
changeset
|
930 |
sql = restriction match { |
aeb511a520f4
performance tuning: more careful database access;
wenzelm
parents:
78858
diff
changeset
|
931 |
case None => "" |
aeb511a520f4
performance tuning: more careful database access;
wenzelm
parents:
78858
diff
changeset
|
932 |
case Some(names) => column.where_member(names) |
aeb511a520f4
performance tuning: more careful database access;
wenzelm
parents:
78858
diff
changeset
|
933 |
}, |
aeb511a520f4
performance tuning: more careful database access;
wenzelm
parents:
78858
diff
changeset
|
934 |
distinct = true), |
aeb511a520f4
performance tuning: more careful database access;
wenzelm
parents:
78858
diff
changeset
|
935 |
Set.from[String], res => cache.string(res.string(column))) |
aeb511a520f4
performance tuning: more careful database access;
wenzelm
parents:
78858
diff
changeset
|
936 |
} |
aeb511a520f4
performance tuning: more careful database access;
wenzelm
parents:
78858
diff
changeset
|
937 |
} |
65688 | 938 |
|
77543 | 939 |
def update_meta_info(db: SQL.Database, log_name: String, meta_info: Meta_Info): Unit = |
78850 | 940 |
db.execute_statement(db.insert_permissive(private_data.meta_info_table), |
941 |
{ stmt => |
|
942 |
stmt.string(1) = log_name |
|
943 |
for ((c, i) <- private_data.meta_info_table.columns.tail.zipWithIndex) { |
|
944 |
if (c.T == SQL.Type.Date) stmt.date(i + 2) = meta_info.get_date(c) |
|
945 |
else stmt.string(i + 2) = meta_info.get(c) |
|
946 |
} |
|
77798
28c930aefb28
proper stmt.execute() within loop (amending 9d9b30741fc4);
wenzelm
parents:
77752
diff
changeset
|
947 |
} |
78850 | 948 |
) |
65600 | 949 |
|
78850 | 950 |
def update_sessions(db: SQL.Database, log_name: String, build_info: Build_Info): Unit = { |
951 |
val sessions = |
|
952 |
if (build_info.sessions.isEmpty) Build_Info.sessions_dummy |
|
953 |
else build_info.sessions |
|
954 |
db.execute_batch_statement(db.insert_permissive(private_data.sessions_table), |
|
955 |
for ((session_name, session) <- sessions) yield { (stmt: SQL.Statement) => |
|
77798
28c930aefb28
proper stmt.execute() within loop (amending 9d9b30741fc4);
wenzelm
parents:
77752
diff
changeset
|
956 |
stmt.string(1) = log_name |
28c930aefb28
proper stmt.execute() within loop (amending 9d9b30741fc4);
wenzelm
parents:
77752
diff
changeset
|
957 |
stmt.string(2) = session_name |
28c930aefb28
proper stmt.execute() within loop (amending 9d9b30741fc4);
wenzelm
parents:
77752
diff
changeset
|
958 |
stmt.string(3) = proper_string(session.chapter) |
28c930aefb28
proper stmt.execute() within loop (amending 9d9b30741fc4);
wenzelm
parents:
77752
diff
changeset
|
959 |
stmt.string(4) = session.proper_groups |
78836
dd350a41594c
defined statically known tables of Build_Log;
Fabian Huch <huch@in.tum.de>
parents:
78768
diff
changeset
|
960 |
stmt.string(5) = session.hostname |
dd350a41594c
defined statically known tables of Build_Log;
Fabian Huch <huch@in.tum.de>
parents:
78768
diff
changeset
|
961 |
stmt.int(6) = session.threads |
dd350a41594c
defined statically known tables of Build_Log;
Fabian Huch <huch@in.tum.de>
parents:
78768
diff
changeset
|
962 |
stmt.long(7) = session.timing.elapsed.proper_ms |
dd350a41594c
defined statically known tables of Build_Log;
Fabian Huch <huch@in.tum.de>
parents:
78768
diff
changeset
|
963 |
stmt.long(8) = session.timing.cpu.proper_ms |
dd350a41594c
defined statically known tables of Build_Log;
Fabian Huch <huch@in.tum.de>
parents:
78768
diff
changeset
|
964 |
stmt.long(9) = session.timing.gc.proper_ms |
dd350a41594c
defined statically known tables of Build_Log;
Fabian Huch <huch@in.tum.de>
parents:
78768
diff
changeset
|
965 |
stmt.double(10) = session.timing.factor |
dd350a41594c
defined statically known tables of Build_Log;
Fabian Huch <huch@in.tum.de>
parents:
78768
diff
changeset
|
966 |
stmt.long(11) = session.ml_timing.elapsed.proper_ms |
dd350a41594c
defined statically known tables of Build_Log;
Fabian Huch <huch@in.tum.de>
parents:
78768
diff
changeset
|
967 |
stmt.long(12) = session.ml_timing.cpu.proper_ms |
dd350a41594c
defined statically known tables of Build_Log;
Fabian Huch <huch@in.tum.de>
parents:
78768
diff
changeset
|
968 |
stmt.long(13) = session.ml_timing.gc.proper_ms |
dd350a41594c
defined statically known tables of Build_Log;
Fabian Huch <huch@in.tum.de>
parents:
78768
diff
changeset
|
969 |
stmt.double(14) = session.ml_timing.factor |
dd350a41594c
defined statically known tables of Build_Log;
Fabian Huch <huch@in.tum.de>
parents:
78768
diff
changeset
|
970 |
stmt.long(15) = session.heap_size.map(_.bytes) |
dd350a41594c
defined statically known tables of Build_Log;
Fabian Huch <huch@in.tum.de>
parents:
78768
diff
changeset
|
971 |
stmt.string(16) = session.status.map(_.toString) |
dd350a41594c
defined statically known tables of Build_Log;
Fabian Huch <huch@in.tum.de>
parents:
78768
diff
changeset
|
972 |
stmt.bytes(17) = compress_errors(session.errors, cache = cache.compress) |
dd350a41594c
defined statically known tables of Build_Log;
Fabian Huch <huch@in.tum.de>
parents:
78768
diff
changeset
|
973 |
stmt.string(18) = session.sources |
77798
28c930aefb28
proper stmt.execute() within loop (amending 9d9b30741fc4);
wenzelm
parents:
77752
diff
changeset
|
974 |
} |
78850 | 975 |
) |
976 |
} |
|
65642 | 977 |
|
78850 | 978 |
def update_theories(db: SQL.Database, log_name: String, build_info: Build_Info): Unit = { |
979 |
val sessions = |
|
980 |
if (build_info.sessions.forall({ case (_, session) => session.theory_timings.isEmpty })) |
|
981 |
Build_Info.sessions_dummy |
|
982 |
else build_info.sessions |
|
983 |
db.execute_batch_statement(db.insert_permissive(private_data.theories_table), |
|
77798
28c930aefb28
proper stmt.execute() within loop (amending 9d9b30741fc4);
wenzelm
parents:
77752
diff
changeset
|
984 |
for { |
28c930aefb28
proper stmt.execute() within loop (amending 9d9b30741fc4);
wenzelm
parents:
77752
diff
changeset
|
985 |
(session_name, session) <- sessions |
28c930aefb28
proper stmt.execute() within loop (amending 9d9b30741fc4);
wenzelm
parents:
77752
diff
changeset
|
986 |
(theory_name, timing) <- session.theory_timings |
78850 | 987 |
} yield { (stmt: SQL.Statement) => |
77798
28c930aefb28
proper stmt.execute() within loop (amending 9d9b30741fc4);
wenzelm
parents:
77752
diff
changeset
|
988 |
stmt.string(1) = log_name |
28c930aefb28
proper stmt.execute() within loop (amending 9d9b30741fc4);
wenzelm
parents:
77752
diff
changeset
|
989 |
stmt.string(2) = session_name |
28c930aefb28
proper stmt.execute() within loop (amending 9d9b30741fc4);
wenzelm
parents:
77752
diff
changeset
|
990 |
stmt.string(3) = theory_name |
28c930aefb28
proper stmt.execute() within loop (amending 9d9b30741fc4);
wenzelm
parents:
77752
diff
changeset
|
991 |
stmt.long(4) = timing.elapsed.ms |
28c930aefb28
proper stmt.execute() within loop (amending 9d9b30741fc4);
wenzelm
parents:
77752
diff
changeset
|
992 |
stmt.long(5) = timing.cpu.ms |
28c930aefb28
proper stmt.execute() within loop (amending 9d9b30741fc4);
wenzelm
parents:
77752
diff
changeset
|
993 |
stmt.long(6) = timing.gc.ms |
28c930aefb28
proper stmt.execute() within loop (amending 9d9b30741fc4);
wenzelm
parents:
77752
diff
changeset
|
994 |
} |
78850 | 995 |
) |
996 |
} |
|
66874
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
997 |
|
78850 | 998 |
def update_ml_statistics(db: SQL.Database, log_name: String, build_info: Build_Info): Unit = { |
999 |
val ml_stats: List[(String, Option[Bytes])] = |
|
1000 |
Par_List.map[(String, Session_Entry), (String, Option[Bytes])]( |
|
1001 |
{ case (a, b) => (a, Properties.compress(b.ml_statistics, cache = cache.compress).proper) }, |
|
1002 |
build_info.sessions.iterator.filter(p => p._2.ml_statistics.nonEmpty).toList) |
|
1003 |
val entries = if (ml_stats.nonEmpty) ml_stats else List("" -> None) |
|
1004 |
db.execute_batch_statement(db.insert_permissive(private_data.ml_statistics_table), |
|
1005 |
for ((session_name, ml_statistics) <- entries) yield { (stmt: SQL.Statement) => |
|
77798
28c930aefb28
proper stmt.execute() within loop (amending 9d9b30741fc4);
wenzelm
parents:
77752
diff
changeset
|
1006 |
stmt.string(1) = log_name |
28c930aefb28
proper stmt.execute() within loop (amending 9d9b30741fc4);
wenzelm
parents:
77752
diff
changeset
|
1007 |
stmt.string(2) = session_name |
28c930aefb28
proper stmt.execute() within loop (amending 9d9b30741fc4);
wenzelm
parents:
77752
diff
changeset
|
1008 |
stmt.bytes(3) = ml_statistics |
28c930aefb28
proper stmt.execute() within loop (amending 9d9b30741fc4);
wenzelm
parents:
77752
diff
changeset
|
1009 |
} |
78850 | 1010 |
) |
1011 |
} |
|
65645
2c704ae04db1
clarified database layout: bulky ml_statistics are stored/retrieved separately;
wenzelm
parents:
65643
diff
changeset
|
1012 |
|
77748 | 1013 |
def write_info(db: SQL.Database, files: List[JFile], |
1014 |
ml_statistics: Boolean = false, |
|
1015 |
progress: Progress = new Progress, |
|
1016 |
errors: Multi_Map[String, String] = Multi_Map.empty |
|
1017 |
): Multi_Map[String, String] = { |
|
78851 | 1018 |
init_database(db) |
1019 |
||
78866
1bd52b048f8e
more parallelism via consumer thread: with mailbox limit to avoid ressource problems;
wenzelm
parents:
78863
diff
changeset
|
1020 |
val errors_result = Synchronized(errors) |
1bd52b048f8e
more parallelism via consumer thread: with mailbox limit to avoid ressource problems;
wenzelm
parents:
78863
diff
changeset
|
1021 |
def add_error(name: String, exn: Throwable): Unit = |
1bd52b048f8e
more parallelism via consumer thread: with mailbox limit to avoid ressource problems;
wenzelm
parents:
78863
diff
changeset
|
1022 |
errors_result.change(_.insert(name, Exn.print(exn))) |
77748 | 1023 |
|
78859
aeb511a520f4
performance tuning: more careful database access;
wenzelm
parents:
78858
diff
changeset
|
1024 |
val files_domain = { |
aeb511a520f4
performance tuning: more careful database access;
wenzelm
parents:
78858
diff
changeset
|
1025 |
val names = files.map(Log_File.plain_name).toSet |
aeb511a520f4
performance tuning: more careful database access;
wenzelm
parents:
78858
diff
changeset
|
1026 |
if (names.size > 100) None else Some(names) |
aeb511a520f4
performance tuning: more careful database access;
wenzelm
parents:
78858
diff
changeset
|
1027 |
} |
aeb511a520f4
performance tuning: more careful database access;
wenzelm
parents:
78858
diff
changeset
|
1028 |
|
75393 | 1029 |
abstract class Table_Status(table: SQL.Table) { |
78866
1bd52b048f8e
more parallelism via consumer thread: with mailbox limit to avoid ressource problems;
wenzelm
parents:
78863
diff
changeset
|
1030 |
private val known = |
1bd52b048f8e
more parallelism via consumer thread: with mailbox limit to avoid ressource problems;
wenzelm
parents:
78863
diff
changeset
|
1031 |
Synchronized(read_domain(db, table, private_data.log_name, restriction = files_domain)) |
65688 | 1032 |
|
78866
1bd52b048f8e
more parallelism via consumer thread: with mailbox limit to avoid ressource problems;
wenzelm
parents:
78863
diff
changeset
|
1033 |
def required(file: JFile): Boolean = !(known.value)(Log_File.plain_name(file)) |
1bd52b048f8e
more parallelism via consumer thread: with mailbox limit to avoid ressource problems;
wenzelm
parents:
78863
diff
changeset
|
1034 |
def required(log_file: Log_File): Boolean = !(known.value)(log_file.name) |
65705 | 1035 |
|
1036 |
def update_db(db: SQL.Database, log_file: Log_File): Unit |
|
75393 | 1037 |
def update(log_file: Log_File): Unit = { |
77748 | 1038 |
if (required(log_file)) { |
65642 | 1039 |
update_db(db, log_file) |
78866
1bd52b048f8e
more parallelism via consumer thread: with mailbox limit to avoid ressource problems;
wenzelm
parents:
78863
diff
changeset
|
1040 |
known.change(_ + log_file.name) |
65618 | 1041 |
} |
65614
325801edb37d
clarified transaction boundaries: more robust incremental write operations;
wenzelm
parents:
65613
diff
changeset
|
1042 |
} |
65605 | 1043 |
} |
78859
aeb511a520f4
performance tuning: more careful database access;
wenzelm
parents:
78858
diff
changeset
|
1044 |
|
aeb511a520f4
performance tuning: more careful database access;
wenzelm
parents:
78858
diff
changeset
|
1045 |
val ml_statistics_status = |
78984 | 1046 |
if (ml_statistics) { |
78859
aeb511a520f4
performance tuning: more careful database access;
wenzelm
parents:
78858
diff
changeset
|
1047 |
List( |
aeb511a520f4
performance tuning: more careful database access;
wenzelm
parents:
78858
diff
changeset
|
1048 |
new Table_Status(private_data.ml_statistics_table) { |
aeb511a520f4
performance tuning: more careful database access;
wenzelm
parents:
78858
diff
changeset
|
1049 |
override def update_db(db: SQL.Database, log_file: Log_File): Unit = |
aeb511a520f4
performance tuning: more careful database access;
wenzelm
parents:
78858
diff
changeset
|
1050 |
update_ml_statistics(db, log_file.name, |
aeb511a520f4
performance tuning: more careful database access;
wenzelm
parents:
78858
diff
changeset
|
1051 |
log_file.parse_build_info(ml_statistics = true)) |
aeb511a520f4
performance tuning: more careful database access;
wenzelm
parents:
78858
diff
changeset
|
1052 |
}) |
aeb511a520f4
performance tuning: more careful database access;
wenzelm
parents:
78858
diff
changeset
|
1053 |
} |
78984 | 1054 |
else Nil |
65642 | 1055 |
val status = |
1056 |
List( |
|
78849 | 1057 |
new Table_Status(private_data.meta_info_table) { |
65705 | 1058 |
override def update_db(db: SQL.Database, log_file: Log_File): Unit = |
1059 |
update_meta_info(db, log_file.name, log_file.parse_meta_info()) |
|
1060 |
}, |
|
78849 | 1061 |
new Table_Status(private_data.sessions_table) { |
65705 | 1062 |
override def update_db(db: SQL.Database, log_file: Log_File): Unit = |
1063 |
update_sessions(db, log_file.name, log_file.parse_build_info()) |
|
1064 |
}, |
|
78849 | 1065 |
new Table_Status(private_data.theories_table) { |
66874
0b8da0fc9563
store theory timings in session in build_log database;
wenzelm
parents:
66873
diff
changeset
|
1066 |
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
|
1067 |
update_theories(db, log_file.name, log_file.parse_build_info()) |
78859
aeb511a520f4
performance tuning: more careful database access;
wenzelm
parents:
78858
diff
changeset
|
1068 |
} |
aeb511a520f4
performance tuning: more careful database access;
wenzelm
parents:
78858
diff
changeset
|
1069 |
) ::: ml_statistics_status |
65642 | 1070 |
|
78866
1bd52b048f8e
more parallelism via consumer thread: with mailbox limit to avoid ressource problems;
wenzelm
parents:
78863
diff
changeset
|
1071 |
val consumer = |
1bd52b048f8e
more parallelism via consumer thread: with mailbox limit to avoid ressource problems;
wenzelm
parents:
78863
diff
changeset
|
1072 |
Consumer_Thread.fork[Log_File]("build_log_database")( |
78880 | 1073 |
limit = 1, |
78866
1bd52b048f8e
more parallelism via consumer thread: with mailbox limit to avoid ressource problems;
wenzelm
parents:
78863
diff
changeset
|
1074 |
consume = { log_file => |
78877
45d570945fe4
more detailed progress for build_log_database, to see better what happens when;
wenzelm
parents:
78875
diff
changeset
|
1075 |
val t0 = progress.start.time |
45d570945fe4
more detailed progress for build_log_database, to see better what happens when;
wenzelm
parents:
78875
diff
changeset
|
1076 |
val t1 = progress.now().time |
45d570945fe4
more detailed progress for build_log_database, to see better what happens when;
wenzelm
parents:
78875
diff
changeset
|
1077 |
|
78862
cc8391b92747
clarified database transactions (see also 2c704ae04db1, 7bd0a250183b);
wenzelm
parents:
78859
diff
changeset
|
1078 |
private_data.transaction_lock(db, label = "build_log_database") { |
cc8391b92747
clarified database transactions (see also 2c704ae04db1, 7bd0a250183b);
wenzelm
parents:
78859
diff
changeset
|
1079 |
try { status.foreach(_.update(log_file)) } |
78866
1bd52b048f8e
more parallelism via consumer thread: with mailbox limit to avoid ressource problems;
wenzelm
parents:
78863
diff
changeset
|
1080 |
catch { case exn: Throwable => add_error(log_file.name, exn) } |
78862
cc8391b92747
clarified database transactions (see also 2c704ae04db1, 7bd0a250183b);
wenzelm
parents:
78859
diff
changeset
|
1081 |
} |
78877
45d570945fe4
more detailed progress for build_log_database, to see better what happens when;
wenzelm
parents:
78875
diff
changeset
|
1082 |
|
45d570945fe4
more detailed progress for build_log_database, to see better what happens when;
wenzelm
parents:
78875
diff
changeset
|
1083 |
val t2 = progress.now().time |
45d570945fe4
more detailed progress for build_log_database, to see better what happens when;
wenzelm
parents:
78875
diff
changeset
|
1084 |
|
78880 | 1085 |
progress.echo(verbose = true, msg = |
1086 |
"Log " + quote(log_file.name) + " (" + |
|
1087 |
(t1 - t0).message_hms + " start time, " + |
|
1088 |
(t2 - t1).message + " elapsed time)") |
|
78877
45d570945fe4
more detailed progress for build_log_database, to see better what happens when;
wenzelm
parents:
78875
diff
changeset
|
1089 |
|
78866
1bd52b048f8e
more parallelism via consumer thread: with mailbox limit to avoid ressource problems;
wenzelm
parents:
78863
diff
changeset
|
1090 |
true |
78880 | 1091 |
}) |
78866
1bd52b048f8e
more parallelism via consumer thread: with mailbox limit to avoid ressource problems;
wenzelm
parents:
78863
diff
changeset
|
1092 |
|
1bd52b048f8e
more parallelism via consumer thread: with mailbox limit to avoid ressource problems;
wenzelm
parents:
78863
diff
changeset
|
1093 |
try { |
1bd52b048f8e
more parallelism via consumer thread: with mailbox limit to avoid ressource problems;
wenzelm
parents:
78863
diff
changeset
|
1094 |
for (file <- files.iterator if status.exists(_.required(file))) { |
78985
24e686fe043e
clarified Log_File.cache: reuse existing Store.cache / Build_Log.Store.cache;
wenzelm
parents:
78984
diff
changeset
|
1095 |
Exn.result { Log_File.read(file, cache = cache) } match { |
78866
1bd52b048f8e
more parallelism via consumer thread: with mailbox limit to avoid ressource problems;
wenzelm
parents:
78863
diff
changeset
|
1096 |
case Exn.Res(log_file) => consumer.send(log_file) |
78877
45d570945fe4
more detailed progress for build_log_database, to see better what happens when;
wenzelm
parents:
78875
diff
changeset
|
1097 |
case Exn.Exn(exn) => add_error(Log_File.plain_name(file), exn) |
78866
1bd52b048f8e
more parallelism via consumer thread: with mailbox limit to avoid ressource problems;
wenzelm
parents:
78863
diff
changeset
|
1098 |
} |
77748 | 1099 |
} |
65642 | 1100 |
} |
78866
1bd52b048f8e
more parallelism via consumer thread: with mailbox limit to avoid ressource problems;
wenzelm
parents:
78863
diff
changeset
|
1101 |
finally { consumer.shutdown() } |
77745 | 1102 |
|
78866
1bd52b048f8e
more parallelism via consumer thread: with mailbox limit to avoid ressource problems;
wenzelm
parents:
78863
diff
changeset
|
1103 |
errors_result.value |
65605 | 1104 |
} |
1105 |
||
75393 | 1106 |
def read_meta_info(db: SQL.Database, log_name: String): Option[Meta_Info] = { |
78849 | 1107 |
val table = private_data.meta_info_table |
65642 | 1108 |
val columns = table.columns.tail |
77552 | 1109 |
db.execute_query_statementO[Meta_Info]( |
78849 | 1110 |
table.select(columns, sql = private_data.log_name.where_equal(log_name)), |
77552 | 1111 |
{ res => |
65621 | 1112 |
val results = |
65642 | 1113 |
columns.map(c => c.name -> |
65621 | 1114 |
(if (c.T == SQL.Type.Date) |
65740 | 1115 |
res.get_date(c).map(Log_File.Date_Format(_)) |
65621 | 1116 |
else |
65740 | 1117 |
res.get_string(c))) |
65621 | 1118 |
val n = Prop.all_props.length |
78592 | 1119 |
val props = for (case (x, Some(y)) <- results.take(n)) yield (x, y) |
1120 |
val settings = for (case (x, Some(y)) <- results.drop(n)) yield (x, y) |
|
77544 | 1121 |
Meta_Info(props, settings) |
77552 | 1122 |
} |
1123 |
) |
|
65621 | 1124 |
} |
1125 |
||
1126 |
def read_build_info( |
|
65629 | 1127 |
db: SQL.Database, |
1128 |
log_name: String, |
|
1129 |
session_names: List[String] = Nil, |
|
77405 | 1130 |
ml_statistics: Boolean = false |
1131 |
): Build_Info = { |
|
78849 | 1132 |
val table1 = private_data.sessions_table |
1133 |
val table2 = private_data.ml_statistics_table |
|
65629 | 1134 |
|
65645
2c704ae04db1
clarified database layout: bulky ml_statistics are stored/retrieved separately;
wenzelm
parents:
65643
diff
changeset
|
1135 |
val columns1 = table1.columns.tail.map(_.apply(table1)) |
2c704ae04db1
clarified database layout: bulky ml_statistics are stored/retrieved separately;
wenzelm
parents:
65643
diff
changeset
|
1136 |
val (columns, from) = |
2c704ae04db1
clarified database layout: bulky ml_statistics are stored/retrieved separately;
wenzelm
parents:
65643
diff
changeset
|
1137 |
if (ml_statistics) { |
78849 | 1138 |
val columns = columns1 ::: List(private_data.ml_statistics(table2)) |
65668 | 1139 |
val join = |
77402 | 1140 |
table1.ident + SQL.join_outer + table2.ident + " ON " + |
77376 | 1141 |
SQL.and( |
78849 | 1142 |
private_data.log_name(table1).ident + " = " + private_data.log_name(table2).ident, |
1143 |
private_data.session_name(table1).ident + " = " + private_data.session_name(table2).ident) |
|
65668 | 1144 |
(columns, SQL.enclose(join)) |
65645
2c704ae04db1
clarified database layout: bulky ml_statistics are stored/retrieved separately;
wenzelm
parents:
65643
diff
changeset
|
1145 |
} |
65695 | 1146 |
else (columns1, table1.ident) |
65645
2c704ae04db1
clarified database layout: bulky ml_statistics are stored/retrieved separately;
wenzelm
parents:
65643
diff
changeset
|
1147 |
|
77404 | 1148 |
val where = |
78153 | 1149 |
SQL.where_and( |
78849 | 1150 |
private_data.log_name(table1).equal(log_name), |
1151 |
private_data.session_name(table1).ident + " <> ''", |
|
1152 |
if_proper(session_names, private_data.session_name(table1).member(session_names))) |
|
77404 | 1153 |
|
65621 | 1154 |
val sessions = |
77552 | 1155 |
db.execute_query_statement( |
1156 |
SQL.select(columns, sql = from + where), |
|
1157 |
Map.from[String, Session_Entry], |
|
1158 |
{ res => |
|
78849 | 1159 |
val session_name = res.string(private_data.session_name) |
65626 | 1160 |
val session_entry = |
1161 |
Session_Entry( |
|
78849 | 1162 |
chapter = res.string(private_data.chapter), |
1163 |
groups = split_lines(res.string(private_data.groups)), |
|
1164 |
hostname = res.get_string(private_data.hostname), |
|
1165 |
threads = res.get_int(private_data.threads), |
|
77494 | 1166 |
timing = |
1167 |
res.timing( |
|
78849 | 1168 |
private_data.timing_elapsed, |
1169 |
private_data.timing_cpu, |
|
1170 |
private_data.timing_gc), |
|
65626 | 1171 |
ml_timing = |
77494 | 1172 |
res.timing( |
78849 | 1173 |
private_data.ml_timing_elapsed, |
1174 |
private_data.ml_timing_cpu, |
|
1175 |
private_data.ml_timing_gc), |
|
1176 |
sources = res.get_string(private_data.sources), |
|
1177 |
heap_size = res.get_long(private_data.heap_size).map(Space.bytes), |
|
1178 |
status = res.get_string(private_data.status).map(Session_Status.valueOf), |
|
1179 |
errors = uncompress_errors(res.bytes(private_data.errors), cache = cache), |
|
65629 | 1180 |
ml_statistics = |
68018 | 1181 |
if (ml_statistics) { |
78849 | 1182 |
Properties.uncompress(res.bytes(private_data.ml_statistics), cache = cache) |
68018 | 1183 |
} |
65629 | 1184 |
else Nil) |
65626 | 1185 |
session_name -> session_entry |
77552 | 1186 |
} |
1187 |
) |
|
65621 | 1188 |
Build_Info(sessions) |
1189 |
} |
|
65595 | 1190 |
} |
77744 | 1191 |
|
1192 |
||
78991
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1193 |
|
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1194 |
/** build history **/ |
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1195 |
|
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1196 |
object History { |
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1197 |
sealed case class Entry( |
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1198 |
known: Boolean, |
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1199 |
isabelle_version: String, |
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1200 |
afp_version: Option[String], |
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1201 |
pull_date: Date |
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1202 |
) { |
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1203 |
def unknown: Boolean = !known |
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1204 |
def versions: (String, Option[String]) = (isabelle_version, afp_version) |
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1205 |
|
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1206 |
def known_versions(rev: String, afp_rev: Option[String]): Boolean = |
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1207 |
known && rev.nonEmpty && isabelle_version == rev && |
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1208 |
(afp_rev.isEmpty || afp_rev.get.nonEmpty && afp_version == afp_rev) |
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1209 |
} |
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1210 |
|
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1211 |
object Run { |
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1212 |
val empty: Run = Run() |
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1213 |
def longest(runs: List[Run]): Run = runs.foldLeft(empty)(_ max _) |
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1214 |
} |
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1215 |
|
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1216 |
sealed case class Run(entries: List[Entry] = Nil) { |
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1217 |
def is_empty: Boolean = entries.isEmpty |
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1218 |
val length: Int = entries.length |
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1219 |
def max(other: Run): Run = if (length >= other.length) this else other |
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1220 |
def median: Option[Entry] = if (is_empty) None else Some(entries(length / 2)) |
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1221 |
|
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1222 |
override def toString: String = { |
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1223 |
val s = if (is_empty) "" else "length = " + length + ", median = " + median.get.pull_date |
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1224 |
"Build_Log.History.Run(" + s + ")" |
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1225 |
} |
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1226 |
} |
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1227 |
|
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1228 |
def retrieve( |
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1229 |
db: SQL.Database, |
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1230 |
days: Int, |
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1231 |
rev: String, |
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1232 |
afp_rev: Option[String], |
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1233 |
sql: PostgreSQL.Source |
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1234 |
): History = { |
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1235 |
val afp = afp_rev.isDefined |
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1236 |
|
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1237 |
val entries = |
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1238 |
db.execute_query_statement( |
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1239 |
private_data.select_recent_versions( |
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1240 |
days = days, rev = rev, afp_rev = afp_rev, sql = SQL.where(sql)), |
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1241 |
List.from[Entry], |
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1242 |
{ res => |
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1243 |
val known = res.bool(private_data.known) |
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1244 |
val isabelle_version = res.string(Prop.isabelle_version) |
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1245 |
val afp_version = if (afp) proper_string(res.string(Prop.afp_version)) else None |
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1246 |
val pull_date = res.date(private_data.pull_date(afp)) |
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1247 |
Entry(known, isabelle_version, afp_version, pull_date) |
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1248 |
}) |
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1249 |
|
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1250 |
new History(entries) |
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1251 |
} |
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1252 |
} |
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1253 |
|
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1254 |
final class History private(val entries: List[History.Entry]) { |
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1255 |
override def toString: String = "Build_Log.History(" + entries.length + ")" |
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1256 |
|
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1257 |
def unknown_runs( |
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1258 |
pre: History.Entry => Boolean = _ => true, |
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1259 |
post: History.Run => Boolean = _ => true |
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1260 |
): List[History.Run] = { |
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1261 |
var rest = entries.filter(pre) |
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1262 |
val result = new mutable.ListBuffer[History.Run] |
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1263 |
while (rest.nonEmpty) { |
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1264 |
val (a, b) = Library.take_prefix[History.Entry](_.unknown, rest.dropWhile(_.known)) |
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1265 |
val run = History.Run(a) |
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1266 |
if (!run.is_empty && post(run)) result += run |
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1267 |
rest = b |
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1268 |
} |
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1269 |
result.toList |
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1270 |
} |
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1271 |
} |
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1272 |
|
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1273 |
|
ae2f5fd0bb5d
clarified signature and modules: more explicit Build_Log.History;
wenzelm
parents:
78985
diff
changeset
|
1274 |
|
77749 | 1275 |
/** maintain build_log database **/ |
77744 | 1276 |
|
78857 | 1277 |
def build_log_database(options: Options, logs: List[Path], |
77748 | 1278 |
progress: Progress = new Progress, |
77751 | 1279 |
vacuum: Boolean = false, |
77748 | 1280 |
ml_statistics: Boolean = false, |
77744 | 1281 |
snapshot: Option[Path] = None |
1282 |
): Unit = { |
|
1283 |
val store = Build_Log.store(options) |
|
77745 | 1284 |
|
78857 | 1285 |
val log_files = Log_File.find_files(logs.map(_.file)) |
77745 | 1286 |
|
77744 | 1287 |
using(store.open_database()) { db => |
77751 | 1288 |
if (vacuum) db.vacuum() |
77748 | 1289 |
|
1290 |
progress.echo("Updating database " + db + " ...") |
|
1291 |
val errors = |
|
78878
d03bbdd9e735
just one pass is sufficient (see also cc8391b92747, 3e8a897042d9);
wenzelm
parents:
78877
diff
changeset
|
1292 |
store.write_info(db, log_files, ml_statistics = ml_statistics, progress = progress) |
77748 | 1293 |
|
1294 |
if (errors.isEmpty) { |
|
1295 |
for (path <- snapshot) { |
|
78894 | 1296 |
progress.echo("Writing database snapshot " + path.expand) |
77748 | 1297 |
store.snapshot_database(db, path) |
1298 |
} |
|
1299 |
} |
|
1300 |
else { |
|
1301 |
error(cat_lines(List.from( |
|
77750 | 1302 |
for ((name, rev_errs) <- errors.iterator_list) yield { |
1303 |
val err = "The error(s) above occurred in " + quote(name) |
|
1304 |
cat_lines((err :: rev_errs).reverse) |
|
1305 |
} |
|
1306 |
))) |
|
77748 | 1307 |
} |
77744 | 1308 |
} |
1309 |
} |
|
77749 | 1310 |
|
1311 |
||
1312 |
/* Isabelle tool wrapper */ |
|
1313 |
||
1314 |
val isabelle_tool = Isabelle_Tool("build_log_database", "update build_log database from log files", |
|
1315 |
Scala_Project.here, |
|
1316 |
{ args => |
|
1317 |
var ml_statistics: Boolean = false |
|
1318 |
var snapshot: Option[Path] = None |
|
77751 | 1319 |
var vacuum = false |
78858 | 1320 |
var logs: List[Path] = Nil |
77749 | 1321 |
var options = Options.init() |
1322 |
var verbose = false |
|
1323 |
||
1324 |
val getopts = Getopts(""" |
|
1325 |
Usage: isabelle build_log_database [OPTIONS] |
|
1326 |
||
1327 |
Options are: |
|
1328 |
-M include ML statistics |
|
1329 |
-S FILE snapshot to SQLite db file |
|
77751 | 1330 |
-V vacuum cleaning of database |
78858 | 1331 |
-d LOG include log file start location |
77749 | 1332 |
-o OPTION override Isabelle system OPTION (via NAME=VAL or NAME) |
1333 |
-v verbose |
|
1334 |
||
78858 | 1335 |
Update the build_log database server from log files, which are recursively |
1336 |
collected from given start locations (files or directories). |
|
77749 | 1337 |
""", |
1338 |
"M" -> (_ => ml_statistics = true), |
|
1339 |
"S:" -> (arg => snapshot = Some(Path.explode(arg))), |
|
77751 | 1340 |
"V" -> (_ => vacuum = true), |
78858 | 1341 |
"d:" -> (arg => logs = logs ::: List(Path.explode(arg))), |
77749 | 1342 |
"o:" -> (arg => options = options + arg), |
1343 |
"v" -> (_ => verbose = true)) |
|
1344 |
||
1345 |
val more_args = getopts(args) |
|
1346 |
if (more_args.nonEmpty) getopts.usage() |
|
1347 |
||
1348 |
val progress = new Console_Progress(verbose = verbose) |
|
1349 |
||
78858 | 1350 |
build_log_database(options, logs, progress = progress, vacuum = vacuum, |
77749 | 1351 |
ml_statistics = ml_statistics, snapshot = snapshot) |
1352 |
}) |
|
64045 | 1353 |
} |