src/Pure/Tools/build.scala
author wenzelm
Thu, 22 Sep 2022 20:20:37 +0200
changeset 76206 769a7cd5a16a
parent 76202 d535db35388e
child 76209 365f6a621fc5
permissions -rw-r--r--
clarified signature: re-use store/cache from build results;
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
73364
6bf6160a2c54 proper scala.collection.immutable;
wenzelm
parents: 73359
diff changeset
    11
import scala.collection.immutable.SortedSet
48340
6f4fc030882a allow explicit specification of additional session directories;
wenzelm
parents: 48339
diff changeset
    12
import scala.annotation.tailrec
48337
9c7f8e5805b4 cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents: 48336
diff changeset
    13
48335
2f923e994056 more informative errors;
wenzelm
parents: 48334
diff changeset
    14
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74845
diff changeset
    15
object Build {
62631
c39614ddb80b clarified modules;
wenzelm
parents: 62630
diff changeset
    16
  /** auxiliary **/
48424
wenzelm
parents: 48423
diff changeset
    17
65291
57c85c83c11b maintain persistent session info in SQLite database instead of log file;
wenzelm
parents: 65289
diff changeset
    18
  /* persistent build info */
57c85c83c11b maintain persistent session info in SQLite database instead of log file;
wenzelm
parents: 65289
diff changeset
    19
57c85c83c11b maintain persistent session info in SQLite database instead of log file;
wenzelm
parents: 65289
diff changeset
    20
  sealed case class Session_Info(
66749
0445cfaf6132 more compact (second-order) digest for 10^2..10^3 source files, with slightly increased risk of collisions;
wenzelm
parents: 66747
diff changeset
    21
    sources: String,
65291
57c85c83c11b maintain persistent session info in SQLite database instead of log file;
wenzelm
parents: 65289
diff changeset
    22
    input_heaps: List[String],
57c85c83c11b maintain persistent session info in SQLite database instead of log file;
wenzelm
parents: 65289
diff changeset
    23
    output_heap: Option[String],
75967
ff164add75cd maintain "uuid" column in session build database, to identity the original build process uniquely;
wenzelm
parents: 75948
diff changeset
    24
    return_code: Int,
ff164add75cd maintain "uuid" column in session build database, to identity the original build process uniquely;
wenzelm
parents: 75948
diff changeset
    25
    uuid: String
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74845
diff changeset
    26
  ) {
66747
wenzelm
parents: 66746
diff changeset
    27
    def ok: Boolean = return_code == 0
wenzelm
parents: 66746
diff changeset
    28
  }
65291
57c85c83c11b maintain persistent session info in SQLite database instead of log file;
wenzelm
parents: 65289
diff changeset
    29
57c85c83c11b maintain persistent session info in SQLite database instead of log file;
wenzelm
parents: 65289
diff changeset
    30
65289
86d93effc3df tuned signature;
wenzelm
parents: 65284
diff changeset
    31
  /* queue with scheduling information */
48676
3ef82491cdd6 clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents: 48675
diff changeset
    32
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74845
diff changeset
    33
  private object Queue {
68086
9e1c670301b8 cleanup session output before starting build job;
wenzelm
parents: 67852
diff changeset
    34
    type Timings = (List[Properties.T], Double)
9e1c670301b8 cleanup session output before starting build job;
wenzelm
parents: 67852
diff changeset
    35
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74845
diff changeset
    36
    def load_timings(progress: Progress, store: Sessions.Store, session_name: String): Timings = {
68086
9e1c670301b8 cleanup session output before starting build job;
wenzelm
parents: 67852
diff changeset
    37
      val no_timings: Timings = (Nil, 0.0)
65289
86d93effc3df tuned signature;
wenzelm
parents: 65284
diff changeset
    38
72634
5cea0993ee4f clarified access to single database server vs. collection of database files;
wenzelm
parents: 72624
diff changeset
    39
      store.try_open_database(session_name) match {
65291
57c85c83c11b maintain persistent session info in SQLite database instead of log file;
wenzelm
parents: 65289
diff changeset
    40
        case None => no_timings
68214
b0e2a19df95b more abstract database access;
wenzelm
parents: 68213
diff changeset
    41
        case Some(db) =>
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74845
diff changeset
    42
          def ignore_error(msg: String) = {
75793
5e00c5ffc040 tuned message;
wenzelm
parents: 75786
diff changeset
    43
            progress.echo_warning("Ignoring bad database " + db +
5e00c5ffc040 tuned message;
wenzelm
parents: 75786
diff changeset
    44
              " for session " + quote(session_name) + (if (msg == "") "" else ":\n" + msg))
65291
57c85c83c11b maintain persistent session info in SQLite database instead of log file;
wenzelm
parents: 65289
diff changeset
    45
            no_timings
57c85c83c11b maintain persistent session info in SQLite database instead of log file;
wenzelm
parents: 65289
diff changeset
    46
          }
57c85c83c11b maintain persistent session info in SQLite database instead of log file;
wenzelm
parents: 65289
diff changeset
    47
          try {
71669
12ebd8d0deee tuned signature;
wenzelm
parents: 71668
diff changeset
    48
            val command_timings = store.read_command_timings(db, session_name)
68214
b0e2a19df95b more abstract database access;
wenzelm
parents: 68213
diff changeset
    49
            val session_timing =
71669
12ebd8d0deee tuned signature;
wenzelm
parents: 71668
diff changeset
    50
              store.read_session_timing(db, session_name) match {
68214
b0e2a19df95b more abstract database access;
wenzelm
parents: 68213
diff changeset
    51
                case Markup.Elapsed(t) => t
b0e2a19df95b more abstract database access;
wenzelm
parents: 68213
diff changeset
    52
                case _ => 0.0
b0e2a19df95b more abstract database access;
wenzelm
parents: 68213
diff changeset
    53
              }
b0e2a19df95b more abstract database access;
wenzelm
parents: 68213
diff changeset
    54
            (command_timings, session_timing)
65291
57c85c83c11b maintain persistent session info in SQLite database instead of log file;
wenzelm
parents: 65289
diff changeset
    55
          }
57c85c83c11b maintain persistent session info in SQLite database instead of log file;
wenzelm
parents: 65289
diff changeset
    56
          catch {
57c85c83c11b maintain persistent session info in SQLite database instead of log file;
wenzelm
parents: 65289
diff changeset
    57
            case ERROR(msg) => ignore_error(msg)
57c85c83c11b maintain persistent session info in SQLite database instead of log file;
wenzelm
parents: 65289
diff changeset
    58
            case exn: java.lang.Error => ignore_error(Exn.message(exn))
75783
b33b19deca3a clarified message;
wenzelm
parents: 75781
diff changeset
    59
            case _: XML.Error => ignore_error("XML.Error")
65291
57c85c83c11b maintain persistent session info in SQLite database instead of log file;
wenzelm
parents: 65289
diff changeset
    60
          }
73367
77ef8bef0593 clarified signature --- fewer warnings;
wenzelm
parents: 73365
diff changeset
    61
          finally { db.close() }
65289
86d93effc3df tuned signature;
wenzelm
parents: 65284
diff changeset
    62
      }
86d93effc3df tuned signature;
wenzelm
parents: 65284
diff changeset
    63
    }
86d93effc3df tuned signature;
wenzelm
parents: 65284
diff changeset
    64
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74845
diff changeset
    65
    def make_session_timing(
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74845
diff changeset
    66
      sessions_structure: Sessions.Structure,
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74845
diff changeset
    67
      timing: Map[String, Double]
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74845
diff changeset
    68
    ) : Map[String, Double] = {
68731
c2dcb7f7a3ef tuned signature;
wenzelm
parents: 68487
diff changeset
    69
      val maximals = sessions_structure.build_graph.maximals.toSet
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74845
diff changeset
    70
      def desc_timing(session_name: String): Double = {
71669
12ebd8d0deee tuned signature;
wenzelm
parents: 71668
diff changeset
    71
        if (maximals.contains(session_name)) timing(session_name)
68487
wenzelm
parents: 68486
diff changeset
    72
        else {
71669
12ebd8d0deee tuned signature;
wenzelm
parents: 71668
diff changeset
    73
          val descendants = sessions_structure.build_descendants(List(session_name)).toSet
68731
c2dcb7f7a3ef tuned signature;
wenzelm
parents: 68487
diff changeset
    74
          val g = sessions_structure.build_graph.restrict(descendants)
75394
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
    75
          (0.0 :: g.maximals.flatMap { desc =>
68487
wenzelm
parents: 68486
diff changeset
    76
            val ps = g.all_preds(List(desc))
71895
wenzelm
parents: 71894
diff changeset
    77
            if (ps.exists(p => !timing.isDefinedAt(p))) None
68487
wenzelm
parents: 68486
diff changeset
    78
            else Some(ps.map(timing(_)).sum)
75394
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
    79
          }).max
68487
wenzelm
parents: 68486
diff changeset
    80
        }
68486
6984a55f3cba clarified queue ordering: take session descendants into account, notably for "slow" AFP sessions;
wenzelm
parents: 68331
diff changeset
    81
      }
6984a55f3cba clarified queue ordering: take session descendants into account, notably for "slow" AFP sessions;
wenzelm
parents: 68331
diff changeset
    82
      timing.keySet.iterator.map(name => (name -> desc_timing(name))).toMap.withDefaultValue(0.0)
6984a55f3cba clarified queue ordering: take session descendants into account, notably for "slow" AFP sessions;
wenzelm
parents: 68331
diff changeset
    83
    }
6984a55f3cba clarified queue ordering: take session descendants into account, notably for "slow" AFP sessions;
wenzelm
parents: 68331
diff changeset
    84
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74845
diff changeset
    85
    def apply(
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74845
diff changeset
    86
      progress: Progress,
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74845
diff changeset
    87
      sessions_structure: Sessions.Structure,
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74845
diff changeset
    88
      store: Sessions.Store
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74845
diff changeset
    89
    ) : Queue = {
68731
c2dcb7f7a3ef tuned signature;
wenzelm
parents: 68487
diff changeset
    90
      val graph = sessions_structure.build_graph
65415
8cd54b18b68b clarified signature: tree structure is not essential;
wenzelm
parents: 65406
diff changeset
    91
      val names = graph.keys
51220
e140c8fa485a recover timing information from old log files;
wenzelm
parents: 51218
diff changeset
    92
65831
3b197547c1d4 prefer explicit progress channel;
wenzelm
parents: 65828
diff changeset
    93
      val timings = names.map(name => (name, load_timings(progress, store, name)))
51220
e140c8fa485a recover timing information from old log files;
wenzelm
parents: 51218
diff changeset
    94
      val command_timings =
68486
6984a55f3cba clarified queue ordering: take session descendants into account, notably for "slow" AFP sessions;
wenzelm
parents: 68331
diff changeset
    95
        timings.map({ case (name, (ts, _)) => (name, ts) }).toMap.withDefaultValue(Nil)
51220
e140c8fa485a recover timing information from old log files;
wenzelm
parents: 51218
diff changeset
    96
      val session_timing =
68731
c2dcb7f7a3ef tuned signature;
wenzelm
parents: 68487
diff changeset
    97
        make_session_timing(sessions_structure,
c2dcb7f7a3ef tuned signature;
wenzelm
parents: 68487
diff changeset
    98
          timings.map({ case (name, (_, t)) => (name, t) }).toMap)
48678
ff27af15530c queue ordering by descending outdegree and timeout;
wenzelm
parents: 48676
diff changeset
    99
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74845
diff changeset
   100
      object Ordering extends scala.math.Ordering[String] {
48678
ff27af15530c queue ordering by descending outdegree and timeout;
wenzelm
parents: 48676
diff changeset
   101
        def compare(name1: String, name2: String): Int =
73365
a78b5ffc0f46 more robust ordering (see also 88c96e836ed6);
wenzelm
parents: 73364
diff changeset
   102
          session_timing(name2) compare session_timing(name1) match {
48678
ff27af15530c queue ordering by descending outdegree and timeout;
wenzelm
parents: 48676
diff changeset
   103
            case 0 =>
68731
c2dcb7f7a3ef tuned signature;
wenzelm
parents: 68487
diff changeset
   104
              sessions_structure(name2).timeout compare sessions_structure(name1).timeout match {
68486
6984a55f3cba clarified queue ordering: take session descendants into account, notably for "slow" AFP sessions;
wenzelm
parents: 68331
diff changeset
   105
                case 0 => name1 compare name2
48678
ff27af15530c queue ordering by descending outdegree and timeout;
wenzelm
parents: 48676
diff changeset
   106
                case ord => ord
ff27af15530c queue ordering by descending outdegree and timeout;
wenzelm
parents: 48676
diff changeset
   107
              }
ff27af15530c queue ordering by descending outdegree and timeout;
wenzelm
parents: 48676
diff changeset
   108
            case ord => ord
ff27af15530c queue ordering by descending outdegree and timeout;
wenzelm
parents: 48676
diff changeset
   109
          }
ff27af15530c queue ordering by descending outdegree and timeout;
wenzelm
parents: 48676
diff changeset
   110
      }
ff27af15530c queue ordering by descending outdegree and timeout;
wenzelm
parents: 48676
diff changeset
   111
65415
8cd54b18b68b clarified signature: tree structure is not essential;
wenzelm
parents: 65406
diff changeset
   112
      new Queue(graph, SortedSet(names: _*)(Ordering), command_timings)
48676
3ef82491cdd6 clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents: 48675
diff changeset
   113
    }
3ef82491cdd6 clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents: 48675
diff changeset
   114
  }
3ef82491cdd6 clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents: 48675
diff changeset
   115
65314
wenzelm
parents: 65313
diff changeset
   116
  private class Queue(
62631
c39614ddb80b clarified modules;
wenzelm
parents: 62630
diff changeset
   117
    graph: Graph[String, Sessions.Info],
51220
e140c8fa485a recover timing information from old log files;
wenzelm
parents: 51218
diff changeset
   118
    order: SortedSet[String],
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74845
diff changeset
   119
    val command_timings: String => List[Properties.T]
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74845
diff changeset
   120
  ) {
48676
3ef82491cdd6 clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents: 48675
diff changeset
   121
    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
   122
3ef82491cdd6 clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents: 48675
diff changeset
   123
    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
   124
51227
88c96e836ed6 prefer comparison of session timing, if this is known already;
wenzelm
parents: 51223
diff changeset
   125
    def - (name: String): Queue =
73365
a78b5ffc0f46 more robust ordering (see also 88c96e836ed6);
wenzelm
parents: 73364
diff changeset
   126
      new Queue(graph.del_node(name), order - name, command_timings)
48676
3ef82491cdd6 clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents: 48675
diff changeset
   127
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74845
diff changeset
   128
    def dequeue(skip: String => Boolean): Option[(String, Sessions.Info)] = {
73365
a78b5ffc0f46 more robust ordering (see also 88c96e836ed6);
wenzelm
parents: 73364
diff changeset
   129
      val it = order.iterator.dropWhile(name => skip(name) || !graph.is_minimal(name))
73344
f5c147654661 tuned --- fewer warnings;
wenzelm
parents: 73340
diff changeset
   130
      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
   131
      else None
3ef82491cdd6 clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents: 48675
diff changeset
   132
    }
3ef82491cdd6 clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents: 48675
diff changeset
   133
  }
3ef82491cdd6 clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents: 48675
diff changeset
   134
3ef82491cdd6 clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents: 48675
diff changeset
   135
62631
c39614ddb80b clarified modules;
wenzelm
parents: 62630
diff changeset
   136
62641
0b1b7465f2ef always build with full results;
wenzelm
parents: 62638
diff changeset
   137
  /** build with results **/
48424
wenzelm
parents: 48423
diff changeset
   138
76198
fb4215da4919 clarified presentation_sessions: work with partial results;
wenzelm
parents: 76197
diff changeset
   139
  class Results private[Build](
76206
769a7cd5a16a clarified signature: re-use store/cache from build results;
wenzelm
parents: 76202
diff changeset
   140
    val store: Sessions.Store,
76198
fb4215da4919 clarified presentation_sessions: work with partial results;
wenzelm
parents: 76197
diff changeset
   141
    results: Map[String, (Option[Process_Result], Sessions.Info)],
fb4215da4919 clarified presentation_sessions: work with partial results;
wenzelm
parents: 76197
diff changeset
   142
    val presentation_sessions: List[String]
fb4215da4919 clarified presentation_sessions: work with partial results;
wenzelm
parents: 76197
diff changeset
   143
  ) {
76206
769a7cd5a16a clarified signature: re-use store/cache from build results;
wenzelm
parents: 76202
diff changeset
   144
    def cache: Term.Cache = store.cache
769a7cd5a16a clarified signature: re-use store/cache from build results;
wenzelm
parents: 76202
diff changeset
   145
62403
1d7aba20a332 explicit class Build_Results;
wenzelm
parents: 62402
diff changeset
   146
    def sessions: Set[String] = results.keySet
63082
6af03422535a expose Sessions.Info in Build.Results
Lars Hupel <lars.hupel@mytum.de>
parents: 62946
diff changeset
   147
    def cancelled(name: String): Boolean = results(name)._1.isEmpty
76197
544e81a2c9fc tuned signature: removed unused operations;
wenzelm
parents: 76196
diff changeset
   148
    def info(name: String): Sessions.Info = results(name)._2
63082
6af03422535a expose Sessions.Info in Build.Results
Lars Hupel <lars.hupel@mytum.de>
parents: 62946
diff changeset
   149
    def apply(name: String): Process_Result = results(name)._1.getOrElse(Process_Result(1))
71601
97ccf48c2f0c misc tuning based on hints by IntelliJ IDEA;
wenzelm
parents: 71598
diff changeset
   150
    val rc: Int =
73359
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73344
diff changeset
   151
      results.iterator.map({ case (_, (Some(r), _)) => r.rc case (_, (None, _)) => 1 }).
74306
a117c076aa22 clarified signature;
wenzelm
parents: 73826
diff changeset
   152
        foldLeft(Process_Result.RC.ok)(_ max _)
a117c076aa22 clarified signature;
wenzelm
parents: 73826
diff changeset
   153
    def ok: Boolean = rc == Process_Result.RC.ok
62406
b5b8fb87447a tuned signature;
wenzelm
parents: 62405
diff changeset
   154
76202
d535db35388e proper filter (amending fb4215da4919);
wenzelm
parents: 76201
diff changeset
   155
    def unfinished: List[String] = sessions.iterator.filterNot(apply(_).ok).toList.sorted
76199
6bf42525f111 tuned signature;
wenzelm
parents: 76198
diff changeset
   156
62406
b5b8fb87447a tuned signature;
wenzelm
parents: 62405
diff changeset
   157
    override def toString: String = rc.toString
62403
1d7aba20a332 explicit class Build_Results;
wenzelm
parents: 62402
diff changeset
   158
  }
1d7aba20a332 explicit class Build_Results;
wenzelm
parents: 62402
diff changeset
   159
72021
664e90313a54 clarified signature;
wenzelm
parents: 72019
diff changeset
   160
  def session_finished(session_name: String, process_result: Process_Result): String =
664e90313a54 clarified signature;
wenzelm
parents: 72019
diff changeset
   161
    "Finished " + session_name + " (" + process_result.timing.message_resources + ")"
72013
6a24ecc4ff1b clarified signature;
wenzelm
parents: 72012
diff changeset
   162
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74845
diff changeset
   163
  def session_timing(session_name: String, build_log: Build_Log.Session_Info): String = {
72021
664e90313a54 clarified signature;
wenzelm
parents: 72019
diff changeset
   164
    val props = build_log.session_timing
664e90313a54 clarified signature;
wenzelm
parents: 72019
diff changeset
   165
    val threads = Markup.Session_Timing.Threads.unapply(props) getOrElse 1
74782
0a87ea7eb76f clarified signature;
wenzelm
parents: 74770
diff changeset
   166
    val timing = Markup.Timing_Properties.get(props)
72015
6c6609fd898c more accurate message;
wenzelm
parents: 72013
diff changeset
   167
    "Timing " + session_name + " (" + threads + " threads, " + timing.message_factor + ")"
72021
664e90313a54 clarified signature;
wenzelm
parents: 72019
diff changeset
   168
  }
72018
5c9984820caa clarified signature;
wenzelm
parents: 72017
diff changeset
   169
62641
0b1b7465f2ef always build with full results;
wenzelm
parents: 62638
diff changeset
   170
  def build(
50404
898cac1dad5e avoid startup within GUI thread -- it is only required later for dialog;
wenzelm
parents: 50367
diff changeset
   171
    options: Options,
71981
0be06f99b210 clarified signature;
wenzelm
parents: 71978
diff changeset
   172
    selection: Sessions.Selection = Sessions.Selection.empty,
75942
603852abed8f clarified names: Browser_Info.Config vs. Browser_Info.Context;
wenzelm
parents: 75941
diff changeset
   173
    browser_info: Browser_Info.Config = Browser_Info.Config.none,
71726
a5fda30edae2 clarified signature: more uniform treatment of stopped/interrupted state;
wenzelm
parents: 71718
diff changeset
   174
    progress: Progress = new Progress,
65832
2fb85623c386 implicitly check for unknown files (not part of a Mercurial repository);
wenzelm
parents: 65831
diff changeset
   175
    check_unknown_files: Boolean = false,
48511
37999ee01156 remove old output heaps, to ensure that result is valid wrt. check_stamps;
wenzelm
parents: 48509
diff changeset
   176
    build_heap: Boolean = false,
48595
231e6fa96dbb added build option -c;
wenzelm
parents: 48594
diff changeset
   177
    clean_build: Boolean = false,
56890
7f120d227ca5 tuned signature;
wenzelm
parents: 56873
diff changeset
   178
    dirs: List[Path] = Nil,
7f120d227ca5 tuned signature;
wenzelm
parents: 56873
diff changeset
   179
    select_dirs: List[Path] = Nil,
66968
9991671c98aa allow to augment session context via explicit session infos;
wenzelm
parents: 66962
diff changeset
   180
    infos: List[Sessions.Info] = Nil,
64265
8eb6365f5916 isabelle build -N;
wenzelm
parents: 64173
diff changeset
   181
    numa_shuffling: Boolean = false,
48509
4854ced3e9d7 support session groups;
wenzelm
parents: 48508
diff changeset
   182
    max_jobs: Int = 1,
48903
1621b3f26095 added build option -l (list files);
wenzelm
parents: 48883
diff changeset
   183
    list_files: Boolean = false,
59891
9ce697050455 added isabelle build option -k, for fast off-line checking of theory sources;
wenzelm
parents: 59811
diff changeset
   184
    check_keywords: Set[String] = Set.empty,
66841
5c32a072ca8b added isablle build option -f;
wenzelm
parents: 66822
diff changeset
   185
    fresh_build: Boolean = false,
48509
4854ced3e9d7 support session groups;
wenzelm
parents: 48508
diff changeset
   186
    no_build: Boolean = false,
66745
e7ac579b883c option -S for "isabelle build";
wenzelm
parents: 66744
diff changeset
   187
    soft_build: Boolean = false,
48509
4854ced3e9d7 support session groups;
wenzelm
parents: 48508
diff changeset
   188
    verbose: Boolean = false,
73805
b73777a0c076 allow build session setup, e.g. for protocol handlers;
wenzelm
parents: 73804
diff changeset
   189
    export_files: Boolean = false,
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74845
diff changeset
   190
    session_setup: (String, Session) => Unit = (_, _) => ()
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74845
diff changeset
   191
  ): Results = {
71677
ff2c26b8ffb1 clarified build_options vs. job options;
wenzelm
parents: 71676
diff changeset
   192
    val build_options =
71679
eeaa4021f080 proper "editor_tracing_messages=0" as in "isabelle dump";
wenzelm
parents: 71677
diff changeset
   193
      options +
eeaa4021f080 proper "editor_tracing_messages=0" as in "isabelle dump";
wenzelm
parents: 71677
diff changeset
   194
        "completion_limit=0" +
eeaa4021f080 proper "editor_tracing_messages=0" as in "isabelle dump";
wenzelm
parents: 71677
diff changeset
   195
        "editor_tracing_messages=0" +
72728
caa182bdab7a clarified options: batch-build has pide_reports disabled by default (requires significant resources);
wenzelm
parents: 72693
diff changeset
   196
        ("pide_reports=" + options.bool("build_pide_reports"))
51220
e140c8fa485a recover timing information from old log files;
wenzelm
parents: 51218
diff changeset
   197
69854
cc0b3e177b49 system option "system_heaps" supersedes various command-line options for "system build mode";
wenzelm
parents: 69811
diff changeset
   198
    val store = Sessions.store(build_options)
66745
e7ac579b883c option -S for "isabelle build";
wenzelm
parents: 66744
diff changeset
   199
69369
6ecc85955e04 prefer "Isabelle DejaVu Sans", even for headless batch-build (session_graph.pdf);
wenzelm
parents: 68957
diff changeset
   200
    Isabelle_Fonts.init()
6ecc85955e04 prefer "Isabelle DejaVu Sans", even for headless batch-build (session_graph.pdf);
wenzelm
parents: 68957
diff changeset
   201
66745
e7ac579b883c option -S for "isabelle build";
wenzelm
parents: 66744
diff changeset
   202
e7ac579b883c option -S for "isabelle build";
wenzelm
parents: 66744
diff changeset
   203
    /* session selection and dependencies */
65422
b606c98e6d10 tuned signature;
wenzelm
parents: 65420
diff changeset
   204
66961
wenzelm
parents: 66944
diff changeset
   205
    val full_sessions =
67026
687c822ee5e3 tuned signature;
wenzelm
parents: 67025
diff changeset
   206
      Sessions.load_structure(build_options, dirs = dirs, select_dirs = select_dirs, infos = infos)
73012
238ddf525da4 clarified HTML presentation, e.g. avoid bulky jobs like HOL or HOL-Analysis in applications;
wenzelm
parents: 72993
diff changeset
   207
    val full_sessions_selection = full_sessions.imports_selection(selection)
238ddf525da4 clarified HTML presentation, e.g. avoid bulky jobs like HOL or HOL-Analysis in applications;
wenzelm
parents: 72993
diff changeset
   208
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74845
diff changeset
   209
    def sources_stamp(deps: Sessions.Deps, session_name: String): String = {
66749
0445cfaf6132 more compact (second-order) digest for 10^2..10^3 source files, with slightly increased risk of collisions;
wenzelm
parents: 66747
diff changeset
   210
      val digests =
71669
12ebd8d0deee tuned signature;
wenzelm
parents: 71668
diff changeset
   211
        full_sessions(session_name).meta_digest ::
75741
17b1c4fbc008 tuned signature;
wenzelm
parents: 75731
diff changeset
   212
        deps.session_sources(session_name) :::
71669
12ebd8d0deee tuned signature;
wenzelm
parents: 71668
diff changeset
   213
        deps.imported_sources(session_name)
72654
99a6bcd1e8e4 tuned signature;
wenzelm
parents: 72653
diff changeset
   214
      SHA1.digest_set(digests).toString
66749
0445cfaf6132 more compact (second-order) digest for 10^2..10^3 source files, with slightly increased risk of collisions;
wenzelm
parents: 66747
diff changeset
   215
    }
66745
e7ac579b883c option -S for "isabelle build";
wenzelm
parents: 66744
diff changeset
   216
75948
f0a8b7ae9192 clarified names;
wenzelm
parents: 75947
diff changeset
   217
    val build_deps = {
66745
e7ac579b883c option -S for "isabelle build";
wenzelm
parents: 66744
diff changeset
   218
      val deps0 =
71896
ce06d6456cc8 clarified signature --- fit within limit of 22 arguments;
wenzelm
parents: 71895
diff changeset
   219
        Sessions.deps(full_sessions.selection(selection),
66962
e1bde71bace6 clarified signature: global_theories is always required;
wenzelm
parents: 66961
diff changeset
   220
          progress = progress, inlined_files = true, verbose = verbose,
e1bde71bace6 clarified signature: global_theories is always required;
wenzelm
parents: 66961
diff changeset
   221
          list_files = list_files, check_keywords = check_keywords).check_errors
66745
e7ac579b883c option -S for "isabelle build";
wenzelm
parents: 66744
diff changeset
   222
66841
5c32a072ca8b added isablle build option -f;
wenzelm
parents: 66822
diff changeset
   223
      if (soft_build && !fresh_build) {
66745
e7ac579b883c option -S for "isabelle build";
wenzelm
parents: 66744
diff changeset
   224
        val outdated =
68204
a554da2811f2 clarified signature;
wenzelm
parents: 68198
diff changeset
   225
          deps0.sessions_structure.build_topological_order.flatMap(name =>
72634
5cea0993ee4f clarified access to single database server vs. collection of database files;
wenzelm
parents: 72624
diff changeset
   226
            store.try_open_database(name) match {
68214
b0e2a19df95b more abstract database access;
wenzelm
parents: 68213
diff changeset
   227
              case Some(db) =>
68216
wenzelm
parents: 68214
diff changeset
   228
                using(db)(store.read_build(_, name)) match {
66745
e7ac579b883c option -S for "isabelle build";
wenzelm
parents: 66744
diff changeset
   229
                  case Some(build)
66747
wenzelm
parents: 66746
diff changeset
   230
                  if build.ok && build.sources == sources_stamp(deps0, name) => None
66745
e7ac579b883c option -S for "isabelle build";
wenzelm
parents: 66744
diff changeset
   231
                  case _ => Some(name)
e7ac579b883c option -S for "isabelle build";
wenzelm
parents: 66744
diff changeset
   232
                }
e7ac579b883c option -S for "isabelle build";
wenzelm
parents: 66744
diff changeset
   233
              case None => Some(name)
e7ac579b883c option -S for "isabelle build";
wenzelm
parents: 66744
diff changeset
   234
            })
68204
a554da2811f2 clarified signature;
wenzelm
parents: 68198
diff changeset
   235
a554da2811f2 clarified signature;
wenzelm
parents: 68198
diff changeset
   236
        Sessions.deps(full_sessions.selection(Sessions.Selection(sessions = outdated)),
70671
cb1776c8e216 clarified signature: retain global session information, unaffected by later restriction;
wenzelm
parents: 70509
diff changeset
   237
          progress = progress, inlined_files = true).check_errors
66745
e7ac579b883c option -S for "isabelle build";
wenzelm
parents: 66744
diff changeset
   238
      }
68204
a554da2811f2 clarified signature;
wenzelm
parents: 68198
diff changeset
   239
      else deps0
66745
e7ac579b883c option -S for "isabelle build";
wenzelm
parents: 66744
diff changeset
   240
    }
e7ac579b883c option -S for "isabelle build";
wenzelm
parents: 66744
diff changeset
   241
75948
f0a8b7ae9192 clarified names;
wenzelm
parents: 75947
diff changeset
   242
    val build_sessions = build_deps.sessions_structure
f0a8b7ae9192 clarified names;
wenzelm
parents: 75947
diff changeset
   243
66745
e7ac579b883c option -S for "isabelle build";
wenzelm
parents: 66744
diff changeset
   244
e7ac579b883c option -S for "isabelle build";
wenzelm
parents: 66744
diff changeset
   245
    /* check unknown files */
48504
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   246
65832
2fb85623c386 implicitly check for unknown files (not part of a Mercurial repository);
wenzelm
parents: 65831
diff changeset
   247
    if (check_unknown_files) {
2fb85623c386 implicitly check for unknown files (not part of a Mercurial repository);
wenzelm
parents: 65831
diff changeset
   248
      val source_files =
2fb85623c386 implicitly check for unknown files (not part of a Mercurial repository);
wenzelm
parents: 65831
diff changeset
   249
        (for {
75948
f0a8b7ae9192 clarified names;
wenzelm
parents: 75947
diff changeset
   250
          (_, base) <- build_deps.session_bases.iterator
75741
17b1c4fbc008 tuned signature;
wenzelm
parents: 75731
diff changeset
   251
          (path, _) <- base.session_sources.iterator
65832
2fb85623c386 implicitly check for unknown files (not part of a Mercurial repository);
wenzelm
parents: 65831
diff changeset
   252
        } yield path).toList
67098
0f750a6dc754 suppress warning;
wenzelm
parents: 67052
diff changeset
   253
      val exclude_files = List(Path.explode("$POLYML_EXE")).map(_.canonical_file)
0f750a6dc754 suppress warning;
wenzelm
parents: 67052
diff changeset
   254
      val unknown_files =
67782
7e223a05e6d8 clarified notion of unknown files: ignore files outside of a Mercurial repository;
wenzelm
parents: 67493
diff changeset
   255
        Mercurial.check_files(source_files)._2.
67098
0f750a6dc754 suppress warning;
wenzelm
parents: 67052
diff changeset
   256
          filterNot(path => exclude_files.contains(path.canonical_file))
65832
2fb85623c386 implicitly check for unknown files (not part of a Mercurial repository);
wenzelm
parents: 65831
diff changeset
   257
      if (unknown_files.nonEmpty) {
67782
7e223a05e6d8 clarified notion of unknown files: ignore files outside of a Mercurial repository;
wenzelm
parents: 67493
diff changeset
   258
        progress.echo_warning("Unknown files (not part of the underlying Mercurial repository):" +
65832
2fb85623c386 implicitly check for unknown files (not part of a Mercurial repository);
wenzelm
parents: 65831
diff changeset
   259
          unknown_files.map(path => path.expand.implode).sorted.mkString("\n  ", "\n  ", ""))
2fb85623c386 implicitly check for unknown files (not part of a Mercurial repository);
wenzelm
parents: 65831
diff changeset
   260
      }
2fb85623c386 implicitly check for unknown files (not part of a Mercurial repository);
wenzelm
parents: 65831
diff changeset
   261
    }
2fb85623c386 implicitly check for unknown files (not part of a Mercurial repository);
wenzelm
parents: 65831
diff changeset
   262
51220
e140c8fa485a recover timing information from old log files;
wenzelm
parents: 51218
diff changeset
   263
e140c8fa485a recover timing information from old log files;
wenzelm
parents: 51218
diff changeset
   264
    /* main build process */
e140c8fa485a recover timing information from old log files;
wenzelm
parents: 51218
diff changeset
   265
75948
f0a8b7ae9192 clarified names;
wenzelm
parents: 75947
diff changeset
   266
    val queue = Queue(progress, build_sessions, store)
65289
86d93effc3df tuned signature;
wenzelm
parents: 65284
diff changeset
   267
68219
c0341c0080e2 clarified store directories;
wenzelm
parents: 68217
diff changeset
   268
    store.prepare_output_dir()
48373
527e2bad7cca further imitation of "usedir" shell script;
wenzelm
parents: 48370
diff changeset
   269
48595
231e6fa96dbb added build option -c;
wenzelm
parents: 48594
diff changeset
   270
    if (clean_build) {
73012
238ddf525da4 clarified HTML presentation, e.g. avoid bulky jobs like HOL or HOL-Analysis in applications;
wenzelm
parents: 72993
diff changeset
   271
      for (name <- full_sessions.imports_descendants(full_sessions_selection)) {
68220
8fc4e3d1df86 clarified store.clean_output: cleanup user_output_dir even in system_mode;
wenzelm
parents: 68219
diff changeset
   272
        val (relevant, ok) = store.clean_output(name)
8fc4e3d1df86 clarified store.clean_output: cleanup user_output_dir even in system_mode;
wenzelm
parents: 68219
diff changeset
   273
        if (relevant) {
8fc4e3d1df86 clarified store.clean_output: cleanup user_output_dir even in system_mode;
wenzelm
parents: 68219
diff changeset
   274
          if (ok) progress.echo("Cleaned " + name)
8fc4e3d1df86 clarified store.clean_output: cleanup user_output_dir even in system_mode;
wenzelm
parents: 68219
diff changeset
   275
          else progress.echo(name + " FAILED to clean")
8fc4e3d1df86 clarified store.clean_output: cleanup user_output_dir even in system_mode;
wenzelm
parents: 68219
diff changeset
   276
        }
48595
231e6fa96dbb added build option -c;
wenzelm
parents: 48594
diff changeset
   277
      }
231e6fa96dbb added build option -c;
wenzelm
parents: 48594
diff changeset
   278
    }
231e6fa96dbb added build option -c;
wenzelm
parents: 48594
diff changeset
   279
48425
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   280
    // scheduler loop
63082
6af03422535a expose Sessions.Info in Build.Results
Lars Hupel <lars.hupel@mytum.de>
parents: 62946
diff changeset
   281
    case class Result(
66594
c16ed3250de0 tuned whitespace;
wenzelm
parents: 66571
diff changeset
   282
      current: Boolean,
68213
wenzelm
parents: 68212
diff changeset
   283
      heap_digest: Option[String],
66594
c16ed3250de0 tuned whitespace;
wenzelm
parents: 66571
diff changeset
   284
      process: Option[Process_Result],
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74845
diff changeset
   285
      info: Sessions.Info
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74845
diff changeset
   286
    ) {
62402
bff56eae3ec5 more informative Build.build_results;
wenzelm
parents: 62401
diff changeset
   287
      def ok: Boolean =
bff56eae3ec5 more informative Build.build_results;
wenzelm
parents: 62401
diff changeset
   288
        process match {
bff56eae3ec5 more informative Build.build_results;
wenzelm
parents: 62401
diff changeset
   289
          case None => false
74306
a117c076aa22 clarified signature;
wenzelm
parents: 73826
diff changeset
   290
          case Some(res) => res.ok
62402
bff56eae3ec5 more informative Build.build_results;
wenzelm
parents: 62401
diff changeset
   291
        }
bff56eae3ec5 more informative Build.build_results;
wenzelm
parents: 62401
diff changeset
   292
    }
48639
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   293
73340
0ffcad1f6130 tuned --- fewer warnings;
wenzelm
parents: 73055
diff changeset
   294
    def sleep(): Unit =
73702
7202e12cb324 tuned signature --- following hints by IntelliJ IDEA;
wenzelm
parents: 73522
diff changeset
   295
      Isabelle_Thread.interrupt_handler(_ => progress.stop()) { Time.seconds(0.5).sleep() }
50366
b1dd455593a9 more formal progress context;
wenzelm
parents: 50207
diff changeset
   296
73777
52e43a93d51f clarified system_log: make this work independently of the particular "isabelle build" command-line (e.g. "isabelle mirabelle");
wenzelm
parents: 73774
diff changeset
   297
    val log =
52e43a93d51f clarified system_log: make this work independently of the particular "isabelle build" command-line (e.g. "isabelle mirabelle");
wenzelm
parents: 73774
diff changeset
   298
      build_options.string("system_log") match {
52e43a93d51f clarified system_log: make this work independently of the particular "isabelle build" command-line (e.g. "isabelle mirabelle");
wenzelm
parents: 73774
diff changeset
   299
        case "" => No_Logger
74827
c1b5d6e6ff74 clarified system option standard values: avoid oddities like "isabelle build -o document_output" producing directories named "true";
wenzelm
parents: 74818
diff changeset
   300
        case "-" => Logger.make(progress)
73777
52e43a93d51f clarified system_log: make this work independently of the particular "isabelle build" command-line (e.g. "isabelle mirabelle");
wenzelm
parents: 73774
diff changeset
   301
        case log_file => Logger.make(Some(Path.explode(log_file)))
52e43a93d51f clarified system_log: make this work independently of the particular "isabelle build" command-line (e.g. "isabelle mirabelle");
wenzelm
parents: 73774
diff changeset
   302
      }
52e43a93d51f clarified system_log: make this work independently of the particular "isabelle build" command-line (e.g. "isabelle mirabelle");
wenzelm
parents: 73774
diff changeset
   303
64265
8eb6365f5916 isabelle build -N;
wenzelm
parents: 64173
diff changeset
   304
    val numa_nodes = new NUMA.Nodes(numa_shuffling)
8eb6365f5916 isabelle build -N;
wenzelm
parents: 64173
diff changeset
   305
48425
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   306
    @tailrec def loop(
48676
3ef82491cdd6 clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents: 48675
diff changeset
   307
      pending: Queue,
72662
5c08ad7adf77 clarified modules;
wenzelm
parents: 72654
diff changeset
   308
      running: Map[String, (List[String], Build_Job)],
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74845
diff changeset
   309
      results: Map[String, Result]
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74845
diff changeset
   310
    ): Map[String, Result] = {
64265
8eb6365f5916 isabelle build -N;
wenzelm
parents: 64173
diff changeset
   311
      def used_node(i: Int): Boolean =
8eb6365f5916 isabelle build -N;
wenzelm
parents: 64173
diff changeset
   312
        running.iterator.exists(
8eb6365f5916 isabelle build -N;
wenzelm
parents: 64173
diff changeset
   313
          { case (_, (_, job)) => job.numa_node.isDefined && job.numa_node.get == i })
8eb6365f5916 isabelle build -N;
wenzelm
parents: 64173
diff changeset
   314
48425
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   315
      if (pending.is_empty) results
51253
ab4c296a1e60 clarified Progress.stopped: rising edge only;
wenzelm
parents: 51252
diff changeset
   316
      else {
71726
a5fda30edae2 clarified signature: more uniform treatment of stopped/interrupted state;
wenzelm
parents: 71718
diff changeset
   317
        if (progress.stopped) {
73367
77ef8bef0593 clarified signature --- fewer warnings;
wenzelm
parents: 73365
diff changeset
   318
          for ((_, (_, job)) <- running) job.terminate()
71726
a5fda30edae2 clarified signature: more uniform treatment of stopped/interrupted state;
wenzelm
parents: 71718
diff changeset
   319
        }
51253
ab4c296a1e60 clarified Progress.stopped: rising edge only;
wenzelm
parents: 51252
diff changeset
   320
48674
03e88e4619a2 simplified class Job;
wenzelm
parents: 48671
diff changeset
   321
        running.find({ case (_, (_, job)) => job.is_finished }) match {
71669
12ebd8d0deee tuned signature;
wenzelm
parents: 71668
diff changeset
   322
          case Some((session_name, (input_heaps, job))) =>
50367
69efe72886e3 allow to terminate jobs via Progress;
wenzelm
parents: 50366
diff changeset
   323
            //{{{ finish job
48424
wenzelm
parents: 48423
diff changeset
   324
68217
3e90b88b0fc2 clarified handling of output heap;
wenzelm
parents: 68216
diff changeset
   325
            val (process_result, heap_digest) = job.join
48373
527e2bad7cca further imitation of "usedir" shell script;
wenzelm
parents: 48370
diff changeset
   326
71623
b3bddebe44ca clarified signature: more explicit type Protocol_Message.Marker;
wenzelm
parents: 71614
diff changeset
   327
            val log_lines = process_result.out_lines.filterNot(Protocol_Message.Marker.test)
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74845
diff changeset
   328
            val process_result_tail = {
62409
e391528eff3b proper option process_output_tail, more generous default;
wenzelm
parents: 62406
diff changeset
   329
              val tail = job.info.options.int("process_output_tail")
62632
cd991ba01ffd clarified modules;
wenzelm
parents: 62631
diff changeset
   330
              process_result.copy(
cd991ba01ffd clarified modules;
wenzelm
parents: 62631
diff changeset
   331
                out_lines =
71669
12ebd8d0deee tuned signature;
wenzelm
parents: 71668
diff changeset
   332
                  "(see also " + store.output_log(session_name).file.toString + ")" ::
65294
69100bf4ead4 suppress inlined properties from log output;
wenzelm
parents: 65291
diff changeset
   333
                  (if (tail == 0) log_lines else log_lines.drop(log_lines.length - tail max 0)))
62404
13a0f537e232 retain tail out_lines as printed, but not the whole log content;
wenzelm
parents: 62403
diff changeset
   334
            }
13a0f537e232 retain tail out_lines as printed, but not the whole log content;
wenzelm
parents: 62403
diff changeset
   335
72017
wenzelm
parents: 72016
diff changeset
   336
            val build_log =
wenzelm
parents: 72016
diff changeset
   337
              Build_Log.Log_File(session_name, process_result.out_lines).
wenzelm
parents: 72016
diff changeset
   338
                parse_session_info(
wenzelm
parents: 72016
diff changeset
   339
                  command_timings = true,
wenzelm
parents: 72016
diff changeset
   340
                  theory_timings = true,
wenzelm
parents: 72016
diff changeset
   341
                  ml_statistics = true,
wenzelm
parents: 72016
diff changeset
   342
                  task_statistics = true)
66666
1a620647285c clarified messages: after writing all files (see also 27f90319a499 and 57c85c83c11b);
wenzelm
parents: 66595
diff changeset
   343
1a620647285c clarified messages: after writing all files (see also 27f90319a499 and 57c85c83c11b);
wenzelm
parents: 66595
diff changeset
   344
            // write log file
68217
3e90b88b0fc2 clarified handling of output heap;
wenzelm
parents: 68216
diff changeset
   345
            if (process_result.ok) {
71669
12ebd8d0deee tuned signature;
wenzelm
parents: 71668
diff changeset
   346
              File.write_gzip(store.output_log_gz(session_name), terminate_lines(log_lines))
68217
3e90b88b0fc2 clarified handling of output heap;
wenzelm
parents: 68216
diff changeset
   347
            }
71669
12ebd8d0deee tuned signature;
wenzelm
parents: 71668
diff changeset
   348
            else File.write(store.output_log(session_name), terminate_lines(log_lines))
65291
57c85c83c11b maintain persistent session info in SQLite database instead of log file;
wenzelm
parents: 65289
diff changeset
   349
57c85c83c11b maintain persistent session info in SQLite database instead of log file;
wenzelm
parents: 65289
diff changeset
   350
            // write database
72017
wenzelm
parents: 72016
diff changeset
   351
            using(store.open_database(session_name, output = true))(db =>
wenzelm
parents: 72016
diff changeset
   352
              store.write_session_info(db, session_name,
wenzelm
parents: 72016
diff changeset
   353
                build_log =
wenzelm
parents: 72016
diff changeset
   354
                  if (process_result.timeout) build_log.error("Timeout") else build_log,
wenzelm
parents: 72016
diff changeset
   355
                build =
75948
f0a8b7ae9192 clarified names;
wenzelm
parents: 75947
diff changeset
   356
                  Session_Info(sources_stamp(build_deps, session_name), input_heaps, heap_digest,
75967
ff164add75cd maintain "uuid" column in session build database, to identity the original build process uniquely;
wenzelm
parents: 75948
diff changeset
   357
                    process_result.rc, UUID.random().toString)))
65291
57c85c83c11b maintain persistent session info in SQLite database instead of log file;
wenzelm
parents: 65289
diff changeset
   358
66666
1a620647285c clarified messages: after writing all files (see also 27f90319a499 and 57c85c83c11b);
wenzelm
parents: 66595
diff changeset
   359
            // messages
71601
97ccf48c2f0c misc tuning based on hints by IntelliJ IDEA;
wenzelm
parents: 71598
diff changeset
   360
            process_result.err_lines.foreach(progress.echo)
66666
1a620647285c clarified messages: after writing all files (see also 27f90319a499 and 57c85c83c11b);
wenzelm
parents: 66595
diff changeset
   361
72013
6a24ecc4ff1b clarified signature;
wenzelm
parents: 72012
diff changeset
   362
            if (process_result.ok) {
72022
45865bb06182 clarified message --- as in former ML version (see 940195fbb282);
wenzelm
parents: 72021
diff changeset
   363
              if (verbose) progress.echo(session_timing(session_name, build_log))
72021
664e90313a54 clarified signature;
wenzelm
parents: 72019
diff changeset
   364
              progress.echo(session_finished(session_name, process_result))
72013
6a24ecc4ff1b clarified signature;
wenzelm
parents: 72012
diff changeset
   365
            }
66666
1a620647285c clarified messages: after writing all files (see also 27f90319a499 and 57c85c83c11b);
wenzelm
parents: 66595
diff changeset
   366
            else {
71669
12ebd8d0deee tuned signature;
wenzelm
parents: 71668
diff changeset
   367
              progress.echo(session_name + " FAILED")
66666
1a620647285c clarified messages: after writing all files (see also 27f90319a499 and 57c85c83c11b);
wenzelm
parents: 66595
diff changeset
   368
              if (!process_result.interrupted) progress.echo(process_result_tail.out)
1a620647285c clarified messages: after writing all files (see also 27f90319a499 and 57c85c83c11b);
wenzelm
parents: 66595
diff changeset
   369
            }
1a620647285c clarified messages: after writing all files (see also 27f90319a499 and 57c85c83c11b);
wenzelm
parents: 66595
diff changeset
   370
71669
12ebd8d0deee tuned signature;
wenzelm
parents: 71668
diff changeset
   371
            loop(pending - session_name, running - session_name,
12ebd8d0deee tuned signature;
wenzelm
parents: 71668
diff changeset
   372
              results +
12ebd8d0deee tuned signature;
wenzelm
parents: 71668
diff changeset
   373
                (session_name -> Result(false, heap_digest, Some(process_result_tail), job.info)))
50367
69efe72886e3 allow to terminate jobs via Progress;
wenzelm
parents: 50366
diff changeset
   374
            //}}}
60215
5fb4990dfc73 misc tuning, based on warnings by IntelliJ IDEA;
wenzelm
parents: 60106
diff changeset
   375
          case None if running.size < (max_jobs max 1) =>
50367
69efe72886e3 allow to terminate jobs via Progress;
wenzelm
parents: 50366
diff changeset
   376
            //{{{ check/start next job
71601
97ccf48c2f0c misc tuning based on hints by IntelliJ IDEA;
wenzelm
parents: 71598
diff changeset
   377
            pending.dequeue(running.isDefinedAt) match {
71669
12ebd8d0deee tuned signature;
wenzelm
parents: 71668
diff changeset
   378
              case Some((session_name, info)) =>
66848
982baed14542 clarified signature;
wenzelm
parents: 66841
diff changeset
   379
                val ancestor_results =
75948
f0a8b7ae9192 clarified names;
wenzelm
parents: 75947
diff changeset
   380
                  build_sessions.build_requirements(List(session_name)).
71669
12ebd8d0deee tuned signature;
wenzelm
parents: 71668
diff changeset
   381
                    filterNot(_ == session_name).map(results(_))
68213
wenzelm
parents: 68212
diff changeset
   382
                val ancestor_heaps = ancestor_results.flatMap(_.heap_digest)
62628
6031191a8d9c record stamps of cumulative input heaps;
wenzelm
parents: 62610
diff changeset
   383
71669
12ebd8d0deee tuned signature;
wenzelm
parents: 71668
diff changeset
   384
                val do_store =
12ebd8d0deee tuned signature;
wenzelm
parents: 71668
diff changeset
   385
                  build_heap || Sessions.is_pure(session_name) || queue.is_inner(session_name)
48547
wenzelm
parents: 48546
diff changeset
   386
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74845
diff changeset
   387
                val (current, heap_digest) = {
72634
5cea0993ee4f clarified access to single database server vs. collection of database files;
wenzelm
parents: 72624
diff changeset
   388
                  store.try_open_database(session_name) match {
68212
5a59fded83c7 clarified heap vs. database operations: discontinued correlation of directory;
wenzelm
parents: 68209
diff changeset
   389
                    case Some(db) =>
71669
12ebd8d0deee tuned signature;
wenzelm
parents: 71668
diff changeset
   390
                      using(db)(store.read_build(_, session_name)) match {
68216
wenzelm
parents: 68214
diff changeset
   391
                        case Some(build) =>
71669
12ebd8d0deee tuned signature;
wenzelm
parents: 71668
diff changeset
   392
                          val heap_digest = store.find_heap_digest(session_name)
68216
wenzelm
parents: 68214
diff changeset
   393
                          val current =
wenzelm
parents: 68214
diff changeset
   394
                            !fresh_build &&
wenzelm
parents: 68214
diff changeset
   395
                            build.ok &&
75948
f0a8b7ae9192 clarified names;
wenzelm
parents: 75947
diff changeset
   396
                            build.sources == sources_stamp(build_deps, session_name) &&
68216
wenzelm
parents: 68214
diff changeset
   397
                            build.input_heaps == ancestor_heaps &&
wenzelm
parents: 68214
diff changeset
   398
                            build.output_heap == heap_digest &&
71614
wenzelm
parents: 71613
diff changeset
   399
                            !(do_store && heap_digest.isEmpty)
68216
wenzelm
parents: 68214
diff changeset
   400
                          (current, heap_digest)
wenzelm
parents: 68214
diff changeset
   401
                        case None => (false, None)
wenzelm
parents: 68214
diff changeset
   402
                      }
62636
e676ae9f1bf6 clarified signature;
wenzelm
parents: 62635
diff changeset
   403
                    case None => (false, None)
48504
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   404
                  }
48547
wenzelm
parents: 48546
diff changeset
   405
                }
62628
6031191a8d9c record stamps of cumulative input heaps;
wenzelm
parents: 62610
diff changeset
   406
                val all_current = current && ancestor_results.forall(_.current)
48528
784c6f63d79c proper all_current, which regards parent status as well;
wenzelm
parents: 48511
diff changeset
   407
76201
9d1819c28f67 clarified conditions: no_build is ok for presentation if "all_current" holds;
wenzelm
parents: 76200
diff changeset
   408
                if (all_current) {
71669
12ebd8d0deee tuned signature;
wenzelm
parents: 71668
diff changeset
   409
                  loop(pending - session_name, running,
12ebd8d0deee tuned signature;
wenzelm
parents: 71668
diff changeset
   410
                    results +
12ebd8d0deee tuned signature;
wenzelm
parents: 71668
diff changeset
   411
                      (session_name -> Result(true, heap_digest, Some(Process_Result(0)), info)))
76201
9d1819c28f67 clarified conditions: no_build is ok for presentation if "all_current" holds;
wenzelm
parents: 76200
diff changeset
   412
                }
48678
ff27af15530c queue ordering by descending outdegree and timeout;
wenzelm
parents: 48676
diff changeset
   413
                else if (no_build) {
71894
wenzelm
parents: 71879
diff changeset
   414
                  progress.echo_if(verbose, "Skipping " + session_name + " ...")
71669
12ebd8d0deee tuned signature;
wenzelm
parents: 71668
diff changeset
   415
                  loop(pending - session_name, running,
12ebd8d0deee tuned signature;
wenzelm
parents: 71668
diff changeset
   416
                    results +
12ebd8d0deee tuned signature;
wenzelm
parents: 71668
diff changeset
   417
                      (session_name -> Result(false, heap_digest, Some(Process_Result(1)), info)))
48678
ff27af15530c queue ordering by descending outdegree and timeout;
wenzelm
parents: 48676
diff changeset
   418
                }
62628
6031191a8d9c record stamps of cumulative input heaps;
wenzelm
parents: 62610
diff changeset
   419
                else if (ancestor_results.forall(_.ok) && !progress.stopped) {
71669
12ebd8d0deee tuned signature;
wenzelm
parents: 71668
diff changeset
   420
                  progress.echo((if (do_store) "Building " else "Running ") + session_name + " ...")
68086
9e1c670301b8 cleanup session output before starting build job;
wenzelm
parents: 67852
diff changeset
   421
71669
12ebd8d0deee tuned signature;
wenzelm
parents: 71668
diff changeset
   422
                  store.clean_output(session_name)
12ebd8d0deee tuned signature;
wenzelm
parents: 71668
diff changeset
   423
                  using(store.open_database(session_name, output = true))(
12ebd8d0deee tuned signature;
wenzelm
parents: 71668
diff changeset
   424
                    store.init_session_info(_, session_name))
68086
9e1c670301b8 cleanup session output before starting build job;
wenzelm
parents: 67852
diff changeset
   425
71601
97ccf48c2f0c misc tuning based on hints by IntelliJ IDEA;
wenzelm
parents: 71598
diff changeset
   426
                  val numa_node = numa_nodes.next(used_node)
51220
e140c8fa485a recover timing information from old log files;
wenzelm
parents: 51218
diff changeset
   427
                  val job =
75948
f0a8b7ae9192 clarified names;
wenzelm
parents: 75947
diff changeset
   428
                    new Build_Job(progress, session_name, info, build_deps, store, do_store,
73805
b73777a0c076 allow build session setup, e.g. for protocol handlers;
wenzelm
parents: 73804
diff changeset
   429
                      log, session_setup, numa_node, queue.command_timings(session_name))
71669
12ebd8d0deee tuned signature;
wenzelm
parents: 71668
diff changeset
   430
                  loop(pending, running + (session_name -> (ancestor_heaps, job)), results)
48547
wenzelm
parents: 48546
diff changeset
   431
                }
wenzelm
parents: 48546
diff changeset
   432
                else {
71669
12ebd8d0deee tuned signature;
wenzelm
parents: 71668
diff changeset
   433
                  progress.echo(session_name + " CANCELLED")
12ebd8d0deee tuned signature;
wenzelm
parents: 71668
diff changeset
   434
                  loop(pending - session_name, running,
12ebd8d0deee tuned signature;
wenzelm
parents: 71668
diff changeset
   435
                    results + (session_name -> Result(false, heap_digest, None, info)))
48547
wenzelm
parents: 48546
diff changeset
   436
                }
wenzelm
parents: 48546
diff changeset
   437
              case None => sleep(); loop(pending, running, results)
48425
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   438
            }
50367
69efe72886e3 allow to terminate jobs via Progress;
wenzelm
parents: 50366
diff changeset
   439
            ///}}}
48425
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   440
          case None => sleep(); loop(pending, running, results)
48373
527e2bad7cca further imitation of "usedir" shell script;
wenzelm
parents: 48370
diff changeset
   441
        }
51253
ab4c296a1e60 clarified Progress.stopped: rising edge only;
wenzelm
parents: 51252
diff changeset
   442
      }
48425
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   443
    }
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   444
51220
e140c8fa485a recover timing information from old log files;
wenzelm
parents: 51218
diff changeset
   445
e140c8fa485a recover timing information from old log files;
wenzelm
parents: 51218
diff changeset
   446
    /* build results */
e140c8fa485a recover timing information from old log files;
wenzelm
parents: 51218
diff changeset
   447
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74845
diff changeset
   448
    val results = {
76200
wenzelm
parents: 76199
diff changeset
   449
      val build_results =
75948
f0a8b7ae9192 clarified names;
wenzelm
parents: 75947
diff changeset
   450
        if (build_deps.is_empty) {
72673
8ff7a0e394f9 clarified PDF/HTML presentation, based on pdf blobs from session database (e.g. from earlier builds);
wenzelm
parents: 72662
diff changeset
   451
          progress.echo_warning("Nothing to build")
8ff7a0e394f9 clarified PDF/HTML presentation, based on pdf blobs from session database (e.g. from earlier builds);
wenzelm
parents: 72662
diff changeset
   452
          Map.empty[String, Result]
8ff7a0e394f9 clarified PDF/HTML presentation, based on pdf blobs from session database (e.g. from earlier builds);
wenzelm
parents: 72662
diff changeset
   453
        }
8ff7a0e394f9 clarified PDF/HTML presentation, based on pdf blobs from session database (e.g. from earlier builds);
wenzelm
parents: 72662
diff changeset
   454
        else Isabelle_Thread.uninterruptible { loop(queue, Map.empty, Map.empty) }
48583
ed975dbb16ca tuned messages;
wenzelm
parents: 48579
diff changeset
   455
76200
wenzelm
parents: 76199
diff changeset
   456
      val results =
wenzelm
parents: 76199
diff changeset
   457
        (for ((name, result) <- build_results.iterator)
76196
wenzelm
parents: 75967
diff changeset
   458
          yield (name, (result.process, result.info))).toMap
wenzelm
parents: 75967
diff changeset
   459
76198
fb4215da4919 clarified presentation_sessions: work with partial results;
wenzelm
parents: 76197
diff changeset
   460
      val presentation_sessions =
fb4215da4919 clarified presentation_sessions: work with partial results;
wenzelm
parents: 76197
diff changeset
   461
        (for {
fb4215da4919 clarified presentation_sessions: work with partial results;
wenzelm
parents: 76197
diff changeset
   462
          name <- build_sessions.build_topological_order.iterator
76200
wenzelm
parents: 76199
diff changeset
   463
          result <- build_results.get(name)
76198
fb4215da4919 clarified presentation_sessions: work with partial results;
wenzelm
parents: 76197
diff changeset
   464
          if result.ok && browser_info.enabled(result.info)
fb4215da4919 clarified presentation_sessions: work with partial results;
wenzelm
parents: 76197
diff changeset
   465
        } yield name).toList
fb4215da4919 clarified presentation_sessions: work with partial results;
wenzelm
parents: 76197
diff changeset
   466
76206
769a7cd5a16a clarified signature: re-use store/cache from build results;
wenzelm
parents: 76202
diff changeset
   467
      new Results(store, results, presentation_sessions)
72673
8ff7a0e394f9 clarified PDF/HTML presentation, based on pdf blobs from session database (e.g. from earlier builds);
wenzelm
parents: 72662
diff changeset
   468
    }
62641
0b1b7465f2ef always build with full results;
wenzelm
parents: 62638
diff changeset
   469
69811
18f61ce86425 clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents: 69777
diff changeset
   470
    if (export_files) {
76196
wenzelm
parents: 75967
diff changeset
   471
      for (name <- full_sessions_selection.iterator if results(name).ok) {
69811
18f61ce86425 clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents: 69777
diff changeset
   472
        val info = results.info(name)
18f61ce86425 clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents: 69777
diff changeset
   473
        if (info.export_files.nonEmpty) {
18f61ce86425 clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents: 69777
diff changeset
   474
          progress.echo("Exporting " + info.name + " ...")
18f61ce86425 clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents: 69777
diff changeset
   475
          for ((dir, prune, pats) <- info.export_files) {
18f61ce86425 clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents: 69777
diff changeset
   476
            Export.export_files(store, name, info.dir + dir,
71726
a5fda30edae2 clarified signature: more uniform treatment of stopped/interrupted state;
wenzelm
parents: 71718
diff changeset
   477
              progress = if (verbose) progress else new Progress,
69811
18f61ce86425 clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents: 69777
diff changeset
   478
              export_prune = prune,
18f61ce86425 clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents: 69777
diff changeset
   479
              export_patterns = pats)
18f61ce86425 clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents: 69777
diff changeset
   480
          }
18f61ce86425 clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents: 69777
diff changeset
   481
        }
18f61ce86425 clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents: 69777
diff changeset
   482
      }
18f61ce86425 clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents: 69777
diff changeset
   483
    }
18f61ce86425 clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents: 69777
diff changeset
   484
76201
9d1819c28f67 clarified conditions: no_build is ok for presentation if "all_current" holds;
wenzelm
parents: 76200
diff changeset
   485
    if (results.presentation_sessions.nonEmpty && !progress.stopped) {
76198
fb4215da4919 clarified presentation_sessions: work with partial results;
wenzelm
parents: 76197
diff changeset
   486
      Browser_Info.build(browser_info, store, build_deps, results.presentation_sessions,
fb4215da4919 clarified presentation_sessions: work with partial results;
wenzelm
parents: 76197
diff changeset
   487
        progress = progress, verbose = verbose)
fb4215da4919 clarified presentation_sessions: work with partial results;
wenzelm
parents: 76197
diff changeset
   488
    }
fb4215da4919 clarified presentation_sessions: work with partial results;
wenzelm
parents: 76197
diff changeset
   489
76196
wenzelm
parents: 75967
diff changeset
   490
    if (!results.ok && (verbose || !no_build)) {
76199
6bf42525f111 tuned signature;
wenzelm
parents: 76198
diff changeset
   491
      progress.echo("Unfinished session(s): " + commas(results.unfinished))
62641
0b1b7465f2ef always build with full results;
wenzelm
parents: 62638
diff changeset
   492
    }
0b1b7465f2ef always build with full results;
wenzelm
parents: 62638
diff changeset
   493
0b1b7465f2ef always build with full results;
wenzelm
parents: 62638
diff changeset
   494
    results
48341
752de4e10162 tuned source structure;
wenzelm
parents: 48340
diff changeset
   495
  }
752de4e10162 tuned source structure;
wenzelm
parents: 48340
diff changeset
   496
752de4e10162 tuned source structure;
wenzelm
parents: 48340
diff changeset
   497
62833
29dfa2ed9343 prefer internal tool;
wenzelm
parents: 62825
diff changeset
   498
  /* Isabelle tool wrapper */
48341
752de4e10162 tuned source structure;
wenzelm
parents: 48340
diff changeset
   499
72763
3cc73d00553c added document antiquotation @{tool};
wenzelm
parents: 72728
diff changeset
   500
  val isabelle_tool = Isabelle_Tool("build", "build and manage Isabelle sessions",
75394
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   501
    Scala_Project.here,
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   502
    { args =>
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   503
      val build_options = Word.explode(Isabelle_System.getenv("ISABELLE_BUILD_OPTIONS"))
62590
0c837beeb5e7 upgrade "isabelle build" to Isabelle/Scala;
wenzelm
parents: 62573
diff changeset
   504
75394
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   505
      var base_sessions: List[String] = Nil
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   506
      var select_dirs: List[Path] = Nil
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   507
      var numa_shuffling = false
75942
603852abed8f clarified names: Browser_Info.Config vs. Browser_Info.Context;
wenzelm
parents: 75941
diff changeset
   508
      var browser_info = Browser_Info.Config.none
75394
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   509
      var requirements = false
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   510
      var soft_build = false
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   511
      var exclude_session_groups: List[String] = Nil
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   512
      var all_sessions = false
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   513
      var build_heap = false
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   514
      var clean_build = false
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   515
      var dirs: List[Path] = Nil
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   516
      var export_files = false
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   517
      var fresh_build = false
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   518
      var session_groups: List[String] = Nil
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   519
      var max_jobs = 1
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   520
      var check_keywords: Set[String] = Set.empty
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   521
      var list_files = false
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   522
      var no_build = false
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   523
      var options = Options.init(opts = build_options)
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   524
      var verbose = false
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   525
      var exclude_sessions: List[String] = Nil
62590
0c837beeb5e7 upgrade "isabelle build" to Isabelle/Scala;
wenzelm
parents: 62573
diff changeset
   526
75394
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   527
      val getopts = Getopts("""
62590
0c837beeb5e7 upgrade "isabelle build" to Isabelle/Scala;
wenzelm
parents: 62573
diff changeset
   528
Usage: isabelle build [OPTIONS] [SESSIONS ...]
0c837beeb5e7 upgrade "isabelle build" to Isabelle/Scala;
wenzelm
parents: 62573
diff changeset
   529
0c837beeb5e7 upgrade "isabelle build" to Isabelle/Scala;
wenzelm
parents: 62573
diff changeset
   530
  Options are:
66737
2edc0c42c883 option -B for "isabelle build" and "isabelle imports";
wenzelm
parents: 66736
diff changeset
   531
    -B NAME      include session NAME and all descendants
62590
0c837beeb5e7 upgrade "isabelle build" to Isabelle/Scala;
wenzelm
parents: 62573
diff changeset
   532
    -D DIR       include session directory and select its sessions
64265
8eb6365f5916 isabelle build -N;
wenzelm
parents: 64173
diff changeset
   533
    -N           cyclic shuffling of NUMA CPU nodes (performance tuning)
72648
1cbac4ae934d more explicit presentation directory;
wenzelm
parents: 72640
diff changeset
   534
    -P DIR       enable HTML/PDF presentation in directory (":" for default)
71807
cdfa8f027bb9 tuned messages;
wenzelm
parents: 71727
diff changeset
   535
    -R           refer to requirements of selected sessions
66745
e7ac579b883c option -S for "isabelle build";
wenzelm
parents: 66744
diff changeset
   536
    -S           soft build: only observe changes of sources, not heap images
62590
0c837beeb5e7 upgrade "isabelle build" to Isabelle/Scala;
wenzelm
parents: 62573
diff changeset
   537
    -X NAME      exclude sessions from group NAME and all descendants
0c837beeb5e7 upgrade "isabelle build" to Isabelle/Scala;
wenzelm
parents: 62573
diff changeset
   538
    -a           select all sessions
0c837beeb5e7 upgrade "isabelle build" to Isabelle/Scala;
wenzelm
parents: 62573
diff changeset
   539
    -b           build heap images
0c837beeb5e7 upgrade "isabelle build" to Isabelle/Scala;
wenzelm
parents: 62573
diff changeset
   540
    -c           clean build
0c837beeb5e7 upgrade "isabelle build" to Isabelle/Scala;
wenzelm
parents: 62573
diff changeset
   541
    -d DIR       include session directory
69811
18f61ce86425 clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents: 69777
diff changeset
   542
    -e           export files from session specification into file-system
66841
5c32a072ca8b added isablle build option -f;
wenzelm
parents: 66822
diff changeset
   543
    -f           fresh build
62590
0c837beeb5e7 upgrade "isabelle build" to Isabelle/Scala;
wenzelm
parents: 62573
diff changeset
   544
    -g NAME      select session group NAME
0c837beeb5e7 upgrade "isabelle build" to Isabelle/Scala;
wenzelm
parents: 62573
diff changeset
   545
    -j INT       maximum number of parallel jobs (default 1)
0c837beeb5e7 upgrade "isabelle build" to Isabelle/Scala;
wenzelm
parents: 62573
diff changeset
   546
    -k KEYWORD   check theory sources for conflicts with proposed keywords
0c837beeb5e7 upgrade "isabelle build" to Isabelle/Scala;
wenzelm
parents: 62573
diff changeset
   547
    -l           list session source files
0c837beeb5e7 upgrade "isabelle build" to Isabelle/Scala;
wenzelm
parents: 62573
diff changeset
   548
    -n           no build -- test dependencies only
0c837beeb5e7 upgrade "isabelle build" to Isabelle/Scala;
wenzelm
parents: 62573
diff changeset
   549
    -o OPTION    override Isabelle system OPTION (via NAME=VAL or NAME)
0c837beeb5e7 upgrade "isabelle build" to Isabelle/Scala;
wenzelm
parents: 62573
diff changeset
   550
    -v           verbose
0c837beeb5e7 upgrade "isabelle build" to Isabelle/Scala;
wenzelm
parents: 62573
diff changeset
   551
    -x NAME      exclude session NAME and all descendants
0c837beeb5e7 upgrade "isabelle build" to Isabelle/Scala;
wenzelm
parents: 62573
diff changeset
   552
62596
cf79f8866bc3 tuned messages;
wenzelm
parents: 62595
diff changeset
   553
  Build and manage Isabelle sessions, depending on implicit settings:
cf79f8866bc3 tuned messages;
wenzelm
parents: 62595
diff changeset
   554
73736
a8ff6e4ee661 tuned signature;
wenzelm
parents: 73702
diff changeset
   555
""" + Library.indent_lines(2,  Build_Log.Settings.show()) + "\n",
75394
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   556
        "B:" -> (arg => base_sessions = base_sessions ::: List(arg)),
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   557
        "D:" -> (arg => select_dirs = select_dirs ::: List(Path.explode(arg))),
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   558
        "N" -> (_ => numa_shuffling = true),
75942
603852abed8f clarified names: Browser_Info.Config vs. Browser_Info.Context;
wenzelm
parents: 75941
diff changeset
   559
        "P:" -> (arg => browser_info = Browser_Info.Config.make(arg)),
75394
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   560
        "R" -> (_ => requirements = true),
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   561
        "S" -> (_ => soft_build = true),
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   562
        "X:" -> (arg => exclude_session_groups = exclude_session_groups ::: List(arg)),
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   563
        "a" -> (_ => all_sessions = true),
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   564
        "b" -> (_ => build_heap = true),
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   565
        "c" -> (_ => clean_build = true),
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   566
        "d:" -> (arg => dirs = dirs ::: List(Path.explode(arg))),
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   567
        "e" -> (_ => export_files = true),
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   568
        "f" -> (_ => fresh_build = true),
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   569
        "g:" -> (arg => session_groups = session_groups ::: List(arg)),
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   570
        "j:" -> (arg => max_jobs = Value.Int.parse(arg)),
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   571
        "k:" -> (arg => check_keywords = check_keywords + arg),
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   572
        "l" -> (_ => list_files = true),
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   573
        "n" -> (_ => no_build = true),
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   574
        "o:" -> (arg => options = options + arg),
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   575
        "v" -> (_ => verbose = true),
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   576
        "x:" -> (arg => exclude_sessions = exclude_sessions ::: List(arg)))
62590
0c837beeb5e7 upgrade "isabelle build" to Isabelle/Scala;
wenzelm
parents: 62573
diff changeset
   577
75394
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   578
      val sessions = getopts(args)
62590
0c837beeb5e7 upgrade "isabelle build" to Isabelle/Scala;
wenzelm
parents: 62573
diff changeset
   579
75394
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   580
      val progress = new Console_Progress(verbose = verbose)
62590
0c837beeb5e7 upgrade "isabelle build" to Isabelle/Scala;
wenzelm
parents: 62573
diff changeset
   581
75394
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   582
      val start_date = Date.now()
64140
96d398871124 modernized date format;
wenzelm
parents: 64115
diff changeset
   583
75394
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   584
      if (verbose) {
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   585
        progress.echo(
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   586
          "Started at " + Build_Log.print_date(start_date) +
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   587
            " (" + Isabelle_System.getenv("ML_IDENTIFIER") + " on " + Isabelle_System.hostname() +")")
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   588
        progress.echo(Build_Log.Settings.show() + "\n")
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   589
      }
62590
0c837beeb5e7 upgrade "isabelle build" to Isabelle/Scala;
wenzelm
parents: 62573
diff changeset
   590
75394
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   591
      val results =
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   592
        progress.interrupt_handler {
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   593
          build(options,
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   594
            selection = Sessions.Selection(
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   595
              requirements = requirements,
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   596
              all_sessions = all_sessions,
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   597
              base_sessions = base_sessions,
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   598
              exclude_session_groups = exclude_session_groups,
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   599
              exclude_sessions = exclude_sessions,
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   600
              session_groups = session_groups,
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   601
              sessions = sessions),
75942
603852abed8f clarified names: Browser_Info.Config vs. Browser_Info.Context;
wenzelm
parents: 75941
diff changeset
   602
            browser_info = browser_info,
75394
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   603
            progress = progress,
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   604
            check_unknown_files = Mercurial.is_repository(Path.ISABELLE_HOME),
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   605
            build_heap = build_heap,
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   606
            clean_build = clean_build,
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   607
            dirs = dirs,
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   608
            select_dirs = select_dirs,
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   609
            numa_shuffling = NUMA.enabled_warning(progress, numa_shuffling),
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   610
            max_jobs = max_jobs,
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   611
            list_files = list_files,
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   612
            check_keywords = check_keywords,
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   613
            fresh_build = fresh_build,
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   614
            no_build = no_build,
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   615
            soft_build = soft_build,
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   616
            verbose = verbose,
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   617
            export_files = export_files)
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   618
        }
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   619
      val end_date = Date.now()
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   620
      val elapsed_time = end_date.time - start_date.time
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   621
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   622
      if (verbose) {
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   623
        progress.echo("\nFinished at " + Build_Log.print_date(end_date))
62833
29dfa2ed9343 prefer internal tool;
wenzelm
parents: 62825
diff changeset
   624
      }
62590
0c837beeb5e7 upgrade "isabelle build" to Isabelle/Scala;
wenzelm
parents: 62573
diff changeset
   625
75394
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   626
      val total_timing =
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   627
        results.sessions.iterator.map(a => results(a).timing).foldLeft(Timing.zero)(_ + _).
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   628
          copy(elapsed = elapsed_time)
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   629
      progress.echo(total_timing.message_resources)
62590
0c837beeb5e7 upgrade "isabelle build" to Isabelle/Scala;
wenzelm
parents: 62573
diff changeset
   630
75394
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   631
      sys.exit(results.rc)
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   632
    })
68305
5321218147d3 clarified signature;
wenzelm
parents: 68292
diff changeset
   633
5321218147d3 clarified signature;
wenzelm
parents: 68292
diff changeset
   634
5321218147d3 clarified signature;
wenzelm
parents: 68292
diff changeset
   635
  /* build logic image */
5321218147d3 clarified signature;
wenzelm
parents: 68292
diff changeset
   636
5321218147d3 clarified signature;
wenzelm
parents: 68292
diff changeset
   637
  def build_logic(options: Options, logic: String,
71726
a5fda30edae2 clarified signature: more uniform treatment of stopped/interrupted state;
wenzelm
parents: 71718
diff changeset
   638
    progress: Progress = new Progress,
68305
5321218147d3 clarified signature;
wenzelm
parents: 68292
diff changeset
   639
    build_heap: Boolean = false,
5321218147d3 clarified signature;
wenzelm
parents: 68292
diff changeset
   640
    dirs: List[Path] = Nil,
70791
02edce6f0c71 clarified signature: more options;
wenzelm
parents: 70712
diff changeset
   641
    fresh: Boolean = false,
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74845
diff changeset
   642
    strict: Boolean = false
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74845
diff changeset
   643
  ): Int = {
71896
ce06d6456cc8 clarified signature --- fit within limit of 22 arguments;
wenzelm
parents: 71895
diff changeset
   644
    val selection = Sessions.Selection.session(logic)
69540
a1e8bcda8cec tuned signature;
wenzelm
parents: 69369
diff changeset
   645
    val rc =
71981
0be06f99b210 clarified signature;
wenzelm
parents: 71978
diff changeset
   646
      if (!fresh && build(options, selection = selection,
74306
a117c076aa22 clarified signature;
wenzelm
parents: 73826
diff changeset
   647
            build_heap = build_heap, no_build = true, dirs = dirs).ok) Process_Result.RC.ok
69540
a1e8bcda8cec tuned signature;
wenzelm
parents: 69369
diff changeset
   648
      else {
a1e8bcda8cec tuned signature;
wenzelm
parents: 69369
diff changeset
   649
        progress.echo("Build started for Isabelle/" + logic + " ...")
71981
0be06f99b210 clarified signature;
wenzelm
parents: 71978
diff changeset
   650
        Build.build(options, selection = selection, progress = progress,
0be06f99b210 clarified signature;
wenzelm
parents: 71978
diff changeset
   651
          build_heap = build_heap, fresh_build = fresh, dirs = dirs).rc
69540
a1e8bcda8cec tuned signature;
wenzelm
parents: 69369
diff changeset
   652
      }
74306
a117c076aa22 clarified signature;
wenzelm
parents: 73826
diff changeset
   653
    if (strict && rc != Process_Result.RC.ok) error("Failed to build Isabelle/" + logic) else rc
68305
5321218147d3 clarified signature;
wenzelm
parents: 68292
diff changeset
   654
  }
48276
4bd480886813 basic setup for Isabelle build tool;
wenzelm
parents:
diff changeset
   655
}