src/Pure/Admin/isabelle_cronjob.scala
author wenzelm
Sun, 24 Jan 2021 19:34:37 +0100
changeset 73183 ebf7babc05ce
parent 73141 13bd167f4d97
parent 73165 1004cb57d502
child 73185 b310b93563f6
permissions -rw-r--r--
merged, with minor edits: Admin/PLATFORMS, CONTRIBUTORS;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
64148
bbf43b7c4d0d basic setup for Isabelle cronjob;
wenzelm
parents:
diff changeset
     1
/*  Title:      Pure/Admin/isabelle_cronjob.scala
bbf43b7c4d0d basic setup for Isabelle cronjob;
wenzelm
parents:
diff changeset
     2
    Author:     Makarius
bbf43b7c4d0d basic setup for Isabelle cronjob;
wenzelm
parents:
diff changeset
     3
bbf43b7c4d0d basic setup for Isabelle cronjob;
wenzelm
parents:
diff changeset
     4
Main entry point for administrative cronjob at TUM.
bbf43b7c4d0d basic setup for Isabelle cronjob;
wenzelm
parents:
diff changeset
     5
*/
bbf43b7c4d0d basic setup for Isabelle cronjob;
wenzelm
parents:
diff changeset
     6
bbf43b7c4d0d basic setup for Isabelle cronjob;
wenzelm
parents:
diff changeset
     7
package isabelle
bbf43b7c4d0d basic setup for Isabelle cronjob;
wenzelm
parents:
diff changeset
     8
bbf43b7c4d0d basic setup for Isabelle cronjob;
wenzelm
parents:
diff changeset
     9
67854
8374c80165e1 publish current log file, e.g. for easy error detection;
wenzelm
parents: 67775
diff changeset
    10
import java.nio.file.Files
8374c80165e1 publish current log file, e.g. for easy error detection;
wenzelm
parents: 67775
diff changeset
    11
64170
a0c2cbe2fc8e more explicit management of tasks;
wenzelm
parents: 64162
diff changeset
    12
import scala.annotation.tailrec
a0c2cbe2fc8e more explicit management of tasks;
wenzelm
parents: 64162
diff changeset
    13
a0c2cbe2fc8e more explicit management of tasks;
wenzelm
parents: 64162
diff changeset
    14
64148
bbf43b7c4d0d basic setup for Isabelle cronjob;
wenzelm
parents:
diff changeset
    15
object Isabelle_Cronjob
bbf43b7c4d0d basic setup for Isabelle cronjob;
wenzelm
parents:
diff changeset
    16
{
66897
wenzelm
parents: 66896
diff changeset
    17
  /* global resources: owned by main cronjob */
64153
769791954872 some timing and logging, similar to old isatest.log;
wenzelm
parents: 64148
diff changeset
    18
67766
603334230303 consolidated main cronjob server on virtual machine together with build_log database;
wenzelm
parents: 67763
diff changeset
    19
  val backup = "lxbroy10:cronjob"
71601
97ccf48c2f0c misc tuning based on hints by IntelliJ IDEA;
wenzelm
parents: 71565
diff changeset
    20
  val main_dir: Path = Path.explode("~/cronjob")
97ccf48c2f0c misc tuning based on hints by IntelliJ IDEA;
wenzelm
parents: 71565
diff changeset
    21
  val main_state_file: Path = main_dir + Path.explode("run/main.state")
97ccf48c2f0c misc tuning based on hints by IntelliJ IDEA;
wenzelm
parents: 71565
diff changeset
    22
  val current_log: Path = main_dir + Path.explode("run/main.log")  // owned by log service
97ccf48c2f0c misc tuning based on hints by IntelliJ IDEA;
wenzelm
parents: 71565
diff changeset
    23
  val cumulative_log: Path = main_dir + Path.explode("log/main.log")  // owned by log service
64153
769791954872 some timing and logging, similar to old isatest.log;
wenzelm
parents: 64148
diff changeset
    24
68650
7538b5f301ea evade odd connection problems to https://isabelle.in.tum.de from some remote hosts;
wenzelm
parents: 68530
diff changeset
    25
  val isabelle_repos_source = "https://isabelle.sketis.net/repos/isabelle"
71601
97ccf48c2f0c misc tuning based on hints by IntelliJ IDEA;
wenzelm
parents: 71565
diff changeset
    26
  val isabelle_repos: Path = main_dir + Path.explode("isabelle")
97ccf48c2f0c misc tuning based on hints by IntelliJ IDEA;
wenzelm
parents: 71565
diff changeset
    27
  val afp_repos: Path = main_dir + Path.explode("AFP")
64236
358f9ff08681 discontinued somewhat pointless cronjob.options -- compile-time constants are sufficient;
wenzelm
parents: 64235
diff changeset
    28
72559
274c9986e55b maintain Isabelle mailing list archives;
wenzelm
parents: 72483
diff changeset
    29
  val mailman_archives_dir = Path.explode("~/cronjob/Mailman")
274c9986e55b maintain Isabelle mailing list archives;
wenzelm
parents: 72483
diff changeset
    30
66896
85e6748bf8b2 clarified signature;
wenzelm
parents: 66895
diff changeset
    31
  val build_log_dirs =
85e6748bf8b2 clarified signature;
wenzelm
parents: 66895
diff changeset
    32
    List(Path.explode("~/log"), Path.explode("~/afp/log"), Path.explode("~/cronjob/log"))
85e6748bf8b2 clarified signature;
wenzelm
parents: 66895
diff changeset
    33
64153
769791954872 some timing and logging, similar to old isatest.log;
wenzelm
parents: 64148
diff changeset
    34
64192
wenzelm
parents: 64187
diff changeset
    35
67752
636f633552a3 clarified signature: facilitate interactive experimentation;
wenzelm
parents: 67751
diff changeset
    36
  /** logger tasks **/
636f633552a3 clarified signature: facilitate interactive experimentation;
wenzelm
parents: 67751
diff changeset
    37
636f633552a3 clarified signature: facilitate interactive experimentation;
wenzelm
parents: 67751
diff changeset
    38
  sealed case class Logger_Task(name: String = "", body: Logger => Unit)
636f633552a3 clarified signature: facilitate interactive experimentation;
wenzelm
parents: 67751
diff changeset
    39
64192
wenzelm
parents: 64187
diff changeset
    40
67766
603334230303 consolidated main cronjob server on virtual machine together with build_log database;
wenzelm
parents: 67763
diff changeset
    41
  /* init and exit */
64192
wenzelm
parents: 64187
diff changeset
    42
67753
f28aee3ad1e6 uniform setup_repository (pull/clone without update);
wenzelm
parents: 67752
diff changeset
    43
  def get_rev(): String = Mercurial.repository(isabelle_repos).id()
f28aee3ad1e6 uniform setup_repository (pull/clone without update);
wenzelm
parents: 67752
diff changeset
    44
  def get_afp_rev(): String = Mercurial.repository(afp_repos).id()
f28aee3ad1e6 uniform setup_repository (pull/clone without update);
wenzelm
parents: 67752
diff changeset
    45
71601
97ccf48c2f0c misc tuning based on hints by IntelliJ IDEA;
wenzelm
parents: 71565
diff changeset
    46
  val init: Logger_Task =
67751
361d41701de0 clarified tasks;
wenzelm
parents: 67750
diff changeset
    47
    Logger_Task("init", logger =>
66859
dd846a805fb1 tuned whitespace;
wenzelm
parents: 66858
diff changeset
    48
      {
dd846a805fb1 tuned whitespace;
wenzelm
parents: 66858
diff changeset
    49
        Isabelle_Devel.make_index()
65771
688a7dd22cbb make index formally within Isabelle/Scala;
wenzelm
parents: 65770
diff changeset
    50
67753
f28aee3ad1e6 uniform setup_repository (pull/clone without update);
wenzelm
parents: 67752
diff changeset
    51
        Mercurial.setup_repository(isabelle_repos_source, isabelle_repos)
f28aee3ad1e6 uniform setup_repository (pull/clone without update);
wenzelm
parents: 67752
diff changeset
    52
        Mercurial.setup_repository(AFP.repos_source, afp_repos)
64192
wenzelm
parents: 64187
diff changeset
    53
66859
dd846a805fb1 tuned whitespace;
wenzelm
parents: 66858
diff changeset
    54
        File.write(logger.log_dir + Build_Log.log_filename("isabelle_identify", logger.start_date),
67753
f28aee3ad1e6 uniform setup_repository (pull/clone without update);
wenzelm
parents: 67752
diff changeset
    55
          Build_Log.Identify.content(logger.start_date, Some(get_rev()), Some(get_afp_rev())))
67766
603334230303 consolidated main cronjob server on virtual machine together with build_log database;
wenzelm
parents: 67763
diff changeset
    56
603334230303 consolidated main cronjob server on virtual machine together with build_log database;
wenzelm
parents: 67763
diff changeset
    57
        Isabelle_System.bash(
603334230303 consolidated main cronjob server on virtual machine together with build_log database;
wenzelm
parents: 67763
diff changeset
    58
          """rsync -a --include="*/" --include="plain_identify*" --exclude="*" """ +
69199
e5e4de2b93d9 more robust: allow log to be a symlink;
wenzelm
parents: 68650
diff changeset
    59
            Bash.string(backup + "/log/.") + " " + File.bash_path(main_dir) + "/log/.").check
67854
8374c80165e1 publish current log file, e.g. for easy error detection;
wenzelm
parents: 67775
diff changeset
    60
8374c80165e1 publish current log file, e.g. for easy error detection;
wenzelm
parents: 67775
diff changeset
    61
        if (!Isabelle_Devel.cronjob_log.is_file)
8374c80165e1 publish current log file, e.g. for easy error detection;
wenzelm
parents: 67775
diff changeset
    62
          Files.createSymbolicLink(Isabelle_Devel.cronjob_log.file.toPath, current_log.file.toPath)
67766
603334230303 consolidated main cronjob server on virtual machine together with build_log database;
wenzelm
parents: 67763
diff changeset
    63
      })
603334230303 consolidated main cronjob server on virtual machine together with build_log database;
wenzelm
parents: 67763
diff changeset
    64
71601
97ccf48c2f0c misc tuning based on hints by IntelliJ IDEA;
wenzelm
parents: 71565
diff changeset
    65
  val exit: Logger_Task =
67766
603334230303 consolidated main cronjob server on virtual machine together with build_log database;
wenzelm
parents: 67763
diff changeset
    66
    Logger_Task("exit", logger =>
603334230303 consolidated main cronjob server on virtual machine together with build_log database;
wenzelm
parents: 67763
diff changeset
    67
      {
603334230303 consolidated main cronjob server on virtual machine together with build_log database;
wenzelm
parents: 67763
diff changeset
    68
        Isabelle_System.bash(
69199
e5e4de2b93d9 more robust: allow log to be a symlink;
wenzelm
parents: 68650
diff changeset
    69
          "rsync -a " + File.bash_path(main_dir) + "/log/." + " " + Bash.string(backup) + "/log/.")
67769
20c262dcfdf5 proper target directory;
wenzelm
parents: 67766
diff changeset
    70
            .check
67751
361d41701de0 clarified tasks;
wenzelm
parents: 67750
diff changeset
    71
      })
361d41701de0 clarified tasks;
wenzelm
parents: 67750
diff changeset
    72
361d41701de0 clarified tasks;
wenzelm
parents: 67750
diff changeset
    73
72559
274c9986e55b maintain Isabelle mailing list archives;
wenzelm
parents: 72483
diff changeset
    74
  /* Mailman archives */
274c9986e55b maintain Isabelle mailing list archives;
wenzelm
parents: 72483
diff changeset
    75
274c9986e55b maintain Isabelle mailing list archives;
wenzelm
parents: 72483
diff changeset
    76
  val mailman_archives: Logger_Task =
274c9986e55b maintain Isabelle mailing list archives;
wenzelm
parents: 72483
diff changeset
    77
    Logger_Task("mailman_archives", logger =>
274c9986e55b maintain Isabelle mailing list archives;
wenzelm
parents: 72483
diff changeset
    78
      {
274c9986e55b maintain Isabelle mailing list archives;
wenzelm
parents: 72483
diff changeset
    79
        Mailman.isabelle_users.download(mailman_archives_dir)
274c9986e55b maintain Isabelle mailing list archives;
wenzelm
parents: 72483
diff changeset
    80
        Mailman.isabelle_dev.download(mailman_archives_dir)
274c9986e55b maintain Isabelle mailing list archives;
wenzelm
parents: 72483
diff changeset
    81
      })
274c9986e55b maintain Isabelle mailing list archives;
wenzelm
parents: 72483
diff changeset
    82
274c9986e55b maintain Isabelle mailing list archives;
wenzelm
parents: 72483
diff changeset
    83
67751
361d41701de0 clarified tasks;
wenzelm
parents: 67750
diff changeset
    84
  /* build release */
361d41701de0 clarified tasks;
wenzelm
parents: 67750
diff changeset
    85
71601
97ccf48c2f0c misc tuning based on hints by IntelliJ IDEA;
wenzelm
parents: 71565
diff changeset
    86
  val build_release: Logger_Task =
67751
361d41701de0 clarified tasks;
wenzelm
parents: 67750
diff changeset
    87
    Logger_Task("build_release", logger =>
361d41701de0 clarified tasks;
wenzelm
parents: 67750
diff changeset
    88
      {
69432
d072f3287ffa discontinued somewhat point dmg: plain .tar.gz is smaller and more convenient to install;
wenzelm
parents: 69401
diff changeset
    89
        Isabelle_Devel.release_snapshot(logger.options, rev = get_rev(), afp_rev = get_afp_rev())
66859
dd846a805fb1 tuned whitespace;
wenzelm
parents: 66858
diff changeset
    90
      })
64192
wenzelm
parents: 64187
diff changeset
    91
wenzelm
parents: 64187
diff changeset
    92
64194
b5ada7dcceaa integrity test of build_history vs. build_history_base;
wenzelm
parents: 64193
diff changeset
    93
  /* integrity test of build_history vs. build_history_base */
64193
7a7e370e2523 clarified log_subdir vs. log_filename;
wenzelm
parents: 64192
diff changeset
    94
71601
97ccf48c2f0c misc tuning based on hints by IntelliJ IDEA;
wenzelm
parents: 71565
diff changeset
    95
  val build_history_base: Logger_Task =
64193
7a7e370e2523 clarified log_subdir vs. log_filename;
wenzelm
parents: 64192
diff changeset
    96
    Logger_Task("build_history_base", logger =>
7a7e370e2523 clarified log_subdir vs. log_filename;
wenzelm
parents: 64192
diff changeset
    97
      {
67774
5437491732d2 build_history_base as remote build on lxbroy10: thus self_update has already happened once, and thus avoids conflicts with parallel builds on shared home directory;
wenzelm
parents: 67772
diff changeset
    98
        using(logger.ssh_context.open_session("lxbroy10"))(ssh =>
5437491732d2 build_history_base as remote build on lxbroy10: thus self_update has already happened once, and thus avoids conflicts with parallel builds on shared home directory;
wenzelm
parents: 67772
diff changeset
    99
          {
5437491732d2 build_history_base as remote build on lxbroy10: thus self_update has already happened once, and thus avoids conflicts with parallel builds on shared home directory;
wenzelm
parents: 67772
diff changeset
   100
            val results =
5437491732d2 build_history_base as remote build on lxbroy10: thus self_update has already happened once, and thus avoids conflicts with parallel builds on shared home directory;
wenzelm
parents: 67772
diff changeset
   101
              Build_History.remote_build_history(ssh,
5437491732d2 build_history_base as remote build on lxbroy10: thus self_update has already happened once, and thus avoids conflicts with parallel builds on shared home directory;
wenzelm
parents: 67772
diff changeset
   102
                isabelle_repos,
5437491732d2 build_history_base as remote build on lxbroy10: thus self_update has already happened once, and thus avoids conflicts with parallel builds on shared home directory;
wenzelm
parents: 67772
diff changeset
   103
                isabelle_repos.ext("build_history_base"),
5437491732d2 build_history_base as remote build on lxbroy10: thus self_update has already happened once, and thus avoids conflicts with parallel builds on shared home directory;
wenzelm
parents: 67772
diff changeset
   104
                isabelle_identifier = "cronjob_build_history",
5437491732d2 build_history_base as remote build on lxbroy10: thus self_update has already happened once, and thus avoids conflicts with parallel builds on shared home directory;
wenzelm
parents: 67772
diff changeset
   105
                self_update = true,
5437491732d2 build_history_base as remote build on lxbroy10: thus self_update has already happened once, and thus avoids conflicts with parallel builds on shared home directory;
wenzelm
parents: 67772
diff changeset
   106
                rev = "build_history_base",
5437491732d2 build_history_base as remote build on lxbroy10: thus self_update has already happened once, and thus avoids conflicts with parallel builds on shared home directory;
wenzelm
parents: 67772
diff changeset
   107
                options = "-f",
5437491732d2 build_history_base as remote build on lxbroy10: thus self_update has already happened once, and thus avoids conflicts with parallel builds on shared home directory;
wenzelm
parents: 67772
diff changeset
   108
                args = "HOL")
5437491732d2 build_history_base as remote build on lxbroy10: thus self_update has already happened once, and thus avoids conflicts with parallel builds on shared home directory;
wenzelm
parents: 67772
diff changeset
   109
5437491732d2 build_history_base as remote build on lxbroy10: thus self_update has already happened once, and thus avoids conflicts with parallel builds on shared home directory;
wenzelm
parents: 67772
diff changeset
   110
            for ((log_name, bytes) <- results) {
5437491732d2 build_history_base as remote build on lxbroy10: thus self_update has already happened once, and thus avoids conflicts with parallel builds on shared home directory;
wenzelm
parents: 67772
diff changeset
   111
              Bytes.write(logger.log_dir + Path.explode(log_name), bytes)
5437491732d2 build_history_base as remote build on lxbroy10: thus self_update has already happened once, and thus avoids conflicts with parallel builds on shared home directory;
wenzelm
parents: 67772
diff changeset
   112
            }
5437491732d2 build_history_base as remote build on lxbroy10: thus self_update has already happened once, and thus avoids conflicts with parallel builds on shared home directory;
wenzelm
parents: 67772
diff changeset
   113
          })
64193
7a7e370e2523 clarified log_subdir vs. log_filename;
wenzelm
parents: 64192
diff changeset
   114
      })
7a7e370e2523 clarified log_subdir vs. log_filename;
wenzelm
parents: 64192
diff changeset
   115
7a7e370e2523 clarified log_subdir vs. log_filename;
wenzelm
parents: 64192
diff changeset
   116
64231
dbc8294c75d3 added remote_build_history tasks: parallel on several remote hosts;
wenzelm
parents: 64220
diff changeset
   117
  /* remote build_history */
dbc8294c75d3 added remote_build_history tasks: parallel on several remote hosts;
wenzelm
parents: 64220
diff changeset
   118
66864
5cb8ccc46e3e support for AFP versions;
wenzelm
parents: 66861
diff changeset
   119
  sealed case class Item(
5cb8ccc46e3e support for AFP versions;
wenzelm
parents: 66861
diff changeset
   120
    known: Boolean,
5cb8ccc46e3e support for AFP versions;
wenzelm
parents: 66861
diff changeset
   121
    isabelle_version: String,
5cb8ccc46e3e support for AFP versions;
wenzelm
parents: 66861
diff changeset
   122
    afp_version: Option[String],
5cb8ccc46e3e support for AFP versions;
wenzelm
parents: 66861
diff changeset
   123
    pull_date: Date)
65783
d3d5cb2d6866 pick isabelle_version based on build_log database;
wenzelm
parents: 65771
diff changeset
   124
  {
d3d5cb2d6866 pick isabelle_version based on build_log database;
wenzelm
parents: 65771
diff changeset
   125
    def unknown: Boolean = !known
66864
5cb8ccc46e3e support for AFP versions;
wenzelm
parents: 66861
diff changeset
   126
    def versions: (String, Option[String]) = (isabelle_version, afp_version)
5cb8ccc46e3e support for AFP versions;
wenzelm
parents: 66861
diff changeset
   127
5cb8ccc46e3e support for AFP versions;
wenzelm
parents: 66861
diff changeset
   128
    def known_versions(rev: String, afp_rev: Option[String]): Boolean =
5cb8ccc46e3e support for AFP versions;
wenzelm
parents: 66861
diff changeset
   129
      known && rev != "" && isabelle_version == rev &&
71380
5965e6e3c3ec proper comparison of Option values, following hint by IntelliJ;
wenzelm
parents: 70757
diff changeset
   130
      (afp_rev.isEmpty || afp_rev.get != "" && afp_version == afp_rev)
65783
d3d5cb2d6866 pick isabelle_version based on build_log database;
wenzelm
parents: 65771
diff changeset
   131
  }
d3d5cb2d6866 pick isabelle_version based on build_log database;
wenzelm
parents: 65771
diff changeset
   132
66864
5cb8ccc46e3e support for AFP versions;
wenzelm
parents: 66861
diff changeset
   133
  def recent_items(db: SQL.Database,
5cb8ccc46e3e support for AFP versions;
wenzelm
parents: 66861
diff changeset
   134
    days: Int, rev: String, afp_rev: Option[String], sql: SQL.Source): List[Item] =
65807
a830c6257393 tuned -- more open to experimentation;
wenzelm
parents: 65806
diff changeset
   135
  {
66880
486f4af28db9 more thorough treatment of afp_version and afp_pull_date;
wenzelm
parents: 66879
diff changeset
   136
    val afp = afp_rev.isDefined
65807
a830c6257393 tuned -- more open to experimentation;
wenzelm
parents: 65806
diff changeset
   137
    val select =
66864
5cb8ccc46e3e support for AFP versions;
wenzelm
parents: 66861
diff changeset
   138
      Build_Log.Data.select_recent_versions(
5cb8ccc46e3e support for AFP versions;
wenzelm
parents: 66861
diff changeset
   139
        days = days, rev = rev, afp_rev = afp_rev, sql = "WHERE " + sql)
65807
a830c6257393 tuned -- more open to experimentation;
wenzelm
parents: 65806
diff changeset
   140
a830c6257393 tuned -- more open to experimentation;
wenzelm
parents: 65806
diff changeset
   141
    db.using_statement(select)(stmt =>
a830c6257393 tuned -- more open to experimentation;
wenzelm
parents: 65806
diff changeset
   142
      stmt.execute_query().iterator(res =>
a830c6257393 tuned -- more open to experimentation;
wenzelm
parents: 65806
diff changeset
   143
      {
a830c6257393 tuned -- more open to experimentation;
wenzelm
parents: 65806
diff changeset
   144
        val known = res.bool(Build_Log.Data.known)
a830c6257393 tuned -- more open to experimentation;
wenzelm
parents: 65806
diff changeset
   145
        val isabelle_version = res.string(Build_Log.Prop.isabelle_version)
66880
486f4af28db9 more thorough treatment of afp_version and afp_pull_date;
wenzelm
parents: 66879
diff changeset
   146
        val afp_version = if (afp) proper_string(res.string(Build_Log.Prop.afp_version)) else None
486f4af28db9 more thorough treatment of afp_version and afp_pull_date;
wenzelm
parents: 66879
diff changeset
   147
        val pull_date = res.date(Build_Log.Data.pull_date(afp))
66864
5cb8ccc46e3e support for AFP versions;
wenzelm
parents: 66861
diff changeset
   148
        Item(known, isabelle_version, afp_version, pull_date)
65807
a830c6257393 tuned -- more open to experimentation;
wenzelm
parents: 65806
diff changeset
   149
      }).toList)
a830c6257393 tuned -- more open to experimentation;
wenzelm
parents: 65806
diff changeset
   150
  }
a830c6257393 tuned -- more open to experimentation;
wenzelm
parents: 65806
diff changeset
   151
a830c6257393 tuned -- more open to experimentation;
wenzelm
parents: 65806
diff changeset
   152
  def unknown_runs(items: List[Item]): List[List[Item]] =
a830c6257393 tuned -- more open to experimentation;
wenzelm
parents: 65806
diff changeset
   153
  {
a830c6257393 tuned -- more open to experimentation;
wenzelm
parents: 65806
diff changeset
   154
    val (run, rest) = Library.take_prefix[Item](_.unknown, items.dropWhile(_.known))
a830c6257393 tuned -- more open to experimentation;
wenzelm
parents: 65806
diff changeset
   155
    if (run.nonEmpty) run :: unknown_runs(rest) else Nil
a830c6257393 tuned -- more open to experimentation;
wenzelm
parents: 65806
diff changeset
   156
  }
a830c6257393 tuned -- more open to experimentation;
wenzelm
parents: 65806
diff changeset
   157
64409
70c87ca55f2c tuned signature -- more friendly for experimentation;
wenzelm
parents: 64405
diff changeset
   158
  sealed case class Remote_Build(
65764
1af6d544c2a3 clarified description vs. file name;
wenzelm
parents: 65747
diff changeset
   159
    description: String,
64231
dbc8294c75d3 added remote_build_history tasks: parallel on several remote hosts;
wenzelm
parents: 64220
diff changeset
   160
    host: String,
71564
03133befa33b support actual_host for lrzcloud2: the proxy_host/sshd cannot resolve invented hostname (amending 1d8b6c2253e6);
wenzelm
parents: 71563
diff changeset
   161
    actual_host: String = "",
64231
dbc8294c75d3 added remote_build_history tasks: parallel on several remote hosts;
wenzelm
parents: 64220
diff changeset
   162
    user: String = "",
65594
659305708959 clarified treatment of default port;
wenzelm
parents: 65063
diff changeset
   163
    port: Int = 0,
67746
cb0f0f5f8876 more ssh options;
wenzelm
parents: 67608
diff changeset
   164
    proxy_host: String = "",
cb0f0f5f8876 more ssh options;
wenzelm
parents: 67608
diff changeset
   165
    proxy_user: String = "",
cb0f0f5f8876 more ssh options;
wenzelm
parents: 67608
diff changeset
   166
    proxy_port: Int = 0,
67775
8fe8424ff0d3 clarified signature;
wenzelm
parents: 67774
diff changeset
   167
    self_update: Boolean = false,
65820
a5d4958d0901 explicit history_base;
wenzelm
parents: 65810
diff changeset
   168
    historic: Boolean = false,
65789
fccd7be5fa55 enter deeper into history;
wenzelm
parents: 65785
diff changeset
   169
    history: Int = 0,
65820
a5d4958d0901 explicit history_base;
wenzelm
parents: 65810
diff changeset
   170
    history_base: String = "build_history_base",
71993
088e3aa85250 clarified signature;
wenzelm
parents: 71983
diff changeset
   171
    java_heap: String = "",
64231
dbc8294c75d3 added remote_build_history tasks: parallel on several remote hosts;
wenzelm
parents: 64220
diff changeset
   172
    options: String = "",
65732
7864aea16a87 detect database entries;
wenzelm
parents: 65723
diff changeset
   173
    args: String = "",
66864
5cb8ccc46e3e support for AFP versions;
wenzelm
parents: 66861
diff changeset
   174
    afp: Boolean = false,
69693
06153e2e0cdb more official AFP.groups;
wenzelm
parents: 69432
diff changeset
   175
    bulky: Boolean = false,
67075
eada9bd5fff2 avoid lxbroy7, which is presently inaccessible, but retain its build history in db queries;
wenzelm
parents: 67070
diff changeset
   176
    more_hosts: List[String] = Nil,
67080
2c0f24e927dd macbroy2 is inactive: system update;
wenzelm
parents: 67075
diff changeset
   177
    detect: SQL.Source = "",
2c0f24e927dd macbroy2 is inactive: system update;
wenzelm
parents: 67075
diff changeset
   178
    active: Boolean = true)
65732
7864aea16a87 detect database entries;
wenzelm
parents: 65723
diff changeset
   179
  {
67750
58a33c568464 tuned signature;
wenzelm
parents: 67746
diff changeset
   180
    def ssh_session(context: SSH.Context): SSH.Session =
71564
03133befa33b support actual_host for lrzcloud2: the proxy_host/sshd cannot resolve invented hostname (amending 1d8b6c2253e6);
wenzelm
parents: 71563
diff changeset
   181
      context.open_session(host = host, user = user, port = port, actual_host = actual_host,
67772
71a318559e30 proxy setup for lrzcloud1;
wenzelm
parents: 67769
diff changeset
   182
        proxy_host = proxy_host, proxy_user = proxy_user, proxy_port = proxy_port,
71554
2a82462276db more robust connection via proxy_host;
wenzelm
parents: 71538
diff changeset
   183
        permissive = proxy_host.nonEmpty)
67750
58a33c568464 tuned signature;
wenzelm
parents: 67746
diff changeset
   184
65783
d3d5cb2d6866 pick isabelle_version based on build_log database;
wenzelm
parents: 65771
diff changeset
   185
    def sql: SQL.Source =
d3d5cb2d6866 pick isabelle_version based on build_log database;
wenzelm
parents: 65771
diff changeset
   186
      Build_Log.Prop.build_engine + " = " + SQL.string(Build_History.engine) + " AND " +
67075
eada9bd5fff2 avoid lxbroy7, which is presently inaccessible, but retain its build history in db queries;
wenzelm
parents: 67070
diff changeset
   187
      SQL.member(Build_Log.Prop.build_host.ident, host :: more_hosts) +
65783
d3d5cb2d6866 pick isabelle_version based on build_log database;
wenzelm
parents: 65771
diff changeset
   188
      (if (detect == "") "" else " AND " + SQL.enclose(detect))
d3d5cb2d6866 pick isabelle_version based on build_log database;
wenzelm
parents: 65771
diff changeset
   189
65747
5a3052b2095f tuned signature;
wenzelm
parents: 65746
diff changeset
   190
    def profile: Build_Status.Profile =
69693
06153e2e0cdb more official AFP.groups;
wenzelm
parents: 69432
diff changeset
   191
      Build_Status.Profile(description, history = history, afp = afp, bulky = bulky, sql = sql)
65783
d3d5cb2d6866 pick isabelle_version based on build_log database;
wenzelm
parents: 65771
diff changeset
   192
66864
5cb8ccc46e3e support for AFP versions;
wenzelm
parents: 66861
diff changeset
   193
    def pick(
5cb8ccc46e3e support for AFP versions;
wenzelm
parents: 66861
diff changeset
   194
      options: Options,
5cb8ccc46e3e support for AFP versions;
wenzelm
parents: 66861
diff changeset
   195
      rev: String = "",
66865
c8b18abf23e1 tuned (graph.all_succs already contains origin);
wenzelm
parents: 66864
diff changeset
   196
      filter: Item => Boolean = _ => true): Option[(String, Option[String])] =
65747
5a3052b2095f tuned signature;
wenzelm
parents: 65746
diff changeset
   197
    {
67753
f28aee3ad1e6 uniform setup_repository (pull/clone without update);
wenzelm
parents: 67752
diff changeset
   198
      val afp_rev = if (afp) Some(get_afp_rev()) else None
66864
5cb8ccc46e3e support for AFP versions;
wenzelm
parents: 66861
diff changeset
   199
65783
d3d5cb2d6866 pick isabelle_version based on build_log database;
wenzelm
parents: 65771
diff changeset
   200
      val store = Build_Log.store(options)
d3d5cb2d6866 pick isabelle_version based on build_log database;
wenzelm
parents: 65771
diff changeset
   201
      using(store.open_database())(db =>
d3d5cb2d6866 pick isabelle_version based on build_log database;
wenzelm
parents: 65771
diff changeset
   202
      {
66864
5cb8ccc46e3e support for AFP versions;
wenzelm
parents: 66861
diff changeset
   203
        def pick_days(days: Int, gap: Int): Option[(String, Option[String])] =
65810
356c2b488cf3 explore older history;
wenzelm
parents: 65809
diff changeset
   204
        {
66865
c8b18abf23e1 tuned (graph.all_succs already contains origin);
wenzelm
parents: 66864
diff changeset
   205
          val items = recent_items(db, days, rev, afp_rev, sql).filter(filter)
66007
6706d6f0afda cover more history;
wenzelm
parents: 65949
diff changeset
   206
          def runs = unknown_runs(items).filter(run => run.length >= gap)
65783
d3d5cb2d6866 pick isabelle_version based on build_log database;
wenzelm
parents: 65771
diff changeset
   207
66864
5cb8ccc46e3e support for AFP versions;
wenzelm
parents: 66861
diff changeset
   208
          if (historic || items.exists(_.known_versions(rev, afp_rev))) {
65810
356c2b488cf3 explore older history;
wenzelm
parents: 65809
diff changeset
   209
            val longest_run =
356c2b488cf3 explore older history;
wenzelm
parents: 65809
diff changeset
   210
              (List.empty[Item] /: runs)({ case (item1, item2) =>
356c2b488cf3 explore older history;
wenzelm
parents: 65809
diff changeset
   211
                if (item1.length >= item2.length) item1 else item2
356c2b488cf3 explore older history;
wenzelm
parents: 65809
diff changeset
   212
              })
356c2b488cf3 explore older history;
wenzelm
parents: 65809
diff changeset
   213
            if (longest_run.isEmpty) None
66864
5cb8ccc46e3e support for AFP versions;
wenzelm
parents: 66861
diff changeset
   214
            else Some(longest_run(longest_run.length / 2).versions)
65810
356c2b488cf3 explore older history;
wenzelm
parents: 65809
diff changeset
   215
          }
66864
5cb8ccc46e3e support for AFP versions;
wenzelm
parents: 66861
diff changeset
   216
          else if (rev != "") Some((rev, afp_rev))
5cb8ccc46e3e support for AFP versions;
wenzelm
parents: 66861
diff changeset
   217
          else runs.flatten.headOption.map(_.versions)
65783
d3d5cb2d6866 pick isabelle_version based on build_log database;
wenzelm
parents: 65771
diff changeset
   218
        }
65810
356c2b488cf3 explore older history;
wenzelm
parents: 65809
diff changeset
   219
66007
6706d6f0afda cover more history;
wenzelm
parents: 65949
diff changeset
   220
        pick_days(options.int("build_log_history") max history, 2) orElse
6706d6f0afda cover more history;
wenzelm
parents: 65949
diff changeset
   221
        pick_days(200, 5) orElse
6706d6f0afda cover more history;
wenzelm
parents: 65949
diff changeset
   222
        pick_days(2000, 1)
65783
d3d5cb2d6866 pick isabelle_version based on build_log database;
wenzelm
parents: 65771
diff changeset
   223
      })
65747
5a3052b2095f tuned signature;
wenzelm
parents: 65746
diff changeset
   224
    }
65732
7864aea16a87 detect database entries;
wenzelm
parents: 65723
diff changeset
   225
  }
64231
dbc8294c75d3 added remote_build_history tasks: parallel on several remote hosts;
wenzelm
parents: 64220
diff changeset
   226
65806
0156222f2a18 tuned -- more visible;
wenzelm
parents: 65805
diff changeset
   227
  val remote_builds_old: List[Remote_Build] =
0156222f2a18 tuned -- more visible;
wenzelm
parents: 65805
diff changeset
   228
    List(
72391
37c1fbcc88d0 discontinued old machines;
wenzelm
parents: 72390
diff changeset
   229
      Remote_Build("Linux A", "lxbroy9",
37c1fbcc88d0 discontinued old machines;
wenzelm
parents: 72390
diff changeset
   230
        java_heap = "2g", options = "-m32 -B -M1x2,2", args = "-N -g timing"),
37c1fbcc88d0 discontinued old machines;
wenzelm
parents: 72390
diff changeset
   231
      Remote_Build("Linux Benchmarks", "lxbroy5", historic = true, history = 90,
37c1fbcc88d0 discontinued old machines;
wenzelm
parents: 72390
diff changeset
   232
        java_heap = "2g",
37c1fbcc88d0 discontinued old machines;
wenzelm
parents: 72390
diff changeset
   233
        options = "-m32 -B -M1x2,2 -t Benchmarks" +
37c1fbcc88d0 discontinued old machines;
wenzelm
parents: 72390
diff changeset
   234
          " -e ISABELLE_GHC=ghc -e ISABELLE_MLTON=mlton -e ISABELLE_OCAML=ocaml" +
37c1fbcc88d0 discontinued old machines;
wenzelm
parents: 72390
diff changeset
   235
          " -e ISABELLE_OCAMLC=ocamlc -e ISABELLE_OCAMLFIND=ocamlfind -e ISABELLE_SMLNJ=sml" +
37c1fbcc88d0 discontinued old machines;
wenzelm
parents: 72390
diff changeset
   236
          " -e ISABELLE_SWIPL=swipl",
37c1fbcc88d0 discontinued old machines;
wenzelm
parents: 72390
diff changeset
   237
        args = "-N -a -d '~~/src/Benchmarks'",
37c1fbcc88d0 discontinued old machines;
wenzelm
parents: 72390
diff changeset
   238
        detect = Build_Log.Prop.build_tags + " = " + SQL.string("Benchmarks")),
72894
bd2269b6cd99 updated "macOS" terminology: current Big Sur is already version 11;
wenzelm
parents: 72893
diff changeset
   239
      Remote_Build("macOS 10.14 Mojave (Old)", "lapnipkow3",
72390
ed95980cf198 updated tests for macOS 10.14 Mojave;
wenzelm
parents: 72376
diff changeset
   240
        options = "-m32 -M1,2 -e ISABELLE_GHC_SETUP=true -p pide_session=false",
ed95980cf198 updated tests for macOS 10.14 Mojave;
wenzelm
parents: 72376
diff changeset
   241
        self_update = true, args = "-a -d '~~/src/Benchmarks'"),
72073
f56522a44564 clarified names;
wenzelm
parents: 71999
diff changeset
   242
      Remote_Build("AFP old bulky", "lrzcloud1", self_update = true,
70757
6a835635fa93 disable lrzcloud1 -- superseded by lrzcloud2;
wenzelm
parents: 70477
diff changeset
   243
        proxy_host = "lxbroy10", proxy_user = "i21isatest",
6a835635fa93 disable lrzcloud1 -- superseded by lrzcloud2;
wenzelm
parents: 70477
diff changeset
   244
        options = "-m64 -M6 -U30000 -s10 -t AFP",
6a835635fa93 disable lrzcloud1 -- superseded by lrzcloud2;
wenzelm
parents: 70477
diff changeset
   245
        args = "-g large -g slow",
6a835635fa93 disable lrzcloud1 -- superseded by lrzcloud2;
wenzelm
parents: 70477
diff changeset
   246
        afp = true,
6a835635fa93 disable lrzcloud1 -- superseded by lrzcloud2;
wenzelm
parents: 70477
diff changeset
   247
        bulky = true,
6a835635fa93 disable lrzcloud1 -- superseded by lrzcloud2;
wenzelm
parents: 70477
diff changeset
   248
        detect = Build_Log.Prop.build_tags + " = " + SQL.string("AFP")),
72073
f56522a44564 clarified names;
wenzelm
parents: 71999
diff changeset
   249
      Remote_Build("AFP old", "lxbroy7",
69693
06153e2e0cdb more official AFP.groups;
wenzelm
parents: 69432
diff changeset
   250
          args = "-N -X large -X slow",
67608
1b2be3666b89 retain remote_builds_old for build_status;
wenzelm
parents: 67607
diff changeset
   251
          afp = true,
1b2be3666b89 retain remote_builds_old for build_status;
wenzelm
parents: 67607
diff changeset
   252
          detect = Build_Log.Prop.build_tags + " = " + SQL.string("AFP")),
66762
9bef97f78b60 updated test version;
wenzelm
parents: 66609
diff changeset
   253
      Remote_Build("Poly/ML 5.7 Linux", "lxbroy8",
9bef97f78b60 updated test version;
wenzelm
parents: 66609
diff changeset
   254
        history_base = "37074e22e8be",
9bef97f78b60 updated test version;
wenzelm
parents: 66609
diff changeset
   255
        options = "-m32 -B -M1x2,2 -t polyml-5.7 -i 'init_component /home/isabelle/contrib/polyml-5.7'",
9bef97f78b60 updated test version;
wenzelm
parents: 66609
diff changeset
   256
        args = "-N -g timing",
9bef97f78b60 updated test version;
wenzelm
parents: 66609
diff changeset
   257
        detect = Build_Log.Prop.build_tags + " = " + SQL.string("polyml-5.7") + " AND " +
9bef97f78b60 updated test version;
wenzelm
parents: 66609
diff changeset
   258
          Build_Log.Settings.ML_OPTIONS + " <> " + SQL.string("-H 500")),
66931
4ff031d249b2 deactivated old tests;
wenzelm
parents: 66923
diff changeset
   259
      Remote_Build("Poly/ML 5.7.1 Linux", "lxbroy8",
4ff031d249b2 deactivated old tests;
wenzelm
parents: 66923
diff changeset
   260
        history_base = "a9d5b59c3e12",
4ff031d249b2 deactivated old tests;
wenzelm
parents: 66923
diff changeset
   261
        options = "-m32 -B -M1x2,2 -t polyml-5.7.1-pre2 -i 'init_component /home/isabelle/contrib/polyml-test-905dae2ebfda'",
4ff031d249b2 deactivated old tests;
wenzelm
parents: 66923
diff changeset
   262
        args = "-N -g timing",
4ff031d249b2 deactivated old tests;
wenzelm
parents: 66923
diff changeset
   263
        detect =
4ff031d249b2 deactivated old tests;
wenzelm
parents: 66923
diff changeset
   264
          Build_Log.Prop.build_tags + " = " + SQL.string("polyml-5.7.1-pre1") + " OR " +
4ff031d249b2 deactivated old tests;
wenzelm
parents: 66923
diff changeset
   265
          Build_Log.Prop.build_tags + " = " + SQL.string("polyml-5.7.1-pre2")),
72894
bd2269b6cd99 updated "macOS" terminology: current Big Sur is already version 11;
wenzelm
parents: 72893
diff changeset
   266
      Remote_Build("Poly/ML 5.7 macOS", "macbroy2",
66762
9bef97f78b60 updated test version;
wenzelm
parents: 66609
diff changeset
   267
        history_base = "37074e22e8be",
9bef97f78b60 updated test version;
wenzelm
parents: 66609
diff changeset
   268
        options = "-m32 -B -M1x4,4 -t polyml-5.7 -i 'init_component /home/isabelle/contrib/polyml-5.7'",
9bef97f78b60 updated test version;
wenzelm
parents: 66609
diff changeset
   269
        args = "-a",
9bef97f78b60 updated test version;
wenzelm
parents: 66609
diff changeset
   270
        detect = Build_Log.Prop.build_tags + " = " + SQL.string("polyml-5.7")),
72894
bd2269b6cd99 updated "macOS" terminology: current Big Sur is already version 11;
wenzelm
parents: 72893
diff changeset
   271
      Remote_Build("Poly/ML 5.7.1 macOS", "macbroy2",
66931
4ff031d249b2 deactivated old tests;
wenzelm
parents: 66923
diff changeset
   272
        history_base = "a9d5b59c3e12",
4ff031d249b2 deactivated old tests;
wenzelm
parents: 66923
diff changeset
   273
        options = "-m32 -B -M1x4,4 -t polyml-5.7.1-pre2 -i 'init_component /home/isabelle/contrib/polyml-test-905dae2ebfda'",
4ff031d249b2 deactivated old tests;
wenzelm
parents: 66923
diff changeset
   274
        args = "-a",
4ff031d249b2 deactivated old tests;
wenzelm
parents: 66923
diff changeset
   275
        detect =
4ff031d249b2 deactivated old tests;
wenzelm
parents: 66923
diff changeset
   276
        Build_Log.Prop.build_tags + " = " + SQL.string("polyml-5.7.1-pre1") + " OR " +
4ff031d249b2 deactivated old tests;
wenzelm
parents: 66923
diff changeset
   277
        Build_Log.Prop.build_tags + " = " + SQL.string("polyml-5.7.1-pre2")),
72894
bd2269b6cd99 updated "macOS" terminology: current Big Sur is already version 11;
wenzelm
parents: 72893
diff changeset
   278
      Remote_Build("macOS", "macbroy2",
72893
fbdadf5760c2 updated test machines;
wenzelm
parents: 72559
diff changeset
   279
        options = "-m32 -M8" +
fbdadf5760c2 updated test machines;
wenzelm
parents: 72559
diff changeset
   280
          " -e ISABELLE_GHC=ghc -e ISABELLE_MLTON=mlton -e ISABELLE_OCAML=ocaml" +
fbdadf5760c2 updated test machines;
wenzelm
parents: 72559
diff changeset
   281
          " -e ISABELLE_OCAMLC=ocamlc -e ISABELLE_OCAML_SETUP=true" +
fbdadf5760c2 updated test machines;
wenzelm
parents: 72559
diff changeset
   282
          " -e ISABELLE_OPAM_ROOT=\"$ISABELLE_HOME/opam\"" +
fbdadf5760c2 updated test machines;
wenzelm
parents: 72559
diff changeset
   283
          " -e ISABELLE_SMLNJ=/home/isabelle/smlnj/110.85/bin/sml" +
fbdadf5760c2 updated test machines;
wenzelm
parents: 72559
diff changeset
   284
          " -p pide_session=false",
fbdadf5760c2 updated test machines;
wenzelm
parents: 72559
diff changeset
   285
        args = "-a",
fbdadf5760c2 updated test machines;
wenzelm
parents: 72559
diff changeset
   286
        detect = Build_Log.Prop.build_tags.undefined,
fbdadf5760c2 updated test machines;
wenzelm
parents: 72559
diff changeset
   287
        history_base = "2c0f24e927dd"),
72894
bd2269b6cd99 updated "macOS" terminology: current Big Sur is already version 11;
wenzelm
parents: 72893
diff changeset
   288
      Remote_Build("macOS, quick_and_dirty", "macbroy2",
72893
fbdadf5760c2 updated test machines;
wenzelm
parents: 72559
diff changeset
   289
        options = "-m32 -M8 -t quick_and_dirty -p pide_session=false", args = "-a -o quick_and_dirty",
fbdadf5760c2 updated test machines;
wenzelm
parents: 72559
diff changeset
   290
        detect = Build_Log.Prop.build_tags + " = " + SQL.string("quick_and_dirty"),
fbdadf5760c2 updated test machines;
wenzelm
parents: 72559
diff changeset
   291
        history_base = "2c0f24e927dd"),
72894
bd2269b6cd99 updated "macOS" terminology: current Big Sur is already version 11;
wenzelm
parents: 72893
diff changeset
   292
      Remote_Build("macOS, skip_proofs", "macbroy2",
72893
fbdadf5760c2 updated test machines;
wenzelm
parents: 72559
diff changeset
   293
        options = "-m32 -M8 -t skip_proofs -p pide_session=false", args = "-a -o skip_proofs",
fbdadf5760c2 updated test machines;
wenzelm
parents: 72559
diff changeset
   294
        detect = Build_Log.Prop.build_tags + " = " + SQL.string("skip_proofs"),
fbdadf5760c2 updated test machines;
wenzelm
parents: 72559
diff changeset
   295
        history_base = "2c0f24e927dd"),
65806
0156222f2a18 tuned -- more visible;
wenzelm
parents: 65805
diff changeset
   296
      Remote_Build("Poly/ML test", "lxbroy8",
65843
d547173212d2 proper init_settings for init_component (before generated ML_OPTIONS etc.);
wenzelm
parents: 65840
diff changeset
   297
        options = "-m32 -B -M1x2,2 -t polyml-test -i 'init_component /home/isabelle/contrib/polyml-5.7-20170217'",
65806
0156222f2a18 tuned -- more visible;
wenzelm
parents: 65805
diff changeset
   298
        args = "-N -g timing",
0156222f2a18 tuned -- more visible;
wenzelm
parents: 65805
diff changeset
   299
        detect = Build_Log.Prop.build_tags + " = " + SQL.string("polyml-test")),
72894
bd2269b6cd99 updated "macOS" terminology: current Big Sur is already version 11;
wenzelm
parents: 72893
diff changeset
   300
      Remote_Build("macOS 10.12 Sierra", "macbroy30", options = "-m32 -M2 -p pide_session=false", args = "-a",
72483
ca6a3ea1f7c4 discontinued old platforms;
wenzelm
parents: 72392
diff changeset
   301
        detect = Build_Log.Prop.build_start + " > date '2017-03-03'"),
72894
bd2269b6cd99 updated "macOS" terminology: current Big Sur is already version 11;
wenzelm
parents: 72893
diff changeset
   302
      Remote_Build("macOS 10.10 Yosemite", "macbroy31", options = "-m32 -M2 -p pide_session=false", args = "-a"),
bd2269b6cd99 updated "macOS" terminology: current Big Sur is already version 11;
wenzelm
parents: 72893
diff changeset
   303
      Remote_Build("macOS 10.8 Mountain Lion", "macbroy30", options = "-m32 -M2", args = "-a",
71974
e5fe4d40326d discontinued old AFP test: ancient hardware with insufficient resources;
wenzelm
parents: 71761
diff changeset
   304
        detect = Build_Log.Prop.build_start + " < date '2017-03-03'")) :::
e5fe4d40326d discontinued old AFP test: ancient hardware with insufficient resources;
wenzelm
parents: 71761
diff changeset
   305
      {
e5fe4d40326d discontinued old AFP test: ancient hardware with insufficient resources;
wenzelm
parents: 71761
diff changeset
   306
        for { (n, hosts) <- List(1 -> List("lxbroy6"), 2 -> List("lxbroy8", "lxbroy5")) }
e5fe4d40326d discontinued old AFP test: ancient hardware with insufficient resources;
wenzelm
parents: 71761
diff changeset
   307
        yield {
72073
f56522a44564 clarified names;
wenzelm
parents: 71999
diff changeset
   308
          Remote_Build("AFP old", host = hosts.head, more_hosts = hosts.tail,
71974
e5fe4d40326d discontinued old AFP test: ancient hardware with insufficient resources;
wenzelm
parents: 71761
diff changeset
   309
            options = "-m32 -M1x2 -t AFP -P" + n +
e5fe4d40326d discontinued old AFP test: ancient hardware with insufficient resources;
wenzelm
parents: 71761
diff changeset
   310
              " -e ISABELLE_GHC=ghc" +
e5fe4d40326d discontinued old AFP test: ancient hardware with insufficient resources;
wenzelm
parents: 71761
diff changeset
   311
              " -e ISABELLE_MLTON=mlton" +
e5fe4d40326d discontinued old AFP test: ancient hardware with insufficient resources;
wenzelm
parents: 71761
diff changeset
   312
              " -e ISABELLE_OCAML=ocaml -e ISABELLE_OCAMLC=ocamlc -e ISABELLE_OCAMLFIND=ocamlfind" +
e5fe4d40326d discontinued old AFP test: ancient hardware with insufficient resources;
wenzelm
parents: 71761
diff changeset
   313
              " -e ISABELLE_SMLNJ=sml",
e5fe4d40326d discontinued old AFP test: ancient hardware with insufficient resources;
wenzelm
parents: 71761
diff changeset
   314
            args = "-N -X large -X slow",
e5fe4d40326d discontinued old AFP test: ancient hardware with insufficient resources;
wenzelm
parents: 71761
diff changeset
   315
            afp = true,
e5fe4d40326d discontinued old AFP test: ancient hardware with insufficient resources;
wenzelm
parents: 71761
diff changeset
   316
            detect = Build_Log.Prop.build_tags + " = " + SQL.string("AFP"))
e5fe4d40326d discontinued old AFP test: ancient hardware with insufficient resources;
wenzelm
parents: 71761
diff changeset
   317
        }
e5fe4d40326d discontinued old AFP test: ancient hardware with insufficient resources;
wenzelm
parents: 71761
diff changeset
   318
      }
65806
0156222f2a18 tuned -- more visible;
wenzelm
parents: 65805
diff changeset
   319
66898
8b7c4679c05b parallel remote_builds2 for the sake of "AFP slow" (with theoretical data race on build_log_dirs);
wenzelm
parents: 66897
diff changeset
   320
  val remote_builds1: List[List[Remote_Build]] =
65732
7864aea16a87 detect database entries;
wenzelm
parents: 65723
diff changeset
   321
  {
64231
dbc8294c75d3 added remote_build_history tasks: parallel on several remote hosts;
wenzelm
parents: 64220
diff changeset
   322
    List(
65820
a5d4958d0901 explicit history_base;
wenzelm
parents: 65810
diff changeset
   323
      List(Remote_Build("Linux B", "lxbroy10", historic = true, history = 90,
65732
7864aea16a87 detect database entries;
wenzelm
parents: 65723
diff changeset
   324
        options = "-m32 -B -M1x4,2,4,6", args = "-N -g timing")),
72894
bd2269b6cd99 updated "macOS" terminology: current Big Sur is already version 11;
wenzelm
parents: 72893
diff changeset
   325
      List(Remote_Build("macOS 10.13 High Sierra", "lapbroy68",
72392
2bbc7365e8c4 clarified multicore options;
wenzelm
parents: 72391
diff changeset
   326
        options = "-m32 -B -M1,2,4 -e ISABELLE_GHC_SETUP=true -p pide_session=false",
71538
138e8226961e tuned OS names;
wenzelm
parents: 71537
diff changeset
   327
        self_update = true, args = "-a -d '~~/src/Benchmarks'")),
72893
fbdadf5760c2 updated test machines;
wenzelm
parents: 72559
diff changeset
   328
      List(
73141
13bd167f4d97 more official support for macOS 11.1 Big Sur;
wenzelm
parents: 72997
diff changeset
   329
        Remote_Build("macOS 11.1 Big Sur", "mini1",
13bd167f4d97 more official support for macOS 11.1 Big Sur;
wenzelm
parents: 72997
diff changeset
   330
          options = "-m32 -B -M1x2,2,4 -p pide_session=false" +
13bd167f4d97 more official support for macOS 11.1 Big Sur;
wenzelm
parents: 72997
diff changeset
   331
            " -e ISABELLE_OCAML=ocaml -e ISABELLE_OCAMLC=ocamlc -e ISABELLE_OCAML_SETUP=true" +
13bd167f4d97 more official support for macOS 11.1 Big Sur;
wenzelm
parents: 72997
diff changeset
   332
            " -e ISABELLE_GHC_SETUP=true" +
13bd167f4d97 more official support for macOS 11.1 Big Sur;
wenzelm
parents: 72997
diff changeset
   333
            " -e ISABELLE_MLTON=/usr/local/bin/mlton" +
13bd167f4d97 more official support for macOS 11.1 Big Sur;
wenzelm
parents: 72997
diff changeset
   334
            " -e ISABELLE_SMLNJ=/usr/local/smlnj/bin/sml" +
13bd167f4d97 more official support for macOS 11.1 Big Sur;
wenzelm
parents: 72997
diff changeset
   335
            " -e ISABELLE_SWIPL=/usr/local/bin/swipl",
13bd167f4d97 more official support for macOS 11.1 Big Sur;
wenzelm
parents: 72997
diff changeset
   336
          self_update = true, args = "-a -d '~~/src/Benchmarks'"),
72894
bd2269b6cd99 updated "macOS" terminology: current Big Sur is already version 11;
wenzelm
parents: 72893
diff changeset
   337
        Remote_Build("macOS 10.14 Mojave", "mini2",
72893
fbdadf5760c2 updated test machines;
wenzelm
parents: 72559
diff changeset
   338
          options = "-m32 -B -M1x2,2,4 -p pide_session=false" +
fbdadf5760c2 updated test machines;
wenzelm
parents: 72559
diff changeset
   339
            " -e ISABELLE_OCAML=ocaml -e ISABELLE_OCAMLC=ocamlc -e ISABELLE_OCAML_SETUP=true" +
fbdadf5760c2 updated test machines;
wenzelm
parents: 72559
diff changeset
   340
            " -e ISABELLE_GHC_SETUP=true" +
fbdadf5760c2 updated test machines;
wenzelm
parents: 72559
diff changeset
   341
            " -e ISABELLE_MLTON=/usr/local/bin/mlton" +
fbdadf5760c2 updated test machines;
wenzelm
parents: 72559
diff changeset
   342
            " -e ISABELLE_SMLNJ=/usr/local/smlnj/bin/sml" +
fbdadf5760c2 updated test machines;
wenzelm
parents: 72559
diff changeset
   343
            " -e ISABELLE_SWIPL=/usr/local/bin/swipl",
fbdadf5760c2 updated test machines;
wenzelm
parents: 72559
diff changeset
   344
          self_update = true, args = "-a -d '~~/src/Benchmarks'"),
72894
bd2269b6cd99 updated "macOS" terminology: current Big Sur is already version 11;
wenzelm
parents: 72893
diff changeset
   345
        Remote_Build("macOS, quick_and_dirty", "mini2",
72893
fbdadf5760c2 updated test machines;
wenzelm
parents: 72559
diff changeset
   346
          options = "-m32 -M4 -t quick_and_dirty -p pide_session=false",
fbdadf5760c2 updated test machines;
wenzelm
parents: 72559
diff changeset
   347
          self_update = true, args = "-a -o quick_and_dirty",
fbdadf5760c2 updated test machines;
wenzelm
parents: 72559
diff changeset
   348
          detect = Build_Log.Prop.build_tags + " = " + SQL.string("quick_and_dirty")),
72894
bd2269b6cd99 updated "macOS" terminology: current Big Sur is already version 11;
wenzelm
parents: 72893
diff changeset
   349
        Remote_Build("macOS, skip_proofs", "mini2",
72893
fbdadf5760c2 updated test machines;
wenzelm
parents: 72559
diff changeset
   350
          options = "-m32 -M4 -t skip_proofs -p pide_session=false", args = "-a -o skip_proofs",
fbdadf5760c2 updated test machines;
wenzelm
parents: 72559
diff changeset
   351
          detect = Build_Log.Prop.build_tags + " = " + SQL.string("skip_proofs"))),
72894
bd2269b6cd99 updated "macOS" terminology: current Big Sur is already version 11;
wenzelm
parents: 72893
diff changeset
   352
      List(Remote_Build("macOS 10.15 Catalina", "laramac01", user = "makarius",
71537
93bdbac68d8d standard tests for macOS 10.15 Catalina;
wenzelm
parents: 71380
diff changeset
   353
        proxy_host = "laraserver", proxy_user = "makarius",
71983
694009ed4ee1 clarified options --- potentially more robust;
wenzelm
parents: 71977
diff changeset
   354
        self_update = true,
71999
720b72513ae5 no pide_session on macos: avoid odd "hang" of remote_build_history;
wenzelm
parents: 71995
diff changeset
   355
        options = "-m32 -M4 -e ISABELLE_GHC_SETUP=true -p pide_session=false",
71537
93bdbac68d8d standard tests for macOS 10.15 Catalina;
wenzelm
parents: 71380
diff changeset
   356
        args = "-a -d '~~/src/Benchmarks'")),
64351
e54578e699b5 more tasks;
wenzelm
parents: 64350
diff changeset
   357
      List(
67775
8fe8424ff0d3 clarified signature;
wenzelm
parents: 67774
diff changeset
   358
        Remote_Build("Windows", "vmnipkow9", historic = true, history = 90, self_update = true,
65906
78fa1771f61d more settings;
wenzelm
parents: 65902
diff changeset
   359
          options = "-m32 -M4" +
72997
a562a0f656e8 more robust components_base: avoid fragile directory links on Windows (or Cygwin);
wenzelm
parents: 72994
diff changeset
   360
            " -C /cygdrive/d/isatest/contrib" +
69931
31ee094dea3d prefer ISABELLE_OCAML_SETUP: Cygwin lacks libzarith;
wenzelm
parents: 69927
diff changeset
   361
            " -e ISABELLE_OCAML=ocaml -e ISABELLE_OCAMLC=ocamlc -e ISABELLE_OCAML_SETUP=true" +
69952
385458b950e1 clarified GHC and OCaml test setup;
wenzelm
parents: 69937
diff changeset
   362
            " -e ISABELLE_GHC_SETUP=true" +
65906
78fa1771f61d more settings;
wenzelm
parents: 65902
diff changeset
   363
            " -e ISABELLE_SMLNJ=/usr/local/smlnj-110.81/bin/sml",
65902
c28143ae38cd more settings;
wenzelm
parents: 65887
diff changeset
   364
          args = "-a",
72317
d24a8cea343b proper Windows 32bit platform;
wenzelm
parents: 72074
diff changeset
   365
          detect =
d24a8cea343b proper Windows 32bit platform;
wenzelm
parents: 72074
diff changeset
   366
            Build_Log.Settings.ML_PLATFORM + " = " + SQL.string("x86-windows") + " OR " +
d24a8cea343b proper Windows 32bit platform;
wenzelm
parents: 72074
diff changeset
   367
            Build_Log.Settings.ML_PLATFORM + " = " + SQL.string("x86_64_32-windows")),
67775
8fe8424ff0d3 clarified signature;
wenzelm
parents: 67774
diff changeset
   368
        Remote_Build("Windows", "vmnipkow9", historic = true, history = 90, self_update = true,
65906
78fa1771f61d more settings;
wenzelm
parents: 65902
diff changeset
   369
          options = "-m64 -M4" +
72997
a562a0f656e8 more robust components_base: avoid fragile directory links on Windows (or Cygwin);
wenzelm
parents: 72994
diff changeset
   370
            " -C /cygdrive/d/isatest/contrib" +
69931
31ee094dea3d prefer ISABELLE_OCAML_SETUP: Cygwin lacks libzarith;
wenzelm
parents: 69927
diff changeset
   371
            " -e ISABELLE_OCAML=ocaml -e ISABELLE_OCAMLC=ocamlc -e ISABELLE_OCAML_SETUP=true" +
69952
385458b950e1 clarified GHC and OCaml test setup;
wenzelm
parents: 69937
diff changeset
   372
            " -e ISABELLE_GHC_SETUP=true" +
65906
78fa1771f61d more settings;
wenzelm
parents: 65902
diff changeset
   373
            " -e ISABELLE_SMLNJ=/usr/local/smlnj-110.81/bin/sml",
65902
c28143ae38cd more settings;
wenzelm
parents: 65887
diff changeset
   374
          args = "-a",
71974
e5fe4d40326d discontinued old AFP test: ancient hardware with insufficient resources;
wenzelm
parents: 71761
diff changeset
   375
          detect = Build_Log.Settings.ML_PLATFORM + " = " + SQL.string("x86_64-windows"))))
65732
7864aea16a87 detect database entries;
wenzelm
parents: 65723
diff changeset
   376
  }
64231
dbc8294c75d3 added remote_build_history tasks: parallel on several remote hosts;
wenzelm
parents: 64220
diff changeset
   377
66898
8b7c4679c05b parallel remote_builds2 for the sake of "AFP slow" (with theoretical data race on build_log_dirs);
wenzelm
parents: 66897
diff changeset
   378
  val remote_builds2: List[List[Remote_Build]] =
8b7c4679c05b parallel remote_builds2 for the sake of "AFP slow" (with theoretical data race on build_log_dirs);
wenzelm
parents: 66897
diff changeset
   379
    List(
8b7c4679c05b parallel remote_builds2 for the sake of "AFP slow" (with theoretical data race on build_log_dirs);
wenzelm
parents: 66897
diff changeset
   380
      List(
72073
f56522a44564 clarified names;
wenzelm
parents: 71999
diff changeset
   381
        Remote_Build("AFP", "lrzcloud2", actual_host = "10.195.4.41", self_update = true,
70467
b32d571f1190 full AFP test on lrzcloud2;
wenzelm
parents: 70466
diff changeset
   382
          proxy_host = "lxbroy10", proxy_user = "i21isatest",
71993
088e3aa85250 clarified signature;
wenzelm
parents: 71983
diff changeset
   383
          java_heap = "8g",
72994
055f44891643 avoid memory problems on test machine;
wenzelm
parents: 72894
diff changeset
   384
          options = "-m32 -M1x6 -t AFP" +
70467
b32d571f1190 full AFP test on lrzcloud2;
wenzelm
parents: 70466
diff changeset
   385
            " -e ISABELLE_GHC=ghc" +
b32d571f1190 full AFP test on lrzcloud2;
wenzelm
parents: 70466
diff changeset
   386
            " -e ISABELLE_MLTON=mlton" +
b32d571f1190 full AFP test on lrzcloud2;
wenzelm
parents: 70466
diff changeset
   387
            " -e ISABELLE_OCAML=ocaml -e ISABELLE_OCAMLC=ocamlc -e ISABELLE_OCAMLFIND=ocamlfind" +
b32d571f1190 full AFP test on lrzcloud2;
wenzelm
parents: 70466
diff changeset
   388
            " -e ISABELLE_SMLNJ=sml",
70477
90acc6ce5beb proper build options;
wenzelm
parents: 70467
diff changeset
   389
          args = "-a -X large -X slow",
70467
b32d571f1190 full AFP test on lrzcloud2;
wenzelm
parents: 70466
diff changeset
   390
          afp = true,
b32d571f1190 full AFP test on lrzcloud2;
wenzelm
parents: 70466
diff changeset
   391
          detect = Build_Log.Prop.build_tags + " = " + SQL.string("AFP")),
72074
f3e1144a1cec clarified name to avoid duplication (no distinction of data on host = lrzcloud2);
wenzelm
parents: 72073
diff changeset
   392
        Remote_Build("AFP", "lrzcloud2", actual_host = "10.195.4.41", self_update = true,
70467
b32d571f1190 full AFP test on lrzcloud2;
wenzelm
parents: 70466
diff changeset
   393
          proxy_host = "lxbroy10", proxy_user = "i21isatest",
71993
088e3aa85250 clarified signature;
wenzelm
parents: 71983
diff changeset
   394
          java_heap = "8g",
088e3aa85250 clarified signature;
wenzelm
parents: 71983
diff changeset
   395
          options = "-m64 -M8 -U30000 -s10 -t AFP",
70467
b32d571f1190 full AFP test on lrzcloud2;
wenzelm
parents: 70466
diff changeset
   396
          args = "-g large -g slow",
b32d571f1190 full AFP test on lrzcloud2;
wenzelm
parents: 70466
diff changeset
   397
          afp = true,
b32d571f1190 full AFP test on lrzcloud2;
wenzelm
parents: 70466
diff changeset
   398
          bulky = true,
66898
8b7c4679c05b parallel remote_builds2 for the sake of "AFP slow" (with theoretical data race on build_log_dirs);
wenzelm
parents: 66897
diff changeset
   399
          detect = Build_Log.Prop.build_tags + " = " + SQL.string("AFP"))))
8b7c4679c05b parallel remote_builds2 for the sake of "AFP slow" (with theoretical data race on build_log_dirs);
wenzelm
parents: 66897
diff changeset
   400
67752
636f633552a3 clarified signature: facilitate interactive experimentation;
wenzelm
parents: 67751
diff changeset
   401
  def remote_build_history(rev: String, afp_rev: Option[String], i: Int, r: Remote_Build)
636f633552a3 clarified signature: facilitate interactive experimentation;
wenzelm
parents: 67751
diff changeset
   402
    : Logger_Task =
64294
303976a45afe shared_home is default for classic isatest home setup;
wenzelm
parents: 64277
diff changeset
   403
  {
303976a45afe shared_home is default for classic isatest home setup;
wenzelm
parents: 64277
diff changeset
   404
    val task_name = "build_history-" + r.host
303976a45afe shared_home is default for classic isatest home setup;
wenzelm
parents: 64277
diff changeset
   405
    Logger_Task(task_name, logger =>
64231
dbc8294c75d3 added remote_build_history tasks: parallel on several remote hosts;
wenzelm
parents: 64220
diff changeset
   406
      {
67750
58a33c568464 tuned signature;
wenzelm
parents: 67746
diff changeset
   407
        using(r.ssh_session(logger.ssh_context))(ssh =>
58a33c568464 tuned signature;
wenzelm
parents: 67746
diff changeset
   408
          {
58a33c568464 tuned signature;
wenzelm
parents: 67746
diff changeset
   409
            val results =
58a33c568464 tuned signature;
wenzelm
parents: 67746
diff changeset
   410
              Build_History.remote_build_history(ssh,
58a33c568464 tuned signature;
wenzelm
parents: 67746
diff changeset
   411
                isabelle_repos,
58a33c568464 tuned signature;
wenzelm
parents: 67746
diff changeset
   412
                isabelle_repos.ext(r.host),
58a33c568464 tuned signature;
wenzelm
parents: 67746
diff changeset
   413
                isabelle_identifier = "cronjob_build_history",
67775
8fe8424ff0d3 clarified signature;
wenzelm
parents: 67774
diff changeset
   414
                self_update = r.self_update,
67750
58a33c568464 tuned signature;
wenzelm
parents: 67746
diff changeset
   415
                rev = rev,
58a33c568464 tuned signature;
wenzelm
parents: 67746
diff changeset
   416
                afp_rev = afp_rev,
58a33c568464 tuned signature;
wenzelm
parents: 67746
diff changeset
   417
                options =
58a33c568464 tuned signature;
wenzelm
parents: 67746
diff changeset
   418
                  " -N " + Bash.string(task_name) + (if (i < 0) "" else "_" + (i + 1).toString) +
71993
088e3aa85250 clarified signature;
wenzelm
parents: 71983
diff changeset
   419
                  " -f -h " + Bash.string(r.host) + " " +
088e3aa85250 clarified signature;
wenzelm
parents: 71983
diff changeset
   420
                  (r.java_heap match {
088e3aa85250 clarified signature;
wenzelm
parents: 71983
diff changeset
   421
                    case "" => ""
088e3aa85250 clarified signature;
wenzelm
parents: 71983
diff changeset
   422
                    case h =>
088e3aa85250 clarified signature;
wenzelm
parents: 71983
diff changeset
   423
                      "-e 'ISABELLE_TOOL_JAVA_OPTIONS=\"$ISABELLE_TOOL_JAVA_OPTIONS -Xmx" + h + "\"' "
088e3aa85250 clarified signature;
wenzelm
parents: 71983
diff changeset
   424
                  }) + r.options,
67750
58a33c568464 tuned signature;
wenzelm
parents: 67746
diff changeset
   425
                args = "-o timeout=10800 " + r.args)
64346
5f49765a25ec process results immediately;
wenzelm
parents: 64338
diff changeset
   426
67750
58a33c568464 tuned signature;
wenzelm
parents: 67746
diff changeset
   427
            for ((log_name, bytes) <- results) {
58a33c568464 tuned signature;
wenzelm
parents: 67746
diff changeset
   428
              logger.log(Date.now(), log_name)
58a33c568464 tuned signature;
wenzelm
parents: 67746
diff changeset
   429
              Bytes.write(logger.log_dir + Path.explode(log_name), bytes)
58a33c568464 tuned signature;
wenzelm
parents: 67746
diff changeset
   430
            }
58a33c568464 tuned signature;
wenzelm
parents: 67746
diff changeset
   431
          })
64231
dbc8294c75d3 added remote_build_history tasks: parallel on several remote hosts;
wenzelm
parents: 64220
diff changeset
   432
      })
64294
303976a45afe shared_home is default for classic isatest home setup;
wenzelm
parents: 64277
diff changeset
   433
  }
64231
dbc8294c75d3 added remote_build_history tasks: parallel on several remote hosts;
wenzelm
parents: 64220
diff changeset
   434
65747
5a3052b2095f tuned signature;
wenzelm
parents: 65746
diff changeset
   435
  val build_status_profiles: List[Build_Status.Profile] =
66898
8b7c4679c05b parallel remote_builds2 for the sake of "AFP slow" (with theoretical data race on build_log_dirs);
wenzelm
parents: 66897
diff changeset
   436
    (remote_builds_old :: remote_builds1 ::: remote_builds2).flatten.map(_.profile)
65747
5a3052b2095f tuned signature;
wenzelm
parents: 65746
diff changeset
   437
65746
dead16007097 present build status;
wenzelm
parents: 65736
diff changeset
   438
64192
wenzelm
parents: 64187
diff changeset
   439
wenzelm
parents: 64187
diff changeset
   440
  /** task logging **/
64171
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   441
67752
636f633552a3 clarified signature: facilitate interactive experimentation;
wenzelm
parents: 67751
diff changeset
   442
  object Log_Service
636f633552a3 clarified signature: facilitate interactive experimentation;
wenzelm
parents: 67751
diff changeset
   443
  {
71726
a5fda30edae2 clarified signature: more uniform treatment of stopped/interrupted state;
wenzelm
parents: 71684
diff changeset
   444
    def apply(options: Options, progress: Progress = new Progress): Log_Service =
67752
636f633552a3 clarified signature: facilitate interactive experimentation;
wenzelm
parents: 67751
diff changeset
   445
      new Log_Service(SSH.init_context(options), progress)
636f633552a3 clarified signature: facilitate interactive experimentation;
wenzelm
parents: 67751
diff changeset
   446
  }
64154
e5cf40a54b1e identify managed repository clones;
wenzelm
parents: 64153
diff changeset
   447
67752
636f633552a3 clarified signature: facilitate interactive experimentation;
wenzelm
parents: 67751
diff changeset
   448
  class Log_Service private(val ssh_context: SSH.Context, progress: Progress)
64171
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   449
  {
64219
c1af670cbe7e clarified logs;
wenzelm
parents: 64218
diff changeset
   450
    current_log.file.delete
c1af670cbe7e clarified logs;
wenzelm
parents: 64218
diff changeset
   451
64171
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   452
    private val thread: Consumer_Thread[String] =
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   453
      Consumer_Thread.fork("cronjob: logger", daemon = true)(
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   454
        consume = (text: String) =>
64219
c1af670cbe7e clarified logs;
wenzelm
parents: 64218
diff changeset
   455
          { // critical
c1af670cbe7e clarified logs;
wenzelm
parents: 64218
diff changeset
   456
            File.append(current_log, text + "\n")
c1af670cbe7e clarified logs;
wenzelm
parents: 64218
diff changeset
   457
            File.append(cumulative_log, text + "\n")
64171
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   458
            progress.echo(text)
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   459
            true
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   460
          })
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   461
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   462
    def shutdown() { thread.shutdown() }
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   463
71601
97ccf48c2f0c misc tuning based on hints by IntelliJ IDEA;
wenzelm
parents: 71565
diff changeset
   464
    val hostname: String = Isabelle_System.hostname()
64171
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   465
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   466
    def log(date: Date, task_name: String, msg: String): Unit =
64193
7a7e370e2523 clarified log_subdir vs. log_filename;
wenzelm
parents: 64192
diff changeset
   467
      if (task_name != "")
7a7e370e2523 clarified log_subdir vs. log_filename;
wenzelm
parents: 64192
diff changeset
   468
        thread.send(
7a7e370e2523 clarified log_subdir vs. log_filename;
wenzelm
parents: 64192
diff changeset
   469
          "[" + Build_Log.print_date(date) + ", " + hostname + ", " + task_name + "]: " + msg)
64171
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   470
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   471
    def start_logger(start_date: Date, task_name: String): Logger =
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   472
      new Logger(this, start_date, task_name)
64154
e5cf40a54b1e identify managed repository clones;
wenzelm
parents: 64153
diff changeset
   473
64171
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   474
    def run_task(start_date: Date, task: Logger_Task)
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   475
    {
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   476
      val logger = start_logger(start_date, task.name)
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   477
      val res = Exn.capture { task.body(logger) }
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   478
      val end_date = Date.now()
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   479
      val err =
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   480
        res match {
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   481
          case Exn.Res(_) => None
64295
6aefa7e66888 avoid spamming log file;
wenzelm
parents: 64294
diff changeset
   482
          case Exn.Exn(exn) =>
67178
70576478bda9 avoid println with its extra CR on Windows;
wenzelm
parents: 67103
diff changeset
   483
            Output.writeln("Exception trace for " + quote(task.name) + ":")
64397
6e9c22c494c5 more informative error (stderr);
wenzelm
parents: 64351
diff changeset
   484
            exn.printStackTrace()
66923
wenzelm
parents: 66903
diff changeset
   485
            val first_line = split_lines(Exn.message(exn)).headOption getOrElse "exception"
64295
6aefa7e66888 avoid spamming log file;
wenzelm
parents: 64294
diff changeset
   486
            Some(first_line)
64171
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   487
        }
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   488
      logger.log_end(end_date, err)
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   489
    }
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   490
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   491
    def fork_task(start_date: Date, task: Logger_Task): Task =
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   492
      new Task(task.name, run_task(start_date, task))
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   493
  }
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   494
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   495
  class Logger private[Isabelle_Cronjob](
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   496
    val log_service: Log_Service, val start_date: Date, val task_name: String)
64162
03057a8fdd1f simplified: no internal state for Mercurial;
wenzelm
parents: 64157
diff changeset
   497
  {
64257
9d51ac055cec tuned signature;
wenzelm
parents: 64252
diff changeset
   498
    def ssh_context: SSH.Context = log_service.ssh_context
65640
7a26c337e016 maintain build_log database;
wenzelm
parents: 65594
diff changeset
   499
    def options: Options = ssh_context.options
64231
dbc8294c75d3 added remote_build_history tasks: parallel on several remote hosts;
wenzelm
parents: 64220
diff changeset
   500
64171
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   501
    def log(date: Date, msg: String): Unit = log_service.log(date, task_name, msg)
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   502
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   503
    def log_end(end_date: Date, err: Option[String])
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   504
    {
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   505
      val elapsed_time = end_date.time - start_date.time
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   506
      val msg =
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   507
        (if (err.isEmpty) "finished" else "ERROR " + err.get) +
64197
c43dedbb8118 tuned message;
wenzelm
parents: 64195
diff changeset
   508
        (if (elapsed_time.seconds < 3.0) "" else " (" + elapsed_time.message_hms + " elapsed time)")
64171
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   509
      log(end_date, msg)
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   510
    }
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   511
72376
04bce3478688 clarified signature;
wenzelm
parents: 72375
diff changeset
   512
    val log_dir = Isabelle_System.make_directory(main_dir + Build_Log.log_subdir(start_date))
64195
wenzelm
parents: 64194
diff changeset
   513
64171
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   514
    log(start_date, "started")
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   515
  }
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   516
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   517
  class Task private[Isabelle_Cronjob](name: String, body: => Unit)
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   518
  {
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   519
    private val future: Future[Unit] = Future.thread("cronjob: " + name) { body }
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   520
    def is_finished: Boolean = future.is_finished
64162
03057a8fdd1f simplified: no internal state for Mercurial;
wenzelm
parents: 64157
diff changeset
   521
  }
64153
769791954872 some timing and logging, similar to old isatest.log;
wenzelm
parents: 64148
diff changeset
   522
64170
a0c2cbe2fc8e more explicit management of tasks;
wenzelm
parents: 64162
diff changeset
   523
a0c2cbe2fc8e more explicit management of tasks;
wenzelm
parents: 64162
diff changeset
   524
64153
769791954872 some timing and logging, similar to old isatest.log;
wenzelm
parents: 64148
diff changeset
   525
  /** cronjob **/
769791954872 some timing and logging, similar to old isatest.log;
wenzelm
parents: 64148
diff changeset
   526
64187
450e06dabdd9 allow to exclude named tasks;
wenzelm
parents: 64186
diff changeset
   527
  def cronjob(progress: Progress, exclude_task: Set[String])
64153
769791954872 some timing and logging, similar to old isatest.log;
wenzelm
parents: 64148
diff changeset
   528
  {
64171
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   529
    /* soft lock */
64153
769791954872 some timing and logging, similar to old isatest.log;
wenzelm
parents: 64148
diff changeset
   530
769791954872 some timing and logging, similar to old isatest.log;
wenzelm
parents: 64148
diff changeset
   531
    val still_running =
769791954872 some timing and logging, similar to old isatest.log;
wenzelm
parents: 64148
diff changeset
   532
      try { Some(File.read(main_state_file)) }
769791954872 some timing and logging, similar to old isatest.log;
wenzelm
parents: 64148
diff changeset
   533
      catch { case ERROR(_) => None }
769791954872 some timing and logging, similar to old isatest.log;
wenzelm
parents: 64148
diff changeset
   534
769791954872 some timing and logging, similar to old isatest.log;
wenzelm
parents: 64148
diff changeset
   535
    still_running match {
64170
a0c2cbe2fc8e more explicit management of tasks;
wenzelm
parents: 64162
diff changeset
   536
      case None | Some("") =>
64153
769791954872 some timing and logging, similar to old isatest.log;
wenzelm
parents: 64148
diff changeset
   537
      case Some(running) =>
769791954872 some timing and logging, similar to old isatest.log;
wenzelm
parents: 64148
diff changeset
   538
        error("Isabelle cronjob appears to be still running: " + running)
769791954872 some timing and logging, similar to old isatest.log;
wenzelm
parents: 64148
diff changeset
   539
    }
769791954872 some timing and logging, similar to old isatest.log;
wenzelm
parents: 64148
diff changeset
   540
64199
f38d39c57959 clarified;
wenzelm
parents: 64198
diff changeset
   541
f38d39c57959 clarified;
wenzelm
parents: 64198
diff changeset
   542
    /* log service */
f38d39c57959 clarified;
wenzelm
parents: 64198
diff changeset
   543
67752
636f633552a3 clarified signature: facilitate interactive experimentation;
wenzelm
parents: 67751
diff changeset
   544
    val log_service = Log_Service(Options.init(), progress = progress)
64154
e5cf40a54b1e identify managed repository clones;
wenzelm
parents: 64153
diff changeset
   545
64199
f38d39c57959 clarified;
wenzelm
parents: 64198
diff changeset
   546
    def run(start_date: Date, task: Logger_Task) { log_service.run_task(start_date, task) }
f38d39c57959 clarified;
wenzelm
parents: 64198
diff changeset
   547
f38d39c57959 clarified;
wenzelm
parents: 64198
diff changeset
   548
    def run_now(task: Logger_Task) { run(Date.now(), task) }
64154
e5cf40a54b1e identify managed repository clones;
wenzelm
parents: 64153
diff changeset
   549
e5cf40a54b1e identify managed repository clones;
wenzelm
parents: 64153
diff changeset
   550
64199
f38d39c57959 clarified;
wenzelm
parents: 64198
diff changeset
   551
    /* structured tasks */
64184
wenzelm
parents: 64173
diff changeset
   552
64350
3af8566788e7 remote_builds has PAR-SEQ semantics of old isatest-makedist;
wenzelm
parents: 64348
diff changeset
   553
    def SEQ(tasks: List[Logger_Task]): Logger_Task = Logger_Task(body = _ =>
64193
7a7e370e2523 clarified log_subdir vs. log_filename;
wenzelm
parents: 64192
diff changeset
   554
      for (task <- tasks.iterator if !exclude_task(task.name) || task.name == "")
64199
f38d39c57959 clarified;
wenzelm
parents: 64198
diff changeset
   555
        run_now(task))
64153
769791954872 some timing and logging, similar to old isatest.log;
wenzelm
parents: 64148
diff changeset
   556
64350
3af8566788e7 remote_builds has PAR-SEQ semantics of old isatest-makedist;
wenzelm
parents: 64348
diff changeset
   557
    def PAR(tasks: List[Logger_Task]): Logger_Task = Logger_Task(body = _ =>
64170
a0c2cbe2fc8e more explicit management of tasks;
wenzelm
parents: 64162
diff changeset
   558
      {
64199
f38d39c57959 clarified;
wenzelm
parents: 64198
diff changeset
   559
        @tailrec def join(running: List[Task])
f38d39c57959 clarified;
wenzelm
parents: 64198
diff changeset
   560
        {
f38d39c57959 clarified;
wenzelm
parents: 64198
diff changeset
   561
          running.partition(_.is_finished) match {
f38d39c57959 clarified;
wenzelm
parents: 64198
diff changeset
   562
            case (Nil, Nil) =>
71684
5036edb025b7 clarified signature;
wenzelm
parents: 71632
diff changeset
   563
            case (Nil, _ :: _) => Time.seconds(0.5).sleep; join(running)
64199
f38d39c57959 clarified;
wenzelm
parents: 64198
diff changeset
   564
            case (_ :: _, remaining) => join(remaining)
f38d39c57959 clarified;
wenzelm
parents: 64198
diff changeset
   565
          }
64170
a0c2cbe2fc8e more explicit management of tasks;
wenzelm
parents: 64162
diff changeset
   566
        }
64199
f38d39c57959 clarified;
wenzelm
parents: 64198
diff changeset
   567
        val start_date = Date.now()
f38d39c57959 clarified;
wenzelm
parents: 64198
diff changeset
   568
        val running =
64350
3af8566788e7 remote_builds has PAR-SEQ semantics of old isatest-makedist;
wenzelm
parents: 64348
diff changeset
   569
          for (task <- tasks if !exclude_task(task.name))
64199
f38d39c57959 clarified;
wenzelm
parents: 64198
diff changeset
   570
            yield log_service.fork_task(start_date, task)
f38d39c57959 clarified;
wenzelm
parents: 64198
diff changeset
   571
        join(running)
f38d39c57959 clarified;
wenzelm
parents: 64198
diff changeset
   572
      })
64193
7a7e370e2523 clarified log_subdir vs. log_filename;
wenzelm
parents: 64192
diff changeset
   573
64170
a0c2cbe2fc8e more explicit management of tasks;
wenzelm
parents: 64162
diff changeset
   574
66897
wenzelm
parents: 66896
diff changeset
   575
    /* repository structure */
64199
f38d39c57959 clarified;
wenzelm
parents: 64198
diff changeset
   576
65820
a5d4958d0901 explicit history_base;
wenzelm
parents: 65810
diff changeset
   577
    val hg = Mercurial.repository(isabelle_repos)
66895
e378e0468ef2 tuned: build hg_graph only once;
wenzelm
parents: 66887
diff changeset
   578
    val hg_graph = hg.graph()
67048
ec438988b65a local user_home for improved performance, but only after given changeset for stability of measurement history;
wenzelm
parents: 67008
diff changeset
   579
66895
e378e0468ef2 tuned: build hg_graph only once;
wenzelm
parents: 66887
diff changeset
   580
    def history_base_filter(r: Remote_Build): Item => Boolean =
e378e0468ef2 tuned: build hg_graph only once;
wenzelm
parents: 66887
diff changeset
   581
    {
e378e0468ef2 tuned: build hg_graph only once;
wenzelm
parents: 66887
diff changeset
   582
      val base_rev = hg.id(r.history_base)
e378e0468ef2 tuned: build hg_graph only once;
wenzelm
parents: 66887
diff changeset
   583
      val nodes = hg_graph.all_succs(List(base_rev)).toSet
e378e0468ef2 tuned: build hg_graph only once;
wenzelm
parents: 66887
diff changeset
   584
      (item: Item) => nodes(item.isabelle_version)
e378e0468ef2 tuned: build hg_graph only once;
wenzelm
parents: 66887
diff changeset
   585
    }
e378e0468ef2 tuned: build hg_graph only once;
wenzelm
parents: 66887
diff changeset
   586
66897
wenzelm
parents: 66896
diff changeset
   587
wenzelm
parents: 66896
diff changeset
   588
    /* main */
wenzelm
parents: 66896
diff changeset
   589
wenzelm
parents: 66896
diff changeset
   590
    val main_start_date = Date.now()
wenzelm
parents: 66896
diff changeset
   591
    File.write(main_state_file, main_start_date + " " + log_service.hostname)
wenzelm
parents: 66896
diff changeset
   592
64193
7a7e370e2523 clarified log_subdir vs. log_filename;
wenzelm
parents: 64192
diff changeset
   593
    run(main_start_date,
65783
d3d5cb2d6866 pick isabelle_version based on build_log database;
wenzelm
parents: 65771
diff changeset
   594
      Logger_Task("isabelle_cronjob", logger =>
64231
dbc8294c75d3 added remote_build_history tasks: parallel on several remote hosts;
wenzelm
parents: 64220
diff changeset
   595
        run_now(
67766
603334230303 consolidated main cronjob server on virtual machine together with build_log database;
wenzelm
parents: 67763
diff changeset
   596
          SEQ(List(
603334230303 consolidated main cronjob server on virtual machine together with build_log database;
wenzelm
parents: 67763
diff changeset
   597
            init,
72559
274c9986e55b maintain Isabelle mailing list archives;
wenzelm
parents: 72483
diff changeset
   598
            PAR(List(mailman_archives, SEQ(List(build_history_base, build_release)))),
67766
603334230303 consolidated main cronjob server on virtual machine together with build_log database;
wenzelm
parents: 67763
diff changeset
   599
            PAR(
603334230303 consolidated main cronjob server on virtual machine together with build_log database;
wenzelm
parents: 67763
diff changeset
   600
              List(remote_builds1, remote_builds2).map(remote_builds =>
66898
8b7c4679c05b parallel remote_builds2 for the sake of "AFP slow" (with theoretical data race on build_log_dirs);
wenzelm
parents: 66897
diff changeset
   601
              SEQ(List(
67080
2c0f24e927dd macbroy2 is inactive: system update;
wenzelm
parents: 67075
diff changeset
   602
                PAR(remote_builds.map(_.filter(_.active)).map(seq =>
66898
8b7c4679c05b parallel remote_builds2 for the sake of "AFP slow" (with theoretical data race on build_log_dirs);
wenzelm
parents: 66897
diff changeset
   603
                  SEQ(
8b7c4679c05b parallel remote_builds2 for the sake of "AFP slow" (with theoretical data race on build_log_dirs);
wenzelm
parents: 66897
diff changeset
   604
                    for {
8b7c4679c05b parallel remote_builds2 for the sake of "AFP slow" (with theoretical data race on build_log_dirs);
wenzelm
parents: 66897
diff changeset
   605
                      (r, i) <- (if (seq.length <= 1) seq.map((_, -1)) else seq.zipWithIndex)
67048
ec438988b65a local user_home for improved performance, but only after given changeset for stability of measurement history;
wenzelm
parents: 67008
diff changeset
   606
                      (rev, afp_rev) <- r.pick(logger.options, hg.id(), history_base_filter(r))
67070
85e6c1ff5be3 removed pointless user_home: no measurable impact;
wenzelm
parents: 67049
diff changeset
   607
                    } yield remote_build_history(rev, afp_rev, i, r)))),
67008
eed58245b579 superseded by plain_identify;
wenzelm
parents: 66980
diff changeset
   608
                Logger_Task("jenkins_logs", _ =>
68209
aeffd8f1f079 support Store with options;
wenzelm
parents: 67868
diff changeset
   609
                  Jenkins.download_logs(logger.options, Jenkins.build_log_jobs, main_dir)),
66898
8b7c4679c05b parallel remote_builds2 for the sake of "AFP slow" (with theoretical data race on build_log_dirs);
wenzelm
parents: 66897
diff changeset
   610
                Logger_Task("build_log_database",
8b7c4679c05b parallel remote_builds2 for the sake of "AFP slow" (with theoretical data race on build_log_dirs);
wenzelm
parents: 66897
diff changeset
   611
                  logger => Isabelle_Devel.build_log_database(logger.options, build_log_dirs)),
8b7c4679c05b parallel remote_builds2 for the sake of "AFP slow" (with theoretical data race on build_log_dirs);
wenzelm
parents: 66897
diff changeset
   612
                Logger_Task("build_status",
67766
603334230303 consolidated main cronjob server on virtual machine together with build_log database;
wenzelm
parents: 67763
diff changeset
   613
                  logger => Isabelle_Devel.build_status(logger.options)))))),
603334230303 consolidated main cronjob server on virtual machine together with build_log database;
wenzelm
parents: 67763
diff changeset
   614
            exit)))))
64153
769791954872 some timing and logging, similar to old isatest.log;
wenzelm
parents: 64148
diff changeset
   615
64171
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   616
    log_service.shutdown()
64170
a0c2cbe2fc8e more explicit management of tasks;
wenzelm
parents: 64162
diff changeset
   617
64153
769791954872 some timing and logging, similar to old isatest.log;
wenzelm
parents: 64148
diff changeset
   618
    main_state_file.file.delete
769791954872 some timing and logging, similar to old isatest.log;
wenzelm
parents: 64148
diff changeset
   619
  }
769791954872 some timing and logging, similar to old isatest.log;
wenzelm
parents: 64148
diff changeset
   620
769791954872 some timing and logging, similar to old isatest.log;
wenzelm
parents: 64148
diff changeset
   621
769791954872 some timing and logging, similar to old isatest.log;
wenzelm
parents: 64148
diff changeset
   622
769791954872 some timing and logging, similar to old isatest.log;
wenzelm
parents: 64148
diff changeset
   623
  /** command line entry point **/
769791954872 some timing and logging, similar to old isatest.log;
wenzelm
parents: 64148
diff changeset
   624
64148
bbf43b7c4d0d basic setup for Isabelle cronjob;
wenzelm
parents:
diff changeset
   625
  def main(args: Array[String])
bbf43b7c4d0d basic setup for Isabelle cronjob;
wenzelm
parents:
diff changeset
   626
  {
71632
c1bc38327bc2 clarified signature;
wenzelm
parents: 71601
diff changeset
   627
    Command_Line.tool {
64148
bbf43b7c4d0d basic setup for Isabelle cronjob;
wenzelm
parents:
diff changeset
   628
      var force = false
bbf43b7c4d0d basic setup for Isabelle cronjob;
wenzelm
parents:
diff changeset
   629
      var verbose = false
64187
450e06dabdd9 allow to exclude named tasks;
wenzelm
parents: 64186
diff changeset
   630
      var exclude_task = Set.empty[String]
64148
bbf43b7c4d0d basic setup for Isabelle cronjob;
wenzelm
parents:
diff changeset
   631
bbf43b7c4d0d basic setup for Isabelle cronjob;
wenzelm
parents:
diff changeset
   632
      val getopts = Getopts("""
bbf43b7c4d0d basic setup for Isabelle cronjob;
wenzelm
parents:
diff changeset
   633
Usage: Admin/cronjob/main [OPTIONS]
bbf43b7c4d0d basic setup for Isabelle cronjob;
wenzelm
parents:
diff changeset
   634
bbf43b7c4d0d basic setup for Isabelle cronjob;
wenzelm
parents:
diff changeset
   635
  Options are:
bbf43b7c4d0d basic setup for Isabelle cronjob;
wenzelm
parents:
diff changeset
   636
    -f           apply force to do anything
bbf43b7c4d0d basic setup for Isabelle cronjob;
wenzelm
parents:
diff changeset
   637
    -v           verbose
64187
450e06dabdd9 allow to exclude named tasks;
wenzelm
parents: 64186
diff changeset
   638
    -x NAME      exclude tasks with this name
64148
bbf43b7c4d0d basic setup for Isabelle cronjob;
wenzelm
parents:
diff changeset
   639
""",
bbf43b7c4d0d basic setup for Isabelle cronjob;
wenzelm
parents:
diff changeset
   640
        "f" -> (_ => force = true),
64187
450e06dabdd9 allow to exclude named tasks;
wenzelm
parents: 64186
diff changeset
   641
        "v" -> (_ => verbose = true),
450e06dabdd9 allow to exclude named tasks;
wenzelm
parents: 64186
diff changeset
   642
        "x:" -> (arg => exclude_task += arg))
64148
bbf43b7c4d0d basic setup for Isabelle cronjob;
wenzelm
parents:
diff changeset
   643
bbf43b7c4d0d basic setup for Isabelle cronjob;
wenzelm
parents:
diff changeset
   644
      val more_args = getopts(args)
bbf43b7c4d0d basic setup for Isabelle cronjob;
wenzelm
parents:
diff changeset
   645
      if (more_args.nonEmpty) getopts.usage()
bbf43b7c4d0d basic setup for Isabelle cronjob;
wenzelm
parents:
diff changeset
   646
71726
a5fda30edae2 clarified signature: more uniform treatment of stopped/interrupted state;
wenzelm
parents: 71684
diff changeset
   647
      val progress = if (verbose) new Console_Progress() else new Progress
64148
bbf43b7c4d0d basic setup for Isabelle cronjob;
wenzelm
parents:
diff changeset
   648
64187
450e06dabdd9 allow to exclude named tasks;
wenzelm
parents: 64186
diff changeset
   649
      if (force) cronjob(progress, exclude_task)
64153
769791954872 some timing and logging, similar to old isatest.log;
wenzelm
parents: 64148
diff changeset
   650
      else error("Need to apply force to do anything")
64148
bbf43b7c4d0d basic setup for Isabelle cronjob;
wenzelm
parents:
diff changeset
   651
    }
bbf43b7c4d0d basic setup for Isabelle cronjob;
wenzelm
parents:
diff changeset
   652
  }
bbf43b7c4d0d basic setup for Isabelle cronjob;
wenzelm
parents:
diff changeset
   653
}