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