author | haftmann |
Thu, 16 Apr 2020 08:09:28 +0200 | |
changeset 71755 | 318695613bb7 |
parent 71726 | a5fda30edae2 |
child 71808 | e2ad50885887 |
permissions | -rw-r--r-- |
62631 | 1 |
/* Title: Pure/Thy/sessions.scala |
2 |
Author: Makarius |
|
3 |
||
65430 | 4 |
Cumulative session information. |
62631 | 5 |
*/ |
6 |
||
7 |
package isabelle |
|
8 |
||
65461
b6c2e30dc018
support for known theories files (according to multiple uses);
wenzelm
parents:
65457
diff
changeset
|
9 |
import java.io.{File => JFile} |
62704
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
10 |
import java.nio.ByteBuffer |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
11 |
import java.nio.channels.FileChannel |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
12 |
import java.nio.file.StandardOpenOption |
62631 | 13 |
|
69762
58fb0d779583
support for session information via virtual file-system;
wenzelm
parents:
69671
diff
changeset
|
14 |
import scala.collection.{SortedSet, SortedMap} |
62631 | 15 |
import scala.collection.mutable |
16 |
||
17 |
||
18 |
object Sessions |
|
19 |
{ |
|
67284 | 20 |
/* session and theory names */ |
62883 | 21 |
|
67215 | 22 |
val root_name: String = "ROOT" |
23 |
val theory_name: String = "Pure.Sessions" |
|
24 |
||
69762
58fb0d779583
support for session information via virtual file-system;
wenzelm
parents:
69671
diff
changeset
|
25 |
val UNSORTED = "Unsorted" |
65445
e9e7f5f5794c
more qualifier treatment, but in the end it is still ignored;
wenzelm
parents:
65441
diff
changeset
|
26 |
val DRAFT = "Draft" |
e9e7f5f5794c
more qualifier treatment, but in the end it is still ignored;
wenzelm
parents:
65441
diff
changeset
|
27 |
|
65360 | 28 |
def is_pure(name: String): Boolean = name == Thy_Header.PURE |
64856 | 29 |
|
67284 | 30 |
|
31 |
def exclude_session(name: String): Boolean = name == "" || name == DRAFT |
|
32 |
||
67286 | 33 |
def exclude_theory(name: String): Boolean = |
67290 | 34 |
name == root_name || name == "README" || name == "index" || name == "bib" |
67284 | 35 |
|
36 |
||
37 |
/* base info and source dependencies */ |
|
38 |
||
65495 | 39 |
object Base |
40 |
{ |
|
70673
b0172698d0d3
theory_name based on session_directories: no need for expensive all_known;
wenzelm
parents:
70672
diff
changeset
|
41 |
def bootstrap( |
70681 | 42 |
session_directories: Map[JFile, String], |
70673
b0172698d0d3
theory_name based on session_directories: no need for expensive all_known;
wenzelm
parents:
70672
diff
changeset
|
43 |
global_theories: Map[String, String]): Base = |
65495 | 44 |
Base( |
70673
b0172698d0d3
theory_name based on session_directories: no need for expensive all_known;
wenzelm
parents:
70672
diff
changeset
|
45 |
session_directories = session_directories, |
65495 | 46 |
global_theories = global_theories, |
66720 | 47 |
overall_syntax = Thy_Header.bootstrap_syntax) |
65495 | 48 |
} |
49 |
||
50 |
sealed case class Base( |
|
66571 | 51 |
pos: Position.T = Position.none, |
67471 | 52 |
doc_names: List[String] = Nil, |
70681 | 53 |
session_directories: Map[JFile, String] = Map.empty, |
65495 | 54 |
global_theories: Map[String, String] = Map.empty, |
66717
67dbf5cdc056
more informative loaded_theories: dependencies and syntax;
wenzelm
parents:
66716
diff
changeset
|
55 |
loaded_theories: Graph[String, Outer_Syntax] = Graph.string, |
70687
086575316fd5
eliminated pointless theory graph (reverting parts of a56eab490f4e): it caused problems with loaded vs. non-loaded node names, e.g. for theory Pure (see also 29bb1ebb188f);
wenzelm
parents:
70686
diff
changeset
|
56 |
used_theories: List[(Document.Node.Name, Options)] = Nil, |
70740 | 57 |
known_theories: Map[String, Document.Node.Entry] = Map.empty, |
58 |
known_loaded_files: Map[String, List[Path]] = Map.empty, |
|
66720 | 59 |
overall_syntax: Outer_Syntax = Outer_Syntax.empty, |
66744 | 60 |
imported_sources: List[(Path, SHA1.Digest)] = Nil, |
65495 | 61 |
sources: List[(Path, SHA1.Digest)] = Nil, |
66822 | 62 |
session_graph_display: Graph_Display.Graph = Graph_Display.empty_graph, |
66694
41177b124067
tuned signature -- more readable output as Scala value;
wenzelm
parents:
66668
diff
changeset
|
63 |
errors: List[String] = Nil, |
41177b124067
tuned signature -- more readable output as Scala value;
wenzelm
parents:
66668
diff
changeset
|
64 |
imports: Option[Base] = None) |
65495 | 65 |
{ |
69102
4b06a20b13b5
tuned output -- avoid bombing of Scala toplevel, e.g. for AFP deps;
wenzelm
parents:
69080
diff
changeset
|
66 |
override def toString: String = |
4b06a20b13b5
tuned output -- avoid bombing of Scala toplevel, e.g. for AFP deps;
wenzelm
parents:
69080
diff
changeset
|
67 |
"Sessions.Base(loaded_theories = " + loaded_theories.size + |
4b06a20b13b5
tuned output -- avoid bombing of Scala toplevel, e.g. for AFP deps;
wenzelm
parents:
69080
diff
changeset
|
68 |
", used_theories = " + used_theories.length + ")" |
4b06a20b13b5
tuned output -- avoid bombing of Scala toplevel, e.g. for AFP deps;
wenzelm
parents:
69080
diff
changeset
|
69 |
|
66967
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
70 |
def theory_qualifier(name: String): String = |
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
71 |
global_theories.getOrElse(name, Long_Name.qualifier(name)) |
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
72 |
def theory_qualifier(name: Document.Node.Name): String = theory_qualifier(name.theory) |
66966 | 73 |
|
66717
67dbf5cdc056
more informative loaded_theories: dependencies and syntax;
wenzelm
parents:
66716
diff
changeset
|
74 |
def loaded_theory(name: String): Boolean = loaded_theories.defined(name) |
66712 | 75 |
def loaded_theory(name: Document.Node.Name): Boolean = loaded_theory(name.theory) |
65432 | 76 |
|
66717
67dbf5cdc056
more informative loaded_theories: dependencies and syntax;
wenzelm
parents:
66716
diff
changeset
|
77 |
def loaded_theory_syntax(name: String): Option[Outer_Syntax] = |
67dbf5cdc056
more informative loaded_theories: dependencies and syntax;
wenzelm
parents:
66716
diff
changeset
|
78 |
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
|
79 |
def loaded_theory_syntax(name: Document.Node.Name): Option[Outer_Syntax] = |
67dbf5cdc056
more informative loaded_theories: dependencies and syntax;
wenzelm
parents:
66716
diff
changeset
|
80 |
loaded_theory_syntax(name.theory) |
67dbf5cdc056
more informative loaded_theories: dependencies and syntax;
wenzelm
parents:
66716
diff
changeset
|
81 |
|
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
|
82 |
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
|
83 |
nodes(name).syntax orElse loaded_theory_syntax(name) getOrElse overall_syntax |
66721
ae38b8c0fdd9
more accurate node_syntax: avoid overall_syntax for PIDE edits;
wenzelm
parents:
66720
diff
changeset
|
84 |
|
70673
b0172698d0d3
theory_name based on session_directories: no need for expensive all_known;
wenzelm
parents:
70672
diff
changeset
|
85 |
def get_imports: Base = |
b0172698d0d3
theory_name based on session_directories: no need for expensive all_known;
wenzelm
parents:
70672
diff
changeset
|
86 |
imports getOrElse Base.bootstrap(session_directories, global_theories) |
65355 | 87 |
} |
64856 | 88 |
|
70686
9cde8c4ea5a5
discontinued obsolete "isabelle imports" and all_known data;
wenzelm
parents:
70685
diff
changeset
|
89 |
sealed case class Deps(sessions_structure: Structure, session_bases: Map[String, Base]) |
65251 | 90 |
{ |
69102
4b06a20b13b5
tuned output -- avoid bombing of Scala toplevel, e.g. for AFP deps;
wenzelm
parents:
69080
diff
changeset
|
91 |
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
|
92 |
|
65463
104502de757c
more informative known_files: known_theories within the local session directory come first;
wenzelm
parents:
65461
diff
changeset
|
93 |
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
|
94 |
def apply(name: String): Base = session_bases(name) |
66988 | 95 |
def get(name: String): Option[Base] = session_bases.get(name) |
66744 | 96 |
|
97 |
def imported_sources(name: String): List[SHA1.Digest] = |
|
98 |
session_bases(name).imported_sources.map(_._2) |
|
99 |
||
100 |
def sources(name: String): List[SHA1.Digest] = |
|
101 |
session_bases(name).sources.map(_._2) |
|
66571 | 102 |
|
103 |
def errors: List[String] = |
|
104 |
(for { |
|
105 |
(name, base) <- session_bases.iterator |
|
106 |
if base.errors.nonEmpty |
|
107 |
} yield cat_lines(base.errors) + |
|
108 |
"\nThe error(s) above occurred in session " + quote(name) + Position.here(base.pos) |
|
109 |
).toList |
|
110 |
||
111 |
def check_errors: Deps = |
|
112 |
errors match { |
|
113 |
case Nil => this |
|
114 |
case errs => error(cat_lines(errs)) |
|
115 |
} |
|
65251 | 116 |
} |
64856 | 117 |
|
67052 | 118 |
def deps(sessions_structure: Structure, |
71726
a5fda30edae2
clarified signature: more uniform treatment of stopped/interrupted state;
wenzelm
parents:
71642
diff
changeset
|
119 |
progress: Progress = new Progress, |
65251 | 120 |
inlined_files: Boolean = false, |
121 |
verbose: Boolean = false, |
|
122 |
list_files: Boolean = false, |
|
66962
e1bde71bace6
clarified signature: global_theories is always required;
wenzelm
parents:
66960
diff
changeset
|
123 |
check_keywords: Set[String] = Set.empty): Deps = |
65372
b722ee40c26c
refer to global_theories from all sessions, before selection;
wenzelm
parents:
65371
diff
changeset
|
124 |
{ |
66743 | 125 |
var cache_sources = Map.empty[JFile, SHA1.Digest] |
126 |
def check_sources(paths: List[Path]): List[(Path, SHA1.Digest)] = |
|
127 |
{ |
|
128 |
for { |
|
129 |
path <- paths |
|
130 |
file = path.file |
|
131 |
if cache_sources.isDefinedAt(file) || file.isFile |
|
132 |
} |
|
133 |
yield { |
|
134 |
cache_sources.get(file) match { |
|
135 |
case Some(digest) => (path, digest) |
|
136 |
case None => |
|
137 |
val digest = SHA1.digest(file) |
|
138 |
cache_sources = cache_sources + (file -> digest) |
|
139 |
(path, digest) |
|
140 |
} |
|
141 |
} |
|
142 |
} |
|
143 |
||
67471 | 144 |
val doc_names = Doc.doc_names() |
145 |
||
71642 | 146 |
val bootstrap = |
147 |
Sessions.Base.bootstrap( |
|
148 |
sessions_structure.session_directories, |
|
149 |
sessions_structure.global_theories) |
|
150 |
||
65463
104502de757c
more informative known_files: known_theories within the local session directory come first;
wenzelm
parents:
65461
diff
changeset
|
151 |
val session_bases = |
71642 | 152 |
(Map("" -> bootstrap) /: sessions_structure.imports_topological_order)({ |
67023 | 153 |
case (session_bases, session_name) => |
67880 | 154 |
progress.expose_interrupt() |
65251 | 155 |
|
67024 | 156 |
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
|
157 |
try { |
71642 | 158 |
val parent_base = session_bases(info.parent.getOrElse("")) |
70740 | 159 |
|
65496 | 160 |
val imports_base: Sessions.Base = |
70740 | 161 |
{ |
162 |
val imports_bases = info.imports.map(session_bases(_)) |
|
163 |
parent_base.copy( |
|
164 |
known_theories = |
|
165 |
(parent_base.known_theories /: |
|
166 |
(for { |
|
167 |
base <- imports_bases.iterator |
|
168 |
(_, entry) <- base.known_theories.iterator |
|
169 |
} yield (entry.name.theory -> entry)))(_ + _), |
|
170 |
known_loaded_files = |
|
171 |
(parent_base.known_loaded_files /: |
|
172 |
imports_bases.iterator.map(_.known_loaded_files))(_ ++ _)) |
|
173 |
} |
|
65496 | 174 |
|
70683
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70681
diff
changeset
|
175 |
val resources = new Resources(sessions_structure, imports_base) |
65251 | 176 |
|
65463
104502de757c
more informative known_files: known_theories within the local session directory come first;
wenzelm
parents:
65461
diff
changeset
|
177 |
if (verbose || list_files) { |
104502de757c
more informative known_files: known_theories within the local session directory come first;
wenzelm
parents:
65461
diff
changeset
|
178 |
val groups = |
104502de757c
more informative known_files: known_theories within the local session directory come first;
wenzelm
parents:
65461
diff
changeset
|
179 |
if (info.groups.isEmpty) "" |
104502de757c
more informative known_files: known_theories within the local session directory come first;
wenzelm
parents:
65461
diff
changeset
|
180 |
else info.groups.mkString(" (", " ", ")") |
65519 | 181 |
progress.echo("Session " + info.chapter + "/" + info.name + groups) |
65463
104502de757c
more informative known_files: known_theories within the local session directory come first;
wenzelm
parents:
65461
diff
changeset
|
182 |
} |
65251 | 183 |
|
69008
d55783ea6cf6
more detailed session dependencies, with conditions for theories;
wenzelm
parents:
68841
diff
changeset
|
184 |
val dependencies = resources.session_dependencies(info) |
65251 | 185 |
|
67053 | 186 |
val overall_syntax = dependencies.overall_syntax |
65251 | 187 |
|
67059 | 188 |
val theory_files = dependencies.theories.map(_.path) |
65463
104502de757c
more informative known_files: known_theories within the local session directory come first;
wenzelm
parents:
65461
diff
changeset
|
189 |
val loaded_files = |
69560 | 190 |
if (inlined_files) dependencies.loaded_files(Sessions.is_pure(info.name)) |
65463
104502de757c
more informative known_files: known_theories within the local session directory come first;
wenzelm
parents:
65461
diff
changeset
|
191 |
else Nil |
65251 | 192 |
|
66742 | 193 |
val session_files = |
66701 | 194 |
(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
|
195 |
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
|
196 |
|
67053 | 197 |
val imported_files = if (inlined_files) dependencies.imported_files else Nil |
66743 | 198 |
|
65463
104502de757c
more informative known_files: known_theories within the local session directory come first;
wenzelm
parents:
65461
diff
changeset
|
199 |
if (list_files) |
66742 | 200 |
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
|
201 |
|
66719
d37efafd55b5
clarified theory syntax vs. overall session syntax;
wenzelm
parents:
66718
diff
changeset
|
202 |
if (check_keywords.nonEmpty) { |
d37efafd55b5
clarified theory syntax vs. overall session syntax;
wenzelm
parents:
66718
diff
changeset
|
203 |
Check_Keywords.check_keywords( |
66720 | 204 |
progress, overall_syntax.keywords, check_keywords, theory_files) |
66719
d37efafd55b5
clarified theory syntax vs. overall session syntax;
wenzelm
parents:
66718
diff
changeset
|
205 |
} |
65251 | 206 |
|
66822 | 207 |
val session_graph_display: Graph_Display.Graph = |
65507
decdb95bd007
clarified session graph: collapse theories from other sessions;
wenzelm
parents:
65500
diff
changeset
|
208 |
{ |
decdb95bd007
clarified session graph: collapse theories from other sessions;
wenzelm
parents:
65500
diff
changeset
|
209 |
def session_node(name: String): Graph_Display.Node = |
decdb95bd007
clarified session graph: collapse theories from other sessions;
wenzelm
parents:
65500
diff
changeset
|
210 |
Graph_Display.Node("[" + name + "]", "session." + name) |
decdb95bd007
clarified session graph: collapse theories from other sessions;
wenzelm
parents:
65500
diff
changeset
|
211 |
|
decdb95bd007
clarified session graph: collapse theories from other sessions;
wenzelm
parents:
65500
diff
changeset
|
212 |
def node(name: Document.Node.Name): Graph_Display.Node = |
decdb95bd007
clarified session graph: collapse theories from other sessions;
wenzelm
parents:
65500
diff
changeset
|
213 |
{ |
66966 | 214 |
val qualifier = imports_base.theory_qualifier(name) |
66780
bf54ca580bf2
theory qualifier is always session name (see also 31e8a86971a8);
wenzelm
parents:
66770
diff
changeset
|
215 |
if (qualifier == info.name) |
65507
decdb95bd007
clarified session graph: collapse theories from other sessions;
wenzelm
parents:
65500
diff
changeset
|
216 |
Graph_Display.Node(name.theory_base_name, "theory." + name.theory) |
65528 | 217 |
else session_node(qualifier) |
65507
decdb95bd007
clarified session graph: collapse theories from other sessions;
wenzelm
parents:
65500
diff
changeset
|
218 |
} |
decdb95bd007
clarified session graph: collapse theories from other sessions;
wenzelm
parents:
65500
diff
changeset
|
219 |
|
70946
79d23e6436d0
clarified session_graph_display: restrict sessions to actually required theories;
wenzelm
parents:
70869
diff
changeset
|
220 |
val required_sessions = |
79d23e6436d0
clarified session_graph_display: restrict sessions to actually required theories;
wenzelm
parents:
70869
diff
changeset
|
221 |
dependencies.loaded_theories.all_preds(dependencies.theories.map(_.theory)) |
79d23e6436d0
clarified session_graph_display: restrict sessions to actually required theories;
wenzelm
parents:
70869
diff
changeset
|
222 |
.map(theory => imports_base.theory_qualifier(theory)) |
71574
95460356d633
avoid premature crash due to missing session parents/imports;
wenzelm
parents:
71569
diff
changeset
|
223 |
.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
|
224 |
|
79d23e6436d0
clarified session_graph_display: restrict sessions to actually required theories;
wenzelm
parents:
70869
diff
changeset
|
225 |
val required_subgraph = |
79d23e6436d0
clarified session_graph_display: restrict sessions to actually required theories;
wenzelm
parents:
70869
diff
changeset
|
226 |
sessions_structure.imports_graph |
79d23e6436d0
clarified session_graph_display: restrict sessions to actually required theories;
wenzelm
parents:
70869
diff
changeset
|
227 |
.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
|
228 |
.transitive_closure |
79d23e6436d0
clarified session_graph_display: restrict sessions to actually required theories;
wenzelm
parents:
70869
diff
changeset
|
229 |
.restrict(required_sessions.toSet) |
79d23e6436d0
clarified session_graph_display: restrict sessions to actually required theories;
wenzelm
parents:
70869
diff
changeset
|
230 |
.transitive_reduction_acyclic |
65507
decdb95bd007
clarified session graph: collapse theories from other sessions;
wenzelm
parents:
65500
diff
changeset
|
231 |
|
decdb95bd007
clarified session graph: collapse theories from other sessions;
wenzelm
parents:
65500
diff
changeset
|
232 |
val graph0 = |
70946
79d23e6436d0
clarified session_graph_display: restrict sessions to actually required theories;
wenzelm
parents:
70869
diff
changeset
|
233 |
(Graph_Display.empty_graph /: required_subgraph.topological_order)( |
65507
decdb95bd007
clarified session graph: collapse theories from other sessions;
wenzelm
parents:
65500
diff
changeset
|
234 |
{ case (g, session) => |
decdb95bd007
clarified session graph: collapse theories from other sessions;
wenzelm
parents:
65500
diff
changeset
|
235 |
val a = session_node(session) |
71601 | 236 |
val bs = required_subgraph.imm_preds(session).toList.map(session_node) |
65507
decdb95bd007
clarified session graph: collapse theories from other sessions;
wenzelm
parents:
65500
diff
changeset
|
237 |
((g /: (a :: bs))(_.default_node(_, Nil)) /: bs)(_.add_edge(_, a)) }) |
decdb95bd007
clarified session graph: collapse theories from other sessions;
wenzelm
parents:
65500
diff
changeset
|
238 |
|
67053 | 239 |
(graph0 /: dependencies.entries)( |
66714 | 240 |
{ case (g, entry) => |
241 |
val a = node(entry.name) |
|
70638
f164cec7ac22
clarified signature: prefer operations without position;
wenzelm
parents:
70637
diff
changeset
|
242 |
val bs = entry.header.imports.map(node).filterNot(_ == a) |
65507
decdb95bd007
clarified session graph: collapse theories from other sessions;
wenzelm
parents:
65500
diff
changeset
|
243 |
((g /: (a :: bs))(_.default_node(_, Nil)) /: bs)(_.add_edge(_, a)) }) |
decdb95bd007
clarified session graph: collapse theories from other sessions;
wenzelm
parents:
65500
diff
changeset
|
244 |
} |
decdb95bd007
clarified session graph: collapse theories from other sessions;
wenzelm
parents:
65500
diff
changeset
|
245 |
|
70740 | 246 |
val known_theories = |
247 |
(imports_base.known_theories /: |
|
248 |
dependencies.entries.iterator.map(entry => entry.name.theory -> entry))(_ + _) |
|
249 |
||
250 |
val known_loaded_files = imports_base.known_loaded_files ++ loaded_files |
|
66701 | 251 |
|
70636 | 252 |
val used_theories = |
253 |
for ((options, name) <- dependencies.adjunct_theories) |
|
70687
086575316fd5
eliminated pointless theory graph (reverting parts of a56eab490f4e): it caused problems with loaded vs. non-loaded node names, e.g. for theory Pure (see also 29bb1ebb188f);
wenzelm
parents:
70686
diff
changeset
|
254 |
yield (name, options) |
70636 | 255 |
|
70719 | 256 |
def used_theories_session_iterator: Iterator[Document.Node.Name] = |
257 |
for { |
|
258 |
(name, _) <- used_theories.iterator |
|
259 |
if imports_base.theory_qualifier(name) == session_name |
|
260 |
} yield name |
|
261 |
||
70676 | 262 |
val dir_errors = |
263 |
{ |
|
70681 | 264 |
val ok = info.dirs.map(_.canonical_file).toSet |
70679 | 265 |
val bad = |
266 |
(for { |
|
70719 | 267 |
name <- used_theories_session_iterator |
268 |
path = name.master_dir_path |
|
70676 | 269 |
if !ok(path.canonical_file) |
70679 | 270 |
path1 = File.relative_path(info.dir.canonical, path).getOrElse(path) |
271 |
} yield (path1, name)).toList |
|
71602 | 272 |
val bad_dirs = (for { (path1, _) <- bad } yield path1.toString).distinct.sorted |
70679 | 273 |
|
274 |
val errs1 = |
|
275 |
for { (path1, name) <- bad } |
|
276 |
yield "Implicit use of directory " + path1 + " for theory " + quote(name.toString) |
|
277 |
val errs2 = |
|
278 |
if (bad_dirs.isEmpty) Nil |
|
279 |
else List("Implicit use of session directories: " + commas(bad_dirs)) |
|
70693 | 280 |
val errs3 = for (p <- info.dirs if !p.is_dir) yield "No such directory: " + p |
70719 | 281 |
val errs4 = |
282 |
(for { |
|
283 |
name <- used_theories_session_iterator |
|
284 |
name1 <- resources.find_theory_node(name.theory) |
|
285 |
if name.node != name1.node |
|
286 |
} yield "Incoherent theory file import:\n " + name.path + " vs. \n " + name1.path) |
|
287 |
.toList |
|
70693 | 288 |
|
70719 | 289 |
errs1 ::: errs2 ::: errs3 ::: errs4 |
70676 | 290 |
} |
291 |
||
66743 | 292 |
val sources_errors = |
293 |
for (p <- session_files if !p.is_file) yield "No such file: " + p |
|
66604 | 294 |
|
69904 | 295 |
val path_errors = |
296 |
try { Path.check_case_insensitive(session_files ::: imported_files); Nil } |
|
297 |
catch { case ERROR(msg) => List(msg) } |
|
298 |
||
67297
86a099f896fc
formal check of @{cite} bibtex entries -- only in batch-mode session builds;
wenzelm
parents:
67290
diff
changeset
|
299 |
val bibtex_errors = |
86a099f896fc
formal check of @{cite} bibtex entries -- only in batch-mode session builds;
wenzelm
parents:
67290
diff
changeset
|
300 |
try { info.bibtex_entries; Nil } |
86a099f896fc
formal check of @{cite} bibtex entries -- only in batch-mode session builds;
wenzelm
parents:
67290
diff
changeset
|
301 |
catch { case ERROR(msg) => List(msg) } |
86a099f896fc
formal check of @{cite} bibtex entries -- only in batch-mode session builds;
wenzelm
parents:
67290
diff
changeset
|
302 |
|
65463
104502de757c
more informative known_files: known_theories within the local session directory come first;
wenzelm
parents:
65461
diff
changeset
|
303 |
val base = |
66571 | 304 |
Base( |
305 |
pos = info.pos, |
|
67471 | 306 |
doc_names = doc_names, |
70673
b0172698d0d3
theory_name based on session_directories: no need for expensive all_known;
wenzelm
parents:
70672
diff
changeset
|
307 |
session_directories = sessions_structure.session_directories, |
70671
cb1776c8e216
clarified signature: retain global session information, unaffected by later restriction;
wenzelm
parents:
70668
diff
changeset
|
308 |
global_theories = sessions_structure.global_theories, |
67053 | 309 |
loaded_theories = dependencies.loaded_theories, |
70636 | 310 |
used_theories = used_theories, |
70740 | 311 |
known_theories = known_theories, |
312 |
known_loaded_files = known_loaded_files, |
|
66720 | 313 |
overall_syntax = overall_syntax, |
66744 | 314 |
imported_sources = check_sources(imported_files), |
66743 | 315 |
sources = check_sources(session_files), |
66822 | 316 |
session_graph_display = session_graph_display, |
70676 | 317 |
errors = dependencies.errors ::: dir_errors ::: sources_errors ::: |
318 |
path_errors ::: bibtex_errors, |
|
66694
41177b124067
tuned signature -- more readable output as Scala value;
wenzelm
parents:
66668
diff
changeset
|
319 |
imports = Some(imports_base)) |
65251 | 320 |
|
65519 | 321 |
session_bases + (info.name -> base) |
65463
104502de757c
more informative known_files: known_theories within the local session directory come first;
wenzelm
parents:
65461
diff
changeset
|
322 |
} |
104502de757c
more informative known_files: known_theories within the local session directory come first;
wenzelm
parents:
65461
diff
changeset
|
323 |
catch { |
104502de757c
more informative known_files: known_theories within the local session directory come first;
wenzelm
parents:
65461
diff
changeset
|
324 |
case ERROR(msg) => |
104502de757c
more informative known_files: known_theories within the local session directory come first;
wenzelm
parents:
65461
diff
changeset
|
325 |
cat_error(msg, "The error(s) above occurred in session " + |
65519 | 326 |
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
|
327 |
} |
104502de757c
more informative known_files: known_theories within the local session directory come first;
wenzelm
parents:
65461
diff
changeset
|
328 |
}) |
65251 | 329 |
|
70686
9cde8c4ea5a5
discontinued obsolete "isabelle imports" and all_known data;
wenzelm
parents:
70685
diff
changeset
|
330 |
Deps(sessions_structure, session_bases) |
65372
b722ee40c26c
refer to global_theories from all sessions, before selection;
wenzelm
parents:
65371
diff
changeset
|
331 |
} |
65251 | 332 |
|
66963 | 333 |
|
334 |
/* base info */ |
|
335 |
||
66974
b14c24b31f45
avoid duplicate invocation of expensive Sessions.deps on full_sessions;
wenzelm
parents:
66970
diff
changeset
|
336 |
sealed case class Base_Info( |
b14c24b31f45
avoid duplicate invocation of expensive Sessions.deps on full_sessions;
wenzelm
parents:
66970
diff
changeset
|
337 |
session: String, |
67052 | 338 |
sessions_structure: Structure, |
66975 | 339 |
errors: List[String], |
66974
b14c24b31f45
avoid duplicate invocation of expensive Sessions.deps on full_sessions;
wenzelm
parents:
66970
diff
changeset
|
340 |
base: Base, |
b14c24b31f45
avoid duplicate invocation of expensive Sessions.deps on full_sessions;
wenzelm
parents:
66970
diff
changeset
|
341 |
infos: List[Info]) |
b14c24b31f45
avoid duplicate invocation of expensive Sessions.deps on full_sessions;
wenzelm
parents:
66970
diff
changeset
|
342 |
{ |
b14c24b31f45
avoid duplicate invocation of expensive Sessions.deps on full_sessions;
wenzelm
parents:
66970
diff
changeset
|
343 |
def check_base: Base = if (errors.isEmpty) base else error(cat_lines(errors)) |
b14c24b31f45
avoid duplicate invocation of expensive Sessions.deps on full_sessions;
wenzelm
parents:
66970
diff
changeset
|
344 |
} |
b14c24b31f45
avoid duplicate invocation of expensive Sessions.deps on full_sessions;
wenzelm
parents:
66970
diff
changeset
|
345 |
|
67846 | 346 |
def base_info(options: Options, |
347 |
session: String, |
|
71726
a5fda30edae2
clarified signature: more uniform treatment of stopped/interrupted state;
wenzelm
parents:
71642
diff
changeset
|
348 |
progress: Progress = new Progress, |
65428 | 349 |
dirs: List[Path] = Nil, |
67922
9e668ae81f97
clarified signature: prefer selective include_sessions;
wenzelm
parents:
67880
diff
changeset
|
350 |
include_sessions: List[String] = Nil, |
68370 | 351 |
session_ancestor: Option[String] = None, |
70683
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70681
diff
changeset
|
352 |
session_requirements: Boolean = false): Base_Info = |
65251 | 353 |
{ |
67026 | 354 |
val full_sessions = load_structure(options, dirs = dirs) |
65372
b722ee40c26c
refer to global_theories from all sessions, before selection;
wenzelm
parents:
65371
diff
changeset
|
355 |
|
66990 | 356 |
val selected_sessions = |
68370 | 357 |
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
|
358 |
val info = selected_sessions(session) |
68370 | 359 |
val ancestor = session_ancestor orElse info.parent |
66963 | 360 |
|
66974
b14c24b31f45
avoid duplicate invocation of expensive Sessions.deps on full_sessions;
wenzelm
parents:
66970
diff
changeset
|
361 |
val (session1, infos1) = |
68370 | 362 |
if (session_requirements && ancestor.isDefined) { |
70671
cb1776c8e216
clarified signature: retain global session information, unaffected by later restriction;
wenzelm
parents:
70668
diff
changeset
|
363 |
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
|
364 |
val base = deps(session) |
66968
9991671c98aa
allow to augment session context via explicit session infos;
wenzelm
parents:
66967
diff
changeset
|
365 |
|
66988 | 366 |
val ancestor_loaded = |
367 |
deps.get(ancestor.get) match { |
|
66990 | 368 |
case Some(ancestor_base) |
369 |
if !selected_sessions.imports_requirements(List(ancestor.get)).contains(session) => |
|
71601 | 370 |
ancestor_base.loaded_theories.defined _ |
66990 | 371 |
case _ => |
66988 | 372 |
error("Bad ancestor " + quote(ancestor.get) + " for session " + quote(session)) |
373 |
} |
|
66974
b14c24b31f45
avoid duplicate invocation of expensive Sessions.deps on full_sessions;
wenzelm
parents:
66970
diff
changeset
|
374 |
|
b14c24b31f45
avoid duplicate invocation of expensive Sessions.deps on full_sessions;
wenzelm
parents:
66970
diff
changeset
|
375 |
val required_theories = |
66968
9991671c98aa
allow to augment session context via explicit session infos;
wenzelm
parents:
66967
diff
changeset
|
376 |
for { |
9991671c98aa
allow to augment session context via explicit session infos;
wenzelm
parents:
66967
diff
changeset
|
377 |
thy <- base.loaded_theories.keys |
66988 | 378 |
if !ancestor_loaded(thy) && base.theory_qualifier(thy) != session |
66968
9991671c98aa
allow to augment session context via explicit session infos;
wenzelm
parents:
66967
diff
changeset
|
379 |
} |
66974
b14c24b31f45
avoid duplicate invocation of expensive Sessions.deps on full_sessions;
wenzelm
parents:
66970
diff
changeset
|
380 |
yield thy |
66968
9991671c98aa
allow to augment session context via explicit session infos;
wenzelm
parents:
66967
diff
changeset
|
381 |
|
66988 | 382 |
if (required_theories.isEmpty) (ancestor.get, Nil) |
66968
9991671c98aa
allow to augment session context via explicit session infos;
wenzelm
parents:
66967
diff
changeset
|
383 |
else { |
68370 | 384 |
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
|
385 |
Isabelle_System.isabelle_tmp_prefix() |
391ea80ff27c
more robust re-use of $ISABELLE_TMP_PREFIX (amending c1597167563e);
wenzelm
parents:
70946
diff
changeset
|
386 |
|
66974
b14c24b31f45
avoid duplicate invocation of expensive Sessions.deps on full_sessions;
wenzelm
parents:
66970
diff
changeset
|
387 |
(other_name, |
66968
9991671c98aa
allow to augment session context via explicit session infos;
wenzelm
parents:
66967
diff
changeset
|
388 |
List( |
9991671c98aa
allow to augment session context via explicit session infos;
wenzelm
parents:
66967
diff
changeset
|
389 |
make_info(info.options, |
9991671c98aa
allow to augment session context via explicit session infos;
wenzelm
parents:
66967
diff
changeset
|
390 |
dir_selected = false, |
70685
c1597167563e
avoid duplicate directories wrt. synthetic session;
wenzelm
parents:
70684
diff
changeset
|
391 |
dir = Path.explode("$ISABELLE_TMP_PREFIX"), |
66968
9991671c98aa
allow to augment session context via explicit session infos;
wenzelm
parents:
66967
diff
changeset
|
392 |
chapter = info.chapter, |
9991671c98aa
allow to augment session context via explicit session infos;
wenzelm
parents:
66967
diff
changeset
|
393 |
Session_Entry( |
9991671c98aa
allow to augment session context via explicit session infos;
wenzelm
parents:
66967
diff
changeset
|
394 |
pos = info.pos, |
9991671c98aa
allow to augment session context via explicit session infos;
wenzelm
parents:
66967
diff
changeset
|
395 |
name = other_name, |
9991671c98aa
allow to augment session context via explicit session infos;
wenzelm
parents:
66967
diff
changeset
|
396 |
groups = info.groups, |
9991671c98aa
allow to augment session context via explicit session infos;
wenzelm
parents:
66967
diff
changeset
|
397 |
path = ".", |
66988 | 398 |
parent = ancestor, |
66974
b14c24b31f45
avoid duplicate invocation of expensive Sessions.deps on full_sessions;
wenzelm
parents:
66970
diff
changeset
|
399 |
description = "Required theory imports from other sessions", |
66968
9991671c98aa
allow to augment session context via explicit session infos;
wenzelm
parents:
66967
diff
changeset
|
400 |
options = Nil, |
66991 | 401 |
imports = info.deps, |
70678
36c8c32346cb
clarified syntax: 'directories' and 'theories' belong together;
wenzelm
parents:
70676
diff
changeset
|
402 |
directories = Nil, |
66974
b14c24b31f45
avoid duplicate invocation of expensive Sessions.deps on full_sessions;
wenzelm
parents:
66970
diff
changeset
|
403 |
theories = List((Nil, required_theories.map(thy => ((thy, Position.none), false)))), |
68292 | 404 |
document_files = Nil, |
405 |
export_files = Nil)))) |
|
66968
9991671c98aa
allow to augment session context via explicit session infos;
wenzelm
parents:
66967
diff
changeset
|
406 |
} |
9991671c98aa
allow to augment session context via explicit session infos;
wenzelm
parents:
66967
diff
changeset
|
407 |
} |
66974
b14c24b31f45
avoid duplicate invocation of expensive Sessions.deps on full_sessions;
wenzelm
parents:
66970
diff
changeset
|
408 |
else (session, Nil) |
66968
9991671c98aa
allow to augment session context via explicit session infos;
wenzelm
parents:
66967
diff
changeset
|
409 |
|
66974
b14c24b31f45
avoid duplicate invocation of expensive Sessions.deps on full_sessions;
wenzelm
parents:
66970
diff
changeset
|
410 |
val full_sessions1 = |
b14c24b31f45
avoid duplicate invocation of expensive Sessions.deps on full_sessions;
wenzelm
parents:
66970
diff
changeset
|
411 |
if (infos1.isEmpty) full_sessions |
67026 | 412 |
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
|
413 |
|
352b23c97ac8
support focus_session, for much faster startup of Isabelle/jEdit;
wenzelm
parents:
66984
diff
changeset
|
414 |
val selected_sessions1 = |
70683
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70681
diff
changeset
|
415 |
full_sessions1.selection(Selection(sessions = session1 :: session :: include_sessions)) |
66964 | 416 |
|
70683
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70681
diff
changeset
|
417 |
val deps1 = Sessions.deps(selected_sessions1, progress = progress) |
66964 | 418 |
|
71599 | 419 |
Base_Info(session1, full_sessions1, deps1.errors, deps1(session1), infos1) |
65251 | 420 |
} |
421 |
||
422 |
||
65415
8cd54b18b68b
clarified signature: tree structure is not essential;
wenzelm
parents:
65410
diff
changeset
|
423 |
/* cumulative session info */ |
62631 | 424 |
|
425 |
sealed case class Info( |
|
65519 | 426 |
name: String, |
62631 | 427 |
chapter: String, |
66829 | 428 |
dir_selected: Boolean, |
62631 | 429 |
pos: Position.T, |
430 |
groups: List[String], |
|
431 |
dir: Path, |
|
432 |
parent: Option[String], |
|
433 |
description: String, |
|
70681 | 434 |
directories: List[Path], |
62631 | 435 |
options: Options, |
65420
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
436 |
imports: List[String], |
65517 | 437 |
theories: List[(Options, List[(String, Position.T)])], |
65374 | 438 |
global_theories: List[String], |
62631 | 439 |
document_files: List[(Path, Path)], |
69671 | 440 |
export_files: List[(Path, Int, List[String])], |
62631 | 441 |
meta_digest: SHA1.Digest) |
442 |
{ |
|
66828 | 443 |
def deps: List[String] = parent.toList ::: imports |
444 |
||
70681 | 445 |
def dirs: List[Path] = dir :: directories |
70668 | 446 |
|
62631 | 447 |
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
|
448 |
|
86a099f896fc
formal check of @{cite} bibtex entries -- only in batch-mode session builds;
wenzelm
parents:
67290
diff
changeset
|
449 |
def bibtex_entries: List[Text.Info[String]] = |
86a099f896fc
formal check of @{cite} bibtex entries -- only in batch-mode session builds;
wenzelm
parents:
67290
diff
changeset
|
450 |
(for { |
86a099f896fc
formal check of @{cite} bibtex entries -- only in batch-mode session builds;
wenzelm
parents:
67290
diff
changeset
|
451 |
(document_dir, file) <- document_files.iterator |
69366 | 452 |
if Bibtex.is_bibtex(file.file_name) |
67297
86a099f896fc
formal check of @{cite} bibtex entries -- only in batch-mode session builds;
wenzelm
parents:
67290
diff
changeset
|
453 |
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
|
454 |
} yield info).toList |
70859
6e6254bbce1f
split into standard partitions, for improved scalability;
wenzelm
parents:
70796
diff
changeset
|
455 |
|
70869 | 456 |
def record_proofs: Boolean = options.int("record_proofs") >= 2 |
457 |
||
70859
6e6254bbce1f
split into standard partitions, for improved scalability;
wenzelm
parents:
70796
diff
changeset
|
458 |
def is_afp: Boolean = chapter == AFP.chapter |
6e6254bbce1f
split into standard partitions, for improved scalability;
wenzelm
parents:
70796
diff
changeset
|
459 |
def is_afp_bulky: Boolean = is_afp && groups.exists(AFP.groups_bulky.contains) |
62631 | 460 |
} |
461 |
||
66967
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
462 |
def make_info(options: Options, dir_selected: Boolean, dir: Path, chapter: String, |
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
463 |
entry: Session_Entry): Info = |
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
464 |
{ |
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
465 |
try { |
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
466 |
val name = entry.name |
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
467 |
|
67284 | 468 |
if (exclude_session(name)) error("Bad session name") |
66967
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
469 |
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
|
470 |
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
|
471 |
|
70672
e4bba654d085
clarified session_directories: relative to session_path, with overlapping information;
wenzelm
parents:
70671
diff
changeset
|
472 |
val session_path = dir + Path.explode(entry.path) |
70681 | 473 |
val directories = entry.directories.map(dir => session_path + Path.explode(dir)) |
70668 | 474 |
|
66967
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
475 |
val session_options = options ++ entry.options |
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
476 |
|
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
477 |
val theories = |
67216 | 478 |
entry.theories.map({ case (opts, thys) => |
479 |
(session_options ++ opts, |
|
480 |
thys.map({ case ((thy, pos), _) => |
|
67284 | 481 |
if (exclude_theory(thy)) |
67216 | 482 |
error("Bad theory name " + quote(thy) + Position.here(pos)) |
483 |
else (thy, pos) })) }) |
|
66967
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
484 |
|
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
485 |
val global_theories = |
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
486 |
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
|
487 |
yield { |
69366 | 488 |
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
|
489 |
if (Long_Name.is_qualified(thy_name)) |
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
490 |
error("Bad qualified name for global theory " + |
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
491 |
quote(thy_name) + Position.here(pos)) |
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
492 |
else thy_name |
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
493 |
} |
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
494 |
|
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
495 |
val conditions = |
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
496 |
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
|
497 |
map(x => (x, Isabelle_System.getenv(x) != "")) |
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
498 |
|
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
499 |
val document_files = |
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
500 |
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
|
501 |
|
68292 | 502 |
val export_files = |
69671 | 503 |
entry.export_files.map({ case (dir, prune, pats) => (Path.explode(dir), prune, pats) }) |
68292 | 504 |
|
66967
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
505 |
val meta_digest = |
70668 | 506 |
SHA1.digest((name, chapter, entry.parent, entry.directories, entry.options, entry.imports, |
69812
9487788a94c1
clarified meta_digest: export_files is a directive for physical output from existing build database;
wenzelm
parents:
69762
diff
changeset
|
507 |
entry.theories_no_position, conditions, entry.document_files).toString) |
66967
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
508 |
|
70672
e4bba654d085
clarified session_directories: relative to session_path, with overlapping information;
wenzelm
parents:
70671
diff
changeset
|
509 |
Info(name, chapter, dir_selected, entry.pos, entry.groups, session_path, |
70668 | 510 |
entry.parent, entry.description, directories, session_options, |
68292 | 511 |
entry.imports, theories, global_theories, document_files, export_files, meta_digest) |
66967
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
512 |
} |
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
513 |
catch { |
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
514 |
case ERROR(msg) => |
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
515 |
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
|
516 |
quote(entry.name) + Position.here(entry.pos)) |
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
517 |
} |
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
518 |
} |
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
519 |
|
65419 | 520 |
object Selection |
521 |
{ |
|
65422 | 522 |
val empty: Selection = Selection() |
65525 | 523 |
val all: Selection = Selection(all_sessions = true) |
70788 | 524 |
def session(session: String): Selection = Selection(sessions = List(session)) |
65419 | 525 |
} |
526 |
||
527 |
sealed case class Selection( |
|
528 |
requirements: Boolean = false, |
|
529 |
all_sessions: Boolean = false, |
|
66737
2edc0c42c883
option -B for "isabelle build" and "isabelle imports";
wenzelm
parents:
66736
diff
changeset
|
530 |
base_sessions: List[String] = Nil, |
65419 | 531 |
exclude_session_groups: List[String] = Nil, |
532 |
exclude_sessions: List[String] = Nil, |
|
533 |
session_groups: List[String] = Nil, |
|
534 |
sessions: List[String] = Nil) |
|
535 |
{ |
|
66736 | 536 |
def ++ (other: Selection): Selection = |
65422 | 537 |
Selection( |
538 |
requirements = requirements || other.requirements, |
|
539 |
all_sessions = all_sessions || other.all_sessions, |
|
66737
2edc0c42c883
option -B for "isabelle build" and "isabelle imports";
wenzelm
parents:
66736
diff
changeset
|
540 |
base_sessions = Library.merge(base_sessions, other.base_sessions), |
66736 | 541 |
exclude_session_groups = Library.merge(exclude_session_groups, other.exclude_session_groups), |
542 |
exclude_sessions = Library.merge(exclude_sessions, other.exclude_sessions), |
|
543 |
session_groups = Library.merge(session_groups, other.session_groups), |
|
544 |
sessions = Library.merge(sessions, other.sessions)) |
|
65419 | 545 |
} |
546 |
||
67052 | 547 |
def make(infos: List[Info]): Structure = |
62631 | 548 |
{ |
65420
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
549 |
def add_edges(graph: Graph[String, Info], kind: String, edges: Info => Traversable[String]) |
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
550 |
: Graph[String, Info] = |
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
551 |
{ |
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
552 |
def add_edge(pos: Position.T, name: String, g: Graph[String, Info], parent: String) = |
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
553 |
{ |
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
554 |
if (!g.defined(parent)) |
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
555 |
error("Bad " + kind + " session " + quote(parent) + " for " + |
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
556 |
quote(name) + Position.here(pos)) |
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
557 |
|
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
558 |
try { g.add_edge_acyclic(parent, name) } |
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
559 |
catch { |
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
560 |
case exn: Graph.Cycles[_] => |
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
561 |
error(cat_lines(exn.cycles.map(cycle => |
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
562 |
"Cyclic session dependency of " + |
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
563 |
cycle.map(c => quote(c.toString)).mkString(" via "))) + Position.here(pos)) |
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
564 |
} |
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
565 |
} |
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
566 |
(graph /: graph.iterator) { |
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
567 |
case (g, (name, (info, _))) => (g /: edges(info))(add_edge(info.pos, name, _, _)) |
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
568 |
} |
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
569 |
} |
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
570 |
|
70671
cb1776c8e216
clarified signature: retain global session information, unaffected by later restriction;
wenzelm
parents:
70668
diff
changeset
|
571 |
val info_graph = |
65415
8cd54b18b68b
clarified signature: tree structure is not essential;
wenzelm
parents:
65410
diff
changeset
|
572 |
(Graph.string[Info] /: infos) { |
66960 | 573 |
case (graph, info) => |
574 |
if (graph.defined(info.name)) |
|
575 |
error("Duplicate session " + quote(info.name) + Position.here(info.pos) + |
|
576 |
Position.here(graph.get_node(info.name).pos)) |
|
577 |
else graph.new_node(info.name, info) |
|
65415
8cd54b18b68b
clarified signature: tree structure is not essential;
wenzelm
parents:
65410
diff
changeset
|
578 |
} |
70671
cb1776c8e216
clarified signature: retain global session information, unaffected by later restriction;
wenzelm
parents:
70668
diff
changeset
|
579 |
val build_graph = add_edges(info_graph, "parent", _.parent) |
cb1776c8e216
clarified signature: retain global session information, unaffected by later restriction;
wenzelm
parents:
70668
diff
changeset
|
580 |
val imports_graph = add_edges(build_graph, "imports", _.imports) |
62631 | 581 |
|
70683
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70681
diff
changeset
|
582 |
val session_positions: List[(String, Position.T)] = |
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70681
diff
changeset
|
583 |
(for ((name, (info, _)) <- info_graph.iterator) yield (name, info.pos)).toList |
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70681
diff
changeset
|
584 |
|
70681 | 585 |
val session_directories: Map[JFile, String] = |
586 |
(Map.empty[JFile, String] /: |
|
70671
cb1776c8e216
clarified signature: retain global session information, unaffected by later restriction;
wenzelm
parents:
70668
diff
changeset
|
587 |
(for { |
cb1776c8e216
clarified signature: retain global session information, unaffected by later restriction;
wenzelm
parents:
70668
diff
changeset
|
588 |
session <- imports_graph.topological_order.iterator |
cb1776c8e216
clarified signature: retain global session information, unaffected by later restriction;
wenzelm
parents:
70668
diff
changeset
|
589 |
info = info_graph.get_node(session) |
70681 | 590 |
dir <- info.dirs.iterator |
591 |
} yield (info, dir)))({ case (dirs, (info, dir)) => |
|
70671
cb1776c8e216
clarified signature: retain global session information, unaffected by later restriction;
wenzelm
parents:
70668
diff
changeset
|
592 |
val session = info.name |
cb1776c8e216
clarified signature: retain global session information, unaffected by later restriction;
wenzelm
parents:
70668
diff
changeset
|
593 |
val canonical_dir = dir.canonical_file |
cb1776c8e216
clarified signature: retain global session information, unaffected by later restriction;
wenzelm
parents:
70668
diff
changeset
|
594 |
dirs.get(canonical_dir) match { |
70684
60b1eda998f3
disallow accidental duplicates within the same session specification -- proper total match;
wenzelm
parents:
70683
diff
changeset
|
595 |
case Some(session1) => |
70681 | 596 |
val info1 = info_graph.get_node(session1) |
597 |
error("Duplicate use of directory " + dir + |
|
598 |
"\n for session " + quote(session1) + Position.here(info1.pos) + |
|
599 |
"\n vs. session " + quote(session) + Position.here(info.pos)) |
|
600 |
case None => dirs + (canonical_dir -> session) |
|
70671
cb1776c8e216
clarified signature: retain global session information, unaffected by later restriction;
wenzelm
parents:
70668
diff
changeset
|
601 |
} |
cb1776c8e216
clarified signature: retain global session information, unaffected by later restriction;
wenzelm
parents:
70668
diff
changeset
|
602 |
}) |
cb1776c8e216
clarified signature: retain global session information, unaffected by later restriction;
wenzelm
parents:
70668
diff
changeset
|
603 |
|
cb1776c8e216
clarified signature: retain global session information, unaffected by later restriction;
wenzelm
parents:
70668
diff
changeset
|
604 |
val global_theories: Map[String, String] = |
cb1776c8e216
clarified signature: retain global session information, unaffected by later restriction;
wenzelm
parents:
70668
diff
changeset
|
605 |
(Thy_Header.bootstrap_global_theories.toMap /: |
cb1776c8e216
clarified signature: retain global session information, unaffected by later restriction;
wenzelm
parents:
70668
diff
changeset
|
606 |
(for { |
cb1776c8e216
clarified signature: retain global session information, unaffected by later restriction;
wenzelm
parents:
70668
diff
changeset
|
607 |
session <- imports_graph.topological_order.iterator |
cb1776c8e216
clarified signature: retain global session information, unaffected by later restriction;
wenzelm
parents:
70668
diff
changeset
|
608 |
info = info_graph.get_node(session) |
cb1776c8e216
clarified signature: retain global session information, unaffected by later restriction;
wenzelm
parents:
70668
diff
changeset
|
609 |
thy <- info.global_theories.iterator } |
cb1776c8e216
clarified signature: retain global session information, unaffected by later restriction;
wenzelm
parents:
70668
diff
changeset
|
610 |
yield (info, thy)))({ case (global, (info, thy)) => |
cb1776c8e216
clarified signature: retain global session information, unaffected by later restriction;
wenzelm
parents:
70668
diff
changeset
|
611 |
val qualifier = info.name |
cb1776c8e216
clarified signature: retain global session information, unaffected by later restriction;
wenzelm
parents:
70668
diff
changeset
|
612 |
global.get(thy) match { |
cb1776c8e216
clarified signature: retain global session information, unaffected by later restriction;
wenzelm
parents:
70668
diff
changeset
|
613 |
case Some(qualifier1) if qualifier != qualifier1 => |
cb1776c8e216
clarified signature: retain global session information, unaffected by later restriction;
wenzelm
parents:
70668
diff
changeset
|
614 |
error("Duplicate global theory " + quote(thy) + Position.here(info.pos)) |
cb1776c8e216
clarified signature: retain global session information, unaffected by later restriction;
wenzelm
parents:
70668
diff
changeset
|
615 |
case _ => global + (thy -> qualifier) |
cb1776c8e216
clarified signature: retain global session information, unaffected by later restriction;
wenzelm
parents:
70668
diff
changeset
|
616 |
} |
cb1776c8e216
clarified signature: retain global session information, unaffected by later restriction;
wenzelm
parents:
70668
diff
changeset
|
617 |
}) |
cb1776c8e216
clarified signature: retain global session information, unaffected by later restriction;
wenzelm
parents:
70668
diff
changeset
|
618 |
|
70683
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70681
diff
changeset
|
619 |
new Structure( |
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70681
diff
changeset
|
620 |
session_positions, session_directories, global_theories, build_graph, imports_graph) |
62631 | 621 |
} |
622 |
||
67052 | 623 |
final class Structure private[Sessions]( |
70683
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70681
diff
changeset
|
624 |
val session_positions: List[(String, Position.T)], |
70681 | 625 |
val session_directories: Map[JFile, String], |
70671
cb1776c8e216
clarified signature: retain global session information, unaffected by later restriction;
wenzelm
parents:
70668
diff
changeset
|
626 |
val global_theories: Map[String, String], |
65420
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
627 |
val build_graph: Graph[String, Info], |
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
628 |
val imports_graph: Graph[String, Info]) |
62631 | 629 |
{ |
69524
fa94f2b2a877
clarified sessions_deps, according to Isabelle/MMT usage;
wenzelm
parents:
69393
diff
changeset
|
630 |
sessions_structure => |
fa94f2b2a877
clarified sessions_deps, according to Isabelle/MMT usage;
wenzelm
parents:
69393
diff
changeset
|
631 |
|
70683
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70681
diff
changeset
|
632 |
def dest_session_directories: List[(String, String)] = |
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70681
diff
changeset
|
633 |
for ((file, session) <- session_directories.toList) |
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70681
diff
changeset
|
634 |
yield (File.standard_path(file), session) |
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70681
diff
changeset
|
635 |
|
69762
58fb0d779583
support for session information via virtual file-system;
wenzelm
parents:
69671
diff
changeset
|
636 |
lazy val chapters: SortedMap[String, List[Info]] = |
58fb0d779583
support for session information via virtual file-system;
wenzelm
parents:
69671
diff
changeset
|
637 |
(SortedMap.empty[String, List[Info]] /: build_graph.iterator)( |
58fb0d779583
support for session information via virtual file-system;
wenzelm
parents:
69671
diff
changeset
|
638 |
{ case (chs, (_, (info, _))) => |
58fb0d779583
support for session information via virtual file-system;
wenzelm
parents:
69671
diff
changeset
|
639 |
chs + (info.chapter -> (info :: chs.getOrElse(info.chapter, Nil))) }) |
58fb0d779583
support for session information via virtual file-system;
wenzelm
parents:
69671
diff
changeset
|
640 |
|
66823 | 641 |
def build_graph_display: Graph_Display.Graph = Graph_Display.make_graph(build_graph) |
642 |
def imports_graph_display: Graph_Display.Graph = Graph_Display.make_graph(imports_graph) |
|
643 |
||
67025
961285f581e6
clarifified selection: always wrt. build_graph structure;
wenzelm
parents:
67024
diff
changeset
|
644 |
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
|
645 |
def apply(name: String): Info = imports_graph.get_node(name) |
67025
961285f581e6
clarifified selection: always wrt. build_graph structure;
wenzelm
parents:
67024
diff
changeset
|
646 |
def get(name: String): Option[Info] = if (defined(name)) Some(apply(name)) else None |
62631 | 647 |
|
70859
6e6254bbce1f
split into standard partitions, for improved scalability;
wenzelm
parents:
70796
diff
changeset
|
648 |
def theory_qualifier(name: String): String = |
6e6254bbce1f
split into standard partitions, for improved scalability;
wenzelm
parents:
70796
diff
changeset
|
649 |
global_theories.getOrElse(name, Long_Name.qualifier(name)) |
6e6254bbce1f
split into standard partitions, for improved scalability;
wenzelm
parents:
70796
diff
changeset
|
650 |
|
68542 | 651 |
def check_sessions(names: List[String]) |
652 |
{ |
|
71601 | 653 |
val bad_sessions = SortedSet(names.filterNot(defined): _*).toList |
68542 | 654 |
if (bad_sessions.nonEmpty) |
655 |
error("Undefined session(s): " + commas_quote(bad_sessions)) |
|
656 |
} |
|
657 |
||
68733 | 658 |
def check_sessions(sel: Selection): Unit = |
659 |
check_sessions(sel.base_sessions ::: sel.exclude_sessions ::: sel.sessions) |
|
660 |
||
68732 | 661 |
private def selected(graph: Graph[String, Info], sel: Selection): List[String] = |
662 |
{ |
|
68733 | 663 |
check_sessions(sel) |
664 |
||
68732 | 665 |
val select_group = sel.session_groups.toSet |
68734
c14a2cc9b5ef
isabelle build options -c -x -B refer to imports_graph;
wenzelm
parents:
68733
diff
changeset
|
666 |
val select_session = sel.sessions.toSet ++ imports_graph.all_succs(sel.base_sessions) |
68732 | 667 |
|
668 |
val selected0 = |
|
669 |
if (sel.all_sessions) graph.keys |
|
670 |
else { |
|
671 |
(for { |
|
672 |
(name, (info, _)) <- graph.iterator |
|
673 |
if info.dir_selected || select_session(name) || |
|
674 |
graph.get_node(name).groups.exists(select_group) |
|
675 |
} yield name).toList |
|
676 |
} |
|
677 |
||
678 |
if (sel.requirements) (graph.all_preds(selected0).toSet -- selected0).toList |
|
679 |
else selected0 |
|
680 |
} |
|
681 |
||
67052 | 682 |
def selection(sel: Selection): Structure = |
62631 | 683 |
{ |
68733 | 684 |
check_sessions(sel) |
67025
961285f581e6
clarifified selection: always wrt. build_graph structure;
wenzelm
parents:
67024
diff
changeset
|
685 |
|
68732 | 686 |
val excluded = |
687 |
{ |
|
688 |
val exclude_group = sel.exclude_session_groups.toSet |
|
689 |
val exclude_group_sessions = |
|
690 |
(for { |
|
68734
c14a2cc9b5ef
isabelle build options -c -x -B refer to imports_graph;
wenzelm
parents:
68733
diff
changeset
|
691 |
(name, (info, _)) <- imports_graph.iterator |
c14a2cc9b5ef
isabelle build options -c -x -B refer to imports_graph;
wenzelm
parents:
68733
diff
changeset
|
692 |
if imports_graph.get_node(name).groups.exists(exclude_group) |
68732 | 693 |
} yield name).toList |
68734
c14a2cc9b5ef
isabelle build options -c -x -B refer to imports_graph;
wenzelm
parents:
68733
diff
changeset
|
694 |
imports_graph.all_succs(exclude_group_sessions ::: sel.exclude_sessions).toSet |
68732 | 695 |
} |
67027 | 696 |
|
67025
961285f581e6
clarifified selection: always wrt. build_graph structure;
wenzelm
parents:
67024
diff
changeset
|
697 |
def restrict(graph: Graph[String, Info]): Graph[String, Info] = |
961285f581e6
clarifified selection: always wrt. build_graph structure;
wenzelm
parents:
67024
diff
changeset
|
698 |
{ |
68732 | 699 |
val sessions = graph.all_preds(selected(graph, sel)).filterNot(excluded) |
67029 | 700 |
graph.restrict(graph.all_preds(sessions).toSet) |
67025
961285f581e6
clarifified selection: always wrt. build_graph structure;
wenzelm
parents:
67024
diff
changeset
|
701 |
} |
961285f581e6
clarifified selection: always wrt. build_graph structure;
wenzelm
parents:
67024
diff
changeset
|
702 |
|
70671
cb1776c8e216
clarified signature: retain global session information, unaffected by later restriction;
wenzelm
parents:
70668
diff
changeset
|
703 |
new Structure( |
70683
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70681
diff
changeset
|
704 |
session_positions, session_directories, global_theories, |
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70681
diff
changeset
|
705 |
restrict(build_graph), restrict(imports_graph)) |
62631 | 706 |
} |
707 |
||
69524
fa94f2b2a877
clarified sessions_deps, according to Isabelle/MMT usage;
wenzelm
parents:
69393
diff
changeset
|
708 |
def selection_deps( |
fa94f2b2a877
clarified sessions_deps, according to Isabelle/MMT usage;
wenzelm
parents:
69393
diff
changeset
|
709 |
options: Options, |
fa94f2b2a877
clarified sessions_deps, according to Isabelle/MMT usage;
wenzelm
parents:
69393
diff
changeset
|
710 |
selection: Selection, |
71726
a5fda30edae2
clarified signature: more uniform treatment of stopped/interrupted state;
wenzelm
parents:
71642
diff
changeset
|
711 |
progress: Progress = new Progress, |
69524
fa94f2b2a877
clarified sessions_deps, according to Isabelle/MMT usage;
wenzelm
parents:
69393
diff
changeset
|
712 |
loading_sessions: Boolean = false, |
68304 | 713 |
inlined_files: Boolean = false, |
714 |
verbose: Boolean = false): Deps = |
|
715 |
{ |
|
69524
fa94f2b2a877
clarified sessions_deps, according to Isabelle/MMT usage;
wenzelm
parents:
69393
diff
changeset
|
716 |
val deps = |
70869 | 717 |
Sessions.deps(sessions_structure.selection(selection), |
69524
fa94f2b2a877
clarified sessions_deps, according to Isabelle/MMT usage;
wenzelm
parents:
69393
diff
changeset
|
718 |
progress = progress, inlined_files = inlined_files, verbose = verbose) |
fa94f2b2a877
clarified sessions_deps, according to Isabelle/MMT usage;
wenzelm
parents:
69393
diff
changeset
|
719 |
|
fa94f2b2a877
clarified sessions_deps, according to Isabelle/MMT usage;
wenzelm
parents:
69393
diff
changeset
|
720 |
if (loading_sessions) { |
fa94f2b2a877
clarified sessions_deps, according to Isabelle/MMT usage;
wenzelm
parents:
69393
diff
changeset
|
721 |
val selection_size = deps.sessions_structure.build_graph.size |
fa94f2b2a877
clarified sessions_deps, according to Isabelle/MMT usage;
wenzelm
parents:
69393
diff
changeset
|
722 |
if (selection_size > 1) progress.echo("Loading " + selection_size + " sessions ...") |
fa94f2b2a877
clarified sessions_deps, according to Isabelle/MMT usage;
wenzelm
parents:
69393
diff
changeset
|
723 |
} |
fa94f2b2a877
clarified sessions_deps, according to Isabelle/MMT usage;
wenzelm
parents:
69393
diff
changeset
|
724 |
|
fa94f2b2a877
clarified sessions_deps, according to Isabelle/MMT usage;
wenzelm
parents:
69393
diff
changeset
|
725 |
deps |
68304 | 726 |
} |
727 |
||
68732 | 728 |
def build_selection(sel: Selection): List[String] = selected(build_graph, sel) |
67029 | 729 |
def build_descendants(ss: List[String]): List[String] = build_graph.all_succs(ss) |
730 |
def build_requirements(ss: List[String]): List[String] = build_graph.all_preds(ss).reverse |
|
731 |
def build_topological_order: List[String] = build_graph.topological_order |
|
62631 | 732 |
|
68732 | 733 |
def imports_selection(sel: Selection): List[String] = selected(imports_graph, sel) |
67029 | 734 |
def imports_descendants(ss: List[String]): List[String] = imports_graph.all_succs(ss) |
735 |
def imports_requirements(ss: List[String]): List[String] = imports_graph.all_preds(ss).reverse |
|
736 |
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
|
737 |
|
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
738 |
override def toString: String = |
67052 | 739 |
imports_graph.keys_iterator.mkString("Sessions.Structure(", ", ", ")") |
62631 | 740 |
} |
741 |
||
742 |
||
743 |
/* parser */ |
|
744 |
||
71601 | 745 |
val ROOT: Path = Path.explode("ROOT") |
746 |
val ROOTS: Path = Path.explode("ROOTS") |
|
62864 | 747 |
|
62631 | 748 |
private val CHAPTER = "chapter" |
749 |
private val SESSION = "session" |
|
750 |
private val IN = "in" |
|
751 |
private val DESCRIPTION = "description" |
|
70668 | 752 |
private val DIRECTORIES = "directories" |
62631 | 753 |
private val OPTIONS = "options" |
65420
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
754 |
private val SESSIONS = "sessions" |
62631 | 755 |
private val THEORIES = "theories" |
65374 | 756 |
private val GLOBAL = "global" |
62631 | 757 |
private val DOCUMENT_FILES = "document_files" |
68292 | 758 |
private val EXPORT_FILES = "export_files" |
62631 | 759 |
|
71601 | 760 |
val root_syntax: Outer_Syntax = |
70668 | 761 |
Outer_Syntax.empty + "(" + ")" + "+" + "," + "=" + "[" + "]" + |
70681 | 762 |
GLOBAL + IN + |
63443 | 763 |
(CHAPTER, Keyword.THY_DECL) + |
764 |
(SESSION, Keyword.THY_DECL) + |
|
765 |
(DESCRIPTION, Keyword.QUASI_COMMAND) + |
|
70668 | 766 |
(DIRECTORIES, Keyword.QUASI_COMMAND) + |
63443 | 767 |
(OPTIONS, Keyword.QUASI_COMMAND) + |
65420
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
768 |
(SESSIONS, Keyword.QUASI_COMMAND) + |
63443 | 769 |
(THEORIES, Keyword.QUASI_COMMAND) + |
68292 | 770 |
(DOCUMENT_FILES, Keyword.QUASI_COMMAND) + |
771 |
(EXPORT_FILES, Keyword.QUASI_COMMAND) |
|
62631 | 772 |
|
66818
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
773 |
abstract class Entry |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
774 |
sealed case class Chapter(name: String) extends Entry |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
775 |
sealed case class Session_Entry( |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
776 |
pos: Position.T, |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
777 |
name: String, |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
778 |
groups: List[String], |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
779 |
path: String, |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
780 |
parent: Option[String], |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
781 |
description: String, |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
782 |
options: List[Options.Spec], |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
783 |
imports: List[String], |
70681 | 784 |
directories: List[String], |
66818
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
785 |
theories: List[(List[Options.Spec], List[((String, Position.T), Boolean)])], |
68292 | 786 |
document_files: List[(String, String)], |
69671 | 787 |
export_files: List[(String, Int, List[String])]) extends Entry |
66818
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
788 |
{ |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
789 |
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
|
790 |
theories.map({ case (a, b) => (a, b.map({ case ((c, _), d) => (c, d) })) }) |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
791 |
} |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
792 |
|
68841 | 793 |
private object Parser extends Options.Parser |
62631 | 794 |
{ |
795 |
private val chapter: Parser[Chapter] = |
|
796 |
{ |
|
797 |
val chapter_name = atom("chapter name", _.is_name) |
|
798 |
||
799 |
command(CHAPTER) ~! chapter_name ^^ { case _ ~ a => Chapter(a) } |
|
800 |
} |
|
801 |
||
802 |
private val session_entry: Parser[Session_Entry] = |
|
803 |
{ |
|
804 |
val option = |
|
67210 | 805 |
option_name ~ opt($$$("=") ~! option_value ^^ { case _ ~ x => x }) ^^ |
806 |
{ case x ~ y => (x, y) } |
|
62631 | 807 |
val options = $$$("[") ~> rep1sep(option, $$$(",")) <~ $$$("]") |
808 |
||
65374 | 809 |
val theory_entry = |
70668 | 810 |
position(theory_name) ~ opt_keyword(GLOBAL) ^^ { case x ~ y => (x, y) } |
65374 | 811 |
|
62631 | 812 |
val theories = |
65374 | 813 |
$$$(THEORIES) ~! |
66970
13857f49d215
clarified ROOT syntax: 'sessions' and 'theories' are optional, but need to be non-empty;
wenzelm
parents:
66969
diff
changeset
|
814 |
((options | success(Nil)) ~ rep1(theory_entry)) ^^ |
65374 | 815 |
{ case _ ~ (x ~ y) => (x, y) } |
62631 | 816 |
|
68292 | 817 |
val in_path = $$$("(") ~! ($$$(IN) ~ path ~ $$$(")")) ^^ { case _ ~ (_ ~ x ~ _) => x } |
818 |
||
62631 | 819 |
val document_files = |
820 |
$$$(DOCUMENT_FILES) ~! |
|
68292 | 821 |
((in_path | success("document")) ~ rep1(path)) ^^ { case _ ~ (x ~ y) => y.map((x, _)) } |
822 |
||
69671 | 823 |
val prune = $$$("[") ~! (nat ~ $$$("]")) ^^ { case _ ~ (x ~ _) => x } | success(0) |
824 |
||
68292 | 825 |
val export_files = |
69671 | 826 |
$$$(EXPORT_FILES) ~! ((in_path | success("export")) ~ prune ~ rep1(embedded)) ^^ |
827 |
{ case _ ~ (x ~ y ~ z) => (x, y, z) } |
|
62631 | 828 |
|
829 |
command(SESSION) ~! |
|
830 |
(position(session_name) ~ |
|
831 |
(($$$("(") ~! (rep1(name) <~ $$$(")")) ^^ { case _ ~ x => x }) | success(Nil)) ~ |
|
832 |
(($$$(IN) ~! path ^^ { case _ ~ x => x }) | success(".")) ~ |
|
833 |
($$$("=") ~! |
|
834 |
(opt(session_name ~! $$$("+") ^^ { case x ~ _ => x }) ~ |
|
835 |
(($$$(DESCRIPTION) ~! text ^^ { case _ ~ x => x }) | success("")) ~ |
|
836 |
(($$$(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
|
837 |
(($$$(SESSIONS) ~! rep1(session_name) ^^ { case _ ~ x => x }) | success(Nil)) ~ |
70681 | 838 |
(($$$(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
|
839 |
rep(theories) ~ |
68292 | 840 |
(rep(document_files) ^^ (x => x.flatten)) ~ |
841 |
(rep(export_files))))) ^^ |
|
70668 | 842 |
{ case _ ~ ((a, pos) ~ b ~ c ~ (_ ~ (d ~ e ~ f ~ g ~ h ~ i ~ j ~ k))) => |
843 |
Session_Entry(pos, a, b, c, d, e, f, g, h, i, j, k) } |
|
62631 | 844 |
} |
845 |
||
66819 | 846 |
def parse_root(path: Path): List[Entry] = |
62631 | 847 |
{ |
66764
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
848 |
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
|
849 |
val start = Token.Pos.file(path.implode) |
62631 | 850 |
|
66764
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
851 |
parse_all(rep(chapter | session_entry), Token.reader(toks, start)) match { |
66818
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
852 |
case Success(result, _) => result |
66764
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
853 |
case bad => error(bad.toString) |
62631 | 854 |
} |
855 |
} |
|
856 |
} |
|
857 |
||
66819 | 858 |
def parse_root(path: Path): List[Entry] = Parser.parse_root(path) |
859 |
||
860 |
def parse_root_entries(path: Path): List[Session_Entry] = |
|
861 |
for (entry <- Parser.parse_root(path) if entry.isInstanceOf[Session_Entry]) |
|
862 |
yield entry.asInstanceOf[Session_Entry] |
|
66818
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
863 |
|
66960 | 864 |
def read_root(options: Options, select: Boolean, path: Path): List[Info] = |
66818
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
865 |
{ |
69762
58fb0d779583
support for session information via virtual file-system;
wenzelm
parents:
69671
diff
changeset
|
866 |
var entry_chapter = UNSORTED |
66960 | 867 |
val infos = new mutable.ListBuffer[Info] |
66819 | 868 |
parse_root(path).foreach { |
66818
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
869 |
case Chapter(name) => entry_chapter = name |
66967
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
870 |
case entry: Session_Entry => |
e365c91c72a9
synthesize session with all required theories from other session imports;
wenzelm
parents:
66966
diff
changeset
|
871 |
infos += make_info(options, select, path.dir, entry_chapter, entry) |
66818
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
872 |
} |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
873 |
infos.toList |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
874 |
} |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
875 |
|
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
876 |
def parse_roots(roots: Path): List[String] = |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
877 |
{ |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
878 |
for { |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
879 |
line <- split_lines(File.read(roots)) |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
880 |
if !(line == "" || line.startsWith("#")) |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
881 |
} yield line |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
882 |
} |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
883 |
|
62631 | 884 |
|
62635 | 885 |
/* load sessions from certain directories */ |
62631 | 886 |
|
887 |
private def is_session_dir(dir: Path): Boolean = |
|
888 |
(dir + ROOT).is_file || (dir + ROOTS).is_file |
|
889 |
||
890 |
private 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
|
891 |
if (is_session_dir(dir)) File.pwd() + dir.expand |
62631 | 892 |
else error("Bad session root directory: " + dir.toString) |
893 |
||
65561 | 894 |
def directories(dirs: List[Path], select_dirs: List[Path]): List[(Boolean, Path)] = |
895 |
{ |
|
71601 | 896 |
val default_dirs = Isabelle_System.components().filter(is_session_dir) |
68746
f95e2f145ea5
canonical session directories in correspondence to Known.files;
wenzelm
parents:
68734
diff
changeset
|
897 |
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
|
898 |
yield (select, dir.canonical) |
65561 | 899 |
} |
900 |
||
67026 | 901 |
def load_structure(options: Options, |
66968
9991671c98aa
allow to augment session context via explicit session infos;
wenzelm
parents:
66967
diff
changeset
|
902 |
dirs: List[Path] = Nil, |
9991671c98aa
allow to augment session context via explicit session infos;
wenzelm
parents:
66967
diff
changeset
|
903 |
select_dirs: List[Path] = Nil, |
67052 | 904 |
infos: List[Info] = Nil): Structure = |
62631 | 905 |
{ |
66764
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
906 |
def load_dir(select: Boolean, dir: Path): List[(Boolean, Path)] = |
62635 | 907 |
load_root(select, dir) ::: load_roots(select, dir) |
62631 | 908 |
|
66764
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
909 |
def load_root(select: Boolean, dir: Path): List[(Boolean, Path)] = |
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
910 |
{ |
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
911 |
val root = dir + ROOT |
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
912 |
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
|
913 |
} |
62631 | 914 |
|
66764
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
915 |
def load_roots(select: Boolean, dir: Path): List[(Boolean, Path)] = |
62631 | 916 |
{ |
917 |
val roots = dir + ROOTS |
|
918 |
if (roots.is_file) { |
|
919 |
for { |
|
66818
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
920 |
entry <- parse_roots(roots) |
62631 | 921 |
dir1 = |
66818
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
922 |
try { check_session_dir(dir + Path.explode(entry)) } |
62631 | 923 |
catch { |
924 |
case ERROR(msg) => |
|
925 |
error(msg + "\nThe error(s) above occurred in session catalog " + roots.toString) |
|
926 |
} |
|
66764
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
927 |
res <- load_dir(select, dir1) |
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
928 |
} yield res |
62631 | 929 |
} |
930 |
else Nil |
|
931 |
} |
|
932 |
||
66764
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
933 |
val roots = |
62631 | 934 |
for { |
65561 | 935 |
(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
|
936 |
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
|
937 |
} yield res |
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
938 |
|
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
939 |
val unique_roots = |
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
940 |
((Map.empty[JFile, (Boolean, Path)] /: roots) { case (m, (select, path)) => |
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
941 |
val file = path.canonical_file |
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
942 |
m.get(file) match { |
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
943 |
case None => m + (file -> (select, path)) |
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
944 |
case Some((select1, path1)) => m + (file -> (select1 || select, path1)) |
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
945 |
} |
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
946 |
}).toList.map(_._2) |
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
947 |
|
66968
9991671c98aa
allow to augment session context via explicit session infos;
wenzelm
parents:
66967
diff
changeset
|
948 |
make(unique_roots.flatMap(p => read_root(options, p._1, p._2)) ::: infos) |
62631 | 949 |
} |
62632 | 950 |
|
951 |
||
62637
0189fe0f6452
support for Poly/ML heap hierarchy, which saves a lot of disk space;
wenzelm
parents:
62636
diff
changeset
|
952 |
|
62704
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
953 |
/** 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
|
954 |
|
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
955 |
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
|
956 |
|
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
957 |
def read_heap_digest(heap: Path): Option[String] = |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
958 |
{ |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
959 |
if (heap.is_file) { |
69393
ed0824ef337e
static type for Library.using: avoid Java 11 warnings on "Illegal reflective access";
wenzelm
parents:
69366
diff
changeset
|
960 |
using(FileChannel.open(heap.file.toPath, StandardOpenOption.READ))(file => |
ed0824ef337e
static type for Library.using: avoid Java 11 warnings on "Illegal reflective access";
wenzelm
parents:
69366
diff
changeset
|
961 |
{ |
62704
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
962 |
val len = file.size |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
963 |
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
|
964 |
if (len >= n) { |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
965 |
file.position(len - n) |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
966 |
|
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
967 |
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
|
968 |
var i = 0 |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
969 |
var m = 0 |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
970 |
do { |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
971 |
m = file.read(buf) |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
972 |
if (m != -1) i += m |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
973 |
} |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
974 |
while (m != -1 && n > i) |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
975 |
|
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
976 |
if (i == n) { |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
977 |
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
|
978 |
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
|
979 |
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
|
980 |
} |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
981 |
else None |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
982 |
} |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
983 |
else None |
69393
ed0824ef337e
static type for Library.using: avoid Java 11 warnings on "Illegal reflective access";
wenzelm
parents:
69366
diff
changeset
|
984 |
}) |
62704
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
985 |
} |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
986 |
else None |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
987 |
} |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
988 |
|
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
989 |
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
|
990 |
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
|
991 |
case None => |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
992 |
val s = SHA1.digest(heap).rep |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
993 |
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
|
994 |
s |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
995 |
case Some(s) => s |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
996 |
} |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
997 |
|
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
998 |
|
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
999 |
|
62637
0189fe0f6452
support for Poly/ML heap hierarchy, which saves a lot of disk space;
wenzelm
parents:
62636
diff
changeset
|
1000 |
/** persistent store **/ |
62632 | 1001 |
|
65296 | 1002 |
object Session_Info |
1003 |
{ |
|
66857 | 1004 |
val session_name = SQL.Column.string("session_name").make_primary_key |
65326 | 1005 |
|
65296 | 1006 |
// Build_Log.Session_Info |
1007 |
val session_timing = SQL.Column.bytes("session_timing") |
|
1008 |
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
|
1009 |
val theory_timings = SQL.Column.bytes("theory_timings") |
65296 | 1010 |
val ml_statistics = SQL.Column.bytes("ml_statistics") |
1011 |
val task_statistics = SQL.Column.bytes("task_statistics") |
|
65934 | 1012 |
val errors = SQL.Column.bytes("errors") |
65296 | 1013 |
val build_log_columns = |
66873
9953ae603a23
provide theory timing information, similar to command timing but always considered relevant;
wenzelm
parents:
66857
diff
changeset
|
1014 |
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
|
1015 |
ml_statistics, task_statistics, errors) |
65296 | 1016 |
|
1017 |
// Build.Session_Info |
|
1018 |
val sources = SQL.Column.string("sources") |
|
1019 |
val input_heaps = SQL.Column.string("input_heaps") |
|
1020 |
val output_heap = SQL.Column.string("output_heap") |
|
1021 |
val return_code = SQL.Column.int("return_code") |
|
66746 | 1022 |
val build_columns = List(sources, input_heaps, output_heap, return_code) |
65296 | 1023 |
|
1024 |
val table = SQL.Table("isabelle_session_info", build_log_columns ::: build_columns) |
|
1025 |
} |
|
1026 |
||
69854
cc0b3e177b49
system option "system_heaps" supersedes various command-line options for "system build mode";
wenzelm
parents:
69812
diff
changeset
|
1027 |
def store(options: Options): Store = new Store(options) |
62632 | 1028 |
|
69854
cc0b3e177b49
system option "system_heaps" supersedes various command-line options for "system build mode";
wenzelm
parents:
69812
diff
changeset
|
1029 |
class Store private[Sessions](val options: Options) |
62632 | 1030 |
{ |
68219 | 1031 |
override def toString: String = "Store(output_dir = " + output_dir.expand + ")" |
1032 |
||
1033 |
||
1034 |
/* directories */ |
|
1035 |
||
68523
ccacc84e0251
clarified settings -- avoid hard-wired directories;
wenzelm
parents:
68483
diff
changeset
|
1036 |
val system_output_dir: Path = Path.explode("$ISABELLE_HEAPS_SYSTEM/$ML_IDENTIFIER") |
ccacc84e0251
clarified settings -- avoid hard-wired directories;
wenzelm
parents:
68483
diff
changeset
|
1037 |
val user_output_dir: Path = Path.explode("$ISABELLE_HEAPS/$ML_IDENTIFIER") |
68219 | 1038 |
|
69854
cc0b3e177b49
system option "system_heaps" supersedes various command-line options for "system build mode";
wenzelm
parents:
69812
diff
changeset
|
1039 |
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
|
1040 |
|
68221 | 1041 |
val output_dir: Path = |
69854
cc0b3e177b49
system option "system_heaps" supersedes various command-line options for "system build mode";
wenzelm
parents:
69812
diff
changeset
|
1042 |
if (system_heaps) system_output_dir else user_output_dir |
68219 | 1043 |
|
68221 | 1044 |
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
|
1045 |
if (system_heaps) List(system_output_dir) |
68219 | 1046 |
else List(user_output_dir, system_output_dir) |
62632 | 1047 |
|
1048 |
val browser_info: Path = |
|
69854
cc0b3e177b49
system option "system_heaps" supersedes various command-line options for "system build mode";
wenzelm
parents:
69812
diff
changeset
|
1049 |
if (system_heaps) Path.explode("$ISABELLE_BROWSER_INFO_SYSTEM") |
62632 | 1050 |
else Path.explode("$ISABELLE_BROWSER_INFO") |
1051 |
||
62637
0189fe0f6452
support for Poly/ML heap hierarchy, which saves a lot of disk space;
wenzelm
parents:
62636
diff
changeset
|
1052 |
|
68221 | 1053 |
/* file names */ |
65298 | 1054 |
|
68221 | 1055 |
def heap(name: String): Path = Path.basic(name) |
1056 |
def database(name: String): Path = Path.basic("log") + Path.basic(name).ext("db") |
|
1057 |
def log(name: String): Path = Path.basic("log") + Path.basic(name) |
|
1058 |
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
|
1059 |
|
68221 | 1060 |
def output_heap(name: String): Path = output_dir + heap(name) |
1061 |
def output_database(name: String): Path = output_dir + database(name) |
|
68086
9e1c670301b8
cleanup session output before starting build job;
wenzelm
parents:
68018
diff
changeset
|
1062 |
def output_log(name: String): Path = output_dir + log(name) |
9e1c670301b8
cleanup session output before starting build job;
wenzelm
parents:
68018
diff
changeset
|
1063 |
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
|
1064 |
|
68221 | 1065 |
def prepare_output_dir() { Isabelle_System.mkdirs(output_dir + Path.basic("log")) } |
68220
8fc4e3d1df86
clarified store.clean_output: cleanup user_output_dir even in system_mode;
wenzelm
parents:
68219
diff
changeset
|
1066 |
|
62637
0189fe0f6452
support for Poly/ML heap hierarchy, which saves a lot of disk space;
wenzelm
parents:
62636
diff
changeset
|
1067 |
|
68221 | 1068 |
/* heap */ |
62637
0189fe0f6452
support for Poly/ML heap hierarchy, which saves a lot of disk space;
wenzelm
parents:
62636
diff
changeset
|
1069 |
|
68212
5a59fded83c7
clarified heap vs. database operations: discontinued correlation of directory;
wenzelm
parents:
68210
diff
changeset
|
1070 |
def find_heap(name: String): Option[Path] = |
68221 | 1071 |
input_dirs.map(_ + heap(name)).find(_.is_file) |
68212
5a59fded83c7
clarified heap vs. database operations: discontinued correlation of directory;
wenzelm
parents:
68210
diff
changeset
|
1072 |
|
5a59fded83c7
clarified heap vs. database operations: discontinued correlation of directory;
wenzelm
parents:
68210
diff
changeset
|
1073 |
def find_heap_digest(name: String): Option[String] = |
71601 | 1074 |
find_heap(name).flatMap(read_heap_digest) |
62632 | 1075 |
|
68221 | 1076 |
def the_heap(name: String): Path = |
1077 |
find_heap(name) getOrElse |
|
1078 |
error("Missing heap image for session " + quote(name) + " -- expected in:\n" + |
|
1079 |
cat_lines(input_dirs.map(dir => " " + dir.expand.implode))) |
|
1080 |
||
1081 |
||
1082 |
/* database */ |
|
1083 |
||
1084 |
private def database_server: Boolean = options.bool("build_database_server") |
|
65281
c70e7d24a16d
SQL database operations for combined session info;
wenzelm
parents:
65278
diff
changeset
|
1085 |
|
68221 | 1086 |
def access_database(name: String, output: Boolean = false): Option[SQL.Database] = |
1087 |
{ |
|
1088 |
if (database_server) { |
|
1089 |
val db = |
|
1090 |
PostgreSQL.open_database( |
|
1091 |
user = options.string("build_database_user"), |
|
1092 |
password = options.string("build_database_password"), |
|
1093 |
database = options.string("build_database_name"), |
|
1094 |
host = options.string("build_database_host"), |
|
1095 |
port = options.int("build_database_port"), |
|
1096 |
ssh = |
|
69074 | 1097 |
options.proper_string("build_database_ssh_host").map(ssh_host => |
68221 | 1098 |
SSH.open_session(options, |
1099 |
host = ssh_host, |
|
1100 |
user = options.string("build_database_ssh_user"), |
|
1101 |
port = options.int("build_database_ssh_port"))), |
|
1102 |
ssh_close = true) |
|
1103 |
if (output || has_session_info(db, name)) Some(db) else { db.close; None } |
|
1104 |
} |
|
1105 |
else if (output) Some(SQLite.open_database(output_database(name))) |
|
71601 | 1106 |
else input_dirs.map(_ + database(name)).find(_.is_file).map(SQLite.open_database) |
68221 | 1107 |
} |
68212
5a59fded83c7
clarified heap vs. database operations: discontinued correlation of directory;
wenzelm
parents:
68210
diff
changeset
|
1108 |
|
68221 | 1109 |
def open_database(name: String, output: Boolean = false): SQL.Database = |
1110 |
access_database(name, output = output) getOrElse |
|
1111 |
error("Missing build database for session " + quote(name)) |
|
68205 | 1112 |
|
68221 | 1113 |
def clean_output(name: String): (Boolean, Boolean) = |
1114 |
{ |
|
1115 |
val relevant_db = |
|
1116 |
database_server && |
|
1117 |
{ |
|
1118 |
access_database(name) match { |
|
1119 |
case Some(db) => |
|
1120 |
try { |
|
1121 |
db.transaction { |
|
1122 |
val relevant_db = has_session_info(db, name) |
|
1123 |
init_session_info(db, name) |
|
1124 |
relevant_db |
|
1125 |
} |
|
1126 |
} finally { db.close } |
|
1127 |
case None => false |
|
1128 |
} |
|
1129 |
} |
|
68212
5a59fded83c7
clarified heap vs. database operations: discontinued correlation of directory;
wenzelm
parents:
68210
diff
changeset
|
1130 |
|
68221 | 1131 |
val del = |
1132 |
for { |
|
69854
cc0b3e177b49
system option "system_heaps" supersedes various command-line options for "system build mode";
wenzelm
parents:
69812
diff
changeset
|
1133 |
dir <- |
cc0b3e177b49
system option "system_heaps" supersedes various command-line options for "system build mode";
wenzelm
parents:
69812
diff
changeset
|
1134 |
(if (system_heaps) List(user_output_dir, system_output_dir) else List(user_output_dir)) |
68221 | 1135 |
file <- List(heap(name), database(name), log(name), log_gz(name)) |
1136 |
path = dir + file if path.is_file |
|
1137 |
} yield path.file.delete |
|
1138 |
||
1139 |
val relevant = relevant_db || del.nonEmpty |
|
1140 |
val ok = del.forall(b => b) |
|
1141 |
(relevant, ok) |
|
1142 |
} |
|
65287 | 1143 |
|
1144 |
||
68218 | 1145 |
/* SQL database content */ |
1146 |
||
68294 | 1147 |
val xml_cache: XML.Cache = XML.make_cache() |
1148 |
val xz_cache: XZ.Cache = XZ.make_cache() |
|
68218 | 1149 |
|
1150 |
def read_bytes(db: SQL.Database, name: String, column: SQL.Column): Bytes = |
|
1151 |
db.using_statement(Session_Info.table.select(List(column), |
|
1152 |
Session_Info.session_name.where_equal(name)))(stmt => |
|
1153 |
{ |
|
1154 |
val res = stmt.execute_query() |
|
1155 |
if (!res.next()) Bytes.empty else res.bytes(column) |
|
1156 |
}) |
|
1157 |
||
1158 |
def read_properties(db: SQL.Database, name: String, column: SQL.Column): List[Properties.T] = |
|
1159 |
Properties.uncompress( |
|
1160 |
read_bytes(db, name, column), cache = xz_cache, xml_cache = Some(xml_cache)) |
|
1161 |
||
1162 |
||
65296 | 1163 |
/* session info */ |
65281
c70e7d24a16d
SQL database operations for combined session info;
wenzelm
parents:
65278
diff
changeset
|
1164 |
|
68086
9e1c670301b8
cleanup session output before starting build job;
wenzelm
parents:
68018
diff
changeset
|
1165 |
def init_session_info(db: SQL.Database, name: String) |
9e1c670301b8
cleanup session output before starting build job;
wenzelm
parents:
68018
diff
changeset
|
1166 |
{ |
9e1c670301b8
cleanup session output before starting build job;
wenzelm
parents:
68018
diff
changeset
|
1167 |
db.transaction { |
9e1c670301b8
cleanup session output before starting build job;
wenzelm
parents:
68018
diff
changeset
|
1168 |
db.create_table(Session_Info.table) |
9e1c670301b8
cleanup session output before starting build job;
wenzelm
parents:
68018
diff
changeset
|
1169 |
db.using_statement( |
9e1c670301b8
cleanup session output before starting build job;
wenzelm
parents:
68018
diff
changeset
|
1170 |
Session_Info.table.delete(Session_Info.session_name.where_equal(name)))(_.execute) |
68221 | 1171 |
|
1172 |
db.create_table(Export.Data.table) |
|
1173 |
db.using_statement( |
|
1174 |
Export.Data.table.delete(Export.Data.session_name.where_equal(name)))(_.execute) |
|
1175 |
} |
|
1176 |
} |
|
1177 |
||
1178 |
def has_session_info(db: SQL.Database, name: String): Boolean = |
|
1179 |
{ |
|
1180 |
db.transaction { |
|
1181 |
db.tables.contains(Session_Info.table.name) && |
|
1182 |
{ |
|
1183 |
db.using_statement( |
|
1184 |
Session_Info.table.select(List(Session_Info.session_name), |
|
1185 |
Session_Info.session_name.where_equal(name)))(stmt => stmt.execute_query().next()) |
|
1186 |
} |
|
68086
9e1c670301b8
cleanup session output before starting build job;
wenzelm
parents:
68018
diff
changeset
|
1187 |
} |
9e1c670301b8
cleanup session output before starting build job;
wenzelm
parents:
68018
diff
changeset
|
1188 |
} |
9e1c670301b8
cleanup session output before starting build job;
wenzelm
parents:
68018
diff
changeset
|
1189 |
|
65296 | 1190 |
def write_session_info( |
65318
342efc382558
eliminated somewhat redundant inlined name (despite a7aa17a1f721);
wenzelm
parents:
65298
diff
changeset
|
1191 |
db: SQL.Database, |
65320
52861eebf58d
access table via session_name: db may in principle contain multiple entries;
wenzelm
parents:
65318
diff
changeset
|
1192 |
name: String, |
65318
342efc382558
eliminated somewhat redundant inlined name (despite a7aa17a1f721);
wenzelm
parents:
65298
diff
changeset
|
1193 |
build_log: Build_Log.Session_Info, |
342efc382558
eliminated somewhat redundant inlined name (despite a7aa17a1f721);
wenzelm
parents:
65298
diff
changeset
|
1194 |
build: Build.Session_Info) |
65281
c70e7d24a16d
SQL database operations for combined session info;
wenzelm
parents:
65278
diff
changeset
|
1195 |
{ |
c70e7d24a16d
SQL database operations for combined session info;
wenzelm
parents:
65278
diff
changeset
|
1196 |
db.transaction { |
65698 | 1197 |
db.using_statement(Session_Info.table.insert())(stmt => |
65281
c70e7d24a16d
SQL database operations for combined session info;
wenzelm
parents:
65278
diff
changeset
|
1198 |
{ |
65748 | 1199 |
stmt.string(1) = name |
65857 | 1200 |
stmt.bytes(2) = Properties.encode(build_log.session_timing) |
68018 | 1201 |
stmt.bytes(3) = Properties.compress(build_log.command_timings, cache = xz_cache) |
1202 |
stmt.bytes(4) = Properties.compress(build_log.theory_timings, cache = xz_cache) |
|
1203 |
stmt.bytes(5) = Properties.compress(build_log.ml_statistics, cache = xz_cache) |
|
1204 |
stmt.bytes(6) = Properties.compress(build_log.task_statistics, cache = xz_cache) |
|
1205 |
stmt.bytes(7) = Build_Log.compress_errors(build_log.errors, cache = xz_cache) |
|
66873
9953ae603a23
provide theory timing information, similar to command timing but always considered relevant;
wenzelm
parents:
66857
diff
changeset
|
1206 |
stmt.string(8) = build.sources |
9953ae603a23
provide theory timing information, similar to command timing but always considered relevant;
wenzelm
parents:
66857
diff
changeset
|
1207 |
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
|
1208 |
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
|
1209 |
stmt.int(11) = build.return_code |
65281
c70e7d24a16d
SQL database operations for combined session info;
wenzelm
parents:
65278
diff
changeset
|
1210 |
stmt.execute() |
c70e7d24a16d
SQL database operations for combined session info;
wenzelm
parents:
65278
diff
changeset
|
1211 |
}) |
c70e7d24a16d
SQL database operations for combined session info;
wenzelm
parents:
65278
diff
changeset
|
1212 |
} |
c70e7d24a16d
SQL database operations for combined session info;
wenzelm
parents:
65278
diff
changeset
|
1213 |
} |
c70e7d24a16d
SQL database operations for combined session info;
wenzelm
parents:
65278
diff
changeset
|
1214 |
|
65320
52861eebf58d
access table via session_name: db may in principle contain multiple entries;
wenzelm
parents:
65318
diff
changeset
|
1215 |
def read_session_timing(db: SQL.Database, name: String): Properties.T = |
65857 | 1216 |
Properties.decode(read_bytes(db, name, Session_Info.session_timing), Some(xml_cache)) |
65286 | 1217 |
|
65320
52861eebf58d
access table via session_name: db may in principle contain multiple entries;
wenzelm
parents:
65318
diff
changeset
|
1218 |
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
|
1219 |
read_properties(db, name, Session_Info.command_timings) |
65286 | 1220 |
|
66873
9953ae603a23
provide theory timing information, similar to command timing but always considered relevant;
wenzelm
parents:
66857
diff
changeset
|
1221 |
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
|
1222 |
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
|
1223 |
|
65320
52861eebf58d
access table via session_name: db may in principle contain multiple entries;
wenzelm
parents:
65318
diff
changeset
|
1224 |
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
|
1225 |
read_properties(db, name, Session_Info.ml_statistics) |
65286 | 1226 |
|
65320
52861eebf58d
access table via session_name: db may in principle contain multiple entries;
wenzelm
parents:
65318
diff
changeset
|
1227 |
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
|
1228 |
read_properties(db, name, Session_Info.task_statistics) |
65286 | 1229 |
|
65937 | 1230 |
def read_errors(db: SQL.Database, name: String): List[String] = |
68018 | 1231 |
Build_Log.uncompress_errors(read_bytes(db, name, Session_Info.errors), cache = xz_cache) |
65937 | 1232 |
|
65320
52861eebf58d
access table via session_name: db may in principle contain multiple entries;
wenzelm
parents:
65318
diff
changeset
|
1233 |
def read_build(db: SQL.Database, name: String): Option[Build.Session_Info] = |
66744 | 1234 |
{ |
66957
82d13ba817b2
more permissive: db could be empty after hard crash;
wenzelm
parents:
66914
diff
changeset
|
1235 |
if (db.tables.contains(Session_Info.table.name)) { |
82d13ba817b2
more permissive: db could be empty after hard crash;
wenzelm
parents:
66914
diff
changeset
|
1236 |
db.using_statement(Session_Info.table.select(Session_Info.build_columns, |
82d13ba817b2
more permissive: db could be empty after hard crash;
wenzelm
parents:
66914
diff
changeset
|
1237 |
Session_Info.session_name.where_equal(name)))(stmt => |
82d13ba817b2
more permissive: db could be empty after hard crash;
wenzelm
parents:
66914
diff
changeset
|
1238 |
{ |
82d13ba817b2
more permissive: db could be empty after hard crash;
wenzelm
parents:
66914
diff
changeset
|
1239 |
val res = stmt.execute_query() |
82d13ba817b2
more permissive: db could be empty after hard crash;
wenzelm
parents:
66914
diff
changeset
|
1240 |
if (!res.next()) None |
82d13ba817b2
more permissive: db could be empty after hard crash;
wenzelm
parents:
66914
diff
changeset
|
1241 |
else { |
82d13ba817b2
more permissive: db could be empty after hard crash;
wenzelm
parents:
66914
diff
changeset
|
1242 |
Some( |
82d13ba817b2
more permissive: db could be empty after hard crash;
wenzelm
parents:
66914
diff
changeset
|
1243 |
Build.Session_Info( |
82d13ba817b2
more permissive: db could be empty after hard crash;
wenzelm
parents:
66914
diff
changeset
|
1244 |
res.string(Session_Info.sources), |
82d13ba817b2
more permissive: db could be empty after hard crash;
wenzelm
parents:
66914
diff
changeset
|
1245 |
split_lines(res.string(Session_Info.input_heaps)), |
82d13ba817b2
more permissive: db could be empty after hard crash;
wenzelm
parents:
66914
diff
changeset
|
1246 |
res.string(Session_Info.output_heap) match { case "" => None case s => Some(s) }, |
82d13ba817b2
more permissive: db could be empty after hard crash;
wenzelm
parents:
66914
diff
changeset
|
1247 |
res.int(Session_Info.return_code))) |
82d13ba817b2
more permissive: db could be empty after hard crash;
wenzelm
parents:
66914
diff
changeset
|
1248 |
} |
82d13ba817b2
more permissive: db could be empty after hard crash;
wenzelm
parents:
66914
diff
changeset
|
1249 |
}) |
82d13ba817b2
more permissive: db could be empty after hard crash;
wenzelm
parents:
66914
diff
changeset
|
1250 |
} |
82d13ba817b2
more permissive: db could be empty after hard crash;
wenzelm
parents:
66914
diff
changeset
|
1251 |
else None |
66744 | 1252 |
} |
65281
c70e7d24a16d
SQL database operations for combined session info;
wenzelm
parents:
65278
diff
changeset
|
1253 |
} |
62631 | 1254 |
} |