| author | wenzelm | 
| Thu, 07 Apr 2016 11:17:57 +0200 | |
| changeset 62896 | 4ee9c2be4383 | 
| parent 62883 | b04e9fe29223 | 
| child 62902 | 3c0f53eae166 | 
| 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 | {
 | |
| 62631 | 22 | /** auxiliary **/ | 
| 48424 | 23 | |
| 48676 
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
 wenzelm parents: 
48675diff
changeset | 24 | /* queue */ | 
| 
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
 wenzelm parents: 
48675diff
changeset | 25 | |
| 62631 | 26 | private object Queue | 
| 48676 
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
 wenzelm parents: 
48675diff
changeset | 27 |   {
 | 
| 62631 | 28 | def apply(tree: Sessions.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 | 29 |     {
 | 
| 
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
 wenzelm parents: 
48675diff
changeset | 30 | val graph = tree.graph | 
| 56372 
fadb0fef09d7
more explicit iterator terminology, in accordance to Scala 2.8 library;
 wenzelm parents: 
56208diff
changeset | 31 | val sessions = graph.keys | 
| 51220 | 32 | |
| 59136 
c2b23cb8a677
added Par_List in Scala, in accordance to ML version;
 wenzelm parents: 
59083diff
changeset | 33 | val timings = Par_List.map((name: String) => (name, load_timings(name)), sessions) | 
| 51220 | 34 | val command_timings = | 
| 35 |         Map(timings.map({ case (name, (ts, _)) => (name, ts) }): _*).withDefaultValue(Nil)
 | |
| 36 | val session_timing = | |
| 37 |         Map(timings.map({ case (name, (_, t)) => (name, t) }): _*).withDefaultValue(0.0)
 | |
| 48678 
ff27af15530c
queue ordering by descending outdegree and timeout;
 wenzelm parents: 
48676diff
changeset | 38 | |
| 
ff27af15530c
queue ordering by descending outdegree and timeout;
 wenzelm parents: 
48676diff
changeset | 39 | def outdegree(name: String): Int = graph.imm_succs(name).size | 
| 
ff27af15530c
queue ordering by descending outdegree and timeout;
 wenzelm parents: 
48676diff
changeset | 40 | |
| 
ff27af15530c
queue ordering by descending outdegree and timeout;
 wenzelm parents: 
48676diff
changeset | 41 | object Ordering extends scala.math.Ordering[String] | 
| 
ff27af15530c
queue ordering by descending outdegree and timeout;
 wenzelm parents: 
48676diff
changeset | 42 |       {
 | 
| 51227 
88c96e836ed6
prefer comparison of session timing, if this is known already;
 wenzelm parents: 
51223diff
changeset | 43 | def compare_timing(name1: String, name2: String): Int = | 
| 
88c96e836ed6
prefer comparison of session timing, if this is known already;
 wenzelm parents: 
51223diff
changeset | 44 |         {
 | 
| 
88c96e836ed6
prefer comparison of session timing, if this is known already;
 wenzelm parents: 
51223diff
changeset | 45 | val t1 = session_timing(name1) | 
| 
88c96e836ed6
prefer comparison of session timing, if this is known already;
 wenzelm parents: 
51223diff
changeset | 46 | val t2 = session_timing(name2) | 
| 
88c96e836ed6
prefer comparison of session timing, if this is known already;
 wenzelm parents: 
51223diff
changeset | 47 | if (t1 == 0.0 || t2 == 0.0) 0 | 
| 
88c96e836ed6
prefer comparison of session timing, if this is known already;
 wenzelm parents: 
51223diff
changeset | 48 | else t1 compare t2 | 
| 
88c96e836ed6
prefer comparison of session timing, if this is known already;
 wenzelm parents: 
51223diff
changeset | 49 | } | 
| 
88c96e836ed6
prefer comparison of session timing, if this is known already;
 wenzelm parents: 
51223diff
changeset | 50 | |
| 48678 
ff27af15530c
queue ordering by descending outdegree and timeout;
 wenzelm parents: 
48676diff
changeset | 51 | 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 | 52 |           outdegree(name2) compare outdegree(name1) match {
 | 
| 48678 
ff27af15530c
queue ordering by descending outdegree and timeout;
 wenzelm parents: 
48676diff
changeset | 53 | 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 | 54 |               compare_timing(name2, name1) match {
 | 
| 51220 | 55 | case 0 => | 
| 61602 | 56 |                   tree(name2).timeout compare tree(name1).timeout match {
 | 
| 51220 | 57 | case 0 => name1 compare name2 | 
| 58 | case ord => ord | |
| 59 | } | |
| 48678 
ff27af15530c
queue ordering by descending outdegree and timeout;
 wenzelm parents: 
48676diff
changeset | 60 | case ord => ord | 
| 
ff27af15530c
queue ordering by descending outdegree and timeout;
 wenzelm parents: 
48676diff
changeset | 61 | } | 
| 
ff27af15530c
queue ordering by descending outdegree and timeout;
 wenzelm parents: 
48676diff
changeset | 62 | case ord => ord | 
| 
ff27af15530c
queue ordering by descending outdegree and timeout;
 wenzelm parents: 
48676diff
changeset | 63 | } | 
| 
ff27af15530c
queue ordering by descending outdegree and timeout;
 wenzelm parents: 
48676diff
changeset | 64 | } | 
| 
ff27af15530c
queue ordering by descending outdegree and timeout;
 wenzelm parents: 
48676diff
changeset | 65 | |
| 51220 | 66 | 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 | 67 | } | 
| 
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
 wenzelm parents: 
48675diff
changeset | 68 | } | 
| 
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
 wenzelm parents: 
48675diff
changeset | 69 | |
| 62631 | 70 | private final class Queue private( | 
| 71 | graph: Graph[String, Sessions.Info], | |
| 51220 | 72 | order: SortedSet[String], | 
| 73 | 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 | 74 |   {
 | 
| 
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
 wenzelm parents: 
48675diff
changeset | 75 | 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 | 76 | |
| 
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
 wenzelm parents: 
48675diff
changeset | 77 | 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 | 78 | |
| 51227 
88c96e836ed6
prefer comparison of session timing, if this is known already;
 wenzelm parents: 
51223diff
changeset | 79 | def - (name: String): Queue = | 
| 
88c96e836ed6
prefer comparison of session timing, if this is known already;
 wenzelm parents: 
51223diff
changeset | 80 | new Queue(graph.del_node(name), | 
| 
88c96e836ed6
prefer comparison of session timing, if this is known already;
 wenzelm parents: 
51223diff
changeset | 81 | order - name, // FIXME scala-2.10.0 TreeSet problem!? | 
| 
88c96e836ed6
prefer comparison of session timing, if this is known already;
 wenzelm parents: 
51223diff
changeset | 82 | command_timings) | 
| 48676 
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
 wenzelm parents: 
48675diff
changeset | 83 | |
| 62631 | 84 | def dequeue(skip: String => Boolean): Option[(String, Sessions.Info)] = | 
| 48676 
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
 wenzelm parents: 
48675diff
changeset | 85 |     {
 | 
| 51227 
88c96e836ed6
prefer comparison of session timing, if this is known already;
 wenzelm parents: 
51223diff
changeset | 86 | val it = order.iterator.dropWhile(name => | 
| 
88c96e836ed6
prefer comparison of session timing, if this is known already;
 wenzelm parents: 
51223diff
changeset | 87 | skip(name) | 
| 
88c96e836ed6
prefer comparison of session timing, if this is known already;
 wenzelm parents: 
51223diff
changeset | 88 | || !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 | 89 | || !graph.is_minimal(name)) | 
| 48680 | 90 |       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 | 91 | else None | 
| 
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
 wenzelm parents: 
48675diff
changeset | 92 | } | 
| 
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
 wenzelm parents: 
48675diff
changeset | 93 | } | 
| 
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
 wenzelm parents: 
48675diff
changeset | 94 | |
| 
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
 wenzelm parents: 
48675diff
changeset | 95 | |
| 48710 
5b51ccdc8623
prefer static Build.session_content for loaded theories -- discontinued incremental protocol;
 wenzelm parents: 
48708diff
changeset | 96 | /* source dependencies and static content */ | 
| 48422 
9613780a805b
determine source dependencies, relatively to preloaded theories;
 wenzelm parents: 
48421diff
changeset | 97 | |
| 48710 
5b51ccdc8623
prefer static Build.session_content for loaded theories -- discontinued incremental protocol;
 wenzelm parents: 
48708diff
changeset | 98 | sealed case class Session_Content( | 
| 48422 
9613780a805b
determine source dependencies, relatively to preloaded theories;
 wenzelm parents: 
48421diff
changeset | 99 | 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 | 100 | 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 | 101 | keywords: Thy_Header.Keywords, | 
| 48660 
730ca503e955
static outer syntax based on session specifications;
 wenzelm parents: 
48650diff
changeset | 102 | syntax: Outer_Syntax, | 
| 59444 | 103 | sources: List[(Path, SHA1.Digest)], | 
| 104 | session_graph: Graph_Display.Graph) | |
| 48422 
9613780a805b
determine source dependencies, relatively to preloaded theories;
 wenzelm parents: 
48421diff
changeset | 105 | |
| 48710 
5b51ccdc8623
prefer static Build.session_content for loaded theories -- discontinued incremental protocol;
 wenzelm parents: 
48708diff
changeset | 106 | 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 | 107 |   {
 | 
| 48583 | 108 | def is_empty: Boolean = deps.isEmpty | 
| 48710 
5b51ccdc8623
prefer static Build.session_content for loaded theories -- discontinued incremental protocol;
 wenzelm parents: 
48708diff
changeset | 109 | 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 | 110 | 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 | 111 | } | 
| 
0ccf143a2a69
maintain set of source digests, including relevant parts of session entry;
 wenzelm parents: 
48422diff
changeset | 112 | |
| 59891 
9ce697050455
added isabelle build option -k, for fast off-line checking of theory sources;
 wenzelm parents: 
59811diff
changeset | 113 | def dependencies( | 
| 
9ce697050455
added isabelle build option -k, for fast off-line checking of theory sources;
 wenzelm parents: 
59811diff
changeset | 114 | progress: Progress = Ignore_Progress, | 
| 
9ce697050455
added isabelle build option -k, for fast off-line checking of theory sources;
 wenzelm parents: 
59811diff
changeset | 115 | inlined_files: Boolean = false, | 
| 
9ce697050455
added isabelle build option -k, for fast off-line checking of theory sources;
 wenzelm parents: 
59811diff
changeset | 116 | verbose: Boolean = false, | 
| 
9ce697050455
added isabelle build option -k, for fast off-line checking of theory sources;
 wenzelm parents: 
59811diff
changeset | 117 | list_files: Boolean = false, | 
| 
9ce697050455
added isabelle build option -k, for fast off-line checking of theory sources;
 wenzelm parents: 
59811diff
changeset | 118 | check_keywords: Set[String] = Set.empty, | 
| 62631 | 119 | tree: Sessions.Tree): Deps = | 
| 48710 
5b51ccdc8623
prefer static Build.session_content for loaded theories -- discontinued incremental protocol;
 wenzelm parents: 
48708diff
changeset | 120 | Deps((Map.empty[String, Session_Content] /: tree.topological_order)( | 
| 48422 
9613780a805b
determine source dependencies, relatively to preloaded theories;
 wenzelm parents: 
48421diff
changeset | 121 |       { case (deps, (name, info)) =>
 | 
| 56668 
56335a8e2e8b
interruptible dependencies, which can take a few seconds;
 wenzelm parents: 
56667diff
changeset | 122 | if (progress.stopped) throw Exn.Interrupt() | 
| 
56335a8e2e8b
interruptible dependencies, which can take a few seconds;
 wenzelm parents: 
56667diff
changeset | 123 | |
| 54549 
2a3053472ec3
actually expose errors of cumulative theory dependencies;
 wenzelm parents: 
54514diff
changeset | 124 |           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 | 125 | 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 | 126 |               info.parent.map(deps(_)) match {
 | 
| 54549 
2a3053472ec3
actually expose errors of cumulative theory dependencies;
 wenzelm parents: 
54514diff
changeset | 127 | case None => | 
| 58928 
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
 wenzelm parents: 
58918diff
changeset | 128 | (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 | 129 | 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 | 130 | 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 | 131 | (parent.loaded_theories, parent.known_theories, parent.syntax) | 
| 54549 
2a3053472ec3
actually expose errors of cumulative theory dependencies;
 wenzelm parents: 
54514diff
changeset | 132 | } | 
| 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 | 133 | val resources = new Resources(loaded_theories0, known_theories0, syntax0) | 
| 56208 | 134 | val thy_info = new Thy_Info(resources) | 
| 48422 
9613780a805b
determine source dependencies, relatively to preloaded theories;
 wenzelm parents: 
48421diff
changeset | 135 | |
| 54549 
2a3053472ec3
actually expose errors of cumulative theory dependencies;
 wenzelm parents: 
54514diff
changeset | 136 |             if (verbose || list_files) {
 | 
| 
2a3053472ec3
actually expose errors of cumulative theory dependencies;
 wenzelm parents: 
54514diff
changeset | 137 | val groups = | 
| 
2a3053472ec3
actually expose errors of cumulative theory dependencies;
 wenzelm parents: 
54514diff
changeset | 138 | if (info.groups.isEmpty) "" | 
| 
2a3053472ec3
actually expose errors of cumulative theory dependencies;
 wenzelm parents: 
54514diff
changeset | 139 |                 else info.groups.mkString(" (", " ", ")")
 | 
| 
2a3053472ec3
actually expose errors of cumulative theory dependencies;
 wenzelm parents: 
54514diff
changeset | 140 |               progress.echo("Session " + info.chapter + "/" + name + groups)
 | 
| 
2a3053472ec3
actually expose errors of cumulative theory dependencies;
 wenzelm parents: 
54514diff
changeset | 141 | } | 
| 48478 | 142 | |
| 54549 
2a3053472ec3
actually expose errors of cumulative theory dependencies;
 wenzelm parents: 
54514diff
changeset | 143 | 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 | 144 |             {
 | 
| 
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 | 145 | 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 | 146 |                 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 | 147 | 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 | 148 | 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 | 149 | (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 | 150 | 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 | 151 | }) | 
| 
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 | 152 | val thy_deps = thy_info.dependencies(name, root_theories) | 
| 48422 
9613780a805b
determine source dependencies, relatively to preloaded theories;
 wenzelm parents: 
48421diff
changeset | 153 | |
| 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 | 154 |               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 | 155 | 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 | 156 | 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 | 157 | } | 
| 54549 
2a3053472ec3
actually expose errors of cumulative theory dependencies;
 wenzelm parents: 
54514diff
changeset | 158 | } | 
| 51294 
0850d43cb355
discontinued obsolete header "files" -- these are loaded explicitly after exploring dependencies;
 wenzelm parents: 
51293diff
changeset | 159 | |
| 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 | 160 | 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 | 161 |               (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 | 162 | 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 | 163 |                 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 | 164 | 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 | 165 |                     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 | 166 | 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 | 167 | 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 | 168 | } | 
| 
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 | 169 | }) | 
| 
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 | 170 | |
| 54549 
2a3053472ec3
actually expose errors of cumulative theory dependencies;
 wenzelm parents: 
54514diff
changeset | 171 | val loaded_theories = thy_deps.loaded_theories | 
| 
2a3053472ec3
actually expose errors of cumulative theory dependencies;
 wenzelm parents: 
54514diff
changeset | 172 | val keywords = thy_deps.keywords | 
| 56393 
22f533e6a049
more abstract Prover.Syntax, as proposed by Carst Tankink;
 wenzelm parents: 
56392diff
changeset | 173 | val syntax = thy_deps.syntax.asInstanceOf[Outer_Syntax] | 
| 48660 
730ca503e955
static outer syntax based on session specifications;
 wenzelm parents: 
48650diff
changeset | 174 | |
| 59891 
9ce697050455
added isabelle build option -k, for fast off-line checking of theory sources;
 wenzelm parents: 
59811diff
changeset | 175 | val theory_files = thy_deps.deps.map(dep => Path.explode(dep.name.node)) | 
| 62866 
d20262cd20e8
read Pure file dependencies directly from ROOT.ML;
 wenzelm parents: 
62840diff
changeset | 176 | val loaded_files = | 
| 
d20262cd20e8
read Pure file dependencies directly from ROOT.ML;
 wenzelm parents: 
62840diff
changeset | 177 | if (inlined_files) | 
| 62883 | 178 | (if (Sessions.pure_name(name)) Sessions.pure_files(info.dir) else Nil) ::: | 
| 179 | thy_deps.loaded_files | |
| 62866 
d20262cd20e8
read Pure file dependencies directly from ROOT.ML;
 wenzelm parents: 
62840diff
changeset | 180 | else Nil | 
| 48903 | 181 | |
| 54549 
2a3053472ec3
actually expose errors of cumulative theory dependencies;
 wenzelm parents: 
54514diff
changeset | 182 | val all_files = | 
| 59891 
9ce697050455
added isabelle build option -k, for fast off-line checking of theory sources;
 wenzelm parents: 
59811diff
changeset | 183 | (theory_files ::: loaded_files ::: | 
| 56533 
cd8b6d849b6a
explicit 'document_files' in session ROOT specifications;
 wenzelm parents: 
56464diff
changeset | 184 | info.files.map(file => info.dir + file) ::: | 
| 
cd8b6d849b6a
explicit 'document_files' in session ROOT specifications;
 wenzelm parents: 
56464diff
changeset | 185 | 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 | 186 | |
| 56824 
5ae68f53b7c2
discontinued adhoc check (see also ea8343187225);
 wenzelm parents: 
56801diff
changeset | 187 | if (list_files) | 
| 54549 
2a3053472ec3
actually expose errors of cumulative theory dependencies;
 wenzelm parents: 
54514diff
changeset | 188 |               progress.echo(cat_lines(all_files.map(_.implode).sorted.map("  " + _)))
 | 
| 
2a3053472ec3
actually expose errors of cumulative theory dependencies;
 wenzelm parents: 
54514diff
changeset | 189 | |
| 59895 | 190 | if (check_keywords.nonEmpty) | 
| 191 | 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 | 192 | |
| 54549 
2a3053472ec3
actually expose errors of cumulative theory dependencies;
 wenzelm parents: 
54514diff
changeset | 193 | val sources = all_files.map(p => (p, SHA1.digest(p.file))) | 
| 48903 | 194 | |
| 60077 | 195 | val session_graph = | 
| 196 | Present.session_graph(info.parent getOrElse "", loaded_theories0, thy_deps.deps) | |
| 59444 | 197 | |
| 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 | 198 | val content = | 
| 59444 | 199 | Session_Content(loaded_theories, known_theories, keywords, syntax, | 
| 200 | 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 | 201 | deps + (name -> content) | 
| 54549 
2a3053472ec3
actually expose errors of cumulative theory dependencies;
 wenzelm parents: 
54514diff
changeset | 202 | } | 
| 
2a3053472ec3
actually expose errors of cumulative theory dependencies;
 wenzelm parents: 
54514diff
changeset | 203 |           catch {
 | 
| 
2a3053472ec3
actually expose errors of cumulative theory dependencies;
 wenzelm parents: 
54514diff
changeset | 204 | case ERROR(msg) => | 
| 
2a3053472ec3
actually expose errors of cumulative theory dependencies;
 wenzelm parents: 
54514diff
changeset | 205 | cat_error(msg, "The error(s) above occurred in session " + | 
| 
2a3053472ec3
actually expose errors of cumulative theory dependencies;
 wenzelm parents: 
54514diff
changeset | 206 | quote(name) + Position.here(info.pos)) | 
| 
2a3053472ec3
actually expose errors of cumulative theory dependencies;
 wenzelm parents: 
54514diff
changeset | 207 | } | 
| 48423 
0ccf143a2a69
maintain set of source digests, including relevant parts of session entry;
 wenzelm parents: 
48422diff
changeset | 208 | })) | 
| 48422 
9613780a805b
determine source dependencies, relatively to preloaded theories;
 wenzelm parents: 
48421diff
changeset | 209 | |
| 52439 
4cf3f6153eb8
improved "isabelle keywords" and "isabelle update_keywords" based on Isabelle/Scala, without requiring to build sessions first;
 wenzelm parents: 
52115diff
changeset | 210 | 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 | 211 | options: Options, | 
| 
4cf3f6153eb8
improved "isabelle keywords" and "isabelle update_keywords" based on Isabelle/Scala, without requiring to build sessions first;
 wenzelm parents: 
52115diff
changeset | 212 | 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 | 213 | 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 | 214 | sessions: List[String]): Deps = | 
| 48710 
5b51ccdc8623
prefer static Build.session_content for loaded theories -- discontinued incremental protocol;
 wenzelm parents: 
48708diff
changeset | 215 |   {
 | 
| 62635 | 216 | val (_, tree) = Sessions.load(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 | 217 | dependencies(inlined_files = inlined_files, tree = tree) | 
| 48710 
5b51ccdc8623
prefer static Build.session_content for loaded theories -- discontinued incremental protocol;
 wenzelm parents: 
48708diff
changeset | 218 | } | 
| 
5b51ccdc8623
prefer static Build.session_content for loaded theories -- discontinued incremental protocol;
 wenzelm parents: 
48708diff
changeset | 219 | |
| 52439 
4cf3f6153eb8
improved "isabelle keywords" and "isabelle update_keywords" based on Isabelle/Scala, without requiring to build sessions first;
 wenzelm parents: 
52115diff
changeset | 220 | 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 | 221 | options: Options, | 
| 
4cf3f6153eb8
improved "isabelle keywords" and "isabelle update_keywords" based on Isabelle/Scala, without requiring to build sessions first;
 wenzelm parents: 
52115diff
changeset | 222 | 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 | 223 | 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 | 224 | 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 | 225 |   {
 | 
| 
4cf3f6153eb8
improved "isabelle keywords" and "isabelle update_keywords" based on Isabelle/Scala, without requiring to build sessions first;
 wenzelm parents: 
52115diff
changeset | 226 | 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 | 227 | } | 
| 
4cf3f6153eb8
improved "isabelle keywords" and "isabelle update_keywords" based on Isabelle/Scala, without requiring to build sessions first;
 wenzelm parents: 
52115diff
changeset | 228 | |
| 
4cf3f6153eb8
improved "isabelle keywords" and "isabelle update_keywords" based on Isabelle/Scala, without requiring to build sessions first;
 wenzelm parents: 
52115diff
changeset | 229 | 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 | 230 | session_content(options, false, Nil, session).syntax | 
| 48710 
5b51ccdc8623
prefer static Build.session_content for loaded theories -- discontinued incremental protocol;
 wenzelm parents: 
48708diff
changeset | 231 | |
| 48422 
9613780a805b
determine source dependencies, relatively to preloaded theories;
 wenzelm parents: 
48421diff
changeset | 232 | |
| 48424 | 233 | /* jobs */ | 
| 48341 | 234 | |
| 62637 
0189fe0f6452
support for Poly/ML heap hierarchy, which saves a lot of disk space;
 wenzelm parents: 
62636diff
changeset | 235 | private class Job(progress: Progress, name: String, val info: Sessions.Info, tree: Sessions.Tree, | 
| 62633 | 236 | store: Sessions.Store, do_output: Boolean, verbose: Boolean, | 
| 237 | session_graph: Graph_Display.Graph, command_timings: List[Properties.T]) | |
| 48418 | 238 |   {
 | 
| 62633 | 239 | val output = store.output_dir + Path.basic(name) | 
| 48674 | 240 | def output_path: Option[Path] = if (do_output) Some(output) else None | 
| 62630 | 241 | def output_save_state: String = | 
| 62825 
e6e80a8bf624
structure PolyML is sealed after bootstrap: all ML system access is managed by Isabelle;
 wenzelm parents: 
62714diff
changeset | 242 | if (do_output) "ML_Heap.save_child " + ML_Syntax.print_string0(File.platform_path(output)) | 
| 62630 | 243 | else "" | 
| 62633 | 244 | output.file.delete | 
| 48674 | 245 | |
| 246 |     private val parent = info.parent.getOrElse("")
 | |
| 48418 | 247 | |
| 59445 | 248 |     private val graph_file = Isabelle_System.tmp_file("session_graph", "pdf")
 | 
| 249 |     try { isabelle.graphview.Graph_File.write(info.options, graph_file, session_graph) }
 | |
| 250 |     catch { case ERROR(_) => /*error should be exposed in ML*/ }
 | |
| 251 | ||
| 62610 
4c89504c76fb
more uniform signature for various process invocations;
 wenzelm parents: 
62603diff
changeset | 252 | private val env = | 
| 
4c89504c76fb
more uniform signature for various process invocations;
 wenzelm parents: 
62603diff
changeset | 253 | Isabelle_System.settings() + | 
| 
4c89504c76fb
more uniform signature for various process invocations;
 wenzelm parents: 
62603diff
changeset | 254 |         ("ISABELLE_ML_DEBUGGER" -> info.options.bool("ML_debugger").toString)
 | 
| 48698 
2585042b1a30
pass Isabelle/Scala system options into ML process of Isar tty or build jobs;
 wenzelm parents: 
48684diff
changeset | 255 | |
| 62573 | 256 | private val future_result: Future[Process_Result] = | 
| 61559 
313eca3fa847
more direct task future implementation, with proper cancel operation;
 wenzelm parents: 
61556diff
changeset | 257 |       Future.thread("build") {
 | 
| 62573 | 258 | val process = | 
| 62883 | 259 |           if (Sessions.pure_name(name)) {
 | 
| 260 |             val roots = Sessions.pure_roots.flatMap(root => List("--use", File.platform_path(root)))
 | |
| 62573 | 261 | val eval = | 
| 262 | "Command_Line.tool0 (fn () => (Session.finish (); Options.reset_default ();" + | |
| 62630 | 263 | " Session.shutdown (); ML_Heap.share_common_data (); " + output_save_state + "));" | 
| 62643 | 264 | ML_Process(info.options, | 
| 62883 | 265 |               raw_ml_system = true, args = roots ::: List("--eval", eval),
 | 
| 62637 
0189fe0f6452
support for Poly/ML heap hierarchy, which saves a lot of disk space;
 wenzelm parents: 
62636diff
changeset | 266 | cwd = info.dir.file, env = env, tree = Some(tree), store = store) | 
| 62573 | 267 | } | 
| 268 |           else {
 | |
| 62603 | 269 |             val args_file = Isabelle_System.tmp_file("build")
 | 
| 270 | File.write(args_file, YXML.string_of_body( | |
| 62599 
f35858c831e5
clarified session build options: already provided by ML_Process;
 wenzelm parents: 
62596diff
changeset | 271 |                 {
 | 
| 
f35858c831e5
clarified session build options: already provided by ML_Process;
 wenzelm parents: 
62596diff
changeset | 272 | val theories = info.theories.map(x => (x._2, x._3)) | 
| 
f35858c831e5
clarified session build options: already provided by ML_Process;
 wenzelm parents: 
62596diff
changeset | 273 | import XML.Encode._ | 
| 62630 | 274 | pair(list(pair(string, int)), pair(list(properties), pair(bool, pair(bool, | 
| 62599 
f35858c831e5
clarified session build options: already provided by ML_Process;
 wenzelm parents: 
62596diff
changeset | 275 | pair(Path.encode, pair(list(pair(Path.encode, Path.encode)), pair(string, | 
| 
f35858c831e5
clarified session build options: already provided by ML_Process;
 wenzelm parents: 
62596diff
changeset | 276 | pair(string, pair(string, pair(string, | 
| 
f35858c831e5
clarified session build options: already provided by ML_Process;
 wenzelm parents: 
62596diff
changeset | 277 | list(pair(Options.encode, list(Path.encode)))))))))))))( | 
| 62630 | 278 | (Symbol.codes, (command_timings, (do_output, (verbose, | 
| 62633 | 279 | (store.browser_info, (info.document_files, (File.standard_path(graph_file), | 
| 62599 
f35858c831e5
clarified session build options: already provided by ML_Process;
 wenzelm parents: 
62596diff
changeset | 280 | (parent, (info.chapter, (name, | 
| 
f35858c831e5
clarified session build options: already provided by ML_Process;
 wenzelm parents: 
62596diff
changeset | 281 | theories))))))))))) | 
| 
f35858c831e5
clarified session build options: already provided by ML_Process;
 wenzelm parents: 
62596diff
changeset | 282 | })) | 
| 62630 | 283 | val eval = | 
| 284 |               "Command_Line.tool0 (fn () => (" +
 | |
| 62638 | 285 | "Build.build " + ML_Syntax.print_string0(File.standard_path(args_file)) + | 
| 62630 | 286 | (if (do_output) "; ML_Heap.share_common_data (); " + output_save_state | 
| 287 | else "") + "));" | |
| 62633 | 288 |             ML_Process(info.options, parent, List("--eval", eval), cwd = info.dir.file,
 | 
| 62637 
0189fe0f6452
support for Poly/ML heap hierarchy, which saves a lot of disk space;
 wenzelm parents: 
62636diff
changeset | 289 | env = env, tree = Some(tree), store = store, cleanup = () => args_file.delete) | 
| 62573 | 290 | } | 
| 291 | process.result( | |
| 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 | 292 | progress_stdout = (line: String) => | 
| 50847 | 293 |             Library.try_unprefix("\floading_theory = ", line) match {
 | 
| 294 | case Some(theory) => progress.theory(name, theory) | |
| 295 | 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 | 296 | }, | 
| 
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 | 297 | 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 | 298 |             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 | 299 | 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 | 300 | 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 | 301 | }, | 
| 
d06ff36b4fa7
expose interrupts more like ML version, but not in managed bash processes of Build;
 wenzelm parents: 
56861diff
changeset | 302 | strict = false) | 
| 50845 | 303 | } | 
| 48674 | 304 | |
| 62572 | 305 | def terminate: Unit = future_result.cancel | 
| 306 | def is_finished: Boolean = future_result.is_finished | |
| 48674 | 307 | |
| 62569 | 308 | @volatile private var was_timeout = false | 
| 56779 | 309 | private val timeout_request: Option[Event_Timer.Request] = | 
| 310 |     {
 | |
| 62569 | 311 | if (info.timeout > Time.zero) | 
| 312 |         Some(Event_Timer.request(Time.now() + info.timeout) { terminate; was_timeout = true })
 | |
| 48674 | 313 | else None | 
| 56779 | 314 | } | 
| 48674 | 315 | |
| 62400 | 316 | def join: Process_Result = | 
| 50845 | 317 |     {
 | 
| 62572 | 318 | val result = future_result.join | 
| 50845 | 319 | |
| 62883 | 320 | if (result.ok && !Sessions.pure_name(name)) | 
| 62633 | 321 | Present.finish(progress, store.browser_info, graph_file, info, name) | 
| 61372 | 322 | |
| 59445 | 323 | graph_file.delete | 
| 56779 | 324 | timeout_request.foreach(_.cancel) | 
| 48674 | 325 | |
| 62572 | 326 |       if (result.interrupted) {
 | 
| 327 |         if (was_timeout) result.error(Output.error_text("Timeout")).was_timeout
 | |
| 328 |         else result.error(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 | 329 | } | 
| 62572 | 330 | else result | 
| 48674 | 331 | } | 
| 48364 | 332 | } | 
| 333 | ||
| 48424 | 334 | |
| 51045 
630c0895d9d1
more efficient inlined properties, especially relevant for voluminous tasks trace;
 wenzelm parents: 
50982diff
changeset | 335 | /* inlined properties (YXML) */ | 
| 50946 
8ad3e376f63e
tuned signature (again) -- keep Properties more generic;
 wenzelm parents: 
50893diff
changeset | 336 | |
| 
8ad3e376f63e
tuned signature (again) -- keep Properties more generic;
 wenzelm parents: 
50893diff
changeset | 337 | object Props | 
| 
8ad3e376f63e
tuned signature (again) -- keep Properties more generic;
 wenzelm parents: 
50893diff
changeset | 338 |   {
 | 
| 51045 
630c0895d9d1
more efficient inlined properties, especially relevant for voluminous tasks trace;
 wenzelm parents: 
50982diff
changeset | 339 | 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 | 340 | |
| 
8ad3e376f63e
tuned signature (again) -- keep Properties more generic;
 wenzelm parents: 
50893diff
changeset | 341 | def parse_lines(prefix: String, lines: List[String]): List[Properties.T] = | 
| 
8ad3e376f63e
tuned signature (again) -- keep Properties more generic;
 wenzelm parents: 
50893diff
changeset | 342 | for (line <- lines; s <- Library.try_unprefix(prefix, line)) yield parse(s) | 
| 
8ad3e376f63e
tuned signature (again) -- keep Properties more generic;
 wenzelm parents: 
50893diff
changeset | 343 | |
| 
8ad3e376f63e
tuned signature (again) -- keep Properties more generic;
 wenzelm parents: 
50893diff
changeset | 344 | def find_parse_line(prefix: String, lines: List[String]): Option[Properties.T] = | 
| 
8ad3e376f63e
tuned signature (again) -- keep Properties more generic;
 wenzelm parents: 
50893diff
changeset | 345 | lines.find(_.startsWith(prefix)).map(line => parse(line.substring(prefix.length))) | 
| 
8ad3e376f63e
tuned signature (again) -- keep Properties more generic;
 wenzelm parents: 
50893diff
changeset | 346 | } | 
| 
8ad3e376f63e
tuned signature (again) -- keep Properties more generic;
 wenzelm parents: 
50893diff
changeset | 347 | |
| 
8ad3e376f63e
tuned signature (again) -- keep Properties more generic;
 wenzelm parents: 
50893diff
changeset | 348 | |
| 50777 | 349 | /* log files */ | 
| 48504 
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
 wenzelm parents: 
48494diff
changeset | 350 | |
| 50982 | 351 | private val SESSION_NAME = "\fSession.name = " | 
| 50707 
5b2bf7611662
maintain session index on Scala side, for more determistic results;
 wenzelm parents: 
50686diff
changeset | 352 | |
| 50975 | 353 | sealed case class Log_Info( | 
| 51220 | 354 | name: String, | 
| 355 | stats: List[Properties.T], | |
| 356 | tasks: List[Properties.T], | |
| 357 | command_timings: List[Properties.T], | |
| 358 | session_timing: Properties.T) | |
| 50777 | 359 | |
| 51220 | 360 | def parse_log(full_stats: Boolean, text: String): Log_Info = | 
| 50777 | 361 |   {
 | 
| 362 | val lines = split_lines(text) | |
| 51223 | 363 | val xml_cache = new XML.Cache() | 
| 364 | def parse_lines(prfx: String): List[Properties.T] = | |
| 51663 | 365 | Props.parse_lines(prfx, lines).map(xml_cache.props(_)) | 
| 51223 | 366 | |
| 50982 | 367 | val name = | 
| 368 | lines.find(_.startsWith(SESSION_NAME)).map(_.substring(SESSION_NAME.length)) getOrElse "" | |
| 51223 | 369 |     val stats = if (full_stats) parse_lines("\fML_statistics = ") else Nil
 | 
| 370 |     val tasks = if (full_stats) parse_lines("\ftask_statistics = ") else Nil
 | |
| 371 |     val command_timings = parse_lines("\fcommand_timing = ")
 | |
| 51220 | 372 |     val session_timing = Props.find_parse_line("\fTiming = ", lines) getOrElse Nil
 | 
| 373 | Log_Info(name, stats, tasks, command_timings, session_timing) | |
| 50777 | 374 | } | 
| 375 | ||
| 376 | ||
| 377 | /* sources and heaps */ | |
| 378 | ||
| 62628 | 379 | private val SOURCES = "sources: " | 
| 380 | private val INPUT_HEAP = "input_heap: " | |
| 381 | private val OUTPUT_HEAP = "output_heap: " | |
| 382 | private val LOG_START = "log:" | |
| 383 | private val line_prefixes = List(SOURCES, INPUT_HEAP, OUTPUT_HEAP, LOG_START) | |
| 48504 
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
 wenzelm parents: 
48494diff
changeset | 384 | |
| 62628 | 385 | private def sources_stamp(digests: List[SHA1.Digest]): String = | 
| 386 | digests.map(_.toString).sorted.mkString(SOURCES, " ", "") | |
| 48639 
675988e64bf9
store parent heap stamp as well -- needs to be propagated through the build hierarchy;
 wenzelm parents: 
48626diff
changeset | 387 | |
| 62628 | 388 | private def read_stamps(path: Path): Option[(String, List[String], List[String])] = | 
| 48639 
675988e64bf9
store parent heap stamp as well -- needs to be propagated through the build hierarchy;
 wenzelm parents: 
48626diff
changeset | 389 |     if (path.is_file) {
 | 
| 62628 | 390 | val stream = new GZIPInputStream(new BufferedInputStream(new FileInputStream(path.file))) | 
| 50203 | 391 | val reader = new BufferedReader(new InputStreamReader(stream, UTF8.charset)) | 
| 62628 | 392 | val lines = | 
| 393 |       {
 | |
| 394 | val lines = new mutable.ListBuffer[String] | |
| 395 |         try {
 | |
| 396 | var finished = false | |
| 397 |           while (!finished) {
 | |
| 398 | val line = reader.readLine | |
| 399 | if (line != null && line_prefixes.exists(line.startsWith(_))) | |
| 400 | lines += line | |
| 401 | else finished = true | |
| 402 | } | |
| 403 | } | |
| 48639 
675988e64bf9
store parent heap stamp as well -- needs to be propagated through the build hierarchy;
 wenzelm parents: 
48626diff
changeset | 404 |         finally { reader.close }
 | 
| 62628 | 405 | lines.toList | 
| 406 | } | |
| 407 | ||
| 408 |       if (!lines.isEmpty && lines.last.startsWith(LOG_START)) {
 | |
| 409 | lines.find(_.startsWith(SOURCES)).map(s => | |
| 410 | (s, lines.filter(_.startsWith(INPUT_HEAP)), lines.filter(_.startsWith(OUTPUT_HEAP)))) | |
| 411 | } | |
| 48504 
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
 wenzelm parents: 
48494diff
changeset | 412 | else None | 
| 
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
 wenzelm parents: 
48494diff
changeset | 413 | } | 
| 
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
 wenzelm parents: 
48494diff
changeset | 414 | else None | 
| 
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
 wenzelm parents: 
48494diff
changeset | 415 | |
| 
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
 wenzelm parents: 
48494diff
changeset | 416 | |
| 62631 | 417 | |
| 62641 | 418 | /** build with results **/ | 
| 48424 | 419 | |
| 62641 | 420 | class Results private [Build](results: Map[String, Option[Process_Result]]) | 
| 62403 | 421 |   {
 | 
| 422 | def sessions: Set[String] = results.keySet | |
| 423 | def cancelled(name: String): Boolean = results(name).isEmpty | |
| 62406 | 424 | def apply(name: String): Process_Result = results(name).getOrElse(Process_Result(1)) | 
| 62403 | 425 |     val rc = (0 /: results.iterator.map({ case (_, Some(r)) => r.rc case (_, None) => 1 }))(_ max _)
 | 
| 62641 | 426 | def ok: Boolean = rc == 0 | 
| 62406 | 427 | |
| 428 | override def toString: String = rc.toString | |
| 62403 | 429 | } | 
| 430 | ||
| 62641 | 431 | def build( | 
| 50404 
898cac1dad5e
avoid startup within GUI thread -- it is only required later for dialog;
 wenzelm parents: 
50367diff
changeset | 432 | options: Options, | 
| 52115 | 433 | progress: Progress = Ignore_Progress, | 
| 49131 | 434 | requirements: Boolean = false, | 
| 48509 | 435 | all_sessions: Boolean = false, | 
| 48511 
37999ee01156
remove old output heaps, to ensure that result is valid wrt. check_stamps;
 wenzelm parents: 
48509diff
changeset | 436 | build_heap: Boolean = false, | 
| 48595 | 437 | clean_build: Boolean = false, | 
| 56890 | 438 | dirs: List[Path] = Nil, | 
| 439 | select_dirs: List[Path] = Nil, | |
| 60106 | 440 | exclude_session_groups: List[String] = Nil, | 
| 48509 | 441 | session_groups: List[String] = Nil, | 
| 442 | max_jobs: Int = 1, | |
| 48903 | 443 | list_files: Boolean = false, | 
| 59891 
9ce697050455
added isabelle build option -k, for fast off-line checking of theory sources;
 wenzelm parents: 
59811diff
changeset | 444 | check_keywords: Set[String] = Set.empty, | 
| 48509 | 445 | no_build: Boolean = false, | 
| 446 | system_mode: Boolean = false, | |
| 447 | verbose: Boolean = false, | |
| 59892 
2a616319c171
added isabelle build option -x, to exclude sessions;
 wenzelm parents: 
59891diff
changeset | 448 | exclude_sessions: List[String] = Nil, | 
| 62641 | 449 | sessions: List[String] = Nil): Results = | 
| 48341 | 450 |   {
 | 
| 51220 | 451 | /* session tree and dependencies */ | 
| 452 | ||
| 62714 | 453 |     val build_options = options.int.update("completion_limit", 0).bool.update("ML_statistics", true)
 | 
| 454 | val full_tree = Sessions.load(build_options, dirs, select_dirs) | |
| 49131 | 455 | val (selected, selected_tree) = | 
| 60106 | 456 | full_tree.selection(requirements, all_sessions, | 
| 457 | exclude_session_groups, exclude_sessions, session_groups, sessions) | |
| 49131 | 458 | |
| 59891 
9ce697050455
added isabelle build option -k, for fast off-line checking of theory sources;
 wenzelm parents: 
59811diff
changeset | 459 | val deps = dependencies(progress, true, verbose, list_files, check_keywords, selected_tree) | 
| 48368 | 460 | |
| 62628 | 461 | def session_sources_stamp(name: String): String = | 
| 62631 | 462 | sources_stamp(selected_tree(name).meta_digest :: deps.sources(name)) | 
| 48504 
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
 wenzelm parents: 
48494diff
changeset | 463 | |
| 62632 | 464 | val store = Sessions.store(system_mode) | 
| 51220 | 465 | |
| 466 | ||
| 467 | /* queue with scheduling information */ | |
| 468 | ||
| 51230 
19192615911e
option parallel_proofs_reuse_timing controls reuse of log information -- since it is not always beneficial for performance;
 wenzelm parents: 
51229diff
changeset | 469 | def load_timings(name: String): (List[Properties.T], Double) = | 
| 51221 | 470 |     {
 | 
| 471 | val (path, text) = | |
| 62632 | 472 |         store.find_log_gz(name) match {
 | 
| 473 | case Some(path) => (path, File.read_gzip(path)) | |
| 51221 | 474 | case None => | 
| 62632 | 475 |             store.find_log(name) match {
 | 
| 476 | case Some(path) => (path, File.read(path)) | |
| 51221 | 477 | case None => (Path.current, "") | 
| 478 | } | |
| 479 | } | |
| 51244 
d8ca566b22b3
more robust load_timings: ignore XML.Decode errors as well;
 wenzelm parents: 
51230diff
changeset | 480 | |
| 
d8ca566b22b3
more robust load_timings: ignore XML.Decode errors as well;
 wenzelm parents: 
51230diff
changeset | 481 | def ignore_error(msg: String): (List[Properties.T], Double) = | 
| 
d8ca566b22b3
more robust load_timings: ignore XML.Decode errors as well;
 wenzelm parents: 
51230diff
changeset | 482 |       {
 | 
| 56782 
433cf57550fa
more systematic Isabelle output, like in classic Isabelle/ML (without markup);
 wenzelm parents: 
56780diff
changeset | 483 |         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 | 484 | (Nil, 0.0) | 
| 
d8ca566b22b3
more robust load_timings: ignore XML.Decode errors as well;
 wenzelm parents: 
51230diff
changeset | 485 | } | 
| 
d8ca566b22b3
more robust load_timings: ignore XML.Decode errors as well;
 wenzelm parents: 
51230diff
changeset | 486 | |
| 51221 | 487 |       try {
 | 
| 488 | val info = parse_log(false, text) | |
| 489 | val session_timing = Markup.Elapsed.unapply(info.session_timing) getOrElse 0.0 | |
| 490 | (info.command_timings, session_timing) | |
| 51220 | 491 | } | 
| 51221 | 492 |       catch {
 | 
| 51244 
d8ca566b22b3
more robust load_timings: ignore XML.Decode errors as well;
 wenzelm parents: 
51230diff
changeset | 493 | case ERROR(msg) => ignore_error(msg) | 
| 51986 
5fdca5bfc0b4
more robust load_timings: ignore JVM errors such as java.lang.OutOfMemoryError;
 wenzelm parents: 
51983diff
changeset | 494 | case exn: java.lang.Error => ignore_error(Exn.message(exn)) | 
| 51987 | 495 |         case _: XML.Error => ignore_error("")
 | 
| 51221 | 496 | } | 
| 497 | } | |
| 51220 | 498 | |
| 51230 
19192615911e
option parallel_proofs_reuse_timing controls reuse of log information -- since it is not always beneficial for performance;
 wenzelm parents: 
51229diff
changeset | 499 | val queue = Queue(selected_tree, load_timings) | 
| 51220 | 500 | |
| 501 | ||
| 502 | /* main build process */ | |
| 503 | ||
| 62632 | 504 | store.prepare_output() | 
| 48373 | 505 | |
| 48595 | 506 | // optional cleanup | 
| 507 |     if (clean_build) {
 | |
| 49131 | 508 |       for (name <- full_tree.graph.all_succs(selected)) {
 | 
| 48595 | 509 | val files = | 
| 62632 | 510 | List(Path.basic(name), Sessions.log(name), Sessions.log_gz(name)). | 
| 511 | map(store.output_dir + _).filter(_.is_file) | |
| 59319 | 512 |         if (files.nonEmpty) progress.echo("Cleaning " + name + " ...")
 | 
| 50366 | 513 | if (!files.forall(p => p.file.delete)) progress.echo(name + " FAILED to delete") | 
| 48595 | 514 | } | 
| 515 | } | |
| 516 | ||
| 48425 | 517 | // scheduler loop | 
| 62636 | 518 | case class Result(current: Boolean, heap_stamp: Option[String], process: Option[Process_Result]) | 
| 62402 | 519 |     {
 | 
| 520 | def ok: Boolean = | |
| 521 |         process match {
 | |
| 522 | case None => false | |
| 523 | case Some(res) => res.rc == 0 | |
| 524 | } | |
| 525 | } | |
| 48639 
675988e64bf9
store parent heap stamp as well -- needs to be propagated through the build hierarchy;
 wenzelm parents: 
48626diff
changeset | 526 | |
| 56837 
5a598f1eecfd
more robust interrupt handling for Scala_Console, which uses JVM Thread.interrupt instead of POSIX SIGINT;
 wenzelm parents: 
56831diff
changeset | 527 | def sleep() | 
| 
5a598f1eecfd
more robust interrupt handling for Scala_Console, which uses JVM Thread.interrupt instead of POSIX SIGINT;
 wenzelm parents: 
56831diff
changeset | 528 |     {
 | 
| 
5a598f1eecfd
more robust interrupt handling for Scala_Console, which uses JVM Thread.interrupt instead of POSIX SIGINT;
 wenzelm parents: 
56831diff
changeset | 529 |       try { Thread.sleep(500) }
 | 
| 56861 | 530 |       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 | 531 | } | 
| 50366 | 532 | |
| 48425 | 533 | @tailrec def loop( | 
| 48676 
3ef82491cdd6
clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
 wenzelm parents: 
48675diff
changeset | 534 | pending: Queue, | 
| 62628 | 535 | running: Map[String, (List[String], Job)], | 
| 48639 
675988e64bf9
store parent heap stamp as well -- needs to be propagated through the build hierarchy;
 wenzelm parents: 
48626diff
changeset | 536 | results: Map[String, Result]): Map[String, Result] = | 
| 48425 | 537 |     {
 | 
| 538 | if (pending.is_empty) results | |
| 51253 | 539 |       else {
 | 
| 540 | if (progress.stopped) | |
| 541 | for ((_, (_, job)) <- running) job.terminate | |
| 542 | ||
| 48674 | 543 |         running.find({ case (_, (_, job)) => job.is_finished }) match {
 | 
| 62628 | 544 | case Some((name, (input_heaps, job))) => | 
| 50367 | 545 |             //{{{ finish job
 | 
| 48424 | 546 | |
| 62401 | 547 | val process_result = job.join | 
| 62573 | 548 | process_result.err_lines.foreach(progress.echo(_)) | 
| 549 | if (process_result.ok) | |
| 550 |               progress.echo("Finished " + name + " (" + process_result.timing.message_resources + ")")
 | |
| 48373 | 551 | |
| 62404 
13a0f537e232
retain tail out_lines as printed, but not the whole log content;
 wenzelm parents: 
62403diff
changeset | 552 | val process_result_tail = | 
| 
13a0f537e232
retain tail out_lines as printed, but not the whole log content;
 wenzelm parents: 
62403diff
changeset | 553 |             {
 | 
| 
13a0f537e232
retain tail out_lines as printed, but not the whole log content;
 wenzelm parents: 
62403diff
changeset | 554 |               val lines = process_result.out_lines.filterNot(_.startsWith("\f"))
 | 
| 62409 
e391528eff3b
proper option process_output_tail, more generous default;
 wenzelm parents: 
62406diff
changeset | 555 |               val tail = job.info.options.int("process_output_tail")
 | 
| 
e391528eff3b
proper option process_output_tail, more generous default;
 wenzelm parents: 
62406diff
changeset | 556 | val lines1 = if (tail == 0) lines else lines.drop(lines.length - tail max 0) | 
| 62632 | 557 | process_result.copy( | 
| 558 | out_lines = | |
| 559 | "(see also " + (store.output_dir + Sessions.log(name)).file.toString + ")" :: | |
| 560 | lines1) | |
| 62404 
13a0f537e232
retain tail out_lines as printed, but not the whole log content;
 wenzelm parents: 
62403diff
changeset | 561 | } | 
| 
13a0f537e232
retain tail out_lines as printed, but not the whole log content;
 wenzelm parents: 
62403diff
changeset | 562 | |
| 62636 | 563 | val heap_stamp = | 
| 62401 | 564 |               if (process_result.ok) {
 | 
| 62632 | 565 | (store.output_dir + Sessions.log(name)).file.delete | 
| 62636 | 566 | val heap_stamp = | 
| 62704 
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
 wenzelm parents: 
62643diff
changeset | 567 | for (path <- job.output_path if path.is_file) | 
| 
478b49f0d726
proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
 wenzelm parents: 
62643diff
changeset | 568 | yield Sessions.write_heap_digest(path) | 
| 48639 
675988e64bf9
store parent heap stamp as well -- needs to be propagated through the build hierarchy;
 wenzelm parents: 
48626diff
changeset | 569 | |
| 62632 | 570 | File.write_gzip(store.output_dir + Sessions.log_gz(name), | 
| 62628 | 571 | Library.terminate_lines( | 
| 572 | session_sources_stamp(name) :: | |
| 573 | input_heaps.map(INPUT_HEAP + _) ::: | |
| 62636 | 574 | heap_stamp.toList.map(OUTPUT_HEAP + _) ::: | 
| 62628 | 575 | List(LOG_START) ::: process_result.out_lines)) | 
| 48639 
675988e64bf9
store parent heap stamp as well -- needs to be propagated through the build hierarchy;
 wenzelm parents: 
48626diff
changeset | 576 | |
| 62636 | 577 | heap_stamp | 
| 48639 
675988e64bf9
store parent heap stamp as well -- needs to be propagated through the build hierarchy;
 wenzelm parents: 
48626diff
changeset | 578 | } | 
| 
675988e64bf9
store parent heap stamp as well -- needs to be propagated through the build hierarchy;
 wenzelm parents: 
48626diff
changeset | 579 |               else {
 | 
| 62632 | 580 | (store.output_dir + Path.basic(name)).file.delete | 
| 581 | (store.output_dir + Sessions.log_gz(name)).file.delete | |
| 48639 
675988e64bf9
store parent heap stamp as well -- needs to be propagated through the build hierarchy;
 wenzelm parents: 
48626diff
changeset | 582 | |
| 62632 | 583 | File.write(store.output_dir + Sessions.log(name), | 
| 584 | Library.terminate_lines(process_result.out_lines)) | |
| 50366 | 585 | progress.echo(name + " FAILED") | 
| 62404 
13a0f537e232
retain tail out_lines as printed, but not the whole log content;
 wenzelm parents: 
62403diff
changeset | 586 | if (!process_result.interrupted) progress.echo(process_result_tail.out) | 
| 48639 
675988e64bf9
store parent heap stamp as well -- needs to be propagated through the build hierarchy;
 wenzelm parents: 
48626diff
changeset | 587 | |
| 62636 | 588 | None | 
| 48639 
675988e64bf9
store parent heap stamp as well -- needs to be propagated through the build hierarchy;
 wenzelm parents: 
48626diff
changeset | 589 | } | 
| 50707 
5b2bf7611662
maintain session index on Scala side, for more determistic results;
 wenzelm parents: 
50686diff
changeset | 590 | loop(pending - name, running - name, | 
| 62636 | 591 | results + (name -> Result(false, heap_stamp, Some(process_result_tail)))) | 
| 50367 | 592 | //}}} | 
| 60215 | 593 | case None if running.size < (max_jobs max 1) => | 
| 50367 | 594 |             //{{{ check/start next job
 | 
| 48547 | 595 |             pending.dequeue(running.isDefinedAt(_)) match {
 | 
| 596 | case Some((name, info)) => | |
| 62628 | 597 | val ancestor_results = selected_tree.ancestors(name).map(results(_)) | 
| 62636 | 598 | val ancestor_heaps = ancestor_results.flatMap(_.heap_stamp) | 
| 62628 | 599 | |
| 62883 | 600 | val do_output = build_heap || Sessions.pure_name(name) || queue.is_inner(name) | 
| 48547 | 601 | |
| 62636 | 602 | val (current, heap_stamp) = | 
| 48547 | 603 |                 {
 | 
| 62632 | 604 |                   store.find(name) match {
 | 
| 62636 | 605 | case Some((log_gz, heap_stamp)) => | 
| 62632 | 606 |                       read_stamps(log_gz) match {
 | 
| 62628 | 607 | case Some((sources, input_heaps, output_heaps)) => | 
| 608 | val current = | |
| 609 | sources == session_sources_stamp(name) && | |
| 610 | input_heaps == ancestor_heaps.map(INPUT_HEAP + _) && | |
| 62636 | 611 | output_heaps == heap_stamp.toList.map(OUTPUT_HEAP + _) && | 
| 612 | !(do_output && heap_stamp.isEmpty) | |
| 613 | (current, heap_stamp) | |
| 614 | case None => (false, None) | |
| 48547 | 615 | } | 
| 62636 | 616 | case None => (false, None) | 
| 48504 
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
 wenzelm parents: 
48494diff
changeset | 617 | } | 
| 48547 | 618 | } | 
| 62628 | 619 | val all_current = current && ancestor_results.forall(_.current) | 
| 48528 
784c6f63d79c
proper all_current, which regards parent status as well;
 wenzelm parents: 
48511diff
changeset | 620 | |
| 48547 | 621 | if (all_current) | 
| 62402 | 622 | loop(pending - name, running, | 
| 62636 | 623 | results + (name -> Result(true, heap_stamp, Some(Process_Result(0))))) | 
| 48678 
ff27af15530c
queue ordering by descending outdegree and timeout;
 wenzelm parents: 
48676diff
changeset | 624 |                 else if (no_build) {
 | 
| 50366 | 625 |                   if (verbose) progress.echo("Skipping " + name + " ...")
 | 
| 62402 | 626 | loop(pending - name, running, | 
| 62636 | 627 | results + (name -> Result(false, heap_stamp, Some(Process_Result(1))))) | 
| 48678 
ff27af15530c
queue ordering by descending outdegree and timeout;
 wenzelm parents: 
48676diff
changeset | 628 | } | 
| 62628 | 629 |                 else if (ancestor_results.forall(_.ok) && !progress.stopped) {
 | 
| 50366 | 630 | progress.echo((if (do_output) "Building " else "Running ") + name + " ...") | 
| 51220 | 631 | val job = | 
| 62637 
0189fe0f6452
support for Poly/ML heap hierarchy, which saves a lot of disk space;
 wenzelm parents: 
62636diff
changeset | 632 | new Job(progress, name, info, selected_tree, store, do_output, verbose, | 
| 59445 | 633 | deps(name).session_graph, queue.command_timings(name)) | 
| 62628 | 634 | loop(pending, running + (name -> (ancestor_heaps, job)), results) | 
| 48547 | 635 | } | 
| 636 |                 else {
 | |
| 50366 | 637 | progress.echo(name + " CANCELLED") | 
| 62636 | 638 | loop(pending - name, running, results + (name -> Result(false, heap_stamp, None))) | 
| 48547 | 639 | } | 
| 640 | case None => sleep(); loop(pending, running, results) | |
| 48425 | 641 | } | 
| 50367 | 642 | ///}}} | 
| 48425 | 643 | case None => sleep(); loop(pending, running, results) | 
| 48373 | 644 | } | 
| 51253 | 645 | } | 
| 48425 | 646 | } | 
| 647 | ||
| 51220 | 648 | |
| 649 | /* build results */ | |
| 650 | ||
| 62641 | 651 | val results0 = | 
| 48583 | 652 |       if (deps.is_empty) {
 | 
| 56782 
433cf57550fa
more systematic Isabelle output, like in classic Isabelle/ML (without markup);
 wenzelm parents: 
56780diff
changeset | 653 |         progress.echo(Output.warning_text("Nothing to build"))
 | 
| 50707 
5b2bf7611662
maintain session index on Scala side, for more determistic results;
 wenzelm parents: 
50686diff
changeset | 654 | Map.empty[String, Result] | 
| 48583 | 655 | } | 
| 656 | else loop(queue, Map.empty, Map.empty) | |
| 657 | ||
| 62641 | 658 | val results = | 
| 659 | new Results((for ((name, result) <- results0.iterator) yield (name, result.process)).toMap) | |
| 660 | ||
| 661 |     if (results.rc != 0 && (verbose || !no_build)) {
 | |
| 662 | val unfinished = | |
| 663 |         (for {
 | |
| 664 | name <- results.sessions.iterator | |
| 665 | if !results(name).ok | |
| 666 | } yield name).toList.sorted | |
| 667 |       progress.echo("Unfinished session(s): " + commas(unfinished))
 | |
| 668 | } | |
| 669 | ||
| 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 | 670 | |
| 
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 | 671 | /* 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 | 672 | |
| 
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 | 673 |     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 | 674 | 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 | 675 |         (for {
 | 
| 62641 | 676 | (name, result) <- results0.iterator | 
| 62883 | 677 | if result.ok && !Sessions.pure_name(name) | 
| 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 | 678 | 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 | 679 |           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 | 680 | } 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 | 681 |             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 | 682 | |
| 
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 | 683 | for ((chapter, entries) <- browser_chapters) | 
| 62632 | 684 | Present.update_chapter_index(store.browser_info, chapter, entries) | 
| 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 | 685 | |
| 62632 | 686 | if (browser_chapters.nonEmpty) Present.make_global_index(store.browser_info) | 
| 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 | 687 | } | 
| 
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 | 688 | |
| 62641 | 689 | results | 
| 48341 | 690 | } | 
| 691 | ||
| 692 | ||
| 62833 | 693 | /* Isabelle tool wrapper */ | 
| 48341 | 694 | |
| 62833 | 695 |   val isabelle_tool = Isabelle_Tool("build", "build and manage Isabelle sessions", args =>
 | 
| 48341 | 696 |   {
 | 
| 62833 | 697 | def show_settings(): String = | 
| 698 | cat_lines(List( | |
| 699 | "ISABELLE_BUILD_OPTIONS=" + | |
| 700 |           quote(Isabelle_System.getenv("ISABELLE_BUILD_OPTIONS")),
 | |
| 701 | "", | |
| 702 |         "ML_PLATFORM=" + quote(Isabelle_System.getenv("ML_PLATFORM")),
 | |
| 703 |         "ML_HOME=" + quote(Isabelle_System.getenv("ML_HOME")),
 | |
| 704 |         "ML_SYSTEM=" + quote(Isabelle_System.getenv("ML_SYSTEM")),
 | |
| 705 |         "ML_OPTIONS=" + quote(Isabelle_System.getenv("ML_OPTIONS"))))
 | |
| 62590 | 706 | |
| 62833 | 707 |     val build_options = Word.explode(Isabelle_System.getenv("ISABELLE_BUILD_OPTIONS"))
 | 
| 62590 | 708 | |
| 62833 | 709 | var select_dirs: List[Path] = Nil | 
| 710 | var requirements = false | |
| 711 | var exclude_session_groups: List[String] = Nil | |
| 712 | var all_sessions = false | |
| 713 | var build_heap = false | |
| 714 | var clean_build = false | |
| 715 | var dirs: List[Path] = Nil | |
| 716 | var session_groups: List[String] = Nil | |
| 717 | var max_jobs = 1 | |
| 718 | var check_keywords: Set[String] = Set.empty | |
| 719 | var list_files = false | |
| 720 | var no_build = false | |
| 721 | var options = (Options.init() /: build_options)(_ + _) | |
| 722 | var system_mode = false | |
| 723 | var verbose = false | |
| 724 | var exclude_sessions: List[String] = Nil | |
| 62590 | 725 | |
| 62833 | 726 |     val getopts = Getopts("""
 | 
| 62590 | 727 | Usage: isabelle build [OPTIONS] [SESSIONS ...] | 
| 728 | ||
| 729 | Options are: | |
| 730 | -D DIR include session directory and select its sessions | |
| 731 | -R operate on requirements of selected sessions | |
| 732 | -X NAME exclude sessions from group NAME and all descendants | |
| 733 | -a select all sessions | |
| 734 | -b build heap images | |
| 735 | -c clean build | |
| 736 | -d DIR include session directory | |
| 737 | -g NAME select session group NAME | |
| 738 | -j INT maximum number of parallel jobs (default 1) | |
| 739 | -k KEYWORD check theory sources for conflicts with proposed keywords | |
| 740 | -l list session source files | |
| 741 | -n no build -- test dependencies only | |
| 742 | -o OPTION override Isabelle system OPTION (via NAME=VAL or NAME) | |
| 743 | -s system build mode: produce output in ISABELLE_HOME | |
| 744 | -v verbose | |
| 745 | -x NAME exclude session NAME and all descendants | |
| 746 | ||
| 62596 | 747 | Build and manage Isabelle sessions, depending on implicit settings: | 
| 748 | ||
| 62590 | 749 | """ + Library.prefix_lines("  ", show_settings()),
 | 
| 62833 | 750 | "D:" -> (arg => select_dirs = select_dirs ::: List(Path.explode(arg))), | 
| 751 | "R" -> (_ => requirements = true), | |
| 752 | "X:" -> (arg => exclude_session_groups = exclude_session_groups ::: List(arg)), | |
| 753 | "a" -> (_ => all_sessions = true), | |
| 754 | "b" -> (_ => build_heap = true), | |
| 755 | "c" -> (_ => clean_build = true), | |
| 756 | "d:" -> (arg => dirs = dirs ::: List(Path.explode(arg))), | |
| 757 | "g:" -> (arg => session_groups = session_groups ::: List(arg)), | |
| 758 | "j:" -> (arg => max_jobs = Properties.Value.Int.parse(arg)), | |
| 759 | "k:" -> (arg => check_keywords = check_keywords + arg), | |
| 760 | "l" -> (_ => list_files = true), | |
| 761 | "n" -> (_ => no_build = true), | |
| 762 | "o:" -> (arg => options = options + arg), | |
| 763 | "s" -> (_ => system_mode = true), | |
| 764 | "v" -> (_ => verbose = true), | |
| 765 | "x:" -> (arg => exclude_sessions = exclude_sessions ::: List(arg))) | |
| 62590 | 766 | |
| 62833 | 767 | val sessions = getopts(args) | 
| 62590 | 768 | |
| 62833 | 769 | val progress = new Console_Progress(verbose) | 
| 62590 | 770 | |
| 62833 | 771 |     if (verbose) {
 | 
| 772 | progress.echo( | |
| 773 | Library.trim_line( | |
| 774 | Isabelle_System.bash( | |
| 775 | """echo "Started at $(date) ($ML_IDENTIFIER on $(hostname))" """).out) + "\n") | |
| 776 | progress.echo(show_settings() + "\n") | |
| 777 | } | |
| 62590 | 778 | |
| 62833 | 779 | val start_time = Time.now() | 
| 780 | val results = | |
| 781 |       progress.interrupt_handler {
 | |
| 782 | build(options, progress, requirements, all_sessions, build_heap, clean_build, | |
| 783 | dirs, select_dirs, exclude_session_groups, session_groups, max_jobs, list_files, | |
| 784 | check_keywords, no_build, system_mode, verbose, exclude_sessions, sessions) | |
| 785 | } | |
| 786 | val elapsed_time = Time.now() - start_time | |
| 62590 | 787 | |
| 62833 | 788 |     if (verbose) {
 | 
| 789 |       progress.echo("\n" +
 | |
| 790 | Library.trim_line( | |
| 791 |           Isabelle_System.bash("""echo -n "Finished at "; date""").out))
 | |
| 792 | } | |
| 62590 | 793 | |
| 62833 | 794 | val total_timing = | 
| 795 | (Timing.zero /: results.sessions.iterator.map(a => results(a).timing))(_ + _). | |
| 796 | copy(elapsed = elapsed_time) | |
| 797 | progress.echo(total_timing.message_resources) | |
| 62590 | 798 | |
| 62833 | 799 | sys.exit(results.rc) | 
| 800 | }) | |
| 59366 
e94df7f6b608
clarified build_theories: proper protocol handler;
 wenzelm parents: 
59319diff
changeset | 801 | |
| 
e94df7f6b608
clarified build_theories: proper protocol handler;
 wenzelm parents: 
59319diff
changeset | 802 | |
| 
e94df7f6b608
clarified build_theories: proper protocol handler;
 wenzelm parents: 
59319diff
changeset | 803 | /* PIDE protocol */ | 
| 
e94df7f6b608
clarified build_theories: proper protocol handler;
 wenzelm parents: 
59319diff
changeset | 804 | |
| 
e94df7f6b608
clarified build_theories: proper protocol handler;
 wenzelm parents: 
59319diff
changeset | 805 | def build_theories( | 
| 59369 
7090199d3f78
more informative build_theories_result: cumulative Runtime.exn_message;
 wenzelm parents: 
59367diff
changeset | 806 | session: Session, master_dir: Path, theories: List[(Options, List[Path])]): Promise[XML.Body] = | 
| 59367 | 807 |       session.get_protocol_handler(classOf[Handler].getName) match {
 | 
| 59366 
e94df7f6b608
clarified build_theories: proper protocol handler;
 wenzelm parents: 
59319diff
changeset | 808 | case Some(handler: Handler) => handler.build_theories(session, master_dir, theories) | 
| 
e94df7f6b608
clarified build_theories: proper protocol handler;
 wenzelm parents: 
59319diff
changeset | 809 |         case _ => error("Cannot invoke build_theories: bad protocol handler")
 | 
| 
e94df7f6b608
clarified build_theories: proper protocol handler;
 wenzelm parents: 
59319diff
changeset | 810 | } | 
| 
e94df7f6b608
clarified build_theories: proper protocol handler;
 wenzelm parents: 
59319diff
changeset | 811 | |
| 59367 | 812 | class Handler(progress: Progress, session_name: String) extends Session.Protocol_Handler | 
| 59366 
e94df7f6b608
clarified build_theories: proper protocol handler;
 wenzelm parents: 
59319diff
changeset | 813 |   {
 | 
| 59369 
7090199d3f78
more informative build_theories_result: cumulative Runtime.exn_message;
 wenzelm parents: 
59367diff
changeset | 814 | private val pending = Synchronized(Map.empty[String, Promise[XML.Body]]) | 
| 59366 
e94df7f6b608
clarified build_theories: proper protocol handler;
 wenzelm parents: 
59319diff
changeset | 815 | |
| 
e94df7f6b608
clarified build_theories: proper protocol handler;
 wenzelm parents: 
59319diff
changeset | 816 | def build_theories( | 
| 59369 
7090199d3f78
more informative build_theories_result: cumulative Runtime.exn_message;
 wenzelm parents: 
59367diff
changeset | 817 | 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 | 818 |     {
 | 
| 59369 
7090199d3f78
more informative build_theories_result: cumulative Runtime.exn_message;
 wenzelm parents: 
59367diff
changeset | 819 | val promise = Future.promise[XML.Body] | 
| 59366 
e94df7f6b608
clarified build_theories: proper protocol handler;
 wenzelm parents: 
59319diff
changeset | 820 | val id = Document_ID.make().toString | 
| 
e94df7f6b608
clarified build_theories: proper protocol handler;
 wenzelm parents: 
59319diff
changeset | 821 | pending.change(promises => promises + (id -> promise)) | 
| 
e94df7f6b608
clarified build_theories: proper protocol handler;
 wenzelm parents: 
59319diff
changeset | 822 | session.build_theories(id, master_dir, theories) | 
| 
e94df7f6b608
clarified build_theories: proper protocol handler;
 wenzelm parents: 
59319diff
changeset | 823 | promise | 
| 
e94df7f6b608
clarified build_theories: proper protocol handler;
 wenzelm parents: 
59319diff
changeset | 824 | } | 
| 
e94df7f6b608
clarified build_theories: proper protocol handler;
 wenzelm parents: 
59319diff
changeset | 825 | |
| 59367 | 826 | private def loading_theory(prover: Prover, msg: Prover.Protocol_Output): Boolean = | 
| 827 |       msg.properties match {
 | |
| 828 | case Markup.Loading_Theory(name) => progress.theory(session_name, name); true | |
| 829 | case _ => false | |
| 830 | } | |
| 831 | ||
| 59366 
e94df7f6b608
clarified build_theories: proper protocol handler;
 wenzelm parents: 
59319diff
changeset | 832 | private def build_theories_result(prover: Prover, msg: Prover.Protocol_Output): Boolean = | 
| 
e94df7f6b608
clarified build_theories: proper protocol handler;
 wenzelm parents: 
59319diff
changeset | 833 |       msg.properties match {
 | 
| 59369 
7090199d3f78
more informative build_theories_result: cumulative Runtime.exn_message;
 wenzelm parents: 
59367diff
changeset | 834 | case Markup.Build_Theories_Result(id) => | 
| 59366 
e94df7f6b608
clarified build_theories: proper protocol handler;
 wenzelm parents: 
59319diff
changeset | 835 | pending.change_result(promises => | 
| 
e94df7f6b608
clarified build_theories: proper protocol handler;
 wenzelm parents: 
59319diff
changeset | 836 |             promises.get(id) match {
 | 
| 59369 
7090199d3f78
more informative build_theories_result: cumulative Runtime.exn_message;
 wenzelm parents: 
59367diff
changeset | 837 | case Some(promise) => | 
| 
7090199d3f78
more informative build_theories_result: cumulative Runtime.exn_message;
 wenzelm parents: 
59367diff
changeset | 838 | val error_message = | 
| 
7090199d3f78
more informative build_theories_result: cumulative Runtime.exn_message;
 wenzelm parents: 
59367diff
changeset | 839 |                   try { YXML.parse_body(Symbol.decode(msg.text)) }
 | 
| 
7090199d3f78
more informative build_theories_result: cumulative Runtime.exn_message;
 wenzelm parents: 
59367diff
changeset | 840 |                   catch { case exn: Throwable => List(XML.Text(Exn.message(exn))) }
 | 
| 
7090199d3f78
more informative build_theories_result: cumulative Runtime.exn_message;
 wenzelm parents: 
59367diff
changeset | 841 | promise.fulfill(error_message) | 
| 
7090199d3f78
more informative build_theories_result: cumulative Runtime.exn_message;
 wenzelm parents: 
59367diff
changeset | 842 | (true, promises - id) | 
| 
7090199d3f78
more informative build_theories_result: cumulative Runtime.exn_message;
 wenzelm parents: 
59367diff
changeset | 843 | case None => | 
| 
7090199d3f78
more informative build_theories_result: cumulative Runtime.exn_message;
 wenzelm parents: 
59367diff
changeset | 844 | (false, promises) | 
| 59366 
e94df7f6b608
clarified build_theories: proper protocol handler;
 wenzelm parents: 
59319diff
changeset | 845 | }) | 
| 
e94df7f6b608
clarified build_theories: proper protocol handler;
 wenzelm parents: 
59319diff
changeset | 846 | case _ => false | 
| 
e94df7f6b608
clarified build_theories: proper protocol handler;
 wenzelm parents: 
59319diff
changeset | 847 | } | 
| 
e94df7f6b608
clarified build_theories: proper protocol handler;
 wenzelm parents: 
59319diff
changeset | 848 | |
| 
e94df7f6b608
clarified build_theories: proper protocol handler;
 wenzelm parents: 
59319diff
changeset | 849 | override def stop(prover: Prover): Unit = | 
| 
e94df7f6b608
clarified build_theories: proper protocol handler;
 wenzelm parents: 
59319diff
changeset | 850 |       pending.change(promises => { for ((_, promise) <- promises) promise.cancel; Map.empty })
 | 
| 
e94df7f6b608
clarified build_theories: proper protocol handler;
 wenzelm parents: 
59319diff
changeset | 851 | |
| 59367 | 852 | val functions = | 
| 853 | Map( | |
| 854 | Markup.BUILD_THEORIES_RESULT -> build_theories_result _, | |
| 855 | Markup.LOADING_THEORY -> loading_theory _) | |
| 59366 
e94df7f6b608
clarified build_theories: proper protocol handler;
 wenzelm parents: 
59319diff
changeset | 856 | } | 
| 48276 | 857 | } |