author | wenzelm |
Tue, 31 Oct 2017 18:56:24 +0100 | |
changeset 66965 | 9cec50354099 |
parent 66964 | 9f2de457b95e |
child 66966 | f3f9a492bee6 |
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 |
{ |
|
65360 | 20 |
/* base info and source dependencies */ |
62883 | 21 |
|
65445
e9e7f5f5794c
more qualifier treatment, but in the end it is still ignored;
wenzelm
parents:
65441
diff
changeset
|
22 |
val DRAFT = "Draft" |
e9e7f5f5794c
more qualifier treatment, but in the end it is still ignored;
wenzelm
parents:
65441
diff
changeset
|
23 |
|
65360 | 24 |
def is_pure(name: String): Boolean = name == Thy_Header.PURE |
64856 | 25 |
|
65495 | 26 |
object Known |
64856 | 27 |
{ |
65495 | 28 |
val empty: Known = Known() |
65360 | 29 |
|
66701 | 30 |
def make(local_dir: Path, bases: List[Base], |
31 |
theories: List[Document.Node.Name] = Nil, |
|
32 |
loaded_files: List[(String, List[Path])] = Nil): Known = |
|
65427 | 33 |
{ |
65463
104502de757c
more informative known_files: known_theories within the local session directory come first;
wenzelm
parents:
65461
diff
changeset
|
34 |
def bases_iterator(local: Boolean) = |
104502de757c
more informative known_files: known_theories within the local session directory come first;
wenzelm
parents:
65461
diff
changeset
|
35 |
for { |
104502de757c
more informative known_files: known_theories within the local session directory come first;
wenzelm
parents:
65461
diff
changeset
|
36 |
base <- bases.iterator |
65499 | 37 |
(_, name) <- (if (local) base.known.theories_local else base.known.theories).iterator |
65463
104502de757c
more informative known_files: known_theories within the local session directory come first;
wenzelm
parents:
65461
diff
changeset
|
38 |
} yield name |
104502de757c
more informative known_files: known_theories within the local session directory come first;
wenzelm
parents:
65461
diff
changeset
|
39 |
|
104502de757c
more informative known_files: known_theories within the local session directory come first;
wenzelm
parents:
65461
diff
changeset
|
40 |
def local_theories_iterator = |
104502de757c
more informative known_files: known_theories within the local session directory come first;
wenzelm
parents:
65461
diff
changeset
|
41 |
{ |
65833 | 42 |
val local_path = local_dir.canonical_file.toPath |
66716 | 43 |
theories.iterator.filter(name => 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
|
44 |
} |
65427 | 45 |
|
65461
b6c2e30dc018
support for known theories files (according to multiple uses);
wenzelm
parents:
65457
diff
changeset
|
46 |
val known_theories = |
65463
104502de757c
more informative known_files: known_theories within the local session directory come first;
wenzelm
parents:
65461
diff
changeset
|
47 |
(Map.empty[String, Document.Node.Name] /: (bases_iterator(false) ++ theories.iterator))({ |
65461
b6c2e30dc018
support for known theories files (according to multiple uses);
wenzelm
parents:
65457
diff
changeset
|
48 |
case (known, name) => |
b6c2e30dc018
support for known theories files (according to multiple uses);
wenzelm
parents:
65457
diff
changeset
|
49 |
known.get(name.theory) match { |
b6c2e30dc018
support for known theories files (according to multiple uses);
wenzelm
parents:
65457
diff
changeset
|
50 |
case Some(name1) if name != name1 => |
b6c2e30dc018
support for known theories files (according to multiple uses);
wenzelm
parents:
65457
diff
changeset
|
51 |
error("Duplicate theory " + quote(name.node) + " vs. " + quote(name1.node)) |
b6c2e30dc018
support for known theories files (according to multiple uses);
wenzelm
parents:
65457
diff
changeset
|
52 |
case _ => known + (name.theory -> name) |
b6c2e30dc018
support for known theories files (according to multiple uses);
wenzelm
parents:
65457
diff
changeset
|
53 |
} |
b6c2e30dc018
support for known theories files (according to multiple uses);
wenzelm
parents:
65457
diff
changeset
|
54 |
}) |
65463
104502de757c
more informative known_files: known_theories within the local session directory come first;
wenzelm
parents:
65461
diff
changeset
|
55 |
val known_theories_local = |
104502de757c
more informative known_files: known_theories within the local session directory come first;
wenzelm
parents:
65461
diff
changeset
|
56 |
(Map.empty[String, Document.Node.Name] /: |
104502de757c
more informative known_files: known_theories within the local session directory come first;
wenzelm
parents:
65461
diff
changeset
|
57 |
(bases_iterator(true) ++ local_theories_iterator))({ |
104502de757c
more informative known_files: known_theories within the local session directory come first;
wenzelm
parents:
65461
diff
changeset
|
58 |
case (known, name) => known + (name.theory -> name) |
104502de757c
more informative known_files: known_theories within the local session directory come first;
wenzelm
parents:
65461
diff
changeset
|
59 |
}) |
65461
b6c2e30dc018
support for known theories files (according to multiple uses);
wenzelm
parents:
65457
diff
changeset
|
60 |
val known_files = |
65463
104502de757c
more informative known_files: known_theories within the local session directory come first;
wenzelm
parents:
65461
diff
changeset
|
61 |
(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
|
62 |
(bases_iterator(true) ++ bases_iterator(false) ++ theories.iterator))({ |
65461
b6c2e30dc018
support for known theories files (according to multiple uses);
wenzelm
parents:
65457
diff
changeset
|
63 |
case (known, name) => |
66716 | 64 |
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
|
65 |
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
|
66 |
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
|
67 |
known |
65463
104502de757c
more informative known_files: known_theories within the local session directory come first;
wenzelm
parents:
65461
diff
changeset
|
68 |
else known + (file -> (name :: theories1)) |
65427 | 69 |
}) |
66701 | 70 |
|
71 |
val known_loaded_files = |
|
72 |
(loaded_files.toMap /: bases.map(base => base.known.loaded_files))(_ ++ _) |
|
73 |
||
65495 | 74 |
Known(known_theories, known_theories_local, |
66701 | 75 |
known_files.iterator.map(p => (p._1, p._2.reverse)).toMap, |
76 |
known_loaded_files) |
|
65427 | 77 |
} |
64856 | 78 |
} |
79 |
||
65495 | 80 |
sealed case class Known( |
65499 | 81 |
theories: Map[String, Document.Node.Name] = Map.empty, |
82 |
theories_local: Map[String, Document.Node.Name] = Map.empty, |
|
66701 | 83 |
files: Map[JFile, List[Document.Node.Name]] = Map.empty, |
84 |
loaded_files: Map[String, List[Path]] = Map.empty) |
|
65355 | 85 |
{ |
65495 | 86 |
def platform_path: Known = |
65499 | 87 |
copy(theories = for ((a, b) <- theories) yield (a, b.map(File.platform_path(_))), |
88 |
theories_local = for ((a, b) <- theories_local) yield (a, b.map(File.platform_path(_))), |
|
89 |
files = for ((a, b) <- files) yield (a, b.map(c => c.map(File.platform_path(_))))) |
|
65524 | 90 |
|
66668
6019cfb8256c
proper standard_path to revert platform_path in JEdit_Sessions.session_base;
wenzelm
parents:
66604
diff
changeset
|
91 |
def standard_path: Known = |
6019cfb8256c
proper standard_path to revert platform_path in JEdit_Sessions.session_base;
wenzelm
parents:
66604
diff
changeset
|
92 |
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
|
93 |
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
|
94 |
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
|
95 |
|
66195 | 96 |
def get_file(file: JFile, bootstrap: Boolean = false): Option[Document.Node.Name] = |
97 |
{ |
|
66234 | 98 |
val res = files.getOrElse(File.canonical(file), Nil).headOption |
66195 | 99 |
if (bootstrap) res.map(_.map_theory(Thy_Header.bootstrap_name(_))) else res |
100 |
} |
|
65495 | 101 |
} |
102 |
||
103 |
object Base |
|
104 |
{ |
|
105 |
def bootstrap(global_theories: Map[String, String]): Base = |
|
106 |
Base( |
|
107 |
global_theories = global_theories, |
|
66720 | 108 |
overall_syntax = Thy_Header.bootstrap_syntax) |
65495 | 109 |
} |
110 |
||
111 |
sealed case class Base( |
|
66571 | 112 |
pos: Position.T = Position.none, |
65495 | 113 |
global_theories: Map[String, String] = Map.empty, |
66717
67dbf5cdc056
more informative loaded_theories: dependencies and syntax;
wenzelm
parents:
66716
diff
changeset
|
114 |
loaded_theories: Graph[String, Outer_Syntax] = Graph.string, |
65495 | 115 |
known: Known = Known.empty, |
66720 | 116 |
overall_syntax: Outer_Syntax = Outer_Syntax.empty, |
66744 | 117 |
imported_sources: List[(Path, SHA1.Digest)] = Nil, |
65495 | 118 |
sources: List[(Path, SHA1.Digest)] = Nil, |
66822 | 119 |
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
|
120 |
errors: List[String] = Nil, |
41177b124067
tuned signature -- more readable output as Scala value;
wenzelm
parents:
66668
diff
changeset
|
121 |
imports: Option[Base] = None) |
65495 | 122 |
{ |
123 |
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
|
124 |
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
|
125 |
|
66717
67dbf5cdc056
more informative loaded_theories: dependencies and syntax;
wenzelm
parents:
66716
diff
changeset
|
126 |
def loaded_theory(name: String): Boolean = loaded_theories.defined(name) |
66712 | 127 |
def loaded_theory(name: Document.Node.Name): Boolean = loaded_theory(name.theory) |
65432 | 128 |
|
66717
67dbf5cdc056
more informative loaded_theories: dependencies and syntax;
wenzelm
parents:
66716
diff
changeset
|
129 |
def loaded_theory_syntax(name: String): Option[Outer_Syntax] = |
67dbf5cdc056
more informative loaded_theories: dependencies and syntax;
wenzelm
parents:
66716
diff
changeset
|
130 |
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
|
131 |
def loaded_theory_syntax(name: Document.Node.Name): Option[Outer_Syntax] = |
67dbf5cdc056
more informative loaded_theories: dependencies and syntax;
wenzelm
parents:
66716
diff
changeset
|
132 |
loaded_theory_syntax(name.theory) |
67dbf5cdc056
more informative loaded_theories: dependencies and syntax;
wenzelm
parents:
66716
diff
changeset
|
133 |
|
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
|
134 |
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
|
135 |
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
|
136 |
|
65498 | 137 |
def known_theory(name: String): Option[Document.Node.Name] = |
65499 | 138 |
known.theories.get(name) |
65498 | 139 |
|
65432 | 140 |
def dest_known_theories: List[(String, String)] = |
65499 | 141 |
for ((theory, node_name) <- known.theories.toList) |
65432 | 142 |
yield (theory, node_name.node) |
66694
41177b124067
tuned signature -- more readable output as Scala value;
wenzelm
parents:
66668
diff
changeset
|
143 |
|
41177b124067
tuned signature -- more readable output as Scala value;
wenzelm
parents:
66668
diff
changeset
|
144 |
def get_imports: Base = imports getOrElse Base.bootstrap(global_theories) |
65355 | 145 |
} |
64856 | 146 |
|
65495 | 147 |
sealed case class Deps(session_bases: Map[String, Base], all_known: Known) |
65251 | 148 |
{ |
65463
104502de757c
more informative known_files: known_theories within the local session directory come first;
wenzelm
parents:
65461
diff
changeset
|
149 |
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
|
150 |
def apply(name: String): Base = session_bases(name) |
66744 | 151 |
|
152 |
def imported_sources(name: String): List[SHA1.Digest] = |
|
153 |
session_bases(name).imported_sources.map(_._2) |
|
154 |
||
155 |
def sources(name: String): List[SHA1.Digest] = |
|
156 |
session_bases(name).sources.map(_._2) |
|
66571 | 157 |
|
158 |
def errors: List[String] = |
|
159 |
(for { |
|
160 |
(name, base) <- session_bases.iterator |
|
161 |
if base.errors.nonEmpty |
|
162 |
} yield cat_lines(base.errors) + |
|
163 |
"\nThe error(s) above occurred in session " + quote(name) + Position.here(base.pos) |
|
164 |
).toList |
|
165 |
||
166 |
def check_errors: Deps = |
|
167 |
errors match { |
|
168 |
case Nil => this |
|
169 |
case errs => error(cat_lines(errs)) |
|
170 |
} |
|
65251 | 171 |
} |
64856 | 172 |
|
65415
8cd54b18b68b
clarified signature: tree structure is not essential;
wenzelm
parents:
65410
diff
changeset
|
173 |
def deps(sessions: T, |
66962
e1bde71bace6
clarified signature: global_theories is always required;
wenzelm
parents:
66960
diff
changeset
|
174 |
global_theories: Map[String, String], |
65251 | 175 |
progress: Progress = No_Progress, |
176 |
inlined_files: Boolean = false, |
|
177 |
verbose: Boolean = false, |
|
178 |
list_files: Boolean = false, |
|
66962
e1bde71bace6
clarified signature: global_theories is always required;
wenzelm
parents:
66960
diff
changeset
|
179 |
check_keywords: Set[String] = Set.empty): Deps = |
65372
b722ee40c26c
refer to global_theories from all sessions, before selection;
wenzelm
parents:
65371
diff
changeset
|
180 |
{ |
66743 | 181 |
var cache_sources = Map.empty[JFile, SHA1.Digest] |
182 |
def check_sources(paths: List[Path]): List[(Path, SHA1.Digest)] = |
|
183 |
{ |
|
184 |
for { |
|
185 |
path <- paths |
|
186 |
file = path.file |
|
187 |
if cache_sources.isDefinedAt(file) || file.isFile |
|
188 |
} |
|
189 |
yield { |
|
190 |
cache_sources.get(file) match { |
|
191 |
case Some(digest) => (path, digest) |
|
192 |
case None => |
|
193 |
val digest = SHA1.digest(file) |
|
194 |
cache_sources = cache_sources + (file -> digest) |
|
195 |
(path, digest) |
|
196 |
} |
|
197 |
} |
|
198 |
} |
|
199 |
||
65463
104502de757c
more informative known_files: known_theories within the local session directory come first;
wenzelm
parents:
65461
diff
changeset
|
200 |
val session_bases = |
104502de757c
more informative known_files: known_theories within the local session directory come first;
wenzelm
parents:
65461
diff
changeset
|
201 |
(Map.empty[String, Base] /: sessions.imports_topological_order)({ |
65519 | 202 |
case (session_bases, info) => |
65463
104502de757c
more informative known_files: known_theories within the local session directory come first;
wenzelm
parents:
65461
diff
changeset
|
203 |
if (progress.stopped) throw Exn.Interrupt() |
65251 | 204 |
|
65463
104502de757c
more informative known_files: known_theories within the local session directory come first;
wenzelm
parents:
65461
diff
changeset
|
205 |
try { |
65496 | 206 |
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
|
207 |
info.parent match { |
65475 | 208 |
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
|
209 |
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
|
210 |
} |
65496 | 211 |
val imports_base: Sessions.Base = |
212 |
parent_base.copy(known = |
|
66701 | 213 |
Known.make(info.dir, parent_base :: info.imports.map(session_bases(_)))) |
65496 | 214 |
|
65532 | 215 |
val resources = new Resources(imports_base) |
65251 | 216 |
|
65463
104502de757c
more informative known_files: known_theories within the local session directory come first;
wenzelm
parents:
65461
diff
changeset
|
217 |
if (verbose || list_files) { |
104502de757c
more informative known_files: known_theories within the local session directory come first;
wenzelm
parents:
65461
diff
changeset
|
218 |
val groups = |
104502de757c
more informative known_files: known_theories within the local session directory come first;
wenzelm
parents:
65461
diff
changeset
|
219 |
if (info.groups.isEmpty) "" |
104502de757c
more informative known_files: known_theories within the local session directory come first;
wenzelm
parents:
65461
diff
changeset
|
220 |
else info.groups.mkString(" (", " ", ")") |
65519 | 221 |
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
|
222 |
} |
65251 | 223 |
|
65463
104502de757c
more informative known_files: known_theories within the local session directory come first;
wenzelm
parents:
65461
diff
changeset
|
224 |
val thy_deps = |
66959 | 225 |
resources.dependencies( |
66742 | 226 |
for { (_, thys) <- info.theories; (thy, pos) <- thys } |
66780
bf54ca580bf2
theory qualifier is always session name (see also 31e8a86971a8);
wenzelm
parents:
66770
diff
changeset
|
227 |
yield (resources.import_name(info.name, info.dir.implode, thy), pos)) |
65251 | 228 |
|
66720 | 229 |
val overall_syntax = thy_deps.overall_syntax |
65251 | 230 |
|
66716 | 231 |
val theory_files = thy_deps.names.map(_.path) |
65463
104502de757c
more informative known_files: known_theories within the local session directory come first;
wenzelm
parents:
65461
diff
changeset
|
232 |
val loaded_files = |
104502de757c
more informative known_files: known_theories within the local session directory come first;
wenzelm
parents:
65461
diff
changeset
|
233 |
if (inlined_files) { |
66701 | 234 |
if (Sessions.is_pure(info.name)) { |
66720 | 235 |
(Thy_Header.PURE -> resources.pure_files(overall_syntax, info.dir)) :: |
66701 | 236 |
thy_deps.loaded_files.filterNot(p => p._1 == Thy_Header.PURE) |
237 |
} |
|
238 |
else thy_deps.loaded_files |
|
65463
104502de757c
more informative known_files: known_theories within the local session directory come first;
wenzelm
parents:
65461
diff
changeset
|
239 |
} |
104502de757c
more informative known_files: known_theories within the local session directory come first;
wenzelm
parents:
65461
diff
changeset
|
240 |
else Nil |
65251 | 241 |
|
66742 | 242 |
val session_files = |
66701 | 243 |
(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
|
244 |
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
|
245 |
|
66743 | 246 |
val imported_files = if (inlined_files) thy_deps.imported_files else Nil |
247 |
||
65463
104502de757c
more informative known_files: known_theories within the local session directory come first;
wenzelm
parents:
65461
diff
changeset
|
248 |
if (list_files) |
66742 | 249 |
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
|
250 |
|
66719
d37efafd55b5
clarified theory syntax vs. overall session syntax;
wenzelm
parents:
66718
diff
changeset
|
251 |
if (check_keywords.nonEmpty) { |
d37efafd55b5
clarified theory syntax vs. overall session syntax;
wenzelm
parents:
66718
diff
changeset
|
252 |
Check_Keywords.check_keywords( |
66720 | 253 |
progress, overall_syntax.keywords, check_keywords, theory_files) |
66719
d37efafd55b5
clarified theory syntax vs. overall session syntax;
wenzelm
parents:
66718
diff
changeset
|
254 |
} |
65251 | 255 |
|
66822 | 256 |
val session_graph_display: Graph_Display.Graph = |
65507
decdb95bd007
clarified session graph: collapse theories from other sessions;
wenzelm
parents:
65500
diff
changeset
|
257 |
{ |
decdb95bd007
clarified session graph: collapse theories from other sessions;
wenzelm
parents:
65500
diff
changeset
|
258 |
def session_node(name: String): Graph_Display.Node = |
decdb95bd007
clarified session graph: collapse theories from other sessions;
wenzelm
parents:
65500
diff
changeset
|
259 |
Graph_Display.Node("[" + name + "]", "session." + name) |
decdb95bd007
clarified session graph: collapse theories from other sessions;
wenzelm
parents:
65500
diff
changeset
|
260 |
|
decdb95bd007
clarified session graph: collapse theories from other sessions;
wenzelm
parents:
65500
diff
changeset
|
261 |
def node(name: Document.Node.Name): Graph_Display.Node = |
decdb95bd007
clarified session graph: collapse theories from other sessions;
wenzelm
parents:
65500
diff
changeset
|
262 |
{ |
65528 | 263 |
val qualifier = resources.theory_qualifier(name) |
66780
bf54ca580bf2
theory qualifier is always session name (see also 31e8a86971a8);
wenzelm
parents:
66770
diff
changeset
|
264 |
if (qualifier == info.name) |
65507
decdb95bd007
clarified session graph: collapse theories from other sessions;
wenzelm
parents:
65500
diff
changeset
|
265 |
Graph_Display.Node(name.theory_base_name, "theory." + name.theory) |
65528 | 266 |
else session_node(qualifier) |
65507
decdb95bd007
clarified session graph: collapse theories from other sessions;
wenzelm
parents:
65500
diff
changeset
|
267 |
} |
decdb95bd007
clarified session graph: collapse theories from other sessions;
wenzelm
parents:
65500
diff
changeset
|
268 |
|
decdb95bd007
clarified session graph: collapse theories from other sessions;
wenzelm
parents:
65500
diff
changeset
|
269 |
val imports_subgraph = |
66828 | 270 |
sessions.imports_graph.restrict(sessions.imports_graph.all_preds(info.deps).toSet) |
65507
decdb95bd007
clarified session graph: collapse theories from other sessions;
wenzelm
parents:
65500
diff
changeset
|
271 |
|
decdb95bd007
clarified session graph: collapse theories from other sessions;
wenzelm
parents:
65500
diff
changeset
|
272 |
val graph0 = |
decdb95bd007
clarified session graph: collapse theories from other sessions;
wenzelm
parents:
65500
diff
changeset
|
273 |
(Graph_Display.empty_graph /: imports_subgraph.topological_order)( |
decdb95bd007
clarified session graph: collapse theories from other sessions;
wenzelm
parents:
65500
diff
changeset
|
274 |
{ case (g, session) => |
decdb95bd007
clarified session graph: collapse theories from other sessions;
wenzelm
parents:
65500
diff
changeset
|
275 |
val a = session_node(session) |
decdb95bd007
clarified session graph: collapse theories from other sessions;
wenzelm
parents:
65500
diff
changeset
|
276 |
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
|
277 |
((g /: (a :: bs))(_.default_node(_, Nil)) /: bs)(_.add_edge(_, a)) }) |
decdb95bd007
clarified session graph: collapse theories from other sessions;
wenzelm
parents:
65500
diff
changeset
|
278 |
|
66714 | 279 |
(graph0 /: thy_deps.entries)( |
280 |
{ case (g, entry) => |
|
281 |
val a = node(entry.name) |
|
65507
decdb95bd007
clarified session graph: collapse theories from other sessions;
wenzelm
parents:
65500
diff
changeset
|
282 |
val bs = |
66714 | 283 |
entry.header.imports.map({ case (name, _) => node(name) }). |
65507
decdb95bd007
clarified session graph: collapse theories from other sessions;
wenzelm
parents:
65500
diff
changeset
|
284 |
filterNot(_ == a) |
decdb95bd007
clarified session graph: collapse theories from other sessions;
wenzelm
parents:
65500
diff
changeset
|
285 |
((g /: (a :: bs))(_.default_node(_, Nil)) /: bs)(_.add_edge(_, a)) }) |
decdb95bd007
clarified session graph: collapse theories from other sessions;
wenzelm
parents:
65500
diff
changeset
|
286 |
} |
decdb95bd007
clarified session graph: collapse theories from other sessions;
wenzelm
parents:
65500
diff
changeset
|
287 |
|
66701 | 288 |
val known = |
289 |
Known.make(info.dir, List(imports_base), |
|
66715 | 290 |
theories = thy_deps.names, |
66701 | 291 |
loaded_files = loaded_files) |
292 |
||
66743 | 293 |
val sources_errors = |
294 |
for (p <- session_files if !p.is_file) yield "No such file: " + p |
|
66604 | 295 |
|
65463
104502de757c
more informative known_files: known_theories within the local session directory come first;
wenzelm
parents:
65461
diff
changeset
|
296 |
val base = |
66571 | 297 |
Base( |
298 |
pos = info.pos, |
|
65540
2b73ed8bf4d9
proper imports_resources for import_name: avoid self-referential name resolution;
wenzelm
parents:
65532
diff
changeset
|
299 |
global_theories = global_theories, |
65463
104502de757c
more informative known_files: known_theories within the local session directory come first;
wenzelm
parents:
65461
diff
changeset
|
300 |
loaded_theories = thy_deps.loaded_theories, |
66701 | 301 |
known = known, |
66720 | 302 |
overall_syntax = overall_syntax, |
66744 | 303 |
imported_sources = check_sources(imported_files), |
66743 | 304 |
sources = check_sources(session_files), |
66822 | 305 |
session_graph_display = session_graph_display, |
66694
41177b124067
tuned signature -- more readable output as Scala value;
wenzelm
parents:
66668
diff
changeset
|
306 |
errors = thy_deps.errors ::: sources_errors, |
41177b124067
tuned signature -- more readable output as Scala value;
wenzelm
parents:
66668
diff
changeset
|
307 |
imports = Some(imports_base)) |
65251 | 308 |
|
65519 | 309 |
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
|
310 |
} |
104502de757c
more informative known_files: known_theories within the local session directory come first;
wenzelm
parents:
65461
diff
changeset
|
311 |
catch { |
104502de757c
more informative known_files: known_theories within the local session directory come first;
wenzelm
parents:
65461
diff
changeset
|
312 |
case ERROR(msg) => |
104502de757c
more informative known_files: known_theories within the local session directory come first;
wenzelm
parents:
65461
diff
changeset
|
313 |
cat_error(msg, "The error(s) above occurred in session " + |
65519 | 314 |
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
|
315 |
} |
104502de757c
more informative known_files: known_theories within the local session directory come first;
wenzelm
parents:
65461
diff
changeset
|
316 |
}) |
65251 | 317 |
|
66701 | 318 |
Deps(session_bases, Known.make(Path.current, session_bases.toList.map(_._2))) |
65372
b722ee40c26c
refer to global_theories from all sessions, before selection;
wenzelm
parents:
65371
diff
changeset
|
319 |
} |
65251 | 320 |
|
66963 | 321 |
|
322 |
/* base info */ |
|
323 |
||
324 |
def session_base_info( |
|
65428 | 325 |
options: Options, |
326 |
session: String, |
|
327 |
dirs: List[Path] = Nil, |
|
66701 | 328 |
inlined_files: Boolean = false, |
66963 | 329 |
all_known: Boolean = false): Base_Info = |
65251 | 330 |
{ |
65415
8cd54b18b68b
clarified signature: tree structure is not essential;
wenzelm
parents:
65410
diff
changeset
|
331 |
val full_sessions = load(options, dirs = dirs) |
65428 | 332 |
val global_theories = full_sessions.global_theories |
66575
191048506504
clarified signature: provide all_known information uniformly (it is subject to Sessions.T selection);
wenzelm
parents:
66573
diff
changeset
|
333 |
val (_, selected_sessions) = full_sessions.selection(Selection(sessions = List(session))) |
65372
b722ee40c26c
refer to global_theories from all sessions, before selection;
wenzelm
parents:
65371
diff
changeset
|
334 |
|
66964 | 335 |
val sessions: T = if (all_known) full_sessions else selected_sessions |
336 |
val deps = Sessions.deps(sessions, global_theories, inlined_files = inlined_files) |
|
66963 | 337 |
val base = if (all_known) deps(session).copy(known = deps.all_known) else deps(session) |
338 |
||
66965 | 339 |
new Base_Info(session, sessions, deps, base) |
66964 | 340 |
} |
341 |
||
66965 | 342 |
final class Base_Info private [Sessions]( |
343 |
val session: String, val sessions: T, val deps: Deps, val base: Base) |
|
66964 | 344 |
{ |
66965 | 345 |
override def toString: String = session |
66964 | 346 |
|
347 |
def errors: List[String] = deps.errors |
|
348 |
def check_base: Base = if (errors.isEmpty) base else error(cat_lines(errors)) |
|
65251 | 349 |
} |
350 |
||
351 |
||
65415
8cd54b18b68b
clarified signature: tree structure is not essential;
wenzelm
parents:
65410
diff
changeset
|
352 |
/* cumulative session info */ |
62631 | 353 |
|
354 |
sealed case class Info( |
|
65519 | 355 |
name: String, |
62631 | 356 |
chapter: String, |
66829 | 357 |
dir_selected: Boolean, |
62631 | 358 |
pos: Position.T, |
359 |
groups: List[String], |
|
360 |
dir: Path, |
|
361 |
parent: Option[String], |
|
362 |
description: String, |
|
363 |
options: Options, |
|
65420
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
364 |
imports: List[String], |
65517 | 365 |
theories: List[(Options, List[(String, Position.T)])], |
65374 | 366 |
global_theories: List[String], |
62631 | 367 |
document_files: List[(Path, Path)], |
368 |
meta_digest: SHA1.Digest) |
|
369 |
{ |
|
66828 | 370 |
def deps: List[String] = parent.toList ::: imports |
371 |
||
62631 | 372 |
def timeout: Time = Time.seconds(options.real("timeout") * options.real("timeout_scale")) |
373 |
} |
|
374 |
||
65419 | 375 |
object Selection |
376 |
{ |
|
65422 | 377 |
val empty: Selection = Selection() |
65525 | 378 |
val all: Selection = Selection(all_sessions = true) |
65419 | 379 |
} |
380 |
||
381 |
sealed case class Selection( |
|
382 |
requirements: Boolean = false, |
|
383 |
all_sessions: Boolean = false, |
|
66737
2edc0c42c883
option -B for "isabelle build" and "isabelle imports";
wenzelm
parents:
66736
diff
changeset
|
384 |
base_sessions: List[String] = Nil, |
65419 | 385 |
exclude_session_groups: List[String] = Nil, |
386 |
exclude_sessions: List[String] = Nil, |
|
387 |
session_groups: List[String] = Nil, |
|
388 |
sessions: List[String] = Nil) |
|
389 |
{ |
|
66736 | 390 |
def ++ (other: Selection): Selection = |
65422 | 391 |
Selection( |
392 |
requirements = requirements || other.requirements, |
|
393 |
all_sessions = all_sessions || other.all_sessions, |
|
66737
2edc0c42c883
option -B for "isabelle build" and "isabelle imports";
wenzelm
parents:
66736
diff
changeset
|
394 |
base_sessions = Library.merge(base_sessions, other.base_sessions), |
66736 | 395 |
exclude_session_groups = Library.merge(exclude_session_groups, other.exclude_session_groups), |
396 |
exclude_sessions = Library.merge(exclude_sessions, other.exclude_sessions), |
|
397 |
session_groups = Library.merge(session_groups, other.session_groups), |
|
398 |
sessions = Library.merge(sessions, other.sessions)) |
|
65422 | 399 |
|
65419 | 400 |
def apply(graph: Graph[String, Info]): (List[String], Graph[String, Info]) = |
401 |
{ |
|
402 |
val bad_sessions = |
|
66737
2edc0c42c883
option -B for "isabelle build" and "isabelle imports";
wenzelm
parents:
66736
diff
changeset
|
403 |
SortedSet((base_sessions ::: exclude_sessions ::: sessions). |
2edc0c42c883
option -B for "isabelle build" and "isabelle imports";
wenzelm
parents:
66736
diff
changeset
|
404 |
filterNot(graph.defined(_)): _*).toList |
2edc0c42c883
option -B for "isabelle build" and "isabelle imports";
wenzelm
parents:
66736
diff
changeset
|
405 |
if (bad_sessions.nonEmpty) |
2edc0c42c883
option -B for "isabelle build" and "isabelle imports";
wenzelm
parents:
66736
diff
changeset
|
406 |
error("Undefined session(s): " + commas_quote(bad_sessions)) |
65419 | 407 |
|
408 |
val excluded = |
|
409 |
{ |
|
410 |
val exclude_group = exclude_session_groups.toSet |
|
411 |
val exclude_group_sessions = |
|
412 |
(for { |
|
413 |
(name, (info, _)) <- graph.iterator |
|
414 |
if graph.get_node(name).groups.exists(exclude_group) |
|
415 |
} yield name).toList |
|
416 |
graph.all_succs(exclude_group_sessions ::: exclude_sessions).toSet |
|
417 |
} |
|
418 |
||
419 |
val pre_selected = |
|
420 |
{ |
|
421 |
if (all_sessions) graph.keys |
|
422 |
else { |
|
423 |
val select_group = session_groups.toSet |
|
66737
2edc0c42c883
option -B for "isabelle build" and "isabelle imports";
wenzelm
parents:
66736
diff
changeset
|
424 |
val select = sessions.toSet ++ graph.all_succs(base_sessions) |
65419 | 425 |
(for { |
426 |
(name, (info, _)) <- graph.iterator |
|
66829 | 427 |
if info.dir_selected || select(name) || graph.get_node(name).groups.exists(select_group) |
65419 | 428 |
} yield name).toList |
429 |
} |
|
430 |
}.filterNot(excluded) |
|
431 |
||
432 |
val selected = |
|
433 |
if (requirements) (graph.all_preds(pre_selected).toSet -- pre_selected).toList |
|
434 |
else pre_selected |
|
435 |
||
436 |
(selected, graph.restrict(graph.all_preds(selected).toSet)) |
|
437 |
} |
|
438 |
} |
|
439 |
||
66960 | 440 |
def make(infos: List[Info]): T = |
62631 | 441 |
{ |
65420
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
442 |
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
|
443 |
: Graph[String, Info] = |
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
444 |
{ |
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
445 |
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
|
446 |
{ |
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
447 |
if (!g.defined(parent)) |
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
448 |
error("Bad " + kind + " session " + quote(parent) + " for " + |
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
449 |
quote(name) + Position.here(pos)) |
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
450 |
|
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
451 |
try { g.add_edge_acyclic(parent, name) } |
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
452 |
catch { |
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
453 |
case exn: Graph.Cycles[_] => |
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
454 |
error(cat_lines(exn.cycles.map(cycle => |
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
455 |
"Cyclic session dependency of " + |
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
456 |
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
|
457 |
} |
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
458 |
} |
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
459 |
(graph /: graph.iterator) { |
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
460 |
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
|
461 |
} |
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
462 |
} |
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
463 |
|
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
464 |
val graph0 = |
65415
8cd54b18b68b
clarified signature: tree structure is not essential;
wenzelm
parents:
65410
diff
changeset
|
465 |
(Graph.string[Info] /: infos) { |
66960 | 466 |
case (graph, info) => |
467 |
if (graph.defined(info.name)) |
|
468 |
error("Duplicate session " + quote(info.name) + Position.here(info.pos) + |
|
469 |
Position.here(graph.get_node(info.name).pos)) |
|
470 |
else graph.new_node(info.name, info) |
|
65415
8cd54b18b68b
clarified signature: tree structure is not essential;
wenzelm
parents:
65410
diff
changeset
|
471 |
} |
65420
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
472 |
val graph1 = add_edges(graph0, "parent", _.parent) |
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
473 |
val graph2 = add_edges(graph1, "imports", _.imports) |
62631 | 474 |
|
65420
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
475 |
new T(graph1, graph2) |
62631 | 476 |
} |
477 |
||
65420
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
478 |
final class T private[Sessions]( |
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
479 |
val build_graph: Graph[String, Info], |
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
480 |
val imports_graph: Graph[String, Info]) |
62631 | 481 |
{ |
66823 | 482 |
def build_graph_display: Graph_Display.Graph = Graph_Display.make_graph(build_graph) |
483 |
def imports_graph_display: Graph_Display.Graph = Graph_Display.make_graph(imports_graph) |
|
484 |
||
65420
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
485 |
def apply(name: String): Info = imports_graph.get_node(name) |
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
486 |
def get(name: String): Option[Info] = |
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
487 |
if (imports_graph.defined(name)) Some(imports_graph.get_node(name)) else None |
62631 | 488 |
|
65457 | 489 |
def global_theories: Map[String, String] = |
65490 | 490 |
(Thy_Header.bootstrap_global_theories.toMap /: |
65424 | 491 |
(for { |
65519 | 492 |
(_, (info, _)) <- imports_graph.iterator |
493 |
thy <- info.global_theories.iterator } |
|
494 |
yield (thy, info)))({ |
|
495 |
case (global, (thy, info)) => |
|
66780
bf54ca580bf2
theory qualifier is always session name (see also 31e8a86971a8);
wenzelm
parents:
66770
diff
changeset
|
496 |
val qualifier = info.name |
65457 | 497 |
global.get(thy) match { |
498 |
case Some(qualifier1) if qualifier != qualifier1 => |
|
499 |
error("Duplicate global theory " + quote(thy) + Position.here(info.pos)) |
|
500 |
case _ => global + (thy -> qualifier) |
|
501 |
} |
|
502 |
}) |
|
65372
b722ee40c26c
refer to global_theories from all sessions, before selection;
wenzelm
parents:
65371
diff
changeset
|
503 |
|
65419 | 504 |
def selection(select: Selection): (List[String], T) = |
62631 | 505 |
{ |
65420
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
506 |
val (_, build_graph1) = select(build_graph) |
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
507 |
val (selected, imports_graph1) = select(imports_graph) |
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
508 |
(selected, new T(build_graph1, imports_graph1)) |
62631 | 509 |
} |
510 |
||
65420
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
511 |
def build_descendants(names: List[String]): List[String] = |
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
512 |
build_graph.all_succs(names) |
66848 | 513 |
def build_requirements(names: List[String]): List[String] = |
514 |
build_graph.all_preds(names).reverse |
|
65519 | 515 |
def build_topological_order: List[Info] = |
516 |
build_graph.topological_order.map(apply(_)) |
|
62631 | 517 |
|
66848 | 518 |
def imports_descendants(names: List[String]): List[String] = |
519 |
imports_graph.all_succs(names) |
|
520 |
def imports_requirements(names: List[String]): List[String] = |
|
521 |
imports_graph.all_preds(names).reverse |
|
65519 | 522 |
def imports_topological_order: List[Info] = |
523 |
imports_graph.topological_order.map(apply(_)) |
|
65420
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
524 |
|
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
525 |
override def toString: String = |
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
526 |
imports_graph.keys_iterator.mkString("Sessions.T(", ", ", ")") |
62631 | 527 |
} |
528 |
||
529 |
||
530 |
/* parser */ |
|
531 |
||
62864 | 532 |
val ROOT = Path.explode("ROOT") |
533 |
val ROOTS = Path.explode("ROOTS") |
|
534 |
||
62631 | 535 |
private val CHAPTER = "chapter" |
536 |
private val SESSION = "session" |
|
537 |
private val IN = "in" |
|
538 |
private val DESCRIPTION = "description" |
|
539 |
private val OPTIONS = "options" |
|
65420
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
540 |
private val SESSIONS = "sessions" |
62631 | 541 |
private val THEORIES = "theories" |
65374 | 542 |
private val GLOBAL = "global" |
62631 | 543 |
private val DOCUMENT_FILES = "document_files" |
544 |
||
545 |
lazy val root_syntax = |
|
65374 | 546 |
Outer_Syntax.init() + "(" + ")" + "+" + "," + "=" + "[" + "]" + GLOBAL + IN + |
63443 | 547 |
(CHAPTER, Keyword.THY_DECL) + |
548 |
(SESSION, Keyword.THY_DECL) + |
|
549 |
(DESCRIPTION, Keyword.QUASI_COMMAND) + |
|
550 |
(OPTIONS, Keyword.QUASI_COMMAND) + |
|
65420
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
551 |
(SESSIONS, Keyword.QUASI_COMMAND) + |
63443 | 552 |
(THEORIES, Keyword.QUASI_COMMAND) + |
553 |
(DOCUMENT_FILES, Keyword.QUASI_COMMAND) |
|
62631 | 554 |
|
66818
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
555 |
abstract class Entry |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
556 |
sealed case class Chapter(name: String) extends Entry |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
557 |
sealed case class Session_Entry( |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
558 |
pos: Position.T, |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
559 |
name: String, |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
560 |
groups: List[String], |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
561 |
path: String, |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
562 |
parent: Option[String], |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
563 |
description: String, |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
564 |
options: List[Options.Spec], |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
565 |
imports: List[String], |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
566 |
theories: List[(List[Options.Spec], List[((String, Position.T), Boolean)])], |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
567 |
document_files: List[(String, String)]) extends Entry |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
568 |
{ |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
569 |
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
|
570 |
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
|
571 |
} |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
572 |
|
62968 | 573 |
private object Parser extends Parse.Parser with Options.Parser |
62631 | 574 |
{ |
575 |
private val chapter: Parser[Chapter] = |
|
576 |
{ |
|
577 |
val chapter_name = atom("chapter name", _.is_name) |
|
578 |
||
579 |
command(CHAPTER) ~! chapter_name ^^ { case _ ~ a => Chapter(a) } |
|
580 |
} |
|
581 |
||
582 |
private val session_entry: Parser[Session_Entry] = |
|
583 |
{ |
|
584 |
val option = |
|
62968 | 585 |
option_name ~ opt($$$("=") ~! option_value ^^ |
586 |
{ case _ ~ x => x }) ^^ { case x ~ y => (x, y) } |
|
62631 | 587 |
val options = $$$("[") ~> rep1sep(option, $$$(",")) <~ $$$("]") |
588 |
||
65374 | 589 |
val global = |
590 |
($$$("(") ~! $$$(GLOBAL) ~ $$$(")")) ^^ { case _ => true } | success(false) |
|
591 |
||
592 |
val theory_entry = |
|
65517 | 593 |
position(theory_name) ~ global ^^ { case x ~ y => (x, y) } |
65374 | 594 |
|
62631 | 595 |
val theories = |
65374 | 596 |
$$$(THEORIES) ~! |
597 |
((options | success(Nil)) ~ rep(theory_entry)) ^^ |
|
598 |
{ case _ ~ (x ~ y) => (x, y) } |
|
62631 | 599 |
|
600 |
val document_files = |
|
601 |
$$$(DOCUMENT_FILES) ~! |
|
602 |
(($$$("(") ~! ($$$(IN) ~! (path ~ $$$(")"))) ^^ |
|
603 |
{ case _ ~ (_ ~ (x ~ _)) => x } | success("document")) ~ |
|
604 |
rep1(path)) ^^ { case _ ~ (x ~ y) => y.map((x, _)) } |
|
605 |
||
606 |
command(SESSION) ~! |
|
607 |
(position(session_name) ~ |
|
608 |
(($$$("(") ~! (rep1(name) <~ $$$(")")) ^^ { case _ ~ x => x }) | success(Nil)) ~ |
|
609 |
(($$$(IN) ~! path ^^ { case _ ~ x => x }) | success(".")) ~ |
|
610 |
($$$("=") ~! |
|
611 |
(opt(session_name ~! $$$("+") ^^ { case x ~ _ => x }) ~ |
|
612 |
(($$$(DESCRIPTION) ~! text ^^ { case _ ~ x => x }) | success("")) ~ |
|
613 |
(($$$(OPTIONS) ~! options ^^ { case _ ~ x => x }) | success(Nil)) ~ |
|
65420
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
614 |
(($$$(SESSIONS) ~! rep(session_name) ^^ { case _ ~ x => x }) | success(Nil)) ~ |
62631 | 615 |
rep1(theories) ~ |
616 |
(rep(document_files) ^^ (x => x.flatten))))) ^^ |
|
66759 | 617 |
{ case _ ~ ((a, pos) ~ b ~ c ~ (_ ~ (d ~ e ~ f ~ g ~ h ~ i))) => |
618 |
Session_Entry(pos, a, b, c, d, e, f, g, h, i) } |
|
62631 | 619 |
} |
620 |
||
66819 | 621 |
def parse_root(path: Path): List[Entry] = |
62631 | 622 |
{ |
66764
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
623 |
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
|
624 |
val start = Token.Pos.file(path.implode) |
62631 | 625 |
|
66764
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
626 |
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
|
627 |
case Success(result, _) => result |
66764
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
628 |
case bad => error(bad.toString) |
62631 | 629 |
} |
630 |
} |
|
631 |
} |
|
632 |
||
66819 | 633 |
def parse_root(path: Path): List[Entry] = Parser.parse_root(path) |
634 |
||
635 |
def parse_root_entries(path: Path): List[Session_Entry] = |
|
636 |
for (entry <- Parser.parse_root(path) if entry.isInstanceOf[Session_Entry]) |
|
637 |
yield entry.asInstanceOf[Session_Entry] |
|
66818
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
638 |
|
66960 | 639 |
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
|
640 |
{ |
66960 | 641 |
def make_info(entry_chapter: String, entry: Session_Entry): Info = |
66818
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
642 |
{ |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
643 |
try { |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
644 |
val name = entry.name |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
645 |
|
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
646 |
if (name == "" || name == DRAFT) error("Bad session name") |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
647 |
if (is_pure(name) && entry.parent.isDefined) error("Illegal parent session") |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
648 |
if (!is_pure(name) && !entry.parent.isDefined) error("Missing parent session") |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
649 |
|
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
650 |
val session_options = options ++ entry.options |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
651 |
|
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
652 |
val theories = |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
653 |
entry.theories.map({ case (opts, thys) => (session_options ++ opts, thys.map(_._1)) }) |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
654 |
|
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
655 |
val global_theories = |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
656 |
for { (_, thys) <- entry.theories; ((thy, pos), global) <- thys if global } |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
657 |
yield { |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
658 |
val thy_name = Path.explode(thy).expand.base_name |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
659 |
if (Long_Name.is_qualified(thy_name)) |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
660 |
error("Bad qualified name for global theory " + |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
661 |
quote(thy_name) + Position.here(pos)) |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
662 |
else thy_name |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
663 |
} |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
664 |
|
66843 | 665 |
val conditions = |
666 |
theories.flatMap(thys => space_explode(',', thys._1.string("condition"))).distinct.sorted. |
|
667 |
map(x => (x, Isabelle_System.getenv(x) != "")) |
|
668 |
||
66818
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
669 |
val document_files = |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
670 |
entry.document_files.map({ case (s1, s2) => (Path.explode(s1), Path.explode(s2)) }) |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
671 |
|
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
672 |
val meta_digest = |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
673 |
SHA1.digest((entry_chapter, name, entry.parent, entry.options, entry.imports, |
66843 | 674 |
entry.theories_no_position, conditions, entry.document_files).toString) |
66818
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
675 |
|
66960 | 676 |
Info(name, entry_chapter, select, entry.pos, entry.groups, |
677 |
path.dir + Path.explode(entry.path), entry.parent, entry.description, session_options, |
|
678 |
entry.imports, theories, global_theories, document_files, meta_digest) |
|
66818
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
679 |
} |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
680 |
catch { |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
681 |
case ERROR(msg) => |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
682 |
error(msg + "\nThe error(s) above occurred in session entry " + |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
683 |
quote(entry.name) + Position.here(entry.pos)) |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
684 |
} |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
685 |
} |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
686 |
|
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
687 |
var entry_chapter = "Unsorted" |
66960 | 688 |
val infos = new mutable.ListBuffer[Info] |
66819 | 689 |
parse_root(path).foreach { |
66818
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
690 |
case Chapter(name) => entry_chapter = name |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
691 |
case entry: Session_Entry => infos += make_info(entry_chapter, entry) |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
692 |
} |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
693 |
infos.toList |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
694 |
} |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
695 |
|
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
696 |
def parse_roots(roots: Path): List[String] = |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
697 |
{ |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
698 |
for { |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
699 |
line <- split_lines(File.read(roots)) |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
700 |
if !(line == "" || line.startsWith("#")) |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
701 |
} yield line |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
702 |
} |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
703 |
|
62631 | 704 |
|
62635 | 705 |
/* load sessions from certain directories */ |
62631 | 706 |
|
707 |
private def is_session_dir(dir: Path): Boolean = |
|
708 |
(dir + ROOT).is_file || (dir + ROOTS).is_file |
|
709 |
||
710 |
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
|
711 |
if (is_session_dir(dir)) File.pwd() + dir.expand |
62631 | 712 |
else error("Bad session root directory: " + dir.toString) |
713 |
||
65561 | 714 |
def directories(dirs: List[Path], select_dirs: List[Path]): List[(Boolean, Path)] = |
715 |
{ |
|
716 |
val default_dirs = Isabelle_System.components().filter(is_session_dir(_)) |
|
717 |
(default_dirs ::: dirs).map((false, _)) ::: select_dirs.map((true, _)) |
|
718 |
} |
|
719 |
||
65415
8cd54b18b68b
clarified signature: tree structure is not essential;
wenzelm
parents:
65410
diff
changeset
|
720 |
def load(options: Options, dirs: List[Path] = Nil, select_dirs: List[Path] = Nil): T = |
62631 | 721 |
{ |
66764
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
722 |
def load_dir(select: Boolean, dir: Path): List[(Boolean, Path)] = |
62635 | 723 |
load_root(select, dir) ::: load_roots(select, dir) |
62631 | 724 |
|
66764
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
725 |
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
|
726 |
{ |
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
727 |
val root = dir + ROOT |
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
728 |
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
|
729 |
} |
62631 | 730 |
|
66764
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
731 |
def load_roots(select: Boolean, dir: Path): List[(Boolean, Path)] = |
62631 | 732 |
{ |
733 |
val roots = dir + ROOTS |
|
734 |
if (roots.is_file) { |
|
735 |
for { |
|
66818
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
736 |
entry <- parse_roots(roots) |
62631 | 737 |
dir1 = |
66818
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
738 |
try { check_session_dir(dir + Path.explode(entry)) } |
62631 | 739 |
catch { |
740 |
case ERROR(msg) => |
|
741 |
error(msg + "\nThe error(s) above occurred in session catalog " + roots.toString) |
|
742 |
} |
|
66764
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
743 |
res <- load_dir(select, dir1) |
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
744 |
} yield res |
62631 | 745 |
} |
746 |
else Nil |
|
747 |
} |
|
748 |
||
66764
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
749 |
val roots = |
62631 | 750 |
for { |
65561 | 751 |
(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
|
752 |
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
|
753 |
} yield res |
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
754 |
|
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
755 |
val unique_roots = |
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
756 |
((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
|
757 |
val file = path.canonical_file |
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
758 |
m.get(file) match { |
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
759 |
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
|
760 |
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
|
761 |
} |
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
762 |
}).toList.map(_._2) |
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
763 |
|
66818
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
764 |
make(unique_roots.flatMap(p => read_root(options, p._1, p._2))) |
62631 | 765 |
} |
62632 | 766 |
|
767 |
||
62637
0189fe0f6452
support for Poly/ML heap hierarchy, which saves a lot of disk space;
wenzelm
parents:
62636
diff
changeset
|
768 |
|
62704
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
769 |
/** 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
|
770 |
|
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
771 |
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
|
772 |
|
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
773 |
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
|
774 |
{ |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
775 |
if (heap.is_file) { |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
776 |
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
|
777 |
try { |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
778 |
val len = file.size |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
779 |
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
|
780 |
if (len >= n) { |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
781 |
file.position(len - n) |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
782 |
|
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
783 |
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
|
784 |
var i = 0 |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
785 |
var m = 0 |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
786 |
do { |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
787 |
m = file.read(buf) |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
788 |
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
|
789 |
} |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
790 |
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
|
791 |
|
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
792 |
if (i == n) { |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
793 |
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
|
794 |
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
|
795 |
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
|
796 |
} |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
797 |
else None |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
798 |
} |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
799 |
else None |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
800 |
} |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
801 |
finally { file.close } |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
802 |
} |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
803 |
else None |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
804 |
} |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
805 |
|
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
806 |
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
|
807 |
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
|
808 |
case None => |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
809 |
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
|
810 |
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
|
811 |
s |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
812 |
case Some(s) => s |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
813 |
} |
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
814 |
|
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
815 |
|
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents:
62637
diff
changeset
|
816 |
|
62637
0189fe0f6452
support for Poly/ML heap hierarchy, which saves a lot of disk space;
wenzelm
parents:
62636
diff
changeset
|
817 |
/** persistent store **/ |
62632 | 818 |
|
65296 | 819 |
object Session_Info |
820 |
{ |
|
66857 | 821 |
val session_name = SQL.Column.string("session_name").make_primary_key |
65326 | 822 |
|
65296 | 823 |
// Build_Log.Session_Info |
824 |
val session_timing = SQL.Column.bytes("session_timing") |
|
825 |
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
|
826 |
val theory_timings = SQL.Column.bytes("theory_timings") |
65296 | 827 |
val ml_statistics = SQL.Column.bytes("ml_statistics") |
828 |
val task_statistics = SQL.Column.bytes("task_statistics") |
|
65934 | 829 |
val errors = SQL.Column.bytes("errors") |
65296 | 830 |
val build_log_columns = |
66873
9953ae603a23
provide theory timing information, similar to command timing but always considered relevant;
wenzelm
parents:
66857
diff
changeset
|
831 |
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
|
832 |
ml_statistics, task_statistics, errors) |
65296 | 833 |
|
834 |
// Build.Session_Info |
|
835 |
val sources = SQL.Column.string("sources") |
|
836 |
val input_heaps = SQL.Column.string("input_heaps") |
|
837 |
val output_heap = SQL.Column.string("output_heap") |
|
838 |
val return_code = SQL.Column.int("return_code") |
|
66746 | 839 |
val build_columns = List(sources, input_heaps, output_heap, return_code) |
65296 | 840 |
|
841 |
val table = SQL.Table("isabelle_session_info", build_log_columns ::: build_columns) |
|
842 |
} |
|
843 |
||
62632 | 844 |
def store(system_mode: Boolean = false): Store = new Store(system_mode) |
845 |
||
65857 | 846 |
class Store private[Sessions](system_mode: Boolean) |
62632 | 847 |
{ |
65278 | 848 |
/* file names */ |
849 |
||
65281
c70e7d24a16d
SQL database operations for combined session info;
wenzelm
parents:
65278
diff
changeset
|
850 |
def database(name: String): Path = Path.basic("log") + Path.basic(name).ext("db") |
65278 | 851 |
def log(name: String): Path = Path.basic("log") + Path.basic(name) |
852 |
def log_gz(name: String): Path = log(name).ext("gz") |
|
853 |
||
854 |
||
65286 | 855 |
/* SQL database content */ |
65283 | 856 |
|
65857 | 857 |
val xml_cache = new XML.Cache() |
858 |
||
65320
52861eebf58d
access table via session_name: db may in principle contain multiple entries;
wenzelm
parents:
65318
diff
changeset
|
859 |
def read_bytes(db: SQL.Database, name: String, column: SQL.Column): Bytes = |
65698 | 860 |
db.using_statement(Session_Info.table.select(List(column), |
65699 | 861 |
Session_Info.session_name.where_equal(name)))(stmt => |
65291
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65288
diff
changeset
|
862 |
{ |
65740 | 863 |
val res = stmt.execute_query() |
864 |
if (!res.next()) Bytes.empty else res.bytes(column) |
|
65291
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65288
diff
changeset
|
865 |
}) |
65285 | 866 |
|
65320
52861eebf58d
access table via session_name: db may in principle contain multiple entries;
wenzelm
parents:
65318
diff
changeset
|
867 |
def read_properties(db: SQL.Database, name: String, column: SQL.Column): List[Properties.T] = |
65857 | 868 |
Properties.uncompress(read_bytes(db, name, column), Some(xml_cache)) |
65286 | 869 |
|
65283 | 870 |
|
62637
0189fe0f6452
support for Poly/ML heap hierarchy, which saves a lot of disk space;
wenzelm
parents:
62636
diff
changeset
|
871 |
/* output */ |
62632 | 872 |
|
873 |
val browser_info: Path = |
|
874 |
if (system_mode) Path.explode("~~/browser_info") |
|
875 |
else Path.explode("$ISABELLE_BROWSER_INFO") |
|
876 |
||
62637
0189fe0f6452
support for Poly/ML heap hierarchy, which saves a lot of disk space;
wenzelm
parents:
62636
diff
changeset
|
877 |
val output_dir: Path = |
0189fe0f6452
support for Poly/ML heap hierarchy, which saves a lot of disk space;
wenzelm
parents:
62636
diff
changeset
|
878 |
if (system_mode) Path.explode("~~/heaps/$ML_IDENTIFIER") |
0189fe0f6452
support for Poly/ML heap hierarchy, which saves a lot of disk space;
wenzelm
parents:
62636
diff
changeset
|
879 |
else Path.explode("$ISABELLE_OUTPUT") |
0189fe0f6452
support for Poly/ML heap hierarchy, which saves a lot of disk space;
wenzelm
parents:
62636
diff
changeset
|
880 |
|
65298 | 881 |
override def toString: String = "Store(output_dir = " + output_dir.expand + ")" |
882 |
||
62637
0189fe0f6452
support for Poly/ML heap hierarchy, which saves a lot of disk space;
wenzelm
parents:
62636
diff
changeset
|
883 |
def prepare_output() { Isabelle_System.mkdirs(output_dir + Path.basic("log")) } |
0189fe0f6452
support for Poly/ML heap hierarchy, which saves a lot of disk space;
wenzelm
parents:
62636
diff
changeset
|
884 |
|
0189fe0f6452
support for Poly/ML heap hierarchy, which saves a lot of disk space;
wenzelm
parents:
62636
diff
changeset
|
885 |
|
0189fe0f6452
support for Poly/ML heap hierarchy, which saves a lot of disk space;
wenzelm
parents:
62636
diff
changeset
|
886 |
/* input */ |
0189fe0f6452
support for Poly/ML heap hierarchy, which saves a lot of disk space;
wenzelm
parents:
62636
diff
changeset
|
887 |
|
0189fe0f6452
support for Poly/ML heap hierarchy, which saves a lot of disk space;
wenzelm
parents:
62636
diff
changeset
|
888 |
private val input_dirs = |
62632 | 889 |
if (system_mode) List(output_dir) |
62633 | 890 |
else { |
891 |
val ml_ident = Path.explode("$ML_IDENTIFIER").expand |
|
892 |
output_dir :: Path.split(Isabelle_System.getenv_strict("ISABELLE_PATH")).map(_ + ml_ident) |
|
893 |
} |
|
62632 | 894 |
|
65291
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65288
diff
changeset
|
895 |
def find_database_heap(name: String): Option[(Path, Option[String])] = |
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65288
diff
changeset
|
896 |
input_dirs.find(dir => (dir + database(name)).is_file).map(dir => |
57c85c83c11b
maintain persistent session info in SQLite database instead of log file;
wenzelm
parents:
65288
diff
changeset
|
897 |
(dir + database(name), read_heap_digest(dir + Path.basic(name)))) |
62632 | 898 |
|
65281
c70e7d24a16d
SQL database operations for combined session info;
wenzelm
parents:
65278
diff
changeset
|
899 |
def find_database(name: String): Option[Path] = |
c70e7d24a16d
SQL database operations for combined session info;
wenzelm
parents:
65278
diff
changeset
|
900 |
input_dirs.map(_ + database(name)).find(_.is_file) |
c70e7d24a16d
SQL database operations for combined session info;
wenzelm
parents:
65278
diff
changeset
|
901 |
|
62637
0189fe0f6452
support for Poly/ML heap hierarchy, which saves a lot of disk space;
wenzelm
parents:
62636
diff
changeset
|
902 |
def heap(name: String): Path = |
65288 | 903 |
input_dirs.map(_ + Path.basic(name)).find(_.is_file) getOrElse |
62637
0189fe0f6452
support for Poly/ML heap hierarchy, which saves a lot of disk space;
wenzelm
parents:
62636
diff
changeset
|
904 |
error("Unknown logic " + quote(name) + " -- no heap file found in:\n" + |
62769 | 905 |
cat_lines(input_dirs.map(dir => " " + dir.expand.implode))) |
65287 | 906 |
|
907 |
||
65296 | 908 |
/* session info */ |
65281
c70e7d24a16d
SQL database operations for combined session info;
wenzelm
parents:
65278
diff
changeset
|
909 |
|
65296 | 910 |
def write_session_info( |
65318
342efc382558
eliminated somewhat redundant inlined name (despite a7aa17a1f721);
wenzelm
parents:
65298
diff
changeset
|
911 |
db: SQL.Database, |
65320
52861eebf58d
access table via session_name: db may in principle contain multiple entries;
wenzelm
parents:
65318
diff
changeset
|
912 |
name: String, |
65318
342efc382558
eliminated somewhat redundant inlined name (despite a7aa17a1f721);
wenzelm
parents:
65298
diff
changeset
|
913 |
build_log: Build_Log.Session_Info, |
342efc382558
eliminated somewhat redundant inlined name (despite a7aa17a1f721);
wenzelm
parents:
65298
diff
changeset
|
914 |
build: Build.Session_Info) |
65281
c70e7d24a16d
SQL database operations for combined session info;
wenzelm
parents:
65278
diff
changeset
|
915 |
{ |
c70e7d24a16d
SQL database operations for combined session info;
wenzelm
parents:
65278
diff
changeset
|
916 |
db.transaction { |
65296 | 917 |
db.create_table(Session_Info.table) |
65698 | 918 |
db.using_statement( |
65699 | 919 |
Session_Info.table.delete(Session_Info.session_name.where_equal(name)))(_.execute) |
65698 | 920 |
db.using_statement(Session_Info.table.insert())(stmt => |
65281
c70e7d24a16d
SQL database operations for combined session info;
wenzelm
parents:
65278
diff
changeset
|
921 |
{ |
65748 | 922 |
stmt.string(1) = name |
65857 | 923 |
stmt.bytes(2) = Properties.encode(build_log.session_timing) |
924 |
stmt.bytes(3) = Properties.compress(build_log.command_timings) |
|
66873
9953ae603a23
provide theory timing information, similar to command timing but always considered relevant;
wenzelm
parents:
66857
diff
changeset
|
925 |
stmt.bytes(4) = Properties.compress(build_log.theory_timings) |
9953ae603a23
provide theory timing information, similar to command timing but always considered relevant;
wenzelm
parents:
66857
diff
changeset
|
926 |
stmt.bytes(5) = Properties.compress(build_log.ml_statistics) |
9953ae603a23
provide theory timing information, similar to command timing but always considered relevant;
wenzelm
parents:
66857
diff
changeset
|
927 |
stmt.bytes(6) = Properties.compress(build_log.task_statistics) |
9953ae603a23
provide theory timing information, similar to command timing but always considered relevant;
wenzelm
parents:
66857
diff
changeset
|
928 |
stmt.bytes(7) = Build_Log.compress_errors(build_log.errors) |
9953ae603a23
provide theory timing information, similar to command timing but always considered relevant;
wenzelm
parents:
66857
diff
changeset
|
929 |
stmt.string(8) = build.sources |
9953ae603a23
provide theory timing information, similar to command timing but always considered relevant;
wenzelm
parents:
66857
diff
changeset
|
930 |
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
|
931 |
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
|
932 |
stmt.int(11) = build.return_code |
65281
c70e7d24a16d
SQL database operations for combined session info;
wenzelm
parents:
65278
diff
changeset
|
933 |
stmt.execute() |
c70e7d24a16d
SQL database operations for combined session info;
wenzelm
parents:
65278
diff
changeset
|
934 |
}) |
c70e7d24a16d
SQL database operations for combined session info;
wenzelm
parents:
65278
diff
changeset
|
935 |
} |
c70e7d24a16d
SQL database operations for combined session info;
wenzelm
parents:
65278
diff
changeset
|
936 |
} |
c70e7d24a16d
SQL database operations for combined session info;
wenzelm
parents:
65278
diff
changeset
|
937 |
|
65320
52861eebf58d
access table via session_name: db may in principle contain multiple entries;
wenzelm
parents:
65318
diff
changeset
|
938 |
def read_session_timing(db: SQL.Database, name: String): Properties.T = |
65857 | 939 |
Properties.decode(read_bytes(db, name, Session_Info.session_timing), Some(xml_cache)) |
65286 | 940 |
|
65320
52861eebf58d
access table via session_name: db may in principle contain multiple entries;
wenzelm
parents:
65318
diff
changeset
|
941 |
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
|
942 |
read_properties(db, name, Session_Info.command_timings) |
65286 | 943 |
|
66873
9953ae603a23
provide theory timing information, similar to command timing but always considered relevant;
wenzelm
parents:
66857
diff
changeset
|
944 |
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
|
945 |
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
|
946 |
|
65320
52861eebf58d
access table via session_name: db may in principle contain multiple entries;
wenzelm
parents:
65318
diff
changeset
|
947 |
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
|
948 |
read_properties(db, name, Session_Info.ml_statistics) |
65286 | 949 |
|
65320
52861eebf58d
access table via session_name: db may in principle contain multiple entries;
wenzelm
parents:
65318
diff
changeset
|
950 |
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
|
951 |
read_properties(db, name, Session_Info.task_statistics) |
65286 | 952 |
|
65937 | 953 |
def read_errors(db: SQL.Database, name: String): List[String] = |
954 |
Build_Log.uncompress_errors(read_bytes(db, name, Session_Info.errors)) |
|
955 |
||
65320
52861eebf58d
access table via session_name: db may in principle contain multiple entries;
wenzelm
parents:
65318
diff
changeset
|
956 |
def read_build(db: SQL.Database, name: String): Option[Build.Session_Info] = |
66744 | 957 |
{ |
66957
82d13ba817b2
more permissive: db could be empty after hard crash;
wenzelm
parents:
66914
diff
changeset
|
958 |
if (db.tables.contains(Session_Info.table.name)) { |
82d13ba817b2
more permissive: db could be empty after hard crash;
wenzelm
parents:
66914
diff
changeset
|
959 |
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
|
960 |
Session_Info.session_name.where_equal(name)))(stmt => |
82d13ba817b2
more permissive: db could be empty after hard crash;
wenzelm
parents:
66914
diff
changeset
|
961 |
{ |
82d13ba817b2
more permissive: db could be empty after hard crash;
wenzelm
parents:
66914
diff
changeset
|
962 |
val res = stmt.execute_query() |
82d13ba817b2
more permissive: db could be empty after hard crash;
wenzelm
parents:
66914
diff
changeset
|
963 |
if (!res.next()) None |
82d13ba817b2
more permissive: db could be empty after hard crash;
wenzelm
parents:
66914
diff
changeset
|
964 |
else { |
82d13ba817b2
more permissive: db could be empty after hard crash;
wenzelm
parents:
66914
diff
changeset
|
965 |
Some( |
82d13ba817b2
more permissive: db could be empty after hard crash;
wenzelm
parents:
66914
diff
changeset
|
966 |
Build.Session_Info( |
82d13ba817b2
more permissive: db could be empty after hard crash;
wenzelm
parents:
66914
diff
changeset
|
967 |
res.string(Session_Info.sources), |
82d13ba817b2
more permissive: db could be empty after hard crash;
wenzelm
parents:
66914
diff
changeset
|
968 |
split_lines(res.string(Session_Info.input_heaps)), |
82d13ba817b2
more permissive: db could be empty after hard crash;
wenzelm
parents:
66914
diff
changeset
|
969 |
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
|
970 |
res.int(Session_Info.return_code))) |
82d13ba817b2
more permissive: db could be empty after hard crash;
wenzelm
parents:
66914
diff
changeset
|
971 |
} |
82d13ba817b2
more permissive: db could be empty after hard crash;
wenzelm
parents:
66914
diff
changeset
|
972 |
}) |
82d13ba817b2
more permissive: db could be empty after hard crash;
wenzelm
parents:
66914
diff
changeset
|
973 |
} |
82d13ba817b2
more permissive: db could be empty after hard crash;
wenzelm
parents:
66914
diff
changeset
|
974 |
else None |
66744 | 975 |
} |
65281
c70e7d24a16d
SQL database operations for combined session info;
wenzelm
parents:
65278
diff
changeset
|
976 |
} |
62631 | 977 |
} |