src/Pure/System/isabelle_system.scala
author wenzelm
Wed, 02 Jan 2013 15:08:38 +0100
changeset 50684 12b7e0b4a66e
parent 50652 ead5714cc480
child 50715 8cfd585b9162
permissions -rw-r--r--
support File.read_gzip as well, in accordance to File.write_gzip; tuned signature;
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
43520
cec9b95fa35d explicit import java.lang.System to prevent odd scope problems;
wenzelm
parents: 43514
diff changeset
    10
import java.lang.System
31520
0a99c8716312 simplified IsabelleSystem.platform_path for cygwin;
wenzelm
parents: 31500
diff changeset
    11
import java.util.regex.Pattern
48409
0d2114eb412a more explicit java.io.{File => JFile};
wenzelm
parents: 48373
diff changeset
    12
import java.io.{InputStream, OutputStream, File => JFile, BufferedReader, InputStreamReader,
49334
dbc169ddd404 load fonts into JavaFX as well;
wenzelm
parents: 48923
diff changeset
    13
  BufferedWriter, OutputStreamWriter, IOException, FileInputStream, BufferedInputStream}
34024
0bae8702a7c5 basic support for IsabelleText fonts;
wenzelm
parents: 32450
diff changeset
    14
import java.awt.{GraphicsEnvironment, Font}
37367
8680677265c9 clarified font_family vs. font_family_default;
wenzelm
parents: 37132
diff changeset
    15
import java.awt.font.TextAttribute
28063
3533485fc7b8 IsabelleSystem.mk_fifo, IsabelleSystem.rm_fifo;
wenzelm
parents: 28057
diff changeset
    16
3533485fc7b8 IsabelleSystem.mk_fifo, IsabelleSystem.rm_fifo;
wenzelm
parents: 28057
diff changeset
    17
import scala.io.Source
31520
0a99c8716312 simplified IsabelleSystem.platform_path for cygwin;
wenzelm
parents: 31500
diff changeset
    18
import scala.util.matching.Regex
34163
wenzelm
parents: 34162
diff changeset
    19
import scala.collection.mutable
27936
947cb8e3d313 added get_setting;
wenzelm
parents: 27919
diff changeset
    20
27919
1eb8a3902d49 Isabelle system support.
wenzelm
parents:
diff changeset
    21
43514
45cf8d5e109a lazy Isabelle_System.default supports implicit boot;
wenzelm
parents: 43484
diff changeset
    22
object Isabelle_System
45cf8d5e109a lazy Isabelle_System.default supports implicit boot;
wenzelm
parents: 43484
diff changeset
    23
{
50652
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
    24
  /** bootstrap information **/
43661
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    25
50652
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
    26
  def jdk_home(): String =
43661
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    27
  {
50652
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
    28
    val java_home = System.getProperty("java.home")
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
    29
    val home = new JFile(java_home)
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
    30
    val parent = home.getParent
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
    31
    if (home.getName == "jre" && parent != null &&
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
    32
        (new JFile(new JFile(parent, "bin"), "javac")).exists) parent
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
    33
    else java_home
43661
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    34
  }
37013
641923374eba Isabelle_System: allow explicit isabelle_home argument;
wenzelm
parents: 36991
diff changeset
    35
50652
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
    36
  def cygwin_root(): String =
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
    37
  {
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
    38
    require(Platform.is_windows)
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
    39
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
    40
    val cygwin_root1 = System.getenv("CYGWIN_ROOT")
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
    41
    val cygwin_root2 = System.getProperty("cygwin.root")
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
    42
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
    43
    if (cygwin_root1 != null && cygwin_root1 != "") cygwin_root1
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
    44
    else if (cygwin_root2 != null && cygwin_root2 != "") cygwin_root2
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
    45
    else error("Cannot determine Cygwin root directory")
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
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
    48
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
    49
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
    50
  /** implicit settings environment **/
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
    51
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
    52
  @volatile private var _settings: Option[Map[String, String]] = None
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
    53
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
    54
  def settings(): Map[String, String] =
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
    55
  {
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
    56
    if (_settings.isEmpty) init()  // unsynchronized check
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
    57
    _settings.get
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
37013
641923374eba Isabelle_System: allow explicit isabelle_home argument;
wenzelm
parents: 36991
diff changeset
    60
  /*
641923374eba Isabelle_System: allow explicit isabelle_home argument;
wenzelm
parents: 36991
diff changeset
    61
    isabelle_home precedence:
641923374eba Isabelle_System: allow explicit isabelle_home argument;
wenzelm
parents: 36991
diff changeset
    62
      (1) this_isabelle_home as explicit argument
641923374eba Isabelle_System: allow explicit isabelle_home argument;
wenzelm
parents: 36991
diff changeset
    63
      (2) ISABELLE_HOME process environment variable (e.g. inherited from running isabelle tool)
641923374eba Isabelle_System: allow explicit isabelle_home argument;
wenzelm
parents: 36991
diff changeset
    64
      (3) isabelle.home system property (e.g. via JVM application boot process)
641923374eba Isabelle_System: allow explicit isabelle_home argument;
wenzelm
parents: 36991
diff changeset
    65
  */
50652
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
    66
  def init(this_isabelle_home: String = null): Unit = synchronized {
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
    67
    if (_settings.isEmpty) {
43661
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    68
      import scala.collection.JavaConversions._
37013
641923374eba Isabelle_System: allow explicit isabelle_home argument;
wenzelm
parents: 36991
diff changeset
    69
43661
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    70
      val settings =
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    71
      {
50652
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
    72
        val env0 = sys.env + ("ISABELLE_JDK_HOME" -> posix_path(jdk_home()))
27919
1eb8a3902d49 Isabelle system support.
wenzelm
parents:
diff changeset
    73
47725
447b635bcea5 cold-start HOME is user.home, in accordance with Cygwin-Terminal.bat;
wenzelm
parents: 47674
diff changeset
    74
        val user_home = System.getProperty("user.home")
447b635bcea5 cold-start HOME is user.home, in accordance with Cygwin-Terminal.bat;
wenzelm
parents: 47674
diff changeset
    75
        val env =
447b635bcea5 cold-start HOME is user.home, in accordance with Cygwin-Terminal.bat;
wenzelm
parents: 47674
diff changeset
    76
          if (user_home == null || env0.isDefinedAt("HOME")) env0
447b635bcea5 cold-start HOME is user.home, in accordance with Cygwin-Terminal.bat;
wenzelm
parents: 47674
diff changeset
    77
          else env0 + ("HOME" -> user_home)
447b635bcea5 cold-start HOME is user.home, in accordance with Cygwin-Terminal.bat;
wenzelm
parents: 47674
diff changeset
    78
43661
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    79
        val isabelle_home =
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    80
          if (this_isabelle_home != null) this_isabelle_home
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    81
          else
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    82
            env.get("ISABELLE_HOME") match {
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    83
              case None | Some("") =>
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    84
                val path = System.getProperty("isabelle.home")
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    85
                if (path == null || path == "") error("Unknown Isabelle home directory")
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    86
                else path
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    87
              case Some(path) => path
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    88
            }
29177
0e88d33e8d19 maintain initial process environment;
wenzelm
parents: 29174
diff changeset
    89
48411
5b3440850d36 more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents: 48409
diff changeset
    90
          File.with_tmp_file("settings") { dump =>
43661
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    91
              val shell_prefix =
50652
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
    92
                if (Platform.is_windows) List(cygwin_root() + "\\bin\\bash", "-l")
43661
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    93
                else Nil
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    94
              val cmdline =
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    95
                shell_prefix ::: List(isabelle_home + "/bin/isabelle", "getenv", "-d", dump.toString)
50651
1fe68f1c3069 tuned signature;
wenzelm
parents: 50403
diff changeset
    96
              val (output, rc) = process_output(raw_execute(null, env, true, cmdline: _*))
43661
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    97
              if (rc != 0) error(output)
31498
be0f7f4f9e12 static IsabelleSystem.charset;
wenzelm
parents: 31443
diff changeset
    98
43661
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    99
              val entries =
48411
5b3440850d36 more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents: 48409
diff changeset
   100
                (for (entry <- File.read(dump) split "\0" if entry != "") yield {
43661
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
   101
                  val i = entry.indexOf('=')
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
   102
                  if (i <= 0) (entry -> "")
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
   103
                  else (entry.substring(0, i) -> entry.substring(i + 1))
47674
cdf95042e09c more robust handling of PATH vs PATH_JVM -- required for cold start of Cygwin from Windows (e.g. Isabelle.exe);
wenzelm
parents: 47661
diff changeset
   104
                }).toMap
cdf95042e09c more robust handling of PATH vs PATH_JVM -- required for cold start of Cygwin from Windows (e.g. Isabelle.exe);
wenzelm
parents: 47661
diff changeset
   105
              entries + ("PATH" -> entries("PATH_JVM")) - "PATH_JVM"
43661
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
   106
            }
34201
c95dcd12f48a separate Standard_System (Cygwin/Posix compatibility) vs. Isabelle_System (settings environment etc.);
wenzelm
parents: 34200
diff changeset
   107
          }
50652
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
   108
      _settings = Some(settings)
43661
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
   109
    }
27953
b2003c98897c added getenv;
wenzelm
parents: 27936
diff changeset
   110
  }
27919
1eb8a3902d49 Isabelle system support.
wenzelm
parents:
diff changeset
   111
31796
117300d72398 renamed IsabelleSystem to Isabelle_System;
wenzelm
parents: 31704
diff changeset
   112
117300d72398 renamed IsabelleSystem to Isabelle_System;
wenzelm
parents: 31704
diff changeset
   113
  /* getenv */
117300d72398 renamed IsabelleSystem to Isabelle_System;
wenzelm
parents: 31704
diff changeset
   114
47661
012a887997f3 USER_HOME settings variable points to cross-platform user home directory;
wenzelm
parents: 47113
diff changeset
   115
  def getenv(name: String): String = settings.getOrElse(name, "")
31498
be0f7f4f9e12 static IsabelleSystem.charset;
wenzelm
parents: 31443
diff changeset
   116
be0f7f4f9e12 static IsabelleSystem.charset;
wenzelm
parents: 31443
diff changeset
   117
  def getenv_strict(name: String): String =
be0f7f4f9e12 static IsabelleSystem.charset;
wenzelm
parents: 31443
diff changeset
   118
  {
31234
6ce6801129de getenv_strict needs to be based on getenv (accidentally broken in 0e88d33e8d19);
wenzelm
parents: 30175
diff changeset
   119
    val value = getenv(name)
27993
6dd90ef9f927 simplified exceptions: use plain error function / RuntimeException;
wenzelm
parents: 27974
diff changeset
   120
    if (value != "") value else error("Undefined environment variable: " + name)
27919
1eb8a3902d49 Isabelle system support.
wenzelm
parents:
diff changeset
   121
  }
1eb8a3902d49 Isabelle system support.
wenzelm
parents:
diff changeset
   122
31796
117300d72398 renamed IsabelleSystem to Isabelle_System;
wenzelm
parents: 31704
diff changeset
   123
43606
e1a09c2a6248 prefer Isabelle path algebra;
wenzelm
parents: 43520
diff changeset
   124
  /** file-system operations **/
31796
117300d72398 renamed IsabelleSystem to Isabelle_System;
wenzelm
parents: 31704
diff changeset
   125
50652
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
   126
  /* jvm_path */
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
   127
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
   128
  private val Cygdrive = new Regex("/cygdrive/([a-zA-Z])($|/.*)")
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
   129
  private val Named_Root = new Regex("//+([^/]*)(.*)")
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
   130
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
   131
  def jvm_path(posix_path: String): String =
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
   132
    if (Platform.is_windows) {
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
   133
      val result_path = new StringBuilder
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
   134
      val rest =
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
   135
        posix_path match {
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
   136
          case Cygdrive(drive, rest) =>
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
   137
            result_path ++= (Library.uppercase(drive) + ":" + JFile.separator)
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
   138
            rest
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
   139
          case Named_Root(root, rest) =>
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
   140
            result_path ++= JFile.separator
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
   141
            result_path ++= JFile.separator
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
   142
            result_path ++= root
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
   143
            rest
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
   144
          case path if path.startsWith("/") =>
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
   145
            result_path ++= cygwin_root()
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
   146
            path
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
   147
          case path => path
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
   148
        }
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
   149
      for (p <- space_explode('/', rest) if p != "") {
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
   150
        val len = result_path.length
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
   151
        if (len > 0 && result_path(len - 1) != JFile.separatorChar)
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
   152
          result_path += JFile.separatorChar
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
   153
        result_path ++= p
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
   154
      }
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
   155
      result_path.toString
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
   156
    }
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
   157
    else posix_path
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
   158
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
   159
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
   160
  /* posix_path */
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
   161
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
   162
  def posix_path(jvm_path: String): String =
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
   163
    if (Platform.is_windows) {
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
   164
      val Platform_Root = new Regex("(?i)" +
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
   165
        Pattern.quote(cygwin_root()) + """(?:\\+|\z)(.*)""")
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
   166
      val Drive = new Regex("""([a-zA-Z]):\\*(.*)""")
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
   167
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
   168
      jvm_path.replace('/', '\\') match {
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
   169
        case Platform_Root(rest) => "/" + rest.replace('\\', '/')
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
   170
        case Drive(letter, rest) =>
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
   171
          "/cygdrive/" + Library.lowercase(letter) +
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
   172
            (if (rest == "") "" else "/" + rest.replace('\\', '/'))
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
   173
        case path => path.replace('\\', '/')
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
   174
      }
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
   175
    }
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
   176
    else jvm_path
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
   177
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
   178
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
   179
  /* misc path specifications */
36136
89b1a136edef more precise treatment of UNC server prefix, e.g. //foo;
wenzelm
parents: 36012
diff changeset
   180
43664
wenzelm
parents: 43661
diff changeset
   181
  def standard_path(path: Path): String = path.expand.implode
31796
117300d72398 renamed IsabelleSystem to Isabelle_System;
wenzelm
parents: 31704
diff changeset
   182
50652
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
   183
  def platform_path(path: Path): String = jvm_path(standard_path(path))
48409
0d2114eb412a more explicit java.io.{File => JFile};
wenzelm
parents: 48373
diff changeset
   184
  def platform_file(path: Path): JFile = new JFile(platform_path(path))
29152
89b0803404d7 added platform_file;
wenzelm
parents: 29140
diff changeset
   185
45100
0971c3ee3cdf proper platform_file_url;
wenzelm
parents: 45027
diff changeset
   186
  def platform_file_url(raw_path: Path): String =
0971c3ee3cdf proper platform_file_url;
wenzelm
parents: 45027
diff changeset
   187
  {
0971c3ee3cdf proper platform_file_url;
wenzelm
parents: 45027
diff changeset
   188
    val path = raw_path.expand
0971c3ee3cdf proper platform_file_url;
wenzelm
parents: 45027
diff changeset
   189
    require(path.is_absolute)
45101
6317e969fb30 proper platform_file_url for Windows UNC paths (server shares);
wenzelm
parents: 45100
diff changeset
   190
    val s = platform_path(path).replaceAll(" ", "%20")
6317e969fb30 proper platform_file_url for Windows UNC paths (server shares);
wenzelm
parents: 45100
diff changeset
   191
    if (!Platform.is_windows) "file://" + s
6317e969fb30 proper platform_file_url for Windows UNC paths (server shares);
wenzelm
parents: 45100
diff changeset
   192
    else if (s.startsWith("\\\\")) "file:" + s.replace('\\', '/')
6317e969fb30 proper platform_file_url for Windows UNC paths (server shares);
wenzelm
parents: 45100
diff changeset
   193
    else "file:///" + s.replace('\\', '/')
45100
0971c3ee3cdf proper platform_file_url;
wenzelm
parents: 45027
diff changeset
   194
  }
0971c3ee3cdf proper platform_file_url;
wenzelm
parents: 45027
diff changeset
   195
27953
b2003c98897c added getenv;
wenzelm
parents: 27936
diff changeset
   196
48923
a2df77fcf1eb prefer jEdit file name representation (potentially via VFS);
wenzelm
parents: 48550
diff changeset
   197
  /* source files of Isabelle/ML bootstrap */
31436
dde1b4d1c95b retrieve ML source files;
wenzelm
parents: 31234
diff changeset
   198
48923
a2df77fcf1eb prefer jEdit file name representation (potentially via VFS);
wenzelm
parents: 48550
diff changeset
   199
  def source_file(path: Path): Option[Path] =
31498
be0f7f4f9e12 static IsabelleSystem.charset;
wenzelm
parents: 31443
diff changeset
   200
  {
48923
a2df77fcf1eb prefer jEdit file name representation (potentially via VFS);
wenzelm
parents: 48550
diff changeset
   201
    def check(p: Path): Option[Path] = if (p.is_file) Some(p) else None
a2df77fcf1eb prefer jEdit file name representation (potentially via VFS);
wenzelm
parents: 48550
diff changeset
   202
a2df77fcf1eb prefer jEdit file name representation (potentially via VFS);
wenzelm
parents: 48550
diff changeset
   203
    if (path.is_absolute || path.is_current) check(path)
31436
dde1b4d1c95b retrieve ML source files;
wenzelm
parents: 31234
diff changeset
   204
    else {
48923
a2df77fcf1eb prefer jEdit file name representation (potentially via VFS);
wenzelm
parents: 48550
diff changeset
   205
      check(Path.explode("~~/src/Pure") + path) orElse
a2df77fcf1eb prefer jEdit file name representation (potentially via VFS);
wenzelm
parents: 48550
diff changeset
   206
        (if (getenv("ML_SOURCES") == "") None else check(Path.explode("$ML_SOURCES") + path))
31436
dde1b4d1c95b retrieve ML source files;
wenzelm
parents: 31234
diff changeset
   207
    }
dde1b4d1c95b retrieve ML source files;
wenzelm
parents: 31234
diff changeset
   208
  }
dde1b4d1c95b retrieve ML source files;
wenzelm
parents: 31234
diff changeset
   209
dde1b4d1c95b retrieve ML source files;
wenzelm
parents: 31234
diff changeset
   210
32450
375db037f4d2 misc tuning;
wenzelm
parents: 32328
diff changeset
   211
39583
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   212
  /** external processes **/
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   213
50651
1fe68f1c3069 tuned signature;
wenzelm
parents: 50403
diff changeset
   214
  /* raw execute for bootstrapping */
1fe68f1c3069 tuned signature;
wenzelm
parents: 50403
diff changeset
   215
1fe68f1c3069 tuned signature;
wenzelm
parents: 50403
diff changeset
   216
  private def raw_execute(cwd: JFile, env: Map[String, String], redirect: Boolean, args: String*)
1fe68f1c3069 tuned signature;
wenzelm
parents: 50403
diff changeset
   217
    : Process =
1fe68f1c3069 tuned signature;
wenzelm
parents: 50403
diff changeset
   218
  {
1fe68f1c3069 tuned signature;
wenzelm
parents: 50403
diff changeset
   219
    val cmdline = new java.util.LinkedList[String]
1fe68f1c3069 tuned signature;
wenzelm
parents: 50403
diff changeset
   220
    for (s <- args) cmdline.add(s)
1fe68f1c3069 tuned signature;
wenzelm
parents: 50403
diff changeset
   221
1fe68f1c3069 tuned signature;
wenzelm
parents: 50403
diff changeset
   222
    val proc = new ProcessBuilder(cmdline)
1fe68f1c3069 tuned signature;
wenzelm
parents: 50403
diff changeset
   223
    if (cwd != null) proc.directory(cwd)
1fe68f1c3069 tuned signature;
wenzelm
parents: 50403
diff changeset
   224
    if (env != null) {
1fe68f1c3069 tuned signature;
wenzelm
parents: 50403
diff changeset
   225
      proc.environment.clear
1fe68f1c3069 tuned signature;
wenzelm
parents: 50403
diff changeset
   226
      for ((x, y) <- env) proc.environment.put(x, y)
1fe68f1c3069 tuned signature;
wenzelm
parents: 50403
diff changeset
   227
    }
1fe68f1c3069 tuned signature;
wenzelm
parents: 50403
diff changeset
   228
    proc.redirectErrorStream(redirect)
1fe68f1c3069 tuned signature;
wenzelm
parents: 50403
diff changeset
   229
    proc.start
1fe68f1c3069 tuned signature;
wenzelm
parents: 50403
diff changeset
   230
  }
1fe68f1c3069 tuned signature;
wenzelm
parents: 50403
diff changeset
   231
1fe68f1c3069 tuned signature;
wenzelm
parents: 50403
diff changeset
   232
  private def process_output(proc: Process): (String, Int) =
1fe68f1c3069 tuned signature;
wenzelm
parents: 50403
diff changeset
   233
  {
1fe68f1c3069 tuned signature;
wenzelm
parents: 50403
diff changeset
   234
    proc.getOutputStream.close
50684
12b7e0b4a66e support File.read_gzip as well, in accordance to File.write_gzip;
wenzelm
parents: 50652
diff changeset
   235
    val output = File.read_stream(proc.getInputStream)
50651
1fe68f1c3069 tuned signature;
wenzelm
parents: 50403
diff changeset
   236
    val rc =
1fe68f1c3069 tuned signature;
wenzelm
parents: 50403
diff changeset
   237
      try { proc.waitFor }
1fe68f1c3069 tuned signature;
wenzelm
parents: 50403
diff changeset
   238
      finally {
1fe68f1c3069 tuned signature;
wenzelm
parents: 50403
diff changeset
   239
        proc.getInputStream.close
1fe68f1c3069 tuned signature;
wenzelm
parents: 50403
diff changeset
   240
        proc.getErrorStream.close
1fe68f1c3069 tuned signature;
wenzelm
parents: 50403
diff changeset
   241
        proc.destroy
1fe68f1c3069 tuned signature;
wenzelm
parents: 50403
diff changeset
   242
        Thread.interrupted
1fe68f1c3069 tuned signature;
wenzelm
parents: 50403
diff changeset
   243
      }
1fe68f1c3069 tuned signature;
wenzelm
parents: 50403
diff changeset
   244
    (output, rc)
1fe68f1c3069 tuned signature;
wenzelm
parents: 50403
diff changeset
   245
  }
1fe68f1c3069 tuned signature;
wenzelm
parents: 50403
diff changeset
   246
1fe68f1c3069 tuned signature;
wenzelm
parents: 50403
diff changeset
   247
39583
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   248
  /* plain execute */
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   249
48409
0d2114eb412a more explicit java.io.{File => JFile};
wenzelm
parents: 48373
diff changeset
   250
  def execute_env(cwd: JFile, env: Map[String, String], redirect: Boolean, args: String*): Process =
39583
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   251
  {
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   252
    val cmdline =
50652
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
   253
      if (Platform.is_windows) List(cygwin_root() + "\\bin\\env.exe") ++ args
39583
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   254
      else args
48353
bcce872202b3 support external processes with explicit environment;
wenzelm
parents: 48278
diff changeset
   255
    val env1 = if (env == null) settings else settings ++ env
50651
1fe68f1c3069 tuned signature;
wenzelm
parents: 50403
diff changeset
   256
    raw_execute(cwd, env1, redirect, cmdline: _*)
39583
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   257
  }
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   258
48353
bcce872202b3 support external processes with explicit environment;
wenzelm
parents: 48278
diff changeset
   259
  def execute(redirect: Boolean, args: String*): Process =
bcce872202b3 support external processes with explicit environment;
wenzelm
parents: 48278
diff changeset
   260
    execute_env(null, null, redirect, args: _*)
bcce872202b3 support external processes with explicit environment;
wenzelm
parents: 48278
diff changeset
   261
39583
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   262
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   263
  /* managed process */
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   264
48409
0d2114eb412a more explicit java.io.{File => JFile};
wenzelm
parents: 48373
diff changeset
   265
  class Managed_Process(cwd: JFile, env: Map[String, String], redirect: Boolean, args: String*)
39583
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   266
  {
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   267
    private val params =
43606
e1a09c2a6248 prefer Isabelle path algebra;
wenzelm
parents: 43520
diff changeset
   268
      List(standard_path(Path.explode("~~/lib/scripts/process")), "group", "-", "no_script")
48353
bcce872202b3 support external processes with explicit environment;
wenzelm
parents: 48278
diff changeset
   269
    private val proc = execute_env(cwd, env, redirect, (params ++ args):_*)
39583
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   270
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   271
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   272
    // channels
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   273
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   274
    val stdin: BufferedWriter =
50203
00d8ad713e32 explicit module UTF8;
wenzelm
parents: 49449
diff changeset
   275
      new BufferedWriter(new OutputStreamWriter(proc.getOutputStream, UTF8.charset))
39583
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   276
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   277
    val stdout: BufferedReader =
50203
00d8ad713e32 explicit module UTF8;
wenzelm
parents: 49449
diff changeset
   278
      new BufferedReader(new InputStreamReader(proc.getInputStream, UTF8.charset))
39583
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   279
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   280
    val stderr: BufferedReader =
50203
00d8ad713e32 explicit module UTF8;
wenzelm
parents: 49449
diff changeset
   281
      new BufferedReader(new InputStreamReader(proc.getErrorStream, UTF8.charset))
39583
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   282
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   283
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   284
    // signals
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   285
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   286
    private val pid = stdout.readLine
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   287
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   288
    private def kill(signal: String): Boolean =
39584
f2a10986e85a more robust Managed_Process.kill: check after sending signal;
wenzelm
parents: 39583
diff changeset
   289
    {
f2a10986e85a more robust Managed_Process.kill: check after sending signal;
wenzelm
parents: 39583
diff changeset
   290
      execute(true, "kill", "-" + signal, "-" + pid).waitFor
f2a10986e85a more robust Managed_Process.kill: check after sending signal;
wenzelm
parents: 39583
diff changeset
   291
      execute(true, "kill", "-0", "-" + pid).waitFor == 0
f2a10986e85a more robust Managed_Process.kill: check after sending signal;
wenzelm
parents: 39583
diff changeset
   292
    }
39583
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   293
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   294
    private def multi_kill(signal: String): Boolean =
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   295
    {
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   296
      var running = true
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   297
      var count = 10
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   298
      while (running && count > 0) {
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   299
        if (kill(signal)) {
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   300
          Thread.sleep(100)
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   301
          count -= 1
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   302
        }
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   303
        else running = false
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   304
      }
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   305
      running
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   306
    }
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   307
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   308
    def interrupt() { multi_kill("INT") }
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   309
    def terminate() { multi_kill("INT") && multi_kill("TERM") && kill("KILL"); proc.destroy }
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   310
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   311
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   312
    // JVM shutdown hook
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   313
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   314
    private val shutdown_hook = new Thread { override def run = terminate() }
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   315
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   316
    try { Runtime.getRuntime.addShutdownHook(shutdown_hook) }
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   317
    catch { case _: IllegalStateException => }
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   318
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   319
    private def cleanup() =
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   320
      try { Runtime.getRuntime.removeShutdownHook(shutdown_hook) }
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   321
      catch { case _: IllegalStateException => }
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   322
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   323
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   324
    /* result */
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   325
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   326
    def join: Int = { val rc = proc.waitFor; cleanup(); rc }
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   327
  }
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   328
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   329
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   330
  /* bash */
31796
117300d72398 renamed IsabelleSystem to Isabelle_System;
wenzelm
parents: 31704
diff changeset
   331
48409
0d2114eb412a more explicit java.io.{File => JFile};
wenzelm
parents: 48373
diff changeset
   332
  def bash_env(cwd: JFile, env: Map[String, String], script: String): (String, String, Int) =
34198
ff5486262cd6 moved Library.decode_permissive_utf8 to Isabelle_System;
wenzelm
parents: 34196
diff changeset
   333
  {
48411
5b3440850d36 more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents: 48409
diff changeset
   334
    File.with_tmp_file("isabelle_script") { script_file =>
5b3440850d36 more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents: 48409
diff changeset
   335
      File.write(script_file, script)
48353
bcce872202b3 support external processes with explicit environment;
wenzelm
parents: 48278
diff changeset
   336
      val proc = new Managed_Process(cwd, env, false, "bash", posix_path(script_file.getPath))
39581
430ff865089b refined Isabelle_System.bash_output: pass pid via stdout, separate stdout/stderr;
wenzelm
parents: 39576
diff changeset
   337
39583
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   338
      proc.stdin.close
50684
12b7e0b4a66e support File.read_gzip as well, in accordance to File.write_gzip;
wenzelm
parents: 50652
diff changeset
   339
      val (_, stdout) = Simple_Thread.future("bash_stdout") { File.read_stream(proc.stdout) }
12b7e0b4a66e support File.read_gzip as well, in accordance to File.write_gzip;
wenzelm
parents: 50652
diff changeset
   340
      val (_, stderr) = Simple_Thread.future("bash_stderr") { File.read_stream(proc.stderr) }
34198
ff5486262cd6 moved Library.decode_permissive_utf8 to Isabelle_System;
wenzelm
parents: 34196
diff changeset
   341
39581
430ff865089b refined Isabelle_System.bash_output: pass pid via stdout, separate stdout/stderr;
wenzelm
parents: 39576
diff changeset
   342
      val rc =
39583
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   343
        try { proc.join }
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   344
        catch { case e: InterruptedException => Thread.interrupted; proc.terminate; 130 }
39581
430ff865089b refined Isabelle_System.bash_output: pass pid via stdout, separate stdout/stderr;
wenzelm
parents: 39576
diff changeset
   345
      (stdout.join, stderr.join, rc)
34198
ff5486262cd6 moved Library.decode_permissive_utf8 to Isabelle_System;
wenzelm
parents: 34196
diff changeset
   346
    }
ff5486262cd6 moved Library.decode_permissive_utf8 to Isabelle_System;
wenzelm
parents: 34196
diff changeset
   347
  }
ff5486262cd6 moved Library.decode_permissive_utf8 to Isabelle_System;
wenzelm
parents: 34196
diff changeset
   348
48353
bcce872202b3 support external processes with explicit environment;
wenzelm
parents: 48278
diff changeset
   349
  def bash(script: String): (String, String, Int) = bash_env(null, null, script)
bcce872202b3 support external processes with explicit environment;
wenzelm
parents: 48278
diff changeset
   350
39583
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   351
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   352
  /* system tools */
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   353
31818
f698f76a3713 builtin isabelle_tool for ML and Scala -- avoids excessive shell script (especially important for Cygwin);
wenzelm
parents: 31803
diff changeset
   354
  def isabelle_tool(name: String, args: String*): (String, Int) =
31498
be0f7f4f9e12 static IsabelleSystem.charset;
wenzelm
parents: 31443
diff changeset
   355
  {
43669
9d34288e9351 Path.split convenience;
wenzelm
parents: 43664
diff changeset
   356
    Path.split(getenv_strict("ISABELLE_TOOLS")).find { dir =>
48373
527e2bad7cca further imitation of "usedir" shell script;
wenzelm
parents: 48355
diff changeset
   357
      val file = (dir + Path.basic(name)).file
42124
7519c7c33017 suppress Mercurial backup files;
wenzelm
parents: 39699
diff changeset
   358
      try {
7519c7c33017 suppress Mercurial backup files;
wenzelm
parents: 39699
diff changeset
   359
        file.isFile && file.canRead && file.canExecute &&
7519c7c33017 suppress Mercurial backup files;
wenzelm
parents: 39699
diff changeset
   360
          !name.endsWith("~") && !name.endsWith(".orig")
7519c7c33017 suppress Mercurial backup files;
wenzelm
parents: 39699
diff changeset
   361
      }
31818
f698f76a3713 builtin isabelle_tool for ML and Scala -- avoids excessive shell script (especially important for Cygwin);
wenzelm
parents: 31803
diff changeset
   362
      catch { case _: SecurityException => false }
34200
wenzelm
parents: 34199
diff changeset
   363
    } match {
31818
f698f76a3713 builtin isabelle_tool for ML and Scala -- avoids excessive shell script (especially important for Cygwin);
wenzelm
parents: 31803
diff changeset
   364
      case Some(dir) =>
43669
9d34288e9351 Path.split convenience;
wenzelm
parents: 43664
diff changeset
   365
        val file = standard_path(dir + Path.basic(name))
50651
1fe68f1c3069 tuned signature;
wenzelm
parents: 50403
diff changeset
   366
        process_output(execute(true, (List(file) ++ args): _*))
31818
f698f76a3713 builtin isabelle_tool for ML and Scala -- avoids excessive shell script (especially important for Cygwin);
wenzelm
parents: 31803
diff changeset
   367
      case None => ("Unknown Isabelle tool: " + name, 2)
f698f76a3713 builtin isabelle_tool for ML and Scala -- avoids excessive shell script (especially important for Cygwin);
wenzelm
parents: 31803
diff changeset
   368
    }
28063
3533485fc7b8 IsabelleSystem.mk_fifo, IsabelleSystem.rm_fifo;
wenzelm
parents: 28057
diff changeset
   369
  }
3533485fc7b8 IsabelleSystem.mk_fifo, IsabelleSystem.rm_fifo;
wenzelm
parents: 28057
diff changeset
   370
3533485fc7b8 IsabelleSystem.mk_fifo, IsabelleSystem.rm_fifo;
wenzelm
parents: 28057
diff changeset
   371
32450
375db037f4d2 misc tuning;
wenzelm
parents: 32328
diff changeset
   372
31796
117300d72398 renamed IsabelleSystem to Isabelle_System;
wenzelm
parents: 31704
diff changeset
   373
  /** Isabelle resources **/
117300d72398 renamed IsabelleSystem to Isabelle_System;
wenzelm
parents: 31704
diff changeset
   374
32328
f2fd9da84bac added Isabelle_System.components;
wenzelm
parents: 31927
diff changeset
   375
  /* components */
f2fd9da84bac added Isabelle_System.components;
wenzelm
parents: 31927
diff changeset
   376
43669
9d34288e9351 Path.split convenience;
wenzelm
parents: 43664
diff changeset
   377
  def components(): List[Path] =
9d34288e9351 Path.split convenience;
wenzelm
parents: 43664
diff changeset
   378
    Path.split(getenv_strict("ISABELLE_COMPONENTS"))
32328
f2fd9da84bac added Isabelle_System.components;
wenzelm
parents: 31927
diff changeset
   379
f2fd9da84bac added Isabelle_System.components;
wenzelm
parents: 31927
diff changeset
   380
50403
87868964733c more uniform default logic, using settings, options, args etc.;
wenzelm
parents: 50298
diff changeset
   381
  /* logic images */
29152
89b0803404d7 added platform_file;
wenzelm
parents: 29140
diff changeset
   382
48503
wenzelm
parents: 48418
diff changeset
   383
  def find_logics_dirs(): List[Path] =
31498
be0f7f4f9e12 static IsabelleSystem.charset;
wenzelm
parents: 31443
diff changeset
   384
  {
48503
wenzelm
parents: 48418
diff changeset
   385
    val ml_ident = Path.explode("$ML_IDENTIFIER").expand
wenzelm
parents: 48418
diff changeset
   386
    Path.split(getenv_strict("ISABELLE_PATH")).map(_ + ml_ident)
29152
89b0803404d7 added platform_file;
wenzelm
parents: 29140
diff changeset
   387
  }
29570
10fca82e688a IsabelleSystem: provide Symbol.Interpretation;
wenzelm
parents: 29180
diff changeset
   388
48503
wenzelm
parents: 48418
diff changeset
   389
  def find_logics(): List[String] =
wenzelm
parents: 48418
diff changeset
   390
    (for {
wenzelm
parents: 48418
diff changeset
   391
      dir <- find_logics_dirs()
wenzelm
parents: 48418
diff changeset
   392
      files = dir.file.listFiles() if files != null
wenzelm
parents: 48418
diff changeset
   393
      file <- files.toList if file.isFile } yield file.getName).sorted
wenzelm
parents: 48418
diff changeset
   394
50403
87868964733c more uniform default logic, using settings, options, args etc.;
wenzelm
parents: 50298
diff changeset
   395
  def default_logic(args: String*): String =
87868964733c more uniform default logic, using settings, options, args etc.;
wenzelm
parents: 50298
diff changeset
   396
  {
87868964733c more uniform default logic, using settings, options, args etc.;
wenzelm
parents: 50298
diff changeset
   397
    args.find(_ != "") match {
87868964733c more uniform default logic, using settings, options, args etc.;
wenzelm
parents: 50298
diff changeset
   398
      case Some(logic) => logic
87868964733c more uniform default logic, using settings, options, args etc.;
wenzelm
parents: 50298
diff changeset
   399
      case None => Isabelle_System.getenv_strict("ISABELLE_LOGIC")
87868964733c more uniform default logic, using settings, options, args etc.;
wenzelm
parents: 50298
diff changeset
   400
    }
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
29570
10fca82e688a IsabelleSystem: provide Symbol.Interpretation;
wenzelm
parents: 29180
diff changeset
   403
34024
0bae8702a7c5 basic support for IsabelleText fonts;
wenzelm
parents: 32450
diff changeset
   404
  /* fonts */
0bae8702a7c5 basic support for IsabelleText fonts;
wenzelm
parents: 32450
diff changeset
   405
43484
51b8043a8cf5 simplified/generalized ISABELLE_FONTS handling;
wenzelm
parents: 42124
diff changeset
   406
  def get_font(family: String = "IsabelleText", size: Int = 1, bold: Boolean = false): Font =
51b8043a8cf5 simplified/generalized ISABELLE_FONTS handling;
wenzelm
parents: 42124
diff changeset
   407
    new Font(family, if (bold) Font.BOLD else Font.PLAIN, size)
37367
8680677265c9 clarified font_family vs. font_family_default;
wenzelm
parents: 37132
diff changeset
   408
34044
09afb1d49fe7 slightly more robust and less ambitious version of install_fonts;
wenzelm
parents: 34027
diff changeset
   409
  def install_fonts()
09afb1d49fe7 slightly more robust and less ambitious version of install_fonts;
wenzelm
parents: 34027
diff changeset
   410
  {
37367
8680677265c9 clarified font_family vs. font_family_default;
wenzelm
parents: 37132
diff changeset
   411
    val ge = GraphicsEnvironment.getLocalGraphicsEnvironment()
49449
ffc06b54cb22 JavaFX is inactive by default;
wenzelm
parents: 49334
diff changeset
   412
    for (font <- Path.split(getenv_strict("ISABELLE_FONTS")))
48373
527e2bad7cca further imitation of "usedir" shell script;
wenzelm
parents: 48355
diff changeset
   413
      ge.registerFont(Font.createFont(Font.TRUETYPE_FONT, font.file))
49449
ffc06b54cb22 JavaFX is inactive by default;
wenzelm
parents: 49334
diff changeset
   414
  }
49334
dbc169ddd404 load fonts into JavaFX as well;
wenzelm
parents: 48923
diff changeset
   415
49449
ffc06b54cb22 JavaFX is inactive by default;
wenzelm
parents: 49334
diff changeset
   416
  def install_fonts_jfx()
ffc06b54cb22 JavaFX is inactive by default;
wenzelm
parents: 49334
diff changeset
   417
  {
ffc06b54cb22 JavaFX is inactive by default;
wenzelm
parents: 49334
diff changeset
   418
    for (font <- Path.split(getenv_strict("ISABELLE_FONTS"))) {
49334
dbc169ddd404 load fonts into JavaFX as well;
wenzelm
parents: 48923
diff changeset
   419
      val stream = new BufferedInputStream(new FileInputStream(font.file))
dbc169ddd404 load fonts into JavaFX as well;
wenzelm
parents: 48923
diff changeset
   420
      try { javafx.scene.text.Font.loadFont(stream, 1.0) }
dbc169ddd404 load fonts into JavaFX as well;
wenzelm
parents: 48923
diff changeset
   421
      finally { stream.close }
dbc169ddd404 load fonts into JavaFX as well;
wenzelm
parents: 48923
diff changeset
   422
    }
34024
0bae8702a7c5 basic support for IsabelleText fonts;
wenzelm
parents: 32450
diff changeset
   423
  }
27919
1eb8a3902d49 Isabelle system support.
wenzelm
parents:
diff changeset
   424
}