src/Pure/System/isabelle_system.scala
author wenzelm
Thu, 23 Apr 2020 13:49:46 +0200
changeset 71792 936718dede80
parent 71739 c0bc99aad936
child 71870 82abfda58667
permissions -rw-r--r--
more robust Isabelle_System.init (amending c0bc99aad936): avoid non-termination on Windows (java.lang.StackOverflowError);
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
30175
62ba490670e8 fixed headers;
wenzelm
parents: 30174
diff changeset
     1
/*  Title:      Pure/System/isabelle_system.scala
27919
1eb8a3902d49 Isabelle system support.
wenzelm
parents:
diff changeset
     2
    Author:     Makarius
1eb8a3902d49 Isabelle system support.
wenzelm
parents:
diff changeset
     3
43695
5130dfe1b7be simplified Symbol based on lazy Symbol.Interpretation -- reduced odd "functorial style";
wenzelm
parents: 43670
diff changeset
     4
Fundamental Isabelle system environment: quasi-static module with
5130dfe1b7be simplified Symbol based on lazy Symbol.Interpretation -- reduced odd "functorial style";
wenzelm
parents: 43670
diff changeset
     5
optional init operation.
27919
1eb8a3902d49 Isabelle system support.
wenzelm
parents:
diff changeset
     6
*/
1eb8a3902d49 Isabelle system support.
wenzelm
parents:
diff changeset
     7
1eb8a3902d49 Isabelle system support.
wenzelm
parents:
diff changeset
     8
package isabelle
1eb8a3902d49 Isabelle system support.
wenzelm
parents:
diff changeset
     9
55618
995162143ef4 tuned imports;
wenzelm
parents: 55555
diff changeset
    10
67835
c8e4ee2b5482 tuned imports;
wenzelm
parents: 67586
diff changeset
    11
import java.io.{File => JFile, IOException}
56477
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
    12
import java.nio.file.{Path => JPath, Files, SimpleFileVisitor, FileVisitResult}
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
    13
import java.nio.file.attribute.BasicFileAttributes
27936
947cb8e3d313 added get_setting;
wenzelm
parents: 27919
diff changeset
    14
61281
wenzelm
parents: 61025
diff changeset
    15
import scala.collection.mutable
wenzelm
parents: 61025
diff changeset
    16
27919
1eb8a3902d49 Isabelle system support.
wenzelm
parents:
diff changeset
    17
43514
45cf8d5e109a lazy Isabelle_System.default supports implicit boot;
wenzelm
parents: 43484
diff changeset
    18
object Isabelle_System
45cf8d5e109a lazy Isabelle_System.default supports implicit boot;
wenzelm
parents: 43484
diff changeset
    19
{
50652
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
    20
  /** bootstrap information **/
43661
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    21
50652
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
    22
  def jdk_home(): String =
43661
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    23
  {
53582
8533b4cb8dd7 more robust System.getProperty with default;
wenzelm
parents: 52667
diff changeset
    24
    val java_home = System.getProperty("java.home", "")
50652
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
    25
    val home = new JFile(java_home)
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
    26
    val parent = home.getParent
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
    27
    if (home.getName == "jre" && parent != null &&
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
    28
        (new JFile(new JFile(parent, "bin"), "javac")).exists) parent
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
    29
    else java_home
43661
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    30
  }
37013
641923374eba Isabelle_System: allow explicit isabelle_home argument;
wenzelm
parents: 36991
diff changeset
    31
61291
e00e1bf23d03 uniform treatment of bootstrap directories;
wenzelm
parents: 61282
diff changeset
    32
  def bootstrap_directory(
e00e1bf23d03 uniform treatment of bootstrap directories;
wenzelm
parents: 61282
diff changeset
    33
    preference: String, envar: String, property: String, description: String): String =
50652
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
    34
  {
61291
e00e1bf23d03 uniform treatment of bootstrap directories;
wenzelm
parents: 61282
diff changeset
    35
    val value =
68409
c8c3136e3ba7 tuned -- use existing operation;
wenzelm
parents: 67924
diff changeset
    36
      proper_string(preference) orElse  // explicit argument
c8c3136e3ba7 tuned -- use existing operation;
wenzelm
parents: 67924
diff changeset
    37
      proper_string(System.getenv(envar)) orElse  // e.g. inherited from running isabelle tool
c8c3136e3ba7 tuned -- use existing operation;
wenzelm
parents: 67924
diff changeset
    38
      proper_string(System.getProperty(property)) getOrElse  // e.g. via JVM application boot process
61291
e00e1bf23d03 uniform treatment of bootstrap directories;
wenzelm
parents: 61282
diff changeset
    39
      error("Unknown " + description + " directory")
50652
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
    40
61291
e00e1bf23d03 uniform treatment of bootstrap directories;
wenzelm
parents: 61282
diff changeset
    41
    if ((new JFile(value)).isDirectory) value
e00e1bf23d03 uniform treatment of bootstrap directories;
wenzelm
parents: 61282
diff changeset
    42
    else error("Bad " + description + " directory " + quote(value))
50652
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
    43
  }
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
    44
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
    45
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
    46
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
    47
  /** implicit settings environment **/
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
    48
71739
c0bc99aad936 clarified init of settings vs. services;
wenzelm
parents: 71734
diff changeset
    49
  abstract class Service
c0bc99aad936 clarified init of settings vs. services;
wenzelm
parents: 71734
diff changeset
    50
50652
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
    51
  @volatile private var _settings: Option[Map[String, String]] = None
71739
c0bc99aad936 clarified init of settings vs. services;
wenzelm
parents: 71734
diff changeset
    52
  @volatile private var _services: Option[List[Service]] = None
c0bc99aad936 clarified init of settings vs. services;
wenzelm
parents: 71734
diff changeset
    53
62610
4c89504c76fb more uniform signature for various process invocations;
wenzelm
parents: 62602
diff changeset
    54
  def settings(): Map[String, String] =
50652
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
    55
  {
71792
936718dede80 more robust Isabelle_System.init (amending c0bc99aad936): avoid non-termination on Windows (java.lang.StackOverflowError);
wenzelm
parents: 71739
diff changeset
    56
    if (_settings.isEmpty) init()  // unsynchronized check
62610
4c89504c76fb more uniform signature for various process invocations;
wenzelm
parents: 62602
diff changeset
    57
    _settings.get
50652
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
    58
  }
31796
117300d72398 renamed IsabelleSystem to Isabelle_System;
wenzelm
parents: 31704
diff changeset
    59
71739
c0bc99aad936 clarified init of settings vs. services;
wenzelm
parents: 71734
diff changeset
    60
  def services(): List[Service] =
c0bc99aad936 clarified init of settings vs. services;
wenzelm
parents: 71734
diff changeset
    61
  {
71792
936718dede80 more robust Isabelle_System.init (amending c0bc99aad936): avoid non-termination on Windows (java.lang.StackOverflowError);
wenzelm
parents: 71739
diff changeset
    62
    if (_services.isEmpty) init()  // unsynchronized check
71739
c0bc99aad936 clarified init of settings vs. services;
wenzelm
parents: 71734
diff changeset
    63
    _services.get
c0bc99aad936 clarified init of settings vs. services;
wenzelm
parents: 71734
diff changeset
    64
  }
c0bc99aad936 clarified init of settings vs. services;
wenzelm
parents: 71734
diff changeset
    65
c0bc99aad936 clarified init of settings vs. services;
wenzelm
parents: 71734
diff changeset
    66
  def init(isabelle_root: String = "", cygwin_root: String = ""): Unit = synchronized
c0bc99aad936 clarified init of settings vs. services;
wenzelm
parents: 71734
diff changeset
    67
  {
71792
936718dede80 more robust Isabelle_System.init (amending c0bc99aad936): avoid non-termination on Windows (java.lang.StackOverflowError);
wenzelm
parents: 71739
diff changeset
    68
    if (_settings.isEmpty || _services.isEmpty) {
61293
876e7eae22be clarified ISABELLE_ROOT (platform path) vs. ISABELLE_HOME (standard path);
wenzelm
parents: 61291
diff changeset
    69
      val isabelle_root1 =
876e7eae22be clarified ISABELLE_ROOT (platform path) vs. ISABELLE_HOME (standard path);
wenzelm
parents: 61291
diff changeset
    70
        bootstrap_directory(isabelle_root, "ISABELLE_ROOT", "isabelle.root", "Isabelle root")
61291
e00e1bf23d03 uniform treatment of bootstrap directories;
wenzelm
parents: 61282
diff changeset
    71
e00e1bf23d03 uniform treatment of bootstrap directories;
wenzelm
parents: 61282
diff changeset
    72
      val cygwin_root1 =
e00e1bf23d03 uniform treatment of bootstrap directories;
wenzelm
parents: 61282
diff changeset
    73
        if (Platform.is_windows)
e00e1bf23d03 uniform treatment of bootstrap directories;
wenzelm
parents: 61282
diff changeset
    74
          bootstrap_directory(cygwin_root, "CYGWIN_ROOT", "cygwin.root", "Cygwin root")
e00e1bf23d03 uniform treatment of bootstrap directories;
wenzelm
parents: 61282
diff changeset
    75
        else ""
e00e1bf23d03 uniform treatment of bootstrap directories;
wenzelm
parents: 61282
diff changeset
    76
61295
efe76f7f9162 proper Cygwin.init (amending e00e1bf23d03);
wenzelm
parents: 61293
diff changeset
    77
      if (Platform.is_windows) Cygwin.init(isabelle_root1, cygwin_root1)
efe76f7f9162 proper Cygwin.init (amending e00e1bf23d03);
wenzelm
parents: 61293
diff changeset
    78
51820
142c69695785 cygwin_root as optional argument;
wenzelm
parents: 51615
diff changeset
    79
      def set_cygwin_root()
43661
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    80
      {
51820
142c69695785 cygwin_root as optional argument;
wenzelm
parents: 51615
diff changeset
    81
        if (Platform.is_windows)
61291
e00e1bf23d03 uniform treatment of bootstrap directories;
wenzelm
parents: 61282
diff changeset
    82
          _settings = Some(_settings.getOrElse(Map.empty) + ("CYGWIN_ROOT" -> cygwin_root1))
51820
142c69695785 cygwin_root as optional argument;
wenzelm
parents: 51615
diff changeset
    83
      }
47725
447b635bcea5 cold-start HOME is user.home, in accordance with Cygwin-Terminal.bat;
wenzelm
parents: 47674
diff changeset
    84
51820
142c69695785 cygwin_root as optional argument;
wenzelm
parents: 51615
diff changeset
    85
      set_cygwin_root()
57411
9444489766a1 sane environment defaults for Mac OS X, based on former App1/script -- e.g. relevant for MacTeX PATH;
wenzelm
parents: 56871
diff changeset
    86
58640
37f852399a32 prefer original TEMP from Windows, e.g. relevant for Isabelle distribution within read-only directory (due to its bundled Cygwin and /tmp inside of it);
wenzelm
parents: 57411
diff changeset
    87
      def default(env: Map[String, String], entry: (String, String)): Map[String, String] =
37f852399a32 prefer original TEMP from Windows, e.g. relevant for Isabelle distribution within read-only directory (due to its bundled Cygwin and /tmp inside of it);
wenzelm
parents: 57411
diff changeset
    88
        if (env.isDefinedAt(entry._1) || entry._2 == "") env
37f852399a32 prefer original TEMP from Windows, e.g. relevant for Isabelle distribution within read-only directory (due to its bundled Cygwin and /tmp inside of it);
wenzelm
parents: 57411
diff changeset
    89
        else env + entry
37f852399a32 prefer original TEMP from Windows, e.g. relevant for Isabelle distribution within read-only directory (due to its bundled Cygwin and /tmp inside of it);
wenzelm
parents: 57411
diff changeset
    90
57411
9444489766a1 sane environment defaults for Mac OS X, based on former App1/script -- e.g. relevant for MacTeX PATH;
wenzelm
parents: 56871
diff changeset
    91
      val env =
9444489766a1 sane environment defaults for Mac OS X, based on former App1/script -- e.g. relevant for MacTeX PATH;
wenzelm
parents: 56871
diff changeset
    92
      {
58640
37f852399a32 prefer original TEMP from Windows, e.g. relevant for Isabelle distribution within read-only directory (due to its bundled Cygwin and /tmp inside of it);
wenzelm
parents: 57411
diff changeset
    93
        val temp_windows =
37f852399a32 prefer original TEMP from Windows, e.g. relevant for Isabelle distribution within read-only directory (due to its bundled Cygwin and /tmp inside of it);
wenzelm
parents: 57411
diff changeset
    94
        {
61291
e00e1bf23d03 uniform treatment of bootstrap directories;
wenzelm
parents: 61282
diff changeset
    95
          val temp = if (Platform.is_windows) System.getenv("TEMP") else null
58640
37f852399a32 prefer original TEMP from Windows, e.g. relevant for Isabelle distribution within read-only directory (due to its bundled Cygwin and /tmp inside of it);
wenzelm
parents: 57411
diff changeset
    96
          if (temp != null && temp.contains('\\')) temp else ""
37f852399a32 prefer original TEMP from Windows, e.g. relevant for Isabelle distribution within read-only directory (due to its bundled Cygwin and /tmp inside of it);
wenzelm
parents: 57411
diff changeset
    97
        }
57411
9444489766a1 sane environment defaults for Mac OS X, based on former App1/script -- e.g. relevant for MacTeX PATH;
wenzelm
parents: 56871
diff changeset
    98
        val user_home = System.getProperty("user.home", "")
9444489766a1 sane environment defaults for Mac OS X, based on former App1/script -- e.g. relevant for MacTeX PATH;
wenzelm
parents: 56871
diff changeset
    99
        val isabelle_app = System.getProperty("isabelle.app", "")
51820
142c69695785 cygwin_root as optional argument;
wenzelm
parents: 51615
diff changeset
   100
58640
37f852399a32 prefer original TEMP from Windows, e.g. relevant for Isabelle distribution within read-only directory (due to its bundled Cygwin and /tmp inside of it);
wenzelm
parents: 57411
diff changeset
   101
        default(
37f852399a32 prefer original TEMP from Windows, e.g. relevant for Isabelle distribution within read-only directory (due to its bundled Cygwin and /tmp inside of it);
wenzelm
parents: 57411
diff changeset
   102
          default(
60992
89effcb342df clarified modules, like ML version;
wenzelm
parents: 60991
diff changeset
   103
            default(sys.env + ("ISABELLE_JDK_HOME" -> File.standard_path(jdk_home())),
60215
5fb4990dfc73 misc tuning, based on warnings by IntelliJ IDEA;
wenzelm
parents: 60196
diff changeset
   104
              "TEMP_WINDOWS" -> temp_windows),
5fb4990dfc73 misc tuning, based on warnings by IntelliJ IDEA;
wenzelm
parents: 60196
diff changeset
   105
            "HOME" -> user_home),
5fb4990dfc73 misc tuning, based on warnings by IntelliJ IDEA;
wenzelm
parents: 60196
diff changeset
   106
          "ISABELLE_APP" -> "true")
57411
9444489766a1 sane environment defaults for Mac OS X, based on former App1/script -- e.g. relevant for MacTeX PATH;
wenzelm
parents: 56871
diff changeset
   107
      }
29177
0e88d33e8d19 maintain initial process environment;
wenzelm
parents: 29174
diff changeset
   108
51820
142c69695785 cygwin_root as optional argument;
wenzelm
parents: 51615
diff changeset
   109
      val settings =
56428
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   110
      {
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   111
        val dump = JFile.createTempFile("settings", null)
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   112
        dump.deleteOnExit
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   113
        try {
61293
876e7eae22be clarified ISABELLE_ROOT (platform path) vs. ISABELLE_HOME (standard path);
wenzelm
parents: 61291
diff changeset
   114
          val cmd1 =
64454
4c868fa9d79b prefer standard_path for bash arg;
wenzelm
parents: 64304
diff changeset
   115
            if (Platform.is_windows)
4c868fa9d79b prefer standard_path for bash arg;
wenzelm
parents: 64304
diff changeset
   116
              List(cygwin_root1 + "\\bin\\bash", "-l",
4c868fa9d79b prefer standard_path for bash arg;
wenzelm
parents: 64304
diff changeset
   117
                File.standard_path(isabelle_root1 + "\\bin\\isabelle"))
4c868fa9d79b prefer standard_path for bash arg;
wenzelm
parents: 64304
diff changeset
   118
            else
4c868fa9d79b prefer standard_path for bash arg;
wenzelm
parents: 64304
diff changeset
   119
              List(isabelle_root1 + "/bin/isabelle")
4c868fa9d79b prefer standard_path for bash arg;
wenzelm
parents: 64304
diff changeset
   120
          val cmd = cmd1 ::: List("getenv", "-d", dump.toString)
61293
876e7eae22be clarified ISABELLE_ROOT (platform path) vs. ISABELLE_HOME (standard path);
wenzelm
parents: 61291
diff changeset
   121
64454
4c868fa9d79b prefer standard_path for bash arg;
wenzelm
parents: 64304
diff changeset
   122
          val (output, rc) = process_output(process(cmd, env = env, redirect = true))
51820
142c69695785 cygwin_root as optional argument;
wenzelm
parents: 51615
diff changeset
   123
          if (rc != 0) error(output)
56477
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   124
51820
142c69695785 cygwin_root as optional argument;
wenzelm
parents: 51615
diff changeset
   125
          val entries =
62610
4c89504c76fb more uniform signature for various process invocations;
wenzelm
parents: 62602
diff changeset
   126
            (for (entry <- File.read(dump).split("\u0000") if entry != "") yield {
51820
142c69695785 cygwin_root as optional argument;
wenzelm
parents: 51615
diff changeset
   127
              val i = entry.indexOf('=')
60215
5fb4990dfc73 misc tuning, based on warnings by IntelliJ IDEA;
wenzelm
parents: 60196
diff changeset
   128
              if (i <= 0) entry -> ""
5fb4990dfc73 misc tuning, based on warnings by IntelliJ IDEA;
wenzelm
parents: 60196
diff changeset
   129
              else entry.substring(0, i) -> entry.substring(i + 1)
51820
142c69695785 cygwin_root as optional argument;
wenzelm
parents: 51615
diff changeset
   130
            }).toMap
142c69695785 cygwin_root as optional argument;
wenzelm
parents: 51615
diff changeset
   131
          entries + ("PATH" -> entries("PATH_JVM")) - "PATH_JVM"
142c69695785 cygwin_root as optional argument;
wenzelm
parents: 51615
diff changeset
   132
        }
56428
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   133
        finally { dump.delete }
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   134
      }
50652
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
   135
      _settings = Some(settings)
51820
142c69695785 cygwin_root as optional argument;
wenzelm
parents: 51615
diff changeset
   136
      set_cygwin_root()
71739
c0bc99aad936 clarified init of settings vs. services;
wenzelm
parents: 71734
diff changeset
   137
c0bc99aad936 clarified init of settings vs. services;
wenzelm
parents: 71734
diff changeset
   138
      val variable = "ISABELLE_SCALA_SERVICES"
c0bc99aad936 clarified init of settings vs. services;
wenzelm
parents: 71734
diff changeset
   139
      val services =
c0bc99aad936 clarified init of settings vs. services;
wenzelm
parents: 71734
diff changeset
   140
        for (name <- space_explode(':', settings.getOrElse(variable, getenv_error(variable))))
c0bc99aad936 clarified init of settings vs. services;
wenzelm
parents: 71734
diff changeset
   141
        yield {
c0bc99aad936 clarified init of settings vs. services;
wenzelm
parents: 71734
diff changeset
   142
          def err(msg: String): Nothing =
c0bc99aad936 clarified init of settings vs. services;
wenzelm
parents: 71734
diff changeset
   143
            error("Bad entry " + quote(name) + " in " + variable + "\n" + msg)
c0bc99aad936 clarified init of settings vs. services;
wenzelm
parents: 71734
diff changeset
   144
          try {
c0bc99aad936 clarified init of settings vs. services;
wenzelm
parents: 71734
diff changeset
   145
            Class.forName(name).asInstanceOf[Class[Service]]
c0bc99aad936 clarified init of settings vs. services;
wenzelm
parents: 71734
diff changeset
   146
              .getDeclaredConstructor().newInstance()
c0bc99aad936 clarified init of settings vs. services;
wenzelm
parents: 71734
diff changeset
   147
          }
c0bc99aad936 clarified init of settings vs. services;
wenzelm
parents: 71734
diff changeset
   148
          catch {
c0bc99aad936 clarified init of settings vs. services;
wenzelm
parents: 71734
diff changeset
   149
            case _: ClassNotFoundException => err("Class not found")
c0bc99aad936 clarified init of settings vs. services;
wenzelm
parents: 71734
diff changeset
   150
            case exn: Throwable => err(Exn.message(exn))
c0bc99aad936 clarified init of settings vs. services;
wenzelm
parents: 71734
diff changeset
   151
          }
c0bc99aad936 clarified init of settings vs. services;
wenzelm
parents: 71734
diff changeset
   152
        }
c0bc99aad936 clarified init of settings vs. services;
wenzelm
parents: 71734
diff changeset
   153
      _services = Some(services)
43661
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
   154
    }
27953
b2003c98897c added getenv;
wenzelm
parents: 27936
diff changeset
   155
  }
27919
1eb8a3902d49 Isabelle system support.
wenzelm
parents:
diff changeset
   156
31796
117300d72398 renamed IsabelleSystem to Isabelle_System;
wenzelm
parents: 31704
diff changeset
   157
117300d72398 renamed IsabelleSystem to Isabelle_System;
wenzelm
parents: 31704
diff changeset
   158
  /* getenv */
117300d72398 renamed IsabelleSystem to Isabelle_System;
wenzelm
parents: 31704
diff changeset
   159
71739
c0bc99aad936 clarified init of settings vs. services;
wenzelm
parents: 71734
diff changeset
   160
  private def getenv_error(name: String): Nothing =
c0bc99aad936 clarified init of settings vs. services;
wenzelm
parents: 71734
diff changeset
   161
    error("Undefined Isabelle environment variable: " + quote(name))
c0bc99aad936 clarified init of settings vs. services;
wenzelm
parents: 71734
diff changeset
   162
64228
b46969a851a9 expand relatively to given environment, notably remote HOME;
wenzelm
parents: 64220
diff changeset
   163
  def getenv(name: String, env: Map[String, String] = settings()): String =
b46969a851a9 expand relatively to given environment, notably remote HOME;
wenzelm
parents: 64220
diff changeset
   164
    env.getOrElse(name, "")
31498
be0f7f4f9e12 static IsabelleSystem.charset;
wenzelm
parents: 31443
diff changeset
   165
64228
b46969a851a9 expand relatively to given environment, notably remote HOME;
wenzelm
parents: 64220
diff changeset
   166
  def getenv_strict(name: String, env: Map[String, String] = settings()): String =
65717
wenzelm
parents: 65090
diff changeset
   167
    proper_string(getenv(name, env)) getOrElse
wenzelm
parents: 65090
diff changeset
   168
      error("Undefined Isabelle environment variable: " + quote(name))
27919
1eb8a3902d49 Isabelle system support.
wenzelm
parents:
diff changeset
   169
61291
e00e1bf23d03 uniform treatment of bootstrap directories;
wenzelm
parents: 61282
diff changeset
   170
  def cygwin_root(): String = getenv_strict("CYGWIN_ROOT")
51820
142c69695785 cygwin_root as optional argument;
wenzelm
parents: 51615
diff changeset
   171
67865
ab0b8e388967 more uniform id;
wenzelm
parents: 67835
diff changeset
   172
  def isabelle_id(): String =
ab0b8e388967 more uniform id;
wenzelm
parents: 67835
diff changeset
   173
    proper_string(getenv("ISABELLE_ID")) getOrElse
67872
39b27d38a54c more accurate isabelle_id: parent directory is not necessarily at tip;
wenzelm
parents: 67865
diff changeset
   174
      Mercurial.repository(Path.explode("~~")).parent()
67865
ab0b8e388967 more uniform id;
wenzelm
parents: 67835
diff changeset
   175
31796
117300d72398 renamed IsabelleSystem to Isabelle_System;
wenzelm
parents: 31704
diff changeset
   176
54039
c931190b8c5c tuned whitespace;
wenzelm
parents: 53582
diff changeset
   177
43606
e1a09c2a6248 prefer Isabelle path algebra;
wenzelm
parents: 43520
diff changeset
   178
  /** file-system operations **/
31796
117300d72398 renamed IsabelleSystem to Isabelle_System;
wenzelm
parents: 31704
diff changeset
   179
71114
6cfec8029831 clarified signature;
wenzelm
parents: 69425
diff changeset
   180
  /* permissions */
6cfec8029831 clarified signature;
wenzelm
parents: 69425
diff changeset
   181
6cfec8029831 clarified signature;
wenzelm
parents: 69425
diff changeset
   182
  def chmod(arg: String, path: Path): Unit =
71123
6ab4a5fb82e1 clarified signature: allow compound arg;
wenzelm
parents: 71119
diff changeset
   183
    bash("chmod " + arg + " " + File.bash_path(path)).check
71114
6cfec8029831 clarified signature;
wenzelm
parents: 69425
diff changeset
   184
6cfec8029831 clarified signature;
wenzelm
parents: 69425
diff changeset
   185
  def chown(arg: String, path: Path): Unit =
71123
6ab4a5fb82e1 clarified signature: allow compound arg;
wenzelm
parents: 71119
diff changeset
   186
    bash("chown " + arg + " " + File.bash_path(path)).check
71114
6cfec8029831 clarified signature;
wenzelm
parents: 69425
diff changeset
   187
6cfec8029831 clarified signature;
wenzelm
parents: 69425
diff changeset
   188
64189
dfb63036c4f6 tuned signature;
wenzelm
parents: 64167
diff changeset
   189
  /* directories */
50893
d55eb82ae77b Isabelle_System.mkdirs with explicit error checking (in accordance to ML version), e.g. relevant with read-only DMG file-system on Mac OS X;
wenzelm
parents: 50854
diff changeset
   190
60013
42d34eeb283c more uniform Isabelle_System.mkdirs in ML/Scala;
wenzelm
parents: 58640
diff changeset
   191
  def mkdirs(path: Path): Unit =
60263
2a5dbad75355 more portable mkdirs via perl, e.g. relevant for Windows UNC paths (network shares);
wenzelm
parents: 60215
diff changeset
   192
    if (!path.is_dir) {
62545
8ebffdaf2ce2 Bash.process always uses a closed script instead of an open argument list, for extra robustness on Windows, where quoting is not well-defined;
wenzelm
parents: 62543
diff changeset
   193
      bash("perl -e \"use File::Path make_path; make_path('" + File.standard_path(path) + "');\"")
60988
1d7a7e33fd67 tuned signature, according to ML version;
wenzelm
parents: 60263
diff changeset
   194
      if (!path.is_dir) error("Failed to create directory: " + quote(File.platform_path(path)))
60263
2a5dbad75355 more portable mkdirs via perl, e.g. relevant for Windows UNC paths (network shares);
wenzelm
parents: 60215
diff changeset
   195
    }
50893
d55eb82ae77b Isabelle_System.mkdirs with explicit error checking (in accordance to ML version), e.g. relevant with read-only DMG file-system on Mac OS X;
wenzelm
parents: 50854
diff changeset
   196
64189
dfb63036c4f6 tuned signature;
wenzelm
parents: 64167
diff changeset
   197
  def copy_dir(dir1: Path, dir2: Path): Unit =
dfb63036c4f6 tuned signature;
wenzelm
parents: 64167
diff changeset
   198
    bash("cp -a " + File.bash_path(dir1) + " " + File.bash_path(dir2)).check
dfb63036c4f6 tuned signature;
wenzelm
parents: 64167
diff changeset
   199
50893
d55eb82ae77b Isabelle_System.mkdirs with explicit error checking (in accordance to ML version), e.g. relevant with read-only DMG file-system on Mac OS X;
wenzelm
parents: 50854
diff changeset
   200
56428
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   201
  /* tmp files */
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   202
71569
391ea80ff27c more robust re-use of $ISABELLE_TMP_PREFIX (amending c1597167563e);
wenzelm
parents: 71520
diff changeset
   203
  def isabelle_tmp_prefix(): JFile =
56428
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   204
  {
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   205
    val path = Path.explode("$ISABELLE_TMP_PREFIX")
60013
42d34eeb283c more uniform Isabelle_System.mkdirs in ML/Scala;
wenzelm
parents: 58640
diff changeset
   206
    path.file.mkdirs  // low-level mkdirs
60988
1d7a7e33fd67 tuned signature, according to ML version;
wenzelm
parents: 60263
diff changeset
   207
    File.platform_file(path)
56428
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   208
  }
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   209
67924
b2cdd24e83b6 clarified signature: flexible base_dir;
wenzelm
parents: 67872
diff changeset
   210
  def tmp_file(name: String, ext: String = "", base_dir: JFile = isabelle_tmp_prefix()): JFile =
56428
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   211
  {
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   212
    val suffix = if (ext == "") "" else "." + ext
67924
b2cdd24e83b6 clarified signature: flexible base_dir;
wenzelm
parents: 67872
diff changeset
   213
    val file = Files.createTempFile(base_dir.toPath, name, suffix).toFile
56428
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   214
    file.deleteOnExit
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   215
    file
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   216
  }
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   217
64220
e7cbf81ec4b7 prefer Isabelle standard Path;
wenzelm
parents: 64213
diff changeset
   218
  def with_tmp_file[A](name: String, ext: String = "")(body: Path => A): A =
56428
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   219
  {
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   220
    val file = tmp_file(name, ext)
64220
e7cbf81ec4b7 prefer Isabelle standard Path;
wenzelm
parents: 64213
diff changeset
   221
    try { body(File.path(file)) } finally { file.delete }
56428
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   222
  }
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   223
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   224
56477
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   225
  /* tmp dirs */
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   226
64213
b265dd04d57d clarified file operations;
wenzelm
parents: 64189
diff changeset
   227
  def rm_tree(root: Path): Unit = rm_tree(root.file)
b265dd04d57d clarified file operations;
wenzelm
parents: 64189
diff changeset
   228
56477
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   229
  def rm_tree(root: JFile)
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   230
  {
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   231
    root.delete
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   232
    if (root.isDirectory) {
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   233
      Files.walkFileTree(root.toPath,
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   234
        new SimpleFileVisitor[JPath] {
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   235
          override def visitFile(file: JPath, attrs: BasicFileAttributes): FileVisitResult =
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   236
          {
68991
6c1beb52d766 more robust: avoid race condition wrt. cleanup of ML process, e.g. relevant for "$ISABELLE_TMP/rat.ML" in theory Codegen.Further;
wenzelm
parents: 68409
diff changeset
   237
            try { Files.deleteIfExists(file) }
6c1beb52d766 more robust: avoid race condition wrt. cleanup of ML process, e.g. relevant for "$ISABELLE_TMP/rat.ML" in theory Codegen.Further;
wenzelm
parents: 68409
diff changeset
   238
            catch { case _: IOException => }
56477
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   239
            FileVisitResult.CONTINUE
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   240
          }
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   241
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   242
          override def postVisitDirectory(dir: JPath, e: IOException): FileVisitResult =
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   243
          {
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   244
            if (e == null) {
68991
6c1beb52d766 more robust: avoid race condition wrt. cleanup of ML process, e.g. relevant for "$ISABELLE_TMP/rat.ML" in theory Codegen.Further;
wenzelm
parents: 68409
diff changeset
   245
              try { Files.deleteIfExists(dir) }
6c1beb52d766 more robust: avoid race condition wrt. cleanup of ML process, e.g. relevant for "$ISABELLE_TMP/rat.ML" in theory Codegen.Further;
wenzelm
parents: 68409
diff changeset
   246
              catch { case _: IOException => }
56477
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   247
              FileVisitResult.CONTINUE
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   248
            }
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   249
            else throw e
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   250
          }
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   251
        }
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   252
      )
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   253
    }
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   254
  }
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   255
67924
b2cdd24e83b6 clarified signature: flexible base_dir;
wenzelm
parents: 67872
diff changeset
   256
  def tmp_dir(name: String, base_dir: JFile = isabelle_tmp_prefix()): JFile =
56477
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   257
  {
67924
b2cdd24e83b6 clarified signature: flexible base_dir;
wenzelm
parents: 67872
diff changeset
   258
    val dir = Files.createTempDirectory(base_dir.toPath, name).toFile
56477
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   259
    dir.deleteOnExit
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   260
    dir
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   261
  }
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   262
64220
e7cbf81ec4b7 prefer Isabelle standard Path;
wenzelm
parents: 64213
diff changeset
   263
  def with_tmp_dir[A](name: String)(body: Path => A): A =
56477
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   264
  {
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   265
    val dir = tmp_dir(name)
64220
e7cbf81ec4b7 prefer Isabelle standard Path;
wenzelm
parents: 64213
diff changeset
   266
    try { body(File.path(dir)) } finally { rm_tree(dir) }
56477
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   267
  }
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   268
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   269
65793
96b4799a2e04 more robust update of generated directory;
wenzelm
parents: 65717
diff changeset
   270
  /* quasi-atomic update of directory */
96b4799a2e04 more robust update of generated directory;
wenzelm
parents: 65717
diff changeset
   271
96b4799a2e04 more robust update of generated directory;
wenzelm
parents: 65717
diff changeset
   272
  def update_directory(dir: Path, f: Path => Unit)
96b4799a2e04 more robust update of generated directory;
wenzelm
parents: 65717
diff changeset
   273
  {
96b4799a2e04 more robust update of generated directory;
wenzelm
parents: 65717
diff changeset
   274
    val new_dir = dir.ext("new")
96b4799a2e04 more robust update of generated directory;
wenzelm
parents: 65717
diff changeset
   275
    val old_dir = dir.ext("old")
96b4799a2e04 more robust update of generated directory;
wenzelm
parents: 65717
diff changeset
   276
96b4799a2e04 more robust update of generated directory;
wenzelm
parents: 65717
diff changeset
   277
    rm_tree(new_dir)
96b4799a2e04 more robust update of generated directory;
wenzelm
parents: 65717
diff changeset
   278
    rm_tree(old_dir)
96b4799a2e04 more robust update of generated directory;
wenzelm
parents: 65717
diff changeset
   279
96b4799a2e04 more robust update of generated directory;
wenzelm
parents: 65717
diff changeset
   280
    f(new_dir)
96b4799a2e04 more robust update of generated directory;
wenzelm
parents: 65717
diff changeset
   281
96b4799a2e04 more robust update of generated directory;
wenzelm
parents: 65717
diff changeset
   282
    if (dir.is_dir) File.move(dir, old_dir)
96b4799a2e04 more robust update of generated directory;
wenzelm
parents: 65717
diff changeset
   283
    File.move(new_dir, dir)
96b4799a2e04 more robust update of generated directory;
wenzelm
parents: 65717
diff changeset
   284
    rm_tree(old_dir)
96b4799a2e04 more robust update of generated directory;
wenzelm
parents: 65717
diff changeset
   285
  }
96b4799a2e04 more robust update of generated directory;
wenzelm
parents: 65717
diff changeset
   286
96b4799a2e04 more robust update of generated directory;
wenzelm
parents: 65717
diff changeset
   287
62613
wenzelm
parents: 62612
diff changeset
   288
wenzelm
parents: 62612
diff changeset
   289
  /** external processes **/
wenzelm
parents: 62612
diff changeset
   290
wenzelm
parents: 62612
diff changeset
   291
  /* raw process */
wenzelm
parents: 62612
diff changeset
   292
wenzelm
parents: 62612
diff changeset
   293
  def process(command_line: List[String],
wenzelm
parents: 62612
diff changeset
   294
    cwd: JFile = null,
wenzelm
parents: 62612
diff changeset
   295
    env: Map[String, String] = settings(),
wenzelm
parents: 62612
diff changeset
   296
    redirect: Boolean = false): Process =
wenzelm
parents: 62612
diff changeset
   297
  {
wenzelm
parents: 62612
diff changeset
   298
    val proc = new ProcessBuilder
wenzelm
parents: 62612
diff changeset
   299
    proc.command(command_line:_*)  // fragile on Windows
wenzelm
parents: 62612
diff changeset
   300
    if (cwd != null) proc.directory(cwd)
64021
1e23caac8757 basic setup for Admin/build_history -- outside of Isabelle environment;
wenzelm
parents: 63687
diff changeset
   301
    if (env != null) {
1e23caac8757 basic setup for Admin/build_history -- outside of Isabelle environment;
wenzelm
parents: 63687
diff changeset
   302
      proc.environment.clear
1e23caac8757 basic setup for Admin/build_history -- outside of Isabelle environment;
wenzelm
parents: 63687
diff changeset
   303
      for ((x, y) <- env) proc.environment.put(x, y)
1e23caac8757 basic setup for Admin/build_history -- outside of Isabelle environment;
wenzelm
parents: 63687
diff changeset
   304
    }
62613
wenzelm
parents: 62612
diff changeset
   305
    proc.redirectErrorStream(redirect)
wenzelm
parents: 62612
diff changeset
   306
    proc.start
wenzelm
parents: 62612
diff changeset
   307
  }
wenzelm
parents: 62612
diff changeset
   308
wenzelm
parents: 62612
diff changeset
   309
  def process_output(proc: Process): (String, Int) =
wenzelm
parents: 62612
diff changeset
   310
  {
wenzelm
parents: 62612
diff changeset
   311
    proc.getOutputStream.close
wenzelm
parents: 62612
diff changeset
   312
wenzelm
parents: 62612
diff changeset
   313
    val output = File.read_stream(proc.getInputStream)
wenzelm
parents: 62612
diff changeset
   314
    val rc =
wenzelm
parents: 62612
diff changeset
   315
      try { proc.waitFor }
wenzelm
parents: 62612
diff changeset
   316
      finally {
wenzelm
parents: 62612
diff changeset
   317
        proc.getInputStream.close
wenzelm
parents: 62612
diff changeset
   318
        proc.getErrorStream.close
wenzelm
parents: 62612
diff changeset
   319
        proc.destroy
71700
6c39c3be85df clarified signature;
wenzelm
parents: 71569
diff changeset
   320
        Exn.Interrupt.dispose()
62613
wenzelm
parents: 62612
diff changeset
   321
      }
wenzelm
parents: 62612
diff changeset
   322
    (output, rc)
wenzelm
parents: 62612
diff changeset
   323
  }
61025
636b578bfadd clarified kill on Windows: just one executable;
wenzelm
parents: 60992
diff changeset
   324
636b578bfadd clarified kill on Windows: just one executable;
wenzelm
parents: 60992
diff changeset
   325
  def kill(signal: String, group_pid: String): (String, Int) =
636b578bfadd clarified kill on Windows: just one executable;
wenzelm
parents: 60992
diff changeset
   326
  {
636b578bfadd clarified kill on Windows: just one executable;
wenzelm
parents: 60992
diff changeset
   327
    val bash =
61291
e00e1bf23d03 uniform treatment of bootstrap directories;
wenzelm
parents: 61282
diff changeset
   328
      if (Platform.is_windows) List(cygwin_root() + "\\bin\\bash.exe")
61025
636b578bfadd clarified kill on Windows: just one executable;
wenzelm
parents: 60992
diff changeset
   329
      else List("/usr/bin/env", "bash")
62610
4c89504c76fb more uniform signature for various process invocations;
wenzelm
parents: 62602
diff changeset
   330
    process_output(process(bash ::: List("-c", "kill -" + signal + " -" + group_pid)))
61025
636b578bfadd clarified kill on Windows: just one executable;
wenzelm
parents: 60992
diff changeset
   331
  }
636b578bfadd clarified kill on Windows: just one executable;
wenzelm
parents: 60992
diff changeset
   332
636b578bfadd clarified kill on Windows: just one executable;
wenzelm
parents: 60992
diff changeset
   333
62613
wenzelm
parents: 62612
diff changeset
   334
  /* GNU bash */
31796
117300d72398 renamed IsabelleSystem to Isabelle_System;
wenzelm
parents: 31704
diff changeset
   335
62610
4c89504c76fb more uniform signature for various process invocations;
wenzelm
parents: 62602
diff changeset
   336
  def bash(script: String,
4c89504c76fb more uniform signature for various process invocations;
wenzelm
parents: 62602
diff changeset
   337
    cwd: JFile = null,
4c89504c76fb more uniform signature for various process invocations;
wenzelm
parents: 62602
diff changeset
   338
    env: Map[String, String] = settings(),
4c89504c76fb more uniform signature for various process invocations;
wenzelm
parents: 62602
diff changeset
   339
    redirect: Boolean = false,
51962
016cb7d8f297 limit build process output, to avoid bombing Isabelle/Scala process by ill-behaved jobs (e.g. Containers in AFP/9025435b29cf);
wenzelm
parents: 51820
diff changeset
   340
    progress_stdout: String => Unit = (_: String) => (),
016cb7d8f297 limit build process output, to avoid bombing Isabelle/Scala process by ill-behaved jobs (e.g. Containers in AFP/9025435b29cf);
wenzelm
parents: 51820
diff changeset
   341
    progress_stderr: String => Unit = (_: String) => (),
56871
d06ff36b4fa7 expose interrupts more like ML version, but not in managed bash processes of Build;
wenzelm
parents: 56862
diff changeset
   342
    progress_limit: Option[Long] = None,
62602
96e679f042ec more thorough cleanup -- in Scala;
wenzelm
parents: 62573
diff changeset
   343
    strict: Boolean = true,
96e679f042ec more thorough cleanup -- in Scala;
wenzelm
parents: 62573
diff changeset
   344
    cleanup: () => Unit = () => ()): Process_Result =
34198
ff5486262cd6 moved Library.decode_permissive_utf8 to Isabelle_System;
wenzelm
parents: 34196
diff changeset
   345
  {
62610
4c89504c76fb more uniform signature for various process invocations;
wenzelm
parents: 62602
diff changeset
   346
    Bash.process(script, cwd = cwd, env = env, redirect = redirect, cleanup = cleanup).
62602
96e679f042ec more thorough cleanup -- in Scala;
wenzelm
parents: 62573
diff changeset
   347
      result(progress_stdout, progress_stderr, progress_limit, strict)
34198
ff5486262cd6 moved Library.decode_permissive_utf8 to Isabelle_System;
wenzelm
parents: 34196
diff changeset
   348
  }
ff5486262cd6 moved Library.decode_permissive_utf8 to Isabelle_System;
wenzelm
parents: 34196
diff changeset
   349
71520
62755ec99671 support Java/VM monitoring via jconsole;
wenzelm
parents: 71358
diff changeset
   350
  def jconsole(): Process_Result =
62755ec99671 support Java/VM monitoring via jconsole;
wenzelm
parents: 71358
diff changeset
   351
    bash("isabelle_jdk jconsole " + java.lang.ProcessHandle.current().pid).check
62755ec99671 support Java/VM monitoring via jconsole;
wenzelm
parents: 71358
diff changeset
   352
64935
9437a117408b insist in proper GNU tar, to avoid subtle semantic differences;
wenzelm
parents: 64657
diff changeset
   353
  private lazy val gnutar_check: Boolean =
9437a117408b insist in proper GNU tar, to avoid subtle semantic differences;
wenzelm
parents: 64657
diff changeset
   354
    try { bash("tar --version").check.out.containsSlice("GNU tar") || error("") }
9437a117408b insist in proper GNU tar, to avoid subtle semantic differences;
wenzelm
parents: 64657
diff changeset
   355
    catch { case ERROR(_) => false }
9437a117408b insist in proper GNU tar, to avoid subtle semantic differences;
wenzelm
parents: 64657
diff changeset
   356
69425
94f6ca69d983 clarified gnutar options: more uniform owner;
wenzelm
parents: 69355
diff changeset
   357
  def gnutar(
94f6ca69d983 clarified gnutar options: more uniform owner;
wenzelm
parents: 69355
diff changeset
   358
    args: String,
94f6ca69d983 clarified gnutar options: more uniform owner;
wenzelm
parents: 69355
diff changeset
   359
    dir: Path = Path.current,
94f6ca69d983 clarified gnutar options: more uniform owner;
wenzelm
parents: 69355
diff changeset
   360
    original_owner: Boolean = false,
94f6ca69d983 clarified gnutar options: more uniform owner;
wenzelm
parents: 69355
diff changeset
   361
    redirect: Boolean = false): Process_Result =
64935
9437a117408b insist in proper GNU tar, to avoid subtle semantic differences;
wenzelm
parents: 64657
diff changeset
   362
  {
69425
94f6ca69d983 clarified gnutar options: more uniform owner;
wenzelm
parents: 69355
diff changeset
   363
    val options =
94f6ca69d983 clarified gnutar options: more uniform owner;
wenzelm
parents: 69355
diff changeset
   364
      (if (dir.is_current) "" else "-C " + File.bash_path(dir) + " ") +
94f6ca69d983 clarified gnutar options: more uniform owner;
wenzelm
parents: 69355
diff changeset
   365
      (if (original_owner) "" else "--owner=root --group=staff ")
94f6ca69d983 clarified gnutar options: more uniform owner;
wenzelm
parents: 69355
diff changeset
   366
94f6ca69d983 clarified gnutar options: more uniform owner;
wenzelm
parents: 69355
diff changeset
   367
    if (gnutar_check) bash("tar " + options + args, redirect = redirect)
64935
9437a117408b insist in proper GNU tar, to avoid subtle semantic differences;
wenzelm
parents: 64657
diff changeset
   368
    else error("Expected to find GNU tar executable")
9437a117408b insist in proper GNU tar, to avoid subtle semantic differences;
wenzelm
parents: 64657
diff changeset
   369
  }
9437a117408b insist in proper GNU tar, to avoid subtle semantic differences;
wenzelm
parents: 64657
diff changeset
   370
64152
8f5b23536c56 enforce short name, notably on Mac OS X;
wenzelm
parents: 64139
diff changeset
   371
  def hostname(): String = bash("hostname -s").check.out
64139
387c811cad6a tuned signature;
wenzelm
parents: 64021
diff changeset
   372
54690
cd88b44623bf more direct Isabelle_System.pdf_viewer;
wenzelm
parents: 54645
diff changeset
   373
  def open(arg: String): Unit =
64304
96bc94c87a81 clarified modules;
wenzelm
parents: 64228
diff changeset
   374
    bash("exec \"$ISABELLE_OPEN\" " + Bash.string(arg) + " >/dev/null 2>/dev/null &")
54690
cd88b44623bf more direct Isabelle_System.pdf_viewer;
wenzelm
parents: 54645
diff changeset
   375
cd88b44623bf more direct Isabelle_System.pdf_viewer;
wenzelm
parents: 54645
diff changeset
   376
  def pdf_viewer(arg: Path): Unit =
62616
wenzelm
parents: 62615
diff changeset
   377
    bash("exec \"$PDF_VIEWER\" " + File.bash_path(arg) + " >/dev/null 2>/dev/null &")
54690
cd88b44623bf more direct Isabelle_System.pdf_viewer;
wenzelm
parents: 54645
diff changeset
   378
65916
wenzelm
parents: 65793
diff changeset
   379
  def export_isabelle_identifier(isabelle_identifier: String): String =
wenzelm
parents: 65793
diff changeset
   380
    if (isabelle_identifier == "") ""
wenzelm
parents: 65793
diff changeset
   381
    else "export ISABELLE_IDENTIFIER=" + Bash.string(isabelle_identifier) + "\n"
wenzelm
parents: 65793
diff changeset
   382
32450
375db037f4d2 misc tuning;
wenzelm
parents: 32328
diff changeset
   383
62400
833af0d6d469 clarified modules;
wenzelm
parents: 62304
diff changeset
   384
31796
117300d72398 renamed IsabelleSystem to Isabelle_System;
wenzelm
parents: 31704
diff changeset
   385
  /** Isabelle resources **/
117300d72398 renamed IsabelleSystem to Isabelle_System;
wenzelm
parents: 31704
diff changeset
   386
64161
2b1128e95dfb explicit indication of Admin tools;
wenzelm
parents: 64152
diff changeset
   387
  /* repository clone with Admin */
2b1128e95dfb explicit indication of Admin tools;
wenzelm
parents: 64152
diff changeset
   388
2b1128e95dfb explicit indication of Admin tools;
wenzelm
parents: 64152
diff changeset
   389
  def admin(): Boolean = Path.explode("~~/Admin").is_dir
2b1128e95dfb explicit indication of Admin tools;
wenzelm
parents: 64152
diff changeset
   390
2b1128e95dfb explicit indication of Admin tools;
wenzelm
parents: 64152
diff changeset
   391
32328
f2fd9da84bac added Isabelle_System.components;
wenzelm
parents: 31927
diff changeset
   392
  /* components */
f2fd9da84bac added Isabelle_System.components;
wenzelm
parents: 31927
diff changeset
   393
43669
9d34288e9351 Path.split convenience;
wenzelm
parents: 43664
diff changeset
   394
  def components(): List[Path] =
9d34288e9351 Path.split convenience;
wenzelm
parents: 43664
diff changeset
   395
    Path.split(getenv_strict("ISABELLE_COMPONENTS"))
32328
f2fd9da84bac added Isabelle_System.components;
wenzelm
parents: 31927
diff changeset
   396
f2fd9da84bac added Isabelle_System.components;
wenzelm
parents: 31927
diff changeset
   397
62633
e57416b649d5 find heaps uniformly via Sessions.Store;
wenzelm
parents: 62616
diff changeset
   398
  /* default logic */
48503
wenzelm
parents: 48418
diff changeset
   399
50403
87868964733c more uniform default logic, using settings, options, args etc.;
wenzelm
parents: 50298
diff changeset
   400
  def default_logic(args: String*): String =
87868964733c more uniform default logic, using settings, options, args etc.;
wenzelm
parents: 50298
diff changeset
   401
  {
87868964733c more uniform default logic, using settings, options, args etc.;
wenzelm
parents: 50298
diff changeset
   402
    args.find(_ != "") match {
87868964733c more uniform default logic, using settings, options, args etc.;
wenzelm
parents: 50298
diff changeset
   403
      case Some(logic) => logic
87868964733c more uniform default logic, using settings, options, args etc.;
wenzelm
parents: 50298
diff changeset
   404
      case None => Isabelle_System.getenv_strict("ISABELLE_LOGIC")
87868964733c more uniform default logic, using settings, options, args etc.;
wenzelm
parents: 50298
diff changeset
   405
    }
87868964733c more uniform default logic, using settings, options, args etc.;
wenzelm
parents: 50298
diff changeset
   406
  }
27919
1eb8a3902d49 Isabelle system support.
wenzelm
parents:
diff changeset
   407
}