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