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