| author | wenzelm |
| Mon, 12 Apr 2021 21:48:04 +0200 | |
| changeset 73567 | 355af2d1b817 |
| parent 73566 | 4e6b31ed7197 |
| child 73573 | a30a60aef59f |
| 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}
|
| 73317 | 12 |
import java.nio.file.{Path => JPath, Files, SimpleFileVisitor, FileVisitResult,
|
13 |
StandardCopyOption, FileSystemException} |
|
| 56477 | 14 |
import java.nio.file.attribute.BasicFileAttributes |
| 27936 | 15 |
|
| 73317 | 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 |
|
| 71739 | 49 |
abstract class Service |
50 |
||
|
50652
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents:
50651
diff
changeset
|
51 |
@volatile private var _settings: Option[Map[String, String]] = None |
|
72159
40b5ee5889d2
clarified management of services: static declarations vs. dynamic instances (e.g. relevant for stateful Session.Protocol_Handler, notably Scala.Handler and session "System");
wenzelm
parents:
72105
diff
changeset
|
52 |
@volatile private var _services: Option[List[Class[Service]]] = None |
| 71739 | 53 |
|
|
62610
4c89504c76fb
more uniform signature for various process invocations;
wenzelm
parents:
62602
diff
changeset
|
54 |
def settings(): Map[String, String] = |
|
50652
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents:
50651
diff
changeset
|
55 |
{
|
|
71792
936718dede80
more robust Isabelle_System.init (amending c0bc99aad936): avoid non-termination on Windows (java.lang.StackOverflowError);
wenzelm
parents:
71739
diff
changeset
|
56 |
if (_settings.isEmpty) init() // unsynchronized check |
|
62610
4c89504c76fb
more uniform signature for various process invocations;
wenzelm
parents:
62602
diff
changeset
|
57 |
_settings.get |
|
50652
ead5714cc480
tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents:
50651
diff
changeset
|
58 |
} |
| 31796 | 59 |
|
|
72159
40b5ee5889d2
clarified management of services: static declarations vs. dynamic instances (e.g. relevant for stateful Session.Protocol_Handler, notably Scala.Handler and session "System");
wenzelm
parents:
72105
diff
changeset
|
60 |
def services(): List[Class[Service]] = |
| 71739 | 61 |
{
|
|
71792
936718dede80
more robust Isabelle_System.init (amending c0bc99aad936): avoid non-termination on Windows (java.lang.StackOverflowError);
wenzelm
parents:
71739
diff
changeset
|
62 |
if (_services.isEmpty) init() // unsynchronized check |
| 71739 | 63 |
_services.get |
64 |
} |
|
65 |
||
|
72159
40b5ee5889d2
clarified management of services: static declarations vs. dynamic instances (e.g. relevant for stateful Session.Protocol_Handler, notably Scala.Handler and session "System");
wenzelm
parents:
72105
diff
changeset
|
66 |
def make_services[C](c: Class[C]): List[C] = |
| 72214 | 67 |
for { c1 <- services() if Library.is_subclass(c1, c) }
|
|
72159
40b5ee5889d2
clarified management of services: static declarations vs. dynamic instances (e.g. relevant for stateful Session.Protocol_Handler, notably Scala.Handler and session "System");
wenzelm
parents:
72105
diff
changeset
|
68 |
yield c1.getDeclaredConstructor().newInstance().asInstanceOf[C] |
|
40b5ee5889d2
clarified management of services: static declarations vs. dynamic instances (e.g. relevant for stateful Session.Protocol_Handler, notably Scala.Handler and session "System");
wenzelm
parents:
72105
diff
changeset
|
69 |
|
|
71889
8dbefe849666
omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents:
71870
diff
changeset
|
70 |
def init(isabelle_root: String = "", cygwin_root: String = ""): Unit = synchronized |
| 71739 | 71 |
{
|
|
71889
8dbefe849666
omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents:
71870
diff
changeset
|
72 |
if (_settings.isEmpty || _services.isEmpty) {
|
|
8dbefe849666
omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents:
71870
diff
changeset
|
73 |
val isabelle_root1 = |
|
8dbefe849666
omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents:
71870
diff
changeset
|
74 |
bootstrap_directory(isabelle_root, "ISABELLE_ROOT", "isabelle.root", "Isabelle root") |
| 61291 | 75 |
|
|
71889
8dbefe849666
omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents:
71870
diff
changeset
|
76 |
val cygwin_root1 = |
|
8dbefe849666
omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents:
71870
diff
changeset
|
77 |
if (Platform.is_windows) |
|
8dbefe849666
omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents:
71870
diff
changeset
|
78 |
bootstrap_directory(cygwin_root, "CYGWIN_ROOT", "cygwin.root", "Cygwin root") |
|
8dbefe849666
omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents:
71870
diff
changeset
|
79 |
else "" |
| 61295 | 80 |
|
|
71889
8dbefe849666
omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents:
71870
diff
changeset
|
81 |
if (Platform.is_windows) Cygwin.init(isabelle_root1, cygwin_root1) |
|
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
|
82 |
|
| 73340 | 83 |
def set_cygwin_root(): Unit = |
|
71889
8dbefe849666
omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents:
71870
diff
changeset
|
84 |
{
|
|
8dbefe849666
omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents:
71870
diff
changeset
|
85 |
if (Platform.is_windows) |
|
8dbefe849666
omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents:
71870
diff
changeset
|
86 |
_settings = Some(_settings.getOrElse(Map.empty) + ("CYGWIN_ROOT" -> cygwin_root1))
|
|
8dbefe849666
omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents:
71870
diff
changeset
|
87 |
} |
|
8dbefe849666
omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents:
71870
diff
changeset
|
88 |
|
|
8dbefe849666
omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents:
71870
diff
changeset
|
89 |
set_cygwin_root() |
|
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
|
90 |
|
|
71889
8dbefe849666
omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents:
71870
diff
changeset
|
91 |
def default(env: Map[String, String], entry: (String, String)): Map[String, String] = |
|
8dbefe849666
omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents:
71870
diff
changeset
|
92 |
if (env.isDefinedAt(entry._1) || entry._2 == "") env |
|
8dbefe849666
omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents:
71870
diff
changeset
|
93 |
else env + entry |
| 71870 | 94 |
|
|
71889
8dbefe849666
omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents:
71870
diff
changeset
|
95 |
val env = |
|
8dbefe849666
omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents:
71870
diff
changeset
|
96 |
{
|
|
8dbefe849666
omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents:
71870
diff
changeset
|
97 |
val temp_windows = |
| 71870 | 98 |
{
|
|
71889
8dbefe849666
omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents:
71870
diff
changeset
|
99 |
val temp = if (Platform.is_windows) System.getenv("TEMP") else null
|
|
8dbefe849666
omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents:
71870
diff
changeset
|
100 |
if (temp != null && temp.contains('\\')) temp else ""
|
|
8dbefe849666
omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents:
71870
diff
changeset
|
101 |
} |
|
8dbefe849666
omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents:
71870
diff
changeset
|
102 |
val user_home = System.getProperty("user.home", "")
|
|
8dbefe849666
omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents:
71870
diff
changeset
|
103 |
val isabelle_app = System.getProperty("isabelle.app", "")
|
|
8dbefe849666
omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents:
71870
diff
changeset
|
104 |
|
|
8dbefe849666
omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents:
71870
diff
changeset
|
105 |
default( |
|
8dbefe849666
omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents:
71870
diff
changeset
|
106 |
default( |
|
8dbefe849666
omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents:
71870
diff
changeset
|
107 |
default(sys.env + ("ISABELLE_JDK_HOME" -> File.standard_path(jdk_home())),
|
|
8dbefe849666
omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents:
71870
diff
changeset
|
108 |
"TEMP_WINDOWS" -> temp_windows), |
|
8dbefe849666
omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents:
71870
diff
changeset
|
109 |
"HOME" -> user_home), |
|
8dbefe849666
omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents:
71870
diff
changeset
|
110 |
"ISABELLE_APP" -> "true") |
|
8dbefe849666
omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents:
71870
diff
changeset
|
111 |
} |
|
61293
876e7eae22be
clarified ISABELLE_ROOT (platform path) vs. ISABELLE_HOME (standard path);
wenzelm
parents:
61291
diff
changeset
|
112 |
|
|
71889
8dbefe849666
omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents:
71870
diff
changeset
|
113 |
val settings = |
|
8dbefe849666
omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents:
71870
diff
changeset
|
114 |
{
|
|
8dbefe849666
omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents:
71870
diff
changeset
|
115 |
val dump = JFile.createTempFile("settings", null)
|
|
8dbefe849666
omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents:
71870
diff
changeset
|
116 |
dump.deleteOnExit |
|
8dbefe849666
omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents:
71870
diff
changeset
|
117 |
try {
|
|
8dbefe849666
omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents:
71870
diff
changeset
|
118 |
val cmd1 = |
|
8dbefe849666
omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents:
71870
diff
changeset
|
119 |
if (Platform.is_windows) |
|
8dbefe849666
omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents:
71870
diff
changeset
|
120 |
List(cygwin_root1 + "\\bin\\bash", "-l", |
|
8dbefe849666
omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents:
71870
diff
changeset
|
121 |
File.standard_path(isabelle_root1 + "\\bin\\isabelle")) |
|
8dbefe849666
omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents:
71870
diff
changeset
|
122 |
else |
|
8dbefe849666
omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents:
71870
diff
changeset
|
123 |
List(isabelle_root1 + "/bin/isabelle") |
|
8dbefe849666
omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents:
71870
diff
changeset
|
124 |
val cmd = cmd1 ::: List("getenv", "-d", dump.toString)
|
|
8dbefe849666
omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents:
71870
diff
changeset
|
125 |
|
|
8dbefe849666
omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents:
71870
diff
changeset
|
126 |
val (output, rc) = process_output(process(cmd, env = env, redirect = true)) |
|
8dbefe849666
omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents:
71870
diff
changeset
|
127 |
if (rc != 0) error(output) |
| 56477 | 128 |
|
|
71889
8dbefe849666
omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents:
71870
diff
changeset
|
129 |
val entries = |
| 73333 | 130 |
(for (entry <- Library.split_strings0(File.read(dump)) if entry != "") yield {
|
|
71889
8dbefe849666
omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents:
71870
diff
changeset
|
131 |
val i = entry.indexOf('=')
|
|
8dbefe849666
omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents:
71870
diff
changeset
|
132 |
if (i <= 0) entry -> "" |
|
8dbefe849666
omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents:
71870
diff
changeset
|
133 |
else entry.substring(0, i) -> entry.substring(i + 1) |
|
8dbefe849666
omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents:
71870
diff
changeset
|
134 |
}).toMap |
|
8dbefe849666
omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents:
71870
diff
changeset
|
135 |
entries + ("PATH" -> entries("PATH_JVM")) - "PATH_JVM"
|
|
8dbefe849666
omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents:
71870
diff
changeset
|
136 |
} |
|
8dbefe849666
omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents:
71870
diff
changeset
|
137 |
finally { dump.delete }
|
|
8dbefe849666
omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents:
71870
diff
changeset
|
138 |
} |
|
8dbefe849666
omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents:
71870
diff
changeset
|
139 |
_settings = Some(settings) |
|
8dbefe849666
omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents:
71870
diff
changeset
|
140 |
set_cygwin_root() |
|
8dbefe849666
omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents:
71870
diff
changeset
|
141 |
|
|
8dbefe849666
omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents:
71870
diff
changeset
|
142 |
val variable = "ISABELLE_SCALA_SERVICES" |
|
8dbefe849666
omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents:
71870
diff
changeset
|
143 |
val services = |
|
8dbefe849666
omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents:
71870
diff
changeset
|
144 |
for (name <- space_explode(':', settings.getOrElse(variable, getenv_error(variable))))
|
|
8dbefe849666
omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents:
71870
diff
changeset
|
145 |
yield {
|
|
8dbefe849666
omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents:
71870
diff
changeset
|
146 |
def err(msg: String): Nothing = |
|
8dbefe849666
omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents:
71870
diff
changeset
|
147 |
error("Bad entry " + quote(name) + " in " + variable + "\n" + msg)
|
|
72159
40b5ee5889d2
clarified management of services: static declarations vs. dynamic instances (e.g. relevant for stateful Session.Protocol_Handler, notably Scala.Handler and session "System");
wenzelm
parents:
72105
diff
changeset
|
148 |
try { Class.forName(name).asInstanceOf[Class[Service]] }
|
|
71889
8dbefe849666
omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents:
71870
diff
changeset
|
149 |
catch {
|
|
8dbefe849666
omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents:
71870
diff
changeset
|
150 |
case _: ClassNotFoundException => err("Class not found")
|
|
8dbefe849666
omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents:
71870
diff
changeset
|
151 |
case exn: Throwable => err(Exn.message(exn)) |
|
8dbefe849666
omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents:
71870
diff
changeset
|
152 |
} |
| 51820 | 153 |
} |
|
71889
8dbefe849666
omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents:
71870
diff
changeset
|
154 |
_services = Some(services) |
|
43661
39fdbd814c7f
quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents:
43660
diff
changeset
|
155 |
} |
| 27953 | 156 |
} |
| 27919 | 157 |
|
| 31796 | 158 |
|
|
73520
4cba4e250c28
clarified ISABELLE_ID: distribution vs. hg archive vs. hg repos;
wenzelm
parents:
73445
diff
changeset
|
159 |
/* getenv -- dynamic process environment */ |
| 31796 | 160 |
|
| 71739 | 161 |
private def getenv_error(name: String): Nothing = |
162 |
error("Undefined Isabelle environment variable: " + quote(name))
|
|
163 |
||
|
64228
b46969a851a9
expand relatively to given environment, notably remote HOME;
wenzelm
parents:
64220
diff
changeset
|
164 |
def getenv(name: String, env: Map[String, String] = settings()): String = |
|
b46969a851a9
expand relatively to given environment, notably remote HOME;
wenzelm
parents:
64220
diff
changeset
|
165 |
env.getOrElse(name, "") |
| 31498 | 166 |
|
|
64228
b46969a851a9
expand relatively to given environment, notably remote HOME;
wenzelm
parents:
64220
diff
changeset
|
167 |
def getenv_strict(name: String, env: Map[String, String] = settings()): String = |
| 65717 | 168 |
proper_string(getenv(name, env)) getOrElse |
169 |
error("Undefined Isabelle environment variable: " + quote(name))
|
|
| 27919 | 170 |
|
| 61291 | 171 |
def cygwin_root(): String = getenv_strict("CYGWIN_ROOT")
|
| 51820 | 172 |
|
|
73520
4cba4e250c28
clarified ISABELLE_ID: distribution vs. hg archive vs. hg repos;
wenzelm
parents:
73445
diff
changeset
|
173 |
|
|
4cba4e250c28
clarified ISABELLE_ID: distribution vs. hg archive vs. hg repos;
wenzelm
parents:
73445
diff
changeset
|
174 |
/* getetc -- static distribution parameters */ |
|
4cba4e250c28
clarified ISABELLE_ID: distribution vs. hg archive vs. hg repos;
wenzelm
parents:
73445
diff
changeset
|
175 |
|
| 73522 | 176 |
def getetc(name: String, root: Path = Path.ISABELLE_HOME): Option[String] = |
|
73520
4cba4e250c28
clarified ISABELLE_ID: distribution vs. hg archive vs. hg repos;
wenzelm
parents:
73445
diff
changeset
|
177 |
{
|
|
4cba4e250c28
clarified ISABELLE_ID: distribution vs. hg archive vs. hg repos;
wenzelm
parents:
73445
diff
changeset
|
178 |
val path = root + Path.basic("etc") + Path.basic(name)
|
|
4cba4e250c28
clarified ISABELLE_ID: distribution vs. hg archive vs. hg repos;
wenzelm
parents:
73445
diff
changeset
|
179 |
if (path.is_file) {
|
|
4cba4e250c28
clarified ISABELLE_ID: distribution vs. hg archive vs. hg repos;
wenzelm
parents:
73445
diff
changeset
|
180 |
Library.trim_split_lines(File.read(path)) match {
|
|
4cba4e250c28
clarified ISABELLE_ID: distribution vs. hg archive vs. hg repos;
wenzelm
parents:
73445
diff
changeset
|
181 |
case Nil => None |
|
4cba4e250c28
clarified ISABELLE_ID: distribution vs. hg archive vs. hg repos;
wenzelm
parents:
73445
diff
changeset
|
182 |
case List(s) => Some(s) |
|
4cba4e250c28
clarified ISABELLE_ID: distribution vs. hg archive vs. hg repos;
wenzelm
parents:
73445
diff
changeset
|
183 |
case _ => error("Single line expected in " + path.absolute)
|
|
4cba4e250c28
clarified ISABELLE_ID: distribution vs. hg archive vs. hg repos;
wenzelm
parents:
73445
diff
changeset
|
184 |
} |
|
4cba4e250c28
clarified ISABELLE_ID: distribution vs. hg archive vs. hg repos;
wenzelm
parents:
73445
diff
changeset
|
185 |
} |
|
4cba4e250c28
clarified ISABELLE_ID: distribution vs. hg archive vs. hg repos;
wenzelm
parents:
73445
diff
changeset
|
186 |
else None |
|
4cba4e250c28
clarified ISABELLE_ID: distribution vs. hg archive vs. hg repos;
wenzelm
parents:
73445
diff
changeset
|
187 |
} |
|
4cba4e250c28
clarified ISABELLE_ID: distribution vs. hg archive vs. hg repos;
wenzelm
parents:
73445
diff
changeset
|
188 |
|
|
4cba4e250c28
clarified ISABELLE_ID: distribution vs. hg archive vs. hg repos;
wenzelm
parents:
73445
diff
changeset
|
189 |
|
| 73521 | 190 |
/* Isabelle distribution identification */ |
|
73520
4cba4e250c28
clarified ISABELLE_ID: distribution vs. hg archive vs. hg repos;
wenzelm
parents:
73445
diff
changeset
|
191 |
|
| 73525 | 192 |
def isabelle_id(root: Path = Path.ISABELLE_HOME): String = |
193 |
getetc("ISABELLE_ID", root = root) orElse Mercurial.archive_id(root) getOrElse {
|
|
194 |
if (Mercurial.is_repository(root)) Mercurial.repository(root).parent() |
|
195 |
else error("Failed to identify Isabelle distribution " + root)
|
|
|
73520
4cba4e250c28
clarified ISABELLE_ID: distribution vs. hg archive vs. hg repos;
wenzelm
parents:
73445
diff
changeset
|
196 |
} |
| 67865 | 197 |
|
| 73565 | 198 |
object Isabelle_Id extends Scala.Fun_String("isabelle_id")
|
|
73523
2cd23d587db9
further clarification of Isabelle distribution identification -- avoid odd patching of sources;
wenzelm
parents:
73522
diff
changeset
|
199 |
{
|
|
2cd23d587db9
further clarification of Isabelle distribution identification -- avoid odd patching of sources;
wenzelm
parents:
73522
diff
changeset
|
200 |
val here = Scala_Project.here |
| 73525 | 201 |
def apply(arg: String): String = isabelle_id() |
|
73523
2cd23d587db9
further clarification of Isabelle distribution identification -- avoid odd patching of sources;
wenzelm
parents:
73522
diff
changeset
|
202 |
} |
|
2cd23d587db9
further clarification of Isabelle distribution identification -- avoid odd patching of sources;
wenzelm
parents:
73522
diff
changeset
|
203 |
|
| 73522 | 204 |
def isabelle_tags(root: Path = Path.ISABELLE_HOME): String = |
| 73521 | 205 |
getetc("ISABELLE_TAGS", root = root) orElse Mercurial.archive_tags(root) getOrElse {
|
206 |
if (Mercurial.is_repository(root)) {
|
|
207 |
val hg = Mercurial.repository(root) |
|
208 |
hg.tags(rev = hg.parent()) |
|
209 |
} |
|
210 |
else "" |
|
211 |
} |
|
| 31796 | 212 |
|
|
73523
2cd23d587db9
further clarification of Isabelle distribution identification -- avoid odd patching of sources;
wenzelm
parents:
73522
diff
changeset
|
213 |
def isabelle_identifier(): Option[String] = proper_string(getenv("ISABELLE_IDENTIFIER"))
|
|
2cd23d587db9
further clarification of Isabelle distribution identification -- avoid odd patching of sources;
wenzelm
parents:
73522
diff
changeset
|
214 |
|
|
2cd23d587db9
further clarification of Isabelle distribution identification -- avoid odd patching of sources;
wenzelm
parents:
73522
diff
changeset
|
215 |
def isabelle_heading(): String = |
|
2cd23d587db9
further clarification of Isabelle distribution identification -- avoid odd patching of sources;
wenzelm
parents:
73522
diff
changeset
|
216 |
isabelle_identifier() match {
|
|
2cd23d587db9
further clarification of Isabelle distribution identification -- avoid odd patching of sources;
wenzelm
parents:
73522
diff
changeset
|
217 |
case None => "" |
|
2cd23d587db9
further clarification of Isabelle distribution identification -- avoid odd patching of sources;
wenzelm
parents:
73522
diff
changeset
|
218 |
case Some(version) => " (" + version + ")"
|
|
2cd23d587db9
further clarification of Isabelle distribution identification -- avoid odd patching of sources;
wenzelm
parents:
73522
diff
changeset
|
219 |
} |
|
2cd23d587db9
further clarification of Isabelle distribution identification -- avoid odd patching of sources;
wenzelm
parents:
73522
diff
changeset
|
220 |
|
|
2cd23d587db9
further clarification of Isabelle distribution identification -- avoid odd patching of sources;
wenzelm
parents:
73522
diff
changeset
|
221 |
def isabelle_name(): String = getenv_strict("ISABELLE_NAME")
|
|
2cd23d587db9
further clarification of Isabelle distribution identification -- avoid odd patching of sources;
wenzelm
parents:
73522
diff
changeset
|
222 |
|
| 73547 | 223 |
def identification(): String = "Isabelle/" + isabelle_id() + isabelle_heading() |
224 |
||
| 54039 | 225 |
|
| 43606 | 226 |
/** file-system operations **/ |
| 31796 | 227 |
|
| 73322 | 228 |
/* scala functions */ |
229 |
||
| 73567 | 230 |
private def apply_paths(args: List[String], fun: List[Path] => Unit): List[String] = |
231 |
{ fun(args.map(Path.explode)); Nil }
|
|
| 73322 | 232 |
|
| 73567 | 233 |
private def apply_paths1(args: List[String], fun: Path => Unit): List[String] = |
234 |
apply_paths(args, { case List(path) => fun(path) })
|
|
| 73322 | 235 |
|
| 73567 | 236 |
private def apply_paths2(args: List[String], fun: (Path, Path) => Unit): List[String] = |
237 |
apply_paths(args, { case List(path1, path2) => fun(path1, path2) })
|
|
| 73322 | 238 |
|
| 73567 | 239 |
private def apply_paths3(args: List[String], fun: (Path, Path, Path) => Unit): List[String] = |
240 |
apply_paths(args, { case List(path1, path2, path3) => fun(path1, path2, path3) })
|
|
| 73322 | 241 |
|
242 |
||
| 71114 | 243 |
/* permissions */ |
244 |
||
245 |
def chmod(arg: String, path: Path): Unit = |
|
| 71123 | 246 |
bash("chmod " + arg + " " + File.bash_path(path)).check
|
| 71114 | 247 |
|
248 |
def chown(arg: String, path: Path): Unit = |
|
| 71123 | 249 |
bash("chown " + arg + " " + File.bash_path(path)).check
|
| 71114 | 250 |
|
251 |
||
| 64189 | 252 |
/* 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
|
253 |
|
| 72376 | 254 |
def make_directory(path: Path): Path = |
255 |
{
|
|
|
73325
a89f56ab2686
more robust (amending 87403fde8cc3): notably allow symlink to existing directory, which Files.createDirectories does not accept;
wenzelm
parents:
73324
diff
changeset
|
256 |
if (!path.is_dir) {
|
|
a89f56ab2686
more robust (amending 87403fde8cc3): notably allow symlink to existing directory, which Files.createDirectories does not accept;
wenzelm
parents:
73324
diff
changeset
|
257 |
try { Files.createDirectories(path.file.toPath) }
|
|
a89f56ab2686
more robust (amending 87403fde8cc3): notably allow symlink to existing directory, which Files.createDirectories does not accept;
wenzelm
parents:
73324
diff
changeset
|
258 |
catch { case ERROR(_) => error("Failed to create directory: " + path.absolute) }
|
|
a89f56ab2686
more robust (amending 87403fde8cc3): notably allow symlink to existing directory, which Files.createDirectories does not accept;
wenzelm
parents:
73324
diff
changeset
|
259 |
} |
| 72376 | 260 |
path |
261 |
} |
|
|
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
|
262 |
|
| 72377 | 263 |
def new_directory(path: Path): Path = |
|
72426
f5d60c12deeb
more standard path output (despite platform_path from d55eb82ae77b);
wenzelm
parents:
72414
diff
changeset
|
264 |
if (path.is_dir) error("Directory already exists: " + path.absolute)
|
| 72377 | 265 |
else make_directory(path) |
266 |
||
| 73322 | 267 |
def copy_dir(dir1: Path, dir2: Path): Unit = |
268 |
{
|
|
269 |
val res = bash("cp -a " + File.bash_path(dir1) + " " + File.bash_path(dir2))
|
|
270 |
if (!res.ok) {
|
|
271 |
cat_error("Failed to copy directory " + dir1.absolute + " to " + dir2.absolute, res.err)
|
|
272 |
} |
|
273 |
} |
|
| 73317 | 274 |
|
275 |
||
| 73567 | 276 |
object Make_Directory extends Scala.Fun_Strings("make_directory")
|
| 73322 | 277 |
{
|
278 |
val here = Scala_Project.here |
|
| 73567 | 279 |
def apply(args: List[String]): List[String] = apply_paths1(args, make_directory) |
| 73322 | 280 |
} |
| 73317 | 281 |
|
| 73567 | 282 |
object Copy_Dir extends Scala.Fun_Strings("copy_dir")
|
| 73322 | 283 |
{
|
284 |
val here = Scala_Project.here |
|
| 73567 | 285 |
def apply(args: List[String]): List[String] = apply_paths2(args, copy_dir) |
| 73322 | 286 |
} |
287 |
||
288 |
||
289 |
/* copy files */ |
|
| 64189 | 290 |
|
| 73317 | 291 |
def copy_file(src: JFile, dst: JFile): Unit = |
292 |
{
|
|
293 |
val target = if (dst.isDirectory) new JFile(dst, src.getName) else dst |
|
| 73319 | 294 |
if (!File.eq(src, target)) {
|
| 73322 | 295 |
try {
|
296 |
Files.copy(src.toPath, target.toPath, |
|
297 |
StandardCopyOption.COPY_ATTRIBUTES, |
|
298 |
StandardCopyOption.REPLACE_EXISTING) |
|
299 |
} |
|
300 |
catch {
|
|
301 |
case ERROR(msg) => |
|
302 |
cat_error("Failed top copy file " +
|
|
303 |
File.path(src).absolute + " to " + File.path(dst).absolute, msg) |
|
304 |
} |
|
| 73317 | 305 |
} |
306 |
} |
|
307 |
||
| 73320 | 308 |
def copy_file(src: Path, dst: Path): Unit = copy_file(src.file, dst.file) |
| 73317 | 309 |
|
| 73320 | 310 |
def copy_file_base(base_dir: Path, src: Path, target_dir: Path): Unit = |
| 73317 | 311 |
{
|
| 73320 | 312 |
val src1 = src.expand |
313 |
val src1_dir = src1.dir |
|
| 73321 | 314 |
if (!src1.starts_basic) error("Illegal path specification " + src1 + " beyond base directory")
|
| 73320 | 315 |
copy_file(base_dir + src1, Isabelle_System.make_directory(target_dir + src1_dir)) |
| 73317 | 316 |
} |
317 |
||
318 |
||
| 73567 | 319 |
object Copy_File extends Scala.Fun_Strings("copy_file")
|
| 73322 | 320 |
{
|
321 |
val here = Scala_Project.here |
|
| 73567 | 322 |
def apply(args: List[String]): List[String] = apply_paths2(args, copy_file) |
| 73322 | 323 |
} |
324 |
||
| 73567 | 325 |
object Copy_File_Base extends Scala.Fun_Strings("copy_file_base")
|
| 73322 | 326 |
{
|
327 |
val here = Scala_Project.here |
|
| 73567 | 328 |
def apply(args: List[String]): List[String] = apply_paths3(args, copy_file_base) |
| 73322 | 329 |
} |
330 |
||
331 |
||
332 |
/* move files */ |
|
| 73317 | 333 |
|
| 73340 | 334 |
def move_file(src: JFile, dst: JFile): Unit = |
| 73317 | 335 |
{
|
336 |
val target = if (dst.isDirectory) new JFile(dst, src.getName) else dst |
|
| 73319 | 337 |
if (!File.eq(src, target)) |
| 73317 | 338 |
Files.move(src.toPath, target.toPath, StandardCopyOption.REPLACE_EXISTING) |
339 |
} |
|
340 |
||
| 73320 | 341 |
def move_file(src: Path, dst: Path): Unit = move_file(src.file, dst.file) |
| 73317 | 342 |
|
343 |
||
344 |
/* symbolic link */ |
|
345 |
||
| 73340 | 346 |
def symlink(src: Path, dst: Path, force: Boolean = false): Unit = |
| 73317 | 347 |
{
|
348 |
val src_file = src.file |
|
349 |
val dst_file = dst.file |
|
350 |
val target = if (dst_file.isDirectory) new JFile(dst_file, src_file.getName) else dst_file |
|
351 |
||
352 |
if (force) target.delete |
|
353 |
||
354 |
try { Files.createSymbolicLink(target.toPath, src_file.toPath) }
|
|
355 |
catch {
|
|
356 |
case _: UnsupportedOperationException if Platform.is_windows => |
|
357 |
Cygwin.link(File.standard_path(src), target) |
|
358 |
case _: FileSystemException if Platform.is_windows => |
|
359 |
Cygwin.link(File.standard_path(src), target) |
|
360 |
} |
|
361 |
} |
|
362 |
||
|
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
|
363 |
|
|
56428
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents:
55876
diff
changeset
|
364 |
/* tmp files */ |
|
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents:
55876
diff
changeset
|
365 |
|
|
71569
391ea80ff27c
more robust re-use of $ISABELLE_TMP_PREFIX (amending c1597167563e);
wenzelm
parents:
71520
diff
changeset
|
366 |
def 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
|
367 |
{
|
|
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents:
55876
diff
changeset
|
368 |
val path = Path.explode("$ISABELLE_TMP_PREFIX")
|
| 72375 | 369 |
path.file.mkdirs // low-level mkdirs to avoid recursion via Isabelle environment |
| 60988 | 370 |
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
|
371 |
} |
|
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents:
55876
diff
changeset
|
372 |
|
| 67924 | 373 |
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
|
374 |
{
|
|
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents:
55876
diff
changeset
|
375 |
val suffix = if (ext == "") "" else "." + ext |
| 67924 | 376 |
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
|
377 |
file.deleteOnExit |
|
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents:
55876
diff
changeset
|
378 |
file |
|
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents:
55876
diff
changeset
|
379 |
} |
|
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents:
55876
diff
changeset
|
380 |
|
| 64220 | 381 |
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
|
382 |
{
|
|
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents:
55876
diff
changeset
|
383 |
val file = tmp_file(name, ext) |
| 64220 | 384 |
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
|
385 |
} |
|
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents:
55876
diff
changeset
|
386 |
|
|
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents:
55876
diff
changeset
|
387 |
|
| 56477 | 388 |
/* tmp dirs */ |
389 |
||
| 73324 | 390 |
def rm_tree(root: JFile): Unit = |
| 56477 | 391 |
{
|
392 |
root.delete |
|
393 |
if (root.isDirectory) {
|
|
394 |
Files.walkFileTree(root.toPath, |
|
395 |
new SimpleFileVisitor[JPath] {
|
|
396 |
override def visitFile(file: JPath, attrs: BasicFileAttributes): FileVisitResult = |
|
397 |
{
|
|
|
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
|
398 |
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
|
399 |
catch { case _: IOException => }
|
| 56477 | 400 |
FileVisitResult.CONTINUE |
401 |
} |
|
402 |
||
403 |
override def postVisitDirectory(dir: JPath, e: IOException): FileVisitResult = |
|
404 |
{
|
|
405 |
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
|
406 |
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
|
407 |
catch { case _: IOException => }
|
| 56477 | 408 |
FileVisitResult.CONTINUE |
409 |
} |
|
410 |
else throw e |
|
411 |
} |
|
412 |
} |
|
413 |
) |
|
414 |
} |
|
415 |
} |
|
416 |
||
| 73324 | 417 |
def rm_tree(root: Path): Unit = rm_tree(root.file) |
418 |
||
| 73567 | 419 |
object Rm_Tree extends Scala.Fun_Strings("rm_tree")
|
| 73324 | 420 |
{
|
421 |
val here = Scala_Project.here |
|
| 73567 | 422 |
def apply(args: List[String]): List[String] = apply_paths1(args, rm_tree) |
| 73324 | 423 |
} |
424 |
||
| 67924 | 425 |
def tmp_dir(name: String, base_dir: JFile = isabelle_tmp_prefix()): JFile = |
| 56477 | 426 |
{
|
| 67924 | 427 |
val dir = Files.createTempDirectory(base_dir.toPath, name).toFile |
| 56477 | 428 |
dir.deleteOnExit |
429 |
dir |
|
430 |
} |
|
431 |
||
| 64220 | 432 |
def with_tmp_dir[A](name: String)(body: Path => A): A = |
| 56477 | 433 |
{
|
434 |
val dir = tmp_dir(name) |
|
| 64220 | 435 |
try { body(File.path(dir)) } finally { rm_tree(dir) }
|
| 56477 | 436 |
} |
437 |
||
438 |
||
| 65793 | 439 |
/* quasi-atomic update of directory */ |
440 |
||
| 73340 | 441 |
def update_directory(dir: Path, f: Path => Unit): Unit = |
| 65793 | 442 |
{
|
443 |
val new_dir = dir.ext("new")
|
|
444 |
val old_dir = dir.ext("old")
|
|
445 |
||
446 |
rm_tree(new_dir) |
|
447 |
rm_tree(old_dir) |
|
448 |
||
449 |
f(new_dir) |
|
450 |
||
| 73317 | 451 |
if (dir.is_dir) move_file(dir, old_dir) |
452 |
move_file(new_dir, dir) |
|
| 65793 | 453 |
rm_tree(old_dir) |
454 |
} |
|
455 |
||
456 |
||
| 62613 | 457 |
|
458 |
/** external processes **/ |
|
459 |
||
460 |
/* raw process */ |
|
461 |
||
462 |
def process(command_line: List[String], |
|
463 |
cwd: JFile = null, |
|
464 |
env: Map[String, String] = settings(), |
|
465 |
redirect: Boolean = false): Process = |
|
466 |
{
|
|
467 |
val proc = new ProcessBuilder |
|
468 |
proc.command(command_line:_*) // fragile on Windows |
|
469 |
if (cwd != null) proc.directory(cwd) |
|
|
64021
1e23caac8757
basic setup for Admin/build_history -- outside of Isabelle environment;
wenzelm
parents:
63687
diff
changeset
|
470 |
if (env != null) {
|
| 73367 | 471 |
proc.environment.clear() |
|
64021
1e23caac8757
basic setup for Admin/build_history -- outside of Isabelle environment;
wenzelm
parents:
63687
diff
changeset
|
472 |
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
|
473 |
} |
| 62613 | 474 |
proc.redirectErrorStream(redirect) |
475 |
proc.start |
|
476 |
} |
|
477 |
||
478 |
def process_output(proc: Process): (String, Int) = |
|
479 |
{
|
|
| 73367 | 480 |
proc.getOutputStream.close() |
| 62613 | 481 |
|
482 |
val output = File.read_stream(proc.getInputStream) |
|
483 |
val rc = |
|
484 |
try { proc.waitFor }
|
|
485 |
finally {
|
|
| 73367 | 486 |
proc.getInputStream.close() |
487 |
proc.getErrorStream.close() |
|
488 |
proc.destroy() |
|
| 71700 | 489 |
Exn.Interrupt.dispose() |
| 62613 | 490 |
} |
491 |
(output, rc) |
|
492 |
} |
|
| 61025 | 493 |
|
494 |
def kill(signal: String, group_pid: String): (String, Int) = |
|
495 |
{
|
|
496 |
val bash = |
|
| 61291 | 497 |
if (Platform.is_windows) List(cygwin_root() + "\\bin\\bash.exe") |
| 61025 | 498 |
else List("/usr/bin/env", "bash")
|
|
62610
4c89504c76fb
more uniform signature for various process invocations;
wenzelm
parents:
62602
diff
changeset
|
499 |
process_output(process(bash ::: List("-c", "kill -" + signal + " -" + group_pid)))
|
| 61025 | 500 |
} |
501 |
||
502 |
||
| 62613 | 503 |
/* GNU bash */ |
| 31796 | 504 |
|
|
62610
4c89504c76fb
more uniform signature for various process invocations;
wenzelm
parents:
62602
diff
changeset
|
505 |
def bash(script: String, |
|
4c89504c76fb
more uniform signature for various process invocations;
wenzelm
parents:
62602
diff
changeset
|
506 |
cwd: JFile = null, |
|
4c89504c76fb
more uniform signature for various process invocations;
wenzelm
parents:
62602
diff
changeset
|
507 |
env: Map[String, String] = settings(), |
|
4c89504c76fb
more uniform signature for various process invocations;
wenzelm
parents:
62602
diff
changeset
|
508 |
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
|
509 |
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
|
510 |
progress_stderr: String => Unit = (_: String) => (), |
| 72598 | 511 |
watchdog: Option[Bash.Watchdog] = None, |
| 62602 | 512 |
strict: Boolean = true, |
513 |
cleanup: () => Unit = () => ()): Process_Result = |
|
|
34198
ff5486262cd6
moved Library.decode_permissive_utf8 to Isabelle_System;
wenzelm
parents:
34196
diff
changeset
|
514 |
{
|
|
62610
4c89504c76fb
more uniform signature for various process invocations;
wenzelm
parents:
62602
diff
changeset
|
515 |
Bash.process(script, cwd = cwd, env = env, redirect = redirect, cleanup = cleanup). |
| 72598 | 516 |
result(progress_stdout = progress_stdout, progress_stderr = progress_stderr, |
517 |
watchdog = watchdog, strict = strict) |
|
|
34198
ff5486262cd6
moved Library.decode_permissive_utf8 to Isabelle_System;
wenzelm
parents:
34196
diff
changeset
|
518 |
} |
|
ff5486262cd6
moved Library.decode_permissive_utf8 to Isabelle_System;
wenzelm
parents:
34196
diff
changeset
|
519 |
|
|
64935
9437a117408b
insist in proper GNU tar, to avoid subtle semantic differences;
wenzelm
parents:
64657
diff
changeset
|
520 |
private lazy val gnutar_check: Boolean = |
|
9437a117408b
insist in proper GNU tar, to avoid subtle semantic differences;
wenzelm
parents:
64657
diff
changeset
|
521 |
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
|
522 |
catch { case ERROR(_) => false }
|
|
9437a117408b
insist in proper GNU tar, to avoid subtle semantic differences;
wenzelm
parents:
64657
diff
changeset
|
523 |
|
| 69425 | 524 |
def gnutar( |
525 |
args: String, |
|
526 |
dir: Path = Path.current, |
|
527 |
original_owner: Boolean = false, |
|
528 |
redirect: Boolean = false): Process_Result = |
|
|
64935
9437a117408b
insist in proper GNU tar, to avoid subtle semantic differences;
wenzelm
parents:
64657
diff
changeset
|
529 |
{
|
| 69425 | 530 |
val options = |
531 |
(if (dir.is_current) "" else "-C " + File.bash_path(dir) + " ") + |
|
532 |
(if (original_owner) "" else "--owner=root --group=staff ") |
|
533 |
||
534 |
if (gnutar_check) bash("tar " + options + args, redirect = redirect)
|
|
|
64935
9437a117408b
insist in proper GNU tar, to avoid subtle semantic differences;
wenzelm
parents:
64657
diff
changeset
|
535 |
else error("Expected to find GNU tar executable")
|
|
9437a117408b
insist in proper GNU tar, to avoid subtle semantic differences;
wenzelm
parents:
64657
diff
changeset
|
536 |
} |
|
9437a117408b
insist in proper GNU tar, to avoid subtle semantic differences;
wenzelm
parents:
64657
diff
changeset
|
537 |
|
| 73340 | 538 |
def require_command(cmds: String*): Unit = |
| 72455 | 539 |
{
|
540 |
for (cmd <- cmds) {
|
|
| 73445 | 541 |
if (!bash(Bash.string(cmd) + " --version").ok) error("Missing system command: " + quote(cmd))
|
| 72455 | 542 |
} |
543 |
} |
|
544 |
||
| 64152 | 545 |
def hostname(): String = bash("hostname -s").check.out
|
| 64139 | 546 |
|
| 54690 | 547 |
def open(arg: String): Unit = |
| 64304 | 548 |
bash("exec \"$ISABELLE_OPEN\" " + Bash.string(arg) + " >/dev/null 2>/dev/null &")
|
| 54690 | 549 |
|
550 |
def pdf_viewer(arg: Path): Unit = |
|
| 62616 | 551 |
bash("exec \"$PDF_VIEWER\" " + File.bash_path(arg) + " >/dev/null 2>/dev/null &")
|
| 54690 | 552 |
|
|
73224
49686e3b1909
clarified links to external files, e.g. .pdf within .thy source document;
wenzelm
parents:
72976
diff
changeset
|
553 |
def open_external_file(name: String): Boolean = |
|
49686e3b1909
clarified links to external files, e.g. .pdf within .thy source document;
wenzelm
parents:
72976
diff
changeset
|
554 |
{
|
|
49686e3b1909
clarified links to external files, e.g. .pdf within .thy source document;
wenzelm
parents:
72976
diff
changeset
|
555 |
val ext = Library.take_suffix((c: Char) => c != '.', name.toList)._2.mkString |
|
49686e3b1909
clarified links to external files, e.g. .pdf within .thy source document;
wenzelm
parents:
72976
diff
changeset
|
556 |
val external = |
|
49686e3b1909
clarified links to external files, e.g. .pdf within .thy source document;
wenzelm
parents:
72976
diff
changeset
|
557 |
ext.nonEmpty && |
|
49686e3b1909
clarified links to external files, e.g. .pdf within .thy source document;
wenzelm
parents:
72976
diff
changeset
|
558 |
Library.space_explode(':', getenv("ISABELLE_EXTERNAL_FILES")).contains(ext)
|
|
49686e3b1909
clarified links to external files, e.g. .pdf within .thy source document;
wenzelm
parents:
72976
diff
changeset
|
559 |
if (external) {
|
|
49686e3b1909
clarified links to external files, e.g. .pdf within .thy source document;
wenzelm
parents:
72976
diff
changeset
|
560 |
if (ext == "pdf" && Path.is_wellformed(name)) pdf_viewer(Path.explode(name)) |
|
49686e3b1909
clarified links to external files, e.g. .pdf within .thy source document;
wenzelm
parents:
72976
diff
changeset
|
561 |
else open(name) |
|
49686e3b1909
clarified links to external files, e.g. .pdf within .thy source document;
wenzelm
parents:
72976
diff
changeset
|
562 |
} |
|
49686e3b1909
clarified links to external files, e.g. .pdf within .thy source document;
wenzelm
parents:
72976
diff
changeset
|
563 |
external |
|
49686e3b1909
clarified links to external files, e.g. .pdf within .thy source document;
wenzelm
parents:
72976
diff
changeset
|
564 |
} |
|
49686e3b1909
clarified links to external files, e.g. .pdf within .thy source document;
wenzelm
parents:
72976
diff
changeset
|
565 |
|
| 65916 | 566 |
def export_isabelle_identifier(isabelle_identifier: String): String = |
567 |
if (isabelle_identifier == "") "" |
|
568 |
else "export ISABELLE_IDENTIFIER=" + Bash.string(isabelle_identifier) + "\n" |
|
569 |
||
| 32450 | 570 |
|
| 31796 | 571 |
/** Isabelle resources **/ |
572 |
||
| 64161 | 573 |
/* repository clone with Admin */ |
574 |
||
575 |
def admin(): Boolean = Path.explode("~~/Admin").is_dir
|
|
576 |
||
577 |
||
| 32328 | 578 |
/* components */ |
579 |
||
| 43669 | 580 |
def components(): List[Path] = |
581 |
Path.split(getenv_strict("ISABELLE_COMPONENTS"))
|
|
| 32328 | 582 |
|
583 |
||
| 62633 | 584 |
/* default logic */ |
| 48503 | 585 |
|
|
50403
87868964733c
more uniform default logic, using settings, options, args etc.;
wenzelm
parents:
50298
diff
changeset
|
586 |
def default_logic(args: String*): String = |
|
87868964733c
more uniform default logic, using settings, options, args etc.;
wenzelm
parents:
50298
diff
changeset
|
587 |
{
|
|
87868964733c
more uniform default logic, using settings, options, args etc.;
wenzelm
parents:
50298
diff
changeset
|
588 |
args.find(_ != "") match {
|
|
87868964733c
more uniform default logic, using settings, options, args etc.;
wenzelm
parents:
50298
diff
changeset
|
589 |
case Some(logic) => logic |
| 73317 | 590 |
case None => getenv_strict("ISABELLE_LOGIC")
|
|
50403
87868964733c
more uniform default logic, using settings, options, args etc.;
wenzelm
parents:
50298
diff
changeset
|
591 |
} |
|
87868964733c
more uniform default logic, using settings, options, args etc.;
wenzelm
parents:
50298
diff
changeset
|
592 |
} |
| 73323 | 593 |
|
594 |
||
595 |
/* download file */ |
|
596 |
||
| 73566 | 597 |
def download(url_name: String, progress: Progress = new Progress): HTTP.Content = |
| 73323 | 598 |
{
|
| 73335 | 599 |
val url = Url(url_name) |
600 |
progress.echo("Getting " + quote(url_name))
|
|
| 73566 | 601 |
try { HTTP.Client.get(url) }
|
602 |
catch { case ERROR(msg) => cat_error("Failed to download " + quote(url_name), msg) }
|
|
| 73323 | 603 |
} |
604 |
||
| 73566 | 605 |
def download_file(url_name: String, file: Path, progress: Progress = new Progress): Unit = |
606 |
Bytes.write(file, download(url_name, progress = progress).bytes) |
|
607 |
||
608 |
object Download extends Scala.Fun("download", thread = true)
|
|
| 73323 | 609 |
{
|
610 |
val here = Scala_Project.here |
|
| 73566 | 611 |
override def invoke(args: List[Bytes]): List[Bytes] = |
612 |
args match { case List(url) => List(download(url.text).bytes) }
|
|
| 73323 | 613 |
} |
| 27919 | 614 |
} |