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