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