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