src/Pure/Admin/build_history.scala
author wenzelm
Wed, 24 May 2017 15:04:13 +0200
changeset 65917 2b7d4678bce6
parent 65910 5bc7e080b182
child 65927 23a1e2fa5c8a
permissions -rw-r--r--
proper ISABELLE_IDENTIFIER for remote Admin/build_history, e.g. relevant for settings;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
64160
1eea419fab65 clarified files;
wenzelm
parents: 64155
diff changeset
     1
/*  Title:      Pure/Admin/build_history.scala
64021
1e23caac8757 basic setup for Admin/build_history -- outside of Isabelle environment;
wenzelm
parents:
diff changeset
     2
    Author:     Makarius
1e23caac8757 basic setup for Admin/build_history -- outside of Isabelle environment;
wenzelm
parents:
diff changeset
     3
1e23caac8757 basic setup for Admin/build_history -- outside of Isabelle environment;
wenzelm
parents:
diff changeset
     4
Build other history versions.
1e23caac8757 basic setup for Admin/build_history -- outside of Isabelle environment;
wenzelm
parents:
diff changeset
     5
*/
1e23caac8757 basic setup for Admin/build_history -- outside of Isabelle environment;
wenzelm
parents:
diff changeset
     6
1e23caac8757 basic setup for Admin/build_history -- outside of Isabelle environment;
wenzelm
parents:
diff changeset
     7
package isabelle
1e23caac8757 basic setup for Admin/build_history -- outside of Isabelle environment;
wenzelm
parents:
diff changeset
     8
1e23caac8757 basic setup for Admin/build_history -- outside of Isabelle environment;
wenzelm
parents:
diff changeset
     9
1e23caac8757 basic setup for Admin/build_history -- outside of Isabelle environment;
wenzelm
parents:
diff changeset
    10
import java.io.{File => JFile}
64117
c2b41b073d8a build_history log files with formal meta info;
wenzelm
parents: 64052
diff changeset
    11
import java.time.format.DateTimeFormatter
64118
0996fab2ec03 modernized;
wenzelm
parents: 64117
diff changeset
    12
import java.util.Locale
64021
1e23caac8757 basic setup for Admin/build_history -- outside of Isabelle environment;
wenzelm
parents:
diff changeset
    13
1e23caac8757 basic setup for Admin/build_history -- outside of Isabelle environment;
wenzelm
parents:
diff changeset
    14
1e23caac8757 basic setup for Admin/build_history -- outside of Isabelle environment;
wenzelm
parents:
diff changeset
    15
object Build_History
1e23caac8757 basic setup for Admin/build_history -- outside of Isabelle environment;
wenzelm
parents:
diff changeset
    16
{
64117
c2b41b073d8a build_history log files with formal meta info;
wenzelm
parents: 64052
diff changeset
    17
  /* log files */
c2b41b073d8a build_history log files with formal meta info;
wenzelm
parents: 64052
diff changeset
    18
65588
b0d8d97198b3 clarified signature;
wenzelm
parents: 65320
diff changeset
    19
  val engine = "build_history"
65596
7fffa01b2d2b proper prefix;
wenzelm
parents: 65591
diff changeset
    20
  val log_prefix = engine + "_"
64119
8094eaa38d4b inline session ML statistics into main build log;
wenzelm
parents: 64118
diff changeset
    21
  val META_INFO_MARKER = "\fmeta_info = "
64117
c2b41b073d8a build_history log files with formal meta info;
wenzelm
parents: 64052
diff changeset
    22
c2b41b073d8a build_history log files with formal meta info;
wenzelm
parents: 64052
diff changeset
    23
64188
f88bae1922c4 clarified modules;
wenzelm
parents: 64173
diff changeset
    24
  /* augment settings */
64050
wenzelm
parents: 64049
diff changeset
    25
64188
f88bae1922c4 clarified modules;
wenzelm
parents: 64173
diff changeset
    26
  def augment_settings(
f88bae1922c4 clarified modules;
wenzelm
parents: 64173
diff changeset
    27
    other_isabelle: Other_Isabelle,
f88bae1922c4 clarified modules;
wenzelm
parents: 64173
diff changeset
    28
    threads: Int,
65843
d547173212d2 proper init_settings for init_component (before generated ML_OPTIONS etc.);
wenzelm
parents: 65646
diff changeset
    29
    arch_64: Boolean,
d547173212d2 proper init_settings for init_component (before generated ML_OPTIONS etc.);
wenzelm
parents: 65646
diff changeset
    30
    heap: Int,
d547173212d2 proper init_settings for init_component (before generated ML_OPTIONS etc.);
wenzelm
parents: 65646
diff changeset
    31
    max_heap: Option[Int],
64188
f88bae1922c4 clarified modules;
wenzelm
parents: 64173
diff changeset
    32
    more_settings: List[String]): String =
f88bae1922c4 clarified modules;
wenzelm
parents: 64173
diff changeset
    33
  {
f88bae1922c4 clarified modules;
wenzelm
parents: 64173
diff changeset
    34
    val (ml_platform, ml_settings) =
f88bae1922c4 clarified modules;
wenzelm
parents: 64173
diff changeset
    35
    {
f88bae1922c4 clarified modules;
wenzelm
parents: 64173
diff changeset
    36
      val windows_32 = "x86-windows"
f88bae1922c4 clarified modules;
wenzelm
parents: 64173
diff changeset
    37
      val windows_64 = "x86_64-windows"
f88bae1922c4 clarified modules;
wenzelm
parents: 64173
diff changeset
    38
      val platform_32 = other_isabelle("getenv -b ISABELLE_PLATFORM32").check.out
f88bae1922c4 clarified modules;
wenzelm
parents: 64173
diff changeset
    39
      val platform_64 = other_isabelle("getenv -b ISABELLE_PLATFORM64").check.out
f88bae1922c4 clarified modules;
wenzelm
parents: 64173
diff changeset
    40
      val platform_family = other_isabelle("getenv -b ISABELLE_PLATFORM_FAMILY").check.out
64049
ac3ed62c53c3 misc tuning and clarification;
wenzelm
parents: 64048
diff changeset
    41
64188
f88bae1922c4 clarified modules;
wenzelm
parents: 64173
diff changeset
    42
      val polyml_home =
f88bae1922c4 clarified modules;
wenzelm
parents: 64173
diff changeset
    43
        try { Path.explode(other_isabelle("getenv -b ML_HOME").check.out).dir }
f88bae1922c4 clarified modules;
wenzelm
parents: 64173
diff changeset
    44
        catch { case ERROR(msg) => error("Bad ML_HOME: " + msg) }
64049
ac3ed62c53c3 misc tuning and clarification;
wenzelm
parents: 64048
diff changeset
    45
64188
f88bae1922c4 clarified modules;
wenzelm
parents: 64173
diff changeset
    46
      def ml_home(platform: String): Path = polyml_home + Path.explode(platform)
64049
ac3ed62c53c3 misc tuning and clarification;
wenzelm
parents: 64048
diff changeset
    47
64188
f88bae1922c4 clarified modules;
wenzelm
parents: 64173
diff changeset
    48
      def err(platform: String): Nothing =
f88bae1922c4 clarified modules;
wenzelm
parents: 64173
diff changeset
    49
        error("Platform " + platform + " unavailable on this machine")
64050
wenzelm
parents: 64049
diff changeset
    50
64188
f88bae1922c4 clarified modules;
wenzelm
parents: 64173
diff changeset
    51
      def check_dir(platform: String): Boolean =
f88bae1922c4 clarified modules;
wenzelm
parents: 64173
diff changeset
    52
        platform != "" && ml_home(platform).is_dir
64050
wenzelm
parents: 64049
diff changeset
    53
64188
f88bae1922c4 clarified modules;
wenzelm
parents: 64173
diff changeset
    54
      val ml_platform =
f88bae1922c4 clarified modules;
wenzelm
parents: 64173
diff changeset
    55
        if (Platform.is_windows && arch_64) {
f88bae1922c4 clarified modules;
wenzelm
parents: 64173
diff changeset
    56
          if (check_dir(windows_64)) windows_64 else err(windows_64)
f88bae1922c4 clarified modules;
wenzelm
parents: 64173
diff changeset
    57
        }
f88bae1922c4 clarified modules;
wenzelm
parents: 64173
diff changeset
    58
        else if (Platform.is_windows && !arch_64) {
f88bae1922c4 clarified modules;
wenzelm
parents: 64173
diff changeset
    59
          if (check_dir(windows_32)) windows_32
f88bae1922c4 clarified modules;
wenzelm
parents: 64173
diff changeset
    60
          else platform_32  // x86-cygwin
f88bae1922c4 clarified modules;
wenzelm
parents: 64173
diff changeset
    61
        }
f88bae1922c4 clarified modules;
wenzelm
parents: 64173
diff changeset
    62
        else {
f88bae1922c4 clarified modules;
wenzelm
parents: 64173
diff changeset
    63
          val (platform, platform_name) =
f88bae1922c4 clarified modules;
wenzelm
parents: 64173
diff changeset
    64
            if (arch_64) (platform_64, "x86_64-" + platform_family)
f88bae1922c4 clarified modules;
wenzelm
parents: 64173
diff changeset
    65
            else (platform_32, "x86-" + platform_family)
f88bae1922c4 clarified modules;
wenzelm
parents: 64173
diff changeset
    66
          if (check_dir(platform)) platform else err(platform_name)
f88bae1922c4 clarified modules;
wenzelm
parents: 64173
diff changeset
    67
        }
64050
wenzelm
parents: 64049
diff changeset
    68
64188
f88bae1922c4 clarified modules;
wenzelm
parents: 64173
diff changeset
    69
      val ml_options =
f88bae1922c4 clarified modules;
wenzelm
parents: 64173
diff changeset
    70
        "--minheap " + heap + (if (max_heap.isDefined) " --maxheap " + max_heap.get else "") +
f88bae1922c4 clarified modules;
wenzelm
parents: 64173
diff changeset
    71
        " --gcthreads " + threads +
f88bae1922c4 clarified modules;
wenzelm
parents: 64173
diff changeset
    72
        (if (ml_platform.endsWith("-windows")) " --codepage utf8" else "")
64050
wenzelm
parents: 64049
diff changeset
    73
64188
f88bae1922c4 clarified modules;
wenzelm
parents: 64173
diff changeset
    74
      (ml_platform,
f88bae1922c4 clarified modules;
wenzelm
parents: 64173
diff changeset
    75
        List(
f88bae1922c4 clarified modules;
wenzelm
parents: 64173
diff changeset
    76
          "ML_HOME=" + File.bash_path(ml_home(ml_platform)),
f88bae1922c4 clarified modules;
wenzelm
parents: 64173
diff changeset
    77
          "ML_PLATFORM=" + quote(ml_platform),
f88bae1922c4 clarified modules;
wenzelm
parents: 64173
diff changeset
    78
          "ML_OPTIONS=" + quote(ml_options)))
64050
wenzelm
parents: 64049
diff changeset
    79
    }
wenzelm
parents: 64049
diff changeset
    80
64188
f88bae1922c4 clarified modules;
wenzelm
parents: 64173
diff changeset
    81
    val thread_settings =
f88bae1922c4 clarified modules;
wenzelm
parents: 64173
diff changeset
    82
      List(
f88bae1922c4 clarified modules;
wenzelm
parents: 64173
diff changeset
    83
        "ISABELLE_JAVA_SYSTEM_OPTIONS=\"$ISABELLE_JAVA_SYSTEM_OPTIONS -Disabelle.threads=" + threads + "\"",
f88bae1922c4 clarified modules;
wenzelm
parents: 64173
diff changeset
    84
        "ISABELLE_BUILD_OPTIONS=\"threads=" + threads + "\"")
64050
wenzelm
parents: 64049
diff changeset
    85
64188
f88bae1922c4 clarified modules;
wenzelm
parents: 64173
diff changeset
    86
    val settings =
f88bae1922c4 clarified modules;
wenzelm
parents: 64173
diff changeset
    87
      List(ml_settings, thread_settings) :::
65843
d547173212d2 proper init_settings for init_component (before generated ML_OPTIONS etc.);
wenzelm
parents: 65646
diff changeset
    88
      (if (more_settings.isEmpty) Nil else List(more_settings))
64050
wenzelm
parents: 64049
diff changeset
    89
64188
f88bae1922c4 clarified modules;
wenzelm
parents: 64173
diff changeset
    90
    File.append(other_isabelle.etc_settings, "\n" + cat_lines(settings.map(terminate_lines(_))))
64050
wenzelm
parents: 64049
diff changeset
    91
64188
f88bae1922c4 clarified modules;
wenzelm
parents: 64173
diff changeset
    92
    ml_platform
64049
ac3ed62c53c3 misc tuning and clarification;
wenzelm
parents: 64048
diff changeset
    93
  }
ac3ed62c53c3 misc tuning and clarification;
wenzelm
parents: 64048
diff changeset
    94
ac3ed62c53c3 misc tuning and clarification;
wenzelm
parents: 64048
diff changeset
    95
ac3ed62c53c3 misc tuning and clarification;
wenzelm
parents: 64048
diff changeset
    96
64050
wenzelm
parents: 64049
diff changeset
    97
  /** build_history **/
64025
ff4910ced9ba clarified command-line;
wenzelm
parents: 64023
diff changeset
    98
ff4910ced9ba clarified command-line;
wenzelm
parents: 64023
diff changeset
    99
  private val default_rev = "tip"
64301
8053c882839f more flexible multicore configuration;
wenzelm
parents: 64300
diff changeset
   100
  private val default_multicore = (1, 1)
64335
24e676390259 more ambitious default;
wenzelm
parents: 64305
diff changeset
   101
  private val default_heap = 1500
64025
ff4910ced9ba clarified command-line;
wenzelm
parents: 64023
diff changeset
   102
  private val default_isabelle_identifier = "build_history"
ff4910ced9ba clarified command-line;
wenzelm
parents: 64023
diff changeset
   103
ff4910ced9ba clarified command-line;
wenzelm
parents: 64023
diff changeset
   104
  def build_history(
ff4910ced9ba clarified command-line;
wenzelm
parents: 64023
diff changeset
   105
    hg: Mercurial.Repository,
64909
8007f10195af tuned signature;
wenzelm
parents: 64472
diff changeset
   106
    progress: Progress = No_Progress,
64025
ff4910ced9ba clarified command-line;
wenzelm
parents: 64023
diff changeset
   107
    rev: String = default_rev,
ff4910ced9ba clarified command-line;
wenzelm
parents: 64023
diff changeset
   108
    isabelle_identifier: String = default_isabelle_identifier,
ff4910ced9ba clarified command-line;
wenzelm
parents: 64023
diff changeset
   109
    components_base: String = "",
64026
cbecd26e063f clarified command line;
wenzelm
parents: 64025
diff changeset
   110
    fresh: Boolean = false,
64025
ff4910ced9ba clarified command-line;
wenzelm
parents: 64023
diff changeset
   111
    nonfree: Boolean = false,
64052
72fa79eab7f6 added multicore_base option;
wenzelm
parents: 64051
diff changeset
   112
    multicore_base: Boolean = false,
64301
8053c882839f more flexible multicore configuration;
wenzelm
parents: 64300
diff changeset
   113
    multicore_list: List[(Int, Int)] = List(default_multicore),
64030
04f9e1e9003a more options for generated settings;
wenzelm
parents: 64027
diff changeset
   114
    arch_64: Boolean = false,
04f9e1e9003a more options for generated settings;
wenzelm
parents: 64027
diff changeset
   115
    heap: Int = default_heap,
64036
a14fe26c0144 clarified heap options;
wenzelm
parents: 64034
diff changeset
   116
    max_heap: Option[Int] = None,
65843
d547173212d2 proper init_settings for init_component (before generated ML_OPTIONS etc.);
wenzelm
parents: 65646
diff changeset
   117
    init_settings: List[String] = Nil,
64030
04f9e1e9003a more options for generated settings;
wenzelm
parents: 64027
diff changeset
   118
    more_settings: List[String] = Nil,
64026
cbecd26e063f clarified command line;
wenzelm
parents: 64025
diff changeset
   119
    verbose: Boolean = false,
64297
12a47f263122 support for free-form build tags;
wenzelm
parents: 64296
diff changeset
   120
    build_tags: List[String] = Nil,
64194
b5ada7dcceaa integrity test of build_history vs. build_history_base;
wenzelm
parents: 64193
diff changeset
   121
    build_args: List[String] = Nil): List[(Process_Result, Path)] =
64025
ff4910ced9ba clarified command-line;
wenzelm
parents: 64023
diff changeset
   122
  {
64031
eef8a3f8ef4a more sanity checks;
wenzelm
parents: 64030
diff changeset
   123
    /* sanity checks */
eef8a3f8ef4a more sanity checks;
wenzelm
parents: 64030
diff changeset
   124
64213
b265dd04d57d clarified file operations;
wenzelm
parents: 64194
diff changeset
   125
    if (File.eq(Path.explode("~~"), hg.root))
64046
5a6a7401c48b clarified sanity checks;
wenzelm
parents: 64044
diff changeset
   126
      error("Repository coincides with ISABELLE_HOME=" + Path.explode("~~").expand)
5a6a7401c48b clarified sanity checks;
wenzelm
parents: 64044
diff changeset
   127
64301
8053c882839f more flexible multicore configuration;
wenzelm
parents: 64300
diff changeset
   128
    for ((threads, _) <- multicore_list if threads < 1)
8053c882839f more flexible multicore configuration;
wenzelm
parents: 64300
diff changeset
   129
      error("Bad threads value < 1: " + threads)
8053c882839f more flexible multicore configuration;
wenzelm
parents: 64300
diff changeset
   130
    for ((_, processes) <- multicore_list if processes < 1)
8053c882839f more flexible multicore configuration;
wenzelm
parents: 64300
diff changeset
   131
      error("Bad processes value < 1: " + processes)
64036
a14fe26c0144 clarified heap options;
wenzelm
parents: 64034
diff changeset
   132
64030
04f9e1e9003a more options for generated settings;
wenzelm
parents: 64027
diff changeset
   133
    if (heap < 100) error("Bad heap value < 100: " + heap)
04f9e1e9003a more options for generated settings;
wenzelm
parents: 64027
diff changeset
   134
64036
a14fe26c0144 clarified heap options;
wenzelm
parents: 64034
diff changeset
   135
    if (max_heap.isDefined && max_heap.get < heap)
a14fe26c0144 clarified heap options;
wenzelm
parents: 64034
diff changeset
   136
      error("Bad max_heap value < heap: " + max_heap.get)
a14fe26c0144 clarified heap options;
wenzelm
parents: 64034
diff changeset
   137
64031
eef8a3f8ef4a more sanity checks;
wenzelm
parents: 64030
diff changeset
   138
    System.getenv("ISABELLE_SETTINGS_PRESENT") match {
eef8a3f8ef4a more sanity checks;
wenzelm
parents: 64030
diff changeset
   139
      case null | "" =>
eef8a3f8ef4a more sanity checks;
wenzelm
parents: 64030
diff changeset
   140
      case _ => error("Cannot run build_history within existing Isabelle settings environment")
eef8a3f8ef4a more sanity checks;
wenzelm
parents: 64030
diff changeset
   141
    }
eef8a3f8ef4a more sanity checks;
wenzelm
parents: 64030
diff changeset
   142
eef8a3f8ef4a more sanity checks;
wenzelm
parents: 64030
diff changeset
   143
64049
ac3ed62c53c3 misc tuning and clarification;
wenzelm
parents: 64048
diff changeset
   144
    /* init repository */
64031
eef8a3f8ef4a more sanity checks;
wenzelm
parents: 64030
diff changeset
   145
64025
ff4910ced9ba clarified command-line;
wenzelm
parents: 64023
diff changeset
   146
    hg.update(rev = rev, clean = true)
64049
ac3ed62c53c3 misc tuning and clarification;
wenzelm
parents: 64048
diff changeset
   147
    progress.echo_if(verbose, hg.log(rev, options = "-l1"))
64025
ff4910ced9ba clarified command-line;
wenzelm
parents: 64023
diff changeset
   148
64232
367d83d6030e clarified hg.id operation, with explicit tip as default;
wenzelm
parents: 64231
diff changeset
   149
    val isabelle_version = hg.id(rev)
64049
ac3ed62c53c3 misc tuning and clarification;
wenzelm
parents: 64048
diff changeset
   150
    val other_isabelle = new Other_Isabelle(progress, hg.root, isabelle_identifier)
64025
ff4910ced9ba clarified command-line;
wenzelm
parents: 64023
diff changeset
   151
64051
4dd9d9b28fd5 allow multiple threads configurations;
wenzelm
parents: 64050
diff changeset
   152
64052
72fa79eab7f6 added multicore_base option;
wenzelm
parents: 64051
diff changeset
   153
    /* main */
64043
44b6c620c371 more thorought update of components;
wenzelm
parents: 64040
diff changeset
   154
64296
544481988e65 explicit identification of builds and correlated build groups;
wenzelm
parents: 64263
diff changeset
   155
    val build_host = Isabelle_System.hostname()
64117
c2b41b073d8a build_history log files with formal meta info;
wenzelm
parents: 64052
diff changeset
   156
    val build_history_date = Date.now()
64296
544481988e65 explicit identification of builds and correlated build groups;
wenzelm
parents: 64263
diff changeset
   157
    val build_group_id = build_host + ":" + build_history_date.time.ms
64117
c2b41b073d8a build_history log files with formal meta info;
wenzelm
parents: 64052
diff changeset
   158
64051
4dd9d9b28fd5 allow multiple threads configurations;
wenzelm
parents: 64050
diff changeset
   159
    var first_build = true
64301
8053c882839f more flexible multicore configuration;
wenzelm
parents: 64300
diff changeset
   160
    for ((threads, processes) <- multicore_list) yield
64052
72fa79eab7f6 added multicore_base option;
wenzelm
parents: 64051
diff changeset
   161
    {
72fa79eab7f6 added multicore_base option;
wenzelm
parents: 64051
diff changeset
   162
      /* init settings */
72fa79eab7f6 added multicore_base option;
wenzelm
parents: 64051
diff changeset
   163
65845
b8ff63149256 proper init_settings, before inspecting ML_HOME etc;
wenzelm
parents: 65844
diff changeset
   164
      other_isabelle.init_settings(components_base, nonfree, init_settings)
64051
4dd9d9b28fd5 allow multiple threads configurations;
wenzelm
parents: 64050
diff changeset
   165
      other_isabelle.resolve_components(verbose)
64117
c2b41b073d8a build_history log files with formal meta info;
wenzelm
parents: 64052
diff changeset
   166
      val ml_platform =
65845
b8ff63149256 proper init_settings, before inspecting ML_HOME etc;
wenzelm
parents: 65844
diff changeset
   167
        augment_settings(other_isabelle, threads, arch_64, heap, max_heap, more_settings)
64043
44b6c620c371 more thorought update of components;
wenzelm
parents: 64040
diff changeset
   168
64052
72fa79eab7f6 added multicore_base option;
wenzelm
parents: 64051
diff changeset
   169
      val isabelle_output = Path.explode(other_isabelle("getenv -b ISABELLE_OUTPUT").check.out)
72fa79eab7f6 added multicore_base option;
wenzelm
parents: 64051
diff changeset
   170
      val isabelle_output_log = isabelle_output + Path.explode("log")
72fa79eab7f6 added multicore_base option;
wenzelm
parents: 64051
diff changeset
   171
      val isabelle_base_log = isabelle_output + Path.explode("../base_log")
65909
4940682a2e1a more persistent build.out;
wenzelm
parents: 65889
diff changeset
   172
      val build_out = other_isabelle.isabelle_home_user + Path.explode("log/build.out")
64052
72fa79eab7f6 added multicore_base option;
wenzelm
parents: 64051
diff changeset
   173
64051
4dd9d9b28fd5 allow multiple threads configurations;
wenzelm
parents: 64050
diff changeset
   174
      if (first_build) {
4dd9d9b28fd5 allow multiple threads configurations;
wenzelm
parents: 64050
diff changeset
   175
        other_isabelle.resolve_components(verbose)
64376
68ace7f3d78f more thorough cleanup of lib/classes -- it may contain broken Pure.jar or copies of Scala libraries (in historic versions);
wenzelm
parents: 64353
diff changeset
   176
68ace7f3d78f more thorough cleanup of lib/classes -- it may contain broken Pure.jar or copies of Scala libraries (in historic versions);
wenzelm
parents: 64353
diff changeset
   177
        if (fresh)
68ace7f3d78f more thorough cleanup of lib/classes -- it may contain broken Pure.jar or copies of Scala libraries (in historic versions);
wenzelm
parents: 64353
diff changeset
   178
          Isabelle_System.rm_tree(other_isabelle.isabelle_home + Path.explode("lib/classes"))
64051
4dd9d9b28fd5 allow multiple threads configurations;
wenzelm
parents: 64050
diff changeset
   179
        other_isabelle.bash(
4dd9d9b28fd5 allow multiple threads configurations;
wenzelm
parents: 64050
diff changeset
   180
          "env PATH=\"" + File.bash_path(Path.explode("~~/lib/dummy_stty").expand) + ":$PATH\" " +
64376
68ace7f3d78f more thorough cleanup of lib/classes -- it may contain broken Pure.jar or copies of Scala libraries (in historic versions);
wenzelm
parents: 64353
diff changeset
   181
            "bin/isabelle jedit -b", redirect = true, echo = verbose).check
64052
72fa79eab7f6 added multicore_base option;
wenzelm
parents: 64051
diff changeset
   182
64213
b265dd04d57d clarified file operations;
wenzelm
parents: 64194
diff changeset
   183
        Isabelle_System.rm_tree(isabelle_base_log)
64051
4dd9d9b28fd5 allow multiple threads configurations;
wenzelm
parents: 64050
diff changeset
   184
      }
64025
ff4910ced9ba clarified command-line;
wenzelm
parents: 64023
diff changeset
   185
64213
b265dd04d57d clarified file operations;
wenzelm
parents: 64194
diff changeset
   186
      Isabelle_System.rm_tree(isabelle_output)
64052
72fa79eab7f6 added multicore_base option;
wenzelm
parents: 64051
diff changeset
   187
      Isabelle_System.mkdirs(isabelle_output)
72fa79eab7f6 added multicore_base option;
wenzelm
parents: 64051
diff changeset
   188
65909
4940682a2e1a more persistent build.out;
wenzelm
parents: 65889
diff changeset
   189
      val log_path =
4940682a2e1a more persistent build.out;
wenzelm
parents: 65889
diff changeset
   190
        other_isabelle.isabelle_home_user +
4940682a2e1a more persistent build.out;
wenzelm
parents: 65889
diff changeset
   191
          Build_Log.log_subdir(build_history_date) +
4940682a2e1a more persistent build.out;
wenzelm
parents: 65889
diff changeset
   192
          Build_Log.log_filename(Build_History.engine, build_history_date,
4940682a2e1a more persistent build.out;
wenzelm
parents: 65889
diff changeset
   193
            List(build_host, ml_platform, "M" + threads) ::: build_tags)
4940682a2e1a more persistent build.out;
wenzelm
parents: 65889
diff changeset
   194
4940682a2e1a more persistent build.out;
wenzelm
parents: 65889
diff changeset
   195
      Isabelle_System.mkdirs(log_path.dir)
4940682a2e1a more persistent build.out;
wenzelm
parents: 65889
diff changeset
   196
      build_out.file.delete
4940682a2e1a more persistent build.out;
wenzelm
parents: 65889
diff changeset
   197
64052
72fa79eab7f6 added multicore_base option;
wenzelm
parents: 64051
diff changeset
   198
72fa79eab7f6 added multicore_base option;
wenzelm
parents: 64051
diff changeset
   199
      /* build */
72fa79eab7f6 added multicore_base option;
wenzelm
parents: 64051
diff changeset
   200
72fa79eab7f6 added multicore_base option;
wenzelm
parents: 64051
diff changeset
   201
      if (multicore_base && !first_build && isabelle_base_log.is_dir)
64189
dfb63036c4f6 tuned signature;
wenzelm
parents: 64188
diff changeset
   202
        Isabelle_System.copy_dir(isabelle_base_log, isabelle_output_log)
64052
72fa79eab7f6 added multicore_base option;
wenzelm
parents: 64051
diff changeset
   203
64117
c2b41b073d8a build_history log files with formal meta info;
wenzelm
parents: 64052
diff changeset
   204
      val build_start = Date.now()
64302
6de1aad1e70d report actual build_args;
wenzelm
parents: 64301
diff changeset
   205
      val build_args1 = List("-v", "-j" + processes) ::: build_args
64296
544481988e65 explicit identification of builds and correlated build groups;
wenzelm
parents: 64263
diff changeset
   206
      val build_result =
65889
29c9e3742069 incremental build progress, to see state after unexpected failure (see also b3d6fb291f58);
wenzelm
parents: 65881
diff changeset
   207
      {
65910
5bc7e080b182 clarified build.out progress;
wenzelm
parents: 65909
diff changeset
   208
        val other_isabelle1 =
5bc7e080b182 clarified build.out progress;
wenzelm
parents: 65909
diff changeset
   209
          new Other_Isabelle(new File_Progress(build_out), hg.root, isabelle_identifier)
5bc7e080b182 clarified build.out progress;
wenzelm
parents: 65909
diff changeset
   210
        other_isabelle1("build " + Bash.strings(build_args1), redirect = true, echo = true)
65889
29c9e3742069 incremental build progress, to see state after unexpected failure (see also b3d6fb291f58);
wenzelm
parents: 65881
diff changeset
   211
      }
64117
c2b41b073d8a build_history log files with formal meta info;
wenzelm
parents: 64052
diff changeset
   212
      val build_end = Date.now()
c2b41b073d8a build_history log files with formal meta info;
wenzelm
parents: 64052
diff changeset
   213
65646
014dbbe5331f parse ml_statistics only when required;
wenzelm
parents: 65624
diff changeset
   214
      val build_info: Build_Log.Build_Info =
014dbbe5331f parse ml_statistics only when required;
wenzelm
parents: 65624
diff changeset
   215
        Build_Log.Log_File(log_path.base.implode, build_result.out_lines).
014dbbe5331f parse ml_statistics only when required;
wenzelm
parents: 65624
diff changeset
   216
          parse_build_info(ml_statistics = true)
64296
544481988e65 explicit identification of builds and correlated build groups;
wenzelm
parents: 64263
diff changeset
   217
544481988e65 explicit identification of builds and correlated build groups;
wenzelm
parents: 64263
diff changeset
   218
544481988e65 explicit identification of builds and correlated build groups;
wenzelm
parents: 64263
diff changeset
   219
      /* output log */
64120
6c5039016321 record heap sizes;
wenzelm
parents: 64119
diff changeset
   220
65293
a53a5ae88205 prefer database, but also accept log.gz from historic versions;
wenzelm
parents: 64909
diff changeset
   221
      val store = Sessions.store()
a53a5ae88205 prefer database, but also accept log.gz from historic versions;
wenzelm
parents: 64909
diff changeset
   222
64117
c2b41b073d8a build_history log files with formal meta info;
wenzelm
parents: 64052
diff changeset
   223
      val meta_info =
65624
32fa61f694ef clarified multi-line properties;
wenzelm
parents: 65596
diff changeset
   224
        Properties.lines_nonempty(Build_Log.Prop.build_tags.name, build_tags) :::
32fa61f694ef clarified multi-line properties;
wenzelm
parents: 65596
diff changeset
   225
        Properties.lines_nonempty(Build_Log.Prop.build_args.name, build_args1) :::
64296
544481988e65 explicit identification of builds and correlated build groups;
wenzelm
parents: 64263
diff changeset
   226
        List(
65591
5953c7fbc2b8 more SQL operations;
wenzelm
parents: 65588
diff changeset
   227
          Build_Log.Prop.build_group_id.name -> build_group_id,
5953c7fbc2b8 more SQL operations;
wenzelm
parents: 65588
diff changeset
   228
          Build_Log.Prop.build_id.name -> (build_host + ":" + build_start.time.ms),
5953c7fbc2b8 more SQL operations;
wenzelm
parents: 65588
diff changeset
   229
          Build_Log.Prop.build_engine.name -> Build_History.engine,
5953c7fbc2b8 more SQL operations;
wenzelm
parents: 65588
diff changeset
   230
          Build_Log.Prop.build_host.name -> build_host,
5953c7fbc2b8 more SQL operations;
wenzelm
parents: 65588
diff changeset
   231
          Build_Log.Prop.build_start.name -> Build_Log.print_date(build_start),
5953c7fbc2b8 more SQL operations;
wenzelm
parents: 65588
diff changeset
   232
          Build_Log.Prop.build_end.name -> Build_Log.print_date(build_end),
5953c7fbc2b8 more SQL operations;
wenzelm
parents: 65588
diff changeset
   233
          Build_Log.Prop.isabelle_version.name -> isabelle_version)
64117
c2b41b073d8a build_history log files with formal meta info;
wenzelm
parents: 64052
diff changeset
   234
64119
8094eaa38d4b inline session ML statistics into main build log;
wenzelm
parents: 64118
diff changeset
   235
      val ml_statistics =
64120
6c5039016321 record heap sizes;
wenzelm
parents: 64119
diff changeset
   236
        build_info.finished_sessions.flatMap(session_name =>
6c5039016321 record heap sizes;
wenzelm
parents: 64119
diff changeset
   237
          {
65293
a53a5ae88205 prefer database, but also accept log.gz from historic versions;
wenzelm
parents: 64909
diff changeset
   238
            val database = isabelle_output + store.database(session_name)
a53a5ae88205 prefer database, but also accept log.gz from historic versions;
wenzelm
parents: 64909
diff changeset
   239
            val log_gz = isabelle_output + store.log_gz(session_name)
a53a5ae88205 prefer database, but also accept log.gz from historic versions;
wenzelm
parents: 64909
diff changeset
   240
a53a5ae88205 prefer database, but also accept log.gz from historic versions;
wenzelm
parents: 64909
diff changeset
   241
            val properties =
a53a5ae88205 prefer database, but also accept log.gz from historic versions;
wenzelm
parents: 64909
diff changeset
   242
              if (database.is_file) {
a53a5ae88205 prefer database, but also accept log.gz from historic versions;
wenzelm
parents: 64909
diff changeset
   243
                using(SQLite.open_database(database))(db =>
65320
52861eebf58d access table via session_name: db may in principle contain multiple entries;
wenzelm
parents: 65318
diff changeset
   244
                  store.read_build_log(db, session_name, ml_statistics = true)).ml_statistics
65293
a53a5ae88205 prefer database, but also accept log.gz from historic versions;
wenzelm
parents: 64909
diff changeset
   245
              }
a53a5ae88205 prefer database, but also accept log.gz from historic versions;
wenzelm
parents: 64909
diff changeset
   246
              else if (log_gz.is_file) {
65318
342efc382558 eliminated somewhat redundant inlined name (despite a7aa17a1f721);
wenzelm
parents: 65296
diff changeset
   247
                Build_Log.Log_File(log_gz).parse_session_info(ml_statistics = true).ml_statistics
65293
a53a5ae88205 prefer database, but also accept log.gz from historic versions;
wenzelm
parents: 64909
diff changeset
   248
              }
a53a5ae88205 prefer database, but also accept log.gz from historic versions;
wenzelm
parents: 64909
diff changeset
   249
              else Nil
a53a5ae88205 prefer database, but also accept log.gz from historic versions;
wenzelm
parents: 64909
diff changeset
   250
            properties.map(props => (Build_Log.SESSION_NAME -> session_name) :: props)
64120
6c5039016321 record heap sizes;
wenzelm
parents: 64119
diff changeset
   251
          })
6c5039016321 record heap sizes;
wenzelm
parents: 64119
diff changeset
   252
6c5039016321 record heap sizes;
wenzelm
parents: 64119
diff changeset
   253
      val heap_sizes =
6c5039016321 record heap sizes;
wenzelm
parents: 64119
diff changeset
   254
        build_info.finished_sessions.flatMap(session_name =>
6c5039016321 record heap sizes;
wenzelm
parents: 64119
diff changeset
   255
          {
6c5039016321 record heap sizes;
wenzelm
parents: 64119
diff changeset
   256
            val heap = isabelle_output + Path.explode(session_name)
6c5039016321 record heap sizes;
wenzelm
parents: 64119
diff changeset
   257
            if (heap.is_file)
6c5039016321 record heap sizes;
wenzelm
parents: 64119
diff changeset
   258
              Some("Heap " + session_name + " (" + Value.Long(heap.file.length) + " bytes)")
6c5039016321 record heap sizes;
wenzelm
parents: 64119
diff changeset
   259
            else None
6c5039016321 record heap sizes;
wenzelm
parents: 64119
diff changeset
   260
          })
64119
8094eaa38d4b inline session ML statistics into main build log;
wenzelm
parents: 64118
diff changeset
   261
64253
a4718dfc9cd4 more compression for big log files;
wenzelm
parents: 64234
diff changeset
   262
      File.write_xz(log_path.ext("xz"),
64173
85ff21510ba9 tuned signature;
wenzelm
parents: 64162
diff changeset
   263
        terminate_lines(
64296
544481988e65 explicit identification of builds and correlated build groups;
wenzelm
parents: 64263
diff changeset
   264
          Build_Log.Log_File.print_props(META_INFO_MARKER, meta_info) :: build_result.out_lines :::
64120
6c5039016321 record heap sizes;
wenzelm
parents: 64119
diff changeset
   265
          ml_statistics.map(Build_Log.Log_File.print_props(Build_Log.ML_STATISTICS_MARKER, _)) :::
64253
a4718dfc9cd4 more compression for big log files;
wenzelm
parents: 64234
diff changeset
   266
          heap_sizes), XZ.options(6))
64117
c2b41b073d8a build_history log files with formal meta info;
wenzelm
parents: 64052
diff changeset
   267
64119
8094eaa38d4b inline session ML statistics into main build log;
wenzelm
parents: 64118
diff changeset
   268
8094eaa38d4b inline session ML statistics into main build log;
wenzelm
parents: 64118
diff changeset
   269
      /* next build */
8094eaa38d4b inline session ML statistics into main build log;
wenzelm
parents: 64118
diff changeset
   270
64052
72fa79eab7f6 added multicore_base option;
wenzelm
parents: 64051
diff changeset
   271
      if (multicore_base && first_build && isabelle_output_log.is_dir)
64189
dfb63036c4f6 tuned signature;
wenzelm
parents: 64188
diff changeset
   272
        Isabelle_System.copy_dir(isabelle_output_log, isabelle_base_log)
64052
72fa79eab7f6 added multicore_base option;
wenzelm
parents: 64051
diff changeset
   273
64260
5389ebfd576d more thorough cleanup;
wenzelm
parents: 64256
diff changeset
   274
      Isabelle_System.rm_tree(isabelle_output)
5389ebfd576d more thorough cleanup;
wenzelm
parents: 64256
diff changeset
   275
64052
72fa79eab7f6 added multicore_base option;
wenzelm
parents: 64051
diff changeset
   276
      first_build = false
72fa79eab7f6 added multicore_base option;
wenzelm
parents: 64051
diff changeset
   277
64468
ed8940d6295c back to more elementary result (see 5f49765a25ec): avoid concurrent use of ssh channel;
wenzelm
parents: 64466
diff changeset
   278
      (build_result, log_path.ext("xz"))
64051
4dd9d9b28fd5 allow multiple threads configurations;
wenzelm
parents: 64050
diff changeset
   279
    }
64025
ff4910ced9ba clarified command-line;
wenzelm
parents: 64023
diff changeset
   280
  }
64021
1e23caac8757 basic setup for Admin/build_history -- outside of Isabelle environment;
wenzelm
parents:
diff changeset
   281
1e23caac8757 basic setup for Admin/build_history -- outside of Isabelle environment;
wenzelm
parents:
diff changeset
   282
1e23caac8757 basic setup for Admin/build_history -- outside of Isabelle environment;
wenzelm
parents:
diff changeset
   283
  /* command line entry point */
1e23caac8757 basic setup for Admin/build_history -- outside of Isabelle environment;
wenzelm
parents:
diff changeset
   284
64301
8053c882839f more flexible multicore configuration;
wenzelm
parents: 64300
diff changeset
   285
  private object Multicore
8053c882839f more flexible multicore configuration;
wenzelm
parents: 64300
diff changeset
   286
  {
8053c882839f more flexible multicore configuration;
wenzelm
parents: 64300
diff changeset
   287
    private val Pat1 = """^(\d+)$""".r
8053c882839f more flexible multicore configuration;
wenzelm
parents: 64300
diff changeset
   288
    private val Pat2 = """^(\d+)x(\d+)$""".r
8053c882839f more flexible multicore configuration;
wenzelm
parents: 64300
diff changeset
   289
8053c882839f more flexible multicore configuration;
wenzelm
parents: 64300
diff changeset
   290
    def parse(s: String): (Int, Int) =
8053c882839f more flexible multicore configuration;
wenzelm
parents: 64300
diff changeset
   291
      s match {
8053c882839f more flexible multicore configuration;
wenzelm
parents: 64300
diff changeset
   292
        case Pat1(Value.Int(x)) => (x, 1)
8053c882839f more flexible multicore configuration;
wenzelm
parents: 64300
diff changeset
   293
        case Pat2(Value.Int(x), Value.Int(y)) => (x, y)
8053c882839f more flexible multicore configuration;
wenzelm
parents: 64300
diff changeset
   294
        case _ => error("Bad multicore configuration: " + quote(s))
8053c882839f more flexible multicore configuration;
wenzelm
parents: 64300
diff changeset
   295
      }
8053c882839f more flexible multicore configuration;
wenzelm
parents: 64300
diff changeset
   296
  }
8053c882839f more flexible multicore configuration;
wenzelm
parents: 64300
diff changeset
   297
64021
1e23caac8757 basic setup for Admin/build_history -- outside of Isabelle environment;
wenzelm
parents:
diff changeset
   298
  def main(args: Array[String])
1e23caac8757 basic setup for Admin/build_history -- outside of Isabelle environment;
wenzelm
parents:
diff changeset
   299
  {
1e23caac8757 basic setup for Admin/build_history -- outside of Isabelle environment;
wenzelm
parents:
diff changeset
   300
    Command_Line.tool0 {
64052
72fa79eab7f6 added multicore_base option;
wenzelm
parents: 64051
diff changeset
   301
      var multicore_base = false
64025
ff4910ced9ba clarified command-line;
wenzelm
parents: 64023
diff changeset
   302
      var components_base = ""
64030
04f9e1e9003a more options for generated settings;
wenzelm
parents: 64027
diff changeset
   303
      var heap: Option[Int] = None
64036
a14fe26c0144 clarified heap options;
wenzelm
parents: 64034
diff changeset
   304
      var max_heap: Option[Int] = None
64301
8053c882839f more flexible multicore configuration;
wenzelm
parents: 64300
diff changeset
   305
      var multicore_list = List(default_multicore)
64025
ff4910ced9ba clarified command-line;
wenzelm
parents: 64023
diff changeset
   306
      var isabelle_identifier = default_isabelle_identifier
64030
04f9e1e9003a more options for generated settings;
wenzelm
parents: 64027
diff changeset
   307
      var more_settings: List[String] = Nil
64026
cbecd26e063f clarified command line;
wenzelm
parents: 64025
diff changeset
   308
      var fresh = false
65843
d547173212d2 proper init_settings for init_component (before generated ML_OPTIONS etc.);
wenzelm
parents: 65646
diff changeset
   309
      var init_settings: List[String] = Nil
64030
04f9e1e9003a more options for generated settings;
wenzelm
parents: 64027
diff changeset
   310
      var arch_64 = false
64025
ff4910ced9ba clarified command-line;
wenzelm
parents: 64023
diff changeset
   311
      var nonfree = false
65844
76e60a142ca1 support for explicit output file: potentially more robust than stdout;
wenzelm
parents: 65843
diff changeset
   312
      var output_file = ""
64025
ff4910ced9ba clarified command-line;
wenzelm
parents: 64023
diff changeset
   313
      var rev = default_rev
64297
12a47f263122 support for free-form build tags;
wenzelm
parents: 64296
diff changeset
   314
      var build_tags = List.empty[String]
64025
ff4910ced9ba clarified command-line;
wenzelm
parents: 64023
diff changeset
   315
      var verbose = false
64021
1e23caac8757 basic setup for Admin/build_history -- outside of Isabelle environment;
wenzelm
parents:
diff changeset
   316
1e23caac8757 basic setup for Admin/build_history -- outside of Isabelle environment;
wenzelm
parents:
diff changeset
   317
      val getopts = Getopts("""
64026
cbecd26e063f clarified command line;
wenzelm
parents: 64025
diff changeset
   318
Usage: isabelle build_history [OPTIONS] REPOSITORY [ARGS ...]
64021
1e23caac8757 basic setup for Admin/build_history -- outside of Isabelle environment;
wenzelm
parents:
diff changeset
   319
1e23caac8757 basic setup for Admin/build_history -- outside of Isabelle environment;
wenzelm
parents:
diff changeset
   320
  Options are:
64052
72fa79eab7f6 added multicore_base option;
wenzelm
parents: 64051
diff changeset
   321
    -B           first multicore build serves as base for scheduling information
64025
ff4910ced9ba clarified command-line;
wenzelm
parents: 64023
diff changeset
   322
    -C DIR       base directory for Isabelle components (default: $ISABELLE_HOME_USER/../contrib)
65843
d547173212d2 proper init_settings for init_component (before generated ML_OPTIONS etc.);
wenzelm
parents: 65646
diff changeset
   323
    -H SIZE      minimal ML heap in MB (default: """ + default_heap + """ for x86, """ +
d547173212d2 proper init_settings for init_component (before generated ML_OPTIONS etc.);
wenzelm
parents: 65646
diff changeset
   324
      default_heap * 2 + """ for x86_64)
64301
8053c882839f more flexible multicore configuration;
wenzelm
parents: 64300
diff changeset
   325
    -M MULTICORE multicore configurations (see below)
64025
ff4910ced9ba clarified command-line;
wenzelm
parents: 64023
diff changeset
   326
    -N NAME      alternative ISABELLE_IDENTIFIER (default: """ + default_isabelle_identifier + """)
64036
a14fe26c0144 clarified heap options;
wenzelm
parents: 64034
diff changeset
   327
    -U SIZE      maximal ML heap in MB (default: unbounded)
64030
04f9e1e9003a more options for generated settings;
wenzelm
parents: 64027
diff changeset
   328
    -e TEXT      additional text for generated etc/settings
64026
cbecd26e063f clarified command line;
wenzelm
parents: 64025
diff changeset
   329
    -f           fresh build of Isabelle/Scala components (recommended)
65843
d547173212d2 proper init_settings for init_component (before generated ML_OPTIONS etc.);
wenzelm
parents: 65646
diff changeset
   330
    -i TEXT      initial text for generated etc/settings
64030
04f9e1e9003a more options for generated settings;
wenzelm
parents: 64027
diff changeset
   331
    -m ARCH      processor architecture (32=x86, 64=x86_64, default: x86)
64025
ff4910ced9ba clarified command-line;
wenzelm
parents: 64023
diff changeset
   332
    -n           include nonfree components
65844
76e60a142ca1 support for explicit output file: potentially more robust than stdout;
wenzelm
parents: 65843
diff changeset
   333
    -o FILE      output file for log names (default: stdout)
64026
cbecd26e063f clarified command line;
wenzelm
parents: 64025
diff changeset
   334
    -r REV       update to revision (default: """ + default_rev + """)
64297
12a47f263122 support for free-form build tags;
wenzelm
parents: 64296
diff changeset
   335
    -t TAG       free-form build tag (multiple occurrences possible)
64025
ff4910ced9ba clarified command-line;
wenzelm
parents: 64023
diff changeset
   336
    -v           verbose
64021
1e23caac8757 basic setup for Admin/build_history -- outside of Isabelle environment;
wenzelm
parents:
diff changeset
   337
1e23caac8757 basic setup for Admin/build_history -- outside of Isabelle environment;
wenzelm
parents:
diff changeset
   338
  Build Isabelle sessions from the history of another REPOSITORY clone,
64026
cbecd26e063f clarified command line;
wenzelm
parents: 64025
diff changeset
   339
  passing ARGS directly to its isabelle build tool.
64301
8053c882839f more flexible multicore configuration;
wenzelm
parents: 64300
diff changeset
   340
8053c882839f more flexible multicore configuration;
wenzelm
parents: 64300
diff changeset
   341
  Each MULTICORE configuration consists of one or two numbers (default 1):
8053c882839f more flexible multicore configuration;
wenzelm
parents: 64300
diff changeset
   342
  THREADS or THREADSxPROCESSES, e.g. -M 1,2,4 or -M 1x4,2x2,4.
64021
1e23caac8757 basic setup for Admin/build_history -- outside of Isabelle environment;
wenzelm
parents:
diff changeset
   343
""",
64052
72fa79eab7f6 added multicore_base option;
wenzelm
parents: 64051
diff changeset
   344
        "B" -> (_ => multicore_base = true),
64025
ff4910ced9ba clarified command-line;
wenzelm
parents: 64023
diff changeset
   345
        "C:" -> (arg => components_base = arg),
64030
04f9e1e9003a more options for generated settings;
wenzelm
parents: 64027
diff changeset
   346
        "H:" -> (arg => heap = Some(Value.Int.parse(arg))),
64301
8053c882839f more flexible multicore configuration;
wenzelm
parents: 64300
diff changeset
   347
        "M:" -> (arg => multicore_list = space_explode(',', arg).map(Multicore.parse(_))),
64025
ff4910ced9ba clarified command-line;
wenzelm
parents: 64023
diff changeset
   348
        "N:" -> (arg => isabelle_identifier = arg),
64036
a14fe26c0144 clarified heap options;
wenzelm
parents: 64034
diff changeset
   349
        "U:" -> (arg => max_heap = Some(Value.Int.parse(arg))),
64030
04f9e1e9003a more options for generated settings;
wenzelm
parents: 64027
diff changeset
   350
        "e:" -> (arg => more_settings = more_settings ::: List(arg)),
64026
cbecd26e063f clarified command line;
wenzelm
parents: 64025
diff changeset
   351
        "f" -> (_ => fresh = true),
65843
d547173212d2 proper init_settings for init_component (before generated ML_OPTIONS etc.);
wenzelm
parents: 65646
diff changeset
   352
        "i:" -> (arg => init_settings = init_settings ::: List(arg)),
64030
04f9e1e9003a more options for generated settings;
wenzelm
parents: 64027
diff changeset
   353
        "m:" ->
04f9e1e9003a more options for generated settings;
wenzelm
parents: 64027
diff changeset
   354
          {
04f9e1e9003a more options for generated settings;
wenzelm
parents: 64027
diff changeset
   355
            case "32" | "x86" => arch_64 = false
04f9e1e9003a more options for generated settings;
wenzelm
parents: 64027
diff changeset
   356
            case "64" | "x86_64" => arch_64 = true
04f9e1e9003a more options for generated settings;
wenzelm
parents: 64027
diff changeset
   357
            case bad => error("Bad processor architecture: " + quote(bad))
04f9e1e9003a more options for generated settings;
wenzelm
parents: 64027
diff changeset
   358
          },
64025
ff4910ced9ba clarified command-line;
wenzelm
parents: 64023
diff changeset
   359
        "n" -> (_ => nonfree = true),
65844
76e60a142ca1 support for explicit output file: potentially more robust than stdout;
wenzelm
parents: 65843
diff changeset
   360
        "o:" -> (arg => output_file = arg),
64025
ff4910ced9ba clarified command-line;
wenzelm
parents: 64023
diff changeset
   361
        "r:" -> (arg => rev = arg),
64297
12a47f263122 support for free-form build tags;
wenzelm
parents: 64296
diff changeset
   362
        "t:" -> (arg => build_tags = build_tags ::: List(arg)),
64025
ff4910ced9ba clarified command-line;
wenzelm
parents: 64023
diff changeset
   363
        "v" -> (_ => verbose = true))
64021
1e23caac8757 basic setup for Admin/build_history -- outside of Isabelle environment;
wenzelm
parents:
diff changeset
   364
1e23caac8757 basic setup for Admin/build_history -- outside of Isabelle environment;
wenzelm
parents:
diff changeset
   365
      val more_args = getopts(args)
64026
cbecd26e063f clarified command line;
wenzelm
parents: 64025
diff changeset
   366
      val (root, build_args) =
cbecd26e063f clarified command line;
wenzelm
parents: 64025
diff changeset
   367
        more_args match {
cbecd26e063f clarified command line;
wenzelm
parents: 64025
diff changeset
   368
          case root :: build_args => (root, build_args)
cbecd26e063f clarified command line;
wenzelm
parents: 64025
diff changeset
   369
          case _ => getopts.usage()
cbecd26e063f clarified command line;
wenzelm
parents: 64025
diff changeset
   370
        }
64021
1e23caac8757 basic setup for Admin/build_history -- outside of Isabelle environment;
wenzelm
parents:
diff changeset
   371
64162
03057a8fdd1f simplified: no internal state for Mercurial;
wenzelm
parents: 64160
diff changeset
   372
      val hg = Mercurial.repository(Path.explode(root))
03057a8fdd1f simplified: no internal state for Mercurial;
wenzelm
parents: 64160
diff changeset
   373
      val progress = new Console_Progress(stderr = true)
64346
5f49765a25ec process results immediately;
wenzelm
parents: 64335
diff changeset
   374
64162
03057a8fdd1f simplified: no internal state for Mercurial;
wenzelm
parents: 64160
diff changeset
   375
      val results =
64194
b5ada7dcceaa integrity test of build_history vs. build_history_base;
wenzelm
parents: 64193
diff changeset
   376
        build_history(hg, progress = progress, rev = rev, isabelle_identifier = isabelle_identifier,
64162
03057a8fdd1f simplified: no internal state for Mercurial;
wenzelm
parents: 64160
diff changeset
   377
          components_base = components_base, fresh = fresh, nonfree = nonfree,
64301
8053c882839f more flexible multicore configuration;
wenzelm
parents: 64300
diff changeset
   378
          multicore_base = multicore_base, multicore_list = multicore_list, arch_64 = arch_64,
64162
03057a8fdd1f simplified: no internal state for Mercurial;
wenzelm
parents: 64160
diff changeset
   379
          heap = heap.getOrElse(if (arch_64) default_heap * 2 else default_heap),
65843
d547173212d2 proper init_settings for init_component (before generated ML_OPTIONS etc.);
wenzelm
parents: 65646
diff changeset
   380
          max_heap = max_heap, init_settings = init_settings, more_settings = more_settings,
d547173212d2 proper init_settings for init_component (before generated ML_OPTIONS etc.);
wenzelm
parents: 65646
diff changeset
   381
          verbose = verbose, build_tags = build_tags, build_args = build_args)
64162
03057a8fdd1f simplified: no internal state for Mercurial;
wenzelm
parents: 64160
diff changeset
   382
65844
76e60a142ca1 support for explicit output file: potentially more robust than stdout;
wenzelm
parents: 65843
diff changeset
   383
      if (output_file == "") {
76e60a142ca1 support for explicit output file: potentially more robust than stdout;
wenzelm
parents: 65843
diff changeset
   384
        for ((_, log_path) <- results)
76e60a142ca1 support for explicit output file: potentially more robust than stdout;
wenzelm
parents: 65843
diff changeset
   385
          Output.writeln(log_path.implode, stdout = true)
76e60a142ca1 support for explicit output file: potentially more robust than stdout;
wenzelm
parents: 65843
diff changeset
   386
      }
76e60a142ca1 support for explicit output file: potentially more robust than stdout;
wenzelm
parents: 65843
diff changeset
   387
      else {
76e60a142ca1 support for explicit output file: potentially more robust than stdout;
wenzelm
parents: 65843
diff changeset
   388
        File.write(Path.explode(output_file),
76e60a142ca1 support for explicit output file: potentially more robust than stdout;
wenzelm
parents: 65843
diff changeset
   389
          cat_lines(for ((_, log_path) <- results) yield log_path.implode))
76e60a142ca1 support for explicit output file: potentially more robust than stdout;
wenzelm
parents: 65843
diff changeset
   390
      }
64472
c2191352e908 recovered Output.writeln for remote build_history (cf. ed8940d6295c), in order to have log files copied and removed;
wenzelm
parents: 64468
diff changeset
   391
64194
b5ada7dcceaa integrity test of build_history vs. build_history_base;
wenzelm
parents: 64193
diff changeset
   392
      val rc = (0 /: results) { case (rc, (res, _)) => rc max res.rc }
64162
03057a8fdd1f simplified: no internal state for Mercurial;
wenzelm
parents: 64160
diff changeset
   393
      if (rc != 0) sys.exit(rc)
64021
1e23caac8757 basic setup for Admin/build_history -- outside of Isabelle environment;
wenzelm
parents:
diff changeset
   394
    }
1e23caac8757 basic setup for Admin/build_history -- outside of Isabelle environment;
wenzelm
parents:
diff changeset
   395
  }
64223
9d5b9f41df77 remove invocation of build_history: results are reported via stdout;
wenzelm
parents: 64213
diff changeset
   396
9d5b9f41df77 remove invocation of build_history: results are reported via stdout;
wenzelm
parents: 64213
diff changeset
   397
9d5b9f41df77 remove invocation of build_history: results are reported via stdout;
wenzelm
parents: 64213
diff changeset
   398
64225
wenzelm
parents: 64223
diff changeset
   399
  /** remote build_history -- via command-line **/
64223
9d5b9f41df77 remove invocation of build_history: results are reported via stdout;
wenzelm
parents: 64213
diff changeset
   400
64225
wenzelm
parents: 64223
diff changeset
   401
  def remote_build_history(
64256
c3197aeae90b simplified SSH.Session: sftp channel is always open and its operations provided by the main interface;
wenzelm
parents: 64253
diff changeset
   402
    ssh: SSH.Session,
64227
wenzelm
parents: 64225
diff changeset
   403
    isabelle_repos_self: Path,
wenzelm
parents: 64225
diff changeset
   404
    isabelle_repos_other: Path,
wenzelm
parents: 64225
diff changeset
   405
    isabelle_repos_source: String = "http://isabelle.in.tum.de/repos/isabelle",
65917
2b7d4678bce6 proper ISABELLE_IDENTIFIER for remote Admin/build_history, e.g. relevant for settings;
wenzelm
parents: 65910
diff changeset
   406
    isabelle_identifier: String = default_isabelle_identifier,
64227
wenzelm
parents: 64225
diff changeset
   407
    self_update: Boolean = false,
64348
4c253e84ae62 clarified push/pull chain: current ISABELLE_HOME may server as source for changes that are not published on isabelle_repos_source yet (e.g. isabelle-release branch);
wenzelm
parents: 64346
diff changeset
   408
    push_isabelle_home: Boolean = false,
64909
8007f10195af tuned signature;
wenzelm
parents: 64472
diff changeset
   409
    progress: Progress = No_Progress,
64227
wenzelm
parents: 64225
diff changeset
   410
    options: String = "",
64419
0f3b0a929c02 more permissive remote_build_history: failure happens routinely and should not lead error, without saving logs;
wenzelm
parents: 64376
diff changeset
   411
    args: String = ""): (List[(String, Bytes)], Process_Result) =
64223
9d5b9f41df77 remove invocation of build_history: results are reported via stdout;
wenzelm
parents: 64213
diff changeset
   412
  {
64305
wenzelm
parents: 64304
diff changeset
   413
    val isabelle_admin = isabelle_repos_self + Path.explode("Admin")
64223
9d5b9f41df77 remove invocation of build_history: results are reported via stdout;
wenzelm
parents: 64213
diff changeset
   414
9d5b9f41df77 remove invocation of build_history: results are reported via stdout;
wenzelm
parents: 64213
diff changeset
   415
64256
c3197aeae90b simplified SSH.Session: sftp channel is always open and its operations provided by the main interface;
wenzelm
parents: 64253
diff changeset
   416
    /* prepare repository clones */
64223
9d5b9f41df77 remove invocation of build_history: results are reported via stdout;
wenzelm
parents: 64213
diff changeset
   417
64256
c3197aeae90b simplified SSH.Session: sftp channel is always open and its operations provided by the main interface;
wenzelm
parents: 64253
diff changeset
   418
    val isabelle_hg =
c3197aeae90b simplified SSH.Session: sftp channel is always open and its operations provided by the main interface;
wenzelm
parents: 64253
diff changeset
   419
      Mercurial.setup_repository(isabelle_repos_source, isabelle_repos_self, ssh = Some(ssh))
64223
9d5b9f41df77 remove invocation of build_history: results are reported via stdout;
wenzelm
parents: 64213
diff changeset
   420
64353
8f628de5108b more explicit rev (tip);
wenzelm
parents: 64348
diff changeset
   421
    val rev =
8f628de5108b more explicit rev (tip);
wenzelm
parents: 64348
diff changeset
   422
      if (self_update) {
8f628de5108b more explicit rev (tip);
wenzelm
parents: 64348
diff changeset
   423
        val rev =
8f628de5108b more explicit rev (tip);
wenzelm
parents: 64348
diff changeset
   424
          if (push_isabelle_home) {
8f628de5108b more explicit rev (tip);
wenzelm
parents: 64348
diff changeset
   425
            val isabelle_home_hg = Mercurial.repository(Path.explode("~~"))
8f628de5108b more explicit rev (tip);
wenzelm
parents: 64348
diff changeset
   426
            val rev = isabelle_home_hg.id()
8f628de5108b more explicit rev (tip);
wenzelm
parents: 64348
diff changeset
   427
            isabelle_home_hg.push(isabelle_hg.root_url, rev = rev, force = true)
8f628de5108b more explicit rev (tip);
wenzelm
parents: 64348
diff changeset
   428
            rev
8f628de5108b more explicit rev (tip);
wenzelm
parents: 64348
diff changeset
   429
          }
8f628de5108b more explicit rev (tip);
wenzelm
parents: 64348
diff changeset
   430
          else {
8f628de5108b more explicit rev (tip);
wenzelm
parents: 64348
diff changeset
   431
            isabelle_hg.pull()
8f628de5108b more explicit rev (tip);
wenzelm
parents: 64348
diff changeset
   432
            isabelle_hg.id()
8f628de5108b more explicit rev (tip);
wenzelm
parents: 64348
diff changeset
   433
          }
64348
4c253e84ae62 clarified push/pull chain: current ISABELLE_HOME may server as source for changes that are not published on isabelle_repos_source yet (e.g. isabelle-release branch);
wenzelm
parents: 64346
diff changeset
   434
        isabelle_hg.update(rev = rev, clean = true)
64459
6f852a4c1b0e self_update of components, e.g. for vmnipkow9;
wenzelm
parents: 64453
diff changeset
   435
        ssh.execute(
6f852a4c1b0e self_update of components, e.g. for vmnipkow9;
wenzelm
parents: 64453
diff changeset
   436
          ssh.bash_path(isabelle_repos_self + Path.explode("bin/isabelle"))
6f852a4c1b0e self_update of components, e.g. for vmnipkow9;
wenzelm
parents: 64453
diff changeset
   437
            + " components -a").check
64353
8f628de5108b more explicit rev (tip);
wenzelm
parents: 64348
diff changeset
   438
        ssh.execute(ssh.bash_path(isabelle_admin + Path.explode("build")) + " jars_fresh").check
8f628de5108b more explicit rev (tip);
wenzelm
parents: 64348
diff changeset
   439
        rev
64348
4c253e84ae62 clarified push/pull chain: current ISABELLE_HOME may server as source for changes that are not published on isabelle_repos_source yet (e.g. isabelle-release branch);
wenzelm
parents: 64346
diff changeset
   440
      }
64353
8f628de5108b more explicit rev (tip);
wenzelm
parents: 64348
diff changeset
   441
      else "tip"
64223
9d5b9f41df77 remove invocation of build_history: results are reported via stdout;
wenzelm
parents: 64213
diff changeset
   442
64348
4c253e84ae62 clarified push/pull chain: current ISABELLE_HOME may server as source for changes that are not published on isabelle_repos_source yet (e.g. isabelle-release branch);
wenzelm
parents: 64346
diff changeset
   443
    val other_hg =
4c253e84ae62 clarified push/pull chain: current ISABELLE_HOME may server as source for changes that are not published on isabelle_repos_source yet (e.g. isabelle-release branch);
wenzelm
parents: 64346
diff changeset
   444
      Mercurial.setup_repository(
4c253e84ae62 clarified push/pull chain: current ISABELLE_HOME may server as source for changes that are not published on isabelle_repos_source yet (e.g. isabelle-release branch);
wenzelm
parents: 64346
diff changeset
   445
        ssh.bash_path(isabelle_repos_self), isabelle_repos_other, ssh = Some(ssh))
4c253e84ae62 clarified push/pull chain: current ISABELLE_HOME may server as source for changes that are not published on isabelle_repos_source yet (e.g. isabelle-release branch);
wenzelm
parents: 64346
diff changeset
   446
    other_hg.pull(isabelle_hg.root.implode)
64353
8f628de5108b more explicit rev (tip);
wenzelm
parents: 64348
diff changeset
   447
    other_hg.update(rev = rev, clean = true)
64223
9d5b9f41df77 remove invocation of build_history: results are reported via stdout;
wenzelm
parents: 64213
diff changeset
   448
9d5b9f41df77 remove invocation of build_history: results are reported via stdout;
wenzelm
parents: 64213
diff changeset
   449
64256
c3197aeae90b simplified SSH.Session: sftp channel is always open and its operations provided by the main interface;
wenzelm
parents: 64253
diff changeset
   450
    /* Admin/build_history */
64223
9d5b9f41df77 remove invocation of build_history: results are reported via stdout;
wenzelm
parents: 64213
diff changeset
   451
65846
aa6e58dc54d0 prefer explicit output file: potentially more robust than stdout;
wenzelm
parents: 65845
diff changeset
   452
    ssh.with_tmp_dir(tmp_dir =>
aa6e58dc54d0 prefer explicit output file: potentially more robust than stdout;
wenzelm
parents: 65845
diff changeset
   453
    {
aa6e58dc54d0 prefer explicit output file: potentially more robust than stdout;
wenzelm
parents: 65845
diff changeset
   454
      val output_file = tmp_dir + Path.explode("output")
64346
5f49765a25ec process results immediately;
wenzelm
parents: 64335
diff changeset
   455
65846
aa6e58dc54d0 prefer explicit output file: potentially more robust than stdout;
wenzelm
parents: 65845
diff changeset
   456
      val process_result =
aa6e58dc54d0 prefer explicit output file: potentially more robust than stdout;
wenzelm
parents: 65845
diff changeset
   457
        ssh.execute(
65917
2b7d4678bce6 proper ISABELLE_IDENTIFIER for remote Admin/build_history, e.g. relevant for settings;
wenzelm
parents: 65910
diff changeset
   458
          Isabelle_System.export_isabelle_identifier(isabelle_identifier) +
65846
aa6e58dc54d0 prefer explicit output file: potentially more robust than stdout;
wenzelm
parents: 65845
diff changeset
   459
          ssh.bash_path(isabelle_admin + Path.explode("build_history")) +
aa6e58dc54d0 prefer explicit output file: potentially more robust than stdout;
wenzelm
parents: 65845
diff changeset
   460
            " -o " + ssh.bash_path(output_file) + " " + options + " " +
aa6e58dc54d0 prefer explicit output file: potentially more robust than stdout;
wenzelm
parents: 65845
diff changeset
   461
            ssh.bash_path(isabelle_repos_other) + " " + args,
aa6e58dc54d0 prefer explicit output file: potentially more robust than stdout;
wenzelm
parents: 65845
diff changeset
   462
          progress_stdout = progress.echo(_),
aa6e58dc54d0 prefer explicit output file: potentially more robust than stdout;
wenzelm
parents: 65845
diff changeset
   463
          progress_stderr = progress.echo(_),
aa6e58dc54d0 prefer explicit output file: potentially more robust than stdout;
wenzelm
parents: 65845
diff changeset
   464
          strict = false)
64468
ed8940d6295c back to more elementary result (see 5f49765a25ec): avoid concurrent use of ssh channel;
wenzelm
parents: 64466
diff changeset
   465
65846
aa6e58dc54d0 prefer explicit output file: potentially more robust than stdout;
wenzelm
parents: 65845
diff changeset
   466
      val result =
aa6e58dc54d0 prefer explicit output file: potentially more robust than stdout;
wenzelm
parents: 65845
diff changeset
   467
        for (line <- split_lines(ssh.read(output_file)))
aa6e58dc54d0 prefer explicit output file: potentially more robust than stdout;
wenzelm
parents: 65845
diff changeset
   468
        yield {
aa6e58dc54d0 prefer explicit output file: potentially more robust than stdout;
wenzelm
parents: 65845
diff changeset
   469
          val log = Path.explode(line)
aa6e58dc54d0 prefer explicit output file: potentially more robust than stdout;
wenzelm
parents: 65845
diff changeset
   470
          val bytes = ssh.read_bytes(log)
aa6e58dc54d0 prefer explicit output file: potentially more robust than stdout;
wenzelm
parents: 65845
diff changeset
   471
          ssh.rm(log)
aa6e58dc54d0 prefer explicit output file: potentially more robust than stdout;
wenzelm
parents: 65845
diff changeset
   472
          (log.base.implode, bytes)
aa6e58dc54d0 prefer explicit output file: potentially more robust than stdout;
wenzelm
parents: 65845
diff changeset
   473
        }
aa6e58dc54d0 prefer explicit output file: potentially more robust than stdout;
wenzelm
parents: 65845
diff changeset
   474
aa6e58dc54d0 prefer explicit output file: potentially more robust than stdout;
wenzelm
parents: 65845
diff changeset
   475
      (result, process_result)
aa6e58dc54d0 prefer explicit output file: potentially more robust than stdout;
wenzelm
parents: 65845
diff changeset
   476
    })
64223
9d5b9f41df77 remove invocation of build_history: results are reported via stdout;
wenzelm
parents: 64213
diff changeset
   477
  }
64021
1e23caac8757 basic setup for Admin/build_history -- outside of Isabelle environment;
wenzelm
parents:
diff changeset
   478
}