| author | wenzelm | 
| Sat, 17 Feb 2018 19:37:18 +0100 | |
| changeset 67647 | 27f3dceb5a70 | 
| parent 67586 | 8b19a8a7f029 | 
| child 67835 | c8e4ee2b5482 | 
| 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 | |
| 61281 | 11 | import java.io.{File => JFile, IOException, BufferedReader, InputStreamReader}
 | 
| 56477 | 12 | import java.nio.file.{Path => JPath, Files, SimpleFileVisitor, FileVisitResult}
 | 
| 13 | import java.nio.file.attribute.BasicFileAttributes | |
| 27936 | 14 | |
| 61281 | 15 | import scala.collection.mutable | 
| 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 |   {
 | 
| 53582 | 24 |     val java_home = System.getProperty("java.home", "")
 | 
| 50652 
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 | |
| 61291 | 32 | def bootstrap_directory( | 
| 33 | preference: String, envar: String, property: String, description: String): String = | |
| 50652 
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
 wenzelm parents: 
50651diff
changeset | 34 |   {
 | 
| 61291 | 35 | def check(s: String): Option[String] = | 
| 36 | if (s != null && s != "") Some(s) else None | |
| 50652 
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
 wenzelm parents: 
50651diff
changeset | 37 | |
| 61291 | 38 | val value = | 
| 39 | check(preference) orElse // explicit argument | |
| 40 | check(System.getenv(envar)) orElse // e.g. inherited from running isabelle tool | |
| 41 | check(System.getProperty(property)) getOrElse // e.g. via JVM application boot process | |
| 42 |       error("Unknown " + description + " directory")
 | |
| 50652 
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
 wenzelm parents: 
50651diff
changeset | 43 | |
| 61291 | 44 | if ((new JFile(value)).isDirectory) value | 
| 45 |     else error("Bad " + description + " directory " + quote(value))
 | |
| 50652 
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 | |
| 62610 
4c89504c76fb
more uniform signature for various process invocations;
 wenzelm parents: 
62602diff
changeset | 54 | def settings(): Map[String, String] = | 
| 50652 
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 | 
| 62610 
4c89504c76fb
more uniform signature for various process invocations;
 wenzelm parents: 
62602diff
changeset | 57 | _settings.get | 
| 50652 
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
 wenzelm parents: 
50651diff
changeset | 58 | } | 
| 31796 | 59 | |
| 61293 
876e7eae22be
clarified ISABELLE_ROOT (platform path) vs. ISABELLE_HOME (standard path);
 wenzelm parents: 
61291diff
changeset | 60 |   def init(isabelle_root: String = "", cygwin_root: String = ""): Unit = synchronized {
 | 
| 50652 
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
 wenzelm parents: 
50651diff
changeset | 61 |     if (_settings.isEmpty) {
 | 
| 43661 
39fdbd814c7f
quasi-static Isabelle_System -- reduced tendency towards "functorial style";
 wenzelm parents: 
43660diff
changeset | 62 | import scala.collection.JavaConversions._ | 
| 37013 
641923374eba
Isabelle_System: allow explicit isabelle_home argument;
 wenzelm parents: 
36991diff
changeset | 63 | |
| 61293 
876e7eae22be
clarified ISABELLE_ROOT (platform path) vs. ISABELLE_HOME (standard path);
 wenzelm parents: 
61291diff
changeset | 64 | val isabelle_root1 = | 
| 
876e7eae22be
clarified ISABELLE_ROOT (platform path) vs. ISABELLE_HOME (standard path);
 wenzelm parents: 
61291diff
changeset | 65 | bootstrap_directory(isabelle_root, "ISABELLE_ROOT", "isabelle.root", "Isabelle root") | 
| 61291 | 66 | |
| 67 | val cygwin_root1 = | |
| 68 | if (Platform.is_windows) | |
| 69 | bootstrap_directory(cygwin_root, "CYGWIN_ROOT", "cygwin.root", "Cygwin root") | |
| 70 | else "" | |
| 71 | ||
| 61295 | 72 | if (Platform.is_windows) Cygwin.init(isabelle_root1, cygwin_root1) | 
| 73 | ||
| 51820 | 74 | def set_cygwin_root() | 
| 43661 
39fdbd814c7f
quasi-static Isabelle_System -- reduced tendency towards "functorial style";
 wenzelm parents: 
43660diff
changeset | 75 |       {
 | 
| 51820 | 76 | if (Platform.is_windows) | 
| 61291 | 77 |           _settings = Some(_settings.getOrElse(Map.empty) + ("CYGWIN_ROOT" -> cygwin_root1))
 | 
| 51820 | 78 | } | 
| 47725 
447b635bcea5
cold-start HOME is user.home, in accordance with Cygwin-Terminal.bat;
 wenzelm parents: 
47674diff
changeset | 79 | |
| 51820 | 80 | 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 | 81 | |
| 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 | 82 | 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 | 83 | 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 | 84 | 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 | 85 | |
| 57411 
9444489766a1
sane environment defaults for Mac OS X, based on former App1/script -- e.g. relevant for MacTeX PATH;
 wenzelm parents: 
56871diff
changeset | 86 | 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 | 87 |       {
 | 
| 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 | 88 | 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 | 89 |         {
 | 
| 61291 | 90 |           val temp = if (Platform.is_windows) System.getenv("TEMP") else null
 | 
| 58640 
37f852399a32
prefer original TEMP from Windows, e.g. relevant for Isabelle distribution within read-only directory (due to its bundled Cygwin and /tmp inside of it);
 wenzelm parents: 
57411diff
changeset | 91 |           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 | 92 | } | 
| 57411 
9444489766a1
sane environment defaults for Mac OS X, based on former App1/script -- e.g. relevant for MacTeX PATH;
 wenzelm parents: 
56871diff
changeset | 93 |         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 | 94 |         val isabelle_app = System.getProperty("isabelle.app", "")
 | 
| 51820 | 95 | |
| 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 | 96 | 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 | 97 | default( | 
| 60992 | 98 |             default(sys.env + ("ISABELLE_JDK_HOME" -> File.standard_path(jdk_home())),
 | 
| 60215 | 99 | "TEMP_WINDOWS" -> temp_windows), | 
| 100 | "HOME" -> user_home), | |
| 101 | "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 | 102 | } | 
| 29177 | 103 | |
| 51820 | 104 | val settings = | 
| 56428 
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
 wenzelm parents: 
55876diff
changeset | 105 |       {
 | 
| 
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
 wenzelm parents: 
55876diff
changeset | 106 |         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 | 107 | dump.deleteOnExit | 
| 
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
 wenzelm parents: 
55876diff
changeset | 108 |         try {
 | 
| 61293 
876e7eae22be
clarified ISABELLE_ROOT (platform path) vs. ISABELLE_HOME (standard path);
 wenzelm parents: 
61291diff
changeset | 109 | val cmd1 = | 
| 64454 | 110 | if (Platform.is_windows) | 
| 111 | List(cygwin_root1 + "\\bin\\bash", "-l", | |
| 112 | File.standard_path(isabelle_root1 + "\\bin\\isabelle")) | |
| 113 | else | |
| 114 | List(isabelle_root1 + "/bin/isabelle") | |
| 115 |           val cmd = cmd1 ::: List("getenv", "-d", dump.toString)
 | |
| 61293 
876e7eae22be
clarified ISABELLE_ROOT (platform path) vs. ISABELLE_HOME (standard path);
 wenzelm parents: 
61291diff
changeset | 116 | |
| 64454 | 117 | val (output, rc) = process_output(process(cmd, env = env, redirect = true)) | 
| 51820 | 118 | if (rc != 0) error(output) | 
| 56477 | 119 | |
| 51820 | 120 | val entries = | 
| 62610 
4c89504c76fb
more uniform signature for various process invocations;
 wenzelm parents: 
62602diff
changeset | 121 |             (for (entry <- File.read(dump).split("\u0000") if entry != "") yield {
 | 
| 51820 | 122 |               val i = entry.indexOf('=')
 | 
| 60215 | 123 | if (i <= 0) entry -> "" | 
| 124 | else entry.substring(0, i) -> entry.substring(i + 1) | |
| 51820 | 125 | }).toMap | 
| 126 |           entries + ("PATH" -> entries("PATH_JVM")) - "PATH_JVM"
 | |
| 127 | } | |
| 56428 
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
 wenzelm parents: 
55876diff
changeset | 128 |         finally { dump.delete }
 | 
| 
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
 wenzelm parents: 
55876diff
changeset | 129 | } | 
| 50652 
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
 wenzelm parents: 
50651diff
changeset | 130 | _settings = Some(settings) | 
| 51820 | 131 | set_cygwin_root() | 
| 43661 
39fdbd814c7f
quasi-static Isabelle_System -- reduced tendency towards "functorial style";
 wenzelm parents: 
43660diff
changeset | 132 | } | 
| 27953 | 133 | } | 
| 27919 | 134 | |
| 31796 | 135 | |
| 136 | /* getenv */ | |
| 137 | ||
| 64228 
b46969a851a9
expand relatively to given environment, notably remote HOME;
 wenzelm parents: 
64220diff
changeset | 138 | def getenv(name: String, env: Map[String, String] = settings()): String = | 
| 
b46969a851a9
expand relatively to given environment, notably remote HOME;
 wenzelm parents: 
64220diff
changeset | 139 | env.getOrElse(name, "") | 
| 31498 | 140 | |
| 64228 
b46969a851a9
expand relatively to given environment, notably remote HOME;
 wenzelm parents: 
64220diff
changeset | 141 | def getenv_strict(name: String, env: Map[String, String] = settings()): String = | 
| 65717 | 142 | proper_string(getenv(name, env)) getOrElse | 
| 143 |       error("Undefined Isabelle environment variable: " + quote(name))
 | |
| 27919 | 144 | |
| 61291 | 145 |   def cygwin_root(): String = getenv_strict("CYGWIN_ROOT")
 | 
| 51820 | 146 | |
| 31796 | 147 | |
| 54039 | 148 | |
| 43606 | 149 | /** file-system operations **/ | 
| 31796 | 150 | |
| 64189 | 151 | /* directories */ | 
| 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 | 152 | |
| 60013 | 153 | 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 | 154 |     if (!path.is_dir) {
 | 
| 62545 
8ebffdaf2ce2
Bash.process always uses a closed script instead of an open argument list, for extra robustness on Windows, where quoting is not well-defined;
 wenzelm parents: 
62543diff
changeset | 155 |       bash("perl -e \"use File::Path make_path; make_path('" + File.standard_path(path) + "');\"")
 | 
| 60988 | 156 |       if (!path.is_dir) error("Failed to create directory: " + quote(File.platform_path(path)))
 | 
| 60263 
2a5dbad75355
more portable mkdirs via perl, e.g. relevant for Windows UNC paths (network shares);
 wenzelm parents: 
60215diff
changeset | 157 | } | 
| 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 | 158 | |
| 64189 | 159 | def copy_dir(dir1: Path, dir2: Path): Unit = | 
| 160 |     bash("cp -a " + File.bash_path(dir1) + " " + File.bash_path(dir2)).check
 | |
| 161 | ||
| 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 | 162 | |
| 56428 
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
 wenzelm parents: 
55876diff
changeset | 163 | /* tmp files */ | 
| 
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
 wenzelm parents: 
55876diff
changeset | 164 | |
| 
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
 wenzelm parents: 
55876diff
changeset | 165 | 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 | 166 |   {
 | 
| 
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
 wenzelm parents: 
55876diff
changeset | 167 |     val path = Path.explode("$ISABELLE_TMP_PREFIX")
 | 
| 60013 | 168 | path.file.mkdirs // low-level mkdirs | 
| 60988 | 169 | File.platform_file(path) | 
| 56428 
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
 wenzelm parents: 
55876diff
changeset | 170 | } | 
| 
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
 wenzelm parents: 
55876diff
changeset | 171 | |
| 63687 | 172 | def tmp_file(name: String, ext: String = ""): JFile = | 
| 56428 
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
 wenzelm parents: 
55876diff
changeset | 173 |   {
 | 
| 
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
 wenzelm parents: 
55876diff
changeset | 174 | 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 | 175 | 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 | 176 | file.deleteOnExit | 
| 
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
 wenzelm parents: 
55876diff
changeset | 177 | file | 
| 
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
 wenzelm parents: 
55876diff
changeset | 178 | } | 
| 
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
 wenzelm parents: 
55876diff
changeset | 179 | |
| 64220 | 180 | def with_tmp_file[A](name: String, ext: String = "")(body: Path => A): A = | 
| 56428 
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
 wenzelm parents: 
55876diff
changeset | 181 |   {
 | 
| 
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
 wenzelm parents: 
55876diff
changeset | 182 | val file = tmp_file(name, ext) | 
| 64220 | 183 |     try { body(File.path(file)) } finally { file.delete }
 | 
| 56428 
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
 wenzelm parents: 
55876diff
changeset | 184 | } | 
| 
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
 wenzelm parents: 
55876diff
changeset | 185 | |
| 
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
 wenzelm parents: 
55876diff
changeset | 186 | |
| 56477 | 187 | /* tmp dirs */ | 
| 188 | ||
| 64213 | 189 | def rm_tree(root: Path): Unit = rm_tree(root.file) | 
| 190 | ||
| 56477 | 191 | def rm_tree(root: JFile) | 
| 192 |   {
 | |
| 193 | root.delete | |
| 194 |     if (root.isDirectory) {
 | |
| 195 | Files.walkFileTree(root.toPath, | |
| 196 |         new SimpleFileVisitor[JPath] {
 | |
| 197 | override def visitFile(file: JPath, attrs: BasicFileAttributes): FileVisitResult = | |
| 198 |           {
 | |
| 65090 
fc8bb68a7439
more robust: tmp files might get deleted concurrently in ML vs. Scala process;
 wenzelm parents: 
65083diff
changeset | 199 | Files.deleteIfExists(file) | 
| 56477 | 200 | FileVisitResult.CONTINUE | 
| 201 | } | |
| 202 | ||
| 203 | override def postVisitDirectory(dir: JPath, e: IOException): FileVisitResult = | |
| 204 |           {
 | |
| 205 |             if (e == null) {
 | |
| 65090 
fc8bb68a7439
more robust: tmp files might get deleted concurrently in ML vs. Scala process;
 wenzelm parents: 
65083diff
changeset | 206 | Files.deleteIfExists(dir) | 
| 56477 | 207 | FileVisitResult.CONTINUE | 
| 208 | } | |
| 209 | else throw e | |
| 210 | } | |
| 211 | } | |
| 212 | ) | |
| 213 | } | |
| 214 | } | |
| 215 | ||
| 216 | def tmp_dir(name: String): JFile = | |
| 217 |   {
 | |
| 218 | val dir = Files.createTempDirectory(isabelle_tmp_prefix().toPath, name).toFile | |
| 219 | dir.deleteOnExit | |
| 220 | dir | |
| 221 | } | |
| 222 | ||
| 64220 | 223 | def with_tmp_dir[A](name: String)(body: Path => A): A = | 
| 56477 | 224 |   {
 | 
| 225 | val dir = tmp_dir(name) | |
| 64220 | 226 |     try { body(File.path(dir)) } finally { rm_tree(dir) }
 | 
| 56477 | 227 | } | 
| 228 | ||
| 229 | ||
| 65793 | 230 | /* quasi-atomic update of directory */ | 
| 231 | ||
| 232 | def update_directory(dir: Path, f: Path => Unit) | |
| 233 |   {
 | |
| 234 |     val new_dir = dir.ext("new")
 | |
| 235 |     val old_dir = dir.ext("old")
 | |
| 236 | ||
| 237 | rm_tree(new_dir) | |
| 238 | rm_tree(old_dir) | |
| 239 | ||
| 240 | f(new_dir) | |
| 241 | ||
| 242 | if (dir.is_dir) File.move(dir, old_dir) | |
| 243 | File.move(new_dir, dir) | |
| 244 | rm_tree(old_dir) | |
| 245 | } | |
| 246 | ||
| 247 | ||
| 62613 | 248 | |
| 249 | /** external processes **/ | |
| 250 | ||
| 251 | /* raw process */ | |
| 252 | ||
| 253 | def process(command_line: List[String], | |
| 254 | cwd: JFile = null, | |
| 255 | env: Map[String, String] = settings(), | |
| 256 | redirect: Boolean = false): Process = | |
| 257 |   {
 | |
| 258 | val proc = new ProcessBuilder | |
| 259 | proc.command(command_line:_*) // fragile on Windows | |
| 260 | if (cwd != null) proc.directory(cwd) | |
| 64021 
1e23caac8757
basic setup for Admin/build_history -- outside of Isabelle environment;
 wenzelm parents: 
63687diff
changeset | 261 |     if (env != null) {
 | 
| 
1e23caac8757
basic setup for Admin/build_history -- outside of Isabelle environment;
 wenzelm parents: 
63687diff
changeset | 262 | proc.environment.clear | 
| 
1e23caac8757
basic setup for Admin/build_history -- outside of Isabelle environment;
 wenzelm parents: 
63687diff
changeset | 263 | for ((x, y) <- env) proc.environment.put(x, y) | 
| 
1e23caac8757
basic setup for Admin/build_history -- outside of Isabelle environment;
 wenzelm parents: 
63687diff
changeset | 264 | } | 
| 62613 | 265 | proc.redirectErrorStream(redirect) | 
| 266 | proc.start | |
| 267 | } | |
| 268 | ||
| 269 | def process_output(proc: Process): (String, Int) = | |
| 270 |   {
 | |
| 271 | proc.getOutputStream.close | |
| 272 | ||
| 273 | val output = File.read_stream(proc.getInputStream) | |
| 274 | val rc = | |
| 275 |       try { proc.waitFor }
 | |
| 276 |       finally {
 | |
| 277 | proc.getInputStream.close | |
| 278 | proc.getErrorStream.close | |
| 279 | proc.destroy | |
| 280 | Thread.interrupted | |
| 281 | } | |
| 282 | (output, rc) | |
| 283 | } | |
| 61025 | 284 | |
| 285 | def kill(signal: String, group_pid: String): (String, Int) = | |
| 286 |   {
 | |
| 287 | val bash = | |
| 61291 | 288 | if (Platform.is_windows) List(cygwin_root() + "\\bin\\bash.exe") | 
| 61025 | 289 |       else List("/usr/bin/env", "bash")
 | 
| 62610 
4c89504c76fb
more uniform signature for various process invocations;
 wenzelm parents: 
62602diff
changeset | 290 |     process_output(process(bash ::: List("-c", "kill -" + signal + " -" + group_pid)))
 | 
| 61025 | 291 | } | 
| 292 | ||
| 293 | ||
| 62613 | 294 | /* GNU bash */ | 
| 31796 | 295 | |
| 62610 
4c89504c76fb
more uniform signature for various process invocations;
 wenzelm parents: 
62602diff
changeset | 296 | def bash(script: String, | 
| 
4c89504c76fb
more uniform signature for various process invocations;
 wenzelm parents: 
62602diff
changeset | 297 | cwd: JFile = null, | 
| 
4c89504c76fb
more uniform signature for various process invocations;
 wenzelm parents: 
62602diff
changeset | 298 | env: Map[String, String] = settings(), | 
| 
4c89504c76fb
more uniform signature for various process invocations;
 wenzelm parents: 
62602diff
changeset | 299 | redirect: Boolean = false, | 
| 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 | 300 | 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 | 301 | 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 | 302 | progress_limit: Option[Long] = None, | 
| 62602 | 303 | strict: Boolean = true, | 
| 304 | cleanup: () => Unit = () => ()): Process_Result = | |
| 34198 
ff5486262cd6
moved Library.decode_permissive_utf8 to Isabelle_System;
 wenzelm parents: 
34196diff
changeset | 305 |   {
 | 
| 62610 
4c89504c76fb
more uniform signature for various process invocations;
 wenzelm parents: 
62602diff
changeset | 306 | Bash.process(script, cwd = cwd, env = env, redirect = redirect, cleanup = cleanup). | 
| 62602 | 307 | result(progress_stdout, progress_stderr, progress_limit, strict) | 
| 34198 
ff5486262cd6
moved Library.decode_permissive_utf8 to Isabelle_System;
 wenzelm parents: 
34196diff
changeset | 308 | } | 
| 
ff5486262cd6
moved Library.decode_permissive_utf8 to Isabelle_System;
 wenzelm parents: 
34196diff
changeset | 309 | |
| 64935 
9437a117408b
insist in proper GNU tar, to avoid subtle semantic differences;
 wenzelm parents: 
64657diff
changeset | 310 | private lazy val gnutar_check: Boolean = | 
| 
9437a117408b
insist in proper GNU tar, to avoid subtle semantic differences;
 wenzelm parents: 
64657diff
changeset | 311 |     try { bash("tar --version").check.out.containsSlice("GNU tar") || error("") }
 | 
| 
9437a117408b
insist in proper GNU tar, to avoid subtle semantic differences;
 wenzelm parents: 
64657diff
changeset | 312 |     catch { case ERROR(_) => false }
 | 
| 
9437a117408b
insist in proper GNU tar, to avoid subtle semantic differences;
 wenzelm parents: 
64657diff
changeset | 313 | |
| 
9437a117408b
insist in proper GNU tar, to avoid subtle semantic differences;
 wenzelm parents: 
64657diff
changeset | 314 | def gnutar(args: String, cwd: JFile = null, redirect: Boolean = false): Process_Result = | 
| 
9437a117408b
insist in proper GNU tar, to avoid subtle semantic differences;
 wenzelm parents: 
64657diff
changeset | 315 |   {
 | 
| 
9437a117408b
insist in proper GNU tar, to avoid subtle semantic differences;
 wenzelm parents: 
64657diff
changeset | 316 |     if (gnutar_check) bash("tar " + args, cwd = cwd, redirect = redirect)
 | 
| 
9437a117408b
insist in proper GNU tar, to avoid subtle semantic differences;
 wenzelm parents: 
64657diff
changeset | 317 |     else error("Expected to find GNU tar executable")
 | 
| 
9437a117408b
insist in proper GNU tar, to avoid subtle semantic differences;
 wenzelm parents: 
64657diff
changeset | 318 | } | 
| 
9437a117408b
insist in proper GNU tar, to avoid subtle semantic differences;
 wenzelm parents: 
64657diff
changeset | 319 | |
| 64152 | 320 |   def hostname(): String = bash("hostname -s").check.out
 | 
| 64139 | 321 | |
| 54690 | 322 | def open(arg: String): Unit = | 
| 64304 | 323 |     bash("exec \"$ISABELLE_OPEN\" " + Bash.string(arg) + " >/dev/null 2>/dev/null &")
 | 
| 54690 | 324 | |
| 325 | def pdf_viewer(arg: Path): Unit = | |
| 62616 | 326 |     bash("exec \"$PDF_VIEWER\" " + File.bash_path(arg) + " >/dev/null 2>/dev/null &")
 | 
| 54690 | 327 | |
| 65916 | 328 | def export_isabelle_identifier(isabelle_identifier: String): String = | 
| 329 | if (isabelle_identifier == "") "" | |
| 330 | else "export ISABELLE_IDENTIFIER=" + Bash.string(isabelle_identifier) + "\n" | |
| 331 | ||
| 32450 | 332 | |
| 62400 | 333 | |
| 31796 | 334 | /** Isabelle resources **/ | 
| 335 | ||
| 64161 | 336 | /* repository clone with Admin */ | 
| 337 | ||
| 338 |   def admin(): Boolean = Path.explode("~~/Admin").is_dir
 | |
| 339 | ||
| 340 | ||
| 32328 | 341 | /* components */ | 
| 342 | ||
| 43669 | 343 | def components(): List[Path] = | 
| 344 |     Path.split(getenv_strict("ISABELLE_COMPONENTS"))
 | |
| 32328 | 345 | |
| 346 | ||
| 65083 | 347 | /* fonts */ | 
| 348 | ||
| 349 | def fonts(html: Boolean = false): List[Path] = | |
| 350 |   {
 | |
| 351 | val variables = | |
| 352 |       if (html) List("ISABELLE_FONTS", "ISABELLE_FONTS_HTML") else List("ISABELLE_FONTS")
 | |
| 353 |     for {
 | |
| 354 | variable <- variables | |
| 355 | path <- Path.split(Isabelle_System.getenv_strict(variable)) | |
| 356 | } yield path | |
| 357 | } | |
| 358 | ||
| 359 | ||
| 62633 | 360 | /* default logic */ | 
| 48503 | 361 | |
| 50403 
87868964733c
more uniform default logic, using settings, options, args etc.;
 wenzelm parents: 
50298diff
changeset | 362 | def default_logic(args: String*): String = | 
| 
87868964733c
more uniform default logic, using settings, options, args etc.;
 wenzelm parents: 
50298diff
changeset | 363 |   {
 | 
| 
87868964733c
more uniform default logic, using settings, options, args etc.;
 wenzelm parents: 
50298diff
changeset | 364 |     args.find(_ != "") match {
 | 
| 
87868964733c
more uniform default logic, using settings, options, args etc.;
 wenzelm parents: 
50298diff
changeset | 365 | case Some(logic) => logic | 
| 
87868964733c
more uniform default logic, using settings, options, args etc.;
 wenzelm parents: 
50298diff
changeset | 366 |       case None => Isabelle_System.getenv_strict("ISABELLE_LOGIC")
 | 
| 
87868964733c
more uniform default logic, using settings, options, args etc.;
 wenzelm parents: 
50298diff
changeset | 367 | } | 
| 
87868964733c
more uniform default logic, using settings, options, args etc.;
 wenzelm parents: 
50298diff
changeset | 368 | } | 
| 27919 | 369 | } |