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