author | wenzelm |
Wed, 28 Nov 2018 15:11:21 +0100 | |
changeset 69364 | 91dbade9a5fa |
parent 69355 | cdc2de88d657 |
child 69425 | 94f6ca69d983 |
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:
43670
diff
changeset
|
4 |
Fundamental Isabelle system environment: quasi-static module with |
5130dfe1b7be
simplified Symbol based on lazy Symbol.Interpretation -- reduced odd "functorial style";
wenzelm
parents:
43670
diff
changeset
|
5 |
optional init operation. |
27919 | 6 |
*/ |
7 |
||
8 |
package isabelle |
|
9 |
||
55618 | 10 |
|
67835 | 11 |
import java.io.{File => JFile, IOException} |
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:
43484
diff
changeset
|
18 |
object Isabelle_System |
45cf8d5e109a
lazy Isabelle_System.default supports implicit boot;
wenzelm
parents:
43484
diff
changeset
|
19 |
{ |
50652
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents:
50651
diff
changeset
|
20 |
/** bootstrap information **/ |
43661
39fdbd814c7f
quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents:
43660
diff
changeset
|
21 |
|
50652
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents:
50651
diff
changeset
|
22 |
def jdk_home(): String = |
43661
39fdbd814c7f
quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents:
43660
diff
changeset
|
23 |
{ |
53582 | 24 |
val java_home = System.getProperty("java.home", "") |
50652
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents:
50651
diff
changeset
|
25 |
val home = new JFile(java_home) |
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents:
50651
diff
changeset
|
26 |
val parent = home.getParent |
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents:
50651
diff
changeset
|
27 |
if (home.getName == "jre" && parent != null && |
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents:
50651
diff
changeset
|
28 |
(new JFile(new JFile(parent, "bin"), "javac")).exists) parent |
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents:
50651
diff
changeset
|
29 |
else java_home |
43661
39fdbd814c7f
quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents:
43660
diff
changeset
|
30 |
} |
37013
641923374eba
Isabelle_System: allow explicit isabelle_home argument;
wenzelm
parents:
36991
diff
changeset
|
31 |
|
61291 | 32 |
def bootstrap_directory( |
33 |
preference: String, envar: String, property: String, description: String): String = |
|
50652
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents:
50651
diff
changeset
|
34 |
{ |
61291 | 35 |
val value = |
68409 | 36 |
proper_string(preference) orElse // explicit argument |
37 |
proper_string(System.getenv(envar)) orElse // e.g. inherited from running isabelle tool |
|
38 |
proper_string(System.getProperty(property)) getOrElse // e.g. via JVM application boot process |
|
61291 | 39 |
error("Unknown " + description + " directory") |
50652
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents:
50651
diff
changeset
|
40 |
|
61291 | 41 |
if ((new JFile(value)).isDirectory) value |
42 |
else error("Bad " + description + " directory " + quote(value)) |
|
50652
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents:
50651
diff
changeset
|
43 |
} |
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents:
50651
diff
changeset
|
44 |
|
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents:
50651
diff
changeset
|
45 |
|
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents:
50651
diff
changeset
|
46 |
|
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents:
50651
diff
changeset
|
47 |
/** implicit settings environment **/ |
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents:
50651
diff
changeset
|
48 |
|
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents:
50651
diff
changeset
|
49 |
@volatile private var _settings: Option[Map[String, String]] = None |
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents:
50651
diff
changeset
|
50 |
|
62610
4c89504c76fb
more uniform signature for various process invocations;
wenzelm
parents:
62602
diff
changeset
|
51 |
def settings(): Map[String, String] = |
50652
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents:
50651
diff
changeset
|
52 |
{ |
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents:
50651
diff
changeset
|
53 |
if (_settings.isEmpty) init() // unsynchronized check |
62610
4c89504c76fb
more uniform signature for various process invocations;
wenzelm
parents:
62602
diff
changeset
|
54 |
_settings.get |
50652
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents:
50651
diff
changeset
|
55 |
} |
31796 | 56 |
|
61293
876e7eae22be
clarified ISABELLE_ROOT (platform path) vs. ISABELLE_HOME (standard path);
wenzelm
parents:
61291
diff
changeset
|
57 |
def init(isabelle_root: String = "", cygwin_root: String = ""): Unit = synchronized { |
50652
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents:
50651
diff
changeset
|
58 |
if (_settings.isEmpty) { |
43661
39fdbd814c7f
quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents:
43660
diff
changeset
|
59 |
import scala.collection.JavaConversions._ |
37013
641923374eba
Isabelle_System: allow explicit isabelle_home argument;
wenzelm
parents:
36991
diff
changeset
|
60 |
|
61293
876e7eae22be
clarified ISABELLE_ROOT (platform path) vs. ISABELLE_HOME (standard path);
wenzelm
parents:
61291
diff
changeset
|
61 |
val isabelle_root1 = |
876e7eae22be
clarified ISABELLE_ROOT (platform path) vs. ISABELLE_HOME (standard path);
wenzelm
parents:
61291
diff
changeset
|
62 |
bootstrap_directory(isabelle_root, "ISABELLE_ROOT", "isabelle.root", "Isabelle root") |
61291 | 63 |
|
64 |
val cygwin_root1 = |
|
65 |
if (Platform.is_windows) |
|
66 |
bootstrap_directory(cygwin_root, "CYGWIN_ROOT", "cygwin.root", "Cygwin root") |
|
67 |
else "" |
|
68 |
||
61295 | 69 |
if (Platform.is_windows) Cygwin.init(isabelle_root1, cygwin_root1) |
70 |
||
51820 | 71 |
def set_cygwin_root() |
43661
39fdbd814c7f
quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents:
43660
diff
changeset
|
72 |
{ |
51820 | 73 |
if (Platform.is_windows) |
61291 | 74 |
_settings = Some(_settings.getOrElse(Map.empty) + ("CYGWIN_ROOT" -> cygwin_root1)) |
51820 | 75 |
} |
47725
447b635bcea5
cold-start HOME is user.home, in accordance with Cygwin-Terminal.bat;
wenzelm
parents:
47674
diff
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:
56871
diff
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:
57411
diff
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:
57411
diff
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:
57411
diff
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:
57411
diff
changeset
|
82 |
|
57411
9444489766a1
sane environment defaults for Mac OS X, based on former App1/script -- e.g. relevant for MacTeX PATH;
wenzelm
parents:
56871
diff
changeset
|
83 |
val env = |
9444489766a1
sane environment defaults for Mac OS X, based on former App1/script -- e.g. relevant for MacTeX PATH;
wenzelm
parents:
56871
diff
changeset
|
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:
57411
diff
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:
57411
diff
changeset
|
86 |
{ |
61291 | 87 |
val temp = if (Platform.is_windows) System.getenv("TEMP") else null |
58640
37f852399a32
prefer original TEMP from Windows, e.g. relevant for Isabelle distribution within read-only directory (due to its bundled Cygwin and /tmp inside of it);
wenzelm
parents:
57411
diff
changeset
|
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:
57411
diff
changeset
|
89 |
} |
57411
9444489766a1
sane environment defaults for Mac OS X, based on former App1/script -- e.g. relevant for MacTeX PATH;
wenzelm
parents:
56871
diff
changeset
|
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:
56871
diff
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:
57411
diff
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:
57411
diff
changeset
|
94 |
default( |
60992 | 95 |
default(sys.env + ("ISABELLE_JDK_HOME" -> File.standard_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:
56871
diff
changeset
|
99 |
} |
29177 | 100 |
|
51820 | 101 |
val settings = |
56428
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents:
55876
diff
changeset
|
102 |
{ |
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents:
55876
diff
changeset
|
103 |
val dump = JFile.createTempFile("settings", null) |
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents:
55876
diff
changeset
|
104 |
dump.deleteOnExit |
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents:
55876
diff
changeset
|
105 |
try { |
61293
876e7eae22be
clarified ISABELLE_ROOT (platform path) vs. ISABELLE_HOME (standard path);
wenzelm
parents:
61291
diff
changeset
|
106 |
val cmd1 = |
64454 | 107 |
if (Platform.is_windows) |
108 |
List(cygwin_root1 + "\\bin\\bash", "-l", |
|
109 |
File.standard_path(isabelle_root1 + "\\bin\\isabelle")) |
|
110 |
else |
|
111 |
List(isabelle_root1 + "/bin/isabelle") |
|
112 |
val cmd = cmd1 ::: List("getenv", "-d", dump.toString) |
|
61293
876e7eae22be
clarified ISABELLE_ROOT (platform path) vs. ISABELLE_HOME (standard path);
wenzelm
parents:
61291
diff
changeset
|
113 |
|
64454 | 114 |
val (output, rc) = process_output(process(cmd, env = env, redirect = true)) |
51820 | 115 |
if (rc != 0) error(output) |
56477 | 116 |
|
51820 | 117 |
val entries = |
62610
4c89504c76fb
more uniform signature for various process invocations;
wenzelm
parents:
62602
diff
changeset
|
118 |
(for (entry <- File.read(dump).split("\u0000") if entry != "") yield { |
51820 | 119 |
val i = entry.indexOf('=') |
60215 | 120 |
if (i <= 0) entry -> "" |
121 |
else entry.substring(0, i) -> entry.substring(i + 1) |
|
51820 | 122 |
}).toMap |
123 |
entries + ("PATH" -> entries("PATH_JVM")) - "PATH_JVM" |
|
124 |
} |
|
56428
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents:
55876
diff
changeset
|
125 |
finally { dump.delete } |
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents:
55876
diff
changeset
|
126 |
} |
50652
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents:
50651
diff
changeset
|
127 |
_settings = Some(settings) |
51820 | 128 |
set_cygwin_root() |
43661
39fdbd814c7f
quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents:
43660
diff
changeset
|
129 |
} |
27953 | 130 |
} |
27919 | 131 |
|
31796 | 132 |
|
133 |
/* getenv */ |
|
134 |
||
64228
b46969a851a9
expand relatively to given environment, notably remote HOME;
wenzelm
parents:
64220
diff
changeset
|
135 |
def getenv(name: String, env: Map[String, String] = settings()): String = |
b46969a851a9
expand relatively to given environment, notably remote HOME;
wenzelm
parents:
64220
diff
changeset
|
136 |
env.getOrElse(name, "") |
31498 | 137 |
|
64228
b46969a851a9
expand relatively to given environment, notably remote HOME;
wenzelm
parents:
64220
diff
changeset
|
138 |
def getenv_strict(name: String, env: Map[String, String] = settings()): String = |
65717 | 139 |
proper_string(getenv(name, env)) getOrElse |
140 |
error("Undefined Isabelle environment variable: " + quote(name)) |
|
27919 | 141 |
|
61291 | 142 |
def cygwin_root(): String = getenv_strict("CYGWIN_ROOT") |
51820 | 143 |
|
67865 | 144 |
def isabelle_id(): String = |
145 |
proper_string(getenv("ISABELLE_ID")) getOrElse |
|
67872
39b27d38a54c
more accurate isabelle_id: parent directory is not necessarily at tip;
wenzelm
parents:
67865
diff
changeset
|
146 |
Mercurial.repository(Path.explode("~~")).parent() |
67865 | 147 |
|
31796 | 148 |
|
54039 | 149 |
|
43606 | 150 |
/** file-system operations **/ |
31796 | 151 |
|
64189 | 152 |
/* 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:
50854
diff
changeset
|
153 |
|
60013 | 154 |
def mkdirs(path: Path): Unit = |
60263
2a5dbad75355
more portable mkdirs via perl, e.g. relevant for Windows UNC paths (network shares);
wenzelm
parents:
60215
diff
changeset
|
155 |
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:
62543
diff
changeset
|
156 |
bash("perl -e \"use File::Path make_path; make_path('" + File.standard_path(path) + "');\"") |
60988 | 157 |
if (!path.is_dir) error("Failed to create directory: " + quote(File.platform_path(path))) |
60263
2a5dbad75355
more portable mkdirs via perl, e.g. relevant for Windows UNC paths (network shares);
wenzelm
parents:
60215
diff
changeset
|
158 |
} |
50893
d55eb82ae77b
Isabelle_System.mkdirs with explicit error checking (in accordance to ML version), e.g. relevant with read-only DMG file-system on Mac OS X;
wenzelm
parents:
50854
diff
changeset
|
159 |
|
64189 | 160 |
def copy_dir(dir1: Path, dir2: Path): Unit = |
161 |
bash("cp -a " + File.bash_path(dir1) + " " + File.bash_path(dir2)).check |
|
162 |
||
50893
d55eb82ae77b
Isabelle_System.mkdirs with explicit error checking (in accordance to ML version), e.g. relevant with read-only DMG file-system on Mac OS X;
wenzelm
parents:
50854
diff
changeset
|
163 |
|
56428
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents:
55876
diff
changeset
|
164 |
/* tmp files */ |
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents:
55876
diff
changeset
|
165 |
|
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents:
55876
diff
changeset
|
166 |
private def isabelle_tmp_prefix(): JFile = |
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents:
55876
diff
changeset
|
167 |
{ |
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents:
55876
diff
changeset
|
168 |
val path = Path.explode("$ISABELLE_TMP_PREFIX") |
60013 | 169 |
path.file.mkdirs // low-level mkdirs |
60988 | 170 |
File.platform_file(path) |
56428
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents:
55876
diff
changeset
|
171 |
} |
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents:
55876
diff
changeset
|
172 |
|
67924 | 173 |
def tmp_file(name: String, ext: String = "", base_dir: JFile = isabelle_tmp_prefix()): JFile = |
56428
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents:
55876
diff
changeset
|
174 |
{ |
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents:
55876
diff
changeset
|
175 |
val suffix = if (ext == "") "" else "." + ext |
67924 | 176 |
val file = Files.createTempFile(base_dir.toPath, name, suffix).toFile |
56428
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents:
55876
diff
changeset
|
177 |
file.deleteOnExit |
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents:
55876
diff
changeset
|
178 |
file |
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents:
55876
diff
changeset
|
179 |
} |
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents:
55876
diff
changeset
|
180 |
|
64220 | 181 |
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:
55876
diff
changeset
|
182 |
{ |
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents:
55876
diff
changeset
|
183 |
val file = tmp_file(name, ext) |
64220 | 184 |
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:
55876
diff
changeset
|
185 |
} |
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents:
55876
diff
changeset
|
186 |
|
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents:
55876
diff
changeset
|
187 |
|
56477 | 188 |
/* tmp dirs */ |
189 |
||
64213 | 190 |
def rm_tree(root: Path): Unit = rm_tree(root.file) |
191 |
||
56477 | 192 |
def rm_tree(root: JFile) |
193 |
{ |
|
194 |
root.delete |
|
195 |
if (root.isDirectory) { |
|
196 |
Files.walkFileTree(root.toPath, |
|
197 |
new SimpleFileVisitor[JPath] { |
|
198 |
override def visitFile(file: JPath, attrs: BasicFileAttributes): FileVisitResult = |
|
199 |
{ |
|
68991
6c1beb52d766
more robust: avoid race condition wrt. cleanup of ML process, e.g. relevant for "$ISABELLE_TMP/rat.ML" in theory Codegen.Further;
wenzelm
parents:
68409
diff
changeset
|
200 |
try { Files.deleteIfExists(file) } |
6c1beb52d766
more robust: avoid race condition wrt. cleanup of ML process, e.g. relevant for "$ISABELLE_TMP/rat.ML" in theory Codegen.Further;
wenzelm
parents:
68409
diff
changeset
|
201 |
catch { case _: IOException => } |
56477 | 202 |
FileVisitResult.CONTINUE |
203 |
} |
|
204 |
||
205 |
override def postVisitDirectory(dir: JPath, e: IOException): FileVisitResult = |
|
206 |
{ |
|
207 |
if (e == null) { |
|
68991
6c1beb52d766
more robust: avoid race condition wrt. cleanup of ML process, e.g. relevant for "$ISABELLE_TMP/rat.ML" in theory Codegen.Further;
wenzelm
parents:
68409
diff
changeset
|
208 |
try { Files.deleteIfExists(dir) } |
6c1beb52d766
more robust: avoid race condition wrt. cleanup of ML process, e.g. relevant for "$ISABELLE_TMP/rat.ML" in theory Codegen.Further;
wenzelm
parents:
68409
diff
changeset
|
209 |
catch { case _: IOException => } |
56477 | 210 |
FileVisitResult.CONTINUE |
211 |
} |
|
212 |
else throw e |
|
213 |
} |
|
214 |
} |
|
215 |
) |
|
216 |
} |
|
217 |
} |
|
218 |
||
67924 | 219 |
def tmp_dir(name: String, base_dir: JFile = isabelle_tmp_prefix()): JFile = |
56477 | 220 |
{ |
67924 | 221 |
val dir = Files.createTempDirectory(base_dir.toPath, name).toFile |
56477 | 222 |
dir.deleteOnExit |
223 |
dir |
|
224 |
} |
|
225 |
||
64220 | 226 |
def with_tmp_dir[A](name: String)(body: Path => A): A = |
56477 | 227 |
{ |
228 |
val dir = tmp_dir(name) |
|
64220 | 229 |
try { body(File.path(dir)) } finally { rm_tree(dir) } |
56477 | 230 |
} |
231 |
||
232 |
||
65793 | 233 |
/* quasi-atomic update of directory */ |
234 |
||
235 |
def update_directory(dir: Path, f: Path => Unit) |
|
236 |
{ |
|
237 |
val new_dir = dir.ext("new") |
|
238 |
val old_dir = dir.ext("old") |
|
239 |
||
240 |
rm_tree(new_dir) |
|
241 |
rm_tree(old_dir) |
|
242 |
||
243 |
f(new_dir) |
|
244 |
||
245 |
if (dir.is_dir) File.move(dir, old_dir) |
|
246 |
File.move(new_dir, dir) |
|
247 |
rm_tree(old_dir) |
|
248 |
} |
|
249 |
||
250 |
||
62613 | 251 |
|
252 |
/** external processes **/ |
|
253 |
||
254 |
/* raw process */ |
|
255 |
||
256 |
def process(command_line: List[String], |
|
257 |
cwd: JFile = null, |
|
258 |
env: Map[String, String] = settings(), |
|
259 |
redirect: Boolean = false): Process = |
|
260 |
{ |
|
261 |
val proc = new ProcessBuilder |
|
262 |
proc.command(command_line:_*) // fragile on Windows |
|
263 |
if (cwd != null) proc.directory(cwd) |
|
64021
1e23caac8757
basic setup for Admin/build_history -- outside of Isabelle environment;
wenzelm
parents:
63687
diff
changeset
|
264 |
if (env != null) { |
1e23caac8757
basic setup for Admin/build_history -- outside of Isabelle environment;
wenzelm
parents:
63687
diff
changeset
|
265 |
proc.environment.clear |
1e23caac8757
basic setup for Admin/build_history -- outside of Isabelle environment;
wenzelm
parents:
63687
diff
changeset
|
266 |
for ((x, y) <- env) proc.environment.put(x, y) |
1e23caac8757
basic setup for Admin/build_history -- outside of Isabelle environment;
wenzelm
parents:
63687
diff
changeset
|
267 |
} |
62613 | 268 |
proc.redirectErrorStream(redirect) |
269 |
proc.start |
|
270 |
} |
|
271 |
||
272 |
def process_output(proc: Process): (String, Int) = |
|
273 |
{ |
|
274 |
proc.getOutputStream.close |
|
275 |
||
276 |
val output = File.read_stream(proc.getInputStream) |
|
277 |
val rc = |
|
278 |
try { proc.waitFor } |
|
279 |
finally { |
|
280 |
proc.getInputStream.close |
|
281 |
proc.getErrorStream.close |
|
282 |
proc.destroy |
|
283 |
Thread.interrupted |
|
284 |
} |
|
285 |
(output, rc) |
|
286 |
} |
|
61025 | 287 |
|
288 |
def kill(signal: String, group_pid: String): (String, Int) = |
|
289 |
{ |
|
290 |
val bash = |
|
61291 | 291 |
if (Platform.is_windows) List(cygwin_root() + "\\bin\\bash.exe") |
61025 | 292 |
else List("/usr/bin/env", "bash") |
62610
4c89504c76fb
more uniform signature for various process invocations;
wenzelm
parents:
62602
diff
changeset
|
293 |
process_output(process(bash ::: List("-c", "kill -" + signal + " -" + group_pid))) |
61025 | 294 |
} |
295 |
||
296 |
||
62613 | 297 |
/* GNU bash */ |
31796 | 298 |
|
62610
4c89504c76fb
more uniform signature for various process invocations;
wenzelm
parents:
62602
diff
changeset
|
299 |
def bash(script: String, |
4c89504c76fb
more uniform signature for various process invocations;
wenzelm
parents:
62602
diff
changeset
|
300 |
cwd: JFile = null, |
4c89504c76fb
more uniform signature for various process invocations;
wenzelm
parents:
62602
diff
changeset
|
301 |
env: Map[String, String] = settings(), |
4c89504c76fb
more uniform signature for various process invocations;
wenzelm
parents:
62602
diff
changeset
|
302 |
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:
51820
diff
changeset
|
303 |
progress_stdout: String => Unit = (_: String) => (), |
016cb7d8f297
limit build process output, to avoid bombing Isabelle/Scala process by ill-behaved jobs (e.g. Containers in AFP/9025435b29cf);
wenzelm
parents:
51820
diff
changeset
|
304 |
progress_stderr: String => Unit = (_: String) => (), |
56871
d06ff36b4fa7
expose interrupts more like ML version, but not in managed bash processes of Build;
wenzelm
parents:
56862
diff
changeset
|
305 |
progress_limit: Option[Long] = None, |
62602 | 306 |
strict: Boolean = true, |
307 |
cleanup: () => Unit = () => ()): Process_Result = |
|
34198
ff5486262cd6
moved Library.decode_permissive_utf8 to Isabelle_System;
wenzelm
parents:
34196
diff
changeset
|
308 |
{ |
62610
4c89504c76fb
more uniform signature for various process invocations;
wenzelm
parents:
62602
diff
changeset
|
309 |
Bash.process(script, cwd = cwd, env = env, redirect = redirect, cleanup = cleanup). |
62602 | 310 |
result(progress_stdout, progress_stderr, progress_limit, strict) |
34198
ff5486262cd6
moved Library.decode_permissive_utf8 to Isabelle_System;
wenzelm
parents:
34196
diff
changeset
|
311 |
} |
ff5486262cd6
moved Library.decode_permissive_utf8 to Isabelle_System;
wenzelm
parents:
34196
diff
changeset
|
312 |
|
64935
9437a117408b
insist in proper GNU tar, to avoid subtle semantic differences;
wenzelm
parents:
64657
diff
changeset
|
313 |
private lazy val gnutar_check: Boolean = |
9437a117408b
insist in proper GNU tar, to avoid subtle semantic differences;
wenzelm
parents:
64657
diff
changeset
|
314 |
try { bash("tar --version").check.out.containsSlice("GNU tar") || error("") } |
9437a117408b
insist in proper GNU tar, to avoid subtle semantic differences;
wenzelm
parents:
64657
diff
changeset
|
315 |
catch { case ERROR(_) => false } |
9437a117408b
insist in proper GNU tar, to avoid subtle semantic differences;
wenzelm
parents:
64657
diff
changeset
|
316 |
|
9437a117408b
insist in proper GNU tar, to avoid subtle semantic differences;
wenzelm
parents:
64657
diff
changeset
|
317 |
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:
64657
diff
changeset
|
318 |
{ |
9437a117408b
insist in proper GNU tar, to avoid subtle semantic differences;
wenzelm
parents:
64657
diff
changeset
|
319 |
if (gnutar_check) bash("tar " + args, cwd = cwd, redirect = redirect) |
9437a117408b
insist in proper GNU tar, to avoid subtle semantic differences;
wenzelm
parents:
64657
diff
changeset
|
320 |
else error("Expected to find GNU tar executable") |
9437a117408b
insist in proper GNU tar, to avoid subtle semantic differences;
wenzelm
parents:
64657
diff
changeset
|
321 |
} |
9437a117408b
insist in proper GNU tar, to avoid subtle semantic differences;
wenzelm
parents:
64657
diff
changeset
|
322 |
|
64152 | 323 |
def hostname(): String = bash("hostname -s").check.out |
64139 | 324 |
|
54690 | 325 |
def open(arg: String): Unit = |
64304 | 326 |
bash("exec \"$ISABELLE_OPEN\" " + Bash.string(arg) + " >/dev/null 2>/dev/null &") |
54690 | 327 |
|
328 |
def pdf_viewer(arg: Path): Unit = |
|
62616 | 329 |
bash("exec \"$PDF_VIEWER\" " + File.bash_path(arg) + " >/dev/null 2>/dev/null &") |
54690 | 330 |
|
65916 | 331 |
def export_isabelle_identifier(isabelle_identifier: String): String = |
332 |
if (isabelle_identifier == "") "" |
|
333 |
else "export ISABELLE_IDENTIFIER=" + Bash.string(isabelle_identifier) + "\n" |
|
334 |
||
32450 | 335 |
|
62400 | 336 |
|
31796 | 337 |
/** Isabelle resources **/ |
338 |
||
64161 | 339 |
/* repository clone with Admin */ |
340 |
||
341 |
def admin(): Boolean = Path.explode("~~/Admin").is_dir |
|
342 |
||
343 |
||
32328 | 344 |
/* components */ |
345 |
||
43669 | 346 |
def components(): List[Path] = |
347 |
Path.split(getenv_strict("ISABELLE_COMPONENTS")) |
|
32328 | 348 |
|
349 |
||
69277
258bef08b31e
support for user-defined Isabelle/Scala command-line tools;
wenzelm
parents:
69168
diff
changeset
|
350 |
/* classes */ |
258bef08b31e
support for user-defined Isabelle/Scala command-line tools;
wenzelm
parents:
69168
diff
changeset
|
351 |
|
258bef08b31e
support for user-defined Isabelle/Scala command-line tools;
wenzelm
parents:
69168
diff
changeset
|
352 |
def init_classes[A](variable: String): List[A] = |
258bef08b31e
support for user-defined Isabelle/Scala command-line tools;
wenzelm
parents:
69168
diff
changeset
|
353 |
{ |
258bef08b31e
support for user-defined Isabelle/Scala command-line tools;
wenzelm
parents:
69168
diff
changeset
|
354 |
for (name <- space_explode(':', Isabelle_System.getenv_strict(variable))) |
258bef08b31e
support for user-defined Isabelle/Scala command-line tools;
wenzelm
parents:
69168
diff
changeset
|
355 |
yield { |
258bef08b31e
support for user-defined Isabelle/Scala command-line tools;
wenzelm
parents:
69168
diff
changeset
|
356 |
def err(msg: String): Nothing = |
258bef08b31e
support for user-defined Isabelle/Scala command-line tools;
wenzelm
parents:
69168
diff
changeset
|
357 |
error("Bad entry " + quote(name) + " in " + variable + "\n" + msg) |
258bef08b31e
support for user-defined Isabelle/Scala command-line tools;
wenzelm
parents:
69168
diff
changeset
|
358 |
|
258bef08b31e
support for user-defined Isabelle/Scala command-line tools;
wenzelm
parents:
69168
diff
changeset
|
359 |
try { Class.forName(name).asInstanceOf[Class[A]].newInstance() } |
258bef08b31e
support for user-defined Isabelle/Scala command-line tools;
wenzelm
parents:
69168
diff
changeset
|
360 |
catch { |
258bef08b31e
support for user-defined Isabelle/Scala command-line tools;
wenzelm
parents:
69168
diff
changeset
|
361 |
case _: ClassNotFoundException => err("Class not found") |
258bef08b31e
support for user-defined Isabelle/Scala command-line tools;
wenzelm
parents:
69168
diff
changeset
|
362 |
case exn: Throwable => err(Exn.message(exn)) |
258bef08b31e
support for user-defined Isabelle/Scala command-line tools;
wenzelm
parents:
69168
diff
changeset
|
363 |
} |
258bef08b31e
support for user-defined Isabelle/Scala command-line tools;
wenzelm
parents:
69168
diff
changeset
|
364 |
} |
258bef08b31e
support for user-defined Isabelle/Scala command-line tools;
wenzelm
parents:
69168
diff
changeset
|
365 |
} |
258bef08b31e
support for user-defined Isabelle/Scala command-line tools;
wenzelm
parents:
69168
diff
changeset
|
366 |
|
258bef08b31e
support for user-defined Isabelle/Scala command-line tools;
wenzelm
parents:
69168
diff
changeset
|
367 |
|
62633 | 368 |
/* default logic */ |
48503 | 369 |
|
50403
87868964733c
more uniform default logic, using settings, options, args etc.;
wenzelm
parents:
50298
diff
changeset
|
370 |
def default_logic(args: String*): String = |
87868964733c
more uniform default logic, using settings, options, args etc.;
wenzelm
parents:
50298
diff
changeset
|
371 |
{ |
87868964733c
more uniform default logic, using settings, options, args etc.;
wenzelm
parents:
50298
diff
changeset
|
372 |
args.find(_ != "") match { |
87868964733c
more uniform default logic, using settings, options, args etc.;
wenzelm
parents:
50298
diff
changeset
|
373 |
case Some(logic) => logic |
87868964733c
more uniform default logic, using settings, options, args etc.;
wenzelm
parents:
50298
diff
changeset
|
374 |
case None => Isabelle_System.getenv_strict("ISABELLE_LOGIC") |
87868964733c
more uniform default logic, using settings, options, args etc.;
wenzelm
parents:
50298
diff
changeset
|
375 |
} |
87868964733c
more uniform default logic, using settings, options, args etc.;
wenzelm
parents:
50298
diff
changeset
|
376 |
} |
27919 | 377 |
} |