| author | wenzelm | 
| Wed, 17 Jun 2015 22:30:22 +0200 | |
| changeset 60511 | 5e67a223a141 | 
| parent 60263 | 2a5dbad75355 | 
| child 60988 | 1d7a7e33fd67 | 
| 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 | ||
| 55618 | 10 | |
| 31520 
0a99c8716312
simplified IsabelleSystem.platform_path for cygwin;
 wenzelm parents: 
31500diff
changeset | 11 | import java.util.regex.Pattern | 
| 51614 
22d1dd43f089
separate module Isabelle_Font, to keep this out of the way of generic Isabelle_System operations, notably for non-Isabelle/jEdit applications;
 wenzelm parents: 
51256diff
changeset | 12 | import java.io.{File => JFile, BufferedReader, InputStreamReader,
 | 
| 56477 | 13 | BufferedWriter, OutputStreamWriter, IOException} | 
| 14 | import java.nio.file.{Path => JPath, Files, SimpleFileVisitor, FileVisitResult}
 | |
| 15 | import java.nio.file.attribute.BasicFileAttributes | |
| 56449 
f0592485b7fb
support for URL as file name, similar to treatment in jEdit.java;
 wenzelm parents: 
56428diff
changeset | 16 | import java.net.{URL, URLDecoder, MalformedURLException}
 | 
| 28063 | 17 | |
| 31520 
0a99c8716312
simplified IsabelleSystem.platform_path for cygwin;
 wenzelm parents: 
31500diff
changeset | 18 | import scala.util.matching.Regex | 
| 27936 | 19 | |
| 27919 | 20 | |
| 43514 
45cf8d5e109a
lazy Isabelle_System.default supports implicit boot;
 wenzelm parents: 
43484diff
changeset | 21 | object Isabelle_System | 
| 
45cf8d5e109a
lazy Isabelle_System.default supports implicit boot;
 wenzelm parents: 
43484diff
changeset | 22 | {
 | 
| 50652 
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
 wenzelm parents: 
50651diff
changeset | 23 | /** bootstrap information **/ | 
| 43661 
39fdbd814c7f
quasi-static Isabelle_System -- reduced tendency towards "functorial style";
 wenzelm parents: 
43660diff
changeset | 24 | |
| 50652 
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
 wenzelm parents: 
50651diff
changeset | 25 | def jdk_home(): String = | 
| 43661 
39fdbd814c7f
quasi-static Isabelle_System -- reduced tendency towards "functorial style";
 wenzelm parents: 
43660diff
changeset | 26 |   {
 | 
| 53582 | 27 |     val java_home = System.getProperty("java.home", "")
 | 
| 50652 
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
 wenzelm parents: 
50651diff
changeset | 28 | val home = new JFile(java_home) | 
| 
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
 wenzelm parents: 
50651diff
changeset | 29 | val parent = home.getParent | 
| 
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
 wenzelm parents: 
50651diff
changeset | 30 | if (home.getName == "jre" && parent != null && | 
| 
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
 wenzelm parents: 
50651diff
changeset | 31 | (new JFile(new JFile(parent, "bin"), "javac")).exists) parent | 
| 
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
 wenzelm parents: 
50651diff
changeset | 32 | else java_home | 
| 43661 
39fdbd814c7f
quasi-static Isabelle_System -- reduced tendency towards "functorial style";
 wenzelm parents: 
43660diff
changeset | 33 | } | 
| 37013 
641923374eba
Isabelle_System: allow explicit isabelle_home argument;
 wenzelm parents: 
36991diff
changeset | 34 | |
| 51820 | 35 | private def find_cygwin_root(cygwin_root0: String = ""): String = | 
| 50652 
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
 wenzelm parents: 
50651diff
changeset | 36 |   {
 | 
| 
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
 wenzelm parents: 
50651diff
changeset | 37 | require(Platform.is_windows) | 
| 
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
 wenzelm parents: 
50651diff
changeset | 38 | |
| 
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
 wenzelm parents: 
50651diff
changeset | 39 |     val cygwin_root1 = System.getenv("CYGWIN_ROOT")
 | 
| 
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
 wenzelm parents: 
50651diff
changeset | 40 |     val cygwin_root2 = System.getProperty("cygwin.root")
 | 
| 
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
 wenzelm parents: 
50651diff
changeset | 41 | |
| 51820 | 42 | if (cygwin_root0 != null && cygwin_root0 != "") cygwin_root0 | 
| 43 | else if (cygwin_root1 != null && cygwin_root1 != "") cygwin_root1 | |
| 50652 
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 | /* | 
| 51820 | 61 | Isabelle home precedence: | 
| 62 | (1) isabelle_home as explicit argument | |
| 37013 
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 | */ | 
| 51820 | 66 |   def init(isabelle_home: String = "", cygwin_root: String = ""): Unit = synchronized {
 | 
| 50652 
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 | |
| 51820 | 70 | def set_cygwin_root() | 
| 43661 
39fdbd814c7f
quasi-static Isabelle_System -- reduced tendency towards "functorial style";
 wenzelm parents: 
43660diff
changeset | 71 |       {
 | 
| 51820 | 72 | if (Platform.is_windows) | 
| 73 | _settings = Some(_settings.getOrElse(Map.empty) + | |
| 74 |             ("CYGWIN_ROOT" -> find_cygwin_root(cygwin_root)))
 | |
| 75 | } | |
| 47725 
447b635bcea5
cold-start HOME is user.home, in accordance with Cygwin-Terminal.bat;
 wenzelm parents: 
47674diff
changeset | 76 | |
| 51820 | 77 | 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: 
56871diff
changeset | 78 | |
| 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: 
57411diff
changeset | 79 | 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: 
57411diff
changeset | 80 | 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: 
57411diff
changeset | 81 | 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: 
57411diff
changeset | 82 | |
| 57411 
9444489766a1
sane environment defaults for Mac OS X, based on former App1/script -- e.g. relevant for MacTeX PATH;
 wenzelm parents: 
56871diff
changeset | 83 | val env = | 
| 
9444489766a1
sane environment defaults for Mac OS X, based on former App1/script -- e.g. relevant for MacTeX PATH;
 wenzelm parents: 
56871diff
changeset | 84 |       {
 | 
| 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: 
57411diff
changeset | 85 | 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: 
57411diff
changeset | 86 |         {
 | 
| 
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: 
57411diff
changeset | 87 |           val temp = System.getenv("TEMP")
 | 
| 
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: 
57411diff
changeset | 88 |           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: 
57411diff
changeset | 89 | } | 
| 57411 
9444489766a1
sane environment defaults for Mac OS X, based on former App1/script -- e.g. relevant for MacTeX PATH;
 wenzelm parents: 
56871diff
changeset | 90 |         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: 
56871diff
changeset | 91 |         val isabelle_app = System.getProperty("isabelle.app", "")
 | 
| 51820 | 92 | |
| 58640 
37f852399a32
prefer original TEMP from Windows, e.g. relevant for Isabelle distribution within read-only directory (due to its bundled Cygwin and /tmp inside of it);
 wenzelm parents: 
57411diff
changeset | 93 | 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: 
57411diff
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: 
57411diff
changeset | 95 |             default(sys.env + ("ISABELLE_JDK_HOME" -> posix_path(jdk_home())),
 | 
| 60215 | 96 | "TEMP_WINDOWS" -> temp_windows), | 
| 97 | "HOME" -> user_home), | |
| 98 | "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: 
56871diff
changeset | 99 | } | 
| 29177 | 100 | |
| 51820 | 101 | val system_home = | 
| 102 | if (isabelle_home != null && isabelle_home != "") isabelle_home | |
| 103 | else | |
| 104 |           env.get("ISABELLE_HOME") match {
 | |
| 105 |             case None | Some("") =>
 | |
| 53582 | 106 |               val path = System.getProperty("isabelle.home", "")
 | 
| 107 |               if (path == "") error("Unknown Isabelle home directory")
 | |
| 51820 | 108 | else path | 
| 109 | case Some(path) => path | |
| 110 | } | |
| 31498 | 111 | |
| 51820 | 112 | val settings = | 
| 56428 
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
 wenzelm parents: 
55876diff
changeset | 113 |       {
 | 
| 
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
 wenzelm parents: 
55876diff
changeset | 114 |         val dump = JFile.createTempFile("settings", null)
 | 
| 
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
 wenzelm parents: 
55876diff
changeset | 115 | dump.deleteOnExit | 
| 
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
 wenzelm parents: 
55876diff
changeset | 116 |         try {
 | 
| 51820 | 117 | val shell_prefix = | 
| 118 | if (Platform.is_windows) List(find_cygwin_root(cygwin_root) + "\\bin\\bash", "-l") | |
| 119 | else Nil | |
| 120 | val cmdline = | |
| 121 | shell_prefix ::: List(system_home + "/bin/isabelle", "getenv", "-d", dump.toString) | |
| 122 | val (output, rc) = process_output(raw_execute(null, env, true, cmdline: _*)) | |
| 123 | if (rc != 0) error(output) | |
| 56477 | 124 | |
| 51820 | 125 | val entries = | 
| 56661 
ef623f6f036b
avoid octal escape literals -- deprecated in scala-2.11.0;
 wenzelm parents: 
56599diff
changeset | 126 |             (for (entry <- File.read(dump) split "\u0000" if entry != "") yield {
 | 
| 51820 | 127 |               val i = entry.indexOf('=')
 | 
| 60215 | 128 | if (i <= 0) entry -> "" | 
| 129 | else entry.substring(0, i) -> entry.substring(i + 1) | |
| 51820 | 130 | }).toMap | 
| 131 |           entries + ("PATH" -> entries("PATH_JVM")) - "PATH_JVM"
 | |
| 132 | } | |
| 56428 
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
 wenzelm parents: 
55876diff
changeset | 133 |         finally { dump.delete }
 | 
| 
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
 wenzelm parents: 
55876diff
changeset | 134 | } | 
| 50652 
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
 wenzelm parents: 
50651diff
changeset | 135 | _settings = Some(settings) | 
| 51820 | 136 | set_cygwin_root() | 
| 43661 
39fdbd814c7f
quasi-static Isabelle_System -- reduced tendency towards "functorial style";
 wenzelm parents: 
43660diff
changeset | 137 | } | 
| 27953 | 138 | } | 
| 27919 | 139 | |
| 31796 | 140 | |
| 141 | /* getenv */ | |
| 142 | ||
| 47661 
012a887997f3
USER_HOME settings variable points to cross-platform user home directory;
 wenzelm parents: 
47113diff
changeset | 143 | def getenv(name: String): String = settings.getOrElse(name, "") | 
| 31498 | 144 | |
| 145 | def getenv_strict(name: String): String = | |
| 146 |   {
 | |
| 31234 
6ce6801129de
getenv_strict needs to be based on getenv (accidentally broken in 0e88d33e8d19);
 wenzelm parents: 
30175diff
changeset | 147 | val value = getenv(name) | 
| 60196 | 148 | if (value != "") value | 
| 149 |     else error("Undefined Isabelle environment variable: " + quote(name))
 | |
| 27919 | 150 | } | 
| 151 | ||
| 51820 | 152 |   def get_cygwin_root(): String = getenv_strict("CYGWIN_ROOT")
 | 
| 153 | ||
| 31796 | 154 | |
| 54039 | 155 | |
| 43606 | 156 | /** file-system operations **/ | 
| 31796 | 157 | |
| 50652 
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
 wenzelm parents: 
50651diff
changeset | 158 | /* jvm_path */ | 
| 
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
 wenzelm parents: 
50651diff
changeset | 159 | |
| 
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
 wenzelm parents: 
50651diff
changeset | 160 |   private val Cygdrive = new Regex("/cygdrive/([a-zA-Z])($|/.*)")
 | 
| 
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
 wenzelm parents: 
50651diff
changeset | 161 |   private val Named_Root = new Regex("//+([^/]*)(.*)")
 | 
| 
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
 wenzelm parents: 
50651diff
changeset | 162 | |
| 
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
 wenzelm parents: 
50651diff
changeset | 163 | def jvm_path(posix_path: String): String = | 
| 
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
 wenzelm parents: 
50651diff
changeset | 164 |     if (Platform.is_windows) {
 | 
| 
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
 wenzelm parents: 
50651diff
changeset | 165 | val result_path = new StringBuilder | 
| 
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
 wenzelm parents: 
50651diff
changeset | 166 | val rest = | 
| 
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
 wenzelm parents: 
50651diff
changeset | 167 |         posix_path match {
 | 
| 
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
 wenzelm parents: 
50651diff
changeset | 168 | case Cygdrive(drive, rest) => | 
| 56599 | 169 | result_path ++= (Word.uppercase(drive) + ":" + JFile.separator) | 
| 50652 
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
 wenzelm parents: 
50651diff
changeset | 170 | rest | 
| 
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
 wenzelm parents: 
50651diff
changeset | 171 | case Named_Root(root, rest) => | 
| 
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
 wenzelm parents: 
50651diff
changeset | 172 | result_path ++= JFile.separator | 
| 
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
 wenzelm parents: 
50651diff
changeset | 173 | result_path ++= JFile.separator | 
| 
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
 wenzelm parents: 
50651diff
changeset | 174 | result_path ++= root | 
| 
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
 wenzelm parents: 
50651diff
changeset | 175 | rest | 
| 
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
 wenzelm parents: 
50651diff
changeset | 176 |           case path if path.startsWith("/") =>
 | 
| 51820 | 177 | result_path ++= get_cygwin_root() | 
| 50652 
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
 wenzelm parents: 
50651diff
changeset | 178 | path | 
| 
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
 wenzelm parents: 
50651diff
changeset | 179 | case path => path | 
| 
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
 wenzelm parents: 
50651diff
changeset | 180 | } | 
| 
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
 wenzelm parents: 
50651diff
changeset | 181 |       for (p <- space_explode('/', rest) if p != "") {
 | 
| 
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
 wenzelm parents: 
50651diff
changeset | 182 | val len = result_path.length | 
| 
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
 wenzelm parents: 
50651diff
changeset | 183 | if (len > 0 && result_path(len - 1) != JFile.separatorChar) | 
| 
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
 wenzelm parents: 
50651diff
changeset | 184 | result_path += JFile.separatorChar | 
| 
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
 wenzelm parents: 
50651diff
changeset | 185 | result_path ++= p | 
| 
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
 wenzelm parents: 
50651diff
changeset | 186 | } | 
| 
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
 wenzelm parents: 
50651diff
changeset | 187 | result_path.toString | 
| 
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
 wenzelm parents: 
50651diff
changeset | 188 | } | 
| 
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
 wenzelm parents: 
50651diff
changeset | 189 | else posix_path | 
| 
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
 wenzelm parents: 
50651diff
changeset | 190 | |
| 
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
 wenzelm parents: 
50651diff
changeset | 191 | |
| 
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
 wenzelm parents: 
50651diff
changeset | 192 | /* posix_path */ | 
| 
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
 wenzelm parents: 
50651diff
changeset | 193 | |
| 
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
 wenzelm parents: 
50651diff
changeset | 194 | def posix_path(jvm_path: String): String = | 
| 
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
 wenzelm parents: 
50651diff
changeset | 195 |     if (Platform.is_windows) {
 | 
| 
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
 wenzelm parents: 
50651diff
changeset | 196 |       val Platform_Root = new Regex("(?i)" +
 | 
| 51820 | 197 | Pattern.quote(get_cygwin_root()) + """(?:\\+|\z)(.*)""") | 
| 50652 
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
 wenzelm parents: 
50651diff
changeset | 198 |       val Drive = new Regex("""([a-zA-Z]):\\*(.*)""")
 | 
| 
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
 wenzelm parents: 
50651diff
changeset | 199 | |
| 
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
 wenzelm parents: 
50651diff
changeset | 200 |       jvm_path.replace('/', '\\') match {
 | 
| 
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
 wenzelm parents: 
50651diff
changeset | 201 |         case Platform_Root(rest) => "/" + rest.replace('\\', '/')
 | 
| 
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
 wenzelm parents: 
50651diff
changeset | 202 | case Drive(letter, rest) => | 
| 56599 | 203 | "/cygdrive/" + Word.lowercase(letter) + | 
| 50652 
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
 wenzelm parents: 
50651diff
changeset | 204 |             (if (rest == "") "" else "/" + rest.replace('\\', '/'))
 | 
| 
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
 wenzelm parents: 
50651diff
changeset | 205 |         case path => path.replace('\\', '/')
 | 
| 
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
 wenzelm parents: 
50651diff
changeset | 206 | } | 
| 
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
 wenzelm parents: 
50651diff
changeset | 207 | } | 
| 
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
 wenzelm parents: 
50651diff
changeset | 208 | else jvm_path | 
| 
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
 wenzelm parents: 
50651diff
changeset | 209 | |
| 50715 
8cfd585b9162
prefer old graph browser in Isabelle/jEdit, which still produces better layout;
 wenzelm parents: 
50684diff
changeset | 210 | 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 | 211 | |
| 56449 
f0592485b7fb
support for URL as file name, similar to treatment in jEdit.java;
 wenzelm parents: 
56428diff
changeset | 212 | def posix_path_url(name: String): String = | 
| 
f0592485b7fb
support for URL as file name, similar to treatment in jEdit.java;
 wenzelm parents: 
56428diff
changeset | 213 |     try {
 | 
| 
f0592485b7fb
support for URL as file name, similar to treatment in jEdit.java;
 wenzelm parents: 
56428diff
changeset | 214 | val url = new URL(name) | 
| 
f0592485b7fb
support for URL as file name, similar to treatment in jEdit.java;
 wenzelm parents: 
56428diff
changeset | 215 | if (url.getProtocol == "file") | 
| 
f0592485b7fb
support for URL as file name, similar to treatment in jEdit.java;
 wenzelm parents: 
56428diff
changeset | 216 | posix_path(URLDecoder.decode(url.getPath, UTF8.charset_name)) | 
| 
f0592485b7fb
support for URL as file name, similar to treatment in jEdit.java;
 wenzelm parents: 
56428diff
changeset | 217 | else name | 
| 
f0592485b7fb
support for URL as file name, similar to treatment in jEdit.java;
 wenzelm parents: 
56428diff
changeset | 218 | } | 
| 
f0592485b7fb
support for URL as file name, similar to treatment in jEdit.java;
 wenzelm parents: 
56428diff
changeset | 219 |     catch { case _: MalformedURLException => posix_path(name) }
 | 
| 
f0592485b7fb
support for URL as file name, similar to treatment in jEdit.java;
 wenzelm parents: 
56428diff
changeset | 220 | |
| 50652 
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
 wenzelm parents: 
50651diff
changeset | 221 | |
| 
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
 wenzelm parents: 
50651diff
changeset | 222 | /* misc path specifications */ | 
| 36136 
89b1a136edef
more precise treatment of UNC server prefix, e.g. //foo;
 wenzelm parents: 
36012diff
changeset | 223 | |
| 43664 | 224 | def standard_path(path: Path): String = path.expand.implode | 
| 31796 | 225 | |
| 50652 
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
 wenzelm parents: 
50651diff
changeset | 226 | def platform_path(path: Path): String = jvm_path(standard_path(path)) | 
| 48409 | 227 | def platform_file(path: Path): JFile = new JFile(platform_path(path)) | 
| 29152 | 228 | |
| 45100 | 229 | def platform_file_url(raw_path: Path): String = | 
| 230 |   {
 | |
| 231 | val path = raw_path.expand | |
| 232 | require(path.is_absolute) | |
| 45101 
6317e969fb30
proper platform_file_url for Windows UNC paths (server shares);
 wenzelm parents: 
45100diff
changeset | 233 |     val s = platform_path(path).replaceAll(" ", "%20")
 | 
| 
6317e969fb30
proper platform_file_url for Windows UNC paths (server shares);
 wenzelm parents: 
45100diff
changeset | 234 | if (!Platform.is_windows) "file://" + s | 
| 
6317e969fb30
proper platform_file_url for Windows UNC paths (server shares);
 wenzelm parents: 
45100diff
changeset | 235 |     else if (s.startsWith("\\\\")) "file:" + s.replace('\\', '/')
 | 
| 
6317e969fb30
proper platform_file_url for Windows UNC paths (server shares);
 wenzelm parents: 
45100diff
changeset | 236 |     else "file:///" + s.replace('\\', '/')
 | 
| 45100 | 237 | } | 
| 238 | ||
| 56428 
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
 wenzelm parents: 
55876diff
changeset | 239 | def shell_path(path: Path): String = "'" + standard_path(path) + "'" | 
| 
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
 wenzelm parents: 
55876diff
changeset | 240 | def shell_path(file: JFile): String = "'" + posix_path(file) + "'" | 
| 
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
 wenzelm parents: 
55876diff
changeset | 241 | |
| 27953 | 242 | |
| 48923 
a2df77fcf1eb
prefer jEdit file name representation (potentially via VFS);
 wenzelm parents: 
48550diff
changeset | 243 | /* source files of Isabelle/ML bootstrap */ | 
| 31436 | 244 | |
| 48923 
a2df77fcf1eb
prefer jEdit file name representation (potentially via VFS);
 wenzelm parents: 
48550diff
changeset | 245 | def source_file(path: Path): Option[Path] = | 
| 31498 | 246 |   {
 | 
| 48923 
a2df77fcf1eb
prefer jEdit file name representation (potentially via VFS);
 wenzelm parents: 
48550diff
changeset | 247 | 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 | 248 | |
| 
a2df77fcf1eb
prefer jEdit file name representation (potentially via VFS);
 wenzelm parents: 
48550diff
changeset | 249 | if (path.is_absolute || path.is_current) check(path) | 
| 31436 | 250 |     else {
 | 
| 48923 
a2df77fcf1eb
prefer jEdit file name representation (potentially via VFS);
 wenzelm parents: 
48550diff
changeset | 251 |       check(Path.explode("~~/src/Pure") + path) orElse
 | 
| 55876 | 252 |         (if (getenv("ML_SOURCES") == "") None
 | 
| 253 |          else check(Path.explode("$ML_SOURCES") + path))
 | |
| 31436 | 254 | } | 
| 255 | } | |
| 256 | ||
| 257 | ||
| 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 | 258 | /* 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 | 259 | |
| 60013 | 260 | def mkdirs(path: Path): Unit = | 
| 60263 
2a5dbad75355
more portable mkdirs via perl, e.g. relevant for Windows UNC paths (network shares);
 wenzelm parents: 
60215diff
changeset | 261 |     if (!path.is_dir) {
 | 
| 
2a5dbad75355
more portable mkdirs via perl, e.g. relevant for Windows UNC paths (network shares);
 wenzelm parents: 
60215diff
changeset | 262 |       bash("perl -e \"use File::Path make_path; make_path(" + shell_path(path) + ");\"")
 | 
| 
2a5dbad75355
more portable mkdirs via perl, e.g. relevant for Windows UNC paths (network shares);
 wenzelm parents: 
60215diff
changeset | 263 |       if (!path.is_dir) error("Failed to create directory: " + quote(platform_path(path)))
 | 
| 
2a5dbad75355
more portable mkdirs via perl, e.g. relevant for Windows UNC paths (network shares);
 wenzelm parents: 
60215diff
changeset | 264 | } | 
| 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 | 265 | |
| 
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 | 266 | |
| 32450 | 267 | |
| 39583 
c1e9c6dfeff8
more robust lib/scripts/process, with explicit script/no_script mode;
 wenzelm parents: 
39581diff
changeset | 268 | /** external processes **/ | 
| 
c1e9c6dfeff8
more robust lib/scripts/process, with explicit script/no_script mode;
 wenzelm parents: 
39581diff
changeset | 269 | |
| 50651 | 270 | /* raw execute for bootstrapping */ | 
| 271 | ||
| 52667 | 272 | def raw_execute(cwd: JFile, env: Map[String, String], redirect: Boolean, args: String*): Process = | 
| 50651 | 273 |   {
 | 
| 274 | val cmdline = new java.util.LinkedList[String] | |
| 275 | for (s <- args) cmdline.add(s) | |
| 276 | ||
| 277 | val proc = new ProcessBuilder(cmdline) | |
| 278 | if (cwd != null) proc.directory(cwd) | |
| 279 |     if (env != null) {
 | |
| 280 | proc.environment.clear | |
| 281 | for ((x, y) <- env) proc.environment.put(x, y) | |
| 282 | } | |
| 283 | proc.redirectErrorStream(redirect) | |
| 284 | proc.start | |
| 285 | } | |
| 286 | ||
| 287 | private def process_output(proc: Process): (String, Int) = | |
| 288 |   {
 | |
| 289 | proc.getOutputStream.close | |
| 50684 
12b7e0b4a66e
support File.read_gzip as well, in accordance to File.write_gzip;
 wenzelm parents: 
50652diff
changeset | 290 | val output = File.read_stream(proc.getInputStream) | 
| 50651 | 291 | val rc = | 
| 292 |       try { proc.waitFor }
 | |
| 293 |       finally {
 | |
| 294 | proc.getInputStream.close | |
| 295 | proc.getErrorStream.close | |
| 296 | proc.destroy | |
| 297 | Thread.interrupted | |
| 298 | } | |
| 299 | (output, rc) | |
| 300 | } | |
| 301 | ||
| 302 | ||
| 39583 
c1e9c6dfeff8
more robust lib/scripts/process, with explicit script/no_script mode;
 wenzelm parents: 
39581diff
changeset | 303 | /* plain execute */ | 
| 
c1e9c6dfeff8
more robust lib/scripts/process, with explicit script/no_script mode;
 wenzelm parents: 
39581diff
changeset | 304 | |
| 48409 | 305 | 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 | 306 |   {
 | 
| 
c1e9c6dfeff8
more robust lib/scripts/process, with explicit script/no_script mode;
 wenzelm parents: 
39581diff
changeset | 307 | val cmdline = | 
| 55555 | 308 | if (Platform.is_windows) List(get_cygwin_root() + "\\bin\\env.exe") ::: args.toList | 
| 39583 
c1e9c6dfeff8
more robust lib/scripts/process, with explicit script/no_script mode;
 wenzelm parents: 
39581diff
changeset | 309 | else args | 
| 48353 
bcce872202b3
support external processes with explicit environment;
 wenzelm parents: 
48278diff
changeset | 310 | val env1 = if (env == null) settings else settings ++ env | 
| 50651 | 311 | raw_execute(cwd, env1, redirect, cmdline: _*) | 
| 39583 
c1e9c6dfeff8
more robust lib/scripts/process, with explicit script/no_script mode;
 wenzelm parents: 
39581diff
changeset | 312 | } | 
| 
c1e9c6dfeff8
more robust lib/scripts/process, with explicit script/no_script mode;
 wenzelm parents: 
39581diff
changeset | 313 | |
| 48353 
bcce872202b3
support external processes with explicit environment;
 wenzelm parents: 
48278diff
changeset | 314 | def execute(redirect: Boolean, args: String*): Process = | 
| 
bcce872202b3
support external processes with explicit environment;
 wenzelm parents: 
48278diff
changeset | 315 | execute_env(null, null, redirect, args: _*) | 
| 
bcce872202b3
support external processes with explicit environment;
 wenzelm parents: 
48278diff
changeset | 316 | |
| 39583 
c1e9c6dfeff8
more robust lib/scripts/process, with explicit script/no_script mode;
 wenzelm parents: 
39581diff
changeset | 317 | |
| 
c1e9c6dfeff8
more robust lib/scripts/process, with explicit script/no_script mode;
 wenzelm parents: 
39581diff
changeset | 318 | /* managed process */ | 
| 
c1e9c6dfeff8
more robust lib/scripts/process, with explicit script/no_script mode;
 wenzelm parents: 
39581diff
changeset | 319 | |
| 48409 | 320 | 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 | 321 |   {
 | 
| 
c1e9c6dfeff8
more robust lib/scripts/process, with explicit script/no_script mode;
 wenzelm parents: 
39581diff
changeset | 322 | private val params = | 
| 43606 | 323 |       List(standard_path(Path.explode("~~/lib/scripts/process")), "group", "-", "no_script")
 | 
| 55555 | 324 | private val proc = execute_env(cwd, env, redirect, (params ::: args.toList):_*) | 
| 39583 
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 | |
| 
c1e9c6dfeff8
more robust lib/scripts/process, with explicit script/no_script mode;
 wenzelm parents: 
39581diff
changeset | 327 | // channels | 
| 
c1e9c6dfeff8
more robust lib/scripts/process, with explicit script/no_script mode;
 wenzelm parents: 
39581diff
changeset | 328 | |
| 
c1e9c6dfeff8
more robust lib/scripts/process, with explicit script/no_script mode;
 wenzelm parents: 
39581diff
changeset | 329 | val stdin: BufferedWriter = | 
| 50203 | 330 | 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 | 331 | |
| 
c1e9c6dfeff8
more robust lib/scripts/process, with explicit script/no_script mode;
 wenzelm parents: 
39581diff
changeset | 332 | val stdout: BufferedReader = | 
| 50203 | 333 | 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 | 334 | |
| 
c1e9c6dfeff8
more robust lib/scripts/process, with explicit script/no_script mode;
 wenzelm parents: 
39581diff
changeset | 335 | val stderr: BufferedReader = | 
| 50203 | 336 | 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 | 337 | |
| 
c1e9c6dfeff8
more robust lib/scripts/process, with explicit script/no_script mode;
 wenzelm parents: 
39581diff
changeset | 338 | |
| 
c1e9c6dfeff8
more robust lib/scripts/process, with explicit script/no_script mode;
 wenzelm parents: 
39581diff
changeset | 339 | // signals | 
| 
c1e9c6dfeff8
more robust lib/scripts/process, with explicit script/no_script mode;
 wenzelm parents: 
39581diff
changeset | 340 | |
| 
c1e9c6dfeff8
more robust lib/scripts/process, with explicit script/no_script mode;
 wenzelm parents: 
39581diff
changeset | 341 | private val pid = stdout.readLine | 
| 
c1e9c6dfeff8
more robust lib/scripts/process, with explicit script/no_script mode;
 wenzelm parents: 
39581diff
changeset | 342 | |
| 54645 
c19c83f49fa5
more robust and portable invocation of kill as bash builtin, instead of external executable -- NB: /bin/kill on Mac OS X Mountain Lion chokes on Linux workaround from 3610ae73cfdb;
 wenzelm parents: 
54039diff
changeset | 343 | private def kill_cmd(signal: String): Int = | 
| 54880 
ce5faf131fd3
avoid hardwired /bin/bash (like canonical Isabelle shell scripts);
 wenzelm parents: 
54690diff
changeset | 344 | execute(true, "/usr/bin/env", "bash", "-c", "kill -" + signal + " -" + pid).waitFor | 
| 54645 
c19c83f49fa5
more robust and portable invocation of kill as bash builtin, instead of external executable -- NB: /bin/kill on Mac OS X Mountain Lion chokes on Linux workaround from 3610ae73cfdb;
 wenzelm parents: 
54039diff
changeset | 345 | |
| 39583 
c1e9c6dfeff8
more robust lib/scripts/process, with explicit script/no_script mode;
 wenzelm parents: 
39581diff
changeset | 346 | private def kill(signal: String): Boolean = | 
| 56862 
e6f7ed54d64e
more robust process kill -- postpone interrupts on current thread;
 wenzelm parents: 
56785diff
changeset | 347 |       Exn.Interrupt.postpone { kill_cmd(signal); kill_cmd("0") == 0 } getOrElse true
 | 
| 39583 
c1e9c6dfeff8
more robust lib/scripts/process, with explicit script/no_script mode;
 wenzelm parents: 
39581diff
changeset | 348 | |
| 
c1e9c6dfeff8
more robust lib/scripts/process, with explicit script/no_script mode;
 wenzelm parents: 
39581diff
changeset | 349 | private def multi_kill(signal: String): Boolean = | 
| 
c1e9c6dfeff8
more robust lib/scripts/process, with explicit script/no_script mode;
 wenzelm parents: 
39581diff
changeset | 350 |     {
 | 
| 
c1e9c6dfeff8
more robust lib/scripts/process, with explicit script/no_script mode;
 wenzelm parents: 
39581diff
changeset | 351 | var running = true | 
| 
c1e9c6dfeff8
more robust lib/scripts/process, with explicit script/no_script mode;
 wenzelm parents: 
39581diff
changeset | 352 | var count = 10 | 
| 
c1e9c6dfeff8
more robust lib/scripts/process, with explicit script/no_script mode;
 wenzelm parents: 
39581diff
changeset | 353 |       while (running && count > 0) {
 | 
| 
c1e9c6dfeff8
more robust lib/scripts/process, with explicit script/no_script mode;
 wenzelm parents: 
39581diff
changeset | 354 |         if (kill(signal)) {
 | 
| 56862 
e6f7ed54d64e
more robust process kill -- postpone interrupts on current thread;
 wenzelm parents: 
56785diff
changeset | 355 |           Exn.Interrupt.postpone {
 | 
| 
e6f7ed54d64e
more robust process kill -- postpone interrupts on current thread;
 wenzelm parents: 
56785diff
changeset | 356 | Thread.sleep(100) | 
| 
e6f7ed54d64e
more robust process kill -- postpone interrupts on current thread;
 wenzelm parents: 
56785diff
changeset | 357 | count -= 1 | 
| 
e6f7ed54d64e
more robust process kill -- postpone interrupts on current thread;
 wenzelm parents: 
56785diff
changeset | 358 | } | 
| 39583 
c1e9c6dfeff8
more robust lib/scripts/process, with explicit script/no_script mode;
 wenzelm parents: 
39581diff
changeset | 359 | } | 
| 
c1e9c6dfeff8
more robust lib/scripts/process, with explicit script/no_script mode;
 wenzelm parents: 
39581diff
changeset | 360 | else running = false | 
| 
c1e9c6dfeff8
more robust lib/scripts/process, with explicit script/no_script mode;
 wenzelm parents: 
39581diff
changeset | 361 | } | 
| 
c1e9c6dfeff8
more robust lib/scripts/process, with explicit script/no_script mode;
 wenzelm parents: 
39581diff
changeset | 362 | running | 
| 
c1e9c6dfeff8
more robust lib/scripts/process, with explicit script/no_script mode;
 wenzelm parents: 
39581diff
changeset | 363 | } | 
| 
c1e9c6dfeff8
more robust lib/scripts/process, with explicit script/no_script mode;
 wenzelm parents: 
39581diff
changeset | 364 | |
| 
c1e9c6dfeff8
more robust lib/scripts/process, with explicit script/no_script mode;
 wenzelm parents: 
39581diff
changeset | 365 |     def interrupt() { multi_kill("INT") }
 | 
| 
c1e9c6dfeff8
more robust lib/scripts/process, with explicit script/no_script mode;
 wenzelm parents: 
39581diff
changeset | 366 |     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 | 367 | |
| 
c1e9c6dfeff8
more robust lib/scripts/process, with explicit script/no_script mode;
 wenzelm parents: 
39581diff
changeset | 368 | |
| 
c1e9c6dfeff8
more robust lib/scripts/process, with explicit script/no_script mode;
 wenzelm parents: 
39581diff
changeset | 369 | // JVM shutdown hook | 
| 
c1e9c6dfeff8
more robust lib/scripts/process, with explicit script/no_script mode;
 wenzelm parents: 
39581diff
changeset | 370 | |
| 
c1e9c6dfeff8
more robust lib/scripts/process, with explicit script/no_script mode;
 wenzelm parents: 
39581diff
changeset | 371 |     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 | 372 | |
| 
c1e9c6dfeff8
more robust lib/scripts/process, with explicit script/no_script mode;
 wenzelm parents: 
39581diff
changeset | 373 |     try { Runtime.getRuntime.addShutdownHook(shutdown_hook) }
 | 
| 
c1e9c6dfeff8
more robust lib/scripts/process, with explicit script/no_script mode;
 wenzelm parents: 
39581diff
changeset | 374 |     catch { case _: IllegalStateException => }
 | 
| 
c1e9c6dfeff8
more robust lib/scripts/process, with explicit script/no_script mode;
 wenzelm parents: 
39581diff
changeset | 375 | |
| 
c1e9c6dfeff8
more robust lib/scripts/process, with explicit script/no_script mode;
 wenzelm parents: 
39581diff
changeset | 376 | private def cleanup() = | 
| 
c1e9c6dfeff8
more robust lib/scripts/process, with explicit script/no_script mode;
 wenzelm parents: 
39581diff
changeset | 377 |       try { Runtime.getRuntime.removeShutdownHook(shutdown_hook) }
 | 
| 
c1e9c6dfeff8
more robust lib/scripts/process, with explicit script/no_script mode;
 wenzelm parents: 
39581diff
changeset | 378 |       catch { case _: IllegalStateException => }
 | 
| 
c1e9c6dfeff8
more robust lib/scripts/process, with explicit script/no_script mode;
 wenzelm parents: 
39581diff
changeset | 379 | |
| 
c1e9c6dfeff8
more robust lib/scripts/process, with explicit script/no_script mode;
 wenzelm parents: 
39581diff
changeset | 380 | |
| 
c1e9c6dfeff8
more robust lib/scripts/process, with explicit script/no_script mode;
 wenzelm parents: 
39581diff
changeset | 381 | /* result */ | 
| 
c1e9c6dfeff8
more robust lib/scripts/process, with explicit script/no_script mode;
 wenzelm parents: 
39581diff
changeset | 382 | |
| 
c1e9c6dfeff8
more robust lib/scripts/process, with explicit script/no_script mode;
 wenzelm parents: 
39581diff
changeset | 383 |     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 | 384 | } | 
| 
c1e9c6dfeff8
more robust lib/scripts/process, with explicit script/no_script mode;
 wenzelm parents: 
39581diff
changeset | 385 | |
| 
c1e9c6dfeff8
more robust lib/scripts/process, with explicit script/no_script mode;
 wenzelm parents: 
39581diff
changeset | 386 | |
| 56428 
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
 wenzelm parents: 
55876diff
changeset | 387 | /* tmp files */ | 
| 
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
 wenzelm parents: 
55876diff
changeset | 388 | |
| 
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
 wenzelm parents: 
55876diff
changeset | 389 | private def isabelle_tmp_prefix(): JFile = | 
| 
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
 wenzelm parents: 
55876diff
changeset | 390 |   {
 | 
| 
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
 wenzelm parents: 
55876diff
changeset | 391 |     val path = Path.explode("$ISABELLE_TMP_PREFIX")
 | 
| 60013 | 392 | path.file.mkdirs // low-level mkdirs | 
| 56428 
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
 wenzelm parents: 
55876diff
changeset | 393 | platform_file(path) | 
| 
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
 wenzelm parents: 
55876diff
changeset | 394 | } | 
| 
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
 wenzelm parents: 
55876diff
changeset | 395 | |
| 
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
 wenzelm parents: 
55876diff
changeset | 396 | 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: 
55876diff
changeset | 397 |   {
 | 
| 
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
 wenzelm parents: 
55876diff
changeset | 398 | val suffix = if (ext == "") "" else "." + ext | 
| 
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
 wenzelm parents: 
55876diff
changeset | 399 | 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: 
55876diff
changeset | 400 | file.deleteOnExit | 
| 
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
 wenzelm parents: 
55876diff
changeset | 401 | file | 
| 
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
 wenzelm parents: 
55876diff
changeset | 402 | } | 
| 
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
 wenzelm parents: 
55876diff
changeset | 403 | |
| 
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
 wenzelm parents: 
55876diff
changeset | 404 | 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: 
55876diff
changeset | 405 |   {
 | 
| 
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
 wenzelm parents: 
55876diff
changeset | 406 | val file = tmp_file(name, ext) | 
| 
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
 wenzelm parents: 
55876diff
changeset | 407 |     try { body(file) } finally { file.delete }
 | 
| 
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
 wenzelm parents: 
55876diff
changeset | 408 | } | 
| 
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
 wenzelm parents: 
55876diff
changeset | 409 | |
| 
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
 wenzelm parents: 
55876diff
changeset | 410 | |
| 56477 | 411 | /* tmp dirs */ | 
| 412 | ||
| 413 | def rm_tree(root: JFile) | |
| 414 |   {
 | |
| 415 | root.delete | |
| 416 |     if (root.isDirectory) {
 | |
| 417 | Files.walkFileTree(root.toPath, | |
| 418 |         new SimpleFileVisitor[JPath] {
 | |
| 419 | override def visitFile(file: JPath, attrs: BasicFileAttributes): FileVisitResult = | |
| 420 |           {
 | |
| 421 | Files.delete(file) | |
| 422 | FileVisitResult.CONTINUE | |
| 423 | } | |
| 424 | ||
| 425 | override def postVisitDirectory(dir: JPath, e: IOException): FileVisitResult = | |
| 426 |           {
 | |
| 427 |             if (e == null) {
 | |
| 428 | Files.delete(dir) | |
| 429 | FileVisitResult.CONTINUE | |
| 430 | } | |
| 431 | else throw e | |
| 432 | } | |
| 433 | } | |
| 434 | ) | |
| 435 | } | |
| 436 | } | |
| 437 | ||
| 438 | def tmp_dir(name: String): JFile = | |
| 439 |   {
 | |
| 440 | val dir = Files.createTempDirectory(isabelle_tmp_prefix().toPath, name).toFile | |
| 441 | dir.deleteOnExit | |
| 442 | dir | |
| 443 | } | |
| 444 | ||
| 445 | def with_tmp_dir[A](name: String)(body: JFile => A): A = | |
| 446 |   {
 | |
| 447 | val dir = tmp_dir(name) | |
| 448 |     try { body(dir) } finally { rm_tree(dir) }
 | |
| 449 | } | |
| 450 | ||
| 451 | ||
| 39583 
c1e9c6dfeff8
more robust lib/scripts/process, with explicit script/no_script mode;
 wenzelm parents: 
39581diff
changeset | 452 | /* bash */ | 
| 31796 | 453 | |
| 50845 | 454 | final case class Bash_Result(out_lines: List[String], err_lines: List[String], rc: Int) | 
| 455 |   {
 | |
| 456 | def out: String = cat_lines(out_lines) | |
| 457 | def err: String = cat_lines(err_lines) | |
| 458 | def add_err(s: String): Bash_Result = copy(err_lines = err_lines ::: List(s)) | |
| 52063 
fd533ac64390
timeout counts as regular error, with rc = 1 (cf. special Exn.Interrupt vs. regular TimeLimit.TimeOut in Isabelle/ML);
 wenzelm parents: 
51966diff
changeset | 459 | def set_rc(i: Int): Bash_Result = copy(rc = i) | 
| 56871 
d06ff36b4fa7
expose interrupts more like ML version, but not in managed bash processes of Build;
 wenzelm parents: 
56862diff
changeset | 460 | |
| 
d06ff36b4fa7
expose interrupts more like ML version, but not in managed bash processes of Build;
 wenzelm parents: 
56862diff
changeset | 461 | def check_error: Bash_Result = | 
| 
d06ff36b4fa7
expose interrupts more like ML version, but not in managed bash processes of Build;
 wenzelm parents: 
56862diff
changeset | 462 | if (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: 
56862diff
changeset | 463 | else if (rc != 0) error(err) | 
| 
d06ff36b4fa7
expose interrupts more like ML version, but not in managed bash processes of Build;
 wenzelm parents: 
56862diff
changeset | 464 | else this | 
| 50845 | 465 | } | 
| 466 | ||
| 56666 
229309cbc508
avoid accidental use of scala.language.reflectiveCalls;
 wenzelm parents: 
56661diff
changeset | 467 | private class Limited_Progress(proc: Managed_Process, progress_limit: Option[Long]) | 
| 
229309cbc508
avoid accidental use of scala.language.reflectiveCalls;
 wenzelm parents: 
56661diff
changeset | 468 |   {
 | 
| 
229309cbc508
avoid accidental use of scala.language.reflectiveCalls;
 wenzelm parents: 
56661diff
changeset | 469 | private var count = 0L | 
| 
229309cbc508
avoid accidental use of scala.language.reflectiveCalls;
 wenzelm parents: 
56661diff
changeset | 470 |     def apply(progress: String => Unit)(line: String): Unit = synchronized {
 | 
| 
229309cbc508
avoid accidental use of scala.language.reflectiveCalls;
 wenzelm parents: 
56661diff
changeset | 471 | progress(line) | 
| 
229309cbc508
avoid accidental use of scala.language.reflectiveCalls;
 wenzelm parents: 
56661diff
changeset | 472 | count = count + line.length + 1 | 
| 
229309cbc508
avoid accidental use of scala.language.reflectiveCalls;
 wenzelm parents: 
56661diff
changeset | 473 |       progress_limit match {
 | 
| 
229309cbc508
avoid accidental use of scala.language.reflectiveCalls;
 wenzelm parents: 
56661diff
changeset | 474 | case Some(limit) if count > limit => proc.terminate | 
| 
229309cbc508
avoid accidental use of scala.language.reflectiveCalls;
 wenzelm parents: 
56661diff
changeset | 475 | case _ => | 
| 
229309cbc508
avoid accidental use of scala.language.reflectiveCalls;
 wenzelm parents: 
56661diff
changeset | 476 | } | 
| 
229309cbc508
avoid accidental use of scala.language.reflectiveCalls;
 wenzelm parents: 
56661diff
changeset | 477 | } | 
| 
229309cbc508
avoid accidental use of scala.language.reflectiveCalls;
 wenzelm parents: 
56661diff
changeset | 478 | } | 
| 
229309cbc508
avoid accidental use of scala.language.reflectiveCalls;
 wenzelm parents: 
56661diff
changeset | 479 | |
| 50845 | 480 | 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: 
51820diff
changeset | 481 | 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: 
51820diff
changeset | 482 | progress_stderr: String => Unit = (_: String) => (), | 
| 56871 
d06ff36b4fa7
expose interrupts more like ML version, but not in managed bash processes of Build;
 wenzelm parents: 
56862diff
changeset | 483 | progress_limit: Option[Long] = None, | 
| 
d06ff36b4fa7
expose interrupts more like ML version, but not in managed bash processes of Build;
 wenzelm parents: 
56862diff
changeset | 484 | strict: Boolean = true): Bash_Result = | 
| 34198 
ff5486262cd6
moved Library.decode_permissive_utf8 to Isabelle_System;
 wenzelm parents: 
34196diff
changeset | 485 |   {
 | 
| 56428 
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
 wenzelm parents: 
55876diff
changeset | 486 |     with_tmp_file("isabelle_script") { script_file =>
 | 
| 48411 
5b3440850d36
more abstract file system operations in Scala, corresponding to ML version;
 wenzelm parents: 
48409diff
changeset | 487 | File.write(script_file, script) | 
| 50715 
8cfd585b9162
prefer old graph browser in Isabelle/jEdit, which still produces better layout;
 wenzelm parents: 
50684diff
changeset | 488 | val proc = new Managed_Process(cwd, env, false, "bash", posix_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: 
51820diff
changeset | 489 | proc.stdin.close | 
| 39581 
430ff865089b
refined Isabelle_System.bash_output: pass pid via stdout, separate stdout/stderr;
 wenzelm parents: 
39576diff
changeset | 490 | |
| 56666 
229309cbc508
avoid accidental use of scala.language.reflectiveCalls;
 wenzelm parents: 
56661diff
changeset | 491 | val limited = new Limited_Progress(proc, progress_limit) | 
| 50845 | 492 | 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: 
51820diff
changeset | 493 |         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: 
51820diff
changeset | 494 | 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: 
51820diff
changeset | 495 | } | 
| 50845 | 496 | 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: 
51820diff
changeset | 497 |         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: 
51820diff
changeset | 498 | 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: 
51820diff
changeset | 499 | } | 
| 34198 
ff5486262cd6
moved Library.decode_permissive_utf8 to Isabelle_System;
 wenzelm parents: 
34196diff
changeset | 500 | |
| 39581 
430ff865089b
refined Isabelle_System.bash_output: pass pid via stdout, separate stdout/stderr;
 wenzelm parents: 
39576diff
changeset | 501 | val rc = | 
| 39583 
c1e9c6dfeff8
more robust lib/scripts/process, with explicit script/no_script mode;
 wenzelm parents: 
39581diff
changeset | 502 |         try { proc.join }
 | 
| 56667 
65e84b0ef974
more abstract Exn.Interrupt and POSIX return code;
 wenzelm parents: 
56666diff
changeset | 503 |         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: 
56862diff
changeset | 504 | 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: 
56862diff
changeset | 505 | |
| 50845 | 506 | Bash_Result(stdout.join, stderr.join, rc) | 
| 34198 
ff5486262cd6
moved Library.decode_permissive_utf8 to Isabelle_System;
 wenzelm parents: 
34196diff
changeset | 507 | } | 
| 
ff5486262cd6
moved Library.decode_permissive_utf8 to Isabelle_System;
 wenzelm parents: 
34196diff
changeset | 508 | } | 
| 
ff5486262cd6
moved Library.decode_permissive_utf8 to Isabelle_System;
 wenzelm parents: 
34196diff
changeset | 509 | |
| 50845 | 510 | def bash(script: String): Bash_Result = bash_env(null, null, script) | 
| 48353 
bcce872202b3
support external processes with explicit environment;
 wenzelm parents: 
48278diff
changeset | 511 | |
| 39583 
c1e9c6dfeff8
more robust lib/scripts/process, with explicit script/no_script mode;
 wenzelm parents: 
39581diff
changeset | 512 | |
| 
c1e9c6dfeff8
more robust lib/scripts/process, with explicit script/no_script mode;
 wenzelm parents: 
39581diff
changeset | 513 | /* system tools */ | 
| 
c1e9c6dfeff8
more robust lib/scripts/process, with explicit script/no_script mode;
 wenzelm parents: 
39581diff
changeset | 514 | |
| 31818 
f698f76a3713
builtin isabelle_tool for ML and Scala -- avoids excessive shell script (especially important for Cygwin);
 wenzelm parents: 
31803diff
changeset | 515 | def isabelle_tool(name: String, args: String*): (String, Int) = | 
| 31498 | 516 |   {
 | 
| 43669 | 517 |     Path.split(getenv_strict("ISABELLE_TOOLS")).find { dir =>
 | 
| 48373 | 518 | val file = (dir + Path.basic(name)).file | 
| 42124 | 519 |       try {
 | 
| 520 | file.isFile && file.canRead && file.canExecute && | |
| 521 |           !name.endsWith("~") && !name.endsWith(".orig")
 | |
| 522 | } | |
| 31818 
f698f76a3713
builtin isabelle_tool for ML and Scala -- avoids excessive shell script (especially important for Cygwin);
 wenzelm parents: 
31803diff
changeset | 523 |       catch { case _: SecurityException => false }
 | 
| 34200 | 524 |     } match {
 | 
| 31818 
f698f76a3713
builtin isabelle_tool for ML and Scala -- avoids excessive shell script (especially important for Cygwin);
 wenzelm parents: 
31803diff
changeset | 525 | case Some(dir) => | 
| 43669 | 526 | val file = standard_path(dir + Path.basic(name)) | 
| 55555 | 527 | 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: 
31803diff
changeset | 528 |       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 | 529 | } | 
| 28063 | 530 | } | 
| 531 | ||
| 54690 | 532 | def open(arg: String): Unit = | 
| 533 |     bash("exec \"$ISABELLE_OPEN\" '" + arg + "' >/dev/null 2>/dev/null &")
 | |
| 534 | ||
| 535 | def pdf_viewer(arg: Path): Unit = | |
| 536 |     bash("exec \"$PDF_VIEWER\" '" + standard_path(arg) + "' >/dev/null 2>/dev/null &")
 | |
| 537 | ||
| 56785 | 538 | def hg(cmd_line: String, cwd: Path = Path.current): Bash_Result = | 
| 539 |     bash("cd " + shell_path(cwd) + " && \"${HG:-hg}\" " + cmd_line)
 | |
| 28063 | 540 | |
| 32450 | 541 | |
| 31796 | 542 | /** Isabelle resources **/ | 
| 543 | ||
| 32328 | 544 | /* components */ | 
| 545 | ||
| 43669 | 546 | def components(): List[Path] = | 
| 547 |     Path.split(getenv_strict("ISABELLE_COMPONENTS"))
 | |
| 32328 | 548 | |
| 549 | ||
| 50403 
87868964733c
more uniform default logic, using settings, options, args etc.;
 wenzelm parents: 
50298diff
changeset | 550 | /* logic images */ | 
| 29152 | 551 | |
| 48503 | 552 | def find_logics_dirs(): List[Path] = | 
| 31498 | 553 |   {
 | 
| 48503 | 554 |     val ml_ident = Path.explode("$ML_IDENTIFIER").expand
 | 
| 555 |     Path.split(getenv_strict("ISABELLE_PATH")).map(_ + ml_ident)
 | |
| 29152 | 556 | } | 
| 29570 | 557 | |
| 48503 | 558 | def find_logics(): List[String] = | 
| 559 |     (for {
 | |
| 560 | dir <- find_logics_dirs() | |
| 561 | files = dir.file.listFiles() if files != null | |
| 562 | file <- files.toList if file.isFile } yield file.getName).sorted | |
| 563 | ||
| 50403 
87868964733c
more uniform default logic, using settings, options, args etc.;
 wenzelm parents: 
50298diff
changeset | 564 | def default_logic(args: String*): String = | 
| 
87868964733c
more uniform default logic, using settings, options, args etc.;
 wenzelm parents: 
50298diff
changeset | 565 |   {
 | 
| 
87868964733c
more uniform default logic, using settings, options, args etc.;
 wenzelm parents: 
50298diff
changeset | 566 |     args.find(_ != "") match {
 | 
| 
87868964733c
more uniform default logic, using settings, options, args etc.;
 wenzelm parents: 
50298diff
changeset | 567 | case Some(logic) => logic | 
| 
87868964733c
more uniform default logic, using settings, options, args etc.;
 wenzelm parents: 
50298diff
changeset | 568 |       case None => Isabelle_System.getenv_strict("ISABELLE_LOGIC")
 | 
| 
87868964733c
more uniform default logic, using settings, options, args etc.;
 wenzelm parents: 
50298diff
changeset | 569 | } | 
| 
87868964733c
more uniform default logic, using settings, options, args etc.;
 wenzelm parents: 
50298diff
changeset | 570 | } | 
| 27919 | 571 | } |