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