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