author | wenzelm |
Thu, 10 Aug 2023 15:11:21 +0200 | |
changeset 78502 | 5e59f6a46b2f |
parent 78407 | b262ecc98319 |
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} |
62631 | 10 |
|
73364 | 11 |
import scala.collection.immutable.{SortedSet, SortedMap} |
62631 | 12 |
import scala.collection.mutable |
13 |
||
14 |
||
75393 | 15 |
object Sessions { |
77562 | 16 |
/* main operations */ |
17 |
||
18 |
def background0(session: String): Background = Background.empty(session) |
|
19 |
||
20 |
def background(options: Options, |
|
21 |
session: String, |
|
22 |
progress: Progress = new Progress, |
|
23 |
dirs: List[Path] = Nil, |
|
24 |
include_sessions: List[String] = Nil, |
|
25 |
session_ancestor: Option[String] = None, |
|
26 |
session_requirements: Boolean = false |
|
27 |
): Background = { |
|
28 |
Background.load(options, session, progress = progress, dirs = dirs, |
|
29 |
include_sessions = include_sessions, session_ancestor = session_ancestor, |
|
30 |
session_requirements = session_requirements) |
|
31 |
} |
|
32 |
||
33 |
def load_structure( |
|
34 |
options: Options, |
|
35 |
dirs: List[Path] = Nil, |
|
36 |
select_dirs: List[Path] = Nil, |
|
37 |
infos: List[Info] = Nil, |
|
38 |
augment_options: String => List[Options.Spec] = _ => Nil |
|
39 |
): Structure = { |
|
40 |
val roots = load_root_files(dirs = dirs, select_dirs = select_dirs) |
|
41 |
Structure.make(options, augment_options, roots = roots, infos = infos) |
|
42 |
} |
|
43 |
||
44 |
def deps(sessions_structure: Structure, |
|
45 |
progress: Progress = new Progress, |
|
46 |
inlined_files: Boolean = false, |
|
47 |
list_files: Boolean = false, |
|
48 |
check_keywords: Set[String] = Set.empty |
|
49 |
): Deps = { |
|
50 |
Deps.load(sessions_structure, progress = progress, inlined_files = inlined_files, |
|
51 |
list_files = list_files, check_keywords = check_keywords) |
|
52 |
} |
|
53 |
||
54 |
||
67284 | 55 |
/* session and theory names */ |
62883 | 56 |
|
72837 | 57 |
val ROOTS: Path = Path.explode("ROOTS") |
72832 | 58 |
val ROOT: Path = Path.explode("ROOT") |
59 |
||
72837 | 60 |
val roots_name: String = "ROOTS" |
67215 | 61 |
val root_name: String = "ROOT" |
75406 | 62 |
val theory_import: String = "Pure.Sessions" |
67215 | 63 |
|
69762
58fb0d779583
support for session information via virtual file-system;
wenzelm
parents:
69671
diff
changeset
|
64 |
val UNSORTED = "Unsorted" |
65445
e9e7f5f5794c
more qualifier treatment, but in the end it is still ignored;
wenzelm
parents:
65441
diff
changeset
|
65 |
val DRAFT = "Draft" |
e9e7f5f5794c
more qualifier treatment, but in the end it is still ignored;
wenzelm
parents:
65441
diff
changeset
|
66 |
|
65360 | 67 |
def is_pure(name: String): Boolean = name == Thy_Header.PURE |
64856 | 68 |
|
75922 | 69 |
def illegal_session(name: String): Boolean = name == "" || name == DRAFT |
76849
d431a9340163
more systematic Sessions.illegal_theory, based on File_Format.theory_excluded;
wenzelm
parents:
76829
diff
changeset
|
70 |
def illegal_theory(name: String): Boolean = |
76850 | 71 |
name == root_name || File_Format.registry.theory_excluded(name) |
67284 | 72 |
|
73 |
||
72837 | 74 |
/* ROOTS file format */ |
75 |
||
76850 | 76 |
class ROOTS_File_Format extends File_Format { |
72837 | 77 |
val format_name: String = roots_name |
78 |
val file_ext = "" |
|
72839
a597300290de
clarified File_Format.detect: needs to operate on full node name;
wenzelm
parents:
72837
diff
changeset
|
79 |
|
a597300290de
clarified File_Format.detect: needs to operate on full node name;
wenzelm
parents:
72837
diff
changeset
|
80 |
override def detect(name: String): Boolean = |
76828 | 81 |
Url.get_base_name(name) match { |
82 |
case Some(base_name) => base_name == roots_name |
|
72839
a597300290de
clarified File_Format.detect: needs to operate on full node name;
wenzelm
parents:
72837
diff
changeset
|
83 |
case None => false |
a597300290de
clarified File_Format.detect: needs to operate on full node name;
wenzelm
parents:
72837
diff
changeset
|
84 |
} |
72837 | 85 |
|
86 |
override def theory_suffix: String = "ROOTS_file" |
|
87 |
override def theory_content(name: String): String = |
|
76859 | 88 |
"""theory "ROOTS" imports Pure begin ROOTS_file "." end""" |
76849
d431a9340163
more systematic Sessions.illegal_theory, based on File_Format.theory_excluded;
wenzelm
parents:
76829
diff
changeset
|
89 |
override def theory_excluded(name: String): Boolean = name == "ROOTS" |
72837 | 90 |
} |
91 |
||
92 |
||
76597 | 93 |
/* base info */ |
67284 | 94 |
|
76654 | 95 |
object Base { |
96 |
val bootstrap: Base = Base(overall_syntax = Thy_Header.bootstrap_syntax) |
|
97 |
} |
|
98 |
||
65495 | 99 |
sealed case class Base( |
75750
2eee2fdfb6e2
clarified signature: proper session_name for Sessions.Base (like Sessions.Info);
wenzelm
parents:
75749
diff
changeset
|
100 |
session_name: String = "", |
75749 | 101 |
session_pos: Position.T = Position.none, |
75748 | 102 |
proper_session_theories: List[Document.Node.Name] = Nil, |
72600
2fa4f25d9d07
official support for document theories from other sessions;
wenzelm
parents:
72574
diff
changeset
|
103 |
document_theories: List[Document.Node.Name] = Nil, |
75740 | 104 |
loaded_theories: Graph[String, Outer_Syntax] = Graph.string, // cumulative imports |
105 |
used_theories: List[(Document.Node.Name, Options)] = Nil, // new imports |
|
76872 | 106 |
theory_load_commands: Map[String, List[Command_Span.Span]] = Map.empty, |
70740 | 107 |
known_theories: Map[String, Document.Node.Entry] = Map.empty, |
108 |
known_loaded_files: Map[String, List[Path]] = Map.empty, |
|
66720 | 109 |
overall_syntax: Outer_Syntax = Outer_Syntax.empty, |
66744 | 110 |
imported_sources: List[(Path, SHA1.Digest)] = Nil, |
75741 | 111 |
session_sources: List[(Path, SHA1.Digest)] = Nil, |
66822 | 112 |
session_graph_display: Graph_Display.Graph = Graph_Display.empty_graph, |
75393 | 113 |
errors: List[String] = Nil |
114 |
) { |
|
75885
8342cba8eae8
clarified signature: avoid constants from Sessions.Structure within Session.Base;
wenzelm
parents:
75884
diff
changeset
|
115 |
def session_entry: (String, Base) = session_name -> this |
8342cba8eae8
clarified signature: avoid constants from Sessions.Structure within Session.Base;
wenzelm
parents:
75884
diff
changeset
|
116 |
|
76661 | 117 |
override def toString: String = "Sessions.Base(" + print_body + ")" |
118 |
def print_body: String = |
|
119 |
"session_name = " + quote(session_name) + |
|
120 |
", loaded_theories = " + loaded_theories.size + |
|
121 |
", used_theories = " + used_theories.length |
|
69102
4b06a20b13b5
tuned output -- avoid bombing of Scala toplevel, e.g. for AFP deps;
wenzelm
parents:
69080
diff
changeset
|
122 |
|
77204 | 123 |
def all_sources: List[(Path, SHA1.Digest)] = imported_sources ::: session_sources |
124 |
||
76628 | 125 |
def all_document_theories: List[Document.Node.Name] = |
126 |
proper_session_theories ::: document_theories |
|
127 |
||
66717
67dbf5cdc056
more informative loaded_theories: dependencies and syntax;
wenzelm
parents:
66716
diff
changeset
|
128 |
def loaded_theory(name: String): Boolean = loaded_theories.defined(name) |
66712 | 129 |
def loaded_theory(name: Document.Node.Name): Boolean = loaded_theory(name.theory) |
65432 | 130 |
|
66717
67dbf5cdc056
more informative loaded_theories: dependencies and syntax;
wenzelm
parents:
66716
diff
changeset
|
131 |
def loaded_theory_syntax(name: String): Option[Outer_Syntax] = |
67dbf5cdc056
more informative loaded_theories: dependencies and syntax;
wenzelm
parents:
66716
diff
changeset
|
132 |
if (loaded_theory(name)) Some(loaded_theories.get_node(name)) else None |
67dbf5cdc056
more informative loaded_theories: dependencies and syntax;
wenzelm
parents:
66716
diff
changeset
|
133 |
def loaded_theory_syntax(name: Document.Node.Name): Option[Outer_Syntax] = |
67dbf5cdc056
more informative loaded_theories: dependencies and syntax;
wenzelm
parents:
66716
diff
changeset
|
134 |
loaded_theory_syntax(name.theory) |
67dbf5cdc056
more informative loaded_theories: dependencies and syntax;
wenzelm
parents:
66716
diff
changeset
|
135 |
|
72669 | 136 |
def theory_syntax(name: Document.Node.Name): Outer_Syntax = |
137 |
loaded_theory_syntax(name) getOrElse overall_syntax |
|
138 |
||
66770
122df1fde073
clarified node_syntax (amending ae38b8c0fdd9): default to overall_syntax, e.g. relevant for command spans wrt. bad header;
wenzelm
parents:
66764
diff
changeset
|
139 |
def node_syntax(nodes: Document.Nodes, name: Document.Node.Name): Outer_Syntax = |
122df1fde073
clarified node_syntax (amending ae38b8c0fdd9): default to overall_syntax, e.g. relevant for command spans wrt. bad header;
wenzelm
parents:
66764
diff
changeset
|
140 |
nodes(name).syntax orElse loaded_theory_syntax(name) getOrElse overall_syntax |
65355 | 141 |
} |
64856 | 142 |
|
76677 | 143 |
|
144 |
/* background context */ |
|
145 |
||
77562 | 146 |
object Background { |
147 |
def empty(session: String): Background = |
|
148 |
Background(Base(session_name = session)) |
|
149 |
||
150 |
def load(options: Options, |
|
151 |
session: String, |
|
152 |
progress: Progress = new Progress, |
|
153 |
dirs: List[Path] = Nil, |
|
154 |
include_sessions: List[String] = Nil, |
|
155 |
session_ancestor: Option[String] = None, |
|
156 |
session_requirements: Boolean = false |
|
157 |
): Background = { |
|
158 |
val full_sessions = load_structure(options, dirs = dirs) |
|
159 |
||
160 |
val selected_sessions = |
|
161 |
full_sessions.selection(Selection(sessions = session :: session_ancestor.toList)) |
|
162 |
val info = selected_sessions(session) |
|
163 |
val ancestor = session_ancestor orElse info.parent |
|
164 |
||
165 |
val (session1, infos1) = |
|
166 |
if (session_requirements && ancestor.isDefined) { |
|
167 |
val deps = Sessions.deps(selected_sessions, progress = progress) |
|
168 |
val base = deps(session) |
|
169 |
||
170 |
val ancestor_loaded = |
|
171 |
deps.get(ancestor.get) match { |
|
172 |
case Some(ancestor_base) |
|
173 |
if !selected_sessions.imports_requirements(List(ancestor.get)).contains(session) => |
|
174 |
ancestor_base.loaded_theories.defined _ |
|
175 |
case _ => |
|
176 |
error("Bad ancestor " + quote(ancestor.get) + " for session " + quote(session)) |
|
177 |
} |
|
178 |
||
179 |
val required_theories = |
|
180 |
for { |
|
181 |
thy <- base.loaded_theories.keys |
|
182 |
if !ancestor_loaded(thy) && selected_sessions.theory_qualifier(thy) != session |
|
183 |
} |
|
184 |
yield thy |
|
185 |
||
186 |
if (required_theories.isEmpty) (ancestor.get, Nil) |
|
187 |
else { |
|
188 |
val other_name = info.name + "_requirements(" + ancestor.get + ")" |
|
189 |
Isabelle_System.isabelle_tmp_prefix() |
|
190 |
||
191 |
(other_name, |
|
192 |
List( |
|
193 |
Info.make( |
|
194 |
Chapter_Defs.empty, |
|
77675
9e5f8f6e58a0
more thorough treatment of build prefs, guarded by system option "build_through": avoid accidental rebuild of HOL etc.;
wenzelm
parents:
77629
diff
changeset
|
195 |
Options.init0(), |
77562 | 196 |
info.options, |
197 |
augment_options = _ => Nil, |
|
198 |
dir_selected = false, |
|
199 |
dir = Path.explode("$ISABELLE_TMP_PREFIX"), |
|
200 |
chapter = info.chapter, |
|
201 |
Session_Entry( |
|
202 |
pos = info.pos, |
|
203 |
name = other_name, |
|
204 |
groups = info.groups, |
|
205 |
path = ".", |
|
206 |
parent = ancestor, |
|
207 |
description = "Required theory imports from other sessions", |
|
208 |
options = Nil, |
|
209 |
imports = info.deps, |
|
210 |
directories = Nil, |
|
211 |
theories = List((Nil, required_theories.map(thy => ((thy, Position.none), false)))), |
|
212 |
document_theories = Nil, |
|
213 |
document_files = Nil, |
|
214 |
export_files = Nil, |
|
215 |
export_classpath = Nil)))) |
|
216 |
} |
|
217 |
} |
|
218 |
else (session, Nil) |
|
219 |
||
220 |
val full_sessions1 = |
|
221 |
if (infos1.isEmpty) full_sessions |
|
222 |
else load_structure(options, dirs = dirs, infos = infos1) |
|
223 |
||
224 |
val selected_sessions1 = |
|
225 |
full_sessions1.selection(Selection(sessions = session1 :: session :: include_sessions)) |
|
226 |
||
227 |
val deps1 = Sessions.deps(selected_sessions1, progress = progress) |
|
228 |
||
229 |
Background(deps1(session1), sessions_structure = full_sessions1, |
|
230 |
errors = deps1.errors, infos = infos1) |
|
231 |
} |
|
232 |
} |
|
233 |
||
76656 | 234 |
sealed case class Background( |
76597 | 235 |
base: Base, |
236 |
sessions_structure: Structure = Structure.empty, |
|
237 |
errors: List[String] = Nil, |
|
238 |
infos: List[Info] = Nil |
|
239 |
) { |
|
240 |
def session_name: String = base.session_name |
|
76732 | 241 |
def info: Info = sessions_structure(session_name) |
76597 | 242 |
|
76656 | 243 |
def check_errors: Background = |
76597 | 244 |
if (errors.isEmpty) this |
245 |
else error(cat_lines(errors)) |
|
246 |
} |
|
247 |
||
248 |
||
77562 | 249 |
/* source dependencies */ |
76597 | 250 |
|
77562 | 251 |
object Deps { |
252 |
def load(sessions_structure: Structure, |
|
253 |
progress: Progress = new Progress, |
|
254 |
inlined_files: Boolean = false, |
|
255 |
list_files: Boolean = false, |
|
256 |
check_keywords: Set[String] = Set.empty |
|
257 |
): Deps = { |
|
258 |
var cache_sources = Map.empty[JFile, SHA1.Digest] |
|
259 |
def check_sources(paths: List[Path]): List[(Path, SHA1.Digest)] = { |
|
260 |
for { |
|
261 |
path <- paths |
|
262 |
file = path.file |
|
263 |
if cache_sources.isDefinedAt(file) || file.isFile |
|
264 |
} |
|
265 |
yield { |
|
266 |
cache_sources.get(file) match { |
|
267 |
case Some(digest) => (path, digest) |
|
268 |
case None => |
|
269 |
val digest = SHA1.digest(file) |
|
270 |
cache_sources = cache_sources + (file -> digest) |
|
271 |
(path, digest) |
|
76597 | 272 |
} |
273 |
} |
|
274 |
} |
|
77562 | 275 |
|
276 |
val session_bases = |
|
277 |
sessions_structure.imports_topological_order.foldLeft(Map(Base.bootstrap.session_entry)) { |
|
278 |
case (session_bases, session_name) => |
|
279 |
progress.expose_interrupt() |
|
280 |
||
281 |
val info = sessions_structure(session_name) |
|
282 |
try { |
|
283 |
val deps_base = info.deps_base(session_bases) |
|
284 |
val session_background = |
|
285 |
Background(base = deps_base, sessions_structure = sessions_structure) |
|
286 |
val resources = new Resources(session_background) |
|
287 |
||
288 |
progress.echo( |
|
289 |
"Session " + info.chapter + "/" + session_name + |
|
290 |
if_proper(info.groups, info.groups.mkString(" (", " ", ")")), |
|
291 |
verbose = !list_files) |
|
292 |
||
293 |
val dependencies = resources.session_dependencies(info) |
|
294 |
||
295 |
val overall_syntax = dependencies.overall_syntax |
|
296 |
||
297 |
val proper_session_theories = |
|
298 |
dependencies.theories.filter(name => |
|
299 |
sessions_structure.theory_qualifier(name) == session_name) |
|
300 |
||
301 |
val theory_files = dependencies.theories.map(_.path) |
|
302 |
||
303 |
val (load_commands, load_commands_errors) = |
|
304 |
try { if (inlined_files) (dependencies.load_commands, Nil) else (Nil, Nil) } |
|
305 |
catch { case ERROR(msg) => (Nil, List(msg)) } |
|
306 |
||
307 |
val theory_load_commands = |
|
308 |
(for ((name, span) <- load_commands.iterator) yield name.theory -> span).toMap |
|
309 |
||
310 |
val loaded_files: List[(String, List[Path])] = |
|
311 |
for ((name, spans) <- load_commands) yield { |
|
312 |
val (theory, files) = dependencies.loaded_files(name, spans) |
|
313 |
theory -> files.map(file => Path.explode(file.node)) |
|
314 |
} |
|
315 |
||
316 |
val document_files = |
|
317 |
for ((path1, path2) <- info.document_files) |
|
318 |
yield info.dir + path1 + path2 |
|
319 |
||
320 |
val session_files = |
|
321 |
(theory_files ::: loaded_files.flatMap(_._2) ::: document_files).map(_.expand) |
|
322 |
||
323 |
val imported_files = if (inlined_files) dependencies.imported_files else Nil |
|
76597 | 324 |
|
77562 | 325 |
if (list_files) { |
326 |
progress.echo(cat_lines(session_files.map(_.implode).sorted.map(" " + _))) |
|
327 |
} |
|
328 |
||
329 |
if (check_keywords.nonEmpty) { |
|
330 |
Check_Keywords.check_keywords( |
|
331 |
progress, overall_syntax.keywords, check_keywords, theory_files) |
|
332 |
} |
|
333 |
||
334 |
val session_graph_display: Graph_Display.Graph = { |
|
335 |
def session_node(name: String): Graph_Display.Node = |
|
336 |
Graph_Display.Node("[" + name + "]", "session." + name) |
|
337 |
||
338 |
def node(name: Document.Node.Name): Graph_Display.Node = { |
|
339 |
val qualifier = sessions_structure.theory_qualifier(name) |
|
340 |
if (qualifier == info.name) { |
|
341 |
Graph_Display.Node(name.theory_base_name, "theory." + name.theory) |
|
342 |
} |
|
343 |
else session_node(qualifier) |
|
344 |
} |
|
345 |
||
346 |
val required_sessions = |
|
347 |
dependencies.loaded_theories.all_preds(dependencies.theories.map(_.theory)) |
|
348 |
.map(theory => sessions_structure.theory_qualifier(theory)) |
|
349 |
.filter(name => name != info.name && sessions_structure.defined(name)) |
|
76597 | 350 |
|
77562 | 351 |
val required_subgraph = |
352 |
sessions_structure.imports_graph |
|
353 |
.restrict(sessions_structure.imports_graph.all_preds(required_sessions).toSet) |
|
354 |
.transitive_closure |
|
355 |
.restrict(required_sessions.toSet) |
|
356 |
.transitive_reduction_acyclic |
|
357 |
||
358 |
val graph0 = |
|
359 |
required_subgraph.topological_order.foldLeft(Graph_Display.empty_graph) { |
|
360 |
case (g, session) => |
|
361 |
val a = session_node(session) |
|
362 |
val bs = required_subgraph.imm_preds(session).toList.map(session_node) |
|
363 |
bs.foldLeft((a :: bs).foldLeft(g)(_.default_node(_, Nil)))(_.add_edge(_, a)) |
|
364 |
} |
|
365 |
||
366 |
dependencies.entries.foldLeft(graph0) { |
|
367 |
case (g, entry) => |
|
368 |
val a = node(entry.name) |
|
369 |
val bs = entry.header.imports.map(node).filterNot(_ == a) |
|
370 |
bs.foldLeft((a :: bs).foldLeft(g)(_.default_node(_, Nil)))(_.add_edge(_, a)) |
|
371 |
} |
|
372 |
} |
|
373 |
||
374 |
val known_theories = |
|
375 |
dependencies.entries.iterator.map(entry => entry.name.theory -> entry). |
|
376 |
foldLeft(deps_base.known_theories)(_ + _) |
|
377 |
||
378 |
val known_loaded_files = deps_base.known_loaded_files ++ loaded_files |
|
76597 | 379 |
|
77562 | 380 |
val import_errors = { |
381 |
val known_sessions = |
|
382 |
sessions_structure.imports_requirements(List(session_name)).toSet |
|
383 |
for { |
|
384 |
name <- dependencies.theories |
|
385 |
qualifier = sessions_structure.theory_qualifier(name) |
|
386 |
if !known_sessions(qualifier) |
|
387 |
} yield "Bad import of theory " + quote(name.toString) + |
|
388 |
": need to include sessions " + quote(qualifier) + " in ROOT" |
|
389 |
} |
|
390 |
||
391 |
val document_errors = |
|
392 |
info.document_theories.flatMap( |
|
393 |
{ |
|
394 |
case (thy, pos) => |
|
395 |
val build_hierarchy = |
|
396 |
if (sessions_structure.build_graph.defined(session_name)) { |
|
397 |
sessions_structure.build_hierarchy(session_name) |
|
398 |
} |
|
399 |
else Nil |
|
400 |
||
401 |
def err(msg: String): Option[String] = |
|
402 |
Some(msg + " " + quote(thy) + Position.here(pos)) |
|
403 |
||
404 |
known_theories.get(thy).map(_.name) match { |
|
405 |
case None => err("Unknown document theory") |
|
406 |
case Some(name) => |
|
407 |
val qualifier = sessions_structure.theory_qualifier(name) |
|
408 |
if (proper_session_theories.contains(name)) { |
|
409 |
err("Redundant document theory from this session:") |
|
410 |
} |
|
411 |
else if ( |
|
412 |
!build_hierarchy.contains(qualifier) && |
|
413 |
!dependencies.theories.contains(name) |
|
414 |
) { |
|
415 |
err("Document theory from other session not imported properly:") |
|
416 |
} |
|
417 |
else None |
|
418 |
} |
|
419 |
}) |
|
420 |
val document_theories = |
|
421 |
info.document_theories.map({ case (thy, _) => known_theories(thy).name }) |
|
422 |
||
423 |
val dir_errors = { |
|
424 |
val ok = info.dirs.map(_.canonical_file).toSet |
|
425 |
val bad = |
|
426 |
(for { |
|
427 |
name <- proper_session_theories.iterator |
|
428 |
path = Path.explode(name.master_dir) |
|
429 |
if !ok(path.canonical_file) |
|
430 |
path1 = File.relative_path(info.dir.canonical, path).getOrElse(path) |
|
431 |
} yield (path1, name)).toList |
|
432 |
val bad_dirs = (for { (path1, _) <- bad } yield path1.toString).distinct.sorted |
|
76597 | 433 |
|
77562 | 434 |
val errs1 = |
435 |
for { (path1, name) <- bad } |
|
436 |
yield "Implicit use of directory " + path1 + " for theory " + quote(name.toString) |
|
437 |
val errs2 = |
|
438 |
if (bad_dirs.isEmpty) Nil |
|
439 |
else List("Implicit use of session directories: " + commas(bad_dirs)) |
|
440 |
val errs3 = for (p <- info.dirs if !p.is_dir) yield "No such directory: " + p |
|
441 |
val errs4 = |
|
442 |
(for { |
|
443 |
name <- proper_session_theories.iterator |
|
444 |
name1 <- resources.find_theory_node(name.theory) |
|
445 |
if name.node != name1.node |
|
446 |
} yield { |
|
447 |
"Incoherent theory file import:\n " + quote(name.node) + |
|
448 |
" vs. \n " + quote(name1.node) |
|
449 |
}).toList |
|
450 |
||
451 |
errs1 ::: errs2 ::: errs3 ::: errs4 |
|
452 |
} |
|
453 |
||
454 |
val sources_errors = |
|
455 |
for (p <- session_files if !p.is_file) yield "No such file: " + p |
|
456 |
||
457 |
val path_errors = |
|
458 |
try { Path.check_case_insensitive(session_files ::: imported_files); Nil } |
|
459 |
catch { case ERROR(msg) => List(msg) } |
|
460 |
||
461 |
val bibtex_errors = info.bibtex_entries.errors |
|
462 |
||
463 |
val base = |
|
464 |
Base( |
|
465 |
session_name = info.name, |
|
466 |
session_pos = info.pos, |
|
467 |
proper_session_theories = proper_session_theories, |
|
468 |
document_theories = document_theories, |
|
469 |
loaded_theories = dependencies.loaded_theories, |
|
470 |
used_theories = dependencies.theories_adjunct, |
|
471 |
theory_load_commands = theory_load_commands, |
|
472 |
known_theories = known_theories, |
|
473 |
known_loaded_files = known_loaded_files, |
|
474 |
overall_syntax = overall_syntax, |
|
475 |
imported_sources = check_sources(imported_files), |
|
476 |
session_sources = check_sources(session_files), |
|
477 |
session_graph_display = session_graph_display, |
|
478 |
errors = dependencies.errors ::: load_commands_errors ::: import_errors ::: |
|
479 |
document_errors ::: dir_errors ::: sources_errors ::: path_errors ::: |
|
480 |
bibtex_errors) |
|
481 |
||
482 |
session_bases + base.session_entry |
|
483 |
} |
|
484 |
catch { |
|
485 |
case ERROR(msg) => |
|
486 |
cat_error(msg, "The error(s) above occurred in session " + |
|
487 |
quote(info.name) + Position.here(info.pos)) |
|
488 |
} |
|
489 |
} |
|
490 |
||
491 |
new Deps(sessions_structure, session_bases) |
|
492 |
} |
|
76597 | 493 |
} |
494 |
||
77560 | 495 |
final class Deps private[Sessions]( |
496 |
val sessions_structure: Structure, |
|
497 |
val session_bases: Map[String, Base] |
|
498 |
) { |
|
76656 | 499 |
def background(session: String): Background = |
500 |
Background(base = apply(session), sessions_structure = sessions_structure, errors = errors) |
|
69102
4b06a20b13b5
tuned output -- avoid bombing of Scala toplevel, e.g. for AFP deps;
wenzelm
parents:
69080
diff
changeset
|
501 |
|
76279
2d4ff8c166d2
proper Deps.is_empty (amending 77327455b00d), e.g. relevant for warning "Nothing to build";
wenzelm
parents:
76107
diff
changeset
|
502 |
def is_empty: Boolean = session_bases.keysIterator.forall(_.isEmpty) |
65463
104502de757c
more informative known_files: known_theories within the local session directory come first;
wenzelm
parents:
65461
diff
changeset
|
503 |
def apply(name: String): Base = session_bases(name) |
66988 | 504 |
def get(name: String): Option[Base] = session_bases.get(name) |
66744 | 505 |
|
77207
d98a99e4eea9
proper Shasum.digest, to emulate old form from build_history database;
wenzelm
parents:
77206
diff
changeset
|
506 |
def sources_shasum(name: String): SHA1.Shasum = { |
77675
9e5f8f6e58a0
more thorough treatment of build prefs, guarded by system option "build_through": avoid accidental rebuild of HOL etc.;
wenzelm
parents:
77629
diff
changeset
|
507 |
val meta_info = sessions_structure(name).meta_info |
77204 | 508 |
val sources = |
77211 | 509 |
SHA1.shasum_sorted( |
510 |
for ((path, digest) <- apply(name).all_sources) |
|
511 |
yield digest -> File.symbolic_path(path)) |
|
77214
df8d71edbc79
clarified signature, using right-associative operation;
wenzelm
parents:
77211
diff
changeset
|
512 |
meta_info ::: sources |
77204 | 513 |
} |
66571 | 514 |
|
515 |
def errors: List[String] = |
|
516 |
(for { |
|
517 |
(name, base) <- session_bases.iterator |
|
518 |
if base.errors.nonEmpty |
|
519 |
} yield cat_lines(base.errors) + |
|
75749 | 520 |
"\nThe error(s) above occurred in session " + quote(name) + Position.here(base.session_pos) |
66571 | 521 |
).toList |
522 |
||
523 |
def check_errors: Deps = |
|
524 |
errors match { |
|
525 |
case Nil => this |
|
526 |
case errs => error(cat_lines(errs)) |
|
527 |
} |
|
75774
efc25bf4b795
discontinued Export.Provider in favour of Export.Context and its derivatives;
wenzelm
parents:
75773
diff
changeset
|
528 |
|
76597 | 529 |
override def toString: String = "Sessions.Deps(" + sessions_structure + ")" |
65251 | 530 |
} |
64856 | 531 |
|
66963 | 532 |
|
65415
8cd54b18b68b
clarified signature: tree structure is not essential;
wenzelm
parents:
65410
diff
changeset
|
533 |
/* cumulative session info */ |
62631 | 534 |
|
78502
5e59f6a46b2f
more informative shasum: show differences explicitly;
wenzelm
parents:
78407
diff
changeset
|
535 |
private val BUILD_PREFS_BG = "<build_prefs:" |
5e59f6a46b2f
more informative shasum: show differences explicitly;
wenzelm
parents:
78407
diff
changeset
|
536 |
private val BUILD_PREFS_EN = ">" |
5e59f6a46b2f
more informative shasum: show differences explicitly;
wenzelm
parents:
78407
diff
changeset
|
537 |
|
5e59f6a46b2f
more informative shasum: show differences explicitly;
wenzelm
parents:
78407
diff
changeset
|
538 |
def make_build_prefs(name: String): String = |
5e59f6a46b2f
more informative shasum: show differences explicitly;
wenzelm
parents:
78407
diff
changeset
|
539 |
BUILD_PREFS_BG + name + BUILD_PREFS_EN |
5e59f6a46b2f
more informative shasum: show differences explicitly;
wenzelm
parents:
78407
diff
changeset
|
540 |
|
5e59f6a46b2f
more informative shasum: show differences explicitly;
wenzelm
parents:
78407
diff
changeset
|
541 |
def is_build_prefs(s: String): Boolean = { |
5e59f6a46b2f
more informative shasum: show differences explicitly;
wenzelm
parents:
78407
diff
changeset
|
542 |
val i = s.indexOf('<') |
5e59f6a46b2f
more informative shasum: show differences explicitly;
wenzelm
parents:
78407
diff
changeset
|
543 |
i >= 0 && { |
5e59f6a46b2f
more informative shasum: show differences explicitly;
wenzelm
parents:
78407
diff
changeset
|
544 |
val s1 = s.substring(i) |
5e59f6a46b2f
more informative shasum: show differences explicitly;
wenzelm
parents:
78407
diff
changeset
|
545 |
s1.startsWith(BUILD_PREFS_BG) && s1.endsWith(BUILD_PREFS_EN) |
5e59f6a46b2f
more informative shasum: show differences explicitly;
wenzelm
parents:
78407
diff
changeset
|
546 |
} |
5e59f6a46b2f
more informative shasum: show differences explicitly;
wenzelm
parents:
78407
diff
changeset
|
547 |
} |
77675
9e5f8f6e58a0
more thorough treatment of build prefs, guarded by system option "build_through": avoid accidental rebuild of HOL etc.;
wenzelm
parents:
77629
diff
changeset
|
548 |
|
9e5f8f6e58a0
more thorough treatment of build prefs, guarded by system option "build_through": avoid accidental rebuild of HOL etc.;
wenzelm
parents:
77629
diff
changeset
|
549 |
def eq_sources(options: Options, shasum1: SHA1.Shasum, shasum2: SHA1.Shasum): Boolean = |
9e5f8f6e58a0
more thorough treatment of build prefs, guarded by system option "build_through": avoid accidental rebuild of HOL etc.;
wenzelm
parents:
77629
diff
changeset
|
550 |
if (options.bool("build_thorough")) shasum1 == shasum2 |
9e5f8f6e58a0
more thorough treatment of build prefs, guarded by system option "build_through": avoid accidental rebuild of HOL etc.;
wenzelm
parents:
77629
diff
changeset
|
551 |
else { |
9e5f8f6e58a0
more thorough treatment of build prefs, guarded by system option "build_through": avoid accidental rebuild of HOL etc.;
wenzelm
parents:
77629
diff
changeset
|
552 |
def trim(shasum: SHA1.Shasum): SHA1.Shasum = |
78502
5e59f6a46b2f
more informative shasum: show differences explicitly;
wenzelm
parents:
78407
diff
changeset
|
553 |
shasum.filter(s => !is_build_prefs(s)) |
77675
9e5f8f6e58a0
more thorough treatment of build prefs, guarded by system option "build_through": avoid accidental rebuild of HOL etc.;
wenzelm
parents:
77629
diff
changeset
|
554 |
|
9e5f8f6e58a0
more thorough treatment of build prefs, guarded by system option "build_through": avoid accidental rebuild of HOL etc.;
wenzelm
parents:
77629
diff
changeset
|
555 |
trim(shasum1) == trim(shasum2) |
9e5f8f6e58a0
more thorough treatment of build prefs, guarded by system option "build_through": avoid accidental rebuild of HOL etc.;
wenzelm
parents:
77629
diff
changeset
|
556 |
} |
9e5f8f6e58a0
more thorough treatment of build prefs, guarded by system option "build_through": avoid accidental rebuild of HOL etc.;
wenzelm
parents:
77629
diff
changeset
|
557 |
|
75999
b831a0bdd751
clarified signature of Sessions.Session: chapter_defs: vs. known_chapters (in declaration order) vs. chapters (covered by visible sessions);
wenzelm
parents:
75998
diff
changeset
|
558 |
sealed case class Chapter_Info( |
b831a0bdd751
clarified signature of Sessions.Session: chapter_defs: vs. known_chapters (in declaration order) vs. chapters (covered by visible sessions);
wenzelm
parents:
75998
diff
changeset
|
559 |
name: String, |
b831a0bdd751
clarified signature of Sessions.Session: chapter_defs: vs. known_chapters (in declaration order) vs. chapters (covered by visible sessions);
wenzelm
parents:
75998
diff
changeset
|
560 |
pos: Position.T, |
76005
a9bbf075f431
include groups from 'chapter_definition' in session info, based on the state of chapter_defs after processing all ROOT files (thus the declaration order does not matter);
wenzelm
parents:
76002
diff
changeset
|
561 |
groups: List[String], |
75999
b831a0bdd751
clarified signature of Sessions.Session: chapter_defs: vs. known_chapters (in declaration order) vs. chapters (covered by visible sessions);
wenzelm
parents:
75998
diff
changeset
|
562 |
description: String, |
b831a0bdd751
clarified signature of Sessions.Session: chapter_defs: vs. known_chapters (in declaration order) vs. chapters (covered by visible sessions);
wenzelm
parents:
75998
diff
changeset
|
563 |
sessions: List[String] |
b831a0bdd751
clarified signature of Sessions.Session: chapter_defs: vs. known_chapters (in declaration order) vs. chapters (covered by visible sessions);
wenzelm
parents:
75998
diff
changeset
|
564 |
) |
b831a0bdd751
clarified signature of Sessions.Session: chapter_defs: vs. known_chapters (in declaration order) vs. chapters (covered by visible sessions);
wenzelm
parents:
75998
diff
changeset
|
565 |
|
76632 | 566 |
object Info { |
567 |
def make( |
|
568 |
chapter_defs: Chapter_Defs, |
|
77675
9e5f8f6e58a0
more thorough treatment of build prefs, guarded by system option "build_through": avoid accidental rebuild of HOL etc.;
wenzelm
parents:
77629
diff
changeset
|
569 |
options0: Options, |
76632 | 570 |
options: Options, |
76927
da13da82f6f9
treat update_options as part of Sessions.Info meta_digest, for proper re-build of updated sessions;
wenzelm
parents:
76907
diff
changeset
|
571 |
augment_options: String => List[Options.Spec], |
76632 | 572 |
dir_selected: Boolean, |
573 |
dir: Path, |
|
574 |
chapter: String, |
|
575 |
entry: Session_Entry |
|
576 |
): Info = { |
|
577 |
try { |
|
578 |
val name = entry.name |
|
579 |
||
580 |
if (illegal_session(name)) error("Illegal session name " + quote(name)) |
|
581 |
if (is_pure(name) && entry.parent.isDefined) error("Illegal parent session") |
|
582 |
if (!is_pure(name) && !entry.parent.isDefined) error("Missing parent session") |
|
583 |
||
584 |
val session_path = dir + Path.explode(entry.path) |
|
585 |
val directories = entry.directories.map(dir => session_path + Path.explode(dir)) |
|
586 |
||
77627
582a7db1da37
more accurate Sessions.Info.session_prefs: cover relative changes wrt. statically declared options;
wenzelm
parents:
77624
diff
changeset
|
587 |
val session_options0 = options ++ entry.options |
582a7db1da37
more accurate Sessions.Info.session_prefs: cover relative changes wrt. statically declared options;
wenzelm
parents:
77624
diff
changeset
|
588 |
val session_options = session_options0 ++ augment_options(name) |
582a7db1da37
more accurate Sessions.Info.session_prefs: cover relative changes wrt. statically declared options;
wenzelm
parents:
77624
diff
changeset
|
589 |
val session_prefs = |
582a7db1da37
more accurate Sessions.Info.session_prefs: cover relative changes wrt. statically declared options;
wenzelm
parents:
77624
diff
changeset
|
590 |
session_options.make_prefs(defaults = session_options0, filter = _.session_content) |
76632 | 591 |
|
78502
5e59f6a46b2f
more informative shasum: show differences explicitly;
wenzelm
parents:
78407
diff
changeset
|
592 |
val build_prefs_digests = |
5e59f6a46b2f
more informative shasum: show differences explicitly;
wenzelm
parents:
78407
diff
changeset
|
593 |
session_options.changed(defaults = options0, filter = _.session_content) |
5e59f6a46b2f
more informative shasum: show differences explicitly;
wenzelm
parents:
78407
diff
changeset
|
594 |
.map(ch => SHA1.digest(ch.print_prefs) -> make_build_prefs(ch.name)) |
77675
9e5f8f6e58a0
more thorough treatment of build prefs, guarded by system option "build_through": avoid accidental rebuild of HOL etc.;
wenzelm
parents:
77629
diff
changeset
|
595 |
|
76632 | 596 |
val theories = |
597 |
entry.theories.map({ case (opts, thys) => |
|
598 |
(session_options ++ opts, |
|
599 |
thys.map({ case ((thy, pos), _) => |
|
600 |
val thy_name = Thy_Header.import_name(thy) |
|
601 |
if (illegal_theory(thy_name)) { |
|
602 |
error("Illegal theory name " + quote(thy_name) + Position.here(pos)) |
|
603 |
} |
|
604 |
else (thy, pos) })) }) |
|
605 |
||
606 |
val global_theories = |
|
607 |
for { (_, thys) <- entry.theories; ((thy, pos), global) <- thys if global } |
|
608 |
yield { |
|
609 |
val thy_name = Path.explode(thy).file_name |
|
610 |
if (Long_Name.is_qualified(thy_name)) { |
|
611 |
error("Bad qualified name for global theory " + |
|
612 |
quote(thy_name) + Position.here(pos)) |
|
613 |
} |
|
614 |
else thy_name |
|
615 |
} |
|
616 |
||
617 |
val conditions = |
|
618 |
theories.flatMap(thys => space_explode(',', thys._1.string("condition"))).distinct.sorted. |
|
619 |
map(x => (x, Isabelle_System.getenv(x) != "")) |
|
620 |
||
621 |
val document_files = |
|
622 |
entry.document_files.map({ case (s1, s2) => (Path.explode(s1), Path.explode(s2)) }) |
|
623 |
||
624 |
val export_files = |
|
625 |
entry.export_files.map({ case (dir, prune, pats) => (Path.explode(dir), prune, pats) }) |
|
626 |
||
627 |
val meta_digest = |
|
628 |
SHA1.digest( |
|
77627
582a7db1da37
more accurate Sessions.Info.session_prefs: cover relative changes wrt. statically declared options;
wenzelm
parents:
77624
diff
changeset
|
629 |
(name, chapter, entry.parent, entry.directories, entry.options, entry.imports, |
77675
9e5f8f6e58a0
more thorough treatment of build prefs, guarded by system option "build_through": avoid accidental rebuild of HOL etc.;
wenzelm
parents:
77629
diff
changeset
|
630 |
entry.theories_no_position, conditions, entry.document_theories_no_position).toString) |
9e5f8f6e58a0
more thorough treatment of build prefs, guarded by system option "build_through": avoid accidental rebuild of HOL etc.;
wenzelm
parents:
77629
diff
changeset
|
631 |
|
9e5f8f6e58a0
more thorough treatment of build prefs, guarded by system option "build_through": avoid accidental rebuild of HOL etc.;
wenzelm
parents:
77629
diff
changeset
|
632 |
val meta_info = |
78502
5e59f6a46b2f
more informative shasum: show differences explicitly;
wenzelm
parents:
78407
diff
changeset
|
633 |
SHA1.shasum_meta_info(meta_digest) ::: SHA1.shasum_sorted(build_prefs_digests) |
76632 | 634 |
|
635 |
val chapter_groups = chapter_defs(chapter).groups |
|
636 |
val groups = chapter_groups ::: entry.groups.filterNot(chapter_groups.contains) |
|
637 |
||
638 |
Info(name, chapter, dir_selected, entry.pos, groups, session_path, |
|
77610
3b09ae9e40cb
clarified session prefs (or "options" within the database);
wenzelm
parents:
77599
diff
changeset
|
639 |
entry.parent, entry.description, directories, session_options, session_prefs, |
76632 | 640 |
entry.imports, theories, global_theories, entry.document_theories, document_files, |
77675
9e5f8f6e58a0
more thorough treatment of build prefs, guarded by system option "build_through": avoid accidental rebuild of HOL etc.;
wenzelm
parents:
77629
diff
changeset
|
641 |
export_files, entry.export_classpath, meta_info) |
76632 | 642 |
} |
643 |
catch { |
|
644 |
case ERROR(msg) => |
|
645 |
error(msg + "\nThe error(s) above occurred in session entry " + |
|
646 |
quote(entry.name) + Position.here(entry.pos)) |
|
647 |
} |
|
648 |
} |
|
649 |
} |
|
650 |
||
62631 | 651 |
sealed case class Info( |
65519 | 652 |
name: String, |
62631 | 653 |
chapter: String, |
66829 | 654 |
dir_selected: Boolean, |
62631 | 655 |
pos: Position.T, |
656 |
groups: List[String], |
|
657 |
dir: Path, |
|
658 |
parent: Option[String], |
|
659 |
description: String, |
|
70681 | 660 |
directories: List[Path], |
62631 | 661 |
options: Options, |
77610
3b09ae9e40cb
clarified session prefs (or "options" within the database);
wenzelm
parents:
77599
diff
changeset
|
662 |
session_prefs: String, |
65420
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
663 |
imports: List[String], |
65517 | 664 |
theories: List[(Options, List[(String, Position.T)])], |
65374 | 665 |
global_theories: List[String], |
72600
2fa4f25d9d07
official support for document theories from other sessions;
wenzelm
parents:
72574
diff
changeset
|
666 |
document_theories: List[(String, Position.T)], |
62631 | 667 |
document_files: List[(Path, Path)], |
69671 | 668 |
export_files: List[(Path, Int, List[String])], |
75679
aa89255b704c
support for classpath artifacts within session structure:
wenzelm
parents:
75672
diff
changeset
|
669 |
export_classpath: List[String], |
77675
9e5f8f6e58a0
more thorough treatment of build prefs, guarded by system option "build_through": avoid accidental rebuild of HOL etc.;
wenzelm
parents:
77629
diff
changeset
|
670 |
meta_info: SHA1.Shasum |
75393 | 671 |
) { |
66828 | 672 |
def deps: List[String] = parent.toList ::: imports |
673 |
||
75393 | 674 |
def deps_base(session_bases: String => Base): Base = { |
72066 | 675 |
val parent_base = session_bases(parent.getOrElse("")) |
676 |
val imports_bases = imports.map(session_bases) |
|
677 |
parent_base.copy( |
|
678 |
known_theories = |
|
73359 | 679 |
(for { |
680 |
base <- imports_bases.iterator |
|
681 |
(_, entry) <- base.known_theories.iterator |
|
682 |
} yield (entry.name.theory -> entry)).foldLeft(parent_base.known_theories)(_ + _), |
|
72066 | 683 |
known_loaded_files = |
73359 | 684 |
imports_bases.iterator.map(_.known_loaded_files). |
685 |
foldLeft(parent_base.known_loaded_files)(_ ++ _)) |
|
72066 | 686 |
} |
687 |
||
70681 | 688 |
def dirs: List[Path] = dir :: directories |
70668 | 689 |
|
76492
e228be7cd375
clarified GUI.Selector, with support for separator as pseudo-entry;
wenzelm
parents:
76351
diff
changeset
|
690 |
def main_group: Boolean = groups.contains("main") |
e228be7cd375
clarified GUI.Selector, with support for separator as pseudo-entry;
wenzelm
parents:
76351
diff
changeset
|
691 |
def doc_group: Boolean = groups.contains("doc") |
e228be7cd375
clarified GUI.Selector, with support for separator as pseudo-entry;
wenzelm
parents:
76351
diff
changeset
|
692 |
|
73701 | 693 |
def timeout_ignored: Boolean = |
694 |
!options.bool("timeout_build") || Time.seconds(options.real("timeout")) < Time.ms(1) |
|
695 |
||
62631 | 696 |
def timeout: Time = Time.seconds(options.real("timeout") * options.real("timeout_scale")) |
67297
86a099f896fc
formal check of @{cite} bibtex entries -- only in batch-mode session builds;
wenzelm
parents:
67290
diff
changeset
|
697 |
|
72574
d892f6d66402
build documents in Isabelle/Scala, based on generated tex files as session exports;
wenzelm
parents:
72571
diff
changeset
|
698 |
def document_enabled: Boolean = |
d892f6d66402
build documents in Isabelle/Scala, based on generated tex files as session exports;
wenzelm
parents:
72571
diff
changeset
|
699 |
options.string("document") match { |
d892f6d66402
build documents in Isabelle/Scala, based on generated tex files as session exports;
wenzelm
parents:
72571
diff
changeset
|
700 |
case "" | "false" => false |
73826
72900f34dbb3
allow system option short form NAME for NAME=true for type string, not just bool;
wenzelm
parents:
73815
diff
changeset
|
701 |
case "pdf" | "true" => true |
72574
d892f6d66402
build documents in Isabelle/Scala, based on generated tex files as session exports;
wenzelm
parents:
72571
diff
changeset
|
702 |
case doc => error("Bad document specification " + quote(doc)) |
d892f6d66402
build documents in Isabelle/Scala, based on generated tex files as session exports;
wenzelm
parents:
72571
diff
changeset
|
703 |
} |
d892f6d66402
build documents in Isabelle/Scala, based on generated tex files as session exports;
wenzelm
parents:
72571
diff
changeset
|
704 |
|
75393 | 705 |
def document_variants: List[Document_Build.Document_Variant] = { |
72574
d892f6d66402
build documents in Isabelle/Scala, based on generated tex files as session exports;
wenzelm
parents:
72571
diff
changeset
|
706 |
val variants = |
77218 | 707 |
space_explode(':', options.string("document_variants")). |
73718 | 708 |
map(Document_Build.Document_Variant.parse) |
72649 | 709 |
|
710 |
val dups = Library.duplicates(variants.map(_.name)) |
|
72574
d892f6d66402
build documents in Isabelle/Scala, based on generated tex files as session exports;
wenzelm
parents:
72571
diff
changeset
|
711 |
if (dups.nonEmpty) error("Duplicate document variants: " + commas_quote(dups)) |
d892f6d66402
build documents in Isabelle/Scala, based on generated tex files as session exports;
wenzelm
parents:
72571
diff
changeset
|
712 |
|
72649 | 713 |
variants |
714 |
} |
|
715 |
||
75902 | 716 |
def document_echo: Boolean = options.bool("document_echo") |
717 |
||
75393 | 718 |
def documents: List[Document_Build.Document_Variant] = { |
72672 | 719 |
val variants = document_variants |
72574
d892f6d66402
build documents in Isabelle/Scala, based on generated tex files as session exports;
wenzelm
parents:
72571
diff
changeset
|
720 |
if (!document_enabled || document_files.isEmpty) Nil else variants |
d892f6d66402
build documents in Isabelle/Scala, based on generated tex files as session exports;
wenzelm
parents:
72571
diff
changeset
|
721 |
} |
d892f6d66402
build documents in Isabelle/Scala, based on generated tex files as session exports;
wenzelm
parents:
72571
diff
changeset
|
722 |
|
d892f6d66402
build documents in Isabelle/Scala, based on generated tex files as session exports;
wenzelm
parents:
72571
diff
changeset
|
723 |
def document_output: Option[Path] = |
d892f6d66402
build documents in Isabelle/Scala, based on generated tex files as session exports;
wenzelm
parents:
72571
diff
changeset
|
724 |
options.string("document_output") match { |
d892f6d66402
build documents in Isabelle/Scala, based on generated tex files as session exports;
wenzelm
parents:
72571
diff
changeset
|
725 |
case "" => None |
d892f6d66402
build documents in Isabelle/Scala, based on generated tex files as session exports;
wenzelm
parents:
72571
diff
changeset
|
726 |
case s => Some(dir + Path.explode(s)) |
d892f6d66402
build documents in Isabelle/Scala, based on generated tex files as session exports;
wenzelm
parents:
72571
diff
changeset
|
727 |
} |
d892f6d66402
build documents in Isabelle/Scala, based on generated tex files as session exports;
wenzelm
parents:
72571
diff
changeset
|
728 |
|
72648 | 729 |
def browser_info: Boolean = options.bool("browser_info") |
730 |
||
76776 | 731 |
lazy val bibtex_entries: Bibtex.Entries = |
76778
4086a0e4723b
clarified signature: internalize errors (but: the parser rarely fails);
wenzelm
parents:
76776
diff
changeset
|
732 |
(for { |
4086a0e4723b
clarified signature: internalize errors (but: the parser rarely fails);
wenzelm
parents:
76776
diff
changeset
|
733 |
(document_dir, file) <- document_files.iterator |
4086a0e4723b
clarified signature: internalize errors (but: the parser rarely fails);
wenzelm
parents:
76776
diff
changeset
|
734 |
if File.is_bib(file.file_name) |
4086a0e4723b
clarified signature: internalize errors (but: the parser rarely fails);
wenzelm
parents:
76776
diff
changeset
|
735 |
} yield { |
4086a0e4723b
clarified signature: internalize errors (but: the parser rarely fails);
wenzelm
parents:
76776
diff
changeset
|
736 |
val path = dir + document_dir + file |
77030
d7dc5b1e4381
proper positions for Isabelle/ML, instead of Isabelle/Scala;
wenzelm
parents:
77029
diff
changeset
|
737 |
Bibtex.Entries.parse(File.read(path), start = Token.Pos.file(File.standard_path(path))) |
76778
4086a0e4723b
clarified signature: internalize errors (but: the parser rarely fails);
wenzelm
parents:
76776
diff
changeset
|
738 |
}).foldRight(Bibtex.Entries.empty)(_ ::: _) |
70859
6e6254bbce1f
split into standard partitions, for improved scalability;
wenzelm
parents:
70796
diff
changeset
|
739 |
|
70869 | 740 |
def record_proofs: Boolean = options.int("record_proofs") >= 2 |
741 |
||
70859
6e6254bbce1f
split into standard partitions, for improved scalability;
wenzelm
parents:
70796
diff
changeset
|
742 |
def is_afp: Boolean = chapter == AFP.chapter |
6e6254bbce1f
split into standard partitions, for improved scalability;
wenzelm
parents:
70796
diff
changeset
|
743 |
def is_afp_bulky: Boolean = is_afp && groups.exists(AFP.groups_bulky.contains) |
62631 | 744 |
} |
745 |
||
75393 | 746 |
object Selection { |
65422 | 747 |
val empty: Selection = Selection() |
65525 | 748 |
val all: Selection = Selection(all_sessions = true) |
70788 | 749 |
def session(session: String): Selection = Selection(sessions = List(session)) |
65419 | 750 |
} |
751 |
||
752 |
sealed case class Selection( |
|
753 |
requirements: Boolean = false, |
|
754 |
all_sessions: Boolean = false, |
|
66737
2edc0c42c883
option -B for "isabelle build" and "isabelle imports";
wenzelm
parents:
66736
diff
changeset
|
755 |
base_sessions: List[String] = Nil, |
65419 | 756 |
exclude_session_groups: List[String] = Nil, |
757 |
exclude_sessions: List[String] = Nil, |
|
758 |
session_groups: List[String] = Nil, |
|
75393 | 759 |
sessions: List[String] = Nil |
760 |
) { |
|
66736 | 761 |
def ++ (other: Selection): Selection = |
65422 | 762 |
Selection( |
763 |
requirements = requirements || other.requirements, |
|
764 |
all_sessions = all_sessions || other.all_sessions, |
|
66737
2edc0c42c883
option -B for "isabelle build" and "isabelle imports";
wenzelm
parents:
66736
diff
changeset
|
765 |
base_sessions = Library.merge(base_sessions, other.base_sessions), |
66736 | 766 |
exclude_session_groups = Library.merge(exclude_session_groups, other.exclude_session_groups), |
767 |
exclude_sessions = Library.merge(exclude_sessions, other.exclude_sessions), |
|
768 |
session_groups = Library.merge(session_groups, other.session_groups), |
|
769 |
sessions = Library.merge(sessions, other.sessions)) |
|
65419 | 770 |
} |
771 |
||
75393 | 772 |
object Structure { |
76631 | 773 |
val empty: Structure = make(Options.empty) |
774 |
||
775 |
def make( |
|
776 |
options: Options, |
|
76927
da13da82f6f9
treat update_options as part of Sessions.Info meta_digest, for proper re-build of updated sessions;
wenzelm
parents:
76907
diff
changeset
|
777 |
augment_options: String => List[Options.Spec] = _ => Nil, |
76631 | 778 |
roots: List[Root_File] = Nil, |
779 |
infos: List[Info] = Nil |
|
780 |
): Structure = { |
|
781 |
val chapter_defs: Chapter_Defs = |
|
782 |
roots.foldLeft(Chapter_Defs.empty) { |
|
783 |
case (defs1, root) => |
|
784 |
root.entries.foldLeft(defs1) { |
|
785 |
case (defs2, entry: Chapter_Def) => defs2 + entry |
|
786 |
case (defs2, _) => defs2 |
|
787 |
} |
|
788 |
} |
|
72858
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72855
diff
changeset
|
789 |
|
77675
9e5f8f6e58a0
more thorough treatment of build prefs, guarded by system option "build_through": avoid accidental rebuild of HOL etc.;
wenzelm
parents:
77629
diff
changeset
|
790 |
val options0 = Options.init0() |
9e5f8f6e58a0
more thorough treatment of build prefs, guarded by system option "build_through": avoid accidental rebuild of HOL etc.;
wenzelm
parents:
77629
diff
changeset
|
791 |
val session_prefs = options.make_prefs(defaults = options0, filter = _.session_content) |
77610
3b09ae9e40cb
clarified session prefs (or "options" within the database);
wenzelm
parents:
77599
diff
changeset
|
792 |
|
76631 | 793 |
val root_infos = { |
794 |
var chapter = UNSORTED |
|
76635 | 795 |
val root_infos = new mutable.ListBuffer[Info] |
76631 | 796 |
for (root <- roots) { |
797 |
root.entries.foreach { |
|
798 |
case entry: Chapter_Entry => chapter = entry.name |
|
799 |
case entry: Session_Entry => |
|
76927
da13da82f6f9
treat update_options as part of Sessions.Info meta_digest, for proper re-build of updated sessions;
wenzelm
parents:
76907
diff
changeset
|
800 |
root_infos += |
77675
9e5f8f6e58a0
more thorough treatment of build prefs, guarded by system option "build_through": avoid accidental rebuild of HOL etc.;
wenzelm
parents:
77629
diff
changeset
|
801 |
Info.make(chapter_defs, options0, options, augment_options, |
76927
da13da82f6f9
treat update_options as part of Sessions.Info meta_digest, for proper re-build of updated sessions;
wenzelm
parents:
76907
diff
changeset
|
802 |
root.select, root.dir, chapter, entry) |
76631 | 803 |
case _ => |
804 |
} |
|
805 |
chapter = UNSORTED |
|
806 |
} |
|
76635 | 807 |
root_infos.toList |
76631 | 808 |
} |
809 |
||
810 |
val info_graph = |
|
811 |
(root_infos ::: infos).foldLeft(Graph.string[Info]) { |
|
812 |
case (graph, info) => |
|
813 |
if (graph.defined(info.name)) { |
|
814 |
error("Duplicate session " + quote(info.name) + Position.here(info.pos) + |
|
815 |
Position.here(graph.get_node(info.name).pos)) |
|
816 |
} |
|
817 |
else graph.new_node(info.name, info) |
|
818 |
} |
|
819 |
||
76630 | 820 |
def augment_graph( |
75393 | 821 |
graph: Graph[String, Info], |
822 |
kind: String, |
|
823 |
edges: Info => Iterable[String] |
|
824 |
) : Graph[String, Info] = { |
|
825 |
def add_edge(pos: Position.T, name: String, g: Graph[String, Info], parent: String) = { |
|
76048 | 826 |
if (!g.defined(parent)) { |
72855 | 827 |
error("Bad " + kind + " session " + quote(parent) + " for " + |
828 |
quote(name) + Position.here(pos)) |
|
76048 | 829 |
} |
65420
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
830 |
|
72855 | 831 |
try { g.add_edge_acyclic(parent, name) } |
832 |
catch { |
|
833 |
case exn: Graph.Cycles[_] => |
|
834 |
error(cat_lines(exn.cycles.map(cycle => |
|
835 |
"Cyclic session dependency of " + |
|
836 |
cycle.map(c => quote(c.toString)).mkString(" via "))) + Position.here(pos)) |
|
837 |
} |
|
838 |
} |
|
73359 | 839 |
graph.iterator.foldLeft(graph) { |
840 |
case (g, (name, (info, _))) => |
|
841 |
edges(info).foldLeft(g)(add_edge(info.pos, name, _, _)) |
|
65420
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
842 |
} |
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
843 |
} |
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
844 |
|
76630 | 845 |
val build_graph = augment_graph(info_graph, "parent", _.parent) |
846 |
val imports_graph = augment_graph(build_graph, "imports", _.imports) |
|
62631 | 847 |
|
72855 | 848 |
val session_positions: List[(String, Position.T)] = |
849 |
(for ((name, (info, _)) <- info_graph.iterator) yield (name, info.pos)).toList |
|
70683
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70681
diff
changeset
|
850 |
|
72855 | 851 |
val session_directories: Map[JFile, String] = |
73359 | 852 |
(for { |
853 |
session <- imports_graph.topological_order.iterator |
|
854 |
info = info_graph.get_node(session) |
|
855 |
dir <- info.dirs.iterator |
|
856 |
} yield (info, dir)).foldLeft(Map.empty[JFile, String]) { |
|
857 |
case (dirs, (info, dir)) => |
|
72855 | 858 |
val session = info.name |
859 |
val canonical_dir = dir.canonical_file |
|
860 |
dirs.get(canonical_dir) match { |
|
861 |
case Some(session1) => |
|
862 |
val info1 = info_graph.get_node(session1) |
|
863 |
error("Duplicate use of directory " + dir + |
|
864 |
"\n for session " + quote(session1) + Position.here(info1.pos) + |
|
865 |
"\n vs. session " + quote(session) + Position.here(info.pos)) |
|
866 |
case None => dirs + (canonical_dir -> session) |
|
867 |
} |
|
73359 | 868 |
} |
70671
cb1776c8e216
clarified signature: retain global session information, unaffected by later restriction;
wenzelm
parents:
70668
diff
changeset
|
869 |
|
72855 | 870 |
val global_theories: Map[String, String] = |
73359 | 871 |
(for { |
872 |
session <- imports_graph.topological_order.iterator |
|
873 |
info = info_graph.get_node(session) |
|
874 |
thy <- info.global_theories.iterator } |
|
76630 | 875 |
yield (info, thy) |
876 |
).foldLeft(Thy_Header.bootstrap_global_theories.toMap) { |
|
73359 | 877 |
case (global, (info, thy)) => |
72855 | 878 |
val qualifier = info.name |
879 |
global.get(thy) match { |
|
880 |
case Some(qualifier1) if qualifier != qualifier1 => |
|
881 |
error("Duplicate global theory " + quote(thy) + Position.here(info.pos)) |
|
882 |
case _ => global + (thy -> qualifier) |
|
883 |
} |
|
73359 | 884 |
} |
70671
cb1776c8e216
clarified signature: retain global session information, unaffected by later restriction;
wenzelm
parents:
70668
diff
changeset
|
885 |
|
77610
3b09ae9e40cb
clarified session prefs (or "options" within the database);
wenzelm
parents:
77599
diff
changeset
|
886 |
new Structure(chapter_defs, session_prefs, session_positions, session_directories, |
75986
27d98da31985
support 'chapter_definition' with description for presentation purposes;
wenzelm
parents:
75984
diff
changeset
|
887 |
global_theories, build_graph, imports_graph) |
72855 | 888 |
} |
62631 | 889 |
} |
890 |
||
67052 | 891 |
final class Structure private[Sessions]( |
75999
b831a0bdd751
clarified signature of Sessions.Session: chapter_defs: vs. known_chapters (in declaration order) vs. chapters (covered by visible sessions);
wenzelm
parents:
75998
diff
changeset
|
892 |
chapter_defs: Chapter_Defs, |
77610
3b09ae9e40cb
clarified session prefs (or "options" within the database);
wenzelm
parents:
77599
diff
changeset
|
893 |
val session_prefs: String, |
75393 | 894 |
val session_positions: List[(String, Position.T)], |
895 |
val session_directories: Map[JFile, String], |
|
896 |
val global_theories: Map[String, String], |
|
897 |
val build_graph: Graph[String, Info], |
|
898 |
val imports_graph: Graph[String, Info] |
|
899 |
) { |
|
69524
fa94f2b2a877
clarified sessions_deps, according to Isabelle/MMT usage;
wenzelm
parents:
69393
diff
changeset
|
900 |
sessions_structure => |
fa94f2b2a877
clarified sessions_deps, according to Isabelle/MMT usage;
wenzelm
parents:
69393
diff
changeset
|
901 |
|
70683
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70681
diff
changeset
|
902 |
def dest_session_directories: List[(String, String)] = |
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70681
diff
changeset
|
903 |
for ((file, session) <- session_directories.toList) |
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70681
diff
changeset
|
904 |
yield (File.standard_path(file), session) |
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70681
diff
changeset
|
905 |
|
75999
b831a0bdd751
clarified signature of Sessions.Session: chapter_defs: vs. known_chapters (in declaration order) vs. chapters (covered by visible sessions);
wenzelm
parents:
75998
diff
changeset
|
906 |
lazy val known_chapters: List[Chapter_Info] = { |
b831a0bdd751
clarified signature of Sessions.Session: chapter_defs: vs. known_chapters (in declaration order) vs. chapters (covered by visible sessions);
wenzelm
parents:
75998
diff
changeset
|
907 |
val chapter_sessions = |
b831a0bdd751
clarified signature of Sessions.Session: chapter_defs: vs. known_chapters (in declaration order) vs. chapters (covered by visible sessions);
wenzelm
parents:
75998
diff
changeset
|
908 |
Multi_Map.from( |
b831a0bdd751
clarified signature of Sessions.Session: chapter_defs: vs. known_chapters (in declaration order) vs. chapters (covered by visible sessions);
wenzelm
parents:
75998
diff
changeset
|
909 |
for ((_, (info, _)) <- build_graph.iterator) |
b831a0bdd751
clarified signature of Sessions.Session: chapter_defs: vs. known_chapters (in declaration order) vs. chapters (covered by visible sessions);
wenzelm
parents:
75998
diff
changeset
|
910 |
yield info.chapter -> info.name) |
b831a0bdd751
clarified signature of Sessions.Session: chapter_defs: vs. known_chapters (in declaration order) vs. chapters (covered by visible sessions);
wenzelm
parents:
75998
diff
changeset
|
911 |
val chapters1 = |
b831a0bdd751
clarified signature of Sessions.Session: chapter_defs: vs. known_chapters (in declaration order) vs. chapters (covered by visible sessions);
wenzelm
parents:
75998
diff
changeset
|
912 |
(for (entry <- chapter_defs.list.iterator) yield { |
b831a0bdd751
clarified signature of Sessions.Session: chapter_defs: vs. known_chapters (in declaration order) vs. chapters (covered by visible sessions);
wenzelm
parents:
75998
diff
changeset
|
913 |
val sessions = chapter_sessions.get_list(entry.name) |
76005
a9bbf075f431
include groups from 'chapter_definition' in session info, based on the state of chapter_defs after processing all ROOT files (thus the declaration order does not matter);
wenzelm
parents:
76002
diff
changeset
|
914 |
Chapter_Info(entry.name, entry.pos, entry.groups, entry.description, sessions.sorted) |
75999
b831a0bdd751
clarified signature of Sessions.Session: chapter_defs: vs. known_chapters (in declaration order) vs. chapters (covered by visible sessions);
wenzelm
parents:
75998
diff
changeset
|
915 |
}).toList |
b831a0bdd751
clarified signature of Sessions.Session: chapter_defs: vs. known_chapters (in declaration order) vs. chapters (covered by visible sessions);
wenzelm
parents:
75998
diff
changeset
|
916 |
val chapters2 = |
b831a0bdd751
clarified signature of Sessions.Session: chapter_defs: vs. known_chapters (in declaration order) vs. chapters (covered by visible sessions);
wenzelm
parents:
75998
diff
changeset
|
917 |
(for { |
b831a0bdd751
clarified signature of Sessions.Session: chapter_defs: vs. known_chapters (in declaration order) vs. chapters (covered by visible sessions);
wenzelm
parents:
75998
diff
changeset
|
918 |
(name, sessions) <- chapter_sessions.iterator_list |
b831a0bdd751
clarified signature of Sessions.Session: chapter_defs: vs. known_chapters (in declaration order) vs. chapters (covered by visible sessions);
wenzelm
parents:
75998
diff
changeset
|
919 |
if !chapters1.exists(_.name == name) |
76005
a9bbf075f431
include groups from 'chapter_definition' in session info, based on the state of chapter_defs after processing all ROOT files (thus the declaration order does not matter);
wenzelm
parents:
76002
diff
changeset
|
920 |
} yield Chapter_Info(name, Position.none, Nil, "", sessions.sorted)).toList.sortBy(_.name) |
75999
b831a0bdd751
clarified signature of Sessions.Session: chapter_defs: vs. known_chapters (in declaration order) vs. chapters (covered by visible sessions);
wenzelm
parents:
75998
diff
changeset
|
921 |
chapters1 ::: chapters2 |
b831a0bdd751
clarified signature of Sessions.Session: chapter_defs: vs. known_chapters (in declaration order) vs. chapters (covered by visible sessions);
wenzelm
parents:
75998
diff
changeset
|
922 |
} |
b831a0bdd751
clarified signature of Sessions.Session: chapter_defs: vs. known_chapters (in declaration order) vs. chapters (covered by visible sessions);
wenzelm
parents:
75998
diff
changeset
|
923 |
|
76002 | 924 |
def relevant_chapters: List[Chapter_Info] = known_chapters.filter(_.sessions.nonEmpty) |
69762
58fb0d779583
support for session information via virtual file-system;
wenzelm
parents:
69671
diff
changeset
|
925 |
|
66823 | 926 |
def build_graph_display: Graph_Display.Graph = Graph_Display.make_graph(build_graph) |
927 |
def imports_graph_display: Graph_Display.Graph = Graph_Display.make_graph(imports_graph) |
|
928 |
||
67025
961285f581e6
clarifified selection: always wrt. build_graph structure;
wenzelm
parents:
67024
diff
changeset
|
929 |
def defined(name: String): Boolean = imports_graph.defined(name) |
65420
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
930 |
def apply(name: String): Info = imports_graph.get_node(name) |
67025
961285f581e6
clarifified selection: always wrt. build_graph structure;
wenzelm
parents:
67024
diff
changeset
|
931 |
def get(name: String): Option[Info] = if (defined(name)) Some(apply(name)) else None |
62631 | 932 |
|
70859
6e6254bbce1f
split into standard partitions, for improved scalability;
wenzelm
parents:
70796
diff
changeset
|
933 |
def theory_qualifier(name: String): String = |
6e6254bbce1f
split into standard partitions, for improved scalability;
wenzelm
parents:
70796
diff
changeset
|
934 |
global_theories.getOrElse(name, Long_Name.qualifier(name)) |
75884
3d8b37b1d798
clarified signature: avoid object-oriented HTML_Context;
wenzelm
parents:
75791
diff
changeset
|
935 |
def theory_qualifier(name: Document.Node.Name): String = theory_qualifier(name.theory) |
70859
6e6254bbce1f
split into standard partitions, for improved scalability;
wenzelm
parents:
70796
diff
changeset
|
936 |
|
75393 | 937 |
def check_sessions(names: List[String]): Unit = { |
71601 | 938 |
val bad_sessions = SortedSet(names.filterNot(defined): _*).toList |
76048 | 939 |
if (bad_sessions.nonEmpty) { |
68542 | 940 |
error("Undefined session(s): " + commas_quote(bad_sessions)) |
76048 | 941 |
} |
68542 | 942 |
} |
943 |
||
68733 | 944 |
def check_sessions(sel: Selection): Unit = |
945 |
check_sessions(sel.base_sessions ::: sel.exclude_sessions ::: sel.sessions) |
|
946 |
||
75393 | 947 |
private def selected(graph: Graph[String, Info], sel: Selection): List[String] = { |
68733 | 948 |
check_sessions(sel) |
949 |
||
68732 | 950 |
val select_group = sel.session_groups.toSet |
68734
c14a2cc9b5ef
isabelle build options -c -x -B refer to imports_graph;
wenzelm
parents:
68733
diff
changeset
|
951 |
val select_session = sel.sessions.toSet ++ imports_graph.all_succs(sel.base_sessions) |
68732 | 952 |
|
953 |
val selected0 = |
|
954 |
if (sel.all_sessions) graph.keys |
|
955 |
else { |
|
956 |
(for { |
|
957 |
(name, (info, _)) <- graph.iterator |
|
74810 | 958 |
if info.dir_selected || select_session(name) || info.groups.exists(select_group) |
68732 | 959 |
} yield name).toList |
960 |
} |
|
961 |
||
962 |
if (sel.requirements) (graph.all_preds(selected0).toSet -- selected0).toList |
|
963 |
else selected0 |
|
964 |
} |
|
965 |
||
75393 | 966 |
def selection(sel: Selection): Structure = { |
68733 | 967 |
check_sessions(sel) |
67025
961285f581e6
clarifified selection: always wrt. build_graph structure;
wenzelm
parents:
67024
diff
changeset
|
968 |
|
75393 | 969 |
val excluded = { |
68732 | 970 |
val exclude_group = sel.exclude_session_groups.toSet |
971 |
val exclude_group_sessions = |
|
972 |
(for { |
|
68734
c14a2cc9b5ef
isabelle build options -c -x -B refer to imports_graph;
wenzelm
parents:
68733
diff
changeset
|
973 |
(name, (info, _)) <- imports_graph.iterator |
76599 | 974 |
if info.groups.exists(exclude_group) |
68732 | 975 |
} yield name).toList |
68734
c14a2cc9b5ef
isabelle build options -c -x -B refer to imports_graph;
wenzelm
parents:
68733
diff
changeset
|
976 |
imports_graph.all_succs(exclude_group_sessions ::: sel.exclude_sessions).toSet |
68732 | 977 |
} |
67027 | 978 |
|
75393 | 979 |
def restrict(graph: Graph[String, Info]): Graph[String, Info] = { |
68732 | 980 |
val sessions = graph.all_preds(selected(graph, sel)).filterNot(excluded) |
67029 | 981 |
graph.restrict(graph.all_preds(sessions).toSet) |
67025
961285f581e6
clarifified selection: always wrt. build_graph structure;
wenzelm
parents:
67024
diff
changeset
|
982 |
} |
961285f581e6
clarifified selection: always wrt. build_graph structure;
wenzelm
parents:
67024
diff
changeset
|
983 |
|
77610
3b09ae9e40cb
clarified session prefs (or "options" within the database);
wenzelm
parents:
77599
diff
changeset
|
984 |
new Structure(chapter_defs, session_prefs, session_positions, session_directories, |
3b09ae9e40cb
clarified session prefs (or "options" within the database);
wenzelm
parents:
77599
diff
changeset
|
985 |
global_theories, restrict(build_graph), restrict(imports_graph)) |
62631 | 986 |
} |
987 |
||
72571 | 988 |
def selection(session: String): Structure = selection(Selection.session(session)) |
989 |
||
69524
fa94f2b2a877
clarified sessions_deps, according to Isabelle/MMT usage;
wenzelm
parents:
69393
diff
changeset
|
990 |
def selection_deps( |
fa94f2b2a877
clarified sessions_deps, according to Isabelle/MMT usage;
wenzelm
parents:
69393
diff
changeset
|
991 |
selection: Selection, |
71726
a5fda30edae2
clarified signature: more uniform treatment of stopped/interrupted state;
wenzelm
parents:
71642
diff
changeset
|
992 |
progress: Progress = new Progress, |
69524
fa94f2b2a877
clarified sessions_deps, according to Isabelle/MMT usage;
wenzelm
parents:
69393
diff
changeset
|
993 |
loading_sessions: Boolean = false, |
77521
5642de4d225d
clarified signature: manage "verbose" flag via "progress";
wenzelm
parents:
77516
diff
changeset
|
994 |
inlined_files: Boolean = false |
75393 | 995 |
): Deps = { |
69524
fa94f2b2a877
clarified sessions_deps, according to Isabelle/MMT usage;
wenzelm
parents:
69393
diff
changeset
|
996 |
val deps = |
70869 | 997 |
Sessions.deps(sessions_structure.selection(selection), |
77521
5642de4d225d
clarified signature: manage "verbose" flag via "progress";
wenzelm
parents:
77516
diff
changeset
|
998 |
progress = progress, inlined_files = inlined_files) |
69524
fa94f2b2a877
clarified sessions_deps, according to Isabelle/MMT usage;
wenzelm
parents:
69393
diff
changeset
|
999 |
|
fa94f2b2a877
clarified sessions_deps, according to Isabelle/MMT usage;
wenzelm
parents:
69393
diff
changeset
|
1000 |
if (loading_sessions) { |
fa94f2b2a877
clarified sessions_deps, according to Isabelle/MMT usage;
wenzelm
parents:
69393
diff
changeset
|
1001 |
val selection_size = deps.sessions_structure.build_graph.size |
fa94f2b2a877
clarified sessions_deps, according to Isabelle/MMT usage;
wenzelm
parents:
69393
diff
changeset
|
1002 |
if (selection_size > 1) progress.echo("Loading " + selection_size + " sessions ...") |
fa94f2b2a877
clarified sessions_deps, according to Isabelle/MMT usage;
wenzelm
parents:
69393
diff
changeset
|
1003 |
} |
fa94f2b2a877
clarified sessions_deps, according to Isabelle/MMT usage;
wenzelm
parents:
69393
diff
changeset
|
1004 |
|
fa94f2b2a877
clarified sessions_deps, according to Isabelle/MMT usage;
wenzelm
parents:
69393
diff
changeset
|
1005 |
deps |
68304 | 1006 |
} |
1007 |
||
75760
f8be63d2ec6f
more robust build_hierarchy: support Resources.empty / Sessions.Structure.empty (required for Build_Job.print_log);
wenzelm
parents:
75759
diff
changeset
|
1008 |
def build_hierarchy(session: String): List[String] = |
f8be63d2ec6f
more robust build_hierarchy: support Resources.empty / Sessions.Structure.empty (required for Build_Job.print_log);
wenzelm
parents:
75759
diff
changeset
|
1009 |
if (build_graph.defined(session)) build_graph.all_preds(List(session)) |
f8be63d2ec6f
more robust build_hierarchy: support Resources.empty / Sessions.Structure.empty (required for Build_Job.print_log);
wenzelm
parents:
75759
diff
changeset
|
1010 |
else List(session) |
f8be63d2ec6f
more robust build_hierarchy: support Resources.empty / Sessions.Structure.empty (required for Build_Job.print_log);
wenzelm
parents:
75759
diff
changeset
|
1011 |
|
68732 | 1012 |
def build_selection(sel: Selection): List[String] = selected(build_graph, sel) |
67029 | 1013 |
def build_descendants(ss: List[String]): List[String] = build_graph.all_succs(ss) |
72065
11dc8929832d
clarified order --- proper sorting of requirements;
wenzelm
parents:
72064
diff
changeset
|
1014 |
def build_requirements(ss: List[String]): List[String] = build_graph.all_preds_rev(ss) |
67029 | 1015 |
def build_topological_order: List[String] = build_graph.topological_order |
62631 | 1016 |
|
68732 | 1017 |
def imports_selection(sel: Selection): List[String] = selected(imports_graph, sel) |
67029 | 1018 |
def imports_descendants(ss: List[String]): List[String] = imports_graph.all_succs(ss) |
72065
11dc8929832d
clarified order --- proper sorting of requirements;
wenzelm
parents:
72064
diff
changeset
|
1019 |
def imports_requirements(ss: List[String]): List[String] = imports_graph.all_preds_rev(ss) |
67029 | 1020 |
def imports_topological_order: List[String] = imports_graph.topological_order |
65420
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
1021 |
|
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
1022 |
override def toString: String = |
67052 | 1023 |
imports_graph.keys_iterator.mkString("Sessions.Structure(", ", ", ")") |
62631 | 1024 |
} |
1025 |
||
1026 |
||
1027 |
/* parser */ |
|
1028 |
||
75986
27d98da31985
support 'chapter_definition' with description for presentation purposes;
wenzelm
parents:
75984
diff
changeset
|
1029 |
private val CHAPTER_DEFINITION = "chapter_definition" |
62631 | 1030 |
private val CHAPTER = "chapter" |
1031 |
private val SESSION = "session" |
|
1032 |
private val DESCRIPTION = "description" |
|
70668 | 1033 |
private val DIRECTORIES = "directories" |
62631 | 1034 |
private val OPTIONS = "options" |
65420
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
1035 |
private val SESSIONS = "sessions" |
62631 | 1036 |
private val THEORIES = "theories" |
65374 | 1037 |
private val GLOBAL = "global" |
72600
2fa4f25d9d07
official support for document theories from other sessions;
wenzelm
parents:
72574
diff
changeset
|
1038 |
private val DOCUMENT_THEORIES = "document_theories" |
62631 | 1039 |
private val DOCUMENT_FILES = "document_files" |
68292 | 1040 |
private val EXPORT_FILES = "export_files" |
75679
aa89255b704c
support for classpath artifacts within session structure:
wenzelm
parents:
75672
diff
changeset
|
1041 |
private val EXPORT_CLASSPATH = "export_classpath" |
62631 | 1042 |
|
71601 | 1043 |
val root_syntax: Outer_Syntax = |
76614 | 1044 |
Outer_Syntax.empty + "(" + ")" + "+" + "," + "=" + "[" + "]" + "in" + |
1045 |
GLOBAL + |
|
75986
27d98da31985
support 'chapter_definition' with description for presentation purposes;
wenzelm
parents:
75984
diff
changeset
|
1046 |
(CHAPTER_DEFINITION, Keyword.THY_DECL) + |
63443 | 1047 |
(CHAPTER, Keyword.THY_DECL) + |
1048 |
(SESSION, Keyword.THY_DECL) + |
|
1049 |
(DESCRIPTION, Keyword.QUASI_COMMAND) + |
|
70668 | 1050 |
(DIRECTORIES, Keyword.QUASI_COMMAND) + |
63443 | 1051 |
(OPTIONS, Keyword.QUASI_COMMAND) + |
65420
695d4e22345a
support for static session imports, without affect build hierarchy;
wenzelm
parents:
65419
diff
changeset
|
1052 |
(SESSIONS, Keyword.QUASI_COMMAND) + |
63443 | 1053 |
(THEORIES, Keyword.QUASI_COMMAND) + |
72600
2fa4f25d9d07
official support for document theories from other sessions;
wenzelm
parents:
72574
diff
changeset
|
1054 |
(DOCUMENT_THEORIES, Keyword.QUASI_COMMAND) + |
68292 | 1055 |
(DOCUMENT_FILES, Keyword.QUASI_COMMAND) + |
75679
aa89255b704c
support for classpath artifacts within session structure:
wenzelm
parents:
75672
diff
changeset
|
1056 |
(EXPORT_FILES, Keyword.QUASI_COMMAND) + |
aa89255b704c
support for classpath artifacts within session structure:
wenzelm
parents:
75672
diff
changeset
|
1057 |
(EXPORT_CLASSPATH, Keyword.QUASI_COMMAND) |
62631 | 1058 |
|
66818
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
1059 |
abstract class Entry |
76005
a9bbf075f431
include groups from 'chapter_definition' in session info, based on the state of chapter_defs after processing all ROOT files (thus the declaration order does not matter);
wenzelm
parents:
76002
diff
changeset
|
1060 |
object Chapter_Def { |
a9bbf075f431
include groups from 'chapter_definition' in session info, based on the state of chapter_defs after processing all ROOT files (thus the declaration order does not matter);
wenzelm
parents:
76002
diff
changeset
|
1061 |
def empty(chapter: String): Chapter_Def = Chapter_Def(Position.none, chapter, Nil, "") |
a9bbf075f431
include groups from 'chapter_definition' in session info, based on the state of chapter_defs after processing all ROOT files (thus the declaration order does not matter);
wenzelm
parents:
76002
diff
changeset
|
1062 |
} |
a9bbf075f431
include groups from 'chapter_definition' in session info, based on the state of chapter_defs after processing all ROOT files (thus the declaration order does not matter);
wenzelm
parents:
76002
diff
changeset
|
1063 |
sealed case class Chapter_Def( |
a9bbf075f431
include groups from 'chapter_definition' in session info, based on the state of chapter_defs after processing all ROOT files (thus the declaration order does not matter);
wenzelm
parents:
76002
diff
changeset
|
1064 |
pos: Position.T, |
a9bbf075f431
include groups from 'chapter_definition' in session info, based on the state of chapter_defs after processing all ROOT files (thus the declaration order does not matter);
wenzelm
parents:
76002
diff
changeset
|
1065 |
name: String, |
a9bbf075f431
include groups from 'chapter_definition' in session info, based on the state of chapter_defs after processing all ROOT files (thus the declaration order does not matter);
wenzelm
parents:
76002
diff
changeset
|
1066 |
groups: List[String], |
a9bbf075f431
include groups from 'chapter_definition' in session info, based on the state of chapter_defs after processing all ROOT files (thus the declaration order does not matter);
wenzelm
parents:
76002
diff
changeset
|
1067 |
description: String |
a9bbf075f431
include groups from 'chapter_definition' in session info, based on the state of chapter_defs after processing all ROOT files (thus the declaration order does not matter);
wenzelm
parents:
76002
diff
changeset
|
1068 |
) extends Entry |
75984 | 1069 |
sealed case class Chapter_Entry(name: String) extends Entry |
66818
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
1070 |
sealed case class Session_Entry( |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
1071 |
pos: Position.T, |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
1072 |
name: String, |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
1073 |
groups: List[String], |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
1074 |
path: String, |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
1075 |
parent: Option[String], |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
1076 |
description: String, |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
1077 |
options: List[Options.Spec], |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
1078 |
imports: List[String], |
70681 | 1079 |
directories: List[String], |
66818
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
1080 |
theories: List[(List[Options.Spec], List[((String, Position.T), Boolean)])], |
72600
2fa4f25d9d07
official support for document theories from other sessions;
wenzelm
parents:
72574
diff
changeset
|
1081 |
document_theories: List[(String, Position.T)], |
68292 | 1082 |
document_files: List[(String, String)], |
75679
aa89255b704c
support for classpath artifacts within session structure:
wenzelm
parents:
75672
diff
changeset
|
1083 |
export_files: List[(String, Int, List[String])], |
aa89255b704c
support for classpath artifacts within session structure:
wenzelm
parents:
75672
diff
changeset
|
1084 |
export_classpath: List[String] |
75393 | 1085 |
) extends Entry { |
66818
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
1086 |
def theories_no_position: List[(List[Options.Spec], List[(String, Boolean)])] = |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
1087 |
theories.map({ case (a, b) => (a, b.map({ case ((c, _), d) => (c, d) })) }) |
72666
945cee776e79
proper meta_digest: avoid non-portable position information;
wenzelm
parents:
72653
diff
changeset
|
1088 |
def document_theories_no_position: List[String] = |
945cee776e79
proper meta_digest: avoid non-portable position information;
wenzelm
parents:
72653
diff
changeset
|
1089 |
document_theories.map(_._1) |
66818
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
1090 |
} |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
1091 |
|
75986
27d98da31985
support 'chapter_definition' with description for presentation purposes;
wenzelm
parents:
75984
diff
changeset
|
1092 |
object Chapter_Defs { |
27d98da31985
support 'chapter_definition' with description for presentation purposes;
wenzelm
parents:
75984
diff
changeset
|
1093 |
val empty: Chapter_Defs = new Chapter_Defs(Nil) |
27d98da31985
support 'chapter_definition' with description for presentation purposes;
wenzelm
parents:
75984
diff
changeset
|
1094 |
} |
27d98da31985
support 'chapter_definition' with description for presentation purposes;
wenzelm
parents:
75984
diff
changeset
|
1095 |
|
27d98da31985
support 'chapter_definition' with description for presentation purposes;
wenzelm
parents:
75984
diff
changeset
|
1096 |
class Chapter_Defs private(rev_list: List[Chapter_Def]) { |
27d98da31985
support 'chapter_definition' with description for presentation purposes;
wenzelm
parents:
75984
diff
changeset
|
1097 |
def list: List[Chapter_Def] = rev_list.reverse |
27d98da31985
support 'chapter_definition' with description for presentation purposes;
wenzelm
parents:
75984
diff
changeset
|
1098 |
|
27d98da31985
support 'chapter_definition' with description for presentation purposes;
wenzelm
parents:
75984
diff
changeset
|
1099 |
override def toString: String = |
27d98da31985
support 'chapter_definition' with description for presentation purposes;
wenzelm
parents:
75984
diff
changeset
|
1100 |
list.map(_.name).mkString("Chapter_Defs(", ", ", ")") |
27d98da31985
support 'chapter_definition' with description for presentation purposes;
wenzelm
parents:
75984
diff
changeset
|
1101 |
|
75996 | 1102 |
def get(chapter: String): Option[Chapter_Def] = |
75986
27d98da31985
support 'chapter_definition' with description for presentation purposes;
wenzelm
parents:
75984
diff
changeset
|
1103 |
rev_list.find(_.name == chapter) |
27d98da31985
support 'chapter_definition' with description for presentation purposes;
wenzelm
parents:
75984
diff
changeset
|
1104 |
|
76005
a9bbf075f431
include groups from 'chapter_definition' in session info, based on the state of chapter_defs after processing all ROOT files (thus the declaration order does not matter);
wenzelm
parents:
76002
diff
changeset
|
1105 |
def apply(chapter: String): Chapter_Def = |
a9bbf075f431
include groups from 'chapter_definition' in session info, based on the state of chapter_defs after processing all ROOT files (thus the declaration order does not matter);
wenzelm
parents:
76002
diff
changeset
|
1106 |
get(chapter) getOrElse Chapter_Def.empty(chapter) |
a9bbf075f431
include groups from 'chapter_definition' in session info, based on the state of chapter_defs after processing all ROOT files (thus the declaration order does not matter);
wenzelm
parents:
76002
diff
changeset
|
1107 |
|
75996 | 1108 |
def + (entry: Chapter_Def): Chapter_Defs = |
75997 | 1109 |
get(entry.name) match { |
1110 |
case None => new Chapter_Defs(entry :: rev_list) |
|
1111 |
case Some(old_entry) => |
|
1112 |
error("Duplicate chapter definition " + quote(entry.name) + |
|
1113 |
Position.here(old_entry.pos) + Position.here(entry.pos)) |
|
75986
27d98da31985
support 'chapter_definition' with description for presentation purposes;
wenzelm
parents:
75984
diff
changeset
|
1114 |
} |
27d98da31985
support 'chapter_definition' with description for presentation purposes;
wenzelm
parents:
75984
diff
changeset
|
1115 |
} |
27d98da31985
support 'chapter_definition' with description for presentation purposes;
wenzelm
parents:
75984
diff
changeset
|
1116 |
|
75405 | 1117 |
private object Parsers extends Options.Parsers { |
76005
a9bbf075f431
include groups from 'chapter_definition' in session info, based on the state of chapter_defs after processing all ROOT files (thus the declaration order does not matter);
wenzelm
parents:
76002
diff
changeset
|
1118 |
private val groups: Parser[List[String]] = |
a9bbf075f431
include groups from 'chapter_definition' in session info, based on the state of chapter_defs after processing all ROOT files (thus the declaration order does not matter);
wenzelm
parents:
76002
diff
changeset
|
1119 |
($$$("(") ~! (rep1(name) <~ $$$(")")) ^^ { case _ ~ x => x }) | success(Nil) |
a9bbf075f431
include groups from 'chapter_definition' in session info, based on the state of chapter_defs after processing all ROOT files (thus the declaration order does not matter);
wenzelm
parents:
76002
diff
changeset
|
1120 |
|
75998 | 1121 |
private val description: Parser[String] = |
1122 |
($$$(DESCRIPTION) ~! text ^^ { case _ ~ x => x }) | success("") |
|
1123 |
||
75986
27d98da31985
support 'chapter_definition' with description for presentation purposes;
wenzelm
parents:
75984
diff
changeset
|
1124 |
private val chapter_def: Parser[Chapter_Def] = |
76005
a9bbf075f431
include groups from 'chapter_definition' in session info, based on the state of chapter_defs after processing all ROOT files (thus the declaration order does not matter);
wenzelm
parents:
76002
diff
changeset
|
1125 |
command(CHAPTER_DEFINITION) ~! (position(chapter_name) ~ groups ~ description) ^^ |
a9bbf075f431
include groups from 'chapter_definition' in session info, based on the state of chapter_defs after processing all ROOT files (thus the declaration order does not matter);
wenzelm
parents:
76002
diff
changeset
|
1126 |
{ case _ ~ ((a, pos) ~ b ~ c) => Chapter_Def(pos, a, b, c) } |
75986
27d98da31985
support 'chapter_definition' with description for presentation purposes;
wenzelm
parents:
75984
diff
changeset
|
1127 |
|
27d98da31985
support 'chapter_definition' with description for presentation purposes;
wenzelm
parents:
75984
diff
changeset
|
1128 |
private val chapter_entry: Parser[Chapter_Entry] = |
75984 | 1129 |
command(CHAPTER) ~! chapter_name ^^ { case _ ~ a => Chapter_Entry(a) } |
62631 | 1130 |
|
75393 | 1131 |
private val session_entry: Parser[Session_Entry] = { |
78407
b262ecc98319
more operations for independent "inline" options;
wenzelm
parents:
78178
diff
changeset
|
1132 |
val options = $$$("[") ~> rep1sep(option_spec, $$$(",")) <~ $$$("]") |
62631 | 1133 |
|
65374 | 1134 |
val theory_entry = |
70668 | 1135 |
position(theory_name) ~ opt_keyword(GLOBAL) ^^ { case x ~ y => (x, y) } |
65374 | 1136 |
|
62631 | 1137 |
val theories = |
65374 | 1138 |
$$$(THEORIES) ~! |
66970
13857f49d215
clarified ROOT syntax: 'sessions' and 'theories' are optional, but need to be non-empty;
wenzelm
parents:
66969
diff
changeset
|
1139 |
((options | success(Nil)) ~ rep1(theory_entry)) ^^ |
65374 | 1140 |
{ case _ ~ (x ~ y) => (x, y) } |
62631 | 1141 |
|
72600
2fa4f25d9d07
official support for document theories from other sessions;
wenzelm
parents:
72574
diff
changeset
|
1142 |
val document_theories = |
2fa4f25d9d07
official support for document theories from other sessions;
wenzelm
parents:
72574
diff
changeset
|
1143 |
$$$(DOCUMENT_THEORIES) ~! rep1(position(name)) ^^ { case _ ~ x => x } |
2fa4f25d9d07
official support for document theories from other sessions;
wenzelm
parents:
72574
diff
changeset
|
1144 |
|
62631 | 1145 |
val document_files = |
76614 | 1146 |
$$$(DOCUMENT_FILES) ~! (in_path_parens("document") ~ rep1(path)) ^^ |
1147 |
{ case _ ~ (x ~ y) => y.map((x, _)) } |
|
68292 | 1148 |
|
69671 | 1149 |
val prune = $$$("[") ~! (nat ~ $$$("]")) ^^ { case _ ~ (x ~ _) => x } | success(0) |
1150 |
||
68292 | 1151 |
val export_files = |
76614 | 1152 |
$$$(EXPORT_FILES) ~! (in_path_parens("export") ~ prune ~ rep1(embedded)) ^^ |
69671 | 1153 |
{ case _ ~ (x ~ y ~ z) => (x, y, z) } |
62631 | 1154 |
|
75679
aa89255b704c
support for classpath artifacts within session structure:
wenzelm
parents:
75672
diff
changeset
|
1155 |
val export_classpath = |
aa89255b704c
support for classpath artifacts within session structure:
wenzelm
parents:
75672
diff
changeset
|
1156 |
$$$(EXPORT_CLASSPATH) ~! (rep1(embedded) | success(List("*:classpath/*.jar"))) ^^ |
aa89255b704c
support for classpath artifacts within session structure:
wenzelm
parents:
75672
diff
changeset
|
1157 |
{ case _ ~ x => x } |
aa89255b704c
support for classpath artifacts within session structure:
wenzelm
parents:
75672
diff
changeset
|
1158 |
|
62631 | 1159 |
command(SESSION) ~! |
76614 | 1160 |
(position(session_name) ~ groups ~ in_path(".") ~ |
62631 | 1161 |
($$$("=") ~! |
75998 | 1162 |
(opt(session_name ~! $$$("+") ^^ { case x ~ _ => x }) ~ description ~ |
62631 | 1163 |
(($$$(OPTIONS) ~! options ^^ { case _ ~ x => x }) | success(Nil)) ~ |
66970
13857f49d215
clarified ROOT syntax: 'sessions' and 'theories' are optional, but need to be non-empty;
wenzelm
parents:
66969
diff
changeset
|
1164 |
(($$$(SESSIONS) ~! rep1(session_name) ^^ { case _ ~ x => x }) | success(Nil)) ~ |
70681 | 1165 |
(($$$(DIRECTORIES) ~! rep1(path) ^^ { case _ ~ x => x }) | success(Nil)) ~ |
66970
13857f49d215
clarified ROOT syntax: 'sessions' and 'theories' are optional, but need to be non-empty;
wenzelm
parents:
66969
diff
changeset
|
1166 |
rep(theories) ~ |
72600
2fa4f25d9d07
official support for document theories from other sessions;
wenzelm
parents:
72574
diff
changeset
|
1167 |
(opt(document_theories) ^^ (x => x.getOrElse(Nil))) ~ |
68292 | 1168 |
(rep(document_files) ^^ (x => x.flatten)) ~ |
75679
aa89255b704c
support for classpath artifacts within session structure:
wenzelm
parents:
75672
diff
changeset
|
1169 |
rep(export_files) ~ |
aa89255b704c
support for classpath artifacts within session structure:
wenzelm
parents:
75672
diff
changeset
|
1170 |
opt(export_classpath)))) ^^ |
aa89255b704c
support for classpath artifacts within session structure:
wenzelm
parents:
75672
diff
changeset
|
1171 |
{ case _ ~ ((a, pos) ~ b ~ c ~ (_ ~ (d ~ e ~ f ~ g ~ h ~ i ~ j ~ k ~ l ~ m))) => |
aa89255b704c
support for classpath artifacts within session structure:
wenzelm
parents:
75672
diff
changeset
|
1172 |
Session_Entry(pos, a, b, c, d, e, f, g, h, i, j, k, l, m.getOrElse(Nil)) } |
62631 | 1173 |
} |
1174 |
||
75393 | 1175 |
def parse_root(path: Path): List[Entry] = { |
66764
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
1176 |
val toks = Token.explode(root_syntax.keywords, File.read(path)) |
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
1177 |
val start = Token.Pos.file(path.implode) |
75986
27d98da31985
support 'chapter_definition' with description for presentation purposes;
wenzelm
parents:
75984
diff
changeset
|
1178 |
val parser: Parser[Entry] = chapter_def | chapter_entry | session_entry |
27d98da31985
support 'chapter_definition' with description for presentation purposes;
wenzelm
parents:
75984
diff
changeset
|
1179 |
parse_all(rep(parser), Token.reader(toks, start)) match { |
66818
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
1180 |
case Success(result, _) => result |
66764
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
1181 |
case bad => error(bad.toString) |
62631 | 1182 |
} |
1183 |
} |
|
1184 |
} |
|
1185 |
||
75405 | 1186 |
def parse_root(path: Path): List[Entry] = Parsers.parse_root(path) |
66819 | 1187 |
|
1188 |
def parse_root_entries(path: Path): List[Session_Entry] = |
|
76789 | 1189 |
Parsers.parse_root(path).flatMap(Library.as_subclass(classOf[Session_Entry])) |
66818
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
1190 |
|
75393 | 1191 |
def parse_roots(roots: Path): List[String] = { |
66818
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
1192 |
for { |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
1193 |
line <- split_lines(File.read(roots)) |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
1194 |
if !(line == "" || line.startsWith("#")) |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
1195 |
} yield line |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
1196 |
} |
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
1197 |
|
62631 | 1198 |
|
62635 | 1199 |
/* load sessions from certain directories */ |
62631 | 1200 |
|
77760 | 1201 |
def is_session_dir(dir: Path, ssh: SSH.System = SSH.Local): Boolean = |
1202 |
ssh.is_file(dir + ROOT) || ssh.is_file(dir + ROOTS) |
|
62631 | 1203 |
|
75297
fc4d07587695
more robust errors -- on foreground process instead of background server;
wenzelm
parents:
74812
diff
changeset
|
1204 |
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
|
1205 |
if (is_session_dir(dir)) File.pwd() + dir.expand |
76549 | 1206 |
else { |
1207 |
error("Bad session root directory: " + dir.expand.toString + |
|
1208 |
"\n (missing \"ROOT\" or \"ROOTS\")") |
|
1209 |
} |
|
62631 | 1210 |
|
75393 | 1211 |
def directories(dirs: List[Path], select_dirs: List[Path]): List[(Boolean, Path)] = { |
77760 | 1212 |
val default_dirs = Components.directories().filter(is_session_dir(_)) |
68746
f95e2f145ea5
canonical session directories in correspondence to Known.files;
wenzelm
parents:
68734
diff
changeset
|
1213 |
for { (select, dir) <- (default_dirs ::: dirs).map((false, _)) ::: select_dirs.map((true, _)) } |
f95e2f145ea5
canonical session directories in correspondence to Known.files;
wenzelm
parents:
68734
diff
changeset
|
1214 |
yield (select, dir.canonical) |
65561 | 1215 |
} |
1216 |
||
76629 | 1217 |
sealed case class Root_File(path: Path, select: Boolean) { |
1218 |
val key: JFile = path.canonical_file |
|
1219 |
def dir: Path = path.dir |
|
1220 |
||
1221 |
lazy val entries: List[Entry] = Parsers.parse_root(path) |
|
1222 |
} |
|
1223 |
||
1224 |
def load_root_files( |
|
66968
9991671c98aa
allow to augment session context via explicit session infos;
wenzelm
parents:
66967
diff
changeset
|
1225 |
dirs: List[Path] = Nil, |
76629 | 1226 |
select_dirs: List[Path] = Nil |
1227 |
): List[Root_File] = { |
|
1228 |
def load_dir(select: Boolean, dir: Path): List[Root_File] = |
|
62635 | 1229 |
load_root(select, dir) ::: load_roots(select, dir) |
62631 | 1230 |
|
76629 | 1231 |
def load_root(select: Boolean, dir: Path): List[Root_File] = { |
66764
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
1232 |
val root = dir + ROOT |
76629 | 1233 |
if (root.is_file) List(Root_File(root, select)) else Nil |
66764
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
1234 |
} |
62631 | 1235 |
|
76629 | 1236 |
def load_roots(select: Boolean, dir: Path): List[Root_File] = { |
62631 | 1237 |
val roots = dir + ROOTS |
1238 |
if (roots.is_file) { |
|
1239 |
for { |
|
66818
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
1240 |
entry <- parse_roots(roots) |
62631 | 1241 |
dir1 = |
66818
5bc903a60932
clarified signature: public access to ROOT file syntax;
wenzelm
parents:
66780
diff
changeset
|
1242 |
try { check_session_dir(dir + Path.explode(entry)) } |
62631 | 1243 |
catch { |
1244 |
case ERROR(msg) => |
|
1245 |
error(msg + "\nThe error(s) above occurred in session catalog " + roots.toString) |
|
1246 |
} |
|
66764
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
1247 |
res <- load_dir(select, dir1) |
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
1248 |
} yield res |
62631 | 1249 |
} |
1250 |
else Nil |
|
1251 |
} |
|
1252 |
||
76629 | 1253 |
val raw_roots: List[Root_File] = |
62631 | 1254 |
for { |
65561 | 1255 |
(select, dir) <- directories(dirs, select_dirs) |
76629 | 1256 |
root <- load_dir(select, check_session_dir(dir)) |
1257 |
} yield root |
|
66764
006deaf5c3dc
process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents:
66759
diff
changeset
|
1258 |
|
76629 | 1259 |
var next_root = 0 |
1260 |
var seen_roots = Map.empty[JFile, (Root_File, Int)] |
|
1261 |
for (root <- raw_roots) { |
|
1262 |
seen_roots.get(root.key) match { |
|
1263 |
case None => |
|
1264 |
seen_roots += (root.key -> (root, next_root)) |
|
1265 |
next_root += 1 |
|
76633
95c258c0753c
clarified order: accumulate strictly from left to right;
wenzelm
parents:
76632
diff
changeset
|
1266 |
case Some((root0, next0)) => |
76634 | 1267 |
val root1 = root0.copy(select = root0.select || root.select) |
1268 |
seen_roots += (root0.key -> (root1, next0)) |
|
76629 | 1269 |
} |
1270 |
} |
|
1271 |
seen_roots.valuesIterator.toList.sortBy(_._2).map(_._1) |
|
1272 |
} |
|
75995 | 1273 |
|
62632 | 1274 |
|
71808 | 1275 |
/* Isabelle tool wrapper */ |
1276 |
||
72763 | 1277 |
val isabelle_tool = Isabelle_Tool("sessions", "explore structure of Isabelle sessions", |
75394 | 1278 |
Scala_Project.here, |
1279 |
{ args => |
|
1280 |
var base_sessions: List[String] = Nil |
|
1281 |
var select_dirs: List[Path] = Nil |
|
1282 |
var requirements = false |
|
1283 |
var exclude_session_groups: List[String] = Nil |
|
1284 |
var all_sessions = false |
|
76107 | 1285 |
var build_graph = false |
75394 | 1286 |
var dirs: List[Path] = Nil |
1287 |
var session_groups: List[String] = Nil |
|
1288 |
var exclude_sessions: List[String] = Nil |
|
71808 | 1289 |
|
75394 | 1290 |
val getopts = Getopts(""" |
71808 | 1291 |
Usage: isabelle sessions [OPTIONS] [SESSIONS ...] |
1292 |
||
1293 |
Options are: |
|
1294 |
-B NAME include session NAME and all descendants |
|
1295 |
-D DIR include session directory and select its sessions |
|
1296 |
-R refer to requirements of selected sessions |
|
1297 |
-X NAME exclude sessions from group NAME and all descendants |
|
1298 |
-a select all sessions |
|
76107 | 1299 |
-b follow session build dependencies (default: source imports) |
71808 | 1300 |
-d DIR include session directory |
1301 |
-g NAME select session group NAME |
|
1302 |
-x NAME exclude session NAME and all descendants |
|
1303 |
||
1304 |
Explore the structure of Isabelle sessions and print result names in |
|
1305 |
topological order (on stdout). |
|
1306 |
""", |
|
75394 | 1307 |
"B:" -> (arg => base_sessions = base_sessions ::: List(arg)), |
1308 |
"D:" -> (arg => select_dirs = select_dirs ::: List(Path.explode(arg))), |
|
1309 |
"R" -> (_ => requirements = true), |
|
1310 |
"X:" -> (arg => exclude_session_groups = exclude_session_groups ::: List(arg)), |
|
1311 |
"a" -> (_ => all_sessions = true), |
|
76107 | 1312 |
"b" -> (_ => build_graph = true), |
75394 | 1313 |
"d:" -> (arg => dirs = dirs ::: List(Path.explode(arg))), |
1314 |
"g:" -> (arg => session_groups = session_groups ::: List(arg)), |
|
1315 |
"x:" -> (arg => exclude_sessions = exclude_sessions ::: List(arg))) |
|
71808 | 1316 |
|
75394 | 1317 |
val sessions = getopts(args) |
71808 | 1318 |
|
75394 | 1319 |
val options = Options.init() |
71808 | 1320 |
|
75394 | 1321 |
val selection = |
1322 |
Selection(requirements = requirements, all_sessions = all_sessions, base_sessions = base_sessions, |
|
1323 |
exclude_session_groups = exclude_session_groups, exclude_sessions = exclude_sessions, |
|
1324 |
session_groups = session_groups, sessions = sessions) |
|
1325 |
val sessions_structure = |
|
1326 |
load_structure(options, dirs = dirs, select_dirs = select_dirs).selection(selection) |
|
71808 | 1327 |
|
76107 | 1328 |
val order = |
1329 |
if (build_graph) sessions_structure.build_topological_order |
|
1330 |
else sessions_structure.imports_topological_order |
|
1331 |
for (name <- order) Output.writeln(name, stdout = true) |
|
75394 | 1332 |
}) |
62631 | 1333 |
} |