author | wenzelm |
Tue, 04 Apr 2017 21:37:26 +0200 | |
changeset 65377 | 6e47a27e3d43 |
parent 65374 | a5b38d8d3c1e |
child 65391 | b5740579cad6 |
permissions | -rw-r--r-- |
62631 | 1 |
/* Title: Pure/Thy/sessions.scala |
2 |
Author: Makarius |
|
3 |
||
62973 | 4 |
Isabelle session information. |
62631 | 5 |
*/ |
6 |
||
7 |
package isabelle |
|
8 |
||
62704
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
9 |
import java.nio.ByteBuffer |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
10 |
import java.nio.channels.FileChannel |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
11 |
import java.nio.file.StandardOpenOption |
65320
52861eebf58d
access table via session_name: db may in principle contain multiple entries;
wenzelm
parents:
65318
diff
changeset
|
12 |
import java.sql.PreparedStatement |
62631 | 13 |
|
14 |
import scala.collection.SortedSet |
|
15 |
import scala.collection.mutable |
|
16 |
||
17 |
||
18 |
object Sessions |
|
19 |
{ |
|
65360 | 20 |
/* base info and source dependencies */ |
62883 | 21 |
|
65360 | 22 |
def is_pure(name: String): Boolean = name == Thy_Header.PURE |
64856 | 23 |
|
24 |
object Base |
|
25 |
{ |
|
65360 | 26 |
def pure(options: Options): Base = session_base(options, Thy_Header.PURE) |
27 |
||
64856 | 28 |
lazy val bootstrap: Base = |
29 |
Base(keywords = Thy_Header.bootstrap_header, syntax = Thy_Header.bootstrap_syntax) |
|
30 |
} |
|
31 |
||
32 |
sealed case class Base( |
|
65372
b722ee40c26c
refer to global_theories from all sessions, before selection;
wenzelm
parents:
65371
diff
changeset
|
33 |
global_theories: Set[String] = Set.empty, |
64856 | 34 |
loaded_theories: Set[String] = Set.empty, |
35 |
known_theories: Map[String, Document.Node.Name] = Map.empty, |
|
36 |
keywords: Thy_Header.Keywords = Nil, |
|
37 |
syntax: Outer_Syntax = Outer_Syntax.empty, |
|
38 |
sources: List[(Path, SHA1.Digest)] = Nil, |
|
39 |
session_graph: Graph_Display.Graph = Graph_Display.empty_graph) |
|
65355 | 40 |
{ |
41 |
def loaded_theory(name: Document.Node.Name): Boolean = |
|
42 |
loaded_theories.contains(name.theory) |
|
43 |
} |
|
64856 | 44 |
|
65251 | 45 |
sealed case class Deps(deps: Map[String, Base]) |
46 |
{ |
|
47 |
def is_empty: Boolean = deps.isEmpty |
|
48 |
def apply(name: String): Base = deps(name) |
|
49 |
def sources(name: String): List[SHA1.Digest] = deps(name).sources.map(_._2) |
|
50 |
} |
|
64856 | 51 |
|
65251 | 52 |
def dependencies( |
53 |
progress: Progress = No_Progress, |
|
54 |
inlined_files: Boolean = false, |
|
55 |
verbose: Boolean = false, |
|
56 |
list_files: Boolean = false, |
|
57 |
check_keywords: Set[String] = Set.empty, |
|
65372
b722ee40c26c
refer to global_theories from all sessions, before selection;
wenzelm
parents:
65371
diff
changeset
|
58 |
global_theories: Set[String] = Set.empty, |
65251 | 59 |
tree: Tree): Deps = |
65372
b722ee40c26c
refer to global_theories from all sessions, before selection;
wenzelm
parents:
65371
diff
changeset
|
60 |
{ |
65251 | 61 |
Deps((Map.empty[String, Base] /: tree.topological_order)( |
62 |
{ case (deps, (name, info)) => |
|
63 |
if (progress.stopped) throw Exn.Interrupt() |
|
64 |
||
65 |
try { |
|
65359 | 66 |
val parent_base = |
67 |
info.parent match { |
|
68 |
case None => Base.bootstrap |
|
69 |
case Some(parent) => deps(parent) |
|
70 |
} |
|
71 |
val resources = new Resources(name, parent_base) |
|
65251 | 72 |
|
73 |
if (verbose || list_files) { |
|
74 |
val groups = |
|
75 |
if (info.groups.isEmpty) "" |
|
76 |
else info.groups.mkString(" (", " ", ")") |
|
77 |
progress.echo("Session " + info.chapter + "/" + name + groups) |
|
78 |
} |
|
79 |
||
80 |
val thy_deps = |
|
81 |
{ |
|
82 |
val root_theories = |
|
65374 | 83 |
info.theories.flatMap({ case (_, thys) => |
84 |
thys.map(thy => |
|
85 |
(resources.init_name(info.dir + resources.thy_path(thy)), info.pos)) |
|
65251 | 86 |
}) |
65359 | 87 |
val thy_deps = resources.thy_info.dependencies(root_theories) |
65251 | 88 |
|
89 |
thy_deps.errors match { |
|
90 |
case Nil => thy_deps |
|
91 |
case errs => error(cat_lines(errs)) |
|
92 |
} |
|
93 |
} |
|
94 |
||
95 |
val known_theories = |
|
65359 | 96 |
(parent_base.known_theories /: thy_deps.deps)({ case (known, dep) => |
65251 | 97 |
val name = dep.name |
98 |
known.get(name.theory) match { |
|
99 |
case Some(name1) if name != name1 => |
|
100 |
error("Duplicate theory " + quote(name.node) + " vs. " + quote(name1.node)) |
|
101 |
case _ => |
|
102 |
known + (name.theory -> name) + (Long_Name.base_name(name.theory) -> name) |
|
103 |
} |
|
104 |
}) |
|
105 |
||
106 |
val loaded_theories = thy_deps.loaded_theories |
|
107 |
val keywords = thy_deps.keywords |
|
108 |
val syntax = thy_deps.syntax |
|
109 |
||
110 |
val theory_files = thy_deps.deps.map(dep => Path.explode(dep.name.node)) |
|
111 |
val loaded_files = |
|
112 |
if (inlined_files) { |
|
113 |
val pure_files = |
|
65360 | 114 |
if (is_pure(name)) { |
115 |
val roots = Thy_Header.ml_roots.map(p => info.dir + Path.explode(p._1)) |
|
116 |
val files = |
|
117 |
roots.flatMap(root => resources.loaded_files(syntax, File.read(root))). |
|
118 |
map(file => info.dir + Path.explode(file)) |
|
119 |
roots ::: files |
|
120 |
} |
|
65251 | 121 |
else Nil |
122 |
pure_files ::: thy_deps.loaded_files |
|
123 |
} |
|
124 |
else Nil |
|
125 |
||
126 |
val all_files = |
|
127 |
(theory_files ::: loaded_files ::: |
|
128 |
info.files.map(file => info.dir + file) ::: |
|
129 |
info.document_files.map(file => info.dir + file._1 + file._2)).map(_.expand) |
|
130 |
||
131 |
if (list_files) |
|
132 |
progress.echo(cat_lines(all_files.map(_.implode).sorted.map(" " + _))) |
|
133 |
||
134 |
if (check_keywords.nonEmpty) |
|
135 |
Check_Keywords.check_keywords(progress, syntax.keywords, check_keywords, theory_files) |
|
136 |
||
65372
b722ee40c26c
refer to global_theories from all sessions, before selection;
wenzelm
parents:
65371
diff
changeset
|
137 |
val base = |
b722ee40c26c
refer to global_theories from all sessions, before selection;
wenzelm
parents:
65371
diff
changeset
|
138 |
Base(global_theories = global_theories, |
b722ee40c26c
refer to global_theories from all sessions, before selection;
wenzelm
parents:
65371
diff
changeset
|
139 |
loaded_theories = loaded_theories, |
b722ee40c26c
refer to global_theories from all sessions, before selection;
wenzelm
parents:
65371
diff
changeset
|
140 |
known_theories = known_theories, |
b722ee40c26c
refer to global_theories from all sessions, before selection;
wenzelm
parents:
65371
diff
changeset
|
141 |
keywords = keywords, |
b722ee40c26c
refer to global_theories from all sessions, before selection;
wenzelm
parents:
65371
diff
changeset
|
142 |
syntax = syntax, |
b722ee40c26c
refer to global_theories from all sessions, before selection;
wenzelm
parents:
65371
diff
changeset
|
143 |
sources = all_files.map(p => (p, SHA1.digest(p.file))), |
b722ee40c26c
refer to global_theories from all sessions, before selection;
wenzelm
parents:
65371
diff
changeset
|
144 |
session_graph = |
b722ee40c26c
refer to global_theories from all sessions, before selection;
wenzelm
parents:
65371
diff
changeset
|
145 |
Present.session_graph(info.parent getOrElse "", |
65377 | 146 |
parent_base.loaded_theory _, thy_deps.deps)) |
65251 | 147 |
|
148 |
deps + (name -> base) |
|
149 |
} |
|
150 |
catch { |
|
151 |
case ERROR(msg) => |
|
152 |
cat_error(msg, "The error(s) above occurred in session " + |
|
153 |
quote(name) + Position.here(info.pos)) |
|
154 |
} |
|
155 |
})) |
|
65372
b722ee40c26c
refer to global_theories from all sessions, before selection;
wenzelm
parents:
65371
diff
changeset
|
156 |
} |
65251 | 157 |
|
158 |
def session_base(options: Options, session: String, dirs: List[Path] = Nil): Base = |
|
159 |
{ |
|
65372
b722ee40c26c
refer to global_theories from all sessions, before selection;
wenzelm
parents:
65371
diff
changeset
|
160 |
val full_tree = load(options, dirs = dirs) |
b722ee40c26c
refer to global_theories from all sessions, before selection;
wenzelm
parents:
65371
diff
changeset
|
161 |
val (_, tree) = full_tree.selection(sessions = List(session)) |
b722ee40c26c
refer to global_theories from all sessions, before selection;
wenzelm
parents:
65371
diff
changeset
|
162 |
|
b722ee40c26c
refer to global_theories from all sessions, before selection;
wenzelm
parents:
65371
diff
changeset
|
163 |
dependencies(global_theories = full_tree.global_theories, tree = tree)(session) |
65251 | 164 |
} |
165 |
||
166 |
||
167 |
/* session tree */ |
|
62631 | 168 |
|
169 |
sealed case class Info( |
|
170 |
chapter: String, |
|
171 |
select: Boolean, |
|
172 |
pos: Position.T, |
|
173 |
groups: List[String], |
|
174 |
dir: Path, |
|
175 |
parent: Option[String], |
|
176 |
description: String, |
|
177 |
options: Options, |
|
65374 | 178 |
theories: List[(Options, List[Path])], |
179 |
global_theories: List[String], |
|
62631 | 180 |
files: List[Path], |
181 |
document_files: List[(Path, Path)], |
|
182 |
meta_digest: SHA1.Digest) |
|
183 |
{ |
|
184 |
def timeout: Time = Time.seconds(options.real("timeout") * options.real("timeout_scale")) |
|
185 |
} |
|
186 |
||
187 |
object Tree |
|
188 |
{ |
|
65371 | 189 |
def apply(infos: Traversable[(String, Info)]): Tree = |
62631 | 190 |
{ |
191 |
val graph1 = |
|
192 |
(Graph.string[Info] /: infos) { |
|
193 |
case (graph, (name, info)) => |
|
194 |
if (graph.defined(name)) |
|
195 |
error("Duplicate session " + quote(name) + Position.here(info.pos) + |
|
196 |
Position.here(graph.get_node(name).pos)) |
|
197 |
else graph.new_node(name, info) |
|
198 |
} |
|
199 |
val graph2 = |
|
200 |
(graph1 /: graph1.iterator) { |
|
201 |
case (graph, (name, (info, _))) => |
|
202 |
info.parent match { |
|
203 |
case None => graph |
|
204 |
case Some(parent) => |
|
205 |
if (!graph.defined(parent)) |
|
206 |
error("Bad parent session " + quote(parent) + " for " + |
|
207 |
quote(name) + Position.here(info.pos)) |
|
208 |
||
209 |
try { graph.add_edge_acyclic(parent, name) } |
|
210 |
catch { |
|
211 |
case exn: Graph.Cycles[_] => |
|
212 |
error(cat_lines(exn.cycles.map(cycle => |
|
213 |
"Cyclic session dependency of " + |
|
214 |
cycle.map(c => quote(c.toString)).mkString(" via "))) + |
|
215 |
Position.here(info.pos)) |
|
216 |
} |
|
217 |
} |
|
218 |
} |
|
65372
b722ee40c26c
refer to global_theories from all sessions, before selection;
wenzelm
parents:
65371
diff
changeset
|
219 |
|
62631 | 220 |
new Tree(graph2) |
221 |
} |
|
222 |
} |
|
223 |
||
224 |
final class Tree private(val graph: Graph[String, Info]) |
|
225 |
extends PartialFunction[String, Info] |
|
226 |
{ |
|
227 |
def apply(name: String): Info = graph.get_node(name) |
|
228 |
def isDefinedAt(name: String): Boolean = graph.defined(name) |
|
229 |
||
65372
b722ee40c26c
refer to global_theories from all sessions, before selection;
wenzelm
parents:
65371
diff
changeset
|
230 |
def global_theories: Set[String] = |
b722ee40c26c
refer to global_theories from all sessions, before selection;
wenzelm
parents:
65371
diff
changeset
|
231 |
(for { |
b722ee40c26c
refer to global_theories from all sessions, before selection;
wenzelm
parents:
65371
diff
changeset
|
232 |
(_, (info, _)) <- graph.iterator |
b722ee40c26c
refer to global_theories from all sessions, before selection;
wenzelm
parents:
65371
diff
changeset
|
233 |
name <- info.global_theories.iterator } |
b722ee40c26c
refer to global_theories from all sessions, before selection;
wenzelm
parents:
65371
diff
changeset
|
234 |
yield name).toSet |
b722ee40c26c
refer to global_theories from all sessions, before selection;
wenzelm
parents:
65371
diff
changeset
|
235 |
|
62631 | 236 |
def selection( |
237 |
requirements: Boolean = false, |
|
238 |
all_sessions: Boolean = false, |
|
239 |
exclude_session_groups: List[String] = Nil, |
|
240 |
exclude_sessions: List[String] = Nil, |
|
241 |
session_groups: List[String] = Nil, |
|
242 |
sessions: List[String] = Nil): (List[String], Tree) = |
|
243 |
{ |
|
244 |
val bad_sessions = |
|
245 |
SortedSet((exclude_sessions ::: sessions).filterNot(isDefinedAt(_)): _*).toList |
|
246 |
if (bad_sessions.nonEmpty) error("Undefined session(s): " + commas_quote(bad_sessions)) |
|
247 |
||
248 |
val excluded = |
|
249 |
{ |
|
250 |
val exclude_group = exclude_session_groups.toSet |
|
251 |
val exclude_group_sessions = |
|
252 |
(for { |
|
253 |
(name, (info, _)) <- graph.iterator |
|
254 |
if apply(name).groups.exists(exclude_group) |
|
255 |
} yield name).toList |
|
256 |
graph.all_succs(exclude_group_sessions ::: exclude_sessions).toSet |
|
257 |
} |
|
258 |
||
259 |
val pre_selected = |
|
260 |
{ |
|
261 |
if (all_sessions) graph.keys |
|
262 |
else { |
|
263 |
val select_group = session_groups.toSet |
|
264 |
val select = sessions.toSet |
|
265 |
(for { |
|
266 |
(name, (info, _)) <- graph.iterator |
|
267 |
if info.select || select(name) || apply(name).groups.exists(select_group) |
|
268 |
} yield name).toList |
|
269 |
} |
|
270 |
}.filterNot(excluded) |
|
271 |
||
272 |
val selected = |
|
273 |
if (requirements) (graph.all_preds(pre_selected).toSet -- pre_selected).toList |
|
274 |
else pre_selected |
|
275 |
||
276 |
val graph1 = graph.restrict(graph.all_preds(selected).toSet) |
|
277 |
(selected, new Tree(graph1)) |
|
278 |
} |
|
279 |
||
280 |
def ancestors(name: String): List[String] = |
|
281 |
graph.all_preds(List(name)).tail.reverse |
|
282 |
||
283 |
def topological_order: List[(String, Info)] = |
|
284 |
graph.topological_order.map(name => (name, apply(name))) |
|
285 |
||
286 |
override def toString: String = graph.keys_iterator.mkString("Sessions.Tree(", ", ", ")") |
|
287 |
} |
|
288 |
||
289 |
||
290 |
/* parser */ |
|
291 |
||
62864 | 292 |
val ROOT = Path.explode("ROOT") |
293 |
val ROOTS = Path.explode("ROOTS") |
|
294 |
||
62631 | 295 |
private val CHAPTER = "chapter" |
296 |
private val SESSION = "session" |
|
297 |
private val IN = "in" |
|
298 |
private val DESCRIPTION = "description" |
|
299 |
private val OPTIONS = "options" |
|
300 |
private val THEORIES = "theories" |
|
65374 | 301 |
private val GLOBAL = "global" |
62631 | 302 |
private val FILES = "files" |
303 |
private val DOCUMENT_FILES = "document_files" |
|
304 |
||
305 |
lazy val root_syntax = |
|
65374 | 306 |
Outer_Syntax.init() + "(" + ")" + "+" + "," + "=" + "[" + "]" + GLOBAL + IN + |
63443 | 307 |
(CHAPTER, Keyword.THY_DECL) + |
308 |
(SESSION, Keyword.THY_DECL) + |
|
309 |
(DESCRIPTION, Keyword.QUASI_COMMAND) + |
|
310 |
(OPTIONS, Keyword.QUASI_COMMAND) + |
|
311 |
(THEORIES, Keyword.QUASI_COMMAND) + |
|
312 |
(FILES, Keyword.QUASI_COMMAND) + |
|
313 |
(DOCUMENT_FILES, Keyword.QUASI_COMMAND) |
|
62631 | 314 |
|
62968 | 315 |
private object Parser extends Parse.Parser with Options.Parser |
62631 | 316 |
{ |
317 |
private abstract class Entry |
|
318 |
private sealed case class Chapter(name: String) extends Entry |
|
319 |
private sealed case class Session_Entry( |
|
320 |
pos: Position.T, |
|
321 |
name: String, |
|
322 |
groups: List[String], |
|
323 |
path: String, |
|
324 |
parent: Option[String], |
|
325 |
description: String, |
|
326 |
options: List[Options.Spec], |
|
65374 | 327 |
theories: List[(List[Options.Spec], List[(String, Boolean)])], |
62631 | 328 |
files: List[String], |
329 |
document_files: List[(String, String)]) extends Entry |
|
330 |
||
331 |
private val chapter: Parser[Chapter] = |
|
332 |
{ |
|
333 |
val chapter_name = atom("chapter name", _.is_name) |
|
334 |
||
335 |
command(CHAPTER) ~! chapter_name ^^ { case _ ~ a => Chapter(a) } |
|
336 |
} |
|
337 |
||
338 |
private val session_entry: Parser[Session_Entry] = |
|
339 |
{ |
|
340 |
val session_name = atom("session name", _.is_name) |
|
341 |
||
342 |
val option = |
|
62968 | 343 |
option_name ~ opt($$$("=") ~! option_value ^^ |
344 |
{ case _ ~ x => x }) ^^ { case x ~ y => (x, y) } |
|
62631 | 345 |
val options = $$$("[") ~> rep1sep(option, $$$(",")) <~ $$$("]") |
346 |
||
65374 | 347 |
val global = |
348 |
($$$("(") ~! $$$(GLOBAL) ~ $$$(")")) ^^ { case _ => true } | success(false) |
|
349 |
||
350 |
val theory_entry = |
|
351 |
theory_name ~ global ^^ { case x ~ y => (x, y) } |
|
352 |
||
62631 | 353 |
val theories = |
65374 | 354 |
$$$(THEORIES) ~! |
355 |
((options | success(Nil)) ~ rep(theory_entry)) ^^ |
|
356 |
{ case _ ~ (x ~ y) => (x, y) } |
|
62631 | 357 |
|
358 |
val document_files = |
|
359 |
$$$(DOCUMENT_FILES) ~! |
|
360 |
(($$$("(") ~! ($$$(IN) ~! (path ~ $$$(")"))) ^^ |
|
361 |
{ case _ ~ (_ ~ (x ~ _)) => x } | success("document")) ~ |
|
362 |
rep1(path)) ^^ { case _ ~ (x ~ y) => y.map((x, _)) } |
|
363 |
||
364 |
command(SESSION) ~! |
|
365 |
(position(session_name) ~ |
|
366 |
(($$$("(") ~! (rep1(name) <~ $$$(")")) ^^ { case _ ~ x => x }) | success(Nil)) ~ |
|
367 |
(($$$(IN) ~! path ^^ { case _ ~ x => x }) | success(".")) ~ |
|
368 |
($$$("=") ~! |
|
369 |
(opt(session_name ~! $$$("+") ^^ { case x ~ _ => x }) ~ |
|
370 |
(($$$(DESCRIPTION) ~! text ^^ { case _ ~ x => x }) | success("")) ~ |
|
371 |
(($$$(OPTIONS) ~! options ^^ { case _ ~ x => x }) | success(Nil)) ~ |
|
372 |
rep1(theories) ~ |
|
373 |
(($$$(FILES) ~! rep1(path) ^^ { case _ ~ x => x }) | success(Nil)) ~ |
|
374 |
(rep(document_files) ^^ (x => x.flatten))))) ^^ |
|
375 |
{ case _ ~ ((a, pos) ~ b ~ c ~ (_ ~ (d ~ e ~ f ~ g ~ h ~ i))) => |
|
376 |
Session_Entry(pos, a, b, c, d, e, f, g, h, i) } |
|
377 |
} |
|
378 |
||
379 |
def parse(options: Options, select: Boolean, dir: Path): List[(String, Info)] = |
|
380 |
{ |
|
381 |
def make_info(entry_chapter: String, entry: Session_Entry): (String, Info) = |
|
382 |
{ |
|
383 |
try { |
|
384 |
val name = entry.name |
|
385 |
||
386 |
if (name == "") error("Bad session name") |
|
65360 | 387 |
if (is_pure(name) && entry.parent.isDefined) error("Illegal parent session") |
388 |
if (!is_pure(name) && !entry.parent.isDefined) error("Missing parent session") |
|
62631 | 389 |
|
390 |
val session_options = options ++ entry.options |
|
391 |
||
392 |
val theories = |
|
65374 | 393 |
entry.theories.map({ case (opts, thys) => |
394 |
(session_options ++ opts, thys.map(thy => Path.explode(thy._1))) }) |
|
395 |
||
396 |
val global_theories = |
|
397 |
for { (_, thys) <- entry.theories; (thy, global) <- thys if global } |
|
398 |
yield { |
|
399 |
val thy_name = Path.explode(thy).expand.base.implode |
|
400 |
if (Long_Name.is_qualified(thy_name)) |
|
401 |
error("Bad qualified name for global theory " + quote(thy_name)) |
|
402 |
else thy_name |
|
403 |
} |
|
404 |
||
62631 | 405 |
val files = entry.files.map(Path.explode(_)) |
406 |
val document_files = |
|
407 |
entry.document_files.map({ case (s1, s2) => (Path.explode(s1), Path.explode(s2)) }) |
|
408 |
||
409 |
val meta_digest = |
|
410 |
SHA1.digest((entry_chapter, name, entry.parent, entry.options, |
|
411 |
entry.theories, entry.files, entry.document_files).toString) |
|
412 |
||
413 |
val info = |
|
414 |
Info(entry_chapter, select, entry.pos, entry.groups, dir + Path.explode(entry.path), |
|
65374 | 415 |
entry.parent, entry.description, session_options, theories, global_theories, |
416 |
files, document_files, meta_digest) |
|
62631 | 417 |
|
418 |
(name, info) |
|
419 |
} |
|
420 |
catch { |
|
421 |
case ERROR(msg) => |
|
422 |
error(msg + "\nThe error(s) above occurred in session entry " + |
|
423 |
quote(entry.name) + Position.here(entry.pos)) |
|
424 |
} |
|
425 |
} |
|
426 |
||
427 |
val root = dir + ROOT |
|
428 |
if (root.is_file) { |
|
429 |
val toks = Token.explode(root_syntax.keywords, File.read(root)) |
|
430 |
val start = Token.Pos.file(root.implode) |
|
431 |
||
432 |
parse_all(rep(chapter | session_entry), Token.reader(toks, start)) match { |
|
433 |
case Success(result, _) => |
|
434 |
var entry_chapter = "Unsorted" |
|
435 |
val infos = new mutable.ListBuffer[(String, Info)] |
|
436 |
result.foreach { |
|
437 |
case Chapter(name) => entry_chapter = name |
|
438 |
case entry: Session_Entry => infos += make_info(entry_chapter, entry) |
|
439 |
} |
|
440 |
infos.toList |
|
441 |
case bad => error(bad.toString) |
|
442 |
} |
|
443 |
} |
|
444 |
else Nil |
|
445 |
} |
|
446 |
} |
|
447 |
||
448 |
||
62635 | 449 |
/* load sessions from certain directories */ |
62631 | 450 |
|
451 |
private def is_session_dir(dir: Path): Boolean = |
|
452 |
(dir + ROOT).is_file || (dir + ROOTS).is_file |
|
453 |
||
454 |
private def check_session_dir(dir: Path): Path = |
|
455 |
if (is_session_dir(dir)) dir |
|
456 |
else error("Bad session root directory: " + dir.toString) |
|
457 |
||
62635 | 458 |
def load(options: Options, dirs: List[Path] = Nil, select_dirs: List[Path] = Nil): Tree = |
62631 | 459 |
{ |
62635 | 460 |
def load_dir(select: Boolean, dir: Path): List[(String, Info)] = |
461 |
load_root(select, dir) ::: load_roots(select, dir) |
|
62631 | 462 |
|
62635 | 463 |
def load_root(select: Boolean, dir: Path): List[(String, Info)] = |
62631 | 464 |
Parser.parse(options, select, dir) |
465 |
||
62635 | 466 |
def load_roots(select: Boolean, dir: Path): List[(String, Info)] = |
62631 | 467 |
{ |
468 |
val roots = dir + ROOTS |
|
469 |
if (roots.is_file) { |
|
470 |
for { |
|
471 |
line <- split_lines(File.read(roots)) |
|
472 |
if !(line == "" || line.startsWith("#")) |
|
473 |
dir1 = |
|
474 |
try { check_session_dir(dir + Path.explode(line)) } |
|
475 |
catch { |
|
476 |
case ERROR(msg) => |
|
477 |
error(msg + "\nThe error(s) above occurred in session catalog " + roots.toString) |
|
478 |
} |
|
62635 | 479 |
info <- load_dir(select, dir1) |
62631 | 480 |
} yield info |
481 |
} |
|
482 |
else Nil |
|
483 |
} |
|
484 |
||
485 |
val default_dirs = Isabelle_System.components().filter(is_session_dir(_)) |
|
486 |
dirs.foreach(check_session_dir(_)) |
|
487 |
select_dirs.foreach(check_session_dir(_)) |
|
488 |
||
489 |
Tree( |
|
490 |
for { |
|
491 |
(select, dir) <- (default_dirs ::: dirs).map((false, _)) ::: select_dirs.map((true, _)) |
|
62635 | 492 |
info <- load_dir(select, dir) |
62631 | 493 |
} yield info) |
494 |
} |
|
62632 | 495 |
|
496 |
||
62637
0189fe0f6452
support for Poly/ML heap hierarchy, which saves a lot of disk space;
wenzelm
parents:
62636
diff
changeset
|
497 |
|
62704
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
498 |
/** heap file with SHA1 digest **/ |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
499 |
|
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
500 |
private val sha1_prefix = "SHA1:" |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
501 |
|
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
502 |
def read_heap_digest(heap: Path): Option[String] = |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
503 |
{ |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
504 |
if (heap.is_file) { |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
505 |
val file = FileChannel.open(heap.file.toPath, StandardOpenOption.READ) |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
506 |
try { |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
507 |
val len = file.size |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
508 |
val n = sha1_prefix.length + SHA1.digest_length |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
509 |
if (len >= n) { |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
510 |
file.position(len - n) |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
511 |
|
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
512 |
val buf = ByteBuffer.allocate(n) |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
513 |
var i = 0 |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
514 |
var m = 0 |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
515 |
do { |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
516 |
m = file.read(buf) |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
517 |
if (m != -1) i += m |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
518 |
} |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
519 |
while (m != -1 && n > i) |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
520 |
|
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
521 |
if (i == n) { |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
522 |
val prefix = new String(buf.array(), 0, sha1_prefix.length, UTF8.charset) |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
523 |
val s = new String(buf.array(), sha1_prefix.length, SHA1.digest_length, UTF8.charset) |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
524 |
if (prefix == sha1_prefix) Some(s) else None |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
525 |
} |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
526 |
else None |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
527 |
} |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
528 |
else None |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
529 |
} |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
530 |
finally { file.close } |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
531 |
} |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
532 |
else None |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
533 |
} |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
534 |
|
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
535 |
def write_heap_digest(heap: Path): String = |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
536 |
read_heap_digest(heap) match { |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
537 |
case None => |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
538 |
val s = SHA1.digest(heap).rep |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
539 |
File.append(heap, sha1_prefix + s) |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
540 |
s |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
541 |
case Some(s) => s |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
542 |
} |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
543 |
|
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
544 |
|
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
545 |
|
62637
0189fe0f6452
support for Poly/ML heap hierarchy, which saves a lot of disk space;
wenzelm
parents:
62636
diff
changeset
|
546 |
/** persistent store **/ |
62632 | 547 |
|
65296 | 548 |
object Session_Info |
549 |
{ |
|
65326 | 550 |
val session_name = SQL.Column.string("session_name", primary_key = true) |
551 |
||
65296 | 552 |
// Build_Log.Session_Info |
553 |
val session_timing = SQL.Column.bytes("session_timing") |
|
554 |
val command_timings = SQL.Column.bytes("command_timings") |
|
555 |
val ml_statistics = SQL.Column.bytes("ml_statistics") |
|
556 |
val task_statistics = SQL.Column.bytes("task_statistics") |
|
557 |
val build_log_columns = |
|
558 |
List(session_name, session_timing, command_timings, ml_statistics, task_statistics) |
|
559 |
||
560 |
// Build.Session_Info |
|
561 |
val sources = SQL.Column.string("sources") |
|
562 |
val input_heaps = SQL.Column.string("input_heaps") |
|
563 |
val output_heap = SQL.Column.string("output_heap") |
|
564 |
val return_code = SQL.Column.int("return_code") |
|
565 |
val build_columns = List(sources, input_heaps, output_heap, return_code) |
|
566 |
||
567 |
val table = SQL.Table("isabelle_session_info", build_log_columns ::: build_columns) |
|
65320
52861eebf58d
access table via session_name: db may in principle contain multiple entries;
wenzelm
parents:
65318
diff
changeset
|
568 |
|
52861eebf58d
access table via session_name: db may in principle contain multiple entries;
wenzelm
parents:
65318
diff
changeset
|
569 |
def where_session_name(name: String): String = |
65322 | 570 |
"WHERE " + session_name.sql_name + " = " + SQL.quote_string(name) |
65320
52861eebf58d
access table via session_name: db may in principle contain multiple entries;
wenzelm
parents:
65318
diff
changeset
|
571 |
|
52861eebf58d
access table via session_name: db may in principle contain multiple entries;
wenzelm
parents:
65318
diff
changeset
|
572 |
def select_statement(db: SQL.Database, name: String, columns: List[SQL.Column]) |
52861eebf58d
access table via session_name: db may in principle contain multiple entries;
wenzelm
parents:
65318
diff
changeset
|
573 |
: PreparedStatement = |
52861eebf58d
access table via session_name: db may in principle contain multiple entries;
wenzelm
parents:
65318
diff
changeset
|
574 |
db.select_statement(table, columns, where_session_name(name)) |
52861eebf58d
access table via session_name: db may in principle contain multiple entries;
wenzelm
parents:
65318
diff
changeset
|
575 |
|
52861eebf58d
access table via session_name: db may in principle contain multiple entries;
wenzelm
parents:
65318
diff
changeset
|
576 |
def delete_statement(db: SQL.Database, name: String): PreparedStatement = |
52861eebf58d
access table via session_name: db may in principle contain multiple entries;
wenzelm
parents:
65318
diff
changeset
|
577 |
db.delete_statement(table, where_session_name(name)) |
65296 | 578 |
} |
579 |
||
62632 | 580 |
def store(system_mode: Boolean = false): Store = new Store(system_mode) |
581 |
||
63996 | 582 |
class Store private[Sessions](system_mode: Boolean) |
62632 | 583 |
{ |
65278 | 584 |
/* file names */ |
585 |
||
65281
c70e7d24a16d
SQL database operations for combined session info;
wenzelm
parents:
65278
diff
changeset
|
586 |
def database(name: String): Path = Path.basic("log") + Path.basic(name).ext("db") |
65278 | 587 |
def log(name: String): Path = Path.basic("log") + Path.basic(name) |
588 |
def log_gz(name: String): Path = log(name).ext("gz") |
|
589 |
||
590 |
||
65286 | 591 |
/* SQL database content */ |
65283 | 592 |
|
593 |
val xml_cache: XML.Cache = new XML.Cache() |
|
594 |
||
595 |
def encode_properties(ps: Properties.T): Bytes = |
|
596 |
Bytes(YXML.string_of_body(XML.Encode.properties(ps))) |
|
597 |
||
598 |
def decode_properties(bs: Bytes): Properties.T = |
|
599 |
xml_cache.props(XML.Decode.properties(YXML.parse_body(bs.text))) |
|
600 |
||
601 |
def compress_properties(ps: List[Properties.T], options: XZ.Options = XZ.options()): Bytes = |
|
602 |
{ |
|
603 |
if (ps.isEmpty) Bytes.empty |
|
604 |
else Bytes(YXML.string_of_body(XML.Encode.list(XML.Encode.properties)(ps))).compress(options) |
|
605 |
} |
|
606 |
||
607 |
def uncompress_properties(bs: Bytes): List[Properties.T] = |
|
608 |
{ |
|
609 |
if (bs.isEmpty) Nil |
|
610 |
else |
|
611 |
XML.Decode.list(XML.Decode.properties)(YXML.parse_body(bs.uncompress().text)). |
|
612 |
map(xml_cache.props(_)) |
|
613 |
} |
|
614 |
||
65320
52861eebf58d
access table via session_name: db may in principle contain multiple entries;
wenzelm
parents:
65318
diff
changeset
|
615 |
def read_bytes(db: SQL.Database, name: String, column: SQL.Column): Bytes = |
52861eebf58d
access table via session_name: db may in principle contain multiple entries;
wenzelm
parents:
65318
diff
changeset
|
616 |
using(Session_Info.select_statement(db, name, List(column)))(stmt => |
65291
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65288
diff
changeset
|
617 |
{ |
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65288
diff
changeset
|
618 |
val rs = stmt.executeQuery |
65324 | 619 |
if (!rs.next) Bytes.empty else db.bytes(rs, column) |
65291
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65288
diff
changeset
|
620 |
}) |
65285 | 621 |
|
65320
52861eebf58d
access table via session_name: db may in principle contain multiple entries;
wenzelm
parents:
65318
diff
changeset
|
622 |
def read_properties(db: SQL.Database, name: String, column: SQL.Column): List[Properties.T] = |
52861eebf58d
access table via session_name: db may in principle contain multiple entries;
wenzelm
parents:
65318
diff
changeset
|
623 |
uncompress_properties(read_bytes(db, name, column)) |
65286 | 624 |
|
65283 | 625 |
|
62637
0189fe0f6452
support for Poly/ML heap hierarchy, which saves a lot of disk space;
wenzelm
parents:
62636
diff
changeset
|
626 |
/* output */ |
62632 | 627 |
|
628 |
val browser_info: Path = |
|
629 |
if (system_mode) Path.explode("~~/browser_info") |
|
630 |
else Path.explode("$ISABELLE_BROWSER_INFO") |
|
631 |
||
62637
0189fe0f6452
support for Poly/ML heap hierarchy, which saves a lot of disk space;
wenzelm
parents:
62636
diff
changeset
|
632 |
val output_dir: Path = |
0189fe0f6452
support for Poly/ML heap hierarchy, which saves a lot of disk space;
wenzelm
parents:
62636
diff
changeset
|
633 |
if (system_mode) Path.explode("~~/heaps/$ML_IDENTIFIER") |
0189fe0f6452
support for Poly/ML heap hierarchy, which saves a lot of disk space;
wenzelm
parents:
62636
diff
changeset
|
634 |
else Path.explode("$ISABELLE_OUTPUT") |
0189fe0f6452
support for Poly/ML heap hierarchy, which saves a lot of disk space;
wenzelm
parents:
62636
diff
changeset
|
635 |
|
65298 | 636 |
override def toString: String = "Store(output_dir = " + output_dir.expand + ")" |
637 |
||
62637
0189fe0f6452
support for Poly/ML heap hierarchy, which saves a lot of disk space;
wenzelm
parents:
62636
diff
changeset
|
638 |
def prepare_output() { Isabelle_System.mkdirs(output_dir + Path.basic("log")) } |
0189fe0f6452
support for Poly/ML heap hierarchy, which saves a lot of disk space;
wenzelm
parents:
62636
diff
changeset
|
639 |
|
0189fe0f6452
support for Poly/ML heap hierarchy, which saves a lot of disk space;
wenzelm
parents:
62636
diff
changeset
|
640 |
|
0189fe0f6452
support for Poly/ML heap hierarchy, which saves a lot of disk space;
wenzelm
parents:
62636
diff
changeset
|
641 |
/* input */ |
0189fe0f6452
support for Poly/ML heap hierarchy, which saves a lot of disk space;
wenzelm
parents:
62636
diff
changeset
|
642 |
|
0189fe0f6452
support for Poly/ML heap hierarchy, which saves a lot of disk space;
wenzelm
parents:
62636
diff
changeset
|
643 |
private val input_dirs = |
62632 | 644 |
if (system_mode) List(output_dir) |
62633 | 645 |
else { |
646 |
val ml_ident = Path.explode("$ML_IDENTIFIER").expand |
|
647 |
output_dir :: Path.split(Isabelle_System.getenv_strict("ISABELLE_PATH")).map(_ + ml_ident) |
|
648 |
} |
|
62632 | 649 |
|
65291
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65288
diff
changeset
|
650 |
def find_database_heap(name: String): Option[(Path, Option[String])] = |
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65288
diff
changeset
|
651 |
input_dirs.find(dir => (dir + database(name)).is_file).map(dir => |
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65288
diff
changeset
|
652 |
(dir + database(name), read_heap_digest(dir + Path.basic(name)))) |
62632 | 653 |
|
65281
c70e7d24a16d
SQL database operations for combined session info;
wenzelm
parents:
65278
diff
changeset
|
654 |
def find_database(name: String): Option[Path] = |
c70e7d24a16d
SQL database operations for combined session info;
wenzelm
parents:
65278
diff
changeset
|
655 |
input_dirs.map(_ + database(name)).find(_.is_file) |
c70e7d24a16d
SQL database operations for combined session info;
wenzelm
parents:
65278
diff
changeset
|
656 |
|
62637
0189fe0f6452
support for Poly/ML heap hierarchy, which saves a lot of disk space;
wenzelm
parents:
62636
diff
changeset
|
657 |
def heap(name: String): Path = |
65288 | 658 |
input_dirs.map(_ + Path.basic(name)).find(_.is_file) getOrElse |
62637
0189fe0f6452
support for Poly/ML heap hierarchy, which saves a lot of disk space;
wenzelm
parents:
62636
diff
changeset
|
659 |
error("Unknown logic " + quote(name) + " -- no heap file found in:\n" + |
62769 | 660 |
cat_lines(input_dirs.map(dir => " " + dir.expand.implode))) |
65287 | 661 |
|
662 |
||
65296 | 663 |
/* session info */ |
65281
c70e7d24a16d
SQL database operations for combined session info;
wenzelm
parents:
65278
diff
changeset
|
664 |
|
65296 | 665 |
def write_session_info( |
65318
342efc382558
eliminated somewhat redundant inlined name (despite a7aa17a1f721);
wenzelm
parents:
65298
diff
changeset
|
666 |
db: SQL.Database, |
65320
52861eebf58d
access table via session_name: db may in principle contain multiple entries;
wenzelm
parents:
65318
diff
changeset
|
667 |
name: String, |
65318
342efc382558
eliminated somewhat redundant inlined name (despite a7aa17a1f721);
wenzelm
parents:
65298
diff
changeset
|
668 |
build_log: Build_Log.Session_Info, |
342efc382558
eliminated somewhat redundant inlined name (despite a7aa17a1f721);
wenzelm
parents:
65298
diff
changeset
|
669 |
build: Build.Session_Info) |
65281
c70e7d24a16d
SQL database operations for combined session info;
wenzelm
parents:
65278
diff
changeset
|
670 |
{ |
c70e7d24a16d
SQL database operations for combined session info;
wenzelm
parents:
65278
diff
changeset
|
671 |
db.transaction { |
65296 | 672 |
db.create_table(Session_Info.table) |
65320
52861eebf58d
access table via session_name: db may in principle contain multiple entries;
wenzelm
parents:
65318
diff
changeset
|
673 |
using(Session_Info.delete_statement(db, name))(_.execute) |
65296 | 674 |
using(db.insert_statement(Session_Info.table))(stmt => |
65281
c70e7d24a16d
SQL database operations for combined session info;
wenzelm
parents:
65278
diff
changeset
|
675 |
{ |
65320
52861eebf58d
access table via session_name: db may in principle contain multiple entries;
wenzelm
parents:
65318
diff
changeset
|
676 |
db.set_string(stmt, 1, name) |
65296 | 677 |
db.set_bytes(stmt, 2, encode_properties(build_log.session_timing)) |
678 |
db.set_bytes(stmt, 3, compress_properties(build_log.command_timings)) |
|
679 |
db.set_bytes(stmt, 4, compress_properties(build_log.ml_statistics)) |
|
680 |
db.set_bytes(stmt, 5, compress_properties(build_log.task_statistics)) |
|
65284 | 681 |
db.set_string(stmt, 6, cat_lines(build.sources)) |
682 |
db.set_string(stmt, 7, cat_lines(build.input_heaps)) |
|
65291
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65288
diff
changeset
|
683 |
db.set_string(stmt, 8, build.output_heap getOrElse "") |
65283 | 684 |
db.set_int(stmt, 9, build.return_code) |
65281
c70e7d24a16d
SQL database operations for combined session info;
wenzelm
parents:
65278
diff
changeset
|
685 |
stmt.execute() |
c70e7d24a16d
SQL database operations for combined session info;
wenzelm
parents:
65278
diff
changeset
|
686 |
}) |
c70e7d24a16d
SQL database operations for combined session info;
wenzelm
parents:
65278
diff
changeset
|
687 |
} |
c70e7d24a16d
SQL database operations for combined session info;
wenzelm
parents:
65278
diff
changeset
|
688 |
} |
c70e7d24a16d
SQL database operations for combined session info;
wenzelm
parents:
65278
diff
changeset
|
689 |
|
65320
52861eebf58d
access table via session_name: db may in principle contain multiple entries;
wenzelm
parents:
65318
diff
changeset
|
690 |
def read_session_timing(db: SQL.Database, name: String): Properties.T = |
52861eebf58d
access table via session_name: db may in principle contain multiple entries;
wenzelm
parents:
65318
diff
changeset
|
691 |
decode_properties(read_bytes(db, name, Session_Info.session_timing)) |
65286 | 692 |
|
65320
52861eebf58d
access table via session_name: db may in principle contain multiple entries;
wenzelm
parents:
65318
diff
changeset
|
693 |
def read_command_timings(db: SQL.Database, name: String): List[Properties.T] = |
52861eebf58d
access table via session_name: db may in principle contain multiple entries;
wenzelm
parents:
65318
diff
changeset
|
694 |
read_properties(db, name, Session_Info.command_timings) |
65286 | 695 |
|
65320
52861eebf58d
access table via session_name: db may in principle contain multiple entries;
wenzelm
parents:
65318
diff
changeset
|
696 |
def read_ml_statistics(db: SQL.Database, name: String): List[Properties.T] = |
52861eebf58d
access table via session_name: db may in principle contain multiple entries;
wenzelm
parents:
65318
diff
changeset
|
697 |
read_properties(db, name, Session_Info.ml_statistics) |
65286 | 698 |
|
65320
52861eebf58d
access table via session_name: db may in principle contain multiple entries;
wenzelm
parents:
65318
diff
changeset
|
699 |
def read_task_statistics(db: SQL.Database, name: String): List[Properties.T] = |
52861eebf58d
access table via session_name: db may in principle contain multiple entries;
wenzelm
parents:
65318
diff
changeset
|
700 |
read_properties(db, name, Session_Info.task_statistics) |
65286 | 701 |
|
65320
52861eebf58d
access table via session_name: db may in principle contain multiple entries;
wenzelm
parents:
65318
diff
changeset
|
702 |
def read_build_log(db: SQL.Database, name: String, |
65291
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65288
diff
changeset
|
703 |
command_timings: Boolean = false, |
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65288
diff
changeset
|
704 |
ml_statistics: Boolean = false, |
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65288
diff
changeset
|
705 |
task_statistics: Boolean = false): Build_Log.Session_Info = |
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65288
diff
changeset
|
706 |
{ |
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65288
diff
changeset
|
707 |
Build_Log.Session_Info( |
65320
52861eebf58d
access table via session_name: db may in principle contain multiple entries;
wenzelm
parents:
65318
diff
changeset
|
708 |
session_timing = read_session_timing(db, name), |
52861eebf58d
access table via session_name: db may in principle contain multiple entries;
wenzelm
parents:
65318
diff
changeset
|
709 |
command_timings = if (command_timings) read_command_timings(db, name) else Nil, |
52861eebf58d
access table via session_name: db may in principle contain multiple entries;
wenzelm
parents:
65318
diff
changeset
|
710 |
ml_statistics = if (ml_statistics) read_ml_statistics(db, name) else Nil, |
52861eebf58d
access table via session_name: db may in principle contain multiple entries;
wenzelm
parents:
65318
diff
changeset
|
711 |
task_statistics = if (task_statistics) read_task_statistics(db, name) else Nil) |
65291
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65288
diff
changeset
|
712 |
} |
65285 | 713 |
|
65320
52861eebf58d
access table via session_name: db may in principle contain multiple entries;
wenzelm
parents:
65318
diff
changeset
|
714 |
def read_build(db: SQL.Database, name: String): Option[Build.Session_Info] = |
52861eebf58d
access table via session_name: db may in principle contain multiple entries;
wenzelm
parents:
65318
diff
changeset
|
715 |
using(Session_Info.select_statement(db, name, Session_Info.build_columns))(stmt => |
65285 | 716 |
{ |
717 |
val rs = stmt.executeQuery |
|
718 |
if (!rs.next) None |
|
719 |
else { |
|
720 |
Some( |
|
65281
c70e7d24a16d
SQL database operations for combined session info;
wenzelm
parents:
65278
diff
changeset
|
721 |
Build.Session_Info( |
65324 | 722 |
split_lines(db.string(rs, Session_Info.sources)), |
723 |
split_lines(db.string(rs, Session_Info.input_heaps)), |
|
724 |
db.string(rs, Session_Info.output_heap) match { case "" => None case s => Some(s) }, |
|
725 |
db.int(rs, Session_Info.return_code))) |
|
65281
c70e7d24a16d
SQL database operations for combined session info;
wenzelm
parents:
65278
diff
changeset
|
726 |
} |
c70e7d24a16d
SQL database operations for combined session info;
wenzelm
parents:
65278
diff
changeset
|
727 |
}) |
c70e7d24a16d
SQL database operations for combined session info;
wenzelm
parents:
65278
diff
changeset
|
728 |
} |
62631 | 729 |
} |