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