src/Pure/System/isabelle_system.scala
author wenzelm
Wed, 30 Sep 2015 21:05:14 +0200
changeset 61293 876e7eae22be
parent 61291 e00e1bf23d03
child 61295 efe76f7f9162
permissions -rw-r--r--
clarified ISABELLE_ROOT (platform path) vs. ISABELLE_HOME (standard path);
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
61281
wenzelm
parents: 61025
diff changeset
    11
import java.io.{File => JFile, IOException, BufferedReader, InputStreamReader}
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
    def check(s: String): Option[String] =
e00e1bf23d03 uniform treatment of bootstrap directories;
wenzelm
parents: 61282
diff changeset
    36
      if (s != null && s != "") Some(s) else None
50652
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
    37
61291
e00e1bf23d03 uniform treatment of bootstrap directories;
wenzelm
parents: 61282
diff changeset
    38
    val value =
e00e1bf23d03 uniform treatment of bootstrap directories;
wenzelm
parents: 61282
diff changeset
    39
      check(preference) orElse  // explicit argument
e00e1bf23d03 uniform treatment of bootstrap directories;
wenzelm
parents: 61282
diff changeset
    40
      check(System.getenv(envar)) orElse  // e.g. inherited from running isabelle tool
e00e1bf23d03 uniform treatment of bootstrap directories;
wenzelm
parents: 61282
diff changeset
    41
      check(System.getProperty(property)) getOrElse  // e.g. via JVM application boot process
e00e1bf23d03 uniform treatment of bootstrap directories;
wenzelm
parents: 61282
diff changeset
    42
      error("Unknown " + description + " directory")
50652
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
    43
61291
e00e1bf23d03 uniform treatment of bootstrap directories;
wenzelm
parents: 61282
diff changeset
    44
    if ((new JFile(value)).isDirectory) value
e00e1bf23d03 uniform treatment of bootstrap directories;
wenzelm
parents: 61282
diff changeset
    45
    else error("Bad " + description + " directory " + quote(value))
50652
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
61293
876e7eae22be clarified ISABELLE_ROOT (platform path) vs. ISABELLE_HOME (standard path);
wenzelm
parents: 61291
diff changeset
    60
  def init(isabelle_root: String = "", cygwin_root: String = ""): Unit = synchronized {
50652
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
    61
    if (_settings.isEmpty) {
43661
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    62
      import scala.collection.JavaConversions._
37013
641923374eba Isabelle_System: allow explicit isabelle_home argument;
wenzelm
parents: 36991
diff changeset
    63
61293
876e7eae22be clarified ISABELLE_ROOT (platform path) vs. ISABELLE_HOME (standard path);
wenzelm
parents: 61291
diff changeset
    64
      val isabelle_root1 =
876e7eae22be clarified ISABELLE_ROOT (platform path) vs. ISABELLE_HOME (standard path);
wenzelm
parents: 61291
diff changeset
    65
        bootstrap_directory(isabelle_root, "ISABELLE_ROOT", "isabelle.root", "Isabelle root")
61291
e00e1bf23d03 uniform treatment of bootstrap directories;
wenzelm
parents: 61282
diff changeset
    66
e00e1bf23d03 uniform treatment of bootstrap directories;
wenzelm
parents: 61282
diff changeset
    67
      val cygwin_root1 =
e00e1bf23d03 uniform treatment of bootstrap directories;
wenzelm
parents: 61282
diff changeset
    68
        if (Platform.is_windows)
e00e1bf23d03 uniform treatment of bootstrap directories;
wenzelm
parents: 61282
diff changeset
    69
          bootstrap_directory(cygwin_root, "CYGWIN_ROOT", "cygwin.root", "Cygwin root")
e00e1bf23d03 uniform treatment of bootstrap directories;
wenzelm
parents: 61282
diff changeset
    70
        else ""
e00e1bf23d03 uniform treatment of bootstrap directories;
wenzelm
parents: 61282
diff changeset
    71
51820
142c69695785 cygwin_root as optional argument;
wenzelm
parents: 51615
diff changeset
    72
      def set_cygwin_root()
43661
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    73
      {
51820
142c69695785 cygwin_root as optional argument;
wenzelm
parents: 51615
diff changeset
    74
        if (Platform.is_windows)
61291
e00e1bf23d03 uniform treatment of bootstrap directories;
wenzelm
parents: 61282
diff changeset
    75
          _settings = Some(_settings.getOrElse(Map.empty) + ("CYGWIN_ROOT" -> cygwin_root1))
51820
142c69695785 cygwin_root as optional argument;
wenzelm
parents: 51615
diff changeset
    76
      }
47725
447b635bcea5 cold-start HOME is user.home, in accordance with Cygwin-Terminal.bat;
wenzelm
parents: 47674
diff changeset
    77
51820
142c69695785 cygwin_root as optional argument;
wenzelm
parents: 51615
diff changeset
    78
      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
    79
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
    80
      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
    81
        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
    82
        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
    83
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
    84
      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
    85
      {
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
    86
        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
    87
        {
61291
e00e1bf23d03 uniform treatment of bootstrap directories;
wenzelm
parents: 61282
diff changeset
    88
          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
    89
          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
    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 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
    92
        val isabelle_app = System.getProperty("isabelle.app", "")
51820
142c69695785 cygwin_root as optional argument;
wenzelm
parents: 51615
diff changeset
    93
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
    94
        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
    95
          default(
60992
89effcb342df clarified modules, like ML version;
wenzelm
parents: 60991
diff changeset
    96
            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
    97
              "TEMP_WINDOWS" -> temp_windows),
5fb4990dfc73 misc tuning, based on warnings by IntelliJ IDEA;
wenzelm
parents: 60196
diff changeset
    98
            "HOME" -> user_home),
5fb4990dfc73 misc tuning, based on warnings by IntelliJ IDEA;
wenzelm
parents: 60196
diff changeset
    99
          "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
   100
      }
29177
0e88d33e8d19 maintain initial process environment;
wenzelm
parents: 29174
diff changeset
   101
51820
142c69695785 cygwin_root as optional argument;
wenzelm
parents: 51615
diff changeset
   102
      val settings =
56428
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   103
      {
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   104
        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
   105
        dump.deleteOnExit
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   106
        try {
61293
876e7eae22be clarified ISABELLE_ROOT (platform path) vs. ISABELLE_HOME (standard path);
wenzelm
parents: 61291
diff changeset
   107
          val cmd1 =
61291
e00e1bf23d03 uniform treatment of bootstrap directories;
wenzelm
parents: 61282
diff changeset
   108
            if (Platform.is_windows) List(cygwin_root1 + "\\bin\\bash", "-l") else Nil
61293
876e7eae22be clarified ISABELLE_ROOT (platform path) vs. ISABELLE_HOME (standard path);
wenzelm
parents: 61291
diff changeset
   109
          val cmd2 =
876e7eae22be clarified ISABELLE_ROOT (platform path) vs. ISABELLE_HOME (standard path);
wenzelm
parents: 61291
diff changeset
   110
            List(isabelle_root1 + JFile.separator + "bin" + JFile.separator + "isabelle",
876e7eae22be clarified ISABELLE_ROOT (platform path) vs. ISABELLE_HOME (standard path);
wenzelm
parents: 61291
diff changeset
   111
              "getenv", "-d", dump.toString)
876e7eae22be clarified ISABELLE_ROOT (platform path) vs. ISABELLE_HOME (standard path);
wenzelm
parents: 61291
diff changeset
   112
876e7eae22be clarified ISABELLE_ROOT (platform path) vs. ISABELLE_HOME (standard path);
wenzelm
parents: 61291
diff changeset
   113
          val (output, rc) = process_output(raw_execute(null, env, true, (cmd1 ::: cmd2): _*))
51820
142c69695785 cygwin_root as optional argument;
wenzelm
parents: 51615
diff changeset
   114
          if (rc != 0) error(output)
56477
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   115
51820
142c69695785 cygwin_root as optional argument;
wenzelm
parents: 51615
diff changeset
   116
          val entries =
56661
ef623f6f036b avoid octal escape literals -- deprecated in scala-2.11.0;
wenzelm
parents: 56599
diff changeset
   117
            (for (entry <- File.read(dump) split "\u0000" if entry != "") yield {
51820
142c69695785 cygwin_root as optional argument;
wenzelm
parents: 51615
diff changeset
   118
              val i = entry.indexOf('=')
60215
5fb4990dfc73 misc tuning, based on warnings by IntelliJ IDEA;
wenzelm
parents: 60196
diff changeset
   119
              if (i <= 0) entry -> ""
5fb4990dfc73 misc tuning, based on warnings by IntelliJ IDEA;
wenzelm
parents: 60196
diff changeset
   120
              else entry.substring(0, i) -> entry.substring(i + 1)
51820
142c69695785 cygwin_root as optional argument;
wenzelm
parents: 51615
diff changeset
   121
            }).toMap
142c69695785 cygwin_root as optional argument;
wenzelm
parents: 51615
diff changeset
   122
          entries + ("PATH" -> entries("PATH_JVM")) - "PATH_JVM"
142c69695785 cygwin_root as optional argument;
wenzelm
parents: 51615
diff changeset
   123
        }
56428
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   124
        finally { dump.delete }
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   125
      }
50652
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
   126
      _settings = Some(settings)
51820
142c69695785 cygwin_root as optional argument;
wenzelm
parents: 51615
diff changeset
   127
      set_cygwin_root()
43661
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
   128
    }
27953
b2003c98897c added getenv;
wenzelm
parents: 27936
diff changeset
   129
  }
27919
1eb8a3902d49 Isabelle system support.
wenzelm
parents:
diff changeset
   130
31796
117300d72398 renamed IsabelleSystem to Isabelle_System;
wenzelm
parents: 31704
diff changeset
   131
117300d72398 renamed IsabelleSystem to Isabelle_System;
wenzelm
parents: 31704
diff changeset
   132
  /* getenv */
117300d72398 renamed IsabelleSystem to Isabelle_System;
wenzelm
parents: 31704
diff changeset
   133
47661
012a887997f3 USER_HOME settings variable points to cross-platform user home directory;
wenzelm
parents: 47113
diff changeset
   134
  def getenv(name: String): String = settings.getOrElse(name, "")
31498
be0f7f4f9e12 static IsabelleSystem.charset;
wenzelm
parents: 31443
diff changeset
   135
be0f7f4f9e12 static IsabelleSystem.charset;
wenzelm
parents: 31443
diff changeset
   136
  def getenv_strict(name: String): String =
be0f7f4f9e12 static IsabelleSystem.charset;
wenzelm
parents: 31443
diff changeset
   137
  {
31234
6ce6801129de getenv_strict needs to be based on getenv (accidentally broken in 0e88d33e8d19);
wenzelm
parents: 30175
diff changeset
   138
    val value = getenv(name)
60196
e12973f1899e tuned message, in accordance to ML side;
wenzelm
parents: 60028
diff changeset
   139
    if (value != "") value
e12973f1899e tuned message, in accordance to ML side;
wenzelm
parents: 60028
diff changeset
   140
    else error("Undefined Isabelle environment variable: " + quote(name))
27919
1eb8a3902d49 Isabelle system support.
wenzelm
parents:
diff changeset
   141
  }
1eb8a3902d49 Isabelle system support.
wenzelm
parents:
diff changeset
   142
61291
e00e1bf23d03 uniform treatment of bootstrap directories;
wenzelm
parents: 61282
diff changeset
   143
  def cygwin_root(): String = getenv_strict("CYGWIN_ROOT")
51820
142c69695785 cygwin_root as optional argument;
wenzelm
parents: 51615
diff changeset
   144
31796
117300d72398 renamed IsabelleSystem to Isabelle_System;
wenzelm
parents: 31704
diff changeset
   145
54039
c931190b8c5c tuned whitespace;
wenzelm
parents: 53582
diff changeset
   146
43606
e1a09c2a6248 prefer Isabelle path algebra;
wenzelm
parents: 43520
diff changeset
   147
  /** file-system operations **/
31796
117300d72398 renamed IsabelleSystem to Isabelle_System;
wenzelm
parents: 31704
diff changeset
   148
48923
a2df77fcf1eb prefer jEdit file name representation (potentially via VFS);
wenzelm
parents: 48550
diff changeset
   149
  /* source files of Isabelle/ML bootstrap */
31436
dde1b4d1c95b retrieve ML source files;
wenzelm
parents: 31234
diff changeset
   150
48923
a2df77fcf1eb prefer jEdit file name representation (potentially via VFS);
wenzelm
parents: 48550
diff changeset
   151
  def source_file(path: Path): Option[Path] =
31498
be0f7f4f9e12 static IsabelleSystem.charset;
wenzelm
parents: 31443
diff changeset
   152
  {
48923
a2df77fcf1eb prefer jEdit file name representation (potentially via VFS);
wenzelm
parents: 48550
diff changeset
   153
    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
   154
a2df77fcf1eb prefer jEdit file name representation (potentially via VFS);
wenzelm
parents: 48550
diff changeset
   155
    if (path.is_absolute || path.is_current) check(path)
31436
dde1b4d1c95b retrieve ML source files;
wenzelm
parents: 31234
diff changeset
   156
    else {
48923
a2df77fcf1eb prefer jEdit file name representation (potentially via VFS);
wenzelm
parents: 48550
diff changeset
   157
      check(Path.explode("~~/src/Pure") + path) orElse
55876
142139457653 tuned signature;
wenzelm
parents: 55618
diff changeset
   158
        (if (getenv("ML_SOURCES") == "") None
142139457653 tuned signature;
wenzelm
parents: 55618
diff changeset
   159
         else check(Path.explode("$ML_SOURCES") + path))
31436
dde1b4d1c95b retrieve ML source files;
wenzelm
parents: 31234
diff changeset
   160
    }
dde1b4d1c95b retrieve ML source files;
wenzelm
parents: 31234
diff changeset
   161
  }
dde1b4d1c95b retrieve ML source files;
wenzelm
parents: 31234
diff changeset
   162
dde1b4d1c95b retrieve ML source files;
wenzelm
parents: 31234
diff changeset
   163
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
   164
  /* mkdirs */
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
   165
60013
42d34eeb283c more uniform Isabelle_System.mkdirs in ML/Scala;
wenzelm
parents: 58640
diff changeset
   166
  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
   167
    if (!path.is_dir) {
60988
1d7a7e33fd67 tuned signature, according to ML version;
wenzelm
parents: 60263
diff changeset
   168
      bash("perl -e \"use File::Path make_path; make_path(" + File.shell_path(path) + ");\"")
1d7a7e33fd67 tuned signature, according to ML version;
wenzelm
parents: 60263
diff changeset
   169
      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
   170
    }
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
   171
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
   172
32450
375db037f4d2 misc tuning;
wenzelm
parents: 32328
diff changeset
   173
39583
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   174
  /** external processes **/
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   175
50651
1fe68f1c3069 tuned signature;
wenzelm
parents: 50403
diff changeset
   176
  /* raw execute for bootstrapping */
1fe68f1c3069 tuned signature;
wenzelm
parents: 50403
diff changeset
   177
52667
d2b12523186d Scala version of init.bat;
wenzelm
parents: 52112
diff changeset
   178
  def raw_execute(cwd: JFile, env: Map[String, String], redirect: Boolean, args: String*): Process =
50651
1fe68f1c3069 tuned signature;
wenzelm
parents: 50403
diff changeset
   179
  {
1fe68f1c3069 tuned signature;
wenzelm
parents: 50403
diff changeset
   180
    val cmdline = new java.util.LinkedList[String]
1fe68f1c3069 tuned signature;
wenzelm
parents: 50403
diff changeset
   181
    for (s <- args) cmdline.add(s)
1fe68f1c3069 tuned signature;
wenzelm
parents: 50403
diff changeset
   182
1fe68f1c3069 tuned signature;
wenzelm
parents: 50403
diff changeset
   183
    val proc = new ProcessBuilder(cmdline)
1fe68f1c3069 tuned signature;
wenzelm
parents: 50403
diff changeset
   184
    if (cwd != null) proc.directory(cwd)
1fe68f1c3069 tuned signature;
wenzelm
parents: 50403
diff changeset
   185
    if (env != null) {
1fe68f1c3069 tuned signature;
wenzelm
parents: 50403
diff changeset
   186
      proc.environment.clear
1fe68f1c3069 tuned signature;
wenzelm
parents: 50403
diff changeset
   187
      for ((x, y) <- env) proc.environment.put(x, y)
1fe68f1c3069 tuned signature;
wenzelm
parents: 50403
diff changeset
   188
    }
1fe68f1c3069 tuned signature;
wenzelm
parents: 50403
diff changeset
   189
    proc.redirectErrorStream(redirect)
1fe68f1c3069 tuned signature;
wenzelm
parents: 50403
diff changeset
   190
    proc.start
1fe68f1c3069 tuned signature;
wenzelm
parents: 50403
diff changeset
   191
  }
1fe68f1c3069 tuned signature;
wenzelm
parents: 50403
diff changeset
   192
61282
3e578ddef85d clarified Isabelle_System.init;
wenzelm
parents: 61281
diff changeset
   193
  def process_output(proc: Process): (String, Int) =
50651
1fe68f1c3069 tuned signature;
wenzelm
parents: 50403
diff changeset
   194
  {
1fe68f1c3069 tuned signature;
wenzelm
parents: 50403
diff changeset
   195
    proc.getOutputStream.close
61281
wenzelm
parents: 61025
diff changeset
   196
61282
3e578ddef85d clarified Isabelle_System.init;
wenzelm
parents: 61281
diff changeset
   197
    val output = File.read_stream(proc.getInputStream)
50651
1fe68f1c3069 tuned signature;
wenzelm
parents: 50403
diff changeset
   198
    val rc =
1fe68f1c3069 tuned signature;
wenzelm
parents: 50403
diff changeset
   199
      try { proc.waitFor }
1fe68f1c3069 tuned signature;
wenzelm
parents: 50403
diff changeset
   200
      finally {
1fe68f1c3069 tuned signature;
wenzelm
parents: 50403
diff changeset
   201
        proc.getInputStream.close
1fe68f1c3069 tuned signature;
wenzelm
parents: 50403
diff changeset
   202
        proc.getErrorStream.close
1fe68f1c3069 tuned signature;
wenzelm
parents: 50403
diff changeset
   203
        proc.destroy
1fe68f1c3069 tuned signature;
wenzelm
parents: 50403
diff changeset
   204
        Thread.interrupted
1fe68f1c3069 tuned signature;
wenzelm
parents: 50403
diff changeset
   205
      }
1fe68f1c3069 tuned signature;
wenzelm
parents: 50403
diff changeset
   206
    (output, rc)
1fe68f1c3069 tuned signature;
wenzelm
parents: 50403
diff changeset
   207
  }
1fe68f1c3069 tuned signature;
wenzelm
parents: 50403
diff changeset
   208
1fe68f1c3069 tuned signature;
wenzelm
parents: 50403
diff changeset
   209
39583
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   210
  /* plain execute */
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   211
48409
0d2114eb412a more explicit java.io.{File => JFile};
wenzelm
parents: 48373
diff changeset
   212
  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
   213
  {
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   214
    val cmdline =
61291
e00e1bf23d03 uniform treatment of bootstrap directories;
wenzelm
parents: 61282
diff changeset
   215
      if (Platform.is_windows) List(cygwin_root() + "\\bin\\env.exe") ::: args.toList
39583
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   216
      else args
48353
bcce872202b3 support external processes with explicit environment;
wenzelm
parents: 48278
diff changeset
   217
    val env1 = if (env == null) settings else settings ++ env
50651
1fe68f1c3069 tuned signature;
wenzelm
parents: 50403
diff changeset
   218
    raw_execute(cwd, env1, redirect, cmdline: _*)
39583
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   219
  }
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   220
48353
bcce872202b3 support external processes with explicit environment;
wenzelm
parents: 48278
diff changeset
   221
  def execute(redirect: Boolean, args: String*): Process =
bcce872202b3 support external processes with explicit environment;
wenzelm
parents: 48278
diff changeset
   222
    execute_env(null, null, redirect, args: _*)
bcce872202b3 support external processes with explicit environment;
wenzelm
parents: 48278
diff changeset
   223
39583
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   224
56428
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   225
  /* tmp files */
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   226
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   227
  private def isabelle_tmp_prefix(): JFile =
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   228
  {
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   229
    val path = Path.explode("$ISABELLE_TMP_PREFIX")
60013
42d34eeb283c more uniform Isabelle_System.mkdirs in ML/Scala;
wenzelm
parents: 58640
diff changeset
   230
    path.file.mkdirs  // low-level mkdirs
60988
1d7a7e33fd67 tuned signature, according to ML version;
wenzelm
parents: 60263
diff changeset
   231
    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
   232
  }
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   233
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   234
  def tmp_file[A](name: String, ext: String = ""): JFile =
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   235
  {
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   236
    val suffix = if (ext == "") "" else "." + ext
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   237
    val file = Files.createTempFile(isabelle_tmp_prefix().toPath, name, suffix).toFile
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   238
    file.deleteOnExit
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   239
    file
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   240
  }
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   241
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   242
  def with_tmp_file[A](name: String, ext: String = "")(body: JFile => A): A =
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   243
  {
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   244
    val file = tmp_file(name, ext)
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   245
    try { body(file) } finally { file.delete }
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   246
  }
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   247
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   248
56477
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   249
  /* tmp dirs */
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
  def rm_tree(root: JFile)
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
    root.delete
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   254
    if (root.isDirectory) {
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   255
      Files.walkFileTree(root.toPath,
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   256
        new SimpleFileVisitor[JPath] {
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   257
          override def visitFile(file: JPath, attrs: BasicFileAttributes): FileVisitResult =
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   258
          {
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   259
            Files.delete(file)
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   260
            FileVisitResult.CONTINUE
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
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   263
          override def postVisitDirectory(dir: JPath, e: IOException): FileVisitResult =
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
            if (e == null) {
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   266
              Files.delete(dir)
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   267
              FileVisitResult.CONTINUE
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
            else throw e
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   270
          }
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   271
        }
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   272
      )
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   273
    }
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   274
  }
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   275
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   276
  def tmp_dir(name: String): JFile =
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   277
  {
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   278
    val dir = Files.createTempDirectory(isabelle_tmp_prefix().toPath, name).toFile
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   279
    dir.deleteOnExit
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   280
    dir
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   281
  }
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   282
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   283
  def with_tmp_dir[A](name: String)(body: JFile => A): A =
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   284
  {
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   285
    val dir = tmp_dir(name)
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   286
    try { body(dir) } finally { rm_tree(dir) }
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   287
  }
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   288
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   289
61025
636b578bfadd clarified kill on Windows: just one executable;
wenzelm
parents: 60992
diff changeset
   290
  /* kill */
636b578bfadd clarified kill on Windows: just one executable;
wenzelm
parents: 60992
diff changeset
   291
636b578bfadd clarified kill on Windows: just one executable;
wenzelm
parents: 60992
diff changeset
   292
  def kill(signal: String, group_pid: String): (String, Int) =
636b578bfadd clarified kill on Windows: just one executable;
wenzelm
parents: 60992
diff changeset
   293
  {
636b578bfadd clarified kill on Windows: just one executable;
wenzelm
parents: 60992
diff changeset
   294
    val bash =
61291
e00e1bf23d03 uniform treatment of bootstrap directories;
wenzelm
parents: 61282
diff changeset
   295
      if (Platform.is_windows) List(cygwin_root() + "\\bin\\bash.exe")
61025
636b578bfadd clarified kill on Windows: just one executable;
wenzelm
parents: 60992
diff changeset
   296
      else List("/usr/bin/env", "bash")
636b578bfadd clarified kill on Windows: just one executable;
wenzelm
parents: 60992
diff changeset
   297
    val cmdline = bash ::: List("-c", "kill -" + signal + " -" + group_pid)
61282
3e578ddef85d clarified Isabelle_System.init;
wenzelm
parents: 61281
diff changeset
   298
    process_output(raw_execute(null, null, true, cmdline: _*))
61025
636b578bfadd clarified kill on Windows: just one executable;
wenzelm
parents: 60992
diff changeset
   299
  }
636b578bfadd clarified kill on Windows: just one executable;
wenzelm
parents: 60992
diff changeset
   300
636b578bfadd clarified kill on Windows: just one executable;
wenzelm
parents: 60992
diff changeset
   301
39583
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   302
  /* bash */
31796
117300d72398 renamed IsabelleSystem to Isabelle_System;
wenzelm
parents: 31704
diff changeset
   303
60991
2fc5a44346b5 clarified modules, like ML version;
wenzelm
parents: 60988
diff changeset
   304
  private class Limited_Progress(proc: Bash.Process, progress_limit: Option[Long])
56666
229309cbc508 avoid accidental use of scala.language.reflectiveCalls;
wenzelm
parents: 56661
diff changeset
   305
  {
229309cbc508 avoid accidental use of scala.language.reflectiveCalls;
wenzelm
parents: 56661
diff changeset
   306
    private var count = 0L
229309cbc508 avoid accidental use of scala.language.reflectiveCalls;
wenzelm
parents: 56661
diff changeset
   307
    def apply(progress: String => Unit)(line: String): Unit = synchronized {
229309cbc508 avoid accidental use of scala.language.reflectiveCalls;
wenzelm
parents: 56661
diff changeset
   308
      progress(line)
229309cbc508 avoid accidental use of scala.language.reflectiveCalls;
wenzelm
parents: 56661
diff changeset
   309
      count = count + line.length + 1
229309cbc508 avoid accidental use of scala.language.reflectiveCalls;
wenzelm
parents: 56661
diff changeset
   310
      progress_limit match {
229309cbc508 avoid accidental use of scala.language.reflectiveCalls;
wenzelm
parents: 56661
diff changeset
   311
        case Some(limit) if count > limit => proc.terminate
229309cbc508 avoid accidental use of scala.language.reflectiveCalls;
wenzelm
parents: 56661
diff changeset
   312
        case _ =>
229309cbc508 avoid accidental use of scala.language.reflectiveCalls;
wenzelm
parents: 56661
diff changeset
   313
      }
229309cbc508 avoid accidental use of scala.language.reflectiveCalls;
wenzelm
parents: 56661
diff changeset
   314
    }
229309cbc508 avoid accidental use of scala.language.reflectiveCalls;
wenzelm
parents: 56661
diff changeset
   315
  }
229309cbc508 avoid accidental use of scala.language.reflectiveCalls;
wenzelm
parents: 56661
diff changeset
   316
50845
477ca927676f immediate theory progress for build_dialog;
wenzelm
parents: 50715
diff changeset
   317
  def bash_env(cwd: JFile, env: Map[String, String], script: String,
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
   318
    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
   319
    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
   320
    progress_limit: Option[Long] = None,
60991
2fc5a44346b5 clarified modules, like ML version;
wenzelm
parents: 60988
diff changeset
   321
    strict: Boolean = true): Bash.Result =
34198
ff5486262cd6 moved Library.decode_permissive_utf8 to Isabelle_System;
wenzelm
parents: 34196
diff changeset
   322
  {
56428
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   323
    with_tmp_file("isabelle_script") { script_file =>
48411
5b3440850d36 more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents: 48409
diff changeset
   324
      File.write(script_file, script)
60992
89effcb342df clarified modules, like ML version;
wenzelm
parents: 60991
diff changeset
   325
      val proc = Bash.process(cwd, env, false, "bash", File.standard_path(script_file))
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
   326
      proc.stdin.close
39581
430ff865089b refined Isabelle_System.bash_output: pass pid via stdout, separate stdout/stderr;
wenzelm
parents: 39576
diff changeset
   327
56666
229309cbc508 avoid accidental use of scala.language.reflectiveCalls;
wenzelm
parents: 56661
diff changeset
   328
      val limited = new Limited_Progress(proc, progress_limit)
50845
477ca927676f immediate theory progress for build_dialog;
wenzelm
parents: 50715
diff changeset
   329
      val (_, stdout) =
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
   330
        Simple_Thread.future("bash_stdout") {
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
   331
          File.read_lines(proc.stdout, limited(progress_stdout))
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
   332
        }
50845
477ca927676f immediate theory progress for build_dialog;
wenzelm
parents: 50715
diff changeset
   333
      val (_, stderr) =
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
   334
        Simple_Thread.future("bash_stderr") {
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
   335
          File.read_lines(proc.stderr, limited(progress_stderr))
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
   336
        }
34198
ff5486262cd6 moved Library.decode_permissive_utf8 to Isabelle_System;
wenzelm
parents: 34196
diff changeset
   337
39581
430ff865089b refined Isabelle_System.bash_output: pass pid via stdout, separate stdout/stderr;
wenzelm
parents: 39576
diff changeset
   338
      val rc =
39583
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   339
        try { proc.join }
56667
65e84b0ef974 more abstract Exn.Interrupt and POSIX return code;
wenzelm
parents: 56666
diff changeset
   340
        catch { case Exn.Interrupt() => proc.terminate; Exn.Interrupt.return_code }
56871
d06ff36b4fa7 expose interrupts more like ML version, but not in managed bash processes of Build;
wenzelm
parents: 56862
diff changeset
   341
      if (strict && rc == Exn.Interrupt.return_code) throw Exn.Interrupt()
d06ff36b4fa7 expose interrupts more like ML version, but not in managed bash processes of Build;
wenzelm
parents: 56862
diff changeset
   342
60991
2fc5a44346b5 clarified modules, like ML version;
wenzelm
parents: 60988
diff changeset
   343
      Bash.Result(stdout.join, stderr.join, rc)
34198
ff5486262cd6 moved Library.decode_permissive_utf8 to Isabelle_System;
wenzelm
parents: 34196
diff changeset
   344
    }
ff5486262cd6 moved Library.decode_permissive_utf8 to Isabelle_System;
wenzelm
parents: 34196
diff changeset
   345
  }
ff5486262cd6 moved Library.decode_permissive_utf8 to Isabelle_System;
wenzelm
parents: 34196
diff changeset
   346
60991
2fc5a44346b5 clarified modules, like ML version;
wenzelm
parents: 60988
diff changeset
   347
  def bash(script: String): Bash.Result = bash_env(null, null, script)
48353
bcce872202b3 support external processes with explicit environment;
wenzelm
parents: 48278
diff changeset
   348
39583
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   349
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   350
  /* system tools */
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   351
31818
f698f76a3713 builtin isabelle_tool for ML and Scala -- avoids excessive shell script (especially important for Cygwin);
wenzelm
parents: 31803
diff changeset
   352
  def isabelle_tool(name: String, args: String*): (String, Int) =
31498
be0f7f4f9e12 static IsabelleSystem.charset;
wenzelm
parents: 31443
diff changeset
   353
  {
43669
9d34288e9351 Path.split convenience;
wenzelm
parents: 43664
diff changeset
   354
    Path.split(getenv_strict("ISABELLE_TOOLS")).find { dir =>
48373
527e2bad7cca further imitation of "usedir" shell script;
wenzelm
parents: 48355
diff changeset
   355
      val file = (dir + Path.basic(name)).file
42124
7519c7c33017 suppress Mercurial backup files;
wenzelm
parents: 39699
diff changeset
   356
      try {
7519c7c33017 suppress Mercurial backup files;
wenzelm
parents: 39699
diff changeset
   357
        file.isFile && file.canRead && file.canExecute &&
7519c7c33017 suppress Mercurial backup files;
wenzelm
parents: 39699
diff changeset
   358
          !name.endsWith("~") && !name.endsWith(".orig")
7519c7c33017 suppress Mercurial backup files;
wenzelm
parents: 39699
diff changeset
   359
      }
31818
f698f76a3713 builtin isabelle_tool for ML and Scala -- avoids excessive shell script (especially important for Cygwin);
wenzelm
parents: 31803
diff changeset
   360
      catch { case _: SecurityException => false }
34200
wenzelm
parents: 34199
diff changeset
   361
    } match {
31818
f698f76a3713 builtin isabelle_tool for ML and Scala -- avoids excessive shell script (especially important for Cygwin);
wenzelm
parents: 31803
diff changeset
   362
      case Some(dir) =>
60988
1d7a7e33fd67 tuned signature, according to ML version;
wenzelm
parents: 60263
diff changeset
   363
        val file = File.standard_path(dir + Path.basic(name))
61282
3e578ddef85d clarified Isabelle_System.init;
wenzelm
parents: 61281
diff changeset
   364
        process_output(execute(true, (List(file) ::: args.toList): _*))
31818
f698f76a3713 builtin isabelle_tool for ML and Scala -- avoids excessive shell script (especially important for Cygwin);
wenzelm
parents: 31803
diff changeset
   365
      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
   366
    }
28063
3533485fc7b8 IsabelleSystem.mk_fifo, IsabelleSystem.rm_fifo;
wenzelm
parents: 28057
diff changeset
   367
  }
3533485fc7b8 IsabelleSystem.mk_fifo, IsabelleSystem.rm_fifo;
wenzelm
parents: 28057
diff changeset
   368
54690
cd88b44623bf more direct Isabelle_System.pdf_viewer;
wenzelm
parents: 54645
diff changeset
   369
  def open(arg: String): Unit =
cd88b44623bf more direct Isabelle_System.pdf_viewer;
wenzelm
parents: 54645
diff changeset
   370
    bash("exec \"$ISABELLE_OPEN\" '" + arg + "' >/dev/null 2>/dev/null &")
cd88b44623bf more direct Isabelle_System.pdf_viewer;
wenzelm
parents: 54645
diff changeset
   371
cd88b44623bf more direct Isabelle_System.pdf_viewer;
wenzelm
parents: 54645
diff changeset
   372
  def pdf_viewer(arg: Path): Unit =
60988
1d7a7e33fd67 tuned signature, according to ML version;
wenzelm
parents: 60263
diff changeset
   373
    bash("exec \"$PDF_VIEWER\" '" + File.standard_path(arg) + "' >/dev/null 2>/dev/null &")
54690
cd88b44623bf more direct Isabelle_System.pdf_viewer;
wenzelm
parents: 54645
diff changeset
   374
60991
2fc5a44346b5 clarified modules, like ML version;
wenzelm
parents: 60988
diff changeset
   375
  def hg(cmd_line: String, cwd: Path = Path.current): Bash.Result =
60988
1d7a7e33fd67 tuned signature, according to ML version;
wenzelm
parents: 60263
diff changeset
   376
    bash("cd " + File.shell_path(cwd) + " && \"${HG:-hg}\" " + cmd_line)
28063
3533485fc7b8 IsabelleSystem.mk_fifo, IsabelleSystem.rm_fifo;
wenzelm
parents: 28057
diff changeset
   377
32450
375db037f4d2 misc tuning;
wenzelm
parents: 32328
diff changeset
   378
31796
117300d72398 renamed IsabelleSystem to Isabelle_System;
wenzelm
parents: 31704
diff changeset
   379
  /** Isabelle resources **/
117300d72398 renamed IsabelleSystem to Isabelle_System;
wenzelm
parents: 31704
diff changeset
   380
32328
f2fd9da84bac added Isabelle_System.components;
wenzelm
parents: 31927
diff changeset
   381
  /* components */
f2fd9da84bac added Isabelle_System.components;
wenzelm
parents: 31927
diff changeset
   382
43669
9d34288e9351 Path.split convenience;
wenzelm
parents: 43664
diff changeset
   383
  def components(): List[Path] =
9d34288e9351 Path.split convenience;
wenzelm
parents: 43664
diff changeset
   384
    Path.split(getenv_strict("ISABELLE_COMPONENTS"))
32328
f2fd9da84bac added Isabelle_System.components;
wenzelm
parents: 31927
diff changeset
   385
f2fd9da84bac added Isabelle_System.components;
wenzelm
parents: 31927
diff changeset
   386
50403
87868964733c more uniform default logic, using settings, options, args etc.;
wenzelm
parents: 50298
diff changeset
   387
  /* logic images */
29152
89b0803404d7 added platform_file;
wenzelm
parents: 29140
diff changeset
   388
48503
wenzelm
parents: 48418
diff changeset
   389
  def find_logics_dirs(): List[Path] =
31498
be0f7f4f9e12 static IsabelleSystem.charset;
wenzelm
parents: 31443
diff changeset
   390
  {
48503
wenzelm
parents: 48418
diff changeset
   391
    val ml_ident = Path.explode("$ML_IDENTIFIER").expand
wenzelm
parents: 48418
diff changeset
   392
    Path.split(getenv_strict("ISABELLE_PATH")).map(_ + ml_ident)
29152
89b0803404d7 added platform_file;
wenzelm
parents: 29140
diff changeset
   393
  }
29570
10fca82e688a IsabelleSystem: provide Symbol.Interpretation;
wenzelm
parents: 29180
diff changeset
   394
48503
wenzelm
parents: 48418
diff changeset
   395
  def find_logics(): List[String] =
wenzelm
parents: 48418
diff changeset
   396
    (for {
wenzelm
parents: 48418
diff changeset
   397
      dir <- find_logics_dirs()
wenzelm
parents: 48418
diff changeset
   398
      files = dir.file.listFiles() if files != null
wenzelm
parents: 48418
diff changeset
   399
      file <- files.toList if file.isFile } yield file.getName).sorted
wenzelm
parents: 48418
diff changeset
   400
50403
87868964733c more uniform default logic, using settings, options, args etc.;
wenzelm
parents: 50298
diff changeset
   401
  def default_logic(args: String*): String =
87868964733c more uniform default logic, using settings, options, args etc.;
wenzelm
parents: 50298
diff changeset
   402
  {
87868964733c more uniform default logic, using settings, options, args etc.;
wenzelm
parents: 50298
diff changeset
   403
    args.find(_ != "") match {
87868964733c more uniform default logic, using settings, options, args etc.;
wenzelm
parents: 50298
diff changeset
   404
      case Some(logic) => logic
87868964733c more uniform default logic, using settings, options, args etc.;
wenzelm
parents: 50298
diff changeset
   405
      case None => Isabelle_System.getenv_strict("ISABELLE_LOGIC")
87868964733c more uniform default logic, using settings, options, args etc.;
wenzelm
parents: 50298
diff changeset
   406
    }
87868964733c more uniform default logic, using settings, options, args etc.;
wenzelm
parents: 50298
diff changeset
   407
  }
27919
1eb8a3902d49 Isabelle system support.
wenzelm
parents:
diff changeset
   408
}