| author | wenzelm | 
| Thu, 09 Apr 2015 20:42:32 +0200 | |
| changeset 59990 | a81dc82ecba3 | 
| parent 59895 | a68a0fec288d | 
| child 60077 | 55cb9462e602 | 
| permissions | -rw-r--r-- | 
| 50686 | 1 | /* Title: Pure/Tools/build.scala | 
| 48276 | 2 | Author: Makarius | 
| 57923 | 3 | Options: :folding=explicit: | 
| 48276 | 4 | |
| 5 | Build and manage Isabelle sessions. | |
| 6 | */ | |
| 7 | ||
| 8 | package isabelle | |
| 9 | ||
| 10 | ||
| 48548 | 11 | import java.io.{BufferedInputStream, FileInputStream,
 | 
| 48494 | 12 | BufferedReader, InputStreamReader, IOException} | 
| 13 | import java.util.zip.GZIPInputStream | |
| 48335 | 14 | |
| 48676 
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
 wenzelm parents: 
48675diff
changeset | 15 | import scala.collection.SortedSet | 
| 51397 
03b586ee5930
support for 'chapter' specifications within session ROOT;
 wenzelm parents: 
51300diff
changeset | 16 | import scala.collection.mutable | 
| 48340 
6f4fc030882a
allow explicit specification of additional session directories;
 wenzelm parents: 
48339diff
changeset | 17 | import scala.annotation.tailrec | 
| 48337 
9c7f8e5805b4
cumulate semantic Session_Info, based on syntactic Session_Entry;
 wenzelm parents: 
48336diff
changeset | 18 | |
| 48335 | 19 | |
| 48276 | 20 | object Build | 
| 21 | {
 | |
| 50366 | 22 | /** progress context **/ | 
| 23 | ||
| 50846 
529e652d389d
more uniform theory progress in build -v and build_dialog;
 wenzelm parents: 
50845diff
changeset | 24 | class Progress | 
| 
529e652d389d
more uniform theory progress in build -v and build_dialog;
 wenzelm parents: 
50845diff
changeset | 25 |   {
 | 
| 50367 | 26 |     def echo(msg: String) {}
 | 
| 50846 
529e652d389d
more uniform theory progress in build -v and build_dialog;
 wenzelm parents: 
50845diff
changeset | 27 |     def theory(session: String, theory: String) {}
 | 
| 50367 | 28 | def stopped: Boolean = false | 
| 56873 | 29 | override def toString: String = if (stopped) "Progress(stopped)" else "Progress" | 
| 50366 | 30 | } | 
| 31 | ||
| 50367 | 32 | object Ignore_Progress extends Progress | 
| 50366 | 33 | |
| 56873 | 34 | class Console_Progress(verbose: Boolean = false) extends Progress | 
| 50846 
529e652d389d
more uniform theory progress in build -v and build_dialog;
 wenzelm parents: 
50845diff
changeset | 35 |   {
 | 
| 56831 
e3ccf0809d51
prefer scala.Console with its support for thread-local redirection;
 wenzelm parents: 
56824diff
changeset | 36 |     override def echo(msg: String) { Console.println(msg) }
 | 
| 50846 
529e652d389d
more uniform theory progress in build -v and build_dialog;
 wenzelm parents: 
50845diff
changeset | 37 | override def theory(session: String, theory: String): Unit = | 
| 
529e652d389d
more uniform theory progress in build -v and build_dialog;
 wenzelm parents: 
50845diff
changeset | 38 | if (verbose) echo(session + ": theory " + theory) | 
| 51252 | 39 | |
| 40 | @volatile private var is_stopped = false | |
| 56860 | 41 |     def interrupt_handler[A](e: => A): A = POSIX_Interrupt.handler { is_stopped = true } { e }
 | 
| 56837 
5a598f1eecfd
more robust interrupt handling for Scala_Console, which uses JVM Thread.interrupt instead of POSIX SIGINT;
 wenzelm parents: 
56831diff
changeset | 42 | override def stopped: Boolean = | 
| 
5a598f1eecfd
more robust interrupt handling for Scala_Console, which uses JVM Thread.interrupt instead of POSIX SIGINT;
 wenzelm parents: 
56831diff
changeset | 43 |     {
 | 
| 
5a598f1eecfd
more robust interrupt handling for Scala_Console, which uses JVM Thread.interrupt instead of POSIX SIGINT;
 wenzelm parents: 
56831diff
changeset | 44 | if (Thread.interrupted) is_stopped = true | 
| 
5a598f1eecfd
more robust interrupt handling for Scala_Console, which uses JVM Thread.interrupt instead of POSIX SIGINT;
 wenzelm parents: 
56831diff
changeset | 45 | is_stopped | 
| 
5a598f1eecfd
more robust interrupt handling for Scala_Console, which uses JVM Thread.interrupt instead of POSIX SIGINT;
 wenzelm parents: 
56831diff
changeset | 46 | } | 
| 50366 | 47 | } | 
| 48 | ||
| 49 | ||
| 50 | ||
| 48337 
9c7f8e5805b4
cumulate semantic Session_Info, based on syntactic Session_Entry;
 wenzelm parents: 
48336diff
changeset | 51 | /** session information **/ | 
| 48334 | 52 | |
| 48675 
10f5303f86e5
clarified Session_Entry vs. Session_Info with related parsing operations;
 wenzelm parents: 
48674diff
changeset | 53 | // external version | 
| 51397 
03b586ee5930
support for 'chapter' specifications within session ROOT;
 wenzelm parents: 
51300diff
changeset | 54 | abstract class Entry | 
| 
03b586ee5930
support for 'chapter' specifications within session ROOT;
 wenzelm parents: 
51300diff
changeset | 55 | sealed case class Chapter(name: String) extends Entry | 
| 48675 
10f5303f86e5
clarified Session_Entry vs. Session_Info with related parsing operations;
 wenzelm parents: 
48674diff
changeset | 56 | sealed case class Session_Entry( | 
| 
10f5303f86e5
clarified Session_Entry vs. Session_Info with related parsing operations;
 wenzelm parents: 
48674diff
changeset | 57 | pos: Position.T, | 
| 48738 
f8c1a5b9488f
simplified session specifications: names are taken verbatim and current directory is default;
 wenzelm parents: 
48737diff
changeset | 58 | name: String, | 
| 48675 
10f5303f86e5
clarified Session_Entry vs. Session_Info with related parsing operations;
 wenzelm parents: 
48674diff
changeset | 59 | groups: List[String], | 
| 48738 
f8c1a5b9488f
simplified session specifications: names are taken verbatim and current directory is default;
 wenzelm parents: 
48737diff
changeset | 60 | path: String, | 
| 48675 
10f5303f86e5
clarified Session_Entry vs. Session_Info with related parsing operations;
 wenzelm parents: 
48674diff
changeset | 61 | parent: Option[String], | 
| 
10f5303f86e5
clarified Session_Entry vs. Session_Info with related parsing operations;
 wenzelm parents: 
48674diff
changeset | 62 | description: String, | 
| 
10f5303f86e5
clarified Session_Entry vs. Session_Info with related parsing operations;
 wenzelm parents: 
48674diff
changeset | 63 | options: List[Options.Spec], | 
| 56801 
8dd9df88f647
some support for session-qualified theories: allow to refer to resources via qualified name instead of odd file-system path;
 wenzelm parents: 
56782diff
changeset | 64 | theories: List[(Boolean, List[Options.Spec], List[String])], | 
| 56533 
cd8b6d849b6a
explicit 'document_files' in session ROOT specifications;
 wenzelm parents: 
56464diff
changeset | 65 | files: List[String], | 
| 
cd8b6d849b6a
explicit 'document_files' in session ROOT specifications;
 wenzelm parents: 
56464diff
changeset | 66 | document_files: List[(String, String)]) extends Entry | 
| 48675 
10f5303f86e5
clarified Session_Entry vs. Session_Info with related parsing operations;
 wenzelm parents: 
48674diff
changeset | 67 | |
| 
10f5303f86e5
clarified Session_Entry vs. Session_Info with related parsing operations;
 wenzelm parents: 
48674diff
changeset | 68 | // internal version | 
| 
10f5303f86e5
clarified Session_Entry vs. Session_Info with related parsing operations;
 wenzelm parents: 
48674diff
changeset | 69 | sealed case class Session_Info( | 
| 51397 
03b586ee5930
support for 'chapter' specifications within session ROOT;
 wenzelm parents: 
51300diff
changeset | 70 | chapter: String, | 
| 48737 
f3bbb9ca57d6
added build option -D: include session directory and select its sessions;
 wenzelm parents: 
48724diff
changeset | 71 | select: Boolean, | 
| 48675 
10f5303f86e5
clarified Session_Entry vs. Session_Info with related parsing operations;
 wenzelm parents: 
48674diff
changeset | 72 | pos: Position.T, | 
| 
10f5303f86e5
clarified Session_Entry vs. Session_Info with related parsing operations;
 wenzelm parents: 
48674diff
changeset | 73 | groups: List[String], | 
| 
10f5303f86e5
clarified Session_Entry vs. Session_Info with related parsing operations;
 wenzelm parents: 
48674diff
changeset | 74 | dir: Path, | 
| 
10f5303f86e5
clarified Session_Entry vs. Session_Info with related parsing operations;
 wenzelm parents: 
48674diff
changeset | 75 | parent: Option[String], | 
| 
10f5303f86e5
clarified Session_Entry vs. Session_Info with related parsing operations;
 wenzelm parents: 
48674diff
changeset | 76 | description: String, | 
| 
10f5303f86e5
clarified Session_Entry vs. Session_Info with related parsing operations;
 wenzelm parents: 
48674diff
changeset | 77 | options: Options, | 
| 56801 
8dd9df88f647
some support for session-qualified theories: allow to refer to resources via qualified name instead of odd file-system path;
 wenzelm parents: 
56782diff
changeset | 78 | theories: List[(Boolean, Options, List[Path])], | 
| 48675 
10f5303f86e5
clarified Session_Entry vs. Session_Info with related parsing operations;
 wenzelm parents: 
48674diff
changeset | 79 | files: List[Path], | 
| 56533 
cd8b6d849b6a
explicit 'document_files' in session ROOT specifications;
 wenzelm parents: 
56464diff
changeset | 80 | document_files: List[(Path, Path)], | 
| 48675 
10f5303f86e5
clarified Session_Entry vs. Session_Info with related parsing operations;
 wenzelm parents: 
48674diff
changeset | 81 | entry_digest: SHA1.Digest) | 
| 
10f5303f86e5
clarified Session_Entry vs. Session_Info with related parsing operations;
 wenzelm parents: 
48674diff
changeset | 82 | |
| 
10f5303f86e5
clarified Session_Entry vs. Session_Info with related parsing operations;
 wenzelm parents: 
48674diff
changeset | 83 | def is_pure(name: String): Boolean = name == "RAW" || name == "Pure" | 
| 
10f5303f86e5
clarified Session_Entry vs. Session_Info with related parsing operations;
 wenzelm parents: 
48674diff
changeset | 84 | |
| 51397 
03b586ee5930
support for 'chapter' specifications within session ROOT;
 wenzelm parents: 
51300diff
changeset | 85 | def session_info(options: Options, select: Boolean, dir: Path, | 
| 
03b586ee5930
support for 'chapter' specifications within session ROOT;
 wenzelm parents: 
51300diff
changeset | 86 | chapter: String, entry: Session_Entry): (String, Session_Info) = | 
| 48675 
10f5303f86e5
clarified Session_Entry vs. Session_Info with related parsing operations;
 wenzelm parents: 
48674diff
changeset | 87 |     try {
 | 
| 48738 
f8c1a5b9488f
simplified session specifications: names are taken verbatim and current directory is default;
 wenzelm parents: 
48737diff
changeset | 88 | val name = entry.name | 
| 48675 
10f5303f86e5
clarified Session_Entry vs. Session_Info with related parsing operations;
 wenzelm parents: 
48674diff
changeset | 89 | |
| 48738 
f8c1a5b9488f
simplified session specifications: names are taken verbatim and current directory is default;
 wenzelm parents: 
48737diff
changeset | 90 |       if (name == "") error("Bad session name")
 | 
| 
f8c1a5b9488f
simplified session specifications: names are taken verbatim and current directory is default;
 wenzelm parents: 
48737diff
changeset | 91 |       if (is_pure(name) && entry.parent.isDefined) error("Illegal parent session")
 | 
| 
f8c1a5b9488f
simplified session specifications: names are taken verbatim and current directory is default;
 wenzelm parents: 
48737diff
changeset | 92 |       if (!is_pure(name) && !entry.parent.isDefined) error("Missing parent session")
 | 
| 48675 
10f5303f86e5
clarified Session_Entry vs. Session_Info with related parsing operations;
 wenzelm parents: 
48674diff
changeset | 93 | |
| 
10f5303f86e5
clarified Session_Entry vs. Session_Info with related parsing operations;
 wenzelm parents: 
48674diff
changeset | 94 | val session_options = options ++ entry.options | 
| 
10f5303f86e5
clarified Session_Entry vs. Session_Info with related parsing operations;
 wenzelm parents: 
48674diff
changeset | 95 | |
| 
10f5303f86e5
clarified Session_Entry vs. Session_Info with related parsing operations;
 wenzelm parents: 
48674diff
changeset | 96 | val theories = | 
| 56801 
8dd9df88f647
some support for session-qualified theories: allow to refer to resources via qualified name instead of odd file-system path;
 wenzelm parents: 
56782diff
changeset | 97 |         entry.theories.map({ case (global, opts, thys) =>
 | 
| 
8dd9df88f647
some support for session-qualified theories: allow to refer to resources via qualified name instead of odd file-system path;
 wenzelm parents: 
56782diff
changeset | 98 | (global, session_options ++ opts, thys.map(Path.explode(_))) }) | 
| 48675 
10f5303f86e5
clarified Session_Entry vs. Session_Info with related parsing operations;
 wenzelm parents: 
48674diff
changeset | 99 | val files = entry.files.map(Path.explode(_)) | 
| 56533 
cd8b6d849b6a
explicit 'document_files' in session ROOT specifications;
 wenzelm parents: 
56464diff
changeset | 100 | val document_files = | 
| 
cd8b6d849b6a
explicit 'document_files' in session ROOT specifications;
 wenzelm parents: 
56464diff
changeset | 101 |         entry.document_files.map({ case (s1, s2) => (Path.explode(s1), Path.explode(s2)) })
 | 
| 
cd8b6d849b6a
explicit 'document_files' in session ROOT specifications;
 wenzelm parents: 
56464diff
changeset | 102 | |
| 51397 
03b586ee5930
support for 'chapter' specifications within session ROOT;
 wenzelm parents: 
51300diff
changeset | 103 | val entry_digest = | 
| 56533 
cd8b6d849b6a
explicit 'document_files' in session ROOT specifications;
 wenzelm parents: 
56464diff
changeset | 104 | SHA1.digest((chapter, name, entry.parent, entry.options, | 
| 
cd8b6d849b6a
explicit 'document_files' in session ROOT specifications;
 wenzelm parents: 
56464diff
changeset | 105 | entry.theories, entry.files, entry.document_files).toString) | 
| 48675 
10f5303f86e5
clarified Session_Entry vs. Session_Info with related parsing operations;
 wenzelm parents: 
48674diff
changeset | 106 | |
| 
10f5303f86e5
clarified Session_Entry vs. Session_Info with related parsing operations;
 wenzelm parents: 
48674diff
changeset | 107 | val info = | 
| 51397 
03b586ee5930
support for 'chapter' specifications within session ROOT;
 wenzelm parents: 
51300diff
changeset | 108 | Session_Info(chapter, select, entry.pos, entry.groups, dir + Path.explode(entry.path), | 
| 56533 
cd8b6d849b6a
explicit 'document_files' in session ROOT specifications;
 wenzelm parents: 
56464diff
changeset | 109 | entry.parent, entry.description, session_options, theories, files, | 
| 
cd8b6d849b6a
explicit 'document_files' in session ROOT specifications;
 wenzelm parents: 
56464diff
changeset | 110 | document_files, entry_digest) | 
| 48675 
10f5303f86e5
clarified Session_Entry vs. Session_Info with related parsing operations;
 wenzelm parents: 
48674diff
changeset | 111 | |
| 48738 
f8c1a5b9488f
simplified session specifications: names are taken verbatim and current directory is default;
 wenzelm parents: 
48737diff
changeset | 112 | (name, info) | 
| 48675 
10f5303f86e5
clarified Session_Entry vs. Session_Info with related parsing operations;
 wenzelm parents: 
48674diff
changeset | 113 | } | 
| 
10f5303f86e5
clarified Session_Entry vs. Session_Info with related parsing operations;
 wenzelm parents: 
48674diff
changeset | 114 |     catch {
 | 
| 
10f5303f86e5
clarified Session_Entry vs. Session_Info with related parsing operations;
 wenzelm parents: 
48674diff
changeset | 115 | case ERROR(msg) => | 
| 
10f5303f86e5
clarified Session_Entry vs. Session_Info with related parsing operations;
 wenzelm parents: 
48674diff
changeset | 116 | error(msg + "\nThe error(s) above occurred in session entry " + | 
| 48992 | 117 | quote(entry.name) + Position.here(entry.pos)) | 
| 48675 
10f5303f86e5
clarified Session_Entry vs. Session_Info with related parsing operations;
 wenzelm parents: 
48674diff
changeset | 118 | } | 
| 
10f5303f86e5
clarified Session_Entry vs. Session_Info with related parsing operations;
 wenzelm parents: 
48674diff
changeset | 119 | |
| 
10f5303f86e5
clarified Session_Entry vs. Session_Info with related parsing operations;
 wenzelm parents: 
48674diff
changeset | 120 | |
| 48676 
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
 wenzelm parents: 
48675diff
changeset | 121 | /* session tree */ | 
| 
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
 wenzelm parents: 
48675diff
changeset | 122 | |
| 
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
 wenzelm parents: 
48675diff
changeset | 123 | object Session_Tree | 
| 
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
 wenzelm parents: 
48675diff
changeset | 124 |   {
 | 
| 
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
 wenzelm parents: 
48675diff
changeset | 125 | def apply(infos: Seq[(String, Session_Info)]): Session_Tree = | 
| 
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
 wenzelm parents: 
48675diff
changeset | 126 |     {
 | 
| 48680 | 127 | val graph1 = | 
| 128 |         (Graph.string[Session_Info] /: infos) {
 | |
| 48684 
9170e10c651e
re-introduced ROOTS catalog files (cf. 47330b712f8f) which help to organize AFP or make -d options persistent;
 wenzelm parents: 
48680diff
changeset | 129 | case (graph, (name, info)) => | 
| 48680 | 130 | if (graph.defined(name)) | 
| 54939 | 131 |               error("Duplicate session " + quote(name) + Position.here(info.pos) +
 | 
| 132 | Position.here(graph.get_node(name).pos)) | |
| 48680 | 133 | else graph.new_node(name, info) | 
| 134 | } | |
| 135 | val graph2 = | |
| 56372 
fadb0fef09d7
more explicit iterator terminology, in accordance to Scala 2.8 library;
 wenzelm parents: 
56208diff
changeset | 136 |         (graph1 /: graph1.iterator) {
 | 
| 48680 | 137 | case (graph, (name, (info, _))) => | 
| 138 |             info.parent match {
 | |
| 139 | case None => graph | |
| 140 | case Some(parent) => | |
| 141 | if (!graph.defined(parent)) | |
| 142 |                   error("Bad parent session " + quote(parent) + " for " +
 | |
| 48992 | 143 | quote(name) + Position.here(info.pos)) | 
| 48676 
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
 wenzelm parents: 
48675diff
changeset | 144 | |
| 48680 | 145 |                 try { graph.add_edge_acyclic(parent, name) }
 | 
| 146 |                 catch {
 | |
| 147 | case exn: Graph.Cycles[_] => | |
| 148 | error(cat_lines(exn.cycles.map(cycle => | |
| 149 | "Cyclic session dependency of " + | |
| 150 |                         cycle.map(c => quote(c.toString)).mkString(" via "))) +
 | |
| 48992 | 151 | Position.here(info.pos)) | 
| 48680 | 152 | } | 
| 48676 
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
 wenzelm parents: 
48675diff
changeset | 153 | } | 
| 
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
 wenzelm parents: 
48675diff
changeset | 154 | } | 
| 48680 | 155 | new Session_Tree(graph2) | 
| 48676 
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
 wenzelm parents: 
48675diff
changeset | 156 | } | 
| 
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
 wenzelm parents: 
48675diff
changeset | 157 | } | 
| 
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
 wenzelm parents: 
48675diff
changeset | 158 | |
| 48680 | 159 | final class Session_Tree private(val graph: Graph[String, Session_Info]) | 
| 48676 
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
 wenzelm parents: 
48675diff
changeset | 160 | extends PartialFunction[String, Session_Info] | 
| 
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
 wenzelm parents: 
48675diff
changeset | 161 |   {
 | 
| 48680 | 162 | def apply(name: String): Session_Info = graph.get_node(name) | 
| 163 | def isDefinedAt(name: String): Boolean = graph.defined(name) | |
| 48676 
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
 wenzelm parents: 
48675diff
changeset | 164 | |
| 59892 
2a616319c171
added isabelle build option -x, to exclude sessions;
 wenzelm parents: 
59891diff
changeset | 165 | def selection( | 
| 
2a616319c171
added isabelle build option -x, to exclude sessions;
 wenzelm parents: 
59891diff
changeset | 166 | requirements: Boolean = false, | 
| 
2a616319c171
added isabelle build option -x, to exclude sessions;
 wenzelm parents: 
59891diff
changeset | 167 | all_sessions: Boolean = false, | 
| 
2a616319c171
added isabelle build option -x, to exclude sessions;
 wenzelm parents: 
59891diff
changeset | 168 | session_groups: List[String] = Nil, | 
| 
2a616319c171
added isabelle build option -x, to exclude sessions;
 wenzelm parents: 
59891diff
changeset | 169 | exclude_sessions: List[String] = Nil, | 
| 
2a616319c171
added isabelle build option -x, to exclude sessions;
 wenzelm parents: 
59891diff
changeset | 170 | sessions: List[String] = Nil): (List[String], Session_Tree) = | 
| 48676 
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
 wenzelm parents: 
48675diff
changeset | 171 |     {
 | 
| 59892 
2a616319c171
added isabelle build option -x, to exclude sessions;
 wenzelm parents: 
59891diff
changeset | 172 | val bad_sessions = | 
| 
2a616319c171
added isabelle build option -x, to exclude sessions;
 wenzelm parents: 
59891diff
changeset | 173 | SortedSet((exclude_sessions ::: sessions).filterNot(isDefinedAt(_)): _*).toList | 
| 59319 | 174 |       if (bad_sessions.nonEmpty) error("Undefined session(s): " + commas_quote(bad_sessions))
 | 
| 48676 
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
 wenzelm parents: 
48675diff
changeset | 175 | |
| 59892 
2a616319c171
added isabelle build option -x, to exclude sessions;
 wenzelm parents: 
59891diff
changeset | 176 | val excluded = graph.all_succs(exclude_sessions).toSet | 
| 49131 | 177 | val pre_selected = | 
| 48676 
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
 wenzelm parents: 
48675diff
changeset | 178 |       {
 | 
| 56372 
fadb0fef09d7
more explicit iterator terminology, in accordance to Scala 2.8 library;
 wenzelm parents: 
56208diff
changeset | 179 | if (all_sessions) graph.keys | 
| 48676 
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
 wenzelm parents: 
48675diff
changeset | 180 |         else {
 | 
| 48737 
f3bbb9ca57d6
added build option -D: include session directory and select its sessions;
 wenzelm parents: 
48724diff
changeset | 181 | val select_group = session_groups.toSet | 
| 
f3bbb9ca57d6
added build option -D: include session directory and select its sessions;
 wenzelm parents: 
48724diff
changeset | 182 | val select = sessions.toSet | 
| 
f3bbb9ca57d6
added build option -D: include session directory and select its sessions;
 wenzelm parents: 
48724diff
changeset | 183 |           (for {
 | 
| 56372 
fadb0fef09d7
more explicit iterator terminology, in accordance to Scala 2.8 library;
 wenzelm parents: 
56208diff
changeset | 184 | (name, (info, _)) <- graph.iterator | 
| 48737 
f3bbb9ca57d6
added build option -D: include session directory and select its sessions;
 wenzelm parents: 
48724diff
changeset | 185 | if info.select || select(name) || apply(name).groups.exists(select_group) | 
| 
f3bbb9ca57d6
added build option -D: include session directory and select its sessions;
 wenzelm parents: 
48724diff
changeset | 186 | } yield name).toList | 
| 48676 
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
 wenzelm parents: 
48675diff
changeset | 187 | } | 
| 59892 
2a616319c171
added isabelle build option -x, to exclude sessions;
 wenzelm parents: 
59891diff
changeset | 188 | }.filterNot(excluded) | 
| 
2a616319c171
added isabelle build option -x, to exclude sessions;
 wenzelm parents: 
59891diff
changeset | 189 | |
| 49131 | 190 | val selected = | 
| 191 | if (requirements) (graph.all_preds(pre_selected).toSet -- pre_selected).toList | |
| 192 | else pre_selected | |
| 193 | ||
| 56801 
8dd9df88f647
some support for session-qualified theories: allow to refer to resources via qualified name instead of odd file-system path;
 wenzelm parents: 
56782diff
changeset | 194 | val graph1 = graph.restrict(graph.all_preds(selected).toSet) | 
| 
8dd9df88f647
some support for session-qualified theories: allow to refer to resources via qualified name instead of odd file-system path;
 wenzelm parents: 
56782diff
changeset | 195 | (selected, new Session_Tree(graph1)) | 
| 48676 
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
 wenzelm parents: 
48675diff
changeset | 196 | } | 
| 
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
 wenzelm parents: 
48675diff
changeset | 197 | |
| 
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
 wenzelm parents: 
48675diff
changeset | 198 | def topological_order: List[(String, Session_Info)] = | 
| 
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
 wenzelm parents: 
48675diff
changeset | 199 | graph.topological_order.map(name => (name, apply(name))) | 
| 48794 | 200 | |
| 56372 
fadb0fef09d7
more explicit iterator terminology, in accordance to Scala 2.8 library;
 wenzelm parents: 
56208diff
changeset | 201 |     override def toString: String = graph.keys_iterator.mkString("Session_Tree(", ", ", ")")
 | 
| 48676 
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
 wenzelm parents: 
48675diff
changeset | 202 | } | 
| 
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
 wenzelm parents: 
48675diff
changeset | 203 | |
| 
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
 wenzelm parents: 
48675diff
changeset | 204 | |
| 48675 
10f5303f86e5
clarified Session_Entry vs. Session_Info with related parsing operations;
 wenzelm parents: 
48674diff
changeset | 205 | /* parser */ | 
| 
10f5303f86e5
clarified Session_Entry vs. Session_Info with related parsing operations;
 wenzelm parents: 
48674diff
changeset | 206 | |
| 51397 
03b586ee5930
support for 'chapter' specifications within session ROOT;
 wenzelm parents: 
51300diff
changeset | 207 | val chapter_default = "Unsorted" | 
| 
03b586ee5930
support for 'chapter' specifications within session ROOT;
 wenzelm parents: 
51300diff
changeset | 208 | |
| 
03b586ee5930
support for 'chapter' specifications within session ROOT;
 wenzelm parents: 
51300diff
changeset | 209 | private val CHAPTER = "chapter" | 
| 48713 
de26cf3191a3
more token markers, based on actual outer syntax;
 wenzelm parents: 
48710diff
changeset | 210 | private val SESSION = "session" | 
| 
de26cf3191a3
more token markers, based on actual outer syntax;
 wenzelm parents: 
48710diff
changeset | 211 | private val IN = "in" | 
| 
de26cf3191a3
more token markers, based on actual outer syntax;
 wenzelm parents: 
48710diff
changeset | 212 | private val DESCRIPTION = "description" | 
| 
de26cf3191a3
more token markers, based on actual outer syntax;
 wenzelm parents: 
48710diff
changeset | 213 | private val OPTIONS = "options" | 
| 56801 
8dd9df88f647
some support for session-qualified theories: allow to refer to resources via qualified name instead of odd file-system path;
 wenzelm parents: 
56782diff
changeset | 214 | private val GLOBAL_THEORIES = "global_theories" | 
| 48713 
de26cf3191a3
more token markers, based on actual outer syntax;
 wenzelm parents: 
48710diff
changeset | 215 | private val THEORIES = "theories" | 
| 
de26cf3191a3
more token markers, based on actual outer syntax;
 wenzelm parents: 
48710diff
changeset | 216 | private val FILES = "files" | 
| 56533 
cd8b6d849b6a
explicit 'document_files' in session ROOT specifications;
 wenzelm parents: 
56464diff
changeset | 217 | private val DOCUMENT_FILES = "document_files" | 
| 48713 
de26cf3191a3
more token markers, based on actual outer syntax;
 wenzelm parents: 
48710diff
changeset | 218 | |
| 
de26cf3191a3
more token markers, based on actual outer syntax;
 wenzelm parents: 
48710diff
changeset | 219 | lazy val root_syntax = | 
| 48738 
f8c1a5b9488f
simplified session specifications: names are taken verbatim and current directory is default;
 wenzelm parents: 
48737diff
changeset | 220 |     Outer_Syntax.init() + "(" + ")" + "+" + "," + "=" + "[" + "]" +
 | 
| 51397 
03b586ee5930
support for 'chapter' specifications within session ROOT;
 wenzelm parents: 
51300diff
changeset | 221 | (CHAPTER, Keyword.THY_DECL) + (SESSION, Keyword.THY_DECL) + | 
| 56801 
8dd9df88f647
some support for session-qualified theories: allow to refer to resources via qualified name instead of odd file-system path;
 wenzelm parents: 
56782diff
changeset | 222 | IN + DESCRIPTION + OPTIONS + GLOBAL_THEORIES + THEORIES + FILES + DOCUMENT_FILES | 
| 48713 
de26cf3191a3
more token markers, based on actual outer syntax;
 wenzelm parents: 
48710diff
changeset | 223 | |
| 56780 
e76467fed375
tuned signature -- accomodate operations of ROOT files;
 wenzelm parents: 
56779diff
changeset | 224 | object Parser extends Parse.Parser | 
| 48675 
10f5303f86e5
clarified Session_Entry vs. Session_Info with related parsing operations;
 wenzelm parents: 
48674diff
changeset | 225 |   {
 | 
| 56780 
e76467fed375
tuned signature -- accomodate operations of ROOT files;
 wenzelm parents: 
56779diff
changeset | 226 | private val chapter: Parser[Chapter] = | 
| 51397 
03b586ee5930
support for 'chapter' specifications within session ROOT;
 wenzelm parents: 
51300diff
changeset | 227 |     {
 | 
| 
03b586ee5930
support for 'chapter' specifications within session ROOT;
 wenzelm parents: 
51300diff
changeset | 228 |       val chapter_name = atom("chapter name", _.is_name)
 | 
| 
03b586ee5930
support for 'chapter' specifications within session ROOT;
 wenzelm parents: 
51300diff
changeset | 229 | |
| 
03b586ee5930
support for 'chapter' specifications within session ROOT;
 wenzelm parents: 
51300diff
changeset | 230 |       command(CHAPTER) ~! chapter_name ^^ { case _ ~ a => Chapter(a) }
 | 
| 
03b586ee5930
support for 'chapter' specifications within session ROOT;
 wenzelm parents: 
51300diff
changeset | 231 | } | 
| 
03b586ee5930
support for 'chapter' specifications within session ROOT;
 wenzelm parents: 
51300diff
changeset | 232 | |
| 56780 
e76467fed375
tuned signature -- accomodate operations of ROOT files;
 wenzelm parents: 
56779diff
changeset | 233 | private val session_entry: Parser[Session_Entry] = | 
| 48675 
10f5303f86e5
clarified Session_Entry vs. Session_Info with related parsing operations;
 wenzelm parents: 
48674diff
changeset | 234 |     {
 | 
| 
10f5303f86e5
clarified Session_Entry vs. Session_Info with related parsing operations;
 wenzelm parents: 
48674diff
changeset | 235 |       val session_name = atom("session name", _.is_name)
 | 
| 
10f5303f86e5
clarified Session_Entry vs. Session_Info with related parsing operations;
 wenzelm parents: 
48674diff
changeset | 236 | |
| 
10f5303f86e5
clarified Session_Entry vs. Session_Info with related parsing operations;
 wenzelm parents: 
48674diff
changeset | 237 | val option = | 
| 58908 | 238 |         name ~ opt($$$("=") ~! name ^^ { case _ ~ x => x }) ^^ { case x ~ y => (x, y) }
 | 
| 239 |       val options = $$$("[") ~> rep1sep(option, $$$(",")) <~ $$$("]")
 | |
| 48675 
10f5303f86e5
clarified Session_Entry vs. Session_Info with related parsing operations;
 wenzelm parents: 
48674diff
changeset | 240 | |
| 
10f5303f86e5
clarified Session_Entry vs. Session_Info with related parsing operations;
 wenzelm parents: 
48674diff
changeset | 241 | val theories = | 
| 58908 | 242 | ($$$(GLOBAL_THEORIES) | $$$(THEORIES)) ~! | 
| 56801 
8dd9df88f647
some support for session-qualified theories: allow to refer to resources via qualified name instead of odd file-system path;
 wenzelm parents: 
56782diff
changeset | 243 | ((options | success(Nil)) ~ rep(theory_xname)) ^^ | 
| 
8dd9df88f647
some support for session-qualified theories: allow to refer to resources via qualified name instead of odd file-system path;
 wenzelm parents: 
56782diff
changeset | 244 |           { case x ~ (y ~ z) => (x == GLOBAL_THEORIES, y, z) }
 | 
| 48675 
10f5303f86e5
clarified Session_Entry vs. Session_Info with related parsing operations;
 wenzelm parents: 
48674diff
changeset | 245 | |
| 56533 
cd8b6d849b6a
explicit 'document_files' in session ROOT specifications;
 wenzelm parents: 
56464diff
changeset | 246 | val document_files = | 
| 58908 | 247 | $$$(DOCUMENT_FILES) ~! | 
| 248 |           (($$$("(") ~! ($$$(IN) ~! (path ~ $$$(")"))) ^^
 | |
| 56533 
cd8b6d849b6a
explicit 'document_files' in session ROOT specifications;
 wenzelm parents: 
56464diff
changeset | 249 |               { case _ ~ (_ ~ (x ~ _)) => x } | success("document")) ~
 | 
| 
cd8b6d849b6a
explicit 'document_files' in session ROOT specifications;
 wenzelm parents: 
56464diff
changeset | 250 |             rep1(path)) ^^ { case _ ~ (x ~ y) => y.map((x, _)) }
 | 
| 
cd8b6d849b6a
explicit 'document_files' in session ROOT specifications;
 wenzelm parents: 
56464diff
changeset | 251 | |
| 59811 | 252 | command(SESSION) ~! | 
| 253 | (position(session_name) ~ | |
| 58908 | 254 |           (($$$("(") ~! (rep1(name) <~ $$$(")")) ^^ { case _ ~ x => x }) | success(Nil)) ~
 | 
| 255 |           (($$$(IN) ~! path ^^ { case _ ~ x => x }) | success(".")) ~
 | |
| 256 |           ($$$("=") ~!
 | |
| 257 |             (opt(session_name ~! $$$("+") ^^ { case x ~ _ => x }) ~
 | |
| 258 |               (($$$(DESCRIPTION) ~! text ^^ { case _ ~ x => x }) | success("")) ~
 | |
| 259 |               (($$$(OPTIONS) ~! options ^^ { case _ ~ x => x }) | success(Nil)) ~
 | |
| 48916 | 260 | rep1(theories) ~ | 
| 58908 | 261 |               (($$$(FILES) ~! rep1(path) ^^ { case _ ~ x => x }) | success(Nil)) ~
 | 
| 56533 
cd8b6d849b6a
explicit 'document_files' in session ROOT specifications;
 wenzelm parents: 
56464diff
changeset | 262 | (rep(document_files) ^^ (x => x.flatten))))) ^^ | 
| 59811 | 263 |         { case _ ~ ((a, pos) ~ b ~ c ~ (_ ~ (d ~ e ~ f ~ g ~ h ~ i))) =>
 | 
| 56533 
cd8b6d849b6a
explicit 'document_files' in session ROOT specifications;
 wenzelm parents: 
56464diff
changeset | 264 | Session_Entry(pos, a, b, c, d, e, f, g, h, i) } | 
| 48675 
10f5303f86e5
clarified Session_Entry vs. Session_Info with related parsing operations;
 wenzelm parents: 
48674diff
changeset | 265 | } | 
| 
10f5303f86e5
clarified Session_Entry vs. Session_Info with related parsing operations;
 wenzelm parents: 
48674diff
changeset | 266 | |
| 51397 
03b586ee5930
support for 'chapter' specifications within session ROOT;
 wenzelm parents: 
51300diff
changeset | 267 | def parse_entries(root: Path): List[(String, Session_Entry)] = | 
| 48675 
10f5303f86e5
clarified Session_Entry vs. Session_Info with related parsing operations;
 wenzelm parents: 
48674diff
changeset | 268 |     {
 | 
| 59083 | 269 | val toks = Token.explode(root_syntax.keywords, File.read(root)) | 
| 59705 | 270 | val start = Token.Pos.file(root.implode) | 
| 51397 
03b586ee5930
support for 'chapter' specifications within session ROOT;
 wenzelm parents: 
51300diff
changeset | 271 | |
| 59705 | 272 |       parse_all(rep(chapter | session_entry), Token.reader(toks, start)) match {
 | 
| 51397 
03b586ee5930
support for 'chapter' specifications within session ROOT;
 wenzelm parents: 
51300diff
changeset | 273 | case Success(result, _) => | 
| 
03b586ee5930
support for 'chapter' specifications within session ROOT;
 wenzelm parents: 
51300diff
changeset | 274 | var chapter = chapter_default | 
| 
03b586ee5930
support for 'chapter' specifications within session ROOT;
 wenzelm parents: 
51300diff
changeset | 275 | val entries = new mutable.ListBuffer[(String, Session_Entry)] | 
| 
03b586ee5930
support for 'chapter' specifications within session ROOT;
 wenzelm parents: 
51300diff
changeset | 276 |           result.foreach {
 | 
| 
03b586ee5930
support for 'chapter' specifications within session ROOT;
 wenzelm parents: 
51300diff
changeset | 277 | case Chapter(name) => chapter = name | 
| 
03b586ee5930
support for 'chapter' specifications within session ROOT;
 wenzelm parents: 
51300diff
changeset | 278 | case session_entry: Session_Entry => entries += ((chapter, session_entry)) | 
| 
03b586ee5930
support for 'chapter' specifications within session ROOT;
 wenzelm parents: 
51300diff
changeset | 279 | } | 
| 
03b586ee5930
support for 'chapter' specifications within session ROOT;
 wenzelm parents: 
51300diff
changeset | 280 | entries.toList | 
| 48675 
10f5303f86e5
clarified Session_Entry vs. Session_Info with related parsing operations;
 wenzelm parents: 
48674diff
changeset | 281 | case bad => error(bad.toString) | 
| 
10f5303f86e5
clarified Session_Entry vs. Session_Info with related parsing operations;
 wenzelm parents: 
48674diff
changeset | 282 | } | 
| 
10f5303f86e5
clarified Session_Entry vs. Session_Info with related parsing operations;
 wenzelm parents: 
48674diff
changeset | 283 | } | 
| 
10f5303f86e5
clarified Session_Entry vs. Session_Info with related parsing operations;
 wenzelm parents: 
48674diff
changeset | 284 | } | 
| 
10f5303f86e5
clarified Session_Entry vs. Session_Info with related parsing operations;
 wenzelm parents: 
48674diff
changeset | 285 | |
| 
10f5303f86e5
clarified Session_Entry vs. Session_Info with related parsing operations;
 wenzelm parents: 
48674diff
changeset | 286 | |
| 
10f5303f86e5
clarified Session_Entry vs. Session_Info with related parsing operations;
 wenzelm parents: 
48674diff
changeset | 287 | /* find sessions within certain directories */ | 
| 
10f5303f86e5
clarified Session_Entry vs. Session_Info with related parsing operations;
 wenzelm parents: 
48674diff
changeset | 288 | |
| 
10f5303f86e5
clarified Session_Entry vs. Session_Info with related parsing operations;
 wenzelm parents: 
48674diff
changeset | 289 |   private val ROOT = Path.explode("ROOT")
 | 
| 48684 
9170e10c651e
re-introduced ROOTS catalog files (cf. 47330b712f8f) which help to organize AFP or make -d options persistent;
 wenzelm parents: 
48680diff
changeset | 290 |   private val ROOTS = Path.explode("ROOTS")
 | 
| 48675 
10f5303f86e5
clarified Session_Entry vs. Session_Info with related parsing operations;
 wenzelm parents: 
48674diff
changeset | 291 | |
| 48684 
9170e10c651e
re-introduced ROOTS catalog files (cf. 47330b712f8f) which help to organize AFP or make -d options persistent;
 wenzelm parents: 
48680diff
changeset | 292 | private def is_session_dir(dir: Path): Boolean = | 
| 
9170e10c651e
re-introduced ROOTS catalog files (cf. 47330b712f8f) which help to organize AFP or make -d options persistent;
 wenzelm parents: 
48680diff
changeset | 293 | (dir + ROOT).is_file || (dir + ROOTS).is_file | 
| 
9170e10c651e
re-introduced ROOTS catalog files (cf. 47330b712f8f) which help to organize AFP or make -d options persistent;
 wenzelm parents: 
48680diff
changeset | 294 | |
| 
9170e10c651e
re-introduced ROOTS catalog files (cf. 47330b712f8f) which help to organize AFP or make -d options persistent;
 wenzelm parents: 
48680diff
changeset | 295 | private def check_session_dir(dir: Path): Path = | 
| 
9170e10c651e
re-introduced ROOTS catalog files (cf. 47330b712f8f) which help to organize AFP or make -d options persistent;
 wenzelm parents: 
48680diff
changeset | 296 | if (is_session_dir(dir)) dir | 
| 
9170e10c651e
re-introduced ROOTS catalog files (cf. 47330b712f8f) which help to organize AFP or make -d options persistent;
 wenzelm parents: 
48680diff
changeset | 297 |     else error("Bad session root directory: " + dir.toString)
 | 
| 48675 
10f5303f86e5
clarified Session_Entry vs. Session_Info with related parsing operations;
 wenzelm parents: 
48674diff
changeset | 298 | |
| 56890 | 299 | def find_sessions(options: Options, dirs: List[Path] = Nil, select_dirs: List[Path] = Nil) | 
| 300 | : Session_Tree = | |
| 48675 
10f5303f86e5
clarified Session_Entry vs. Session_Info with related parsing operations;
 wenzelm parents: 
48674diff
changeset | 301 |   {
 | 
| 48737 
f3bbb9ca57d6
added build option -D: include session directory and select its sessions;
 wenzelm parents: 
48724diff
changeset | 302 | def find_dir(select: Boolean, dir: Path): List[(String, Session_Info)] = | 
| 
f3bbb9ca57d6
added build option -D: include session directory and select its sessions;
 wenzelm parents: 
48724diff
changeset | 303 | find_root(select, dir) ::: find_roots(select, dir) | 
| 48684 
9170e10c651e
re-introduced ROOTS catalog files (cf. 47330b712f8f) which help to organize AFP or make -d options persistent;
 wenzelm parents: 
48680diff
changeset | 304 | |
| 48737 
f3bbb9ca57d6
added build option -D: include session directory and select its sessions;
 wenzelm parents: 
48724diff
changeset | 305 | def find_root(select: Boolean, dir: Path): List[(String, Session_Info)] = | 
| 48684 
9170e10c651e
re-introduced ROOTS catalog files (cf. 47330b712f8f) which help to organize AFP or make -d options persistent;
 wenzelm parents: 
48680diff
changeset | 306 |     {
 | 
| 
9170e10c651e
re-introduced ROOTS catalog files (cf. 47330b712f8f) which help to organize AFP or make -d options persistent;
 wenzelm parents: 
48680diff
changeset | 307 | val root = dir + ROOT | 
| 51397 
03b586ee5930
support for 'chapter' specifications within session ROOT;
 wenzelm parents: 
51300diff
changeset | 308 | if (root.is_file) | 
| 
03b586ee5930
support for 'chapter' specifications within session ROOT;
 wenzelm parents: 
51300diff
changeset | 309 | Parser.parse_entries(root).map(p => session_info(options, select, dir, p._1, p._2)) | 
| 48684 
9170e10c651e
re-introduced ROOTS catalog files (cf. 47330b712f8f) which help to organize AFP or make -d options persistent;
 wenzelm parents: 
48680diff
changeset | 310 | else Nil | 
| 
9170e10c651e
re-introduced ROOTS catalog files (cf. 47330b712f8f) which help to organize AFP or make -d options persistent;
 wenzelm parents: 
48680diff
changeset | 311 | } | 
| 
9170e10c651e
re-introduced ROOTS catalog files (cf. 47330b712f8f) which help to organize AFP or make -d options persistent;
 wenzelm parents: 
48680diff
changeset | 312 | |
| 48737 
f3bbb9ca57d6
added build option -D: include session directory and select its sessions;
 wenzelm parents: 
48724diff
changeset | 313 | def find_roots(select: Boolean, dir: Path): List[(String, Session_Info)] = | 
| 48684 
9170e10c651e
re-introduced ROOTS catalog files (cf. 47330b712f8f) which help to organize AFP or make -d options persistent;
 wenzelm parents: 
48680diff
changeset | 314 |     {
 | 
| 
9170e10c651e
re-introduced ROOTS catalog files (cf. 47330b712f8f) which help to organize AFP or make -d options persistent;
 wenzelm parents: 
48680diff
changeset | 315 | val roots = dir + ROOTS | 
| 
9170e10c651e
re-introduced ROOTS catalog files (cf. 47330b712f8f) which help to organize AFP or make -d options persistent;
 wenzelm parents: 
48680diff
changeset | 316 |       if (roots.is_file) {
 | 
| 
9170e10c651e
re-introduced ROOTS catalog files (cf. 47330b712f8f) which help to organize AFP or make -d options persistent;
 wenzelm parents: 
48680diff
changeset | 317 |         for {
 | 
| 
9170e10c651e
re-introduced ROOTS catalog files (cf. 47330b712f8f) which help to organize AFP or make -d options persistent;
 wenzelm parents: 
48680diff
changeset | 318 | line <- split_lines(File.read(roots)) | 
| 
9170e10c651e
re-introduced ROOTS catalog files (cf. 47330b712f8f) which help to organize AFP or make -d options persistent;
 wenzelm parents: 
48680diff
changeset | 319 |           if !(line == "" || line.startsWith("#"))
 | 
| 
9170e10c651e
re-introduced ROOTS catalog files (cf. 47330b712f8f) which help to organize AFP or make -d options persistent;
 wenzelm parents: 
48680diff
changeset | 320 | dir1 = | 
| 
9170e10c651e
re-introduced ROOTS catalog files (cf. 47330b712f8f) which help to organize AFP or make -d options persistent;
 wenzelm parents: 
48680diff
changeset | 321 |             try { check_session_dir(dir + Path.explode(line)) }
 | 
| 
9170e10c651e
re-introduced ROOTS catalog files (cf. 47330b712f8f) which help to organize AFP or make -d options persistent;
 wenzelm parents: 
48680diff
changeset | 322 |             catch {
 | 
| 
9170e10c651e
re-introduced ROOTS catalog files (cf. 47330b712f8f) which help to organize AFP or make -d options persistent;
 wenzelm parents: 
48680diff
changeset | 323 | case ERROR(msg) => | 
| 
9170e10c651e
re-introduced ROOTS catalog files (cf. 47330b712f8f) which help to organize AFP or make -d options persistent;
 wenzelm parents: 
48680diff
changeset | 324 | error(msg + "\nThe error(s) above occurred in session catalog " + roots.toString) | 
| 
9170e10c651e
re-introduced ROOTS catalog files (cf. 47330b712f8f) which help to organize AFP or make -d options persistent;
 wenzelm parents: 
48680diff
changeset | 325 | } | 
| 48737 
f3bbb9ca57d6
added build option -D: include session directory and select its sessions;
 wenzelm parents: 
48724diff
changeset | 326 | info <- find_dir(select, dir1) | 
| 48684 
9170e10c651e
re-introduced ROOTS catalog files (cf. 47330b712f8f) which help to organize AFP or make -d options persistent;
 wenzelm parents: 
48680diff
changeset | 327 | } yield info | 
| 
9170e10c651e
re-introduced ROOTS catalog files (cf. 47330b712f8f) which help to organize AFP or make -d options persistent;
 wenzelm parents: 
48680diff
changeset | 328 | } | 
| 
9170e10c651e
re-introduced ROOTS catalog files (cf. 47330b712f8f) which help to organize AFP or make -d options persistent;
 wenzelm parents: 
48680diff
changeset | 329 | else Nil | 
| 
9170e10c651e
re-introduced ROOTS catalog files (cf. 47330b712f8f) which help to organize AFP or make -d options persistent;
 wenzelm parents: 
48680diff
changeset | 330 | } | 
| 
9170e10c651e
re-introduced ROOTS catalog files (cf. 47330b712f8f) which help to organize AFP or make -d options persistent;
 wenzelm parents: 
48680diff
changeset | 331 | |
| 56890 | 332 | val default_dirs = Isabelle_System.components().filter(is_session_dir(_)) | 
| 333 | dirs.foreach(check_session_dir(_)) | |
| 334 | select_dirs.foreach(check_session_dir(_)) | |
| 48737 
f3bbb9ca57d6
added build option -D: include session directory and select its sessions;
 wenzelm parents: 
48724diff
changeset | 335 | |
| 48684 
9170e10c651e
re-introduced ROOTS catalog files (cf. 47330b712f8f) which help to organize AFP or make -d options persistent;
 wenzelm parents: 
48680diff
changeset | 336 | Session_Tree( | 
| 
9170e10c651e
re-introduced ROOTS catalog files (cf. 47330b712f8f) which help to organize AFP or make -d options persistent;
 wenzelm parents: 
48680diff
changeset | 337 |       for {
 | 
| 56890 | 338 | (select, dir) <- (default_dirs ::: dirs).map((false, _)) ::: select_dirs.map((true, _)) | 
| 48737 
f3bbb9ca57d6
added build option -D: include session directory and select its sessions;
 wenzelm parents: 
48724diff
changeset | 339 | info <- find_dir(select, dir) | 
| 48684 
9170e10c651e
re-introduced ROOTS catalog files (cf. 47330b712f8f) which help to organize AFP or make -d options persistent;
 wenzelm parents: 
48680diff
changeset | 340 | } yield info) | 
| 48349 
a78e5d399599
support Session.Queue with ordering and dependencies;
 wenzelm parents: 
48347diff
changeset | 341 | } | 
| 48334 | 342 | |
| 48337 
9c7f8e5805b4
cumulate semantic Session_Info, based on syntactic Session_Entry;
 wenzelm parents: 
48336diff
changeset | 343 | |
| 48424 | 344 | |
| 345 | /** build **/ | |
| 346 | ||
| 48676 
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
 wenzelm parents: 
48675diff
changeset | 347 | /* queue */ | 
| 
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
 wenzelm parents: 
48675diff
changeset | 348 | |
| 
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
 wenzelm parents: 
48675diff
changeset | 349 | object Queue | 
| 
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
 wenzelm parents: 
48675diff
changeset | 350 |   {
 | 
| 51230 
19192615911e
option parallel_proofs_reuse_timing controls reuse of log information -- since it is not always beneficial for performance;
 wenzelm parents: 
51229diff
changeset | 351 | def apply(tree: Session_Tree, load_timings: String => (List[Properties.T], Double)): Queue = | 
| 48676 
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
 wenzelm parents: 
48675diff
changeset | 352 |     {
 | 
| 
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
 wenzelm parents: 
48675diff
changeset | 353 | val graph = tree.graph | 
| 56372 
fadb0fef09d7
more explicit iterator terminology, in accordance to Scala 2.8 library;
 wenzelm parents: 
56208diff
changeset | 354 | val sessions = graph.keys | 
| 51220 | 355 | |
| 59136 
c2b23cb8a677
added Par_List in Scala, in accordance to ML version;
 wenzelm parents: 
59083diff
changeset | 356 | val timings = Par_List.map((name: String) => (name, load_timings(name)), sessions) | 
| 51220 | 357 | val command_timings = | 
| 358 |         Map(timings.map({ case (name, (ts, _)) => (name, ts) }): _*).withDefaultValue(Nil)
 | |
| 359 | val session_timing = | |
| 360 |         Map(timings.map({ case (name, (_, t)) => (name, t) }): _*).withDefaultValue(0.0)
 | |
| 48678 
ff27af15530c
queue ordering by descending outdegree and timeout;
 wenzelm parents: 
48676diff
changeset | 361 | |
| 
ff27af15530c
queue ordering by descending outdegree and timeout;
 wenzelm parents: 
48676diff
changeset | 362 | def outdegree(name: String): Int = graph.imm_succs(name).size | 
| 
ff27af15530c
queue ordering by descending outdegree and timeout;
 wenzelm parents: 
48676diff
changeset | 363 |       def timeout(name: String): Double = tree(name).options.real("timeout")
 | 
| 
ff27af15530c
queue ordering by descending outdegree and timeout;
 wenzelm parents: 
48676diff
changeset | 364 | |
| 
ff27af15530c
queue ordering by descending outdegree and timeout;
 wenzelm parents: 
48676diff
changeset | 365 | object Ordering extends scala.math.Ordering[String] | 
| 
ff27af15530c
queue ordering by descending outdegree and timeout;
 wenzelm parents: 
48676diff
changeset | 366 |       {
 | 
| 51227 
88c96e836ed6
prefer comparison of session timing, if this is known already;
 wenzelm parents: 
51223diff
changeset | 367 | def compare_timing(name1: String, name2: String): Int = | 
| 
88c96e836ed6
prefer comparison of session timing, if this is known already;
 wenzelm parents: 
51223diff
changeset | 368 |         {
 | 
| 
88c96e836ed6
prefer comparison of session timing, if this is known already;
 wenzelm parents: 
51223diff
changeset | 369 | val t1 = session_timing(name1) | 
| 
88c96e836ed6
prefer comparison of session timing, if this is known already;
 wenzelm parents: 
51223diff
changeset | 370 | val t2 = session_timing(name2) | 
| 
88c96e836ed6
prefer comparison of session timing, if this is known already;
 wenzelm parents: 
51223diff
changeset | 371 | if (t1 == 0.0 || t2 == 0.0) 0 | 
| 
88c96e836ed6
prefer comparison of session timing, if this is known already;
 wenzelm parents: 
51223diff
changeset | 372 | else t1 compare t2 | 
| 
88c96e836ed6
prefer comparison of session timing, if this is known already;
 wenzelm parents: 
51223diff
changeset | 373 | } | 
| 
88c96e836ed6
prefer comparison of session timing, if this is known already;
 wenzelm parents: 
51223diff
changeset | 374 | |
| 48678 
ff27af15530c
queue ordering by descending outdegree and timeout;
 wenzelm parents: 
48676diff
changeset | 375 | def compare(name1: String, name2: String): Int = | 
| 51229 
6e40d0bb89e3
prefer outdegree in comparison again (cf. 88c96e836ed6) -- NB: big jobs might hide behind small ones in this naive queuing scheme;
 wenzelm parents: 
51227diff
changeset | 376 |           outdegree(name2) compare outdegree(name1) match {
 | 
| 48678 
ff27af15530c
queue ordering by descending outdegree and timeout;
 wenzelm parents: 
48676diff
changeset | 377 | case 0 => | 
| 51229 
6e40d0bb89e3
prefer outdegree in comparison again (cf. 88c96e836ed6) -- NB: big jobs might hide behind small ones in this naive queuing scheme;
 wenzelm parents: 
51227diff
changeset | 378 |               compare_timing(name2, name1) match {
 | 
| 51220 | 379 | case 0 => | 
| 380 |                   timeout(name2) compare timeout(name1) match {
 | |
| 381 | case 0 => name1 compare name2 | |
| 382 | case ord => ord | |
| 383 | } | |
| 48678 
ff27af15530c
queue ordering by descending outdegree and timeout;
 wenzelm parents: 
48676diff
changeset | 384 | case ord => ord | 
| 
ff27af15530c
queue ordering by descending outdegree and timeout;
 wenzelm parents: 
48676diff
changeset | 385 | } | 
| 
ff27af15530c
queue ordering by descending outdegree and timeout;
 wenzelm parents: 
48676diff
changeset | 386 | case ord => ord | 
| 
ff27af15530c
queue ordering by descending outdegree and timeout;
 wenzelm parents: 
48676diff
changeset | 387 | } | 
| 
ff27af15530c
queue ordering by descending outdegree and timeout;
 wenzelm parents: 
48676diff
changeset | 388 | } | 
| 
ff27af15530c
queue ordering by descending outdegree and timeout;
 wenzelm parents: 
48676diff
changeset | 389 | |
| 51220 | 390 | new Queue(graph, SortedSet(sessions: _*)(Ordering), command_timings) | 
| 48676 
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
 wenzelm parents: 
48675diff
changeset | 391 | } | 
| 
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
 wenzelm parents: 
48675diff
changeset | 392 | } | 
| 
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
 wenzelm parents: 
48675diff
changeset | 393 | |
| 51220 | 394 | final class Queue private( | 
| 395 | graph: Graph[String, Session_Info], | |
| 396 | order: SortedSet[String], | |
| 397 | val command_timings: String => List[Properties.T]) | |
| 48676 
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
 wenzelm parents: 
48675diff
changeset | 398 |   {
 | 
| 
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
 wenzelm parents: 
48675diff
changeset | 399 | def is_inner(name: String): Boolean = !graph.is_maximal(name) | 
| 
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
 wenzelm parents: 
48675diff
changeset | 400 | |
| 
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
 wenzelm parents: 
48675diff
changeset | 401 | def is_empty: Boolean = graph.is_empty | 
| 
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
 wenzelm parents: 
48675diff
changeset | 402 | |
| 51227 
88c96e836ed6
prefer comparison of session timing, if this is known already;
 wenzelm parents: 
51223diff
changeset | 403 | def - (name: String): Queue = | 
| 
88c96e836ed6
prefer comparison of session timing, if this is known already;
 wenzelm parents: 
51223diff
changeset | 404 | new Queue(graph.del_node(name), | 
| 
88c96e836ed6
prefer comparison of session timing, if this is known already;
 wenzelm parents: 
51223diff
changeset | 405 | order - name, // FIXME scala-2.10.0 TreeSet problem!? | 
| 
88c96e836ed6
prefer comparison of session timing, if this is known already;
 wenzelm parents: 
51223diff
changeset | 406 | command_timings) | 
| 48676 
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
 wenzelm parents: 
48675diff
changeset | 407 | |
| 
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
 wenzelm parents: 
48675diff
changeset | 408 | def dequeue(skip: String => Boolean): Option[(String, Session_Info)] = | 
| 
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
 wenzelm parents: 
48675diff
changeset | 409 |     {
 | 
| 51227 
88c96e836ed6
prefer comparison of session timing, if this is known already;
 wenzelm parents: 
51223diff
changeset | 410 | val it = order.iterator.dropWhile(name => | 
| 
88c96e836ed6
prefer comparison of session timing, if this is known already;
 wenzelm parents: 
51223diff
changeset | 411 | skip(name) | 
| 
88c96e836ed6
prefer comparison of session timing, if this is known already;
 wenzelm parents: 
51223diff
changeset | 412 | || !graph.defined(name) // FIXME scala-2.10.0 TreeSet problem!? | 
| 
88c96e836ed6
prefer comparison of session timing, if this is known already;
 wenzelm parents: 
51223diff
changeset | 413 | || !graph.is_minimal(name)) | 
| 48680 | 414 |       if (it.hasNext) { val name = it.next; Some((name, graph.get_node(name))) }
 | 
| 48676 
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
 wenzelm parents: 
48675diff
changeset | 415 | else None | 
| 
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
 wenzelm parents: 
48675diff
changeset | 416 | } | 
| 
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
 wenzelm parents: 
48675diff
changeset | 417 | } | 
| 
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
 wenzelm parents: 
48675diff
changeset | 418 | |
| 
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
 wenzelm parents: 
48675diff
changeset | 419 | |
| 48710 
5b51ccdc8623
prefer static Build.session_content for loaded theories -- discontinued incremental protocol;
 wenzelm parents: 
48708diff
changeset | 420 | /* source dependencies and static content */ | 
| 48422 
9613780a805b
determine source dependencies, relatively to preloaded theories;
 wenzelm parents: 
48421diff
changeset | 421 | |
| 48710 
5b51ccdc8623
prefer static Build.session_content for loaded theories -- discontinued incremental protocol;
 wenzelm parents: 
48708diff
changeset | 422 | sealed case class Session_Content( | 
| 48422 
9613780a805b
determine source dependencies, relatively to preloaded theories;
 wenzelm parents: 
48421diff
changeset | 423 | loaded_theories: Set[String], | 
| 56801 
8dd9df88f647
some support for session-qualified theories: allow to refer to resources via qualified name instead of odd file-system path;
 wenzelm parents: 
56782diff
changeset | 424 | known_theories: Map[String, Document.Node.Name], | 
| 52439 
4cf3f6153eb8
improved "isabelle keywords" and "isabelle update_keywords" based on Isabelle/Scala, without requiring to build sessions first;
 wenzelm parents: 
52115diff
changeset | 425 | keywords: Thy_Header.Keywords, | 
| 48660 
730ca503e955
static outer syntax based on session specifications;
 wenzelm parents: 
48650diff
changeset | 426 | syntax: Outer_Syntax, | 
| 59444 | 427 | sources: List[(Path, SHA1.Digest)], | 
| 428 | session_graph: Graph_Display.Graph) | |
| 48422 
9613780a805b
determine source dependencies, relatively to preloaded theories;
 wenzelm parents: 
48421diff
changeset | 429 | |
| 48710 
5b51ccdc8623
prefer static Build.session_content for loaded theories -- discontinued incremental protocol;
 wenzelm parents: 
48708diff
changeset | 430 | sealed case class Deps(deps: Map[String, Session_Content]) | 
| 48423 
0ccf143a2a69
maintain set of source digests, including relevant parts of session entry;
 wenzelm parents: 
48422diff
changeset | 431 |   {
 | 
| 48583 | 432 | def is_empty: Boolean = deps.isEmpty | 
| 48710 
5b51ccdc8623
prefer static Build.session_content for loaded theories -- discontinued incremental protocol;
 wenzelm parents: 
48708diff
changeset | 433 | def apply(name: String): Session_Content = deps(name) | 
| 48504 
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
 wenzelm parents: 
48494diff
changeset | 434 | def sources(name: String): List[SHA1.Digest] = deps(name).sources.map(_._2) | 
| 48423 
0ccf143a2a69
maintain set of source digests, including relevant parts of session entry;
 wenzelm parents: 
48422diff
changeset | 435 | } | 
| 
0ccf143a2a69
maintain set of source digests, including relevant parts of session entry;
 wenzelm parents: 
48422diff
changeset | 436 | |
| 59891 
9ce697050455
added isabelle build option -k, for fast off-line checking of theory sources;
 wenzelm parents: 
59811diff
changeset | 437 | def dependencies( | 
| 
9ce697050455
added isabelle build option -k, for fast off-line checking of theory sources;
 wenzelm parents: 
59811diff
changeset | 438 | progress: Progress = Ignore_Progress, | 
| 
9ce697050455
added isabelle build option -k, for fast off-line checking of theory sources;
 wenzelm parents: 
59811diff
changeset | 439 | inlined_files: Boolean = false, | 
| 
9ce697050455
added isabelle build option -k, for fast off-line checking of theory sources;
 wenzelm parents: 
59811diff
changeset | 440 | verbose: Boolean = false, | 
| 
9ce697050455
added isabelle build option -k, for fast off-line checking of theory sources;
 wenzelm parents: 
59811diff
changeset | 441 | list_files: Boolean = false, | 
| 
9ce697050455
added isabelle build option -k, for fast off-line checking of theory sources;
 wenzelm parents: 
59811diff
changeset | 442 | check_keywords: Set[String] = Set.empty, | 
| 
9ce697050455
added isabelle build option -k, for fast off-line checking of theory sources;
 wenzelm parents: 
59811diff
changeset | 443 | tree: Session_Tree): Deps = | 
| 48710 
5b51ccdc8623
prefer static Build.session_content for loaded theories -- discontinued incremental protocol;
 wenzelm parents: 
48708diff
changeset | 444 | Deps((Map.empty[String, Session_Content] /: tree.topological_order)( | 
| 48422 
9613780a805b
determine source dependencies, relatively to preloaded theories;
 wenzelm parents: 
48421diff
changeset | 445 |       { case (deps, (name, info)) =>
 | 
| 56668 
56335a8e2e8b
interruptible dependencies, which can take a few seconds;
 wenzelm parents: 
56667diff
changeset | 446 | if (progress.stopped) throw Exn.Interrupt() | 
| 
56335a8e2e8b
interruptible dependencies, which can take a few seconds;
 wenzelm parents: 
56667diff
changeset | 447 | |
| 54549 
2a3053472ec3
actually expose errors of cumulative theory dependencies;
 wenzelm parents: 
54514diff
changeset | 448 |           try {
 | 
| 56801 
8dd9df88f647
some support for session-qualified theories: allow to refer to resources via qualified name instead of odd file-system path;
 wenzelm parents: 
56782diff
changeset | 449 | val (loaded_theories0, known_theories0, syntax0) = | 
| 
8dd9df88f647
some support for session-qualified theories: allow to refer to resources via qualified name instead of odd file-system path;
 wenzelm parents: 
56782diff
changeset | 450 |               info.parent.map(deps(_)) match {
 | 
| 54549 
2a3053472ec3
actually expose errors of cumulative theory dependencies;
 wenzelm parents: 
54514diff
changeset | 451 | case None => | 
| 58928 
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
 wenzelm parents: 
58918diff
changeset | 452 | (Set.empty[String], Map.empty[String, Document.Node.Name], | 
| 59736 
5c1a0069b9d3
tight span for theory header, which is relevant for error positions (including semantic completion);
 wenzelm parents: 
59723diff
changeset | 453 | Thy_Header.bootstrap_syntax) | 
| 56801 
8dd9df88f647
some support for session-qualified theories: allow to refer to resources via qualified name instead of odd file-system path;
 wenzelm parents: 
56782diff
changeset | 454 | case Some(parent) => | 
| 
8dd9df88f647
some support for session-qualified theories: allow to refer to resources via qualified name instead of odd file-system path;
 wenzelm parents: 
56782diff
changeset | 455 | (parent.loaded_theories, parent.known_theories, parent.syntax) | 
| 54549 
2a3053472ec3
actually expose errors of cumulative theory dependencies;
 wenzelm parents: 
54514diff
changeset | 456 | } | 
| 56801 
8dd9df88f647
some support for session-qualified theories: allow to refer to resources via qualified name instead of odd file-system path;
 wenzelm parents: 
56782diff
changeset | 457 | val resources = new Resources(loaded_theories0, known_theories0, syntax0) | 
| 56208 | 458 | val thy_info = new Thy_Info(resources) | 
| 48422 
9613780a805b
determine source dependencies, relatively to preloaded theories;
 wenzelm parents: 
48421diff
changeset | 459 | |
| 54549 
2a3053472ec3
actually expose errors of cumulative theory dependencies;
 wenzelm parents: 
54514diff
changeset | 460 |             if (verbose || list_files) {
 | 
| 
2a3053472ec3
actually expose errors of cumulative theory dependencies;
 wenzelm parents: 
54514diff
changeset | 461 | val groups = | 
| 
2a3053472ec3
actually expose errors of cumulative theory dependencies;
 wenzelm parents: 
54514diff
changeset | 462 | if (info.groups.isEmpty) "" | 
| 
2a3053472ec3
actually expose errors of cumulative theory dependencies;
 wenzelm parents: 
54514diff
changeset | 463 |                 else info.groups.mkString(" (", " ", ")")
 | 
| 
2a3053472ec3
actually expose errors of cumulative theory dependencies;
 wenzelm parents: 
54514diff
changeset | 464 |               progress.echo("Session " + info.chapter + "/" + name + groups)
 | 
| 
2a3053472ec3
actually expose errors of cumulative theory dependencies;
 wenzelm parents: 
54514diff
changeset | 465 | } | 
| 48478 | 466 | |
| 54549 
2a3053472ec3
actually expose errors of cumulative theory dependencies;
 wenzelm parents: 
54514diff
changeset | 467 | val thy_deps = | 
| 56801 
8dd9df88f647
some support for session-qualified theories: allow to refer to resources via qualified name instead of odd file-system path;
 wenzelm parents: 
56782diff
changeset | 468 |             {
 | 
| 
8dd9df88f647
some support for session-qualified theories: allow to refer to resources via qualified name instead of odd file-system path;
 wenzelm parents: 
56782diff
changeset | 469 | val root_theories = | 
| 
8dd9df88f647
some support for session-qualified theories: allow to refer to resources via qualified name instead of odd file-system path;
 wenzelm parents: 
56782diff
changeset | 470 |                 info.theories.flatMap({
 | 
| 
8dd9df88f647
some support for session-qualified theories: allow to refer to resources via qualified name instead of odd file-system path;
 wenzelm parents: 
56782diff
changeset | 471 | case (global, _, thys) => | 
| 
8dd9df88f647
some support for session-qualified theories: allow to refer to resources via qualified name instead of odd file-system path;
 wenzelm parents: 
56782diff
changeset | 472 | thys.map(thy => | 
| 
8dd9df88f647
some support for session-qualified theories: allow to refer to resources via qualified name instead of odd file-system path;
 wenzelm parents: 
56782diff
changeset | 473 | (resources.node_name( | 
| 
8dd9df88f647
some support for session-qualified theories: allow to refer to resources via qualified name instead of odd file-system path;
 wenzelm parents: 
56782diff
changeset | 474 | if (global) "" else name, info.dir + Resources.thy_path(thy)), info.pos)) | 
| 
8dd9df88f647
some support for session-qualified theories: allow to refer to resources via qualified name instead of odd file-system path;
 wenzelm parents: 
56782diff
changeset | 475 | }) | 
| 
8dd9df88f647
some support for session-qualified theories: allow to refer to resources via qualified name instead of odd file-system path;
 wenzelm parents: 
56782diff
changeset | 476 | val thy_deps = thy_info.dependencies(name, root_theories) | 
| 48422 
9613780a805b
determine source dependencies, relatively to preloaded theories;
 wenzelm parents: 
48421diff
changeset | 477 | |
| 56801 
8dd9df88f647
some support for session-qualified theories: allow to refer to resources via qualified name instead of odd file-system path;
 wenzelm parents: 
56782diff
changeset | 478 |               thy_deps.errors match {
 | 
| 
8dd9df88f647
some support for session-qualified theories: allow to refer to resources via qualified name instead of odd file-system path;
 wenzelm parents: 
56782diff
changeset | 479 | case Nil => thy_deps | 
| 
8dd9df88f647
some support for session-qualified theories: allow to refer to resources via qualified name instead of odd file-system path;
 wenzelm parents: 
56782diff
changeset | 480 | case errs => error(cat_lines(errs)) | 
| 
8dd9df88f647
some support for session-qualified theories: allow to refer to resources via qualified name instead of odd file-system path;
 wenzelm parents: 
56782diff
changeset | 481 | } | 
| 54549 
2a3053472ec3
actually expose errors of cumulative theory dependencies;
 wenzelm parents: 
54514diff
changeset | 482 | } | 
| 51294 
0850d43cb355
discontinued obsolete header "files" -- these are loaded explicitly after exploring dependencies;
 wenzelm parents: 
51293diff
changeset | 483 | |
| 56801 
8dd9df88f647
some support for session-qualified theories: allow to refer to resources via qualified name instead of odd file-system path;
 wenzelm parents: 
56782diff
changeset | 484 | val known_theories = | 
| 
8dd9df88f647
some support for session-qualified theories: allow to refer to resources via qualified name instead of odd file-system path;
 wenzelm parents: 
56782diff
changeset | 485 |               (known_theories0 /: thy_deps.deps)({ case (known, dep) =>
 | 
| 
8dd9df88f647
some support for session-qualified theories: allow to refer to resources via qualified name instead of odd file-system path;
 wenzelm parents: 
56782diff
changeset | 486 | val name = dep.name | 
| 
8dd9df88f647
some support for session-qualified theories: allow to refer to resources via qualified name instead of odd file-system path;
 wenzelm parents: 
56782diff
changeset | 487 |                 known.get(name.theory) match {
 | 
| 
8dd9df88f647
some support for session-qualified theories: allow to refer to resources via qualified name instead of odd file-system path;
 wenzelm parents: 
56782diff
changeset | 488 | case Some(name1) if name != name1 => | 
| 
8dd9df88f647
some support for session-qualified theories: allow to refer to resources via qualified name instead of odd file-system path;
 wenzelm parents: 
56782diff
changeset | 489 |                     error("Duplicate theory " + quote(name.node) + " vs. " + quote(name1.node))
 | 
| 
8dd9df88f647
some support for session-qualified theories: allow to refer to resources via qualified name instead of odd file-system path;
 wenzelm parents: 
56782diff
changeset | 490 | case _ => | 
| 
8dd9df88f647
some support for session-qualified theories: allow to refer to resources via qualified name instead of odd file-system path;
 wenzelm parents: 
56782diff
changeset | 491 | known + (name.theory -> name) + (Long_Name.base_name(name.theory) -> name) | 
| 
8dd9df88f647
some support for session-qualified theories: allow to refer to resources via qualified name instead of odd file-system path;
 wenzelm parents: 
56782diff
changeset | 492 | } | 
| 
8dd9df88f647
some support for session-qualified theories: allow to refer to resources via qualified name instead of odd file-system path;
 wenzelm parents: 
56782diff
changeset | 493 | }) | 
| 
8dd9df88f647
some support for session-qualified theories: allow to refer to resources via qualified name instead of odd file-system path;
 wenzelm parents: 
56782diff
changeset | 494 | |
| 54549 
2a3053472ec3
actually expose errors of cumulative theory dependencies;
 wenzelm parents: 
54514diff
changeset | 495 | val loaded_theories = thy_deps.loaded_theories | 
| 
2a3053472ec3
actually expose errors of cumulative theory dependencies;
 wenzelm parents: 
54514diff
changeset | 496 | val keywords = thy_deps.keywords | 
| 56393 
22f533e6a049
more abstract Prover.Syntax, as proposed by Carst Tankink;
 wenzelm parents: 
56392diff
changeset | 497 | val syntax = thy_deps.syntax.asInstanceOf[Outer_Syntax] | 
| 48660 
730ca503e955
static outer syntax based on session specifications;
 wenzelm parents: 
48650diff
changeset | 498 | |
| 59891 
9ce697050455
added isabelle build option -k, for fast off-line checking of theory sources;
 wenzelm parents: 
59811diff
changeset | 499 | val theory_files = thy_deps.deps.map(dep => Path.explode(dep.name.node)) | 
| 56392 | 500 | val loaded_files = if (inlined_files) thy_deps.loaded_files else Nil | 
| 48903 | 501 | |
| 54549 
2a3053472ec3
actually expose errors of cumulative theory dependencies;
 wenzelm parents: 
54514diff
changeset | 502 | val all_files = | 
| 59891 
9ce697050455
added isabelle build option -k, for fast off-line checking of theory sources;
 wenzelm parents: 
59811diff
changeset | 503 | (theory_files ::: loaded_files ::: | 
| 56533 
cd8b6d849b6a
explicit 'document_files' in session ROOT specifications;
 wenzelm parents: 
56464diff
changeset | 504 | info.files.map(file => info.dir + file) ::: | 
| 
cd8b6d849b6a
explicit 'document_files' in session ROOT specifications;
 wenzelm parents: 
56464diff
changeset | 505 | info.document_files.map(file => info.dir + file._1 + file._2)).map(_.expand) | 
| 54549 
2a3053472ec3
actually expose errors of cumulative theory dependencies;
 wenzelm parents: 
54514diff
changeset | 506 | |
| 56824 
5ae68f53b7c2
discontinued adhoc check (see also ea8343187225);
 wenzelm parents: 
56801diff
changeset | 507 | if (list_files) | 
| 54549 
2a3053472ec3
actually expose errors of cumulative theory dependencies;
 wenzelm parents: 
54514diff
changeset | 508 |               progress.echo(cat_lines(all_files.map(_.implode).sorted.map("  " + _)))
 | 
| 
2a3053472ec3
actually expose errors of cumulative theory dependencies;
 wenzelm parents: 
54514diff
changeset | 509 | |
| 59895 | 510 | if (check_keywords.nonEmpty) | 
| 511 | Check_Keywords.check_keywords(progress, syntax.keywords, check_keywords, theory_files) | |
| 59891 
9ce697050455
added isabelle build option -k, for fast off-line checking of theory sources;
 wenzelm parents: 
59811diff
changeset | 512 | |
| 54549 
2a3053472ec3
actually expose errors of cumulative theory dependencies;
 wenzelm parents: 
54514diff
changeset | 513 | val sources = all_files.map(p => (p, SHA1.digest(p.file))) | 
| 48903 | 514 | |
| 59444 | 515 | val session_graph = thy_deps.deps_graph(info.parent getOrElse "", loaded_theories0) | 
| 516 | ||
| 56801 
8dd9df88f647
some support for session-qualified theories: allow to refer to resources via qualified name instead of odd file-system path;
 wenzelm parents: 
56782diff
changeset | 517 | val content = | 
| 59444 | 518 | Session_Content(loaded_theories, known_theories, keywords, syntax, | 
| 519 | sources, session_graph) | |
| 56801 
8dd9df88f647
some support for session-qualified theories: allow to refer to resources via qualified name instead of odd file-system path;
 wenzelm parents: 
56782diff
changeset | 520 | deps + (name -> content) | 
| 54549 
2a3053472ec3
actually expose errors of cumulative theory dependencies;
 wenzelm parents: 
54514diff
changeset | 521 | } | 
| 
2a3053472ec3
actually expose errors of cumulative theory dependencies;
 wenzelm parents: 
54514diff
changeset | 522 |           catch {
 | 
| 
2a3053472ec3
actually expose errors of cumulative theory dependencies;
 wenzelm parents: 
54514diff
changeset | 523 | case ERROR(msg) => | 
| 
2a3053472ec3
actually expose errors of cumulative theory dependencies;
 wenzelm parents: 
54514diff
changeset | 524 | cat_error(msg, "The error(s) above occurred in session " + | 
| 
2a3053472ec3
actually expose errors of cumulative theory dependencies;
 wenzelm parents: 
54514diff
changeset | 525 | quote(name) + Position.here(info.pos)) | 
| 
2a3053472ec3
actually expose errors of cumulative theory dependencies;
 wenzelm parents: 
54514diff
changeset | 526 | } | 
| 48423 
0ccf143a2a69
maintain set of source digests, including relevant parts of session entry;
 wenzelm parents: 
48422diff
changeset | 527 | })) | 
| 48422 
9613780a805b
determine source dependencies, relatively to preloaded theories;
 wenzelm parents: 
48421diff
changeset | 528 | |
| 52439 
4cf3f6153eb8
improved "isabelle keywords" and "isabelle update_keywords" based on Isabelle/Scala, without requiring to build sessions first;
 wenzelm parents: 
52115diff
changeset | 529 | def session_dependencies( | 
| 
4cf3f6153eb8
improved "isabelle keywords" and "isabelle update_keywords" based on Isabelle/Scala, without requiring to build sessions first;
 wenzelm parents: 
52115diff
changeset | 530 | options: Options, | 
| 
4cf3f6153eb8
improved "isabelle keywords" and "isabelle update_keywords" based on Isabelle/Scala, without requiring to build sessions first;
 wenzelm parents: 
52115diff
changeset | 531 | inlined_files: Boolean, | 
| 
4cf3f6153eb8
improved "isabelle keywords" and "isabelle update_keywords" based on Isabelle/Scala, without requiring to build sessions first;
 wenzelm parents: 
52115diff
changeset | 532 | dirs: List[Path], | 
| 
4cf3f6153eb8
improved "isabelle keywords" and "isabelle update_keywords" based on Isabelle/Scala, without requiring to build sessions first;
 wenzelm parents: 
52115diff
changeset | 533 | sessions: List[String]): Deps = | 
| 48710 
5b51ccdc8623
prefer static Build.session_content for loaded theories -- discontinued incremental protocol;
 wenzelm parents: 
48708diff
changeset | 534 |   {
 | 
| 59892 
2a616319c171
added isabelle build option -x, to exclude sessions;
 wenzelm parents: 
59891diff
changeset | 535 | val (_, tree) = find_sessions(options, dirs = dirs).selection(sessions = sessions) | 
| 59891 
9ce697050455
added isabelle build option -k, for fast off-line checking of theory sources;
 wenzelm parents: 
59811diff
changeset | 536 | dependencies(inlined_files = inlined_files, tree = tree) | 
| 48710 
5b51ccdc8623
prefer static Build.session_content for loaded theories -- discontinued incremental protocol;
 wenzelm parents: 
48708diff
changeset | 537 | } | 
| 
5b51ccdc8623
prefer static Build.session_content for loaded theories -- discontinued incremental protocol;
 wenzelm parents: 
48708diff
changeset | 538 | |
| 52439 
4cf3f6153eb8
improved "isabelle keywords" and "isabelle update_keywords" based on Isabelle/Scala, without requiring to build sessions first;
 wenzelm parents: 
52115diff
changeset | 539 | def session_content( | 
| 
4cf3f6153eb8
improved "isabelle keywords" and "isabelle update_keywords" based on Isabelle/Scala, without requiring to build sessions first;
 wenzelm parents: 
52115diff
changeset | 540 | options: Options, | 
| 
4cf3f6153eb8
improved "isabelle keywords" and "isabelle update_keywords" based on Isabelle/Scala, without requiring to build sessions first;
 wenzelm parents: 
52115diff
changeset | 541 | inlined_files: Boolean, | 
| 
4cf3f6153eb8
improved "isabelle keywords" and "isabelle update_keywords" based on Isabelle/Scala, without requiring to build sessions first;
 wenzelm parents: 
52115diff
changeset | 542 | dirs: List[Path], | 
| 
4cf3f6153eb8
improved "isabelle keywords" and "isabelle update_keywords" based on Isabelle/Scala, without requiring to build sessions first;
 wenzelm parents: 
52115diff
changeset | 543 | session: String): Session_Content = | 
| 
4cf3f6153eb8
improved "isabelle keywords" and "isabelle update_keywords" based on Isabelle/Scala, without requiring to build sessions first;
 wenzelm parents: 
52115diff
changeset | 544 |   {
 | 
| 
4cf3f6153eb8
improved "isabelle keywords" and "isabelle update_keywords" based on Isabelle/Scala, without requiring to build sessions first;
 wenzelm parents: 
52115diff
changeset | 545 | session_dependencies(options, inlined_files, dirs, List(session))(session) | 
| 
4cf3f6153eb8
improved "isabelle keywords" and "isabelle update_keywords" based on Isabelle/Scala, without requiring to build sessions first;
 wenzelm parents: 
52115diff
changeset | 546 | } | 
| 
4cf3f6153eb8
improved "isabelle keywords" and "isabelle update_keywords" based on Isabelle/Scala, without requiring to build sessions first;
 wenzelm parents: 
52115diff
changeset | 547 | |
| 
4cf3f6153eb8
improved "isabelle keywords" and "isabelle update_keywords" based on Isabelle/Scala, without requiring to build sessions first;
 wenzelm parents: 
52115diff
changeset | 548 | def outer_syntax(options: Options, session: String): Outer_Syntax = | 
| 
4cf3f6153eb8
improved "isabelle keywords" and "isabelle update_keywords" based on Isabelle/Scala, without requiring to build sessions first;
 wenzelm parents: 
52115diff
changeset | 549 | session_content(options, false, Nil, session).syntax | 
| 48710 
5b51ccdc8623
prefer static Build.session_content for loaded theories -- discontinued incremental protocol;
 wenzelm parents: 
48708diff
changeset | 550 | |
| 48422 
9613780a805b
determine source dependencies, relatively to preloaded theories;
 wenzelm parents: 
48421diff
changeset | 551 | |
| 48424 | 552 | /* jobs */ | 
| 48341 | 553 | |
| 52114 | 554 | private class Job(progress: Progress, | 
| 59445 | 555 | name: String, val info: Session_Info, output: Path, do_output: Boolean, verbose: Boolean, | 
| 556 | browser_info: Path, session_graph: Graph_Display.Graph, command_timings: List[Properties.T]) | |
| 48418 | 557 |   {
 | 
| 48674 | 558 | def output_path: Option[Path] = if (do_output) Some(output) else None | 
| 559 | ||
| 560 |     private val parent = info.parent.getOrElse("")
 | |
| 48418 | 561 | |
| 59445 | 562 |     private val graph_file = Isabelle_System.tmp_file("session_graph", "pdf")
 | 
| 563 |     try { isabelle.graphview.Graph_File.write(info.options, graph_file, session_graph) }
 | |
| 564 |     catch { case ERROR(_) => /*error should be exposed in ML*/ }
 | |
| 565 | ||
| 56428 
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
 wenzelm parents: 
56393diff
changeset | 566 |     private val args_file = Isabelle_System.tmp_file("args")
 | 
| 48698 
2585042b1a30
pass Isabelle/Scala system options into ML process of Isar tty or build jobs;
 wenzelm parents: 
48684diff
changeset | 567 | File.write(args_file, YXML.string_of_body( | 
| 
2585042b1a30
pass Isabelle/Scala system options into ML process of Isar tty or build jobs;
 wenzelm parents: 
48684diff
changeset | 568 | if (is_pure(name)) Options.encode(info.options) | 
| 
2585042b1a30
pass Isabelle/Scala system options into ML process of Isar tty or build jobs;
 wenzelm parents: 
48684diff
changeset | 569 | else | 
| 
2585042b1a30
pass Isabelle/Scala system options into ML process of Isar tty or build jobs;
 wenzelm parents: 
48684diff
changeset | 570 |         {
 | 
| 56801 
8dd9df88f647
some support for session-qualified theories: allow to refer to resources via qualified name instead of odd file-system path;
 wenzelm parents: 
56782diff
changeset | 571 | val theories = info.theories.map(x => (x._2, x._3)) | 
| 48698 
2585042b1a30
pass Isabelle/Scala system options into ML process of Isar tty or build jobs;
 wenzelm parents: 
48684diff
changeset | 572 | import XML.Encode._ | 
| 51218 
6425a0d3b7ac
support for build passing timings from Scala to ML;
 wenzelm parents: 
51045diff
changeset | 573 | pair(list(properties), pair(bool, pair(Options.encode, pair(bool, pair(Path.encode, | 
| 59445 | 574 | pair(list(pair(Path.encode, Path.encode)), pair(string, pair(string, | 
| 575 | pair(string, pair(string, list(pair(Options.encode, list(Path.encode)))))))))))))( | |
| 51220 | 576 | (command_timings, (do_output, (info.options, (verbose, (browser_info, | 
| 59445 | 577 | (info.document_files, (Isabelle_System.posix_path(graph_file), (parent, | 
| 578 | (info.chapter, (name, theories))))))))))) | |
| 48698 
2585042b1a30
pass Isabelle/Scala system options into ML process of Isar tty or build jobs;
 wenzelm parents: 
48684diff
changeset | 579 | })) | 
| 
2585042b1a30
pass Isabelle/Scala system options into ML process of Isar tty or build jobs;
 wenzelm parents: 
48684diff
changeset | 580 | |
| 48674 | 581 | private val env = | 
| 48698 
2585042b1a30
pass Isabelle/Scala system options into ML process of Isar tty or build jobs;
 wenzelm parents: 
48684diff
changeset | 582 |       Map("INPUT" -> parent, "TARGET" -> name, "OUTPUT" -> Isabelle_System.standard_path(output),
 | 
| 
2585042b1a30
pass Isabelle/Scala system options into ML process of Isar tty or build jobs;
 wenzelm parents: 
48684diff
changeset | 583 | (if (is_pure(name)) "ISABELLE_PROCESS_OPTIONS" else "ARGS_FILE") -> | 
| 50715 
8cfd585b9162
prefer old graph browser in Isabelle/jEdit, which still produces better layout;
 wenzelm parents: 
50713diff
changeset | 584 | Isabelle_System.posix_path(args_file)) | 
| 48698 
2585042b1a30
pass Isabelle/Scala system options into ML process of Isar tty or build jobs;
 wenzelm parents: 
48684diff
changeset | 585 | |
| 48674 | 586 | private val script = | 
| 48511 
37999ee01156
remove old output heaps, to ensure that result is valid wrt. check_stamps;
 wenzelm parents: 
48509diff
changeset | 587 |       if (is_pure(name)) {
 | 
| 
37999ee01156
remove old output heaps, to ensure that result is valid wrt. check_stamps;
 wenzelm parents: 
48509diff
changeset | 588 | if (do_output) "./build " + name + " \"$OUTPUT\"" | 
| 
37999ee01156
remove old output heaps, to ensure that result is valid wrt. check_stamps;
 wenzelm parents: 
48509diff
changeset | 589 | else """ rm -f "$OUTPUT"; ./build """ + name | 
| 
37999ee01156
remove old output heaps, to ensure that result is valid wrt. check_stamps;
 wenzelm parents: 
48509diff
changeset | 590 | } | 
| 48418 | 591 |       else {
 | 
| 592 | """ | |
| 593 | . "$ISABELLE_HOME/lib/scripts/timestart.bash" | |
| 594 | """ + | |
| 48511 
37999ee01156
remove old output heaps, to ensure that result is valid wrt. check_stamps;
 wenzelm parents: 
48509diff
changeset | 595 | (if (do_output) | 
| 
37999ee01156
remove old output heaps, to ensure that result is valid wrt. check_stamps;
 wenzelm parents: 
48509diff
changeset | 596 | """ | 
| 
37999ee01156
remove old output heaps, to ensure that result is valid wrt. check_stamps;
 wenzelm parents: 
48509diff
changeset | 597 | "$ISABELLE_PROCESS" -e "Build.build \"$ARGS_FILE\";" -q -w "$INPUT" "$OUTPUT" | 
| 
37999ee01156
remove old output heaps, to ensure that result is valid wrt. check_stamps;
 wenzelm parents: 
48509diff
changeset | 598 | """ | 
| 48418 | 599 | else | 
| 48511 
37999ee01156
remove old output heaps, to ensure that result is valid wrt. check_stamps;
 wenzelm parents: 
48509diff
changeset | 600 | """ | 
| 
37999ee01156
remove old output heaps, to ensure that result is valid wrt. check_stamps;
 wenzelm parents: 
48509diff
changeset | 601 | rm -f "$OUTPUT"; "$ISABELLE_PROCESS" -e "Build.build \"$ARGS_FILE\";" -r -q "$INPUT" | 
| 
37999ee01156
remove old output heaps, to ensure that result is valid wrt. check_stamps;
 wenzelm parents: 
48509diff
changeset | 602 | """) + | 
| 48418 | 603 | """ | 
| 604 | RC="$?" | |
| 605 | ||
| 606 | . "$ISABELLE_HOME/lib/scripts/timestop.bash" | |
| 607 | ||
| 608 | if [ "$RC" -eq 0 ]; then | |
| 609 | echo "Finished $TARGET ($TIMES_REPORT)" >&2 | |
| 610 | fi | |
| 611 | ||
| 612 | exit "$RC" | |
| 613 | """ | |
| 614 | } | |
| 48674 | 615 | |
| 616 | private val (thread, result) = | |
| 50845 | 617 |       Simple_Thread.future("build") {
 | 
| 618 | Isabelle_System.bash_env(info.dir.file, env, script, | |
| 51962 
016cb7d8f297
limit build process output, to avoid bombing Isabelle/Scala process by ill-behaved jobs (e.g. Containers in AFP/9025435b29cf);
 wenzelm parents: 
51663diff
changeset | 619 | progress_stdout = (line: String) => | 
| 50847 | 620 |             Library.try_unprefix("\floading_theory = ", line) match {
 | 
| 621 | case Some(theory) => progress.theory(name, theory) | |
| 622 | case None => | |
| 51962 
016cb7d8f297
limit build process output, to avoid bombing Isabelle/Scala process by ill-behaved jobs (e.g. Containers in AFP/9025435b29cf);
 wenzelm parents: 
51663diff
changeset | 623 | }, | 
| 
016cb7d8f297
limit build process output, to avoid bombing Isabelle/Scala process by ill-behaved jobs (e.g. Containers in AFP/9025435b29cf);
 wenzelm parents: 
51663diff
changeset | 624 | progress_limit = | 
| 
016cb7d8f297
limit build process output, to avoid bombing Isabelle/Scala process by ill-behaved jobs (e.g. Containers in AFP/9025435b29cf);
 wenzelm parents: 
51663diff
changeset | 625 |             info.options.int("process_output_limit") match {
 | 
| 
016cb7d8f297
limit build process output, to avoid bombing Isabelle/Scala process by ill-behaved jobs (e.g. Containers in AFP/9025435b29cf);
 wenzelm parents: 
51663diff
changeset | 626 | case 0 => None | 
| 
016cb7d8f297
limit build process output, to avoid bombing Isabelle/Scala process by ill-behaved jobs (e.g. Containers in AFP/9025435b29cf);
 wenzelm parents: 
51663diff
changeset | 627 | case m => Some(m * 1000000L) | 
| 56871 
d06ff36b4fa7
expose interrupts more like ML version, but not in managed bash processes of Build;
 wenzelm parents: 
56861diff
changeset | 628 | }, | 
| 
d06ff36b4fa7
expose interrupts more like ML version, but not in managed bash processes of Build;
 wenzelm parents: 
56861diff
changeset | 629 | strict = false) | 
| 50845 | 630 | } | 
| 48674 | 631 | |
| 632 | def terminate: Unit = thread.interrupt | |
| 633 | def is_finished: Boolean = result.is_finished | |
| 634 | ||
| 56779 | 635 | @volatile private var was_timeout = false | 
| 636 | private val timeout_request: Option[Event_Timer.Request] = | |
| 637 |     {
 | |
| 638 |       val timeout = info.options.seconds("timeout")
 | |
| 639 | if (timeout > Time.zero) | |
| 640 |         Some(Event_Timer.request(Time.now() + timeout) { terminate; was_timeout = true })
 | |
| 48674 | 641 | else None | 
| 56779 | 642 | } | 
| 48674 | 643 | |
| 50845 | 644 | def join: Isabelle_System.Bash_Result = | 
| 645 |     {
 | |
| 646 | val res = result.join | |
| 647 | ||
| 59445 | 648 | graph_file.delete | 
| 48674 | 649 | args_file.delete | 
| 56779 | 650 | timeout_request.foreach(_.cancel) | 
| 48674 | 651 | |
| 56667 
65e84b0ef974
more abstract Exn.Interrupt and POSIX return code;
 wenzelm parents: 
56533diff
changeset | 652 |       if (res.rc == Exn.Interrupt.return_code) {
 | 
| 56782 
433cf57550fa
more systematic Isabelle output, like in classic Isabelle/ML (without markup);
 wenzelm parents: 
56780diff
changeset | 653 |         if (was_timeout) res.add_err(Output.error_text("Timeout")).set_rc(1)
 | 
| 
433cf57550fa
more systematic Isabelle output, like in classic Isabelle/ML (without markup);
 wenzelm parents: 
56780diff
changeset | 654 |         else res.add_err(Output.error_text("Interrupt"))
 | 
| 52063 
fd533ac64390
timeout counts as regular error, with rc = 1 (cf. special Exn.Interrupt vs. regular TimeLimit.TimeOut in Isabelle/ML);
 wenzelm parents: 
51987diff
changeset | 655 | } | 
| 50845 | 656 | else res | 
| 48674 | 657 | } | 
| 48364 | 658 | } | 
| 659 | ||
| 48424 | 660 | |
| 51045 
630c0895d9d1
more efficient inlined properties, especially relevant for voluminous tasks trace;
 wenzelm parents: 
50982diff
changeset | 661 | /* inlined properties (YXML) */ | 
| 50946 
8ad3e376f63e
tuned signature (again) -- keep Properties more generic;
 wenzelm parents: 
50893diff
changeset | 662 | |
| 
8ad3e376f63e
tuned signature (again) -- keep Properties more generic;
 wenzelm parents: 
50893diff
changeset | 663 | object Props | 
| 
8ad3e376f63e
tuned signature (again) -- keep Properties more generic;
 wenzelm parents: 
50893diff
changeset | 664 |   {
 | 
| 51045 
630c0895d9d1
more efficient inlined properties, especially relevant for voluminous tasks trace;
 wenzelm parents: 
50982diff
changeset | 665 | def parse(text: String): Properties.T = XML.Decode.properties(YXML.parse_body(text)) | 
| 50946 
8ad3e376f63e
tuned signature (again) -- keep Properties more generic;
 wenzelm parents: 
50893diff
changeset | 666 | |
| 
8ad3e376f63e
tuned signature (again) -- keep Properties more generic;
 wenzelm parents: 
50893diff
changeset | 667 | def parse_lines(prefix: String, lines: List[String]): List[Properties.T] = | 
| 
8ad3e376f63e
tuned signature (again) -- keep Properties more generic;
 wenzelm parents: 
50893diff
changeset | 668 | for (line <- lines; s <- Library.try_unprefix(prefix, line)) yield parse(s) | 
| 
8ad3e376f63e
tuned signature (again) -- keep Properties more generic;
 wenzelm parents: 
50893diff
changeset | 669 | |
| 
8ad3e376f63e
tuned signature (again) -- keep Properties more generic;
 wenzelm parents: 
50893diff
changeset | 670 | def find_parse_line(prefix: String, lines: List[String]): Option[Properties.T] = | 
| 
8ad3e376f63e
tuned signature (again) -- keep Properties more generic;
 wenzelm parents: 
50893diff
changeset | 671 | lines.find(_.startsWith(prefix)).map(line => parse(line.substring(prefix.length))) | 
| 
8ad3e376f63e
tuned signature (again) -- keep Properties more generic;
 wenzelm parents: 
50893diff
changeset | 672 | } | 
| 
8ad3e376f63e
tuned signature (again) -- keep Properties more generic;
 wenzelm parents: 
50893diff
changeset | 673 | |
| 
8ad3e376f63e
tuned signature (again) -- keep Properties more generic;
 wenzelm parents: 
50893diff
changeset | 674 | |
| 50777 | 675 | /* log files */ | 
| 48504 
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
 wenzelm parents: 
48494diff
changeset | 676 | |
| 48505 | 677 |   private val LOG = Path.explode("log")
 | 
| 678 | private def log(name: String): Path = LOG + Path.basic(name) | |
| 679 |   private def log_gz(name: String): Path = log(name).ext("gz")
 | |
| 48504 
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
 wenzelm parents: 
48494diff
changeset | 680 | |
| 50982 | 681 | private val SESSION_NAME = "\fSession.name = " | 
| 50707 
5b2bf7611662
maintain session index on Scala side, for more determistic results;
 wenzelm parents: 
50686diff
changeset | 682 | |
| 50946 
8ad3e376f63e
tuned signature (again) -- keep Properties more generic;
 wenzelm parents: 
50893diff
changeset | 683 | |
| 50975 | 684 | sealed case class Log_Info( | 
| 51220 | 685 | name: String, | 
| 686 | stats: List[Properties.T], | |
| 687 | tasks: List[Properties.T], | |
| 688 | command_timings: List[Properties.T], | |
| 689 | session_timing: Properties.T) | |
| 50777 | 690 | |
| 51220 | 691 | def parse_log(full_stats: Boolean, text: String): Log_Info = | 
| 50777 | 692 |   {
 | 
| 693 | val lines = split_lines(text) | |
| 51223 | 694 | val xml_cache = new XML.Cache() | 
| 695 | def parse_lines(prfx: String): List[Properties.T] = | |
| 51663 | 696 | Props.parse_lines(prfx, lines).map(xml_cache.props(_)) | 
| 51223 | 697 | |
| 50982 | 698 | val name = | 
| 699 | lines.find(_.startsWith(SESSION_NAME)).map(_.substring(SESSION_NAME.length)) getOrElse "" | |
| 51223 | 700 |     val stats = if (full_stats) parse_lines("\fML_statistics = ") else Nil
 | 
| 701 |     val tasks = if (full_stats) parse_lines("\ftask_statistics = ") else Nil
 | |
| 702 |     val command_timings = parse_lines("\fcommand_timing = ")
 | |
| 51220 | 703 |     val session_timing = Props.find_parse_line("\fTiming = ", lines) getOrElse Nil
 | 
| 704 | Log_Info(name, stats, tasks, command_timings, session_timing) | |
| 50777 | 705 | } | 
| 706 | ||
| 707 | ||
| 708 | /* sources and heaps */ | |
| 709 | ||
| 48505 | 710 | private def sources_stamp(digests: List[SHA1.Digest]): String = | 
| 48504 
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
 wenzelm parents: 
48494diff
changeset | 711 |     digests.map(_.toString).sorted.mkString("sources: ", " ", "")
 | 
| 
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
 wenzelm parents: 
48494diff
changeset | 712 | |
| 48639 
675988e64bf9
store parent heap stamp as well -- needs to be propagated through the build hierarchy;
 wenzelm parents: 
48626diff
changeset | 713 | private val no_heap: String = "heap: -" | 
| 
675988e64bf9
store parent heap stamp as well -- needs to be propagated through the build hierarchy;
 wenzelm parents: 
48626diff
changeset | 714 | |
| 
675988e64bf9
store parent heap stamp as well -- needs to be propagated through the build hierarchy;
 wenzelm parents: 
48626diff
changeset | 715 | private def heap_stamp(heap: Option[Path]): String = | 
| 48504 
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
 wenzelm parents: 
48494diff
changeset | 716 |   {
 | 
| 
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
 wenzelm parents: 
48494diff
changeset | 717 | "heap: " + | 
| 48639 
675988e64bf9
store parent heap stamp as well -- needs to be propagated through the build hierarchy;
 wenzelm parents: 
48626diff
changeset | 718 |       (heap match {
 | 
| 48504 
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
 wenzelm parents: 
48494diff
changeset | 719 | case Some(path) => | 
| 
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
 wenzelm parents: 
48494diff
changeset | 720 | val file = path.file | 
| 
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
 wenzelm parents: 
48494diff
changeset | 721 | if (file.isFile) file.length.toString + " " + file.lastModified.toString | 
| 
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
 wenzelm parents: 
48494diff
changeset | 722 | else "-" | 
| 
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
 wenzelm parents: 
48494diff
changeset | 723 | case None => "-" | 
| 
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
 wenzelm parents: 
48494diff
changeset | 724 | }) | 
| 
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
 wenzelm parents: 
48494diff
changeset | 725 | } | 
| 
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
 wenzelm parents: 
48494diff
changeset | 726 | |
| 48639 
675988e64bf9
store parent heap stamp as well -- needs to be propagated through the build hierarchy;
 wenzelm parents: 
48626diff
changeset | 727 | private def read_stamps(path: Path): Option[(String, String, String)] = | 
| 
675988e64bf9
store parent heap stamp as well -- needs to be propagated through the build hierarchy;
 wenzelm parents: 
48626diff
changeset | 728 |     if (path.is_file) {
 | 
| 
675988e64bf9
store parent heap stamp as well -- needs to be propagated through the build hierarchy;
 wenzelm parents: 
48626diff
changeset | 729 | val stream = new GZIPInputStream (new BufferedInputStream(new FileInputStream(path.file))) | 
| 50203 | 730 | val reader = new BufferedReader(new InputStreamReader(stream, UTF8.charset)) | 
| 48639 
675988e64bf9
store parent heap stamp as well -- needs to be propagated through the build hierarchy;
 wenzelm parents: 
48626diff
changeset | 731 | val (s, h1, h2) = | 
| 
675988e64bf9
store parent heap stamp as well -- needs to be propagated through the build hierarchy;
 wenzelm parents: 
48626diff
changeset | 732 |         try { (reader.readLine, reader.readLine, reader.readLine) }
 | 
| 
675988e64bf9
store parent heap stamp as well -- needs to be propagated through the build hierarchy;
 wenzelm parents: 
48626diff
changeset | 733 |         finally { reader.close }
 | 
| 
675988e64bf9
store parent heap stamp as well -- needs to be propagated through the build hierarchy;
 wenzelm parents: 
48626diff
changeset | 734 |       if (s != null && s.startsWith("sources: ") &&
 | 
| 
675988e64bf9
store parent heap stamp as well -- needs to be propagated through the build hierarchy;
 wenzelm parents: 
48626diff
changeset | 735 |           h1 != null && h1.startsWith("heap: ") &&
 | 
| 
675988e64bf9
store parent heap stamp as well -- needs to be propagated through the build hierarchy;
 wenzelm parents: 
48626diff
changeset | 736 |           h2 != null && h2.startsWith("heap: ")) Some((s, h1, h2))
 | 
| 48504 
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
 wenzelm parents: 
48494diff
changeset | 737 | else None | 
| 
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
 wenzelm parents: 
48494diff
changeset | 738 | } | 
| 
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
 wenzelm parents: 
48494diff
changeset | 739 | else None | 
| 
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
 wenzelm parents: 
48494diff
changeset | 740 | |
| 
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
 wenzelm parents: 
48494diff
changeset | 741 | |
| 52114 | 742 | /* build_results */ | 
| 48424 | 743 | |
| 52114 | 744 | def build_results( | 
| 50404 
898cac1dad5e
avoid startup within GUI thread -- it is only required later for dialog;
 wenzelm parents: 
50367diff
changeset | 745 | options: Options, | 
| 52115 | 746 | progress: Progress = Ignore_Progress, | 
| 49131 | 747 | requirements: Boolean = false, | 
| 48509 | 748 | all_sessions: Boolean = false, | 
| 48511 
37999ee01156
remove old output heaps, to ensure that result is valid wrt. check_stamps;
 wenzelm parents: 
48509diff
changeset | 749 | build_heap: Boolean = false, | 
| 48595 | 750 | clean_build: Boolean = false, | 
| 56890 | 751 | dirs: List[Path] = Nil, | 
| 752 | select_dirs: List[Path] = Nil, | |
| 48509 | 753 | session_groups: List[String] = Nil, | 
| 754 | max_jobs: Int = 1, | |
| 48903 | 755 | list_files: Boolean = false, | 
| 59891 
9ce697050455
added isabelle build option -k, for fast off-line checking of theory sources;
 wenzelm parents: 
59811diff
changeset | 756 | check_keywords: Set[String] = Set.empty, | 
| 48509 | 757 | no_build: Boolean = false, | 
| 758 | system_mode: Boolean = false, | |
| 759 | verbose: Boolean = false, | |
| 59892 
2a616319c171
added isabelle build option -x, to exclude sessions;
 wenzelm parents: 
59891diff
changeset | 760 | exclude_sessions: List[String] = Nil, | 
| 52114 | 761 | sessions: List[String] = Nil): Map[String, Int] = | 
| 48341 | 762 |   {
 | 
| 51220 | 763 | /* session tree and dependencies */ | 
| 764 | ||
| 59723 
193f12622072
suppress semantic completion in errors of batch build -- avoid junk in log files;
 wenzelm parents: 
59705diff
changeset | 765 |     val full_tree = find_sessions(options.int("completion_limit") = 0, dirs, select_dirs)
 | 
| 49131 | 766 | val (selected, selected_tree) = | 
| 59892 
2a616319c171
added isabelle build option -x, to exclude sessions;
 wenzelm parents: 
59891diff
changeset | 767 | full_tree.selection(requirements, all_sessions, session_groups, exclude_sessions, sessions) | 
| 49131 | 768 | |
| 59891 
9ce697050455
added isabelle build option -k, for fast off-line checking of theory sources;
 wenzelm parents: 
59811diff
changeset | 769 | val deps = dependencies(progress, true, verbose, list_files, check_keywords, selected_tree) | 
| 48368 | 770 | |
| 48504 
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
 wenzelm parents: 
48494diff
changeset | 771 | def make_stamp(name: String): String = | 
| 49131 | 772 | sources_stamp(selected_tree(name).entry_digest :: deps.sources(name)) | 
| 48504 
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
 wenzelm parents: 
48494diff
changeset | 773 | |
| 51220 | 774 | |
| 775 | /* persistent information */ | |
| 776 | ||
| 48504 
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
 wenzelm parents: 
48494diff
changeset | 777 | val (input_dirs, output_dir, browser_info) = | 
| 
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
 wenzelm parents: 
48494diff
changeset | 778 |       if (system_mode) {
 | 
| 
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
 wenzelm parents: 
48494diff
changeset | 779 |         val output_dir = Path.explode("~~/heaps/$ML_IDENTIFIER")
 | 
| 
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
 wenzelm parents: 
48494diff
changeset | 780 |         (List(output_dir), output_dir, Path.explode("~~/browser_info"))
 | 
| 
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
 wenzelm parents: 
48494diff
changeset | 781 | } | 
| 
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
 wenzelm parents: 
48494diff
changeset | 782 |       else {
 | 
| 
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
 wenzelm parents: 
48494diff
changeset | 783 |         val output_dir = Path.explode("$ISABELLE_OUTPUT")
 | 
| 
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
 wenzelm parents: 
48494diff
changeset | 784 | (output_dir :: Isabelle_System.find_logics_dirs(), output_dir, | 
| 
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
 wenzelm parents: 
48494diff
changeset | 785 |          Path.explode("$ISABELLE_BROWSER_INFO"))
 | 
| 
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
 wenzelm parents: 
48494diff
changeset | 786 | } | 
| 48363 | 787 | |
| 51221 | 788 | def find_log(name: String): Option[(Path, Path)] = | 
| 789 | input_dirs.find(dir => (dir + log(name)).is_file).map(dir => (dir, dir + log(name))) | |
| 51220 | 790 | |
| 791 | ||
| 792 | /* queue with scheduling information */ | |
| 793 | ||
| 51230 
19192615911e
option parallel_proofs_reuse_timing controls reuse of log information -- since it is not always beneficial for performance;
 wenzelm parents: 
51229diff
changeset | 794 | def load_timings(name: String): (List[Properties.T], Double) = | 
| 51221 | 795 |     {
 | 
| 796 | val (path, text) = | |
| 797 |         find_log(name + ".gz") match {
 | |
| 798 | case Some((_, path)) => (path, File.read_gzip(path)) | |
| 799 | case None => | |
| 800 |             find_log(name) match {
 | |
| 801 | case Some((_, path)) => (path, File.read(path)) | |
| 802 | case None => (Path.current, "") | |
| 803 | } | |
| 804 | } | |
| 51244 
d8ca566b22b3
more robust load_timings: ignore XML.Decode errors as well;
 wenzelm parents: 
51230diff
changeset | 805 | |
| 
d8ca566b22b3
more robust load_timings: ignore XML.Decode errors as well;
 wenzelm parents: 
51230diff
changeset | 806 | def ignore_error(msg: String): (List[Properties.T], Double) = | 
| 
d8ca566b22b3
more robust load_timings: ignore XML.Decode errors as well;
 wenzelm parents: 
51230diff
changeset | 807 |       {
 | 
| 56782 
433cf57550fa
more systematic Isabelle output, like in classic Isabelle/ML (without markup);
 wenzelm parents: 
56780diff
changeset | 808 |         Output.warning("Ignoring bad log file: " + path + (if (msg == "") "" else "\n" + msg))
 | 
| 51244 
d8ca566b22b3
more robust load_timings: ignore XML.Decode errors as well;
 wenzelm parents: 
51230diff
changeset | 809 | (Nil, 0.0) | 
| 
d8ca566b22b3
more robust load_timings: ignore XML.Decode errors as well;
 wenzelm parents: 
51230diff
changeset | 810 | } | 
| 
d8ca566b22b3
more robust load_timings: ignore XML.Decode errors as well;
 wenzelm parents: 
51230diff
changeset | 811 | |
| 51221 | 812 |       try {
 | 
| 813 | val info = parse_log(false, text) | |
| 814 | val session_timing = Markup.Elapsed.unapply(info.session_timing) getOrElse 0.0 | |
| 815 | (info.command_timings, session_timing) | |
| 51220 | 816 | } | 
| 51221 | 817 |       catch {
 | 
| 51244 
d8ca566b22b3
more robust load_timings: ignore XML.Decode errors as well;
 wenzelm parents: 
51230diff
changeset | 818 | case ERROR(msg) => ignore_error(msg) | 
| 51986 
5fdca5bfc0b4
more robust load_timings: ignore JVM errors such as java.lang.OutOfMemoryError;
 wenzelm parents: 
51983diff
changeset | 819 | case exn: java.lang.Error => ignore_error(Exn.message(exn)) | 
| 51987 | 820 |         case _: XML.Error => ignore_error("")
 | 
| 51221 | 821 | } | 
| 822 | } | |
| 51220 | 823 | |
| 51230 
19192615911e
option parallel_proofs_reuse_timing controls reuse of log information -- since it is not always beneficial for performance;
 wenzelm parents: 
51229diff
changeset | 824 | val queue = Queue(selected_tree, load_timings) | 
| 51220 | 825 | |
| 826 | ||
| 827 | /* main build process */ | |
| 828 | ||
| 48373 | 829 | // prepare log dir | 
| 50893 
d55eb82ae77b
Isabelle_System.mkdirs with explicit error checking (in accordance to ML version), e.g. relevant with read-only DMG file-system on Mac OS X;
 wenzelm parents: 
50847diff
changeset | 830 | Isabelle_System.mkdirs(output_dir + LOG) | 
| 48373 | 831 | |
| 48595 | 832 | // optional cleanup | 
| 833 |     if (clean_build) {
 | |
| 49131 | 834 |       for (name <- full_tree.graph.all_succs(selected)) {
 | 
| 48595 | 835 | val files = | 
| 836 | List(Path.basic(name), log(name), log_gz(name)).map(output_dir + _).filter(_.is_file) | |
| 59319 | 837 |         if (files.nonEmpty) progress.echo("Cleaning " + name + " ...")
 | 
| 50366 | 838 | if (!files.forall(p => p.file.delete)) progress.echo(name + " FAILED to delete") | 
| 48595 | 839 | } | 
| 840 | } | |
| 841 | ||
| 48425 | 842 | // scheduler loop | 
| 51399 
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
 wenzelm parents: 
51397diff
changeset | 843 | case class Result(current: Boolean, heap: String, rc: Int) | 
| 48639 
675988e64bf9
store parent heap stamp as well -- needs to be propagated through the build hierarchy;
 wenzelm parents: 
48626diff
changeset | 844 | |
| 56837 
5a598f1eecfd
more robust interrupt handling for Scala_Console, which uses JVM Thread.interrupt instead of POSIX SIGINT;
 wenzelm parents: 
56831diff
changeset | 845 | def sleep() | 
| 
5a598f1eecfd
more robust interrupt handling for Scala_Console, which uses JVM Thread.interrupt instead of POSIX SIGINT;
 wenzelm parents: 
56831diff
changeset | 846 |     {
 | 
| 
5a598f1eecfd
more robust interrupt handling for Scala_Console, which uses JVM Thread.interrupt instead of POSIX SIGINT;
 wenzelm parents: 
56831diff
changeset | 847 |       try { Thread.sleep(500) }
 | 
| 56861 | 848 |       catch { case Exn.Interrupt() => Exn.Interrupt.impose() }
 | 
| 56837 
5a598f1eecfd
more robust interrupt handling for Scala_Console, which uses JVM Thread.interrupt instead of POSIX SIGINT;
 wenzelm parents: 
56831diff
changeset | 849 | } | 
| 50366 | 850 | |
| 48425 | 851 | @tailrec def loop( | 
| 48676 
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
 wenzelm parents: 
48675diff
changeset | 852 | pending: Queue, | 
| 48674 | 853 | running: Map[String, (String, Job)], | 
| 48639 
675988e64bf9
store parent heap stamp as well -- needs to be propagated through the build hierarchy;
 wenzelm parents: 
48626diff
changeset | 854 | results: Map[String, Result]): Map[String, Result] = | 
| 48425 | 855 |     {
 | 
| 856 | if (pending.is_empty) results | |
| 51253 | 857 |       else {
 | 
| 858 | if (progress.stopped) | |
| 859 | for ((_, (_, job)) <- running) job.terminate | |
| 860 | ||
| 48674 | 861 |         running.find({ case (_, (_, job)) => job.is_finished }) match {
 | 
| 862 | case Some((name, (parent_heap, job))) => | |
| 50367 | 863 |             //{{{ finish job
 | 
| 48424 | 864 | |
| 50845 | 865 | val res = job.join | 
| 866 | progress.echo(res.err) | |
| 48373 | 867 | |
| 51399 
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
 wenzelm parents: 
51397diff
changeset | 868 | val heap = | 
| 50845 | 869 |               if (res.rc == 0) {
 | 
| 48639 
675988e64bf9
store parent heap stamp as well -- needs to be propagated through the build hierarchy;
 wenzelm parents: 
48626diff
changeset | 870 | (output_dir + log(name)).file.delete | 
| 
675988e64bf9
store parent heap stamp as well -- needs to be propagated through the build hierarchy;
 wenzelm parents: 
48626diff
changeset | 871 | |
| 
675988e64bf9
store parent heap stamp as well -- needs to be propagated through the build hierarchy;
 wenzelm parents: 
48626diff
changeset | 872 | val sources = make_stamp(name) | 
| 
675988e64bf9
store parent heap stamp as well -- needs to be propagated through the build hierarchy;
 wenzelm parents: 
48626diff
changeset | 873 | val heap = heap_stamp(job.output_path) | 
| 
675988e64bf9
store parent heap stamp as well -- needs to be propagated through the build hierarchy;
 wenzelm parents: 
48626diff
changeset | 874 | File.write_gzip(output_dir + log_gz(name), | 
| 51983 
32692ce4c61a
more frugal line termination, to cope with huge log files (see also 016cb7d8f297);
 wenzelm parents: 
51962diff
changeset | 875 | Library.terminate_lines(sources :: parent_heap :: heap :: res.out_lines)) | 
| 48639 
675988e64bf9
store parent heap stamp as well -- needs to be propagated through the build hierarchy;
 wenzelm parents: 
48626diff
changeset | 876 | |
| 51399 
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
 wenzelm parents: 
51397diff
changeset | 877 | heap | 
| 48639 
675988e64bf9
store parent heap stamp as well -- needs to be propagated through the build hierarchy;
 wenzelm parents: 
48626diff
changeset | 878 | } | 
| 
675988e64bf9
store parent heap stamp as well -- needs to be propagated through the build hierarchy;
 wenzelm parents: 
48626diff
changeset | 879 |               else {
 | 
| 
675988e64bf9
store parent heap stamp as well -- needs to be propagated through the build hierarchy;
 wenzelm parents: 
48626diff
changeset | 880 | (output_dir + Path.basic(name)).file.delete | 
| 
675988e64bf9
store parent heap stamp as well -- needs to be propagated through the build hierarchy;
 wenzelm parents: 
48626diff
changeset | 881 | (output_dir + log_gz(name)).file.delete | 
| 
675988e64bf9
store parent heap stamp as well -- needs to be propagated through the build hierarchy;
 wenzelm parents: 
48626diff
changeset | 882 | |
| 51983 
32692ce4c61a
more frugal line termination, to cope with huge log files (see also 016cb7d8f297);
 wenzelm parents: 
51962diff
changeset | 883 | File.write(output_dir + log(name), Library.terminate_lines(res.out_lines)) | 
| 50366 | 884 | progress.echo(name + " FAILED") | 
| 56667 
65e84b0ef974
more abstract Exn.Interrupt and POSIX return code;
 wenzelm parents: 
56533diff
changeset | 885 |                 if (res.rc != Exn.Interrupt.return_code) {
 | 
| 50366 | 886 |                   progress.echo("(see also " + (output_dir + log(name)).file.toString + ")")
 | 
| 50845 | 887 |                   val lines = res.out_lines.filterNot(_.startsWith("\f"))
 | 
| 50713 
dae523e6198b
tuned message -- suppress inlined system information;
 wenzelm parents: 
50707diff
changeset | 888 | val tail = lines.drop(lines.length - 20 max 0) | 
| 50366 | 889 |                   progress.echo("\n" + cat_lines(tail))
 | 
| 48661 | 890 | } | 
| 48639 
675988e64bf9
store parent heap stamp as well -- needs to be propagated through the build hierarchy;
 wenzelm parents: 
48626diff
changeset | 891 | |
| 51399 
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
 wenzelm parents: 
51397diff
changeset | 892 | no_heap | 
| 48639 
675988e64bf9
store parent heap stamp as well -- needs to be propagated through the build hierarchy;
 wenzelm parents: 
48626diff
changeset | 893 | } | 
| 50707 
5b2bf7611662
maintain session index on Scala side, for more determistic results;
 wenzelm parents: 
50686diff
changeset | 894 | loop(pending - name, running - name, | 
| 51399 
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
 wenzelm parents: 
51397diff
changeset | 895 | results + (name -> Result(false, heap, res.rc))) | 
| 50367 | 896 | //}}} | 
| 48547 | 897 | case None if (running.size < (max_jobs max 1)) => | 
| 50367 | 898 |             //{{{ check/start next job
 | 
| 48547 | 899 |             pending.dequeue(running.isDefinedAt(_)) match {
 | 
| 900 | case Some((name, info)) => | |
| 48639 
675988e64bf9
store parent heap stamp as well -- needs to be propagated through the build hierarchy;
 wenzelm parents: 
48626diff
changeset | 901 | val parent_result = | 
| 
675988e64bf9
store parent heap stamp as well -- needs to be propagated through the build hierarchy;
 wenzelm parents: 
48626diff
changeset | 902 |                   info.parent match {
 | 
| 51399 
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
 wenzelm parents: 
51397diff
changeset | 903 | case None => Result(true, no_heap, 0) | 
| 48639 
675988e64bf9
store parent heap stamp as well -- needs to be propagated through the build hierarchy;
 wenzelm parents: 
48626diff
changeset | 904 | case Some(parent) => results(parent) | 
| 
675988e64bf9
store parent heap stamp as well -- needs to be propagated through the build hierarchy;
 wenzelm parents: 
48626diff
changeset | 905 | } | 
| 48547 | 906 | val output = output_dir + Path.basic(name) | 
| 907 | val do_output = build_heap || queue.is_inner(name) | |
| 908 | ||
| 48639 
675988e64bf9
store parent heap stamp as well -- needs to be propagated through the build hierarchy;
 wenzelm parents: 
48626diff
changeset | 909 | val (current, heap) = | 
| 48547 | 910 |                 {
 | 
| 51221 | 911 |                   find_log(name + ".gz") match {
 | 
| 912 | case Some((dir, path)) => | |
| 51220 | 913 |                       read_stamps(path) match {
 | 
| 48639 
675988e64bf9
store parent heap stamp as well -- needs to be propagated through the build hierarchy;
 wenzelm parents: 
48626diff
changeset | 914 | case Some((s, h1, h2)) => | 
| 51221 | 915 | val heap = heap_stamp(Some(dir + Path.basic(name))) | 
| 48639 
675988e64bf9
store parent heap stamp as well -- needs to be propagated through the build hierarchy;
 wenzelm parents: 
48626diff
changeset | 916 | (s == make_stamp(name) && h1 == parent_result.heap && h2 == heap && | 
| 
675988e64bf9
store parent heap stamp as well -- needs to be propagated through the build hierarchy;
 wenzelm parents: 
48626diff
changeset | 917 | !(do_output && heap == no_heap), heap) | 
| 
675988e64bf9
store parent heap stamp as well -- needs to be propagated through the build hierarchy;
 wenzelm parents: 
48626diff
changeset | 918 | case None => (false, no_heap) | 
| 48547 | 919 | } | 
| 48639 
675988e64bf9
store parent heap stamp as well -- needs to be propagated through the build hierarchy;
 wenzelm parents: 
48626diff
changeset | 920 | case None => (false, no_heap) | 
| 48504 
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
 wenzelm parents: 
48494diff
changeset | 921 | } | 
| 48547 | 922 | } | 
| 48639 
675988e64bf9
store parent heap stamp as well -- needs to be propagated through the build hierarchy;
 wenzelm parents: 
48626diff
changeset | 923 | val all_current = current && parent_result.current | 
| 48528 
784c6f63d79c
proper all_current, which regards parent status as well;
 wenzelm parents: 
48511diff
changeset | 924 | |
| 48547 | 925 | if (all_current) | 
| 51399 
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
 wenzelm parents: 
51397diff
changeset | 926 | loop(pending - name, running, results + (name -> Result(true, heap, 0))) | 
| 48678 
ff27af15530c
queue ordering by descending outdegree and timeout;
 wenzelm parents: 
48676diff
changeset | 927 |                 else if (no_build) {
 | 
| 50366 | 928 |                   if (verbose) progress.echo("Skipping " + name + " ...")
 | 
| 51399 
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
 wenzelm parents: 
51397diff
changeset | 929 | loop(pending - name, running, results + (name -> Result(false, heap, 1))) | 
| 48678 
ff27af15530c
queue ordering by descending outdegree and timeout;
 wenzelm parents: 
48676diff
changeset | 930 | } | 
| 51253 | 931 |                 else if (parent_result.rc == 0 && !progress.stopped) {
 | 
| 50366 | 932 | progress.echo((if (do_output) "Building " else "Running ") + name + " ...") | 
| 51220 | 933 | val job = | 
| 934 | new Job(progress, name, info, output, do_output, verbose, browser_info, | |
| 59445 | 935 | deps(name).session_graph, queue.command_timings(name)) | 
| 48674 | 936 | loop(pending, running + (name -> (parent_result.heap, job)), results) | 
| 48547 | 937 | } | 
| 938 |                 else {
 | |
| 50366 | 939 | progress.echo(name + " CANCELLED") | 
| 51399 
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
 wenzelm parents: 
51397diff
changeset | 940 | loop(pending - name, running, results + (name -> Result(false, heap, 1))) | 
| 48547 | 941 | } | 
| 942 | case None => sleep(); loop(pending, running, results) | |
| 48425 | 943 | } | 
| 50367 | 944 | ///}}} | 
| 48425 | 945 | case None => sleep(); loop(pending, running, results) | 
| 48373 | 946 | } | 
| 51253 | 947 | } | 
| 48425 | 948 | } | 
| 949 | ||
| 51220 | 950 | |
| 951 | /* build results */ | |
| 952 | ||
| 48583 | 953 | val results = | 
| 954 |       if (deps.is_empty) {
 | |
| 56782 
433cf57550fa
more systematic Isabelle output, like in classic Isabelle/ML (without markup);
 wenzelm parents: 
56780diff
changeset | 955 |         progress.echo(Output.warning_text("Nothing to build"))
 | 
| 50707 
5b2bf7611662
maintain session index on Scala side, for more determistic results;
 wenzelm parents: 
50686diff
changeset | 956 | Map.empty[String, Result] | 
| 48583 | 957 | } | 
| 958 | else loop(queue, Map.empty, Map.empty) | |
| 959 | ||
| 51418 
7b8ce8403340
more accurate handling of global browser info at the very end (without races), subject to no_build and info.browser_info;
 wenzelm parents: 
51402diff
changeset | 960 | |
| 
7b8ce8403340
more accurate handling of global browser info at the very end (without races), subject to no_build and info.browser_info;
 wenzelm parents: 
51402diff
changeset | 961 | /* global browser info */ | 
| 
7b8ce8403340
more accurate handling of global browser info at the very end (without races), subject to no_build and info.browser_info;
 wenzelm parents: 
51402diff
changeset | 962 | |
| 
7b8ce8403340
more accurate handling of global browser info at the very end (without races), subject to no_build and info.browser_info;
 wenzelm parents: 
51402diff
changeset | 963 |     if (!no_build) {
 | 
| 
7b8ce8403340
more accurate handling of global browser info at the very end (without races), subject to no_build and info.browser_info;
 wenzelm parents: 
51402diff
changeset | 964 | val browser_chapters = | 
| 
7b8ce8403340
more accurate handling of global browser info at the very end (without races), subject to no_build and info.browser_info;
 wenzelm parents: 
51402diff
changeset | 965 |         (for {
 | 
| 
7b8ce8403340
more accurate handling of global browser info at the very end (without races), subject to no_build and info.browser_info;
 wenzelm parents: 
51402diff
changeset | 966 | (name, result) <- results.iterator | 
| 
7b8ce8403340
more accurate handling of global browser info at the very end (without races), subject to no_build and info.browser_info;
 wenzelm parents: 
51402diff
changeset | 967 | if result.rc == 0 | 
| 
7b8ce8403340
more accurate handling of global browser info at the very end (without races), subject to no_build and info.browser_info;
 wenzelm parents: 
51402diff
changeset | 968 | info = full_tree(name) | 
| 
7b8ce8403340
more accurate handling of global browser info at the very end (without races), subject to no_build and info.browser_info;
 wenzelm parents: 
51402diff
changeset | 969 |           if info.options.bool("browser_info")
 | 
| 
7b8ce8403340
more accurate handling of global browser info at the very end (without races), subject to no_build and info.browser_info;
 wenzelm parents: 
51402diff
changeset | 970 | } yield (info.chapter, (name, info.description))).toList.groupBy(_._1). | 
| 
7b8ce8403340
more accurate handling of global browser info at the very end (without races), subject to no_build and info.browser_info;
 wenzelm parents: 
51402diff
changeset | 971 |             map({ case (chapter, es) => (chapter, es.map(_._2)) }).filterNot(_._2.isEmpty)
 | 
| 
7b8ce8403340
more accurate handling of global browser info at the very end (without races), subject to no_build and info.browser_info;
 wenzelm parents: 
51402diff
changeset | 972 | |
| 
7b8ce8403340
more accurate handling of global browser info at the very end (without races), subject to no_build and info.browser_info;
 wenzelm parents: 
51402diff
changeset | 973 | for ((chapter, entries) <- browser_chapters) | 
| 
7b8ce8403340
more accurate handling of global browser info at the very end (without races), subject to no_build and info.browser_info;
 wenzelm parents: 
51402diff
changeset | 974 | Present.update_chapter_index(browser_info, chapter, entries) | 
| 
7b8ce8403340
more accurate handling of global browser info at the very end (without races), subject to no_build and info.browser_info;
 wenzelm parents: 
51402diff
changeset | 975 | |
| 59319 | 976 |       if (browser_chapters.nonEmpty && !(browser_info + Path.explode("index.html")).is_file)
 | 
| 51418 
7b8ce8403340
more accurate handling of global browser info at the very end (without races), subject to no_build and info.browser_info;
 wenzelm parents: 
51402diff
changeset | 977 |       {
 | 
| 
7b8ce8403340
more accurate handling of global browser info at the very end (without races), subject to no_build and info.browser_info;
 wenzelm parents: 
51402diff
changeset | 978 | Isabelle_System.mkdirs(browser_info) | 
| 
7b8ce8403340
more accurate handling of global browser info at the very end (without races), subject to no_build and info.browser_info;
 wenzelm parents: 
51402diff
changeset | 979 |         File.copy(Path.explode("~~/lib/logo/isabelle.gif"),
 | 
| 
7b8ce8403340
more accurate handling of global browser info at the very end (without races), subject to no_build and info.browser_info;
 wenzelm parents: 
51402diff
changeset | 980 |           browser_info + Path.explode("isabelle.gif"))
 | 
| 
7b8ce8403340
more accurate handling of global browser info at the very end (without races), subject to no_build and info.browser_info;
 wenzelm parents: 
51402diff
changeset | 981 |         File.write(browser_info + Path.explode("index.html"),
 | 
| 
7b8ce8403340
more accurate handling of global browser info at the very end (without races), subject to no_build and info.browser_info;
 wenzelm parents: 
51402diff
changeset | 982 |           File.read(Path.explode("~~/lib/html/library_index_header.template")) +
 | 
| 
7b8ce8403340
more accurate handling of global browser info at the very end (without races), subject to no_build and info.browser_info;
 wenzelm parents: 
51402diff
changeset | 983 |           File.read(Path.explode("~~/lib/html/library_index_content.template")) +
 | 
| 
7b8ce8403340
more accurate handling of global browser info at the very end (without races), subject to no_build and info.browser_info;
 wenzelm parents: 
51402diff
changeset | 984 |           File.read(Path.explode("~~/lib/html/library_index_footer.template")))
 | 
| 
7b8ce8403340
more accurate handling of global browser info at the very end (without races), subject to no_build and info.browser_info;
 wenzelm parents: 
51402diff
changeset | 985 | } | 
| 
7b8ce8403340
more accurate handling of global browser info at the very end (without races), subject to no_build and info.browser_info;
 wenzelm parents: 
51402diff
changeset | 986 | } | 
| 
7b8ce8403340
more accurate handling of global browser info at the very end (without races), subject to no_build and info.browser_info;
 wenzelm parents: 
51402diff
changeset | 987 | |
| 
7b8ce8403340
more accurate handling of global browser info at the very end (without races), subject to no_build and info.browser_info;
 wenzelm parents: 
51402diff
changeset | 988 | |
| 52114 | 989 | /* results */ | 
| 990 | ||
| 991 |     results.map({ case (name, result) => (name, result.rc) })
 | |
| 992 | } | |
| 993 | ||
| 994 | ||
| 995 | /* build */ | |
| 50707 
5b2bf7611662
maintain session index on Scala side, for more determistic results;
 wenzelm parents: 
50686diff
changeset | 996 | |
| 52114 | 997 | def build( | 
| 998 | options: Options, | |
| 52115 | 999 | progress: Progress = Ignore_Progress, | 
| 52114 | 1000 | requirements: Boolean = false, | 
| 1001 | all_sessions: Boolean = false, | |
| 1002 | build_heap: Boolean = false, | |
| 1003 | clean_build: Boolean = false, | |
| 56890 | 1004 | dirs: List[Path] = Nil, | 
| 1005 | select_dirs: List[Path] = Nil, | |
| 52114 | 1006 | session_groups: List[String] = Nil, | 
| 1007 | max_jobs: Int = 1, | |
| 1008 | list_files: Boolean = false, | |
| 59891 
9ce697050455
added isabelle build option -k, for fast off-line checking of theory sources;
 wenzelm parents: 
59811diff
changeset | 1009 | check_keywords: Set[String] = Set.empty, | 
| 52114 | 1010 | no_build: Boolean = false, | 
| 1011 | system_mode: Boolean = false, | |
| 1012 | verbose: Boolean = false, | |
| 59892 
2a616319c171
added isabelle build option -x, to exclude sessions;
 wenzelm parents: 
59891diff
changeset | 1013 | exclude_sessions: List[String] = Nil, | 
| 52114 | 1014 | sessions: List[String] = Nil): Int = | 
| 1015 |   {
 | |
| 1016 | val results = | |
| 59892 
2a616319c171
added isabelle build option -x, to exclude sessions;
 wenzelm parents: 
59891diff
changeset | 1017 | build_results(options, progress, requirements, all_sessions, build_heap, clean_build, | 
| 
2a616319c171
added isabelle build option -x, to exclude sessions;
 wenzelm parents: 
59891diff
changeset | 1018 | dirs, select_dirs, session_groups, max_jobs, list_files, check_keywords, | 
| 
2a616319c171
added isabelle build option -x, to exclude sessions;
 wenzelm parents: 
59891diff
changeset | 1019 | no_build, system_mode, verbose, exclude_sessions, sessions) | 
| 52114 | 1020 | |
| 1021 |     val rc = (0 /: results)({ case (rc1, (_, rc2)) => rc1 max rc2 })
 | |
| 48504 
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
 wenzelm parents: 
48494diff
changeset | 1022 |     if (rc != 0 && (verbose || !no_build)) {
 | 
| 48552 | 1023 | val unfinished = | 
| 52114 | 1024 | (for ((name, r) <- results.iterator if r != 0) yield name).toList.sorted | 
| 50366 | 1025 |       progress.echo("Unfinished session(s): " + commas(unfinished))
 | 
| 48473 | 1026 | } | 
| 1027 | rc | |
| 48341 | 1028 | } | 
| 1029 | ||
| 1030 | ||
| 48346 
e2382bede914
more general support for Isabelle/Scala command line tools;
 wenzelm parents: 
48344diff
changeset | 1031 | /* command line entry point */ | 
| 48341 | 1032 | |
| 1033 | def main(args: Array[String]) | |
| 1034 |   {
 | |
| 48346 
e2382bede914
more general support for Isabelle/Scala command line tools;
 wenzelm parents: 
48344diff
changeset | 1035 |     Command_Line.tool {
 | 
| 
e2382bede914
more general support for Isabelle/Scala command line tools;
 wenzelm parents: 
48344diff
changeset | 1036 |       args.toList match {
 | 
| 
e2382bede914
more general support for Isabelle/Scala command line tools;
 wenzelm parents: 
48344diff
changeset | 1037 | case | 
| 49131 | 1038 | Properties.Value.Boolean(requirements) :: | 
| 48346 
e2382bede914
more general support for Isabelle/Scala command line tools;
 wenzelm parents: 
48344diff
changeset | 1039 | Properties.Value.Boolean(all_sessions) :: | 
| 48511 
37999ee01156
remove old output heaps, to ensure that result is valid wrt. check_stamps;
 wenzelm parents: 
48509diff
changeset | 1040 | Properties.Value.Boolean(build_heap) :: | 
| 48595 | 1041 | Properties.Value.Boolean(clean_build) :: | 
| 48425 | 1042 | Properties.Value.Int(max_jobs) :: | 
| 48903 | 1043 | Properties.Value.Boolean(list_files) :: | 
| 48469 | 1044 | Properties.Value.Boolean(no_build) :: | 
| 48447 
ef600ce4559c
added system build mode: produce output in ISABELLE_HOME;
 wenzelm parents: 
48425diff
changeset | 1045 | Properties.Value.Boolean(system_mode) :: | 
| 48425 | 1046 | Properties.Value.Boolean(verbose) :: | 
| 59892 
2a616319c171
added isabelle build option -x, to exclude sessions;
 wenzelm parents: 
59891diff
changeset | 1047 | Command_Line.Chunks(dirs, select_dirs, session_groups, check_keywords, | 
| 
2a616319c171
added isabelle build option -x, to exclude sessions;
 wenzelm parents: 
59891diff
changeset | 1048 | build_options, exclude_sessions, sessions) => | 
| 50404 
898cac1dad5e
avoid startup within GUI thread -- it is only required later for dialog;
 wenzelm parents: 
50367diff
changeset | 1049 | val options = (Options.init() /: build_options)(_ + _) | 
| 52114 | 1050 | val progress = new Console_Progress(verbose) | 
| 51252 | 1051 |             progress.interrupt_handler {
 | 
| 56890 | 1052 | build(options, progress, requirements, all_sessions, build_heap, clean_build, | 
| 1053 | dirs.map(Path.explode(_)), select_dirs.map(Path.explode(_)), session_groups, | |
| 59891 
9ce697050455
added isabelle build option -k, for fast off-line checking of theory sources;
 wenzelm parents: 
59811diff
changeset | 1054 | max_jobs, list_files, check_keywords.toSet, no_build, system_mode, | 
| 59892 
2a616319c171
added isabelle build option -x, to exclude sessions;
 wenzelm parents: 
59891diff
changeset | 1055 | verbose, exclude_sessions, sessions) | 
| 51252 | 1056 | } | 
| 48346 
e2382bede914
more general support for Isabelle/Scala command line tools;
 wenzelm parents: 
48344diff
changeset | 1057 |         case _ => error("Bad arguments:\n" + cat_lines(args))
 | 
| 48341 | 1058 | } | 
| 48346 
e2382bede914
more general support for Isabelle/Scala command line tools;
 wenzelm parents: 
48344diff
changeset | 1059 | } | 
| 48341 | 1060 | } | 
| 59366 
e94df7f6b608
clarified build_theories: proper protocol handler;
 wenzelm parents: 
59319diff
changeset | 1061 | |
| 
e94df7f6b608
clarified build_theories: proper protocol handler;
 wenzelm parents: 
59319diff
changeset | 1062 | |
| 
e94df7f6b608
clarified build_theories: proper protocol handler;
 wenzelm parents: 
59319diff
changeset | 1063 | /* PIDE protocol */ | 
| 
e94df7f6b608
clarified build_theories: proper protocol handler;
 wenzelm parents: 
59319diff
changeset | 1064 | |
| 
e94df7f6b608
clarified build_theories: proper protocol handler;
 wenzelm parents: 
59319diff
changeset | 1065 | def build_theories( | 
| 59369 
7090199d3f78
more informative build_theories_result: cumulative Runtime.exn_message;
 wenzelm parents: 
59367diff
changeset | 1066 | session: Session, master_dir: Path, theories: List[(Options, List[Path])]): Promise[XML.Body] = | 
| 59367 | 1067 |       session.get_protocol_handler(classOf[Handler].getName) match {
 | 
| 59366 
e94df7f6b608
clarified build_theories: proper protocol handler;
 wenzelm parents: 
59319diff
changeset | 1068 | case Some(handler: Handler) => handler.build_theories(session, master_dir, theories) | 
| 
e94df7f6b608
clarified build_theories: proper protocol handler;
 wenzelm parents: 
59319diff
changeset | 1069 |         case _ => error("Cannot invoke build_theories: bad protocol handler")
 | 
| 
e94df7f6b608
clarified build_theories: proper protocol handler;
 wenzelm parents: 
59319diff
changeset | 1070 | } | 
| 
e94df7f6b608
clarified build_theories: proper protocol handler;
 wenzelm parents: 
59319diff
changeset | 1071 | |
| 59367 | 1072 | class Handler(progress: Progress, session_name: String) extends Session.Protocol_Handler | 
| 59366 
e94df7f6b608
clarified build_theories: proper protocol handler;
 wenzelm parents: 
59319diff
changeset | 1073 |   {
 | 
| 59369 
7090199d3f78
more informative build_theories_result: cumulative Runtime.exn_message;
 wenzelm parents: 
59367diff
changeset | 1074 | private val pending = Synchronized(Map.empty[String, Promise[XML.Body]]) | 
| 59366 
e94df7f6b608
clarified build_theories: proper protocol handler;
 wenzelm parents: 
59319diff
changeset | 1075 | |
| 
e94df7f6b608
clarified build_theories: proper protocol handler;
 wenzelm parents: 
59319diff
changeset | 1076 | def build_theories( | 
| 59369 
7090199d3f78
more informative build_theories_result: cumulative Runtime.exn_message;
 wenzelm parents: 
59367diff
changeset | 1077 | session: Session, master_dir: Path, theories: List[(Options, List[Path])]): Promise[XML.Body] = | 
| 59366 
e94df7f6b608
clarified build_theories: proper protocol handler;
 wenzelm parents: 
59319diff
changeset | 1078 |     {
 | 
| 59369 
7090199d3f78
more informative build_theories_result: cumulative Runtime.exn_message;
 wenzelm parents: 
59367diff
changeset | 1079 | val promise = Future.promise[XML.Body] | 
| 59366 
e94df7f6b608
clarified build_theories: proper protocol handler;
 wenzelm parents: 
59319diff
changeset | 1080 | val id = Document_ID.make().toString | 
| 
e94df7f6b608
clarified build_theories: proper protocol handler;
 wenzelm parents: 
59319diff
changeset | 1081 | pending.change(promises => promises + (id -> promise)) | 
| 
e94df7f6b608
clarified build_theories: proper protocol handler;
 wenzelm parents: 
59319diff
changeset | 1082 | session.build_theories(id, master_dir, theories) | 
| 
e94df7f6b608
clarified build_theories: proper protocol handler;
 wenzelm parents: 
59319diff
changeset | 1083 | promise | 
| 
e94df7f6b608
clarified build_theories: proper protocol handler;
 wenzelm parents: 
59319diff
changeset | 1084 | } | 
| 
e94df7f6b608
clarified build_theories: proper protocol handler;
 wenzelm parents: 
59319diff
changeset | 1085 | |
| 59367 | 1086 | private def loading_theory(prover: Prover, msg: Prover.Protocol_Output): Boolean = | 
| 1087 |       msg.properties match {
 | |
| 1088 | case Markup.Loading_Theory(name) => progress.theory(session_name, name); true | |
| 1089 | case _ => false | |
| 1090 | } | |
| 1091 | ||
| 59366 
e94df7f6b608
clarified build_theories: proper protocol handler;
 wenzelm parents: 
59319diff
changeset | 1092 | private def build_theories_result(prover: Prover, msg: Prover.Protocol_Output): Boolean = | 
| 
e94df7f6b608
clarified build_theories: proper protocol handler;
 wenzelm parents: 
59319diff
changeset | 1093 |       msg.properties match {
 | 
| 59369 
7090199d3f78
more informative build_theories_result: cumulative Runtime.exn_message;
 wenzelm parents: 
59367diff
changeset | 1094 | case Markup.Build_Theories_Result(id) => | 
| 59366 
e94df7f6b608
clarified build_theories: proper protocol handler;
 wenzelm parents: 
59319diff
changeset | 1095 | pending.change_result(promises => | 
| 
e94df7f6b608
clarified build_theories: proper protocol handler;
 wenzelm parents: 
59319diff
changeset | 1096 |             promises.get(id) match {
 | 
| 59369 
7090199d3f78
more informative build_theories_result: cumulative Runtime.exn_message;
 wenzelm parents: 
59367diff
changeset | 1097 | case Some(promise) => | 
| 
7090199d3f78
more informative build_theories_result: cumulative Runtime.exn_message;
 wenzelm parents: 
59367diff
changeset | 1098 | val error_message = | 
| 
7090199d3f78
more informative build_theories_result: cumulative Runtime.exn_message;
 wenzelm parents: 
59367diff
changeset | 1099 |                   try { YXML.parse_body(Symbol.decode(msg.text)) }
 | 
| 
7090199d3f78
more informative build_theories_result: cumulative Runtime.exn_message;
 wenzelm parents: 
59367diff
changeset | 1100 |                   catch { case exn: Throwable => List(XML.Text(Exn.message(exn))) }
 | 
| 
7090199d3f78
more informative build_theories_result: cumulative Runtime.exn_message;
 wenzelm parents: 
59367diff
changeset | 1101 | promise.fulfill(error_message) | 
| 
7090199d3f78
more informative build_theories_result: cumulative Runtime.exn_message;
 wenzelm parents: 
59367diff
changeset | 1102 | (true, promises - id) | 
| 
7090199d3f78
more informative build_theories_result: cumulative Runtime.exn_message;
 wenzelm parents: 
59367diff
changeset | 1103 | case None => | 
| 
7090199d3f78
more informative build_theories_result: cumulative Runtime.exn_message;
 wenzelm parents: 
59367diff
changeset | 1104 | (false, promises) | 
| 59366 
e94df7f6b608
clarified build_theories: proper protocol handler;
 wenzelm parents: 
59319diff
changeset | 1105 | }) | 
| 
e94df7f6b608
clarified build_theories: proper protocol handler;
 wenzelm parents: 
59319diff
changeset | 1106 | case _ => false | 
| 
e94df7f6b608
clarified build_theories: proper protocol handler;
 wenzelm parents: 
59319diff
changeset | 1107 | } | 
| 
e94df7f6b608
clarified build_theories: proper protocol handler;
 wenzelm parents: 
59319diff
changeset | 1108 | |
| 
e94df7f6b608
clarified build_theories: proper protocol handler;
 wenzelm parents: 
59319diff
changeset | 1109 | override def stop(prover: Prover): Unit = | 
| 
e94df7f6b608
clarified build_theories: proper protocol handler;
 wenzelm parents: 
59319diff
changeset | 1110 |       pending.change(promises => { for ((_, promise) <- promises) promise.cancel; Map.empty })
 | 
| 
e94df7f6b608
clarified build_theories: proper protocol handler;
 wenzelm parents: 
59319diff
changeset | 1111 | |
| 59367 | 1112 | val functions = | 
| 1113 | Map( | |
| 1114 | Markup.BUILD_THEORIES_RESULT -> build_theories_result _, | |
| 1115 | Markup.LOADING_THEORY -> loading_theory _) | |
| 59366 
e94df7f6b608
clarified build_theories: proper protocol handler;
 wenzelm parents: 
59319diff
changeset | 1116 | } | 
| 48276 | 1117 | } | 
| 1118 |