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