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