author | wenzelm |
Wed, 27 Jul 2022 13:13:59 +0200 | |
changeset 75709 | a068fb7346ef |
parent 75680 | 605f4b6b5785 |
child 75732 | 14598eca6c20 |
permissions | -rw-r--r-- |
62631 | 1 |
/* Title: Pure/Thy/sessions.scala |
2 |
Author: Makarius |
|
3 |
||
65430 | 4 |
Cumulative session information. |
62631 | 5 |
*/ |
6 |
||
7 |
package isabelle |
|
8 |
||
65461
b6c2e30dc018
support for known theories files (according to multiple uses);
wenzelm
parents:
65457
diff
changeset
|
9 |
import java.io.{File => JFile} |
62704
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
10 |
import java.nio.ByteBuffer |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
11 |
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
|
12 |
import java.nio.file.StandardOpenOption |
62631 | 13 |
|
73364 | 14 |
import scala.collection.immutable.{SortedSet, SortedMap} |
62631 | 15 |
import scala.collection.mutable |
16 |
||
17 |
||
75393 | 18 |
object Sessions { |
67284 | 19 |
/* session and theory names */ |
62883 | 20 |
|
72837 | 21 |
val ROOTS: Path = Path.explode("ROOTS") |
72832 | 22 |
val ROOT: Path = Path.explode("ROOT") |
23 |
||
72837 | 24 |
val roots_name: String = "ROOTS" |
67215 | 25 |
val root_name: String = "ROOT" |
75406 | 26 |
val theory_import: String = "Pure.Sessions" |
67215 | 27 |
|
69762
58fb0d779583
support for session information via virtual file-system;
wenzelm
parents:
69671
diff
changeset
|
28 |
val UNSORTED = "Unsorted" |
65445
e9e7f5f5794c
more qualifier treatment, but in the end it is still ignored;
wenzelm
parents:
65441
diff
changeset
|
29 |
val DRAFT = "Draft" |
e9e7f5f5794c
more qualifier treatment, but in the end it is still ignored;
wenzelm
parents:
65441
diff
changeset
|
30 |
|
65360 | 31 |
def is_pure(name: String): Boolean = name == Thy_Header.PURE |
64856 | 32 |
|
67284 | 33 |
|
34 |
def exclude_session(name: String): Boolean = name == "" || name == DRAFT |
|
35 |
||
67286 | 36 |
def exclude_theory(name: String): Boolean = |
67290 | 37 |
name == root_name || name == "README" || name == "index" || name == "bib" |
67284 | 38 |
|
39 |
||
72837 | 40 |
/* ROOTS file format */ |
41 |
||
75393 | 42 |
class File_Format extends isabelle.File_Format { |
72837 | 43 |
val format_name: String = roots_name |
44 |
val file_ext = "" |
|
72839
a597300290de
clarified File_Format.detect: needs to operate on full node name;
wenzelm
parents:
72837
diff
changeset
|
45 |
|
a597300290de
clarified File_Format.detect: needs to operate on full node name;
wenzelm
parents:
72837
diff
changeset
|
46 |
override def detect(name: String): Boolean = |
a597300290de
clarified File_Format.detect: needs to operate on full node name;
wenzelm
parents:
72837
diff
changeset
|
47 |
Thy_Header.split_file_name(name) match { |
a597300290de
clarified File_Format.detect: needs to operate on full node name;
wenzelm
parents:
72837
diff
changeset
|
48 |
case Some((_, file_name)) => file_name == roots_name |
a597300290de
clarified File_Format.detect: needs to operate on full node name;
wenzelm
parents:
72837
diff
changeset
|
49 |
case None => false |
a597300290de
clarified File_Format.detect: needs to operate on full node name;
wenzelm
parents:
72837
diff
changeset
|
50 |
} |
72837 | 51 |
|
52 |
override def theory_suffix: String = "ROOTS_file" |
|
53 |
override def theory_content(name: String): String = |
|
54 |
"""theory "ROOTS" imports Pure begin ROOTS_file """ + |
|
55 |
Outer_Syntax.quote_string(name) + """ end""" |
|
56 |
} |
|
57 |
||
58 |
||
67284 | 59 |
/* base info and source dependencies */ |
60 |
||
65495 | 61 |
sealed case class Base( |
66571 | 62 |
pos: Position.T = Position.none, |
70681 | 63 |
session_directories: Map[JFile, String] = Map.empty, |
65495 | 64 |
global_theories: Map[String, String] = Map.empty, |
72323
e36f94e2eb6b
some support for document preparation in Isabelle/Scala;
wenzelm
parents:
72068
diff
changeset
|
65 |
session_theories: List[Document.Node.Name] = Nil, |
72600
2fa4f25d9d07
official support for document theories from other sessions;
wenzelm
parents:
72574
diff
changeset
|
66 |
document_theories: List[Document.Node.Name] = Nil, |
66717
67dbf5cdc056
more informative loaded_theories: dependencies and syntax;
wenzelm
parents:
66716
diff
changeset
|
67 |
loaded_theories: Graph[String, Outer_Syntax] = Graph.string, |
70687
086575316fd5
eliminated pointless theory graph (reverting parts of a56eab490f4e): it caused problems with loaded vs. non-loaded node names, e.g. for theory Pure (see also 29bb1ebb188f);
wenzelm
parents:
70686
diff
changeset
|
68 |
used_theories: List[(Document.Node.Name, Options)] = Nil, |
72816
ea4f86914cb2
support for PIDE markup for auxiliary files ("blobs");
wenzelm
parents:
72799
diff
changeset
|
69 |
load_commands: Map[Document.Node.Name, List[Command_Span.Span]] = Map.empty, |
70740 | 70 |
known_theories: Map[String, Document.Node.Entry] = Map.empty, |
71 |
known_loaded_files: Map[String, List[Path]] = Map.empty, |
|
66720 | 72 |
overall_syntax: Outer_Syntax = Outer_Syntax.empty, |
66744 | 73 |
imported_sources: List[(Path, SHA1.Digest)] = Nil, |
65495 | 74 |
sources: List[(Path, SHA1.Digest)] = Nil, |
66822 | 75 |
session_graph_display: Graph_Display.Graph = Graph_Display.empty_graph, |
75393 | 76 |
errors: List[String] = Nil |
77 |
) { |
|
69102
4b06a20b13b5
tuned output -- avoid bombing of Scala toplevel, e.g. for AFP deps;
wenzelm
parents:
69080
diff
changeset
|
78 |
override def toString: String = |
4b06a20b13b5
tuned output -- avoid bombing of Scala toplevel, e.g. for AFP deps;
wenzelm
parents:
69080
diff
changeset
|
79 |
"Sessions.Base(loaded_theories = " + loaded_theories.size + |
4b06a20b13b5
tuned output -- avoid bombing of Scala toplevel, e.g. for AFP deps;
wenzelm
parents:
69080
diff
changeset
|
80 |
", used_theories = " + used_theories.length + ")" |
4b06a20b13b5
tuned output -- avoid bombing of Scala toplevel, e.g. for AFP deps;
wenzelm
parents:
69080
diff
changeset
|
81 |
|
66967
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
82 |
def theory_qualifier(name: String): String = |
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
83 |
global_theories.getOrElse(name, Long_Name.qualifier(name)) |
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
84 |
def theory_qualifier(name: Document.Node.Name): String = theory_qualifier(name.theory) |
66966 | 85 |
|
66717
67dbf5cdc056
more informative loaded_theories: dependencies and syntax;
wenzelm
parents:
66716
diff
changeset
|
86 |
def loaded_theory(name: String): Boolean = loaded_theories.defined(name) |
66712 | 87 |
def loaded_theory(name: Document.Node.Name): Boolean = loaded_theory(name.theory) |
65432 | 88 |
|
66717
67dbf5cdc056
more informative loaded_theories: dependencies and syntax;
wenzelm
parents:
66716
diff
changeset
|
89 |
def loaded_theory_syntax(name: String): Option[Outer_Syntax] = |
67dbf5cdc056
more informative loaded_theories: dependencies and syntax;
wenzelm
parents:
66716
diff
changeset
|
90 |
if (loaded_theory(name)) Some(loaded_theories.get_node(name)) else None |
67dbf5cdc056
more informative loaded_theories: dependencies and syntax;
wenzelm
parents:
66716
diff
changeset
|
91 |
def loaded_theory_syntax(name: Document.Node.Name): Option[Outer_Syntax] = |
67dbf5cdc056
more informative loaded_theories: dependencies and syntax;
wenzelm
parents:
66716
diff
changeset
|
92 |
loaded_theory_syntax(name.theory) |
67dbf5cdc056
more informative loaded_theories: dependencies and syntax;
wenzelm
parents:
66716
diff
changeset
|
93 |
|
72669 | 94 |
def theory_syntax(name: Document.Node.Name): Outer_Syntax = |
95 |
loaded_theory_syntax(name) getOrElse overall_syntax |
|
96 |
||
66770
122df1fde073
clarified node_syntax (amending ae38b8c0fdd9): default to overall_syntax, e.g. relevant for command spans wrt. bad header;
wenzelm
parents:
66764
diff
changeset
|
97 |
def node_syntax(nodes: Document.Nodes, name: Document.Node.Name): Outer_Syntax = |
122df1fde073
clarified node_syntax (amending ae38b8c0fdd9): default to overall_syntax, e.g. relevant for command spans wrt. bad header;
wenzelm
parents:
66764
diff
changeset
|
98 |
nodes(name).syntax orElse loaded_theory_syntax(name) getOrElse overall_syntax |
65355 | 99 |
} |
64856 | 100 |
|
75393 | 101 |
sealed case class Deps(sessions_structure: Structure, session_bases: Map[String, Base]) { |
69102
4b06a20b13b5
tuned output -- avoid bombing of Scala toplevel, e.g. for AFP deps;
wenzelm
parents:
69080
diff
changeset
|
102 |
override def toString: String = "Sessions.Deps(" + sessions_structure + ")" |
4b06a20b13b5
tuned output -- avoid bombing of Scala toplevel, e.g. for AFP deps;
wenzelm
parents:
69080
diff
changeset
|
103 |
|
65463
104502de757c
more informative known_files: known_theories within the local session directory come first;
wenzelm
parents:
65461
diff
changeset
|
104 |
def is_empty: Boolean = session_bases.isEmpty |
104502de757c
more informative known_files: known_theories within the local session directory come first;
wenzelm
parents:
65461
diff
changeset
|
105 |
def apply(name: String): Base = session_bases(name) |
66988 | 106 |
def get(name: String): Option[Base] = session_bases.get(name) |
66744 | 107 |
|
108 |
def imported_sources(name: String): List[SHA1.Digest] = |
|
109 |
session_bases(name).imported_sources.map(_._2) |
|
110 |
||
111 |
def sources(name: String): List[SHA1.Digest] = |
|
112 |
session_bases(name).sources.map(_._2) |
|
66571 | 113 |
|
114 |
def errors: List[String] = |
|
115 |
(for { |
|
116 |
(name, base) <- session_bases.iterator |
|
117 |
if base.errors.nonEmpty |
|
118 |
} yield cat_lines(base.errors) + |
|
119 |
"\nThe error(s) above occurred in session " + quote(name) + Position.here(base.pos) |
|
120 |
).toList |
|
121 |
||
122 |
def check_errors: Deps = |
|
123 |
errors match { |
|
124 |
case Nil => this |
|
125 |
case errs => error(cat_lines(errs)) |
|
126 |
} |
|
65251 | 127 |
} |
64856 | 128 |
|
67052 | 129 |
def deps(sessions_structure: Structure, |
75393 | 130 |
progress: Progress = new Progress, |
131 |
inlined_files: Boolean = false, |
|
132 |
verbose: Boolean = false, |
|
133 |
list_files: Boolean = false, |
|
134 |
check_keywords: Set[String] = Set.empty |
|
135 |
): Deps = { |
|
66743 | 136 |
var cache_sources = Map.empty[JFile, SHA1.Digest] |
75393 | 137 |
def check_sources(paths: List[Path]): List[(Path, SHA1.Digest)] = { |
66743 | 138 |
for { |
139 |
path <- paths |
|
140 |
file = path.file |
|
141 |
if cache_sources.isDefinedAt(file) || file.isFile |
|
142 |
} |
|
143 |
yield { |
|
144 |
cache_sources.get(file) match { |
|
145 |
case Some(digest) => (path, digest) |
|
146 |
case None => |
|
147 |
val digest = SHA1.digest(file) |
|
148 |
cache_sources = cache_sources + (file -> digest) |
|
149 |
(path, digest) |
|
150 |
} |
|
151 |
} |
|
152 |
} |
|
153 |
||
65463
104502de757c
more informative known_files: known_theories within the local session directory come first;
wenzelm
parents:
65461
diff
changeset
|
154 |
val session_bases = |
73359 | 155 |
sessions_structure.imports_topological_order.foldLeft(Map("" -> sessions_structure.bootstrap)) { |
67023 | 156 |
case (session_bases, session_name) => |
67880 | 157 |
progress.expose_interrupt() |
65251 | 158 |
|
67024 | 159 |
val info = sessions_structure(session_name) |
65463
104502de757c
more informative known_files: known_theories within the local session directory come first;
wenzelm
parents:
65461
diff
changeset
|
160 |
try { |
72066 | 161 |
val deps_base = info.deps_base(session_bases) |
162 |
val resources = new Resources(sessions_structure, deps_base) |
|
65251 | 163 |
|
65463
104502de757c
more informative known_files: known_theories within the local session directory come first;
wenzelm
parents:
65461
diff
changeset
|
164 |
if (verbose || list_files) { |
104502de757c
more informative known_files: known_theories within the local session directory come first;
wenzelm
parents:
65461
diff
changeset
|
165 |
val groups = |
104502de757c
more informative known_files: known_theories within the local session directory come first;
wenzelm
parents:
65461
diff
changeset
|
166 |
if (info.groups.isEmpty) "" |
104502de757c
more informative known_files: known_theories within the local session directory come first;
wenzelm
parents:
65461
diff
changeset
|
167 |
else info.groups.mkString(" (", " ", ")") |
72670 | 168 |
progress.echo("Session " + info.chapter_session + groups) |
65463
104502de757c
more informative known_files: known_theories within the local session directory come first;
wenzelm
parents:
65461
diff
changeset
|
169 |
} |
65251 | 170 |
|
69008
d55783ea6cf6
more detailed session dependencies, with conditions for theories;
wenzelm
parents:
68841
diff
changeset
|
171 |
val dependencies = resources.session_dependencies(info) |
65251 | 172 |
|
67053 | 173 |
val overall_syntax = dependencies.overall_syntax |
65251 | 174 |
|
72323
e36f94e2eb6b
some support for document preparation in Isabelle/Scala;
wenzelm
parents:
72068
diff
changeset
|
175 |
val session_theories = |
72565 | 176 |
dependencies.theories.filter(name => deps_base.theory_qualifier(name) == session_name) |
72323
e36f94e2eb6b
some support for document preparation in Isabelle/Scala;
wenzelm
parents:
72068
diff
changeset
|
177 |
|
67059 | 178 |
val theory_files = dependencies.theories.map(_.path) |
72068
4768b1facec2
clarified errors: avoid hiding of import_errors/dir_errors by their consequences (file-access problems);
wenzelm
parents:
72067
diff
changeset
|
179 |
|
72816
ea4f86914cb2
support for PIDE markup for auxiliary files ("blobs");
wenzelm
parents:
72799
diff
changeset
|
180 |
dependencies.load_commands |
ea4f86914cb2
support for PIDE markup for auxiliary files ("blobs");
wenzelm
parents:
72799
diff
changeset
|
181 |
|
ea4f86914cb2
support for PIDE markup for auxiliary files ("blobs");
wenzelm
parents:
72799
diff
changeset
|
182 |
val (load_commands, load_commands_errors) = |
ea4f86914cb2
support for PIDE markup for auxiliary files ("blobs");
wenzelm
parents:
72799
diff
changeset
|
183 |
try { if (inlined_files) (dependencies.load_commands, Nil) else (Nil, Nil) } |
72068
4768b1facec2
clarified errors: avoid hiding of import_errors/dir_errors by their consequences (file-access problems);
wenzelm
parents:
72067
diff
changeset
|
184 |
catch { case ERROR(msg) => (Nil, List(msg)) } |
65251 | 185 |
|
72816
ea4f86914cb2
support for PIDE markup for auxiliary files ("blobs");
wenzelm
parents:
72799
diff
changeset
|
186 |
val loaded_files = |
ea4f86914cb2
support for PIDE markup for auxiliary files ("blobs");
wenzelm
parents:
72799
diff
changeset
|
187 |
load_commands.map({ case (name, spans) => dependencies.loaded_files(name, spans) }) |
ea4f86914cb2
support for PIDE markup for auxiliary files ("blobs");
wenzelm
parents:
72799
diff
changeset
|
188 |
|
66742 | 189 |
val session_files = |
66701 | 190 |
(theory_files ::: loaded_files.flatMap(_._2) ::: |
65463
104502de757c
more informative known_files: known_theories within the local session directory come first;
wenzelm
parents:
65461
diff
changeset
|
191 |
info.document_files.map(file => info.dir + file._1 + file._2)).map(_.expand) |
104502de757c
more informative known_files: known_theories within the local session directory come first;
wenzelm
parents:
65461
diff
changeset
|
192 |
|
67053 | 193 |
val imported_files = if (inlined_files) dependencies.imported_files else Nil |
66743 | 194 |
|
65463
104502de757c
more informative known_files: known_theories within the local session directory come first;
wenzelm
parents:
65461
diff
changeset
|
195 |
if (list_files) |
66742 | 196 |
progress.echo(cat_lines(session_files.map(_.implode).sorted.map(" " + _))) |
65463
104502de757c
more informative known_files: known_theories within the local session directory come first;
wenzelm
parents:
65461
diff
changeset
|
197 |
|
66719
d37efafd55b5
clarified theory syntax vs. overall session syntax;
wenzelm
parents:
66718
diff
changeset
|
198 |
if (check_keywords.nonEmpty) { |
d37efafd55b5
clarified theory syntax vs. overall session syntax;
wenzelm
parents:
66718
diff
changeset
|
199 |
Check_Keywords.check_keywords( |
66720 | 200 |
progress, overall_syntax.keywords, check_keywords, theory_files) |
66719
d37efafd55b5
clarified theory syntax vs. overall session syntax;
wenzelm
parents:
66718
diff
changeset
|
201 |
} |
65251 | 202 |
|
75393 | 203 |
val session_graph_display: Graph_Display.Graph = { |
65507
decdb95bd007
clarified session graph: collapse theories from other sessions;
wenzelm
parents:
65500
diff
changeset
|
204 |
def session_node(name: String): Graph_Display.Node = |
decdb95bd007
clarified session graph: collapse theories from other sessions;
wenzelm
parents:
65500
diff
changeset
|
205 |
Graph_Display.Node("[" + name + "]", "session." + name) |
decdb95bd007
clarified session graph: collapse theories from other sessions;
wenzelm
parents:
65500
diff
changeset
|
206 |
|
75393 | 207 |
def node(name: Document.Node.Name): Graph_Display.Node = { |
72066 | 208 |
val qualifier = deps_base.theory_qualifier(name) |
66780
bf54ca580bf2
theory qualifier is always session name (see also 31e8a86971a8);
wenzelm
parents:
66770
diff
changeset
|
209 |
if (qualifier == info.name) |
65507
decdb95bd007
clarified session graph: collapse theories from other sessions;
wenzelm
parents:
65500
diff
changeset
|
210 |
Graph_Display.Node(name.theory_base_name, "theory." + name.theory) |
65528 | 211 |
else session_node(qualifier) |
65507
decdb95bd007
clarified session graph: collapse theories from other sessions;
wenzelm
parents:
65500
diff
changeset
|
212 |
} |
decdb95bd007
clarified session graph: collapse theories from other sessions;
wenzelm
parents:
65500
diff
changeset
|
213 |
|
70946
79d23e6436d0
clarified session_graph_display: restrict sessions to actually required theories;
wenzelm
parents:
70869
diff
changeset
|
214 |
val required_sessions = |
79d23e6436d0
clarified session_graph_display: restrict sessions to actually required theories;
wenzelm
parents:
70869
diff
changeset
|
215 |
dependencies.loaded_theories.all_preds(dependencies.theories.map(_.theory)) |
72066 | 216 |
.map(theory => deps_base.theory_qualifier(theory)) |
71574
95460356d633
avoid premature crash due to missing session parents/imports;
wenzelm
parents:
71569
diff
changeset
|
217 |
.filter(name => name != info.name && sessions_structure.defined(name)) |
70946
79d23e6436d0
clarified session_graph_display: restrict sessions to actually required theories;
wenzelm
parents:
70869
diff
changeset
|
218 |
|
79d23e6436d0
clarified session_graph_display: restrict sessions to actually required theories;
wenzelm
parents:
70869
diff
changeset
|
219 |
val required_subgraph = |
79d23e6436d0
clarified session_graph_display: restrict sessions to actually required theories;
wenzelm
parents:
70869
diff
changeset
|
220 |
sessions_structure.imports_graph |
79d23e6436d0
clarified session_graph_display: restrict sessions to actually required theories;
wenzelm
parents:
70869
diff
changeset
|
221 |
.restrict(sessions_structure.imports_graph.all_preds(required_sessions).toSet) |
79d23e6436d0
clarified session_graph_display: restrict sessions to actually required theories;
wenzelm
parents:
70869
diff
changeset
|
222 |
.transitive_closure |
79d23e6436d0
clarified session_graph_display: restrict sessions to actually required theories;
wenzelm
parents:
70869
diff
changeset
|
223 |
.restrict(required_sessions.toSet) |
79d23e6436d0
clarified session_graph_display: restrict sessions to actually required theories;
wenzelm
parents:
70869
diff
changeset
|
224 |
.transitive_reduction_acyclic |
65507
decdb95bd007
clarified session graph: collapse theories from other sessions;
wenzelm
parents:
65500
diff
changeset
|
225 |
|
decdb95bd007
clarified session graph: collapse theories from other sessions;
wenzelm
parents:
65500
diff
changeset
|
226 |
val graph0 = |
73359 | 227 |
required_subgraph.topological_order.foldLeft(Graph_Display.empty_graph) { |
228 |
case (g, session) => |
|
229 |
val a = session_node(session) |
|
230 |
val bs = required_subgraph.imm_preds(session).toList.map(session_node) |
|
231 |
bs.foldLeft((a :: bs).foldLeft(g)(_.default_node(_, Nil)))(_.add_edge(_, a)) |
|
232 |
} |
|
65507
decdb95bd007
clarified session graph: collapse theories from other sessions;
wenzelm
parents:
65500
diff
changeset
|
233 |
|
73359 | 234 |
dependencies.entries.foldLeft(graph0) { |
235 |
case (g, entry) => |
|
236 |
val a = node(entry.name) |
|
237 |
val bs = entry.header.imports.map(node).filterNot(_ == a) |
|
238 |
bs.foldLeft((a :: bs).foldLeft(g)(_.default_node(_, Nil)))(_.add_edge(_, a)) |
|
239 |
} |
|
65507
decdb95bd007
clarified session graph: collapse theories from other sessions;
wenzelm
parents:
65500
diff
changeset
|
240 |
} |
decdb95bd007
clarified session graph: collapse theories from other sessions;
wenzelm
parents:
65500
diff
changeset
|
241 |
|
70740 | 242 |
val known_theories = |
73359 | 243 |
dependencies.entries.iterator.map(entry => entry.name.theory -> entry). |
244 |
foldLeft(deps_base.known_theories)(_ + _) |
|
70740 | 245 |
|
72066 | 246 |
val known_loaded_files = deps_base.known_loaded_files ++ loaded_files |
66701 | 247 |
|
75393 | 248 |
val import_errors = { |
72067
17507b48b6f5
clarified errors: avoid accidental import from other session that happens to be within overall selection (notably "isabelle build -a");
wenzelm
parents:
72066
diff
changeset
|
249 |
val known_sessions = |
17507b48b6f5
clarified errors: avoid accidental import from other session that happens to be within overall selection (notably "isabelle build -a");
wenzelm
parents:
72066
diff
changeset
|
250 |
sessions_structure.imports_requirements(List(session_name)).toSet |
17507b48b6f5
clarified errors: avoid accidental import from other session that happens to be within overall selection (notably "isabelle build -a");
wenzelm
parents:
72066
diff
changeset
|
251 |
for { |
17507b48b6f5
clarified errors: avoid accidental import from other session that happens to be within overall selection (notably "isabelle build -a");
wenzelm
parents:
72066
diff
changeset
|
252 |
name <- dependencies.theories |
17507b48b6f5
clarified errors: avoid accidental import from other session that happens to be within overall selection (notably "isabelle build -a");
wenzelm
parents:
72066
diff
changeset
|
253 |
qualifier = deps_base.theory_qualifier(name) |
17507b48b6f5
clarified errors: avoid accidental import from other session that happens to be within overall selection (notably "isabelle build -a");
wenzelm
parents:
72066
diff
changeset
|
254 |
if !known_sessions(qualifier) |
17507b48b6f5
clarified errors: avoid accidental import from other session that happens to be within overall selection (notably "isabelle build -a");
wenzelm
parents:
72066
diff
changeset
|
255 |
} yield "Bad import of theory " + quote(name.toString) + |
17507b48b6f5
clarified errors: avoid accidental import from other session that happens to be within overall selection (notably "isabelle build -a");
wenzelm
parents:
72066
diff
changeset
|
256 |
": need to include sessions " + quote(qualifier) + " in ROOT" |
17507b48b6f5
clarified errors: avoid accidental import from other session that happens to be within overall selection (notably "isabelle build -a");
wenzelm
parents:
72066
diff
changeset
|
257 |
} |
17507b48b6f5
clarified errors: avoid accidental import from other session that happens to be within overall selection (notably "isabelle build -a");
wenzelm
parents:
72066
diff
changeset
|
258 |
|
72600
2fa4f25d9d07
official support for document theories from other sessions;
wenzelm
parents:
72574
diff
changeset
|
259 |
val document_errors = |
2fa4f25d9d07
official support for document theories from other sessions;
wenzelm
parents:
72574
diff
changeset
|
260 |
info.document_theories.flatMap( |
2fa4f25d9d07
official support for document theories from other sessions;
wenzelm
parents:
72574
diff
changeset
|
261 |
{ |
2fa4f25d9d07
official support for document theories from other sessions;
wenzelm
parents:
72574
diff
changeset
|
262 |
case (thy, pos) => |
74812 | 263 |
val build_hierarchy = |
72647
fd6dc1a4b9ca
more robust, e.g. for "isabelle build_doc system";
wenzelm
parents:
72634
diff
changeset
|
264 |
if (sessions_structure.build_graph.defined(session_name)) { |
74812 | 265 |
sessions_structure.build_hierarchy(session_name) |
72647
fd6dc1a4b9ca
more robust, e.g. for "isabelle build_doc system";
wenzelm
parents:
72634
diff
changeset
|
266 |
} |
fd6dc1a4b9ca
more robust, e.g. for "isabelle build_doc system";
wenzelm
parents:
72634
diff
changeset
|
267 |
else Nil |
72600
2fa4f25d9d07
official support for document theories from other sessions;
wenzelm
parents:
72574
diff
changeset
|
268 |
|
2fa4f25d9d07
official support for document theories from other sessions;
wenzelm
parents:
72574
diff
changeset
|
269 |
def err(msg: String): Option[String] = |
2fa4f25d9d07
official support for document theories from other sessions;
wenzelm
parents:
72574
diff
changeset
|
270 |
Some(msg + " " + quote(thy) + Position.here(pos)) |
2fa4f25d9d07
official support for document theories from other sessions;
wenzelm
parents:
72574
diff
changeset
|
271 |
|
72604 | 272 |
known_theories.get(thy).map(_.name) match { |
72600
2fa4f25d9d07
official support for document theories from other sessions;
wenzelm
parents:
72574
diff
changeset
|
273 |
case None => err("Unknown document theory") |
72604 | 274 |
case Some(name) => |
275 |
val qualifier = deps_base.theory_qualifier(name) |
|
276 |
if (session_theories.contains(name)) { |
|
72600
2fa4f25d9d07
official support for document theories from other sessions;
wenzelm
parents:
72574
diff
changeset
|
277 |
err("Redundant document theory from this session:") |
2fa4f25d9d07
official support for document theories from other sessions;
wenzelm
parents:
72574
diff
changeset
|
278 |
} |
74812 | 279 |
else if (build_hierarchy.contains(qualifier)) None |
72604 | 280 |
else if (dependencies.theories.contains(name)) None |
72600
2fa4f25d9d07
official support for document theories from other sessions;
wenzelm
parents:
72574
diff
changeset
|
281 |
else err("Document theory from other session not imported properly:") |
2fa4f25d9d07
official support for document theories from other sessions;
wenzelm
parents:
72574
diff
changeset
|
282 |
} |
2fa4f25d9d07
official support for document theories from other sessions;
wenzelm
parents:
72574
diff
changeset
|
283 |
}) |
2fa4f25d9d07
official support for document theories from other sessions;
wenzelm
parents:
72574
diff
changeset
|
284 |
val document_theories = |
2fa4f25d9d07
official support for document theories from other sessions;
wenzelm
parents:
72574
diff
changeset
|
285 |
info.document_theories.map({ case (thy, _) => known_theories(thy).name }) |
2fa4f25d9d07
official support for document theories from other sessions;
wenzelm
parents:
72574
diff
changeset
|
286 |
|
75393 | 287 |
val dir_errors = { |
70681 | 288 |
val ok = info.dirs.map(_.canonical_file).toSet |
70679 | 289 |
val bad = |
290 |
(for { |
|
72565 | 291 |
name <- session_theories.iterator |
70719 | 292 |
path = name.master_dir_path |
70676 | 293 |
if !ok(path.canonical_file) |
70679 | 294 |
path1 = File.relative_path(info.dir.canonical, path).getOrElse(path) |
295 |
} yield (path1, name)).toList |
|
71602 | 296 |
val bad_dirs = (for { (path1, _) <- bad } yield path1.toString).distinct.sorted |
70679 | 297 |
|
298 |
val errs1 = |
|
299 |
for { (path1, name) <- bad } |
|
300 |
yield "Implicit use of directory " + path1 + " for theory " + quote(name.toString) |
|
301 |
val errs2 = |
|
302 |
if (bad_dirs.isEmpty) Nil |
|
303 |
else List("Implicit use of session directories: " + commas(bad_dirs)) |
|
70693 | 304 |
val errs3 = for (p <- info.dirs if !p.is_dir) yield "No such directory: " + p |
70719 | 305 |
val errs4 = |
306 |
(for { |
|
72565 | 307 |
name <- session_theories.iterator |
70719 | 308 |
name1 <- resources.find_theory_node(name.theory) |
309 |
if name.node != name1.node |
|
310 |
} yield "Incoherent theory file import:\n " + name.path + " vs. \n " + name1.path) |
|
311 |
.toList |
|
70693 | 312 |
|
70719 | 313 |
errs1 ::: errs2 ::: errs3 ::: errs4 |
70676 | 314 |
} |
315 |
||
66743 | 316 |
val sources_errors = |
317 |
for (p <- session_files if !p.is_file) yield "No such file: " + p |
|
66604 | 318 |
|
69904 | 319 |
val path_errors = |
320 |
try { Path.check_case_insensitive(session_files ::: imported_files); Nil } |
|
321 |
catch { case ERROR(msg) => List(msg) } |
|
322 |
||
67297
86a099f896fc
formal check of @{cite} bibtex entries -- only in batch-mode session builds;
wenzelm
parents:
67290
diff
changeset
|
323 |
val bibtex_errors = |
86a099f896fc
formal check of @{cite} bibtex entries -- only in batch-mode session builds;
wenzelm
parents:
67290
diff
changeset
|
324 |
try { info.bibtex_entries; Nil } |
86a099f896fc
formal check of @{cite} bibtex entries -- only in batch-mode session builds;
wenzelm
parents:
67290
diff
changeset
|
325 |
catch { case ERROR(msg) => List(msg) } |
86a099f896fc
formal check of @{cite} bibtex entries -- only in batch-mode session builds;
wenzelm
parents:
67290
diff
changeset
|
326 |
|
65463
104502de757c
more informative known_files: known_theories within the local session directory come first;
wenzelm
parents:
65461
diff
changeset
|
327 |
val base = |
66571 | 328 |
Base( |
329 |
pos = info.pos, |
|
70673
b0172698d0d3
theory_name based on session_directories: no need for expensive all_known;
wenzelm
parents:
70672
diff
changeset
|
330 |
session_directories = sessions_structure.session_directories, |
70671
cb1776c8e216
clarified signature: retain global session information, unaffected by later restriction;
wenzelm
parents:
70668
diff
changeset
|
331 |
global_theories = sessions_structure.global_theories, |
72323
e36f94e2eb6b
some support for document preparation in Isabelle/Scala;
wenzelm
parents:
72068
diff
changeset
|
332 |
session_theories = session_theories, |
72600
2fa4f25d9d07
official support for document theories from other sessions;
wenzelm
parents:
72574
diff
changeset
|
333 |
document_theories = document_theories, |
67053 | 334 |
loaded_theories = dependencies.loaded_theories, |
72062 | 335 |
used_theories = dependencies.theories_adjunct, |
72816
ea4f86914cb2
support for PIDE markup for auxiliary files ("blobs");
wenzelm
parents:
72799
diff
changeset
|
336 |
load_commands = load_commands.toMap, |
70740 | 337 |
known_theories = known_theories, |
338 |
known_loaded_files = known_loaded_files, |
|
66720 | 339 |
overall_syntax = overall_syntax, |
66744 | 340 |
imported_sources = check_sources(imported_files), |
66743 | 341 |
sources = check_sources(session_files), |
66822 | 342 |
session_graph_display = session_graph_display, |
72816
ea4f86914cb2
support for PIDE markup for auxiliary files ("blobs");
wenzelm
parents:
72799
diff
changeset
|
343 |
errors = dependencies.errors ::: load_commands_errors ::: import_errors ::: |
72600
2fa4f25d9d07
official support for document theories from other sessions;
wenzelm
parents:
72574
diff
changeset
|
344 |
document_errors ::: dir_errors ::: sources_errors ::: path_errors ::: |
2fa4f25d9d07
official support for document theories from other sessions;
wenzelm
parents:
72574
diff
changeset
|
345 |
bibtex_errors) |
65251 | 346 |
|
65519 | 347 |
session_bases + (info.name -> base) |
65463
104502de757c
more informative known_files: known_theories within the local session directory come first;
wenzelm
parents:
65461
diff
changeset
|
348 |
} |
104502de757c
more informative known_files: known_theories within the local session directory come first;
wenzelm
parents:
65461
diff
changeset
|
349 |
catch { |
104502de757c
more informative known_files: known_theories within the local session directory come first;
wenzelm
parents:
65461
diff
changeset
|
350 |
case ERROR(msg) => |
104502de757c
more informative known_files: known_theories within the local session directory come first;
wenzelm
parents:
65461
diff
changeset
|
351 |
cat_error(msg, "The error(s) above occurred in session " + |
65519 | 352 |
quote(info.name) + Position.here(info.pos)) |
65463
104502de757c
more informative known_files: known_theories within the local session directory come first;
wenzelm
parents:
65461
diff
changeset
|
353 |
} |
73359 | 354 |
} |
65251 | 355 |
|
70686
9cde8c4ea5a5
discontinued obsolete "isabelle imports" and all_known data;
wenzelm
parents:
70685
diff
changeset
|
356 |
Deps(sessions_structure, session_bases) |
65372
b722ee40c26c
refer to global_theories from all sessions, before selection;
wenzelm
parents:
65371
diff
changeset
|
357 |
} |
65251 | 358 |
|
66963 | 359 |
|
360 |
/* base info */ |
|
361 |
||
66974
b14c24b31f45
avoid duplicate invocation of expensive Sessions.deps on full_sessions;
wenzelm
parents:
66970
diff
changeset
|
362 |
sealed case class Base_Info( |
b14c24b31f45
avoid duplicate invocation of expensive Sessions.deps on full_sessions;
wenzelm
parents:
66970
diff
changeset
|
363 |
session: String, |
67052 | 364 |
sessions_structure: Structure, |
66975 | 365 |
errors: List[String], |
66974
b14c24b31f45
avoid duplicate invocation of expensive Sessions.deps on full_sessions;
wenzelm
parents:
66970
diff
changeset
|
366 |
base: Base, |
75393 | 367 |
infos: List[Info] |
368 |
) { |
|
72627 | 369 |
def check: Base_Info = if (errors.isEmpty) this else error(cat_lines(errors)) |
66974
b14c24b31f45
avoid duplicate invocation of expensive Sessions.deps on full_sessions;
wenzelm
parents:
66970
diff
changeset
|
370 |
} |
b14c24b31f45
avoid duplicate invocation of expensive Sessions.deps on full_sessions;
wenzelm
parents:
66970
diff
changeset
|
371 |
|
67846 | 372 |
def base_info(options: Options, |
373 |
session: String, |
|
71726
a5fda30edae2
clarified signature: more uniform treatment of stopped/interrupted state;
wenzelm
parents:
71642
diff
changeset
|
374 |
progress: Progress = new Progress, |
65428 | 375 |
dirs: List[Path] = Nil, |
67922
9e668ae81f97
clarified signature: prefer selective include_sessions;
wenzelm
parents:
67880
diff
changeset
|
376 |
include_sessions: List[String] = Nil, |
68370 | 377 |
session_ancestor: Option[String] = None, |
75393 | 378 |
session_requirements: Boolean = false |
379 |
): Base_Info = { |
|
67026 | 380 |
val full_sessions = load_structure(options, dirs = dirs) |
65372
b722ee40c26c
refer to global_theories from all sessions, before selection;
wenzelm
parents:
65371
diff
changeset
|
381 |
|
66990 | 382 |
val selected_sessions = |
68370 | 383 |
full_sessions.selection(Selection(sessions = session :: session_ancestor.toList)) |
66974
b14c24b31f45
avoid duplicate invocation of expensive Sessions.deps on full_sessions;
wenzelm
parents:
66970
diff
changeset
|
384 |
val info = selected_sessions(session) |
68370 | 385 |
val ancestor = session_ancestor orElse info.parent |
66963 | 386 |
|
66974
b14c24b31f45
avoid duplicate invocation of expensive Sessions.deps on full_sessions;
wenzelm
parents:
66970
diff
changeset
|
387 |
val (session1, infos1) = |
68370 | 388 |
if (session_requirements && ancestor.isDefined) { |
70671
cb1776c8e216
clarified signature: retain global session information, unaffected by later restriction;
wenzelm
parents:
70668
diff
changeset
|
389 |
val deps = Sessions.deps(selected_sessions, progress = progress) |
66974
b14c24b31f45
avoid duplicate invocation of expensive Sessions.deps on full_sessions;
wenzelm
parents:
66970
diff
changeset
|
390 |
val base = deps(session) |
66968
9991671c98aa
allow to augment session context via explicit session infos;
wenzelm
parents:
66967
diff
changeset
|
391 |
|
66988 | 392 |
val ancestor_loaded = |
393 |
deps.get(ancestor.get) match { |
|
66990 | 394 |
case Some(ancestor_base) |
395 |
if !selected_sessions.imports_requirements(List(ancestor.get)).contains(session) => |
|
71601 | 396 |
ancestor_base.loaded_theories.defined _ |
66990 | 397 |
case _ => |
66988 | 398 |
error("Bad ancestor " + quote(ancestor.get) + " for session " + quote(session)) |
399 |
} |
|
66974
b14c24b31f45
avoid duplicate invocation of expensive Sessions.deps on full_sessions;
wenzelm
parents:
66970
diff
changeset
|
400 |
|
b14c24b31f45
avoid duplicate invocation of expensive Sessions.deps on full_sessions;
wenzelm
parents:
66970
diff
changeset
|
401 |
val required_theories = |
66968
9991671c98aa
allow to augment session context via explicit session infos;
wenzelm
parents:
66967
diff
changeset
|
402 |
for { |
9991671c98aa
allow to augment session context via explicit session infos;
wenzelm
parents:
66967
diff
changeset
|
403 |
thy <- base.loaded_theories.keys |
66988 | 404 |
if !ancestor_loaded(thy) && base.theory_qualifier(thy) != session |
66968
9991671c98aa
allow to augment session context via explicit session infos;
wenzelm
parents:
66967
diff
changeset
|
405 |
} |
66974
b14c24b31f45
avoid duplicate invocation of expensive Sessions.deps on full_sessions;
wenzelm
parents:
66970
diff
changeset
|
406 |
yield thy |
66968
9991671c98aa
allow to augment session context via explicit session infos;
wenzelm
parents:
66967
diff
changeset
|
407 |
|
66988 | 408 |
if (required_theories.isEmpty) (ancestor.get, Nil) |
66968
9991671c98aa
allow to augment session context via explicit session infos;
wenzelm
parents:
66967
diff
changeset
|
409 |
else { |
68370 | 410 |
val other_name = info.name + "_requirements(" + ancestor.get + ")" |
71569
391ea80ff27c
more robust re-use of $ISABELLE_TMP_PREFIX (amending c1597167563e);
wenzelm
parents:
70946
diff
changeset
|
411 |
Isabelle_System.isabelle_tmp_prefix() |
391ea80ff27c
more robust re-use of $ISABELLE_TMP_PREFIX (amending c1597167563e);
wenzelm
parents:
70946
diff
changeset
|
412 |
|
66974
b14c24b31f45
avoid duplicate invocation of expensive Sessions.deps on full_sessions;
wenzelm
parents:
66970
diff
changeset
|
413 |
(other_name, |
66968
9991671c98aa
allow to augment session context via explicit session infos;
wenzelm
parents:
66967
diff
changeset
|
414 |
List( |
9991671c98aa
allow to augment session context via explicit session infos;
wenzelm
parents:
66967
diff
changeset
|
415 |
make_info(info.options, |
9991671c98aa
allow to augment session context via explicit session infos;
wenzelm
parents:
66967
diff
changeset
|
416 |
dir_selected = false, |
70685
c1597167563e
avoid duplicate directories wrt. synthetic session;
wenzelm
parents:
70684
diff
changeset
|
417 |
dir = Path.explode("$ISABELLE_TMP_PREFIX"), |
66968
9991671c98aa
allow to augment session context via explicit session infos;
wenzelm
parents:
66967
diff
changeset
|
418 |
chapter = info.chapter, |
9991671c98aa
allow to augment session context via explicit session infos;
wenzelm
parents:
66967
diff
changeset
|
419 |
Session_Entry( |
9991671c98aa
allow to augment session context via explicit session infos;
wenzelm
parents:
66967
diff
changeset
|
420 |
pos = info.pos, |
9991671c98aa
allow to augment session context via explicit session infos;
wenzelm
parents:
66967
diff
changeset
|
421 |
name = other_name, |
9991671c98aa
allow to augment session context via explicit session infos;
wenzelm
parents:
66967
diff
changeset
|
422 |
groups = info.groups, |
9991671c98aa
allow to augment session context via explicit session infos;
wenzelm
parents:
66967
diff
changeset
|
423 |
path = ".", |
66988 | 424 |
parent = ancestor, |
66974
b14c24b31f45
avoid duplicate invocation of expensive Sessions.deps on full_sessions;
wenzelm
parents:
66970
diff
changeset
|
425 |
description = "Required theory imports from other sessions", |
66968
9991671c98aa
allow to augment session context via explicit session infos;
wenzelm
parents:
66967
diff
changeset
|
426 |
options = Nil, |
66991 | 427 |
imports = info.deps, |
70678
36c8c32346cb
clarified syntax: 'directories' and 'theories' belong together;
wenzelm
parents:
70676
diff
changeset
|
428 |
directories = Nil, |
66974
b14c24b31f45
avoid duplicate invocation of expensive Sessions.deps on full_sessions;
wenzelm
parents:
66970
diff
changeset
|
429 |
theories = List((Nil, required_theories.map(thy => ((thy, Position.none), false)))), |
72600
2fa4f25d9d07
official support for document theories from other sessions;
wenzelm
parents:
72574
diff
changeset
|
430 |
document_theories = Nil, |
68292 | 431 |
document_files = Nil, |
75679
aa89255b704c
support for classpath artifacts within session structure:
wenzelm
parents:
75672
diff
changeset
|
432 |
export_files = Nil, |
aa89255b704c
support for classpath artifacts within session structure:
wenzelm
parents:
75672
diff
changeset
|
433 |
export_classpath = Nil)))) |
66968
9991671c98aa
allow to augment session context via explicit session infos;
wenzelm
parents:
66967
diff
changeset
|
434 |
} |
9991671c98aa
allow to augment session context via explicit session infos;
wenzelm
parents:
66967
diff
changeset
|
435 |
} |
66974
b14c24b31f45
avoid duplicate invocation of expensive Sessions.deps on full_sessions;
wenzelm
parents:
66970
diff
changeset
|
436 |
else (session, Nil) |
66968
9991671c98aa
allow to augment session context via explicit session infos;
wenzelm
parents:
66967
diff
changeset
|
437 |
|
66974
b14c24b31f45
avoid duplicate invocation of expensive Sessions.deps on full_sessions;
wenzelm
parents:
66970
diff
changeset
|
438 |
val full_sessions1 = |
b14c24b31f45
avoid duplicate invocation of expensive Sessions.deps on full_sessions;
wenzelm
parents:
66970
diff
changeset
|
439 |
if (infos1.isEmpty) full_sessions |
67026 | 440 |
else load_structure(options, dirs = dirs, infos = infos1) |
66987
352b23c97ac8
support focus_session, for much faster startup of Isabelle/jEdit;
wenzelm
parents:
66984
diff
changeset
|
441 |
|
352b23c97ac8
support focus_session, for much faster startup of Isabelle/jEdit;
wenzelm
parents:
66984
diff
changeset
|
442 |
val selected_sessions1 = |
70683
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70681
diff
changeset
|
443 |
full_sessions1.selection(Selection(sessions = session1 :: session :: include_sessions)) |
66964 | 444 |
|
70683
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70681
diff
changeset
|
445 |
val deps1 = Sessions.deps(selected_sessions1, progress = progress) |
66964 | 446 |
|
71599 | 447 |
Base_Info(session1, full_sessions1, deps1.errors, deps1(session1), infos1) |
65251 | 448 |
} |
449 |
||
450 |
||
65415
8cd54b18b68b
clarified signature: tree structure is not essential;
wenzelm
parents:
65410
diff
changeset
|
451 |
/* cumulative session info */ |
62631 | 452 |
|
453 |
sealed case class Info( |
|
65519 | 454 |
name: String, |
62631 | 455 |
chapter: String, |
66829 | 456 |
dir_selected: Boolean, |
62631 | 457 |
pos: Position.T, |
458 |
groups: List[String], |
|
459 |
dir: Path, |
|
460 |
parent: Option[String], |
|
461 |
description: String, |
|
70681 | 462 |
directories: List[Path], |
62631 | 463 |
options: Options, |
65420
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
464 |
imports: List[String], |
65517 | 465 |
theories: List[(Options, List[(String, Position.T)])], |
65374 | 466 |
global_theories: List[String], |
72600
2fa4f25d9d07
official support for document theories from other sessions;
wenzelm
parents:
72574
diff
changeset
|
467 |
document_theories: List[(String, Position.T)], |
62631 | 468 |
document_files: List[(Path, Path)], |
69671 | 469 |
export_files: List[(Path, Int, List[String])], |
75679
aa89255b704c
support for classpath artifacts within session structure:
wenzelm
parents:
75672
diff
changeset
|
470 |
export_classpath: List[String], |
75393 | 471 |
meta_digest: SHA1.Digest |
472 |
) { |
|
72670 | 473 |
def chapter_session: String = chapter + "/" + name |
474 |
||
73042 | 475 |
def relative_path(info1: Info): String = |
476 |
if (name == info1.name) "" |
|
477 |
else if (chapter == info1.chapter) "../" + info1.name + "/" |
|
478 |
else "../../" + info1.chapter_session + "/" |
|
479 |
||
66828 | 480 |
def deps: List[String] = parent.toList ::: imports |
481 |
||
75393 | 482 |
def deps_base(session_bases: String => Base): Base = { |
72066 | 483 |
val parent_base = session_bases(parent.getOrElse("")) |
484 |
val imports_bases = imports.map(session_bases) |
|
485 |
parent_base.copy( |
|
486 |
known_theories = |
|
73359 | 487 |
(for { |
488 |
base <- imports_bases.iterator |
|
489 |
(_, entry) <- base.known_theories.iterator |
|
490 |
} yield (entry.name.theory -> entry)).foldLeft(parent_base.known_theories)(_ + _), |
|
72066 | 491 |
known_loaded_files = |
73359 | 492 |
imports_bases.iterator.map(_.known_loaded_files). |
493 |
foldLeft(parent_base.known_loaded_files)(_ ++ _)) |
|
72066 | 494 |
} |
495 |
||
70681 | 496 |
def dirs: List[Path] = dir :: directories |
70668 | 497 |
|
73701 | 498 |
def timeout_ignored: Boolean = |
499 |
!options.bool("timeout_build") || Time.seconds(options.real("timeout")) < Time.ms(1) |
|
500 |
||
62631 | 501 |
def timeout: Time = Time.seconds(options.real("timeout") * options.real("timeout_scale")) |
67297
86a099f896fc
formal check of @{cite} bibtex entries -- only in batch-mode session builds;
wenzelm
parents:
67290
diff
changeset
|
502 |
|
72574
d892f6d66402
build documents in Isabelle/Scala, based on generated tex files as session exports;
wenzelm
parents:
72571
diff
changeset
|
503 |
def document_enabled: Boolean = |
d892f6d66402
build documents in Isabelle/Scala, based on generated tex files as session exports;
wenzelm
parents:
72571
diff
changeset
|
504 |
options.string("document") match { |
d892f6d66402
build documents in Isabelle/Scala, based on generated tex files as session exports;
wenzelm
parents:
72571
diff
changeset
|
505 |
case "" | "false" => false |
73826
72900f34dbb3
allow system option short form NAME for NAME=true for type string, not just bool;
wenzelm
parents:
73815
diff
changeset
|
506 |
case "pdf" | "true" => true |
72574
d892f6d66402
build documents in Isabelle/Scala, based on generated tex files as session exports;
wenzelm
parents:
72571
diff
changeset
|
507 |
case doc => error("Bad document specification " + quote(doc)) |
d892f6d66402
build documents in Isabelle/Scala, based on generated tex files as session exports;
wenzelm
parents:
72571
diff
changeset
|
508 |
} |
d892f6d66402
build documents in Isabelle/Scala, based on generated tex files as session exports;
wenzelm
parents:
72571
diff
changeset
|
509 |
|
75393 | 510 |
def document_variants: List[Document_Build.Document_Variant] = { |
72574
d892f6d66402
build documents in Isabelle/Scala, based on generated tex files as session exports;
wenzelm
parents:
72571
diff
changeset
|
511 |
val variants = |
72649 | 512 |
Library.space_explode(':', options.string("document_variants")). |
73718 | 513 |
map(Document_Build.Document_Variant.parse) |
72649 | 514 |
|
515 |
val dups = Library.duplicates(variants.map(_.name)) |
|
72574
d892f6d66402
build documents in Isabelle/Scala, based on generated tex files as session exports;
wenzelm
parents:
72571
diff
changeset
|
516 |
if (dups.nonEmpty) error("Duplicate document variants: " + commas_quote(dups)) |
d892f6d66402
build documents in Isabelle/Scala, based on generated tex files as session exports;
wenzelm
parents:
72571
diff
changeset
|
517 |
|
72649 | 518 |
variants |
519 |
} |
|
520 |
||
75393 | 521 |
def documents: List[Document_Build.Document_Variant] = { |
72672 | 522 |
val variants = document_variants |
72574
d892f6d66402
build documents in Isabelle/Scala, based on generated tex files as session exports;
wenzelm
parents:
72571
diff
changeset
|
523 |
if (!document_enabled || document_files.isEmpty) Nil else variants |
d892f6d66402
build documents in Isabelle/Scala, based on generated tex files as session exports;
wenzelm
parents:
72571
diff
changeset
|
524 |
} |
d892f6d66402
build documents in Isabelle/Scala, based on generated tex files as session exports;
wenzelm
parents:
72571
diff
changeset
|
525 |
|
d892f6d66402
build documents in Isabelle/Scala, based on generated tex files as session exports;
wenzelm
parents:
72571
diff
changeset
|
526 |
def document_output: Option[Path] = |
d892f6d66402
build documents in Isabelle/Scala, based on generated tex files as session exports;
wenzelm
parents:
72571
diff
changeset
|
527 |
options.string("document_output") match { |
d892f6d66402
build documents in Isabelle/Scala, based on generated tex files as session exports;
wenzelm
parents:
72571
diff
changeset
|
528 |
case "" => None |
d892f6d66402
build documents in Isabelle/Scala, based on generated tex files as session exports;
wenzelm
parents:
72571
diff
changeset
|
529 |
case s => Some(dir + Path.explode(s)) |
d892f6d66402
build documents in Isabelle/Scala, based on generated tex files as session exports;
wenzelm
parents:
72571
diff
changeset
|
530 |
} |
d892f6d66402
build documents in Isabelle/Scala, based on generated tex files as session exports;
wenzelm
parents:
72571
diff
changeset
|
531 |
|
72648 | 532 |
def browser_info: Boolean = options.bool("browser_info") |
533 |
||
72613
d01ea9e3bd2d
clarified bibtex_entries: refer to overall session structure;
wenzelm
parents:
72604
diff
changeset
|
534 |
lazy val bibtex_entries: List[Text.Info[String]] = |
67297
86a099f896fc
formal check of @{cite} bibtex entries -- only in batch-mode session builds;
wenzelm
parents:
67290
diff
changeset
|
535 |
(for { |
86a099f896fc
formal check of @{cite} bibtex entries -- only in batch-mode session builds;
wenzelm
parents:
67290
diff
changeset
|
536 |
(document_dir, file) <- document_files.iterator |
69366 | 537 |
if Bibtex.is_bibtex(file.file_name) |
67297
86a099f896fc
formal check of @{cite} bibtex entries -- only in batch-mode session builds;
wenzelm
parents:
67290
diff
changeset
|
538 |
info <- Bibtex.entries(File.read(dir + document_dir + file)).iterator |
86a099f896fc
formal check of @{cite} bibtex entries -- only in batch-mode session builds;
wenzelm
parents:
67290
diff
changeset
|
539 |
} yield info).toList |
70859
6e6254bbce1f
split into standard partitions, for improved scalability;
wenzelm
parents:
70796
diff
changeset
|
540 |
|
70869 | 541 |
def record_proofs: Boolean = options.int("record_proofs") >= 2 |
542 |
||
70859
6e6254bbce1f
split into standard partitions, for improved scalability;
wenzelm
parents:
70796
diff
changeset
|
543 |
def is_afp: Boolean = chapter == AFP.chapter |
6e6254bbce1f
split into standard partitions, for improved scalability;
wenzelm
parents:
70796
diff
changeset
|
544 |
def is_afp_bulky: Boolean = is_afp && groups.exists(AFP.groups_bulky.contains) |
62631 | 545 |
} |
546 |
||
75393 | 547 |
def make_info( |
548 |
options: Options, |
|
549 |
dir_selected: Boolean, |
|
550 |
dir: Path, |
|
551 |
chapter: String, |
|
552 |
entry: Session_Entry |
|
553 |
): Info = { |
|
66967
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
554 |
try { |
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
555 |
val name = entry.name |
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
556 |
|
67284 | 557 |
if (exclude_session(name)) error("Bad session name") |
66967
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
558 |
if (is_pure(name) && entry.parent.isDefined) error("Illegal parent session") |
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
559 |
if (!is_pure(name) && !entry.parent.isDefined) error("Missing parent session") |
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
560 |
|
70672
e4bba654d085
clarified session_directories: relative to session_path, with overlapping information;
wenzelm
parents:
70671
diff
changeset
|
561 |
val session_path = dir + Path.explode(entry.path) |
70681 | 562 |
val directories = entry.directories.map(dir => session_path + Path.explode(dir)) |
70668 | 563 |
|
66967
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
564 |
val session_options = options ++ entry.options |
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
565 |
|
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
566 |
val theories = |
67216 | 567 |
entry.theories.map({ case (opts, thys) => |
568 |
(session_options ++ opts, |
|
569 |
thys.map({ case ((thy, pos), _) => |
|
67284 | 570 |
if (exclude_theory(thy)) |
67216 | 571 |
error("Bad theory name " + quote(thy) + Position.here(pos)) |
572 |
else (thy, pos) })) }) |
|
66967
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
573 |
|
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
574 |
val global_theories = |
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
575 |
for { (_, thys) <- entry.theories; ((thy, pos), global) <- thys if global } |
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
576 |
yield { |
69366 | 577 |
val thy_name = Path.explode(thy).file_name |
66967
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
578 |
if (Long_Name.is_qualified(thy_name)) |
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
579 |
error("Bad qualified name for global theory " + |
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
580 |
quote(thy_name) + Position.here(pos)) |
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
581 |
else thy_name |
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
582 |
} |
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
583 |
|
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
584 |
val conditions = |
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
585 |
theories.flatMap(thys => space_explode(',', thys._1.string("condition"))).distinct.sorted. |
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
586 |
map(x => (x, Isabelle_System.getenv(x) != "")) |
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
587 |
|
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
588 |
val document_files = |
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
589 |
entry.document_files.map({ case (s1, s2) => (Path.explode(s1), Path.explode(s2)) }) |
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
590 |
|
68292 | 591 |
val export_files = |
69671 | 592 |
entry.export_files.map({ case (dir, prune, pats) => (Path.explode(dir), prune, pats) }) |
68292 | 593 |
|
66967
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
594 |
val meta_digest = |
72600
2fa4f25d9d07
official support for document theories from other sessions;
wenzelm
parents:
72574
diff
changeset
|
595 |
SHA1.digest( |
2fa4f25d9d07
official support for document theories from other sessions;
wenzelm
parents:
72574
diff
changeset
|
596 |
(name, chapter, entry.parent, entry.directories, entry.options, entry.imports, |
72666
945cee776e79
proper meta_digest: avoid non-portable position information;
wenzelm
parents:
72653
diff
changeset
|
597 |
entry.theories_no_position, conditions, entry.document_theories_no_position, |
945cee776e79
proper meta_digest: avoid non-portable position information;
wenzelm
parents:
72653
diff
changeset
|
598 |
entry.document_files) |
72600
2fa4f25d9d07
official support for document theories from other sessions;
wenzelm
parents:
72574
diff
changeset
|
599 |
.toString) |
66967
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
600 |
|
70672
e4bba654d085
clarified session_directories: relative to session_path, with overlapping information;
wenzelm
parents:
70671
diff
changeset
|
601 |
Info(name, chapter, dir_selected, entry.pos, entry.groups, session_path, |
70668 | 602 |
entry.parent, entry.description, directories, session_options, |
72600
2fa4f25d9d07
official support for document theories from other sessions;
wenzelm
parents:
72574
diff
changeset
|
603 |
entry.imports, theories, global_theories, entry.document_theories, document_files, |
75679
aa89255b704c
support for classpath artifacts within session structure:
wenzelm
parents:
75672
diff
changeset
|
604 |
export_files, entry.export_classpath, meta_digest) |
66967
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
605 |
} |
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
606 |
catch { |
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
607 |
case ERROR(msg) => |
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
608 |
error(msg + "\nThe error(s) above occurred in session entry " + |
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
609 |
quote(entry.name) + Position.here(entry.pos)) |
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
610 |
} |
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
611 |
} |
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
612 |
|
75393 | 613 |
object Selection { |
65422 | 614 |
val empty: Selection = Selection() |
65525 | 615 |
val all: Selection = Selection(all_sessions = true) |
70788 | 616 |
def session(session: String): Selection = Selection(sessions = List(session)) |
65419 | 617 |
} |
618 |
||
619 |
sealed case class Selection( |
|
620 |
requirements: Boolean = false, |
|
621 |
all_sessions: Boolean = false, |
|
66737
2edc0c42c883
option -B for "isabelle build" and "isabelle imports";
wenzelm
parents:
66736
diff
changeset
|
622 |
base_sessions: List[String] = Nil, |
65419 | 623 |
exclude_session_groups: List[String] = Nil, |
624 |
exclude_sessions: List[String] = Nil, |
|
625 |
session_groups: List[String] = Nil, |
|
75393 | 626 |
sessions: List[String] = Nil |
627 |
) { |
|
66736 | 628 |
def ++ (other: Selection): Selection = |
65422 | 629 |
Selection( |
630 |
requirements = requirements || other.requirements, |
|
631 |
all_sessions = all_sessions || other.all_sessions, |
|
66737
2edc0c42c883
option -B for "isabelle build" and "isabelle imports";
wenzelm
parents:
66736
diff
changeset
|
632 |
base_sessions = Library.merge(base_sessions, other.base_sessions), |
66736 | 633 |
exclude_session_groups = Library.merge(exclude_session_groups, other.exclude_session_groups), |
634 |
exclude_sessions = Library.merge(exclude_sessions, other.exclude_sessions), |
|
635 |
session_groups = Library.merge(session_groups, other.session_groups), |
|
636 |
sessions = Library.merge(sessions, other.sessions)) |
|
65419 | 637 |
} |
638 |
||
75393 | 639 |
object Structure { |
72858
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72855
diff
changeset
|
640 |
val empty: Structure = make(Nil) |
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72855
diff
changeset
|
641 |
|
75393 | 642 |
def make(infos: List[Info]): Structure = { |
643 |
def add_edges( |
|
644 |
graph: Graph[String, Info], |
|
645 |
kind: String, |
|
646 |
edges: Info => Iterable[String] |
|
647 |
) : Graph[String, Info] = { |
|
648 |
def add_edge(pos: Position.T, name: String, g: Graph[String, Info], parent: String) = { |
|
72855 | 649 |
if (!g.defined(parent)) |
650 |
error("Bad " + kind + " session " + quote(parent) + " for " + |
|
651 |
quote(name) + Position.here(pos)) |
|
65420
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
652 |
|
72855 | 653 |
try { g.add_edge_acyclic(parent, name) } |
654 |
catch { |
|
655 |
case exn: Graph.Cycles[_] => |
|
656 |
error(cat_lines(exn.cycles.map(cycle => |
|
657 |
"Cyclic session dependency of " + |
|
658 |
cycle.map(c => quote(c.toString)).mkString(" via "))) + Position.here(pos)) |
|
659 |
} |
|
660 |
} |
|
73359 | 661 |
graph.iterator.foldLeft(graph) { |
662 |
case (g, (name, (info, _))) => |
|
663 |
edges(info).foldLeft(g)(add_edge(info.pos, name, _, _)) |
|
65420
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
664 |
} |
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
665 |
} |
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
666 |
|
72855 | 667 |
val info_graph = |
73359 | 668 |
infos.foldLeft(Graph.string[Info]) { |
72855 | 669 |
case (graph, info) => |
670 |
if (graph.defined(info.name)) |
|
671 |
error("Duplicate session " + quote(info.name) + Position.here(info.pos) + |
|
672 |
Position.here(graph.get_node(info.name).pos)) |
|
673 |
else graph.new_node(info.name, info) |
|
674 |
} |
|
675 |
val build_graph = add_edges(info_graph, "parent", _.parent) |
|
676 |
val imports_graph = add_edges(build_graph, "imports", _.imports) |
|
62631 | 677 |
|
72855 | 678 |
val session_positions: List[(String, Position.T)] = |
679 |
(for ((name, (info, _)) <- info_graph.iterator) yield (name, info.pos)).toList |
|
70683
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70681
diff
changeset
|
680 |
|
72855 | 681 |
val session_directories: Map[JFile, String] = |
73359 | 682 |
(for { |
683 |
session <- imports_graph.topological_order.iterator |
|
684 |
info = info_graph.get_node(session) |
|
685 |
dir <- info.dirs.iterator |
|
686 |
} yield (info, dir)).foldLeft(Map.empty[JFile, String]) { |
|
687 |
case (dirs, (info, dir)) => |
|
72855 | 688 |
val session = info.name |
689 |
val canonical_dir = dir.canonical_file |
|
690 |
dirs.get(canonical_dir) match { |
|
691 |
case Some(session1) => |
|
692 |
val info1 = info_graph.get_node(session1) |
|
693 |
error("Duplicate use of directory " + dir + |
|
694 |
"\n for session " + quote(session1) + Position.here(info1.pos) + |
|
695 |
"\n vs. session " + quote(session) + Position.here(info.pos)) |
|
696 |
case None => dirs + (canonical_dir -> session) |
|
697 |
} |
|
73359 | 698 |
} |
70671
cb1776c8e216
clarified signature: retain global session information, unaffected by later restriction;
wenzelm
parents:
70668
diff
changeset
|
699 |
|
72855 | 700 |
val global_theories: Map[String, String] = |
73359 | 701 |
(for { |
702 |
session <- imports_graph.topological_order.iterator |
|
703 |
info = info_graph.get_node(session) |
|
704 |
thy <- info.global_theories.iterator } |
|
705 |
yield (info, thy)).foldLeft(Thy_Header.bootstrap_global_theories.toMap) { |
|
706 |
case (global, (info, thy)) => |
|
72855 | 707 |
val qualifier = info.name |
708 |
global.get(thy) match { |
|
709 |
case Some(qualifier1) if qualifier != qualifier1 => |
|
710 |
error("Duplicate global theory " + quote(thy) + Position.here(info.pos)) |
|
711 |
case _ => global + (thy -> qualifier) |
|
712 |
} |
|
73359 | 713 |
} |
70671
cb1776c8e216
clarified signature: retain global session information, unaffected by later restriction;
wenzelm
parents:
70668
diff
changeset
|
714 |
|
72855 | 715 |
new Structure( |
716 |
session_positions, session_directories, global_theories, build_graph, imports_graph) |
|
717 |
} |
|
62631 | 718 |
} |
719 |
||
67052 | 720 |
final class Structure private[Sessions]( |
75393 | 721 |
val session_positions: List[(String, Position.T)], |
722 |
val session_directories: Map[JFile, String], |
|
723 |
val global_theories: Map[String, String], |
|
724 |
val build_graph: Graph[String, Info], |
|
725 |
val imports_graph: Graph[String, Info] |
|
726 |
) { |
|
69524
fa94f2b2a877
clarified sessions_deps, according to Isabelle/MMT usage;
wenzelm
parents:
69393
diff
changeset
|
727 |
sessions_structure => |
fa94f2b2a877
clarified sessions_deps, according to Isabelle/MMT usage;
wenzelm
parents:
69393
diff
changeset
|
728 |
|
72845 | 729 |
def bootstrap: Base = |
730 |
Base( |
|
731 |
session_directories = session_directories, |
|
732 |
global_theories = global_theories, |
|
733 |
overall_syntax = Thy_Header.bootstrap_syntax) |
|
734 |
||
70683
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70681
diff
changeset
|
735 |
def dest_session_directories: List[(String, String)] = |
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70681
diff
changeset
|
736 |
for ((file, session) <- session_directories.toList) |
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70681
diff
changeset
|
737 |
yield (File.standard_path(file), session) |
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70681
diff
changeset
|
738 |
|
69762
58fb0d779583
support for session information via virtual file-system;
wenzelm
parents:
69671
diff
changeset
|
739 |
lazy val chapters: SortedMap[String, List[Info]] = |
73359 | 740 |
build_graph.iterator.foldLeft(SortedMap.empty[String, List[Info]]) { |
741 |
case (chs, (_, (info, _))) => |
|
742 |
chs + (info.chapter -> (info :: chs.getOrElse(info.chapter, Nil))) |
|
743 |
} |
|
69762
58fb0d779583
support for session information via virtual file-system;
wenzelm
parents:
69671
diff
changeset
|
744 |
|
66823 | 745 |
def build_graph_display: Graph_Display.Graph = Graph_Display.make_graph(build_graph) |
746 |
def imports_graph_display: Graph_Display.Graph = Graph_Display.make_graph(imports_graph) |
|
747 |
||
67025
961285f581e6
clarifified selection: always wrt. build_graph structure;
wenzelm
parents:
67024
diff
changeset
|
748 |
def defined(name: String): Boolean = imports_graph.defined(name) |
65420
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
749 |
def apply(name: String): Info = imports_graph.get_node(name) |
67025
961285f581e6
clarifified selection: always wrt. build_graph structure;
wenzelm
parents:
67024
diff
changeset
|
750 |
def get(name: String): Option[Info] = if (defined(name)) Some(apply(name)) else None |
62631 | 751 |
|
70859
6e6254bbce1f
split into standard partitions, for improved scalability;
wenzelm
parents:
70796
diff
changeset
|
752 |
def theory_qualifier(name: String): String = |
6e6254bbce1f
split into standard partitions, for improved scalability;
wenzelm
parents:
70796
diff
changeset
|
753 |
global_theories.getOrElse(name, Long_Name.qualifier(name)) |
6e6254bbce1f
split into standard partitions, for improved scalability;
wenzelm
parents:
70796
diff
changeset
|
754 |
|
75393 | 755 |
def check_sessions(names: List[String]): Unit = { |
71601 | 756 |
val bad_sessions = SortedSet(names.filterNot(defined): _*).toList |
68542 | 757 |
if (bad_sessions.nonEmpty) |
758 |
error("Undefined session(s): " + commas_quote(bad_sessions)) |
|
759 |
} |
|
760 |
||
68733 | 761 |
def check_sessions(sel: Selection): Unit = |
762 |
check_sessions(sel.base_sessions ::: sel.exclude_sessions ::: sel.sessions) |
|
763 |
||
75393 | 764 |
private def selected(graph: Graph[String, Info], sel: Selection): List[String] = { |
68733 | 765 |
check_sessions(sel) |
766 |
||
68732 | 767 |
val select_group = sel.session_groups.toSet |
68734
c14a2cc9b5ef
isabelle build options -c -x -B refer to imports_graph;
wenzelm
parents:
68733
diff
changeset
|
768 |
val select_session = sel.sessions.toSet ++ imports_graph.all_succs(sel.base_sessions) |
68732 | 769 |
|
770 |
val selected0 = |
|
771 |
if (sel.all_sessions) graph.keys |
|
772 |
else { |
|
773 |
(for { |
|
774 |
(name, (info, _)) <- graph.iterator |
|
74810 | 775 |
if info.dir_selected || select_session(name) || info.groups.exists(select_group) |
68732 | 776 |
} yield name).toList |
777 |
} |
|
778 |
||
779 |
if (sel.requirements) (graph.all_preds(selected0).toSet -- selected0).toList |
|
780 |
else selected0 |
|
781 |
} |
|
782 |
||
75393 | 783 |
def selection(sel: Selection): Structure = { |
68733 | 784 |
check_sessions(sel) |
67025
961285f581e6
clarifified selection: always wrt. build_graph structure;
wenzelm
parents:
67024
diff
changeset
|
785 |
|
75393 | 786 |
val excluded = { |
68732 | 787 |
val exclude_group = sel.exclude_session_groups.toSet |
788 |
val exclude_group_sessions = |
|
789 |
(for { |
|
68734
c14a2cc9b5ef
isabelle build options -c -x -B refer to imports_graph;
wenzelm
parents:
68733
diff
changeset
|
790 |
(name, (info, _)) <- imports_graph.iterator |
c14a2cc9b5ef
isabelle build options -c -x -B refer to imports_graph;
wenzelm
parents:
68733
diff
changeset
|
791 |
if imports_graph.get_node(name).groups.exists(exclude_group) |
68732 | 792 |
} yield name).toList |
68734
c14a2cc9b5ef
isabelle build options -c -x -B refer to imports_graph;
wenzelm
parents:
68733
diff
changeset
|
793 |
imports_graph.all_succs(exclude_group_sessions ::: sel.exclude_sessions).toSet |
68732 | 794 |
} |
67027 | 795 |
|
75393 | 796 |
def restrict(graph: Graph[String, Info]): Graph[String, Info] = { |
68732 | 797 |
val sessions = graph.all_preds(selected(graph, sel)).filterNot(excluded) |
67029 | 798 |
graph.restrict(graph.all_preds(sessions).toSet) |
67025
961285f581e6
clarifified selection: always wrt. build_graph structure;
wenzelm
parents:
67024
diff
changeset
|
799 |
} |
961285f581e6
clarifified selection: always wrt. build_graph structure;
wenzelm
parents:
67024
diff
changeset
|
800 |
|
70671
cb1776c8e216
clarified signature: retain global session information, unaffected by later restriction;
wenzelm
parents:
70668
diff
changeset
|
801 |
new Structure( |
70683
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70681
diff
changeset
|
802 |
session_positions, session_directories, global_theories, |
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70681
diff
changeset
|
803 |
restrict(build_graph), restrict(imports_graph)) |
62631 | 804 |
} |
805 |
||
72571 | 806 |
def selection(session: String): Structure = selection(Selection.session(session)) |
807 |
||
69524
fa94f2b2a877
clarified sessions_deps, according to Isabelle/MMT usage;
wenzelm
parents:
69393
diff
changeset
|
808 |
def selection_deps( |
fa94f2b2a877
clarified sessions_deps, according to Isabelle/MMT usage;
wenzelm
parents:
69393
diff
changeset
|
809 |
selection: Selection, |
71726
a5fda30edae2
clarified signature: more uniform treatment of stopped/interrupted state;
wenzelm
parents:
71642
diff
changeset
|
810 |
progress: Progress = new Progress, |
69524
fa94f2b2a877
clarified sessions_deps, according to Isabelle/MMT usage;
wenzelm
parents:
69393
diff
changeset
|
811 |
loading_sessions: Boolean = false, |
68304 | 812 |
inlined_files: Boolean = false, |
75393 | 813 |
verbose: Boolean = false |
814 |
): Deps = { |
|
69524
fa94f2b2a877
clarified sessions_deps, according to Isabelle/MMT usage;
wenzelm
parents:
69393
diff
changeset
|
815 |
val deps = |
70869 | 816 |
Sessions.deps(sessions_structure.selection(selection), |
69524
fa94f2b2a877
clarified sessions_deps, according to Isabelle/MMT usage;
wenzelm
parents:
69393
diff
changeset
|
817 |
progress = progress, inlined_files = inlined_files, verbose = verbose) |
fa94f2b2a877
clarified sessions_deps, according to Isabelle/MMT usage;
wenzelm
parents:
69393
diff
changeset
|
818 |
|
fa94f2b2a877
clarified sessions_deps, according to Isabelle/MMT usage;
wenzelm
parents:
69393
diff
changeset
|
819 |
if (loading_sessions) { |
fa94f2b2a877
clarified sessions_deps, according to Isabelle/MMT usage;
wenzelm
parents:
69393
diff
changeset
|
820 |
val selection_size = deps.sessions_structure.build_graph.size |
fa94f2b2a877
clarified sessions_deps, according to Isabelle/MMT usage;
wenzelm
parents:
69393
diff
changeset
|
821 |
if (selection_size > 1) progress.echo("Loading " + selection_size + " sessions ...") |
fa94f2b2a877
clarified sessions_deps, according to Isabelle/MMT usage;
wenzelm
parents:
69393
diff
changeset
|
822 |
} |
fa94f2b2a877
clarified sessions_deps, according to Isabelle/MMT usage;
wenzelm
parents:
69393
diff
changeset
|
823 |
|
fa94f2b2a877
clarified sessions_deps, according to Isabelle/MMT usage;
wenzelm
parents:
69393
diff
changeset
|
824 |
deps |
68304 | 825 |
} |
826 |
||
68732 | 827 |
def build_selection(sel: Selection): List[String] = selected(build_graph, sel) |
67029 | 828 |
def build_descendants(ss: List[String]): List[String] = build_graph.all_succs(ss) |
72065
11dc8929832d
clarified order --- proper sorting of requirements;
wenzelm
parents:
72064
diff
changeset
|
829 |
def build_requirements(ss: List[String]): List[String] = build_graph.all_preds_rev(ss) |
67029 | 830 |
def build_topological_order: List[String] = build_graph.topological_order |
74809 | 831 |
def build_hierarchy(session: String): List[String] = build_graph.all_preds(List(session)) |
62631 | 832 |
|
68732 | 833 |
def imports_selection(sel: Selection): List[String] = selected(imports_graph, sel) |
67029 | 834 |
def imports_descendants(ss: List[String]): List[String] = imports_graph.all_succs(ss) |
72065
11dc8929832d
clarified order --- proper sorting of requirements;
wenzelm
parents:
72064
diff
changeset
|
835 |
def imports_requirements(ss: List[String]): List[String] = imports_graph.all_preds_rev(ss) |
67029 | 836 |
def imports_topological_order: List[String] = imports_graph.topological_order |
74809 | 837 |
def imports_hierarchy(session: String): List[String] = imports_graph.all_preds(List(session)) |
65420
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
838 |
|
72613
d01ea9e3bd2d
clarified bibtex_entries: refer to overall session structure;
wenzelm
parents:
72604
diff
changeset
|
839 |
def bibtex_entries: List[(String, List[String])] = |
d01ea9e3bd2d
clarified bibtex_entries: refer to overall session structure;
wenzelm
parents:
72604
diff
changeset
|
840 |
build_topological_order.flatMap(name => |
d01ea9e3bd2d
clarified bibtex_entries: refer to overall session structure;
wenzelm
parents:
72604
diff
changeset
|
841 |
apply(name).bibtex_entries match { |
d01ea9e3bd2d
clarified bibtex_entries: refer to overall session structure;
wenzelm
parents:
72604
diff
changeset
|
842 |
case Nil => None |
d01ea9e3bd2d
clarified bibtex_entries: refer to overall session structure;
wenzelm
parents:
72604
diff
changeset
|
843 |
case entries => Some(name -> entries.map(_.info)) |
d01ea9e3bd2d
clarified bibtex_entries: refer to overall session structure;
wenzelm
parents:
72604
diff
changeset
|
844 |
}) |
d01ea9e3bd2d
clarified bibtex_entries: refer to overall session structure;
wenzelm
parents:
72604
diff
changeset
|
845 |
|
65420
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
846 |
override def toString: String = |
67052 | 847 |
imports_graph.keys_iterator.mkString("Sessions.Structure(", ", ", ")") |
62631 | 848 |
} |
849 |
||
850 |
||
851 |
/* parser */ |
|
852 |
||
853 |
private val CHAPTER = "chapter" |
|
854 |
private val SESSION = "session" |
|
855 |
private val IN = "in" |
|
856 |
private val DESCRIPTION = "description" |
|
70668 | 857 |
private val DIRECTORIES = "directories" |
62631 | 858 |
private val OPTIONS = "options" |
65420
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
859 |
private val SESSIONS = "sessions" |
62631 | 860 |
private val THEORIES = "theories" |
65374 | 861 |
private val GLOBAL = "global" |
72600
2fa4f25d9d07
official support for document theories from other sessions;
wenzelm
parents:
72574
diff
changeset
|
862 |
private val DOCUMENT_THEORIES = "document_theories" |
62631 | 863 |
private val DOCUMENT_FILES = "document_files" |
68292 | 864 |
private val EXPORT_FILES = "export_files" |
75679
aa89255b704c
support for classpath artifacts within session structure:
wenzelm
parents:
75672
diff
changeset
|
865 |
private val EXPORT_CLASSPATH = "export_classpath" |
62631 | 866 |
|
71601 | 867 |
val root_syntax: Outer_Syntax = |
70668 | 868 |
Outer_Syntax.empty + "(" + ")" + "+" + "," + "=" + "[" + "]" + |
70681 | 869 |
GLOBAL + IN + |
63443 | 870 |
(CHAPTER, Keyword.THY_DECL) + |
871 |
(SESSION, Keyword.THY_DECL) + |
|
872 |
(DESCRIPTION, Keyword.QUASI_COMMAND) + |
|
70668 | 873 |
(DIRECTORIES, Keyword.QUASI_COMMAND) + |
63443 | 874 |
(OPTIONS, Keyword.QUASI_COMMAND) + |
65420
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
875 |
(SESSIONS, Keyword.QUASI_COMMAND) + |
63443 | 876 |
(THEORIES, Keyword.QUASI_COMMAND) + |
72600
2fa4f25d9d07
official support for document theories from other sessions;
wenzelm
parents:
72574
diff
changeset
|
877 |
(DOCUMENT_THEORIES, Keyword.QUASI_COMMAND) + |
68292 | 878 |
(DOCUMENT_FILES, Keyword.QUASI_COMMAND) + |
75679
aa89255b704c
support for classpath artifacts within session structure:
wenzelm
parents:
75672
diff
changeset
|
879 |
(EXPORT_FILES, Keyword.QUASI_COMMAND) + |
aa89255b704c
support for classpath artifacts within session structure:
wenzelm
parents:
75672
diff
changeset
|
880 |
(EXPORT_CLASSPATH, Keyword.QUASI_COMMAND) |
62631 | 881 |
|
66818
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
882 |
abstract class Entry |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
883 |
sealed case class Chapter(name: String) extends Entry |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
884 |
sealed case class Session_Entry( |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
885 |
pos: Position.T, |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
886 |
name: String, |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
887 |
groups: List[String], |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
888 |
path: String, |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
889 |
parent: Option[String], |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
890 |
description: String, |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
891 |
options: List[Options.Spec], |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
892 |
imports: List[String], |
70681 | 893 |
directories: List[String], |
66818
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
894 |
theories: List[(List[Options.Spec], List[((String, Position.T), Boolean)])], |
72600
2fa4f25d9d07
official support for document theories from other sessions;
wenzelm
parents:
72574
diff
changeset
|
895 |
document_theories: List[(String, Position.T)], |
68292 | 896 |
document_files: List[(String, String)], |
75679
aa89255b704c
support for classpath artifacts within session structure:
wenzelm
parents:
75672
diff
changeset
|
897 |
export_files: List[(String, Int, List[String])], |
aa89255b704c
support for classpath artifacts within session structure:
wenzelm
parents:
75672
diff
changeset
|
898 |
export_classpath: List[String] |
75393 | 899 |
) extends Entry { |
66818
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
900 |
def theories_no_position: List[(List[Options.Spec], List[(String, Boolean)])] = |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
901 |
theories.map({ case (a, b) => (a, b.map({ case ((c, _), d) => (c, d) })) }) |
72666
945cee776e79
proper meta_digest: avoid non-portable position information;
wenzelm
parents:
72653
diff
changeset
|
902 |
def document_theories_no_position: List[String] = |
945cee776e79
proper meta_digest: avoid non-portable position information;
wenzelm
parents:
72653
diff
changeset
|
903 |
document_theories.map(_._1) |
66818
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
904 |
} |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
905 |
|
75405 | 906 |
private object Parsers extends Options.Parsers { |
75393 | 907 |
private val chapter: Parser[Chapter] = { |
62631 | 908 |
val chapter_name = atom("chapter name", _.is_name) |
909 |
||
910 |
command(CHAPTER) ~! chapter_name ^^ { case _ ~ a => Chapter(a) } |
|
911 |
} |
|
912 |
||
75393 | 913 |
private val session_entry: Parser[Session_Entry] = { |
62631 | 914 |
val option = |
67210 | 915 |
option_name ~ opt($$$("=") ~! option_value ^^ { case _ ~ x => x }) ^^ |
916 |
{ case x ~ y => (x, y) } |
|
62631 | 917 |
val options = $$$("[") ~> rep1sep(option, $$$(",")) <~ $$$("]") |
918 |
||
65374 | 919 |
val theory_entry = |
70668 | 920 |
position(theory_name) ~ opt_keyword(GLOBAL) ^^ { case x ~ y => (x, y) } |
65374 | 921 |
|
62631 | 922 |
val theories = |
65374 | 923 |
$$$(THEORIES) ~! |
66970
13857f49d215
clarified ROOT syntax: 'sessions' and 'theories' are optional, but need to be non-empty;
wenzelm
parents:
66969
diff
changeset
|
924 |
((options | success(Nil)) ~ rep1(theory_entry)) ^^ |
65374 | 925 |
{ case _ ~ (x ~ y) => (x, y) } |
62631 | 926 |
|
68292 | 927 |
val in_path = $$$("(") ~! ($$$(IN) ~ path ~ $$$(")")) ^^ { case _ ~ (_ ~ x ~ _) => x } |
928 |
||
72600
2fa4f25d9d07
official support for document theories from other sessions;
wenzelm
parents:
72574
diff
changeset
|
929 |
val document_theories = |
2fa4f25d9d07
official support for document theories from other sessions;
wenzelm
parents:
72574
diff
changeset
|
930 |
$$$(DOCUMENT_THEORIES) ~! rep1(position(name)) ^^ { case _ ~ x => x } |
2fa4f25d9d07
official support for document theories from other sessions;
wenzelm
parents:
72574
diff
changeset
|
931 |
|
62631 | 932 |
val document_files = |
933 |
$$$(DOCUMENT_FILES) ~! |
|
68292 | 934 |
((in_path | success("document")) ~ rep1(path)) ^^ { case _ ~ (x ~ y) => y.map((x, _)) } |
935 |
||
69671 | 936 |
val prune = $$$("[") ~! (nat ~ $$$("]")) ^^ { case _ ~ (x ~ _) => x } | success(0) |
937 |
||
68292 | 938 |
val export_files = |
69671 | 939 |
$$$(EXPORT_FILES) ~! ((in_path | success("export")) ~ prune ~ rep1(embedded)) ^^ |
940 |
{ case _ ~ (x ~ y ~ z) => (x, y, z) } |
|
62631 | 941 |
|
75679
aa89255b704c
support for classpath artifacts within session structure:
wenzelm
parents:
75672
diff
changeset
|
942 |
val export_classpath = |
aa89255b704c
support for classpath artifacts within session structure:
wenzelm
parents:
75672
diff
changeset
|
943 |
$$$(EXPORT_CLASSPATH) ~! (rep1(embedded) | success(List("*:classpath/*.jar"))) ^^ |
aa89255b704c
support for classpath artifacts within session structure:
wenzelm
parents:
75672
diff
changeset
|
944 |
{ case _ ~ x => x } |
aa89255b704c
support for classpath artifacts within session structure:
wenzelm
parents:
75672
diff
changeset
|
945 |
|
62631 | 946 |
command(SESSION) ~! |
947 |
(position(session_name) ~ |
|
948 |
(($$$("(") ~! (rep1(name) <~ $$$(")")) ^^ { case _ ~ x => x }) | success(Nil)) ~ |
|
949 |
(($$$(IN) ~! path ^^ { case _ ~ x => x }) | success(".")) ~ |
|
950 |
($$$("=") ~! |
|
951 |
(opt(session_name ~! $$$("+") ^^ { case x ~ _ => x }) ~ |
|
952 |
(($$$(DESCRIPTION) ~! text ^^ { case _ ~ x => x }) | success("")) ~ |
|
953 |
(($$$(OPTIONS) ~! options ^^ { case _ ~ x => x }) | success(Nil)) ~ |
|
66970
13857f49d215
clarified ROOT syntax: 'sessions' and 'theories' are optional, but need to be non-empty;
wenzelm
parents:
66969
diff
changeset
|
954 |
(($$$(SESSIONS) ~! rep1(session_name) ^^ { case _ ~ x => x }) | success(Nil)) ~ |
70681 | 955 |
(($$$(DIRECTORIES) ~! rep1(path) ^^ { case _ ~ x => x }) | success(Nil)) ~ |
66970
13857f49d215
clarified ROOT syntax: 'sessions' and 'theories' are optional, but need to be non-empty;
wenzelm
parents:
66969
diff
changeset
|
956 |
rep(theories) ~ |
72600
2fa4f25d9d07
official support for document theories from other sessions;
wenzelm
parents:
72574
diff
changeset
|
957 |
(opt(document_theories) ^^ (x => x.getOrElse(Nil))) ~ |
68292 | 958 |
(rep(document_files) ^^ (x => x.flatten)) ~ |
75679
aa89255b704c
support for classpath artifacts within session structure:
wenzelm
parents:
75672
diff
changeset
|
959 |
rep(export_files) ~ |
aa89255b704c
support for classpath artifacts within session structure:
wenzelm
parents:
75672
diff
changeset
|
960 |
opt(export_classpath)))) ^^ |
aa89255b704c
support for classpath artifacts within session structure:
wenzelm
parents:
75672
diff
changeset
|
961 |
{ case _ ~ ((a, pos) ~ b ~ c ~ (_ ~ (d ~ e ~ f ~ g ~ h ~ i ~ j ~ k ~ l ~ m))) => |
aa89255b704c
support for classpath artifacts within session structure:
wenzelm
parents:
75672
diff
changeset
|
962 |
Session_Entry(pos, a, b, c, d, e, f, g, h, i, j, k, l, m.getOrElse(Nil)) } |
62631 | 963 |
} |
964 |
||
75393 | 965 |
def parse_root(path: Path): List[Entry] = { |
66764
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
966 |
val toks = Token.explode(root_syntax.keywords, File.read(path)) |
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
967 |
val start = Token.Pos.file(path.implode) |
62631 | 968 |
|
66764
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
969 |
parse_all(rep(chapter | session_entry), Token.reader(toks, start)) match { |
66818
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
970 |
case Success(result, _) => result |
66764
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
971 |
case bad => error(bad.toString) |
62631 | 972 |
} |
973 |
} |
|
974 |
} |
|
975 |
||
75405 | 976 |
def parse_root(path: Path): List[Entry] = Parsers.parse_root(path) |
66819 | 977 |
|
978 |
def parse_root_entries(path: Path): List[Session_Entry] = |
|
75405 | 979 |
for (entry <- Parsers.parse_root(path) if entry.isInstanceOf[Session_Entry]) |
66819 | 980 |
yield entry.asInstanceOf[Session_Entry] |
66818
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
981 |
|
75393 | 982 |
def read_root(options: Options, select: Boolean, path: Path): List[Info] = { |
69762
58fb0d779583
support for session information via virtual file-system;
wenzelm
parents:
69671
diff
changeset
|
983 |
var entry_chapter = UNSORTED |
66960 | 984 |
val infos = new mutable.ListBuffer[Info] |
66819 | 985 |
parse_root(path).foreach { |
66818
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
986 |
case Chapter(name) => entry_chapter = name |
66967
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
987 |
case entry: Session_Entry => |
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
988 |
infos += make_info(options, select, path.dir, entry_chapter, entry) |
66818
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
989 |
} |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
990 |
infos.toList |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
991 |
} |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
992 |
|
75393 | 993 |
def parse_roots(roots: Path): List[String] = { |
66818
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
994 |
for { |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
995 |
line <- split_lines(File.read(roots)) |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
996 |
if !(line == "" || line.startsWith("#")) |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
997 |
} yield line |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
998 |
} |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
999 |
|
62631 | 1000 |
|
62635 | 1001 |
/* load sessions from certain directories */ |
62631 | 1002 |
|
73814
c8b4a4f69068
clarified check (refining fc828f64da5b): etc/settings or etc/components is not strictly required according to "init_component", and notable components only have session ROOTS (e.g. AFP/thys);
wenzelm
parents:
73718
diff
changeset
|
1003 |
def is_session_dir(dir: Path): Boolean = |
62631 | 1004 |
(dir + ROOT).is_file || (dir + ROOTS).is_file |
1005 |
||
75297
fc4d07587695
more robust errors -- on foreground process instead of background server;
wenzelm
parents:
74812
diff
changeset
|
1006 |
def check_session_dir(dir: Path): Path = |
65468
c41791ad75c3
early check and normalization of session directory, e.g. relevant for path information passed to ML process, which may have a different CWD;
wenzelm
parents:
65463
diff
changeset
|
1007 |
if (is_session_dir(dir)) File.pwd() + dir.expand |
73311 | 1008 |
else error("Bad session root directory (missing ROOT or ROOTS): " + dir.expand.toString) |
62631 | 1009 |
|
75393 | 1010 |
def directories(dirs: List[Path], select_dirs: List[Path]): List[(Boolean, Path)] = { |
73815 | 1011 |
val default_dirs = Components.directories().filter(is_session_dir) |
68746
f95e2f145ea5
canonical session directories in correspondence to Known.files;
wenzelm
parents:
68734
diff
changeset
|
1012 |
for { (select, dir) <- (default_dirs ::: dirs).map((false, _)) ::: select_dirs.map((true, _)) } |
f95e2f145ea5
canonical session directories in correspondence to Known.files;
wenzelm
parents:
68734
diff
changeset
|
1013 |
yield (select, dir.canonical) |
65561 | 1014 |
} |
1015 |
||
75393 | 1016 |
def load_structure( |
1017 |
options: Options, |
|
66968
9991671c98aa
allow to augment session context via explicit session infos;
wenzelm
parents:
66967
diff
changeset
|
1018 |
dirs: List[Path] = Nil, |
9991671c98aa
allow to augment session context via explicit session infos;
wenzelm
parents:
66967
diff
changeset
|
1019 |
select_dirs: List[Path] = Nil, |
75393 | 1020 |
infos: List[Info] = Nil |
1021 |
): Structure = { |
|
66764
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
1022 |
def load_dir(select: Boolean, dir: Path): List[(Boolean, Path)] = |
62635 | 1023 |
load_root(select, dir) ::: load_roots(select, dir) |
62631 | 1024 |
|
75393 | 1025 |
def load_root(select: Boolean, dir: Path): List[(Boolean, Path)] = { |
66764
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
1026 |
val root = dir + ROOT |
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
1027 |
if (root.is_file) List((select, root)) else Nil |
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
1028 |
} |
62631 | 1029 |
|
75393 | 1030 |
def load_roots(select: Boolean, dir: Path): List[(Boolean, Path)] = { |
62631 | 1031 |
val roots = dir + ROOTS |
1032 |
if (roots.is_file) { |
|
1033 |
for { |
|
66818
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
1034 |
entry <- parse_roots(roots) |
62631 | 1035 |
dir1 = |
66818
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
1036 |
try { check_session_dir(dir + Path.explode(entry)) } |
62631 | 1037 |
catch { |
1038 |
case ERROR(msg) => |
|
1039 |
error(msg + "\nThe error(s) above occurred in session catalog " + roots.toString) |
|
1040 |
} |
|
66764
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
1041 |
res <- load_dir(select, dir1) |
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
1042 |
} yield res |
62631 | 1043 |
} |
1044 |
else Nil |
|
1045 |
} |
|
1046 |
||
66764
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
1047 |
val roots = |
62631 | 1048 |
for { |
65561 | 1049 |
(select, dir) <- directories(dirs, select_dirs) |
66764
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
1050 |
res <- load_dir(select, check_session_dir(dir)) |
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
1051 |
} yield res |
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
1052 |
|
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
1053 |
val unique_roots = |
73359 | 1054 |
roots.foldLeft(Map.empty[JFile, (Boolean, Path)]) { |
1055 |
case (m, (select, path)) => |
|
1056 |
val file = path.canonical_file |
|
1057 |
m.get(file) match { |
|
1058 |
case None => m + (file -> (select, path)) |
|
1059 |
case Some((select1, path1)) => m + (file -> (select1 || select, path1)) |
|
1060 |
} |
|
1061 |
}.toList.map(_._2) |
|
66764
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
1062 |
|
72855 | 1063 |
Structure.make(unique_roots.flatMap(p => read_root(options, p._1, p._2)) ::: infos) |
62631 | 1064 |
} |
62632 | 1065 |
|
1066 |
||
71808 | 1067 |
/* Isabelle tool wrapper */ |
1068 |
||
72763 | 1069 |
val isabelle_tool = Isabelle_Tool("sessions", "explore structure of Isabelle sessions", |
75394 | 1070 |
Scala_Project.here, |
1071 |
{ args => |
|
1072 |
var base_sessions: List[String] = Nil |
|
1073 |
var select_dirs: List[Path] = Nil |
|
1074 |
var requirements = false |
|
1075 |
var exclude_session_groups: List[String] = Nil |
|
1076 |
var all_sessions = false |
|
1077 |
var dirs: List[Path] = Nil |
|
1078 |
var session_groups: List[String] = Nil |
|
1079 |
var exclude_sessions: List[String] = Nil |
|
71808 | 1080 |
|
75394 | 1081 |
val getopts = Getopts(""" |
71808 | 1082 |
Usage: isabelle sessions [OPTIONS] [SESSIONS ...] |
1083 |
||
1084 |
Options are: |
|
1085 |
-B NAME include session NAME and all descendants |
|
1086 |
-D DIR include session directory and select its sessions |
|
1087 |
-R refer to requirements of selected sessions |
|
1088 |
-X NAME exclude sessions from group NAME and all descendants |
|
1089 |
-a select all sessions |
|
1090 |
-d DIR include session directory |
|
1091 |
-g NAME select session group NAME |
|
1092 |
-x NAME exclude session NAME and all descendants |
|
1093 |
||
1094 |
Explore the structure of Isabelle sessions and print result names in |
|
1095 |
topological order (on stdout). |
|
1096 |
""", |
|
75394 | 1097 |
"B:" -> (arg => base_sessions = base_sessions ::: List(arg)), |
1098 |
"D:" -> (arg => select_dirs = select_dirs ::: List(Path.explode(arg))), |
|
1099 |
"R" -> (_ => requirements = true), |
|
1100 |
"X:" -> (arg => exclude_session_groups = exclude_session_groups ::: List(arg)), |
|
1101 |
"a" -> (_ => all_sessions = true), |
|
1102 |
"d:" -> (arg => dirs = dirs ::: List(Path.explode(arg))), |
|
1103 |
"g:" -> (arg => session_groups = session_groups ::: List(arg)), |
|
1104 |
"x:" -> (arg => exclude_sessions = exclude_sessions ::: List(arg))) |
|
71808 | 1105 |
|
75394 | 1106 |
val sessions = getopts(args) |
71808 | 1107 |
|
75394 | 1108 |
val options = Options.init() |
71808 | 1109 |
|
75394 | 1110 |
val selection = |
1111 |
Selection(requirements = requirements, all_sessions = all_sessions, base_sessions = base_sessions, |
|
1112 |
exclude_session_groups = exclude_session_groups, exclude_sessions = exclude_sessions, |
|
1113 |
session_groups = session_groups, sessions = sessions) |
|
1114 |
val sessions_structure = |
|
1115 |
load_structure(options, dirs = dirs, select_dirs = select_dirs).selection(selection) |
|
71808 | 1116 |
|
75394 | 1117 |
for (name <- sessions_structure.imports_topological_order) { |
1118 |
Output.writeln(name, stdout = true) |
|
1119 |
} |
|
1120 |
}) |
|
71808 | 1121 |
|
1122 |
||
62637
0189fe0f6452
support for Poly/ML heap hierarchy, which saves a lot of disk space;
wenzelm
parents:
62636
diff
changeset
|
1123 |
|
62704
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
1124 |
/** 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
|
1125 |
|
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
1126 |
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
|
1127 |
|
75393 | 1128 |
def read_heap_digest(heap: Path): Option[String] = { |
62704
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
1129 |
if (heap.is_file) { |
75394 | 1130 |
using(FileChannel.open(heap.java_path, StandardOpenOption.READ)) { file => |
62704
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
1131 |
val len = file.size |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
1132 |
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
|
1133 |
if (len >= n) { |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
1134 |
file.position(len - n) |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
1135 |
|
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
1136 |
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
|
1137 |
var i = 0 |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
1138 |
var m = 0 |
75709 | 1139 |
while ({ |
62704
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
1140 |
m = file.read(buf) |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
1141 |
if (m != -1) i += m |
75709 | 1142 |
m != -1 && n > i |
1143 |
}) () |
|
62704
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
1144 |
|
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
1145 |
if (i == n) { |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
1146 |
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
|
1147 |
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
|
1148 |
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
|
1149 |
} |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
1150 |
else None |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
1151 |
} |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
1152 |
else None |
75394 | 1153 |
} |
62704
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
1154 |
} |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
1155 |
else None |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
1156 |
} |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
1157 |
|
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
1158 |
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
|
1159 |
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
|
1160 |
case None => |
75310 | 1161 |
val s = SHA1.digest(heap).toString |
62704
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
1162 |
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
|
1163 |
s |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
1164 |
case Some(s) => s |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
1165 |
} |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
1166 |
|
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
1167 |
|
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
1168 |
|
62637
0189fe0f6452
support for Poly/ML heap hierarchy, which saves a lot of disk space;
wenzelm
parents:
62636
diff
changeset
|
1169 |
/** persistent store **/ |
62632 | 1170 |
|
75393 | 1171 |
object Session_Info { |
66857 | 1172 |
val session_name = SQL.Column.string("session_name").make_primary_key |
65326 | 1173 |
|
65296 | 1174 |
// Build_Log.Session_Info |
1175 |
val session_timing = SQL.Column.bytes("session_timing") |
|
1176 |
val command_timings = SQL.Column.bytes("command_timings") |
|
66873
9953ae603a23
provide theory timing information, similar to command timing but always considered relevant;
wenzelm
parents:
66857
diff
changeset
|
1177 |
val theory_timings = SQL.Column.bytes("theory_timings") |
65296 | 1178 |
val ml_statistics = SQL.Column.bytes("ml_statistics") |
1179 |
val task_statistics = SQL.Column.bytes("task_statistics") |
|
65934 | 1180 |
val errors = SQL.Column.bytes("errors") |
65296 | 1181 |
val build_log_columns = |
66873
9953ae603a23
provide theory timing information, similar to command timing but always considered relevant;
wenzelm
parents:
66857
diff
changeset
|
1182 |
List(session_name, session_timing, command_timings, theory_timings, |
9953ae603a23
provide theory timing information, similar to command timing but always considered relevant;
wenzelm
parents:
66857
diff
changeset
|
1183 |
ml_statistics, task_statistics, errors) |
65296 | 1184 |
|
1185 |
// Build.Session_Info |
|
1186 |
val sources = SQL.Column.string("sources") |
|
1187 |
val input_heaps = SQL.Column.string("input_heaps") |
|
1188 |
val output_heap = SQL.Column.string("output_heap") |
|
1189 |
val return_code = SQL.Column.int("return_code") |
|
66746 | 1190 |
val build_columns = List(sources, input_heaps, output_heap, return_code) |
65296 | 1191 |
|
1192 |
val table = SQL.Table("isabelle_session_info", build_log_columns ::: build_columns) |
|
1193 |
} |
|
1194 |
||
72682 | 1195 |
class Database_Context private[Sessions]( |
1196 |
val store: Sessions.Store, |
|
75393 | 1197 |
database_server: Option[SQL.Database] |
1198 |
) extends AutoCloseable { |
|
74731
161e84e6b40a
just one cache, via HTML_Context, via Sessions.Store or Session;
wenzelm
parents:
74696
diff
changeset
|
1199 |
def cache: Term.Cache = store.cache |
72683 | 1200 |
|
73367 | 1201 |
def close(): Unit = database_server.foreach(_.close()) |
72682 | 1202 |
|
72715
2615b8c05337
clarified signature --- avoid repeated open_database on server;
wenzelm
parents:
72696
diff
changeset
|
1203 |
def output_database[A](session: String)(f: SQL.Database => A): A = |
2615b8c05337
clarified signature --- avoid repeated open_database on server;
wenzelm
parents:
72696
diff
changeset
|
1204 |
database_server match { |
2615b8c05337
clarified signature --- avoid repeated open_database on server;
wenzelm
parents:
72696
diff
changeset
|
1205 |
case Some(db) => f(db) |
2615b8c05337
clarified signature --- avoid repeated open_database on server;
wenzelm
parents:
72696
diff
changeset
|
1206 |
case None => using(store.open_database(session, output = true))(f) |
2615b8c05337
clarified signature --- avoid repeated open_database on server;
wenzelm
parents:
72696
diff
changeset
|
1207 |
} |
2615b8c05337
clarified signature --- avoid repeated open_database on server;
wenzelm
parents:
72696
diff
changeset
|
1208 |
|
72716 | 1209 |
def input_database[A](session: String)(f: (SQL.Database, String) => Option[A]): Option[A] = |
1210 |
database_server match { |
|
1211 |
case Some(db) => f(db, session) |
|
1212 |
case None => |
|
1213 |
store.try_open_database(session) match { |
|
1214 |
case Some(db) => using(db)(f(_, session)) |
|
1215 |
case None => None |
|
1216 |
} |
|
1217 |
} |
|
1218 |
||
72854 | 1219 |
def read_export( |
75393 | 1220 |
sessions: List[String], |
1221 |
theory_name: String, |
|
1222 |
name: String |
|
1223 |
): Option[Export.Entry] = { |
|
72682 | 1224 |
val attempts = |
1225 |
database_server match { |
|
1226 |
case Some(db) => |
|
72854 | 1227 |
sessions.view.map(session_name => |
75672 | 1228 |
Export.Entry_Name(session = session_name, theory = theory_name, name = name) |
1229 |
.read(db, store.cache)) |
|
72682 | 1230 |
case None => |
72854 | 1231 |
sessions.view.map(session_name => |
72682 | 1232 |
store.try_open_database(session_name) match { |
72847
9dda93a753b1
clarified signature: provide XZ.Cache where Export.Entry is created;
wenzelm
parents:
72845
diff
changeset
|
1233 |
case Some(db) => |
75672 | 1234 |
using(db) { _ => |
1235 |
Export.Entry_Name(session = session_name, theory = theory_name, name = name) |
|
1236 |
.read(db, store.cache) } |
|
72682 | 1237 |
case None => None |
1238 |
}) |
|
1239 |
} |
|
1240 |
attempts.collectFirst({ case Some(entry) => entry }) |
|
1241 |
} |
|
1242 |
||
72854 | 1243 |
def get_export( |
1244 |
session_hierarchy: List[String], theory_name: String, name: String): Export.Entry = |
|
1245 |
read_export(session_hierarchy, theory_name, name) getOrElse |
|
1246 |
Export.empty_entry(theory_name, name) |
|
72682 | 1247 |
|
75679
aa89255b704c
support for classpath artifacts within session structure:
wenzelm
parents:
75672
diff
changeset
|
1248 |
def get_classpath(structure: Structure, session: String): List[File.Content_Bytes] = |
aa89255b704c
support for classpath artifacts within session structure:
wenzelm
parents:
75672
diff
changeset
|
1249 |
{ |
aa89255b704c
support for classpath artifacts within session structure:
wenzelm
parents:
75672
diff
changeset
|
1250 |
(for { |
aa89255b704c
support for classpath artifacts within session structure:
wenzelm
parents:
75672
diff
changeset
|
1251 |
name <- structure.build_requirements(List(session)) |
aa89255b704c
support for classpath artifacts within session structure:
wenzelm
parents:
75672
diff
changeset
|
1252 |
patterns = structure(name).export_classpath if patterns.nonEmpty |
aa89255b704c
support for classpath artifacts within session structure:
wenzelm
parents:
75672
diff
changeset
|
1253 |
} yield { |
aa89255b704c
support for classpath artifacts within session structure:
wenzelm
parents:
75672
diff
changeset
|
1254 |
input_database(name)((db, _) => |
aa89255b704c
support for classpath artifacts within session structure:
wenzelm
parents:
75672
diff
changeset
|
1255 |
db.transaction { |
aa89255b704c
support for classpath artifacts within session structure:
wenzelm
parents:
75672
diff
changeset
|
1256 |
val matcher = Export.make_matcher(patterns) |
aa89255b704c
support for classpath artifacts within session structure:
wenzelm
parents:
75672
diff
changeset
|
1257 |
val res = |
aa89255b704c
support for classpath artifacts within session structure:
wenzelm
parents:
75672
diff
changeset
|
1258 |
for { |
aa89255b704c
support for classpath artifacts within session structure:
wenzelm
parents:
75672
diff
changeset
|
1259 |
entry_name <- Export.read_entry_names(db, name) if matcher(entry_name) |
aa89255b704c
support for classpath artifacts within session structure:
wenzelm
parents:
75672
diff
changeset
|
1260 |
entry <- entry_name.read(db, store.cache) |
75680 | 1261 |
} yield File.Content(entry.entry_name.make_path(), entry.uncompressed) |
75679
aa89255b704c
support for classpath artifacts within session structure:
wenzelm
parents:
75672
diff
changeset
|
1262 |
Some(res) |
aa89255b704c
support for classpath artifacts within session structure:
wenzelm
parents:
75672
diff
changeset
|
1263 |
} |
aa89255b704c
support for classpath artifacts within session structure:
wenzelm
parents:
75672
diff
changeset
|
1264 |
).getOrElse(Nil) |
aa89255b704c
support for classpath artifacts within session structure:
wenzelm
parents:
75672
diff
changeset
|
1265 |
}).flatten |
aa89255b704c
support for classpath artifacts within session structure:
wenzelm
parents:
75672
diff
changeset
|
1266 |
} |
aa89255b704c
support for classpath artifacts within session structure:
wenzelm
parents:
75672
diff
changeset
|
1267 |
|
75393 | 1268 |
override def toString: String = { |
72682 | 1269 |
val s = |
1270 |
database_server match { |
|
1271 |
case Some(db) => db.toString |
|
1272 |
case None => "input_dirs = " + store.input_dirs.map(_.absolute).mkString(", ") |
|
1273 |
} |
|
1274 |
"Database_Context(" + s + ")" |
|
1275 |
} |
|
1276 |
} |
|
1277 |
||
74731
161e84e6b40a
just one cache, via HTML_Context, via Sessions.Store or Session;
wenzelm
parents:
74696
diff
changeset
|
1278 |
def store(options: Options, cache: Term.Cache = Term.Cache.make()): Store = |
73031
f93f0597f4fb
clarified signature: absorb XZ.Cache into XML.Cache;
wenzelm
parents:
73024
diff
changeset
|
1279 |
new Store(options, cache) |
62632 | 1280 |
|
75393 | 1281 |
class Store private[Sessions](val options: Options, val cache: Term.Cache) { |
72634
5cea0993ee4f
clarified access to single database server vs. collection of database files;
wenzelm
parents:
72627
diff
changeset
|
1282 |
store => |
5cea0993ee4f
clarified access to single database server vs. collection of database files;
wenzelm
parents:
72627
diff
changeset
|
1283 |
|
5cea0993ee4f
clarified access to single database server vs. collection of database files;
wenzelm
parents:
72627
diff
changeset
|
1284 |
override def toString: String = "Store(output_dir = " + output_dir.absolute + ")" |
68219 | 1285 |
|
1286 |
||
1287 |
/* directories */ |
|
1288 |
||
68523
ccacc84e0251
clarified settings -- avoid hard-wired directories;
wenzelm
parents:
68483
diff
changeset
|
1289 |
val system_output_dir: Path = Path.explode("$ISABELLE_HEAPS_SYSTEM/$ML_IDENTIFIER") |
ccacc84e0251
clarified settings -- avoid hard-wired directories;
wenzelm
parents:
68483
diff
changeset
|
1290 |
val user_output_dir: Path = Path.explode("$ISABELLE_HEAPS/$ML_IDENTIFIER") |
68219 | 1291 |
|
69854
cc0b3e177b49
system option "system_heaps" supersedes various command-line options for "system build mode";
wenzelm
parents:
69812
diff
changeset
|
1292 |
def system_heaps: Boolean = options.bool("system_heaps") |
cc0b3e177b49
system option "system_heaps" supersedes various command-line options for "system build mode";
wenzelm
parents:
69812
diff
changeset
|
1293 |
|
68221 | 1294 |
val output_dir: Path = |
69854
cc0b3e177b49
system option "system_heaps" supersedes various command-line options for "system build mode";
wenzelm
parents:
69812
diff
changeset
|
1295 |
if (system_heaps) system_output_dir else user_output_dir |
68219 | 1296 |
|
68221 | 1297 |
val input_dirs: List[Path] = |
69854
cc0b3e177b49
system option "system_heaps" supersedes various command-line options for "system build mode";
wenzelm
parents:
69812
diff
changeset
|
1298 |
if (system_heaps) List(system_output_dir) |
68219 | 1299 |
else List(user_output_dir, system_output_dir) |
62632 | 1300 |
|
72648 | 1301 |
def presentation_dir: Path = |
69854
cc0b3e177b49
system option "system_heaps" supersedes various command-line options for "system build mode";
wenzelm
parents:
69812
diff
changeset
|
1302 |
if (system_heaps) Path.explode("$ISABELLE_BROWSER_INFO_SYSTEM") |
62632 | 1303 |
else Path.explode("$ISABELLE_BROWSER_INFO") |
1304 |
||
62637
0189fe0f6452
support for Poly/ML heap hierarchy, which saves a lot of disk space;
wenzelm
parents:
62636
diff
changeset
|
1305 |
|
68221 | 1306 |
/* file names */ |
65298 | 1307 |
|
68221 | 1308 |
def heap(name: String): Path = Path.basic(name) |
1309 |
def database(name: String): Path = Path.basic("log") + Path.basic(name).ext("db") |
|
1310 |
def log(name: String): Path = Path.basic("log") + Path.basic(name) |
|
1311 |
def log_gz(name: String): Path = log(name).ext("gz") |
|
62637
0189fe0f6452
support for Poly/ML heap hierarchy, which saves a lot of disk space;
wenzelm
parents:
62636
diff
changeset
|
1312 |
|
68221 | 1313 |
def output_heap(name: String): Path = output_dir + heap(name) |
1314 |
def output_database(name: String): Path = output_dir + database(name) |
|
68086
9e1c670301b8
cleanup session output before starting build job;
wenzelm
parents:
68018
diff
changeset
|
1315 |
def output_log(name: String): Path = output_dir + log(name) |
9e1c670301b8
cleanup session output before starting build job;
wenzelm
parents:
68018
diff
changeset
|
1316 |
def output_log_gz(name: String): Path = output_dir + log_gz(name) |
9e1c670301b8
cleanup session output before starting build job;
wenzelm
parents:
68018
diff
changeset
|
1317 |
|
73340 | 1318 |
def prepare_output_dir(): Unit = Isabelle_System.make_directory(output_dir + Path.basic("log")) |
68220
8fc4e3d1df86
clarified store.clean_output: cleanup user_output_dir even in system_mode;
wenzelm
parents:
68219
diff
changeset
|
1319 |
|
62637
0189fe0f6452
support for Poly/ML heap hierarchy, which saves a lot of disk space;
wenzelm
parents:
62636
diff
changeset
|
1320 |
|
68221 | 1321 |
/* heap */ |
62637
0189fe0f6452
support for Poly/ML heap hierarchy, which saves a lot of disk space;
wenzelm
parents:
62636
diff
changeset
|
1322 |
|
68212
5a59fded83c7
clarified heap vs. database operations: discontinued correlation of directory;
wenzelm
parents:
68210
diff
changeset
|
1323 |
def find_heap(name: String): Option[Path] = |
68221 | 1324 |
input_dirs.map(_ + heap(name)).find(_.is_file) |
68212
5a59fded83c7
clarified heap vs. database operations: discontinued correlation of directory;
wenzelm
parents:
68210
diff
changeset
|
1325 |
|
5a59fded83c7
clarified heap vs. database operations: discontinued correlation of directory;
wenzelm
parents:
68210
diff
changeset
|
1326 |
def find_heap_digest(name: String): Option[String] = |
71601 | 1327 |
find_heap(name).flatMap(read_heap_digest) |
62632 | 1328 |
|
68221 | 1329 |
def the_heap(name: String): Path = |
1330 |
find_heap(name) getOrElse |
|
1331 |
error("Missing heap image for session " + quote(name) + " -- expected in:\n" + |
|
1332 |
cat_lines(input_dirs.map(dir => " " + dir.expand.implode))) |
|
1333 |
||
1334 |
||
1335 |
/* database */ |
|
1336 |
||
75552
4aa3da02fd4d
sync session images, based on accidental local state;
wenzelm
parents:
75406
diff
changeset
|
1337 |
def find_database(name: String): Option[Path] = |
4aa3da02fd4d
sync session images, based on accidental local state;
wenzelm
parents:
75406
diff
changeset
|
1338 |
input_dirs.map(_ + database(name)).find(_.is_file) |
4aa3da02fd4d
sync session images, based on accidental local state;
wenzelm
parents:
75406
diff
changeset
|
1339 |
|
72634
5cea0993ee4f
clarified access to single database server vs. collection of database files;
wenzelm
parents:
72627
diff
changeset
|
1340 |
def database_server: Boolean = options.bool("build_database_server") |
65281
c70e7d24a16d
SQL database operations for combined session info;
wenzelm
parents:
65278
diff
changeset
|
1341 |
|
72634
5cea0993ee4f
clarified access to single database server vs. collection of database files;
wenzelm
parents:
72627
diff
changeset
|
1342 |
def open_database_server(): SQL.Database = |
5cea0993ee4f
clarified access to single database server vs. collection of database files;
wenzelm
parents:
72627
diff
changeset
|
1343 |
PostgreSQL.open_database( |
5cea0993ee4f
clarified access to single database server vs. collection of database files;
wenzelm
parents:
72627
diff
changeset
|
1344 |
user = options.string("build_database_user"), |
5cea0993ee4f
clarified access to single database server vs. collection of database files;
wenzelm
parents:
72627
diff
changeset
|
1345 |
password = options.string("build_database_password"), |
5cea0993ee4f
clarified access to single database server vs. collection of database files;
wenzelm
parents:
72627
diff
changeset
|
1346 |
database = options.string("build_database_name"), |
5cea0993ee4f
clarified access to single database server vs. collection of database files;
wenzelm
parents:
72627
diff
changeset
|
1347 |
host = options.string("build_database_host"), |
5cea0993ee4f
clarified access to single database server vs. collection of database files;
wenzelm
parents:
72627
diff
changeset
|
1348 |
port = options.int("build_database_port"), |
5cea0993ee4f
clarified access to single database server vs. collection of database files;
wenzelm
parents:
72627
diff
changeset
|
1349 |
ssh = |
5cea0993ee4f
clarified access to single database server vs. collection of database files;
wenzelm
parents:
72627
diff
changeset
|
1350 |
options.proper_string("build_database_ssh_host").map(ssh_host => |
5cea0993ee4f
clarified access to single database server vs. collection of database files;
wenzelm
parents:
72627
diff
changeset
|
1351 |
SSH.open_session(options, |
5cea0993ee4f
clarified access to single database server vs. collection of database files;
wenzelm
parents:
72627
diff
changeset
|
1352 |
host = ssh_host, |
5cea0993ee4f
clarified access to single database server vs. collection of database files;
wenzelm
parents:
72627
diff
changeset
|
1353 |
user = options.string("build_database_ssh_user"), |
5cea0993ee4f
clarified access to single database server vs. collection of database files;
wenzelm
parents:
72627
diff
changeset
|
1354 |
port = options.int("build_database_ssh_port"))), |
5cea0993ee4f
clarified access to single database server vs. collection of database files;
wenzelm
parents:
72627
diff
changeset
|
1355 |
ssh_close = true) |
5cea0993ee4f
clarified access to single database server vs. collection of database files;
wenzelm
parents:
72627
diff
changeset
|
1356 |
|
72854 | 1357 |
def open_database_context(): Database_Context = |
1358 |
new Database_Context(store, if (database_server) Some(open_database_server()) else None) |
|
72682 | 1359 |
|
75393 | 1360 |
def try_open_database(name: String, output: Boolean = false): Option[SQL.Database] = { |
72634
5cea0993ee4f
clarified access to single database server vs. collection of database files;
wenzelm
parents:
72627
diff
changeset
|
1361 |
def check(db: SQL.Database): Option[SQL.Database] = |
73367 | 1362 |
if (output || session_info_exists(db)) Some(db) else { db.close(); None } |
72634
5cea0993ee4f
clarified access to single database server vs. collection of database files;
wenzelm
parents:
72627
diff
changeset
|
1363 |
|
5cea0993ee4f
clarified access to single database server vs. collection of database files;
wenzelm
parents:
72627
diff
changeset
|
1364 |
if (database_server) check(open_database_server()) |
5cea0993ee4f
clarified access to single database server vs. collection of database files;
wenzelm
parents:
72627
diff
changeset
|
1365 |
else if (output) Some(SQLite.open_database(output_database(name))) |
5cea0993ee4f
clarified access to single database server vs. collection of database files;
wenzelm
parents:
72627
diff
changeset
|
1366 |
else { |
5cea0993ee4f
clarified access to single database server vs. collection of database files;
wenzelm
parents:
72627
diff
changeset
|
1367 |
(for { |
5cea0993ee4f
clarified access to single database server vs. collection of database files;
wenzelm
parents:
72627
diff
changeset
|
1368 |
dir <- input_dirs.view |
5cea0993ee4f
clarified access to single database server vs. collection of database files;
wenzelm
parents:
72627
diff
changeset
|
1369 |
path = dir + database(name) if path.is_file |
5cea0993ee4f
clarified access to single database server vs. collection of database files;
wenzelm
parents:
72627
diff
changeset
|
1370 |
db <- check(SQLite.open_database(path)) |
5cea0993ee4f
clarified access to single database server vs. collection of database files;
wenzelm
parents:
72627
diff
changeset
|
1371 |
} yield db).headOption |
68221 | 1372 |
} |
1373 |
} |
|
68212
5a59fded83c7
clarified heap vs. database operations: discontinued correlation of directory;
wenzelm
parents:
68210
diff
changeset
|
1374 |
|
68221 | 1375 |
def open_database(name: String, output: Boolean = false): SQL.Database = |
72634
5cea0993ee4f
clarified access to single database server vs. collection of database files;
wenzelm
parents:
72627
diff
changeset
|
1376 |
try_open_database(name, output = output) getOrElse |
68221 | 1377 |
error("Missing build database for session " + quote(name)) |
68205 | 1378 |
|
75393 | 1379 |
def clean_output(name: String): (Boolean, Boolean) = { |
68221 | 1380 |
val relevant_db = |
75393 | 1381 |
database_server && { |
72634
5cea0993ee4f
clarified access to single database server vs. collection of database files;
wenzelm
parents:
72627
diff
changeset
|
1382 |
try_open_database(name) match { |
68221 | 1383 |
case Some(db) => |
1384 |
try { |
|
1385 |
db.transaction { |
|
72634
5cea0993ee4f
clarified access to single database server vs. collection of database files;
wenzelm
parents:
72627
diff
changeset
|
1386 |
val relevant_db = session_info_defined(db, name) |
68221 | 1387 |
init_session_info(db, name) |
1388 |
relevant_db |
|
1389 |
} |
|
73367 | 1390 |
} finally { db.close() } |
68221 | 1391 |
case None => false |
1392 |
} |
|
1393 |
} |
|
68212
5a59fded83c7
clarified heap vs. database operations: discontinued correlation of directory;
wenzelm
parents:
68210
diff
changeset
|
1394 |
|
68221 | 1395 |
val del = |
1396 |
for { |
|
69854
cc0b3e177b49
system option "system_heaps" supersedes various command-line options for "system build mode";
wenzelm
parents:
69812
diff
changeset
|
1397 |
dir <- |
cc0b3e177b49
system option "system_heaps" supersedes various command-line options for "system build mode";
wenzelm
parents:
69812
diff
changeset
|
1398 |
(if (system_heaps) List(user_output_dir, system_output_dir) else List(user_output_dir)) |
68221 | 1399 |
file <- List(heap(name), database(name), log(name), log_gz(name)) |
1400 |
path = dir + file if path.is_file |
|
1401 |
} yield path.file.delete |
|
1402 |
||
1403 |
val relevant = relevant_db || del.nonEmpty |
|
1404 |
val ok = del.forall(b => b) |
|
1405 |
(relevant, ok) |
|
1406 |
} |
|
65287 | 1407 |
|
1408 |
||
68218 | 1409 |
/* SQL database content */ |
1410 |
||
1411 |
def read_bytes(db: SQL.Database, name: String, column: SQL.Column): Bytes = |
|
1412 |
db.using_statement(Session_Info.table.select(List(column), |
|
75394 | 1413 |
Session_Info.session_name.where_equal(name))) { stmt => |
68218 | 1414 |
val res = stmt.execute_query() |
1415 |
if (!res.next()) Bytes.empty else res.bytes(column) |
|
75394 | 1416 |
} |
68218 | 1417 |
|
1418 |
def read_properties(db: SQL.Database, name: String, column: SQL.Column): List[Properties.T] = |
|
73031
f93f0597f4fb
clarified signature: absorb XZ.Cache into XML.Cache;
wenzelm
parents:
73024
diff
changeset
|
1419 |
Properties.uncompress(read_bytes(db, name, column), cache = cache) |
68218 | 1420 |
|
1421 |
||
65296 | 1422 |
/* session info */ |
65281
c70e7d24a16d
SQL database operations for combined session info;
wenzelm
parents:
65278
diff
changeset
|
1423 |
|
75393 | 1424 |
def init_session_info(db: SQL.Database, name: String): Unit = { |
68086
9e1c670301b8
cleanup session output before starting build job;
wenzelm
parents:
68018
diff
changeset
|
1425 |
db.transaction { |
9e1c670301b8
cleanup session output before starting build job;
wenzelm
parents:
68018
diff
changeset
|
1426 |
db.create_table(Session_Info.table) |
9e1c670301b8
cleanup session output before starting build job;
wenzelm
parents:
68018
diff
changeset
|
1427 |
db.using_statement( |
73367 | 1428 |
Session_Info.table.delete(Session_Info.session_name.where_equal(name)))(_.execute()) |
68221 | 1429 |
|
1430 |
db.create_table(Export.Data.table) |
|
1431 |
db.using_statement( |
|
73367 | 1432 |
Export.Data.table.delete(Export.Data.session_name.where_equal(name)))(_.execute()) |
72653
ea35afdb1366
store documents within session database, instead of browser_info directory;
wenzelm
parents:
72652
diff
changeset
|
1433 |
|
73718 | 1434 |
db.create_table(Document_Build.Data.table) |
72653
ea35afdb1366
store documents within session database, instead of browser_info directory;
wenzelm
parents:
72652
diff
changeset
|
1435 |
db.using_statement( |
73718 | 1436 |
Document_Build.Data.table.delete( |
1437 |
Document_Build.Data.session_name.where_equal(name)))(_.execute()) |
|
68221 | 1438 |
} |
1439 |
} |
|
1440 |
||
75393 | 1441 |
def session_info_exists(db: SQL.Database): Boolean = { |
72634
5cea0993ee4f
clarified access to single database server vs. collection of database files;
wenzelm
parents:
72627
diff
changeset
|
1442 |
val tables = db.tables |
5cea0993ee4f
clarified access to single database server vs. collection of database files;
wenzelm
parents:
72627
diff
changeset
|
1443 |
tables.contains(Session_Info.table.name) && |
5cea0993ee4f
clarified access to single database server vs. collection of database files;
wenzelm
parents:
72627
diff
changeset
|
1444 |
tables.contains(Export.Data.table.name) |
5cea0993ee4f
clarified access to single database server vs. collection of database files;
wenzelm
parents:
72627
diff
changeset
|
1445 |
} |
5cea0993ee4f
clarified access to single database server vs. collection of database files;
wenzelm
parents:
72627
diff
changeset
|
1446 |
|
5cea0993ee4f
clarified access to single database server vs. collection of database files;
wenzelm
parents:
72627
diff
changeset
|
1447 |
def session_info_defined(db: SQL.Database, name: String): Boolean = |
68221 | 1448 |
db.transaction { |
75393 | 1449 |
session_info_exists(db) && { |
68221 | 1450 |
db.using_statement( |
1451 |
Session_Info.table.select(List(Session_Info.session_name), |
|
1452 |
Session_Info.session_name.where_equal(name)))(stmt => stmt.execute_query().next()) |
|
1453 |
} |
|
68086
9e1c670301b8
cleanup session output before starting build job;
wenzelm
parents:
68018
diff
changeset
|
1454 |
} |
9e1c670301b8
cleanup session output before starting build job;
wenzelm
parents:
68018
diff
changeset
|
1455 |
|
65296 | 1456 |
def write_session_info( |
65318
342efc382558
eliminated somewhat redundant inlined name (despite a7aa17a1f721);
wenzelm
parents:
65298
diff
changeset
|
1457 |
db: SQL.Database, |
65320
52861eebf58d
access table via session_name: db may in principle contain multiple entries;
wenzelm
parents:
65318
diff
changeset
|
1458 |
name: String, |
65318
342efc382558
eliminated somewhat redundant inlined name (despite a7aa17a1f721);
wenzelm
parents:
65298
diff
changeset
|
1459 |
build_log: Build_Log.Session_Info, |
75393 | 1460 |
build: Build.Session_Info |
1461 |
): Unit = { |
|
65281
c70e7d24a16d
SQL database operations for combined session info;
wenzelm
parents:
65278
diff
changeset
|
1462 |
db.transaction { |
75394 | 1463 |
db.using_statement(Session_Info.table.insert()) { stmt => |
65748 | 1464 |
stmt.string(1) = name |
65857 | 1465 |
stmt.bytes(2) = Properties.encode(build_log.session_timing) |
73031
f93f0597f4fb
clarified signature: absorb XZ.Cache into XML.Cache;
wenzelm
parents:
73024
diff
changeset
|
1466 |
stmt.bytes(3) = Properties.compress(build_log.command_timings, cache = cache.xz) |
f93f0597f4fb
clarified signature: absorb XZ.Cache into XML.Cache;
wenzelm
parents:
73024
diff
changeset
|
1467 |
stmt.bytes(4) = Properties.compress(build_log.theory_timings, cache = cache.xz) |
f93f0597f4fb
clarified signature: absorb XZ.Cache into XML.Cache;
wenzelm
parents:
73024
diff
changeset
|
1468 |
stmt.bytes(5) = Properties.compress(build_log.ml_statistics, cache = cache.xz) |
f93f0597f4fb
clarified signature: absorb XZ.Cache into XML.Cache;
wenzelm
parents:
73024
diff
changeset
|
1469 |
stmt.bytes(6) = Properties.compress(build_log.task_statistics, cache = cache.xz) |
f93f0597f4fb
clarified signature: absorb XZ.Cache into XML.Cache;
wenzelm
parents:
73024
diff
changeset
|
1470 |
stmt.bytes(7) = Build_Log.compress_errors(build_log.errors, cache = cache.xz) |
66873
9953ae603a23
provide theory timing information, similar to command timing but always considered relevant;
wenzelm
parents:
66857
diff
changeset
|
1471 |
stmt.string(8) = build.sources |
9953ae603a23
provide theory timing information, similar to command timing but always considered relevant;
wenzelm
parents:
66857
diff
changeset
|
1472 |
stmt.string(9) = cat_lines(build.input_heaps) |
9953ae603a23
provide theory timing information, similar to command timing but always considered relevant;
wenzelm
parents:
66857
diff
changeset
|
1473 |
stmt.string(10) = build.output_heap getOrElse "" |
9953ae603a23
provide theory timing information, similar to command timing but always considered relevant;
wenzelm
parents:
66857
diff
changeset
|
1474 |
stmt.int(11) = build.return_code |
65281
c70e7d24a16d
SQL database operations for combined session info;
wenzelm
parents:
65278
diff
changeset
|
1475 |
stmt.execute() |
75394 | 1476 |
} |
65281
c70e7d24a16d
SQL database operations for combined session info;
wenzelm
parents:
65278
diff
changeset
|
1477 |
} |
c70e7d24a16d
SQL database operations for combined session info;
wenzelm
parents:
65278
diff
changeset
|
1478 |
} |
c70e7d24a16d
SQL database operations for combined session info;
wenzelm
parents:
65278
diff
changeset
|
1479 |
|
65320
52861eebf58d
access table via session_name: db may in principle contain multiple entries;
wenzelm
parents:
65318
diff
changeset
|
1480 |
def read_session_timing(db: SQL.Database, name: String): Properties.T = |
73031
f93f0597f4fb
clarified signature: absorb XZ.Cache into XML.Cache;
wenzelm
parents:
73024
diff
changeset
|
1481 |
Properties.decode(read_bytes(db, name, Session_Info.session_timing), cache = cache) |
65286 | 1482 |
|
65320
52861eebf58d
access table via session_name: db may in principle contain multiple entries;
wenzelm
parents:
65318
diff
changeset
|
1483 |
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
|
1484 |
read_properties(db, name, Session_Info.command_timings) |
65286 | 1485 |
|
66873
9953ae603a23
provide theory timing information, similar to command timing but always considered relevant;
wenzelm
parents:
66857
diff
changeset
|
1486 |
def read_theory_timings(db: SQL.Database, name: String): List[Properties.T] = |
9953ae603a23
provide theory timing information, similar to command timing but always considered relevant;
wenzelm
parents:
66857
diff
changeset
|
1487 |
read_properties(db, name, Session_Info.theory_timings) |
9953ae603a23
provide theory timing information, similar to command timing but always considered relevant;
wenzelm
parents:
66857
diff
changeset
|
1488 |
|
65320
52861eebf58d
access table via session_name: db may in principle contain multiple entries;
wenzelm
parents:
65318
diff
changeset
|
1489 |
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
|
1490 |
read_properties(db, name, Session_Info.ml_statistics) |
65286 | 1491 |
|
65320
52861eebf58d
access table via session_name: db may in principle contain multiple entries;
wenzelm
parents:
65318
diff
changeset
|
1492 |
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
|
1493 |
read_properties(db, name, Session_Info.task_statistics) |
65286 | 1494 |
|
72738
a4d7da18ac5c
store timings for used_theories in canonical order, with reconstructed store.read_theories;
wenzelm
parents:
72716
diff
changeset
|
1495 |
def read_theories(db: SQL.Database, name: String): List[String] = |
a4d7da18ac5c
store timings for used_theories in canonical order, with reconstructed store.read_theories;
wenzelm
parents:
72716
diff
changeset
|
1496 |
read_theory_timings(db, name).flatMap(Markup.Name.unapply) |
a4d7da18ac5c
store timings for used_theories in canonical order, with reconstructed store.read_theories;
wenzelm
parents:
72716
diff
changeset
|
1497 |
|
65937 | 1498 |
def read_errors(db: SQL.Database, name: String): List[String] = |
73033 | 1499 |
Build_Log.uncompress_errors(read_bytes(db, name, Session_Info.errors), cache = cache) |
65937 | 1500 |
|
75393 | 1501 |
def read_build(db: SQL.Database, name: String): Option[Build.Session_Info] = { |
66957
82d13ba817b2
more permissive: db could be empty after hard crash;
wenzelm
parents:
66914
diff
changeset
|
1502 |
if (db.tables.contains(Session_Info.table.name)) { |
82d13ba817b2
more permissive: db could be empty after hard crash;
wenzelm
parents:
66914
diff
changeset
|
1503 |
db.using_statement(Session_Info.table.select(Session_Info.build_columns, |
75394 | 1504 |
Session_Info.session_name.where_equal(name))) { stmt => |
66957
82d13ba817b2
more permissive: db could be empty after hard crash;
wenzelm
parents:
66914
diff
changeset
|
1505 |
val res = stmt.execute_query() |
82d13ba817b2
more permissive: db could be empty after hard crash;
wenzelm
parents:
66914
diff
changeset
|
1506 |
if (!res.next()) None |
82d13ba817b2
more permissive: db could be empty after hard crash;
wenzelm
parents:
66914
diff
changeset
|
1507 |
else { |
82d13ba817b2
more permissive: db could be empty after hard crash;
wenzelm
parents:
66914
diff
changeset
|
1508 |
Some( |
82d13ba817b2
more permissive: db could be empty after hard crash;
wenzelm
parents:
66914
diff
changeset
|
1509 |
Build.Session_Info( |
82d13ba817b2
more permissive: db could be empty after hard crash;
wenzelm
parents:
66914
diff
changeset
|
1510 |
res.string(Session_Info.sources), |
82d13ba817b2
more permissive: db could be empty after hard crash;
wenzelm
parents:
66914
diff
changeset
|
1511 |
split_lines(res.string(Session_Info.input_heaps)), |
82d13ba817b2
more permissive: db could be empty after hard crash;
wenzelm
parents:
66914
diff
changeset
|
1512 |
res.string(Session_Info.output_heap) match { case "" => None case s => Some(s) }, |
82d13ba817b2
more permissive: db could be empty after hard crash;
wenzelm
parents:
66914
diff
changeset
|
1513 |
res.int(Session_Info.return_code))) |
82d13ba817b2
more permissive: db could be empty after hard crash;
wenzelm
parents:
66914
diff
changeset
|
1514 |
} |
75394 | 1515 |
} |
66957
82d13ba817b2
more permissive: db could be empty after hard crash;
wenzelm
parents:
66914
diff
changeset
|
1516 |
} |
82d13ba817b2
more permissive: db could be empty after hard crash;
wenzelm
parents:
66914
diff
changeset
|
1517 |
else None |
66744 | 1518 |
} |
65281
c70e7d24a16d
SQL database operations for combined session info;
wenzelm
parents:
65278
diff
changeset
|
1519 |
} |
62631 | 1520 |
} |