| author | wenzelm | 
| Thu, 21 Apr 2022 10:07:17 +0200 | |
| changeset 75441 | 400e325a5416 | 
| parent 75439 | e1c9e4d59921 | 
| child 75468 | a1c7829ac2de | 
| permissions | -rw-r--r-- | 
| 30175 | 1 | /* Title: Pure/System/isabelle_system.scala | 
| 27919 | 2 | Author: Makarius | 
| 3 | ||
| 73890 | 4 | Miscellaneous Isabelle system operations. | 
| 27919 | 5 | */ | 
| 6 | ||
| 7 | package isabelle | |
| 8 | ||
| 55618 | 9 | |
| 74146 | 10 | import java.util.{Map => JMap, HashMap}
 | 
| 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 | |
| 73987 
fc363a3b690a
build.props for isabelle.jar, including isabelle.jedit;
 wenzelm parents: 
73945diff
changeset | 16 | import scala.jdk.CollectionConverters._ | 
| 
fc363a3b690a
build.props for isabelle.jar, including isabelle.jedit;
 wenzelm parents: 
73945diff
changeset | 17 | |
| 27919 | 18 | |
| 75393 | 19 | object Isabelle_System {
 | 
| 75218 | 20 | /* settings environment */ | 
| 56477 | 21 | |
| 75393 | 22 |   def settings(putenv: List[(String, String)] = Nil): JMap[String, String] = {
 | 
| 74146 | 23 | val env0 = isabelle.setup.Environment.settings() | 
| 24 | if (putenv.isEmpty) env0 | |
| 25 |     else {
 | |
| 26 | val env = new HashMap(env0) | |
| 27 | for ((a, b) <- putenv) env.put(a, b) | |
| 28 | env | |
| 29 | } | |
| 30 | } | |
| 71739 | 31 | |
| 73897 | 32 | def getenv(name: String, env: JMap[String, String] = settings()): String = | 
| 33 |     Option(env.get(name)).getOrElse("")
 | |
| 31498 | 34 | |
| 73897 | 35 | def getenv_strict(name: String, env: JMap[String, String] = settings()): String = | 
| 65717 | 36 | proper_string(getenv(name, env)) getOrElse | 
| 37 |       error("Undefined Isabelle environment variable: " + quote(name))
 | |
| 27919 | 38 | |
| 73520 
4cba4e250c28
clarified ISABELLE_ID: distribution vs. hg archive vs. hg repos;
 wenzelm parents: 
73445diff
changeset | 39 | |
| 73891 
6c9044f04756
clarified modules (again): services require full Isabelle/Scala environment;
 wenzelm parents: 
73890diff
changeset | 40 | /* services */ | 
| 
6c9044f04756
clarified modules (again): services require full Isabelle/Scala environment;
 wenzelm parents: 
73890diff
changeset | 41 | |
| 
6c9044f04756
clarified modules (again): services require full Isabelle/Scala environment;
 wenzelm parents: 
73890diff
changeset | 42 | abstract class Service | 
| 
6c9044f04756
clarified modules (again): services require full Isabelle/Scala environment;
 wenzelm parents: 
73890diff
changeset | 43 | |
| 
6c9044f04756
clarified modules (again): services require full Isabelle/Scala environment;
 wenzelm parents: 
73890diff
changeset | 44 | @volatile private var _services: Option[List[Class[Service]]] = None | 
| 
6c9044f04756
clarified modules (again): services require full Isabelle/Scala environment;
 wenzelm parents: 
73890diff
changeset | 45 | |
| 75393 | 46 |   def services(): List[Class[Service]] = {
 | 
| 73891 
6c9044f04756
clarified modules (again): services require full Isabelle/Scala environment;
 wenzelm parents: 
73890diff
changeset | 47 | if (_services.isEmpty) init() // unsynchronized check | 
| 
6c9044f04756
clarified modules (again): services require full Isabelle/Scala environment;
 wenzelm parents: 
73890diff
changeset | 48 | _services.get | 
| 
6c9044f04756
clarified modules (again): services require full Isabelle/Scala environment;
 wenzelm parents: 
73890diff
changeset | 49 | } | 
| 
6c9044f04756
clarified modules (again): services require full Isabelle/Scala environment;
 wenzelm parents: 
73890diff
changeset | 50 | |
| 
6c9044f04756
clarified modules (again): services require full Isabelle/Scala environment;
 wenzelm parents: 
73890diff
changeset | 51 | def make_services[C](c: Class[C]): List[C] = | 
| 
6c9044f04756
clarified modules (again): services require full Isabelle/Scala environment;
 wenzelm parents: 
73890diff
changeset | 52 |     for { c1 <- services() if Library.is_subclass(c1, c) }
 | 
| 
6c9044f04756
clarified modules (again): services require full Isabelle/Scala environment;
 wenzelm parents: 
73890diff
changeset | 53 | yield c1.getDeclaredConstructor().newInstance().asInstanceOf[C] | 
| 
6c9044f04756
clarified modules (again): services require full Isabelle/Scala environment;
 wenzelm parents: 
73890diff
changeset | 54 | |
| 
6c9044f04756
clarified modules (again): services require full Isabelle/Scala environment;
 wenzelm parents: 
73890diff
changeset | 55 | |
| 
6c9044f04756
clarified modules (again): services require full Isabelle/Scala environment;
 wenzelm parents: 
73890diff
changeset | 56 | /* init settings + services */ | 
| 
6c9044f04756
clarified modules (again): services require full Isabelle/Scala environment;
 wenzelm parents: 
73890diff
changeset | 57 | |
| 75393 | 58 |   def make_services(): List[Class[Service]] = {
 | 
| 59 |     def make(where: String, names: List[String]): List[Class[Service]] = {
 | |
| 73987 
fc363a3b690a
build.props for isabelle.jar, including isabelle.jedit;
 wenzelm parents: 
73945diff
changeset | 60 |       for (name <- names) yield {
 | 
| 
fc363a3b690a
build.props for isabelle.jar, including isabelle.jedit;
 wenzelm parents: 
73945diff
changeset | 61 | def err(msg: String): Nothing = | 
| 
fc363a3b690a
build.props for isabelle.jar, including isabelle.jedit;
 wenzelm parents: 
73945diff
changeset | 62 |           error("Bad Isabelle/Scala service " + quote(name) + " in " + where + "\n" + msg)
 | 
| 
fc363a3b690a
build.props for isabelle.jar, including isabelle.jedit;
 wenzelm parents: 
73945diff
changeset | 63 |         try { Class.forName(name).asInstanceOf[Class[Service]] }
 | 
| 
fc363a3b690a
build.props for isabelle.jar, including isabelle.jedit;
 wenzelm parents: 
73945diff
changeset | 64 |         catch {
 | 
| 
fc363a3b690a
build.props for isabelle.jar, including isabelle.jedit;
 wenzelm parents: 
73945diff
changeset | 65 |           case _: ClassNotFoundException => err("Class not found")
 | 
| 
fc363a3b690a
build.props for isabelle.jar, including isabelle.jedit;
 wenzelm parents: 
73945diff
changeset | 66 | case exn: Throwable => err(Exn.message(exn)) | 
| 
fc363a3b690a
build.props for isabelle.jar, including isabelle.jedit;
 wenzelm parents: 
73945diff
changeset | 67 | } | 
| 
fc363a3b690a
build.props for isabelle.jar, including isabelle.jedit;
 wenzelm parents: 
73945diff
changeset | 68 | } | 
| 
fc363a3b690a
build.props for isabelle.jar, including isabelle.jedit;
 wenzelm parents: 
73945diff
changeset | 69 | } | 
| 
fc363a3b690a
build.props for isabelle.jar, including isabelle.jedit;
 wenzelm parents: 
73945diff
changeset | 70 | |
| 
fc363a3b690a
build.props for isabelle.jar, including isabelle.jedit;
 wenzelm parents: 
73945diff
changeset | 71 | def from_env(variable: String): List[Class[Service]] = | 
| 
fc363a3b690a
build.props for isabelle.jar, including isabelle.jedit;
 wenzelm parents: 
73945diff
changeset | 72 |       make(quote(variable), space_explode(':', getenv_strict(variable)))
 | 
| 
fc363a3b690a
build.props for isabelle.jar, including isabelle.jedit;
 wenzelm parents: 
73945diff
changeset | 73 | |
| 
fc363a3b690a
build.props for isabelle.jar, including isabelle.jedit;
 wenzelm parents: 
73945diff
changeset | 74 | def from_jar(platform_jar: String): List[Class[Service]] = | 
| 
fc363a3b690a
build.props for isabelle.jar, including isabelle.jedit;
 wenzelm parents: 
73945diff
changeset | 75 | make(quote(platform_jar), | 
| 
fc363a3b690a
build.props for isabelle.jar, including isabelle.jedit;
 wenzelm parents: 
73945diff
changeset | 76 | isabelle.setup.Build.get_services(JPath.of(platform_jar)).asScala.toList) | 
| 
fc363a3b690a
build.props for isabelle.jar, including isabelle.jedit;
 wenzelm parents: 
73945diff
changeset | 77 | |
| 
fc363a3b690a
build.props for isabelle.jar, including isabelle.jedit;
 wenzelm parents: 
73945diff
changeset | 78 |     from_env("ISABELLE_SCALA_SERVICES") ::: Scala.class_path().flatMap(from_jar)
 | 
| 
fc363a3b690a
build.props for isabelle.jar, including isabelle.jedit;
 wenzelm parents: 
73945diff
changeset | 79 | } | 
| 
fc363a3b690a
build.props for isabelle.jar, including isabelle.jedit;
 wenzelm parents: 
73945diff
changeset | 80 | |
| 75393 | 81 |   def init(isabelle_root: String = "", cygwin_root: String = ""): Unit = {
 | 
| 73906 | 82 | isabelle.setup.Environment.init(isabelle_root, cygwin_root) | 
| 73987 
fc363a3b690a
build.props for isabelle.jar, including isabelle.jedit;
 wenzelm parents: 
73945diff
changeset | 83 |     synchronized { if (_services.isEmpty) { _services = Some(make_services()) } }
 | 
| 73891 
6c9044f04756
clarified modules (again): services require full Isabelle/Scala environment;
 wenzelm parents: 
73890diff
changeset | 84 | } | 
| 
6c9044f04756
clarified modules (again): services require full Isabelle/Scala environment;
 wenzelm parents: 
73890diff
changeset | 85 | |
| 
6c9044f04756
clarified modules (again): services require full Isabelle/Scala environment;
 wenzelm parents: 
73890diff
changeset | 86 | |
| 73520 
4cba4e250c28
clarified ISABELLE_ID: distribution vs. hg archive vs. hg repos;
 wenzelm parents: 
73445diff
changeset | 87 | /* getetc -- static distribution parameters */ | 
| 
4cba4e250c28
clarified ISABELLE_ID: distribution vs. hg archive vs. hg repos;
 wenzelm parents: 
73445diff
changeset | 88 | |
| 75393 | 89 |   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: 
73445diff
changeset | 90 |     val path = root + Path.basic("etc") + Path.basic(name)
 | 
| 
4cba4e250c28
clarified ISABELLE_ID: distribution vs. hg archive vs. hg repos;
 wenzelm parents: 
73445diff
changeset | 91 |     if (path.is_file) {
 | 
| 
4cba4e250c28
clarified ISABELLE_ID: distribution vs. hg archive vs. hg repos;
 wenzelm parents: 
73445diff
changeset | 92 |       Library.trim_split_lines(File.read(path)) match {
 | 
| 
4cba4e250c28
clarified ISABELLE_ID: distribution vs. hg archive vs. hg repos;
 wenzelm parents: 
73445diff
changeset | 93 | case Nil => None | 
| 
4cba4e250c28
clarified ISABELLE_ID: distribution vs. hg archive vs. hg repos;
 wenzelm parents: 
73445diff
changeset | 94 | case List(s) => Some(s) | 
| 
4cba4e250c28
clarified ISABELLE_ID: distribution vs. hg archive vs. hg repos;
 wenzelm parents: 
73445diff
changeset | 95 |         case _ => error("Single line expected in " + path.absolute)
 | 
| 
4cba4e250c28
clarified ISABELLE_ID: distribution vs. hg archive vs. hg repos;
 wenzelm parents: 
73445diff
changeset | 96 | } | 
| 
4cba4e250c28
clarified ISABELLE_ID: distribution vs. hg archive vs. hg repos;
 wenzelm parents: 
73445diff
changeset | 97 | } | 
| 
4cba4e250c28
clarified ISABELLE_ID: distribution vs. hg archive vs. hg repos;
 wenzelm parents: 
73445diff
changeset | 98 | else None | 
| 
4cba4e250c28
clarified ISABELLE_ID: distribution vs. hg archive vs. hg repos;
 wenzelm parents: 
73445diff
changeset | 99 | } | 
| 
4cba4e250c28
clarified ISABELLE_ID: distribution vs. hg archive vs. hg repos;
 wenzelm parents: 
73445diff
changeset | 100 | |
| 
4cba4e250c28
clarified ISABELLE_ID: distribution vs. hg archive vs. hg repos;
 wenzelm parents: 
73445diff
changeset | 101 | |
| 73521 | 102 | /* Isabelle distribution identification */ | 
| 73520 
4cba4e250c28
clarified ISABELLE_ID: distribution vs. hg archive vs. hg repos;
 wenzelm parents: 
73445diff
changeset | 103 | |
| 73525 | 104 | def isabelle_id(root: Path = Path.ISABELLE_HOME): String = | 
| 105 |     getetc("ISABELLE_ID", root = root) orElse Mercurial.archive_id(root) getOrElse {
 | |
| 106 | if (Mercurial.is_repository(root)) Mercurial.repository(root).parent() | |
| 74268 | 107 |       else error("Failed to identify Isabelle distribution " + root.expand)
 | 
| 73520 
4cba4e250c28
clarified ISABELLE_ID: distribution vs. hg archive vs. hg repos;
 wenzelm parents: 
73445diff
changeset | 108 | } | 
| 67865 | 109 | |
| 75393 | 110 |   object Isabelle_Id extends Scala.Fun_String("isabelle_id") {
 | 
| 73523 
2cd23d587db9
further clarification of Isabelle distribution identification -- avoid odd patching of sources;
 wenzelm parents: 
73522diff
changeset | 111 | val here = Scala_Project.here | 
| 73525 | 112 | def apply(arg: String): String = isabelle_id() | 
| 73523 
2cd23d587db9
further clarification of Isabelle distribution identification -- avoid odd patching of sources;
 wenzelm parents: 
73522diff
changeset | 113 | } | 
| 
2cd23d587db9
further clarification of Isabelle distribution identification -- avoid odd patching of sources;
 wenzelm parents: 
73522diff
changeset | 114 | |
| 73522 | 115 | def isabelle_tags(root: Path = Path.ISABELLE_HOME): String = | 
| 73521 | 116 |     getetc("ISABELLE_TAGS", root = root) orElse Mercurial.archive_tags(root) getOrElse {
 | 
| 117 |       if (Mercurial.is_repository(root)) {
 | |
| 118 | val hg = Mercurial.repository(root) | |
| 119 | hg.tags(rev = hg.parent()) | |
| 120 | } | |
| 121 | else "" | |
| 122 | } | |
| 31796 | 123 | |
| 75218 | 124 | def export_isabelle_identifier(isabelle_identifier: String): String = | 
| 125 | if (isabelle_identifier == "") "" | |
| 126 | else "export ISABELLE_IDENTIFIER=" + Bash.string(isabelle_identifier) + "\n" | |
| 127 | ||
| 73523 
2cd23d587db9
further clarification of Isabelle distribution identification -- avoid odd patching of sources;
 wenzelm parents: 
73522diff
changeset | 128 |   def isabelle_identifier(): Option[String] = proper_string(getenv("ISABELLE_IDENTIFIER"))
 | 
| 
2cd23d587db9
further clarification of Isabelle distribution identification -- avoid odd patching of sources;
 wenzelm parents: 
73522diff
changeset | 129 | |
| 
2cd23d587db9
further clarification of Isabelle distribution identification -- avoid odd patching of sources;
 wenzelm parents: 
73522diff
changeset | 130 | def isabelle_heading(): String = | 
| 
2cd23d587db9
further clarification of Isabelle distribution identification -- avoid odd patching of sources;
 wenzelm parents: 
73522diff
changeset | 131 |     isabelle_identifier() match {
 | 
| 
2cd23d587db9
further clarification of Isabelle distribution identification -- avoid odd patching of sources;
 wenzelm parents: 
73522diff
changeset | 132 | case None => "" | 
| 
2cd23d587db9
further clarification of Isabelle distribution identification -- avoid odd patching of sources;
 wenzelm parents: 
73522diff
changeset | 133 |       case Some(version) => " (" + version + ")"
 | 
| 
2cd23d587db9
further clarification of Isabelle distribution identification -- avoid odd patching of sources;
 wenzelm parents: 
73522diff
changeset | 134 | } | 
| 
2cd23d587db9
further clarification of Isabelle distribution identification -- avoid odd patching of sources;
 wenzelm parents: 
73522diff
changeset | 135 | |
| 
2cd23d587db9
further clarification of Isabelle distribution identification -- avoid odd patching of sources;
 wenzelm parents: 
73522diff
changeset | 136 |   def isabelle_name(): String = getenv_strict("ISABELLE_NAME")
 | 
| 
2cd23d587db9
further clarification of Isabelle distribution identification -- avoid odd patching of sources;
 wenzelm parents: 
73522diff
changeset | 137 | |
| 74336 
7bb0ac635397
permissive identification, e.g. relevant for HOL-SPARK examples running on rsync-clone;
 wenzelm parents: 
74268diff
changeset | 138 | def identification(): String = | 
| 
7bb0ac635397
permissive identification, e.g. relevant for HOL-SPARK examples running on rsync-clone;
 wenzelm parents: 
74268diff
changeset | 139 |     "Isabelle" + (try { "/" + isabelle_id () } catch { case ERROR(_) => "" }) + isabelle_heading()
 | 
| 73547 | 140 | |
| 54039 | 141 | |
| 43606 | 142 | /** file-system operations **/ | 
| 31796 | 143 | |
| 73322 | 144 | /* scala functions */ | 
| 145 | ||
| 75437 | 146 | private def apply_paths( | 
| 147 | args: List[String], | |
| 148 | fun: PartialFunction[List[Path], Unit] | |
| 149 |   ): List[String] = {
 | |
| 75393 | 150 | fun(args.map(Path.explode)) | 
| 151 | Nil | |
| 152 | } | |
| 73322 | 153 | |
| 73567 | 154 | private def apply_paths1(args: List[String], fun: Path => Unit): List[String] = | 
| 75437 | 155 |     apply_paths(args, { case List(path) => fun(path) })
 | 
| 73322 | 156 | |
| 73567 | 157 | private def apply_paths2(args: List[String], fun: (Path, Path) => Unit): List[String] = | 
| 75437 | 158 |     apply_paths(args, { case List(path1, path2) => fun(path1, path2) })
 | 
| 73322 | 159 | |
| 73567 | 160 | private def apply_paths3(args: List[String], fun: (Path, Path, Path) => Unit): List[String] = | 
| 75437 | 161 |     apply_paths(args, { case List(path1, path2, path3) => fun(path1, path2, path3) })
 | 
| 73322 | 162 | |
| 163 | ||
| 71114 | 164 | /* permissions */ | 
| 165 | ||
| 166 | def chmod(arg: String, path: Path): Unit = | |
| 71123 | 167 |     bash("chmod " + arg + " " + File.bash_path(path)).check
 | 
| 71114 | 168 | |
| 169 | def chown(arg: String, path: Path): Unit = | |
| 71123 | 170 |     bash("chown " + arg + " " + File.bash_path(path)).check
 | 
| 71114 | 171 | |
| 172 | ||
| 64189 | 173 | /* directories */ | 
| 50893 
d55eb82ae77b
Isabelle_System.mkdirs with explicit error checking (in accordance to ML version), e.g. relevant with read-only DMG file-system on Mac OS X;
 wenzelm parents: 
50854diff
changeset | 174 | |
| 75393 | 175 |   def make_directory(path: Path): Path = {
 | 
| 73325 
a89f56ab2686
more robust (amending 87403fde8cc3): notably allow symlink to existing directory, which Files.createDirectories does not accept;
 wenzelm parents: 
73324diff
changeset | 176 |     if (!path.is_dir) {
 | 
| 73945 | 177 |       try { Files.createDirectories(path.java_path) }
 | 
| 73325 
a89f56ab2686
more robust (amending 87403fde8cc3): notably allow symlink to existing directory, which Files.createDirectories does not accept;
 wenzelm parents: 
73324diff
changeset | 178 |       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: 
73324diff
changeset | 179 | } | 
| 72376 | 180 | path | 
| 181 | } | |
| 50893 
d55eb82ae77b
Isabelle_System.mkdirs with explicit error checking (in accordance to ML version), e.g. relevant with read-only DMG file-system on Mac OS X;
 wenzelm parents: 
50854diff
changeset | 182 | |
| 72377 | 183 | def new_directory(path: Path): Path = | 
| 72426 
f5d60c12deeb
more standard path output (despite platform_path from d55eb82ae77b);
 wenzelm parents: 
72414diff
changeset | 184 |     if (path.is_dir) error("Directory already exists: " + path.absolute)
 | 
| 72377 | 185 | else make_directory(path) | 
| 186 | ||
| 75393 | 187 |   def copy_dir(dir1: Path, dir2: Path): Unit = {
 | 
| 73322 | 188 |     val res = bash("cp -a " + File.bash_path(dir1) + " " + File.bash_path(dir2))
 | 
| 189 |     if (!res.ok) {
 | |
| 190 |       cat_error("Failed to copy directory " + dir1.absolute + " to " + dir2.absolute, res.err)
 | |
| 191 | } | |
| 192 | } | |
| 73317 | 193 | |
| 75393 | 194 |   def with_copy_dir[A](dir1: Path, dir2: Path)(body: => A): A = {
 | 
| 75230 
bbbee54b1198
prepare patched version more thoroughly, with explicit patches;
 wenzelm parents: 
75229diff
changeset | 195 |     if (dir2.is_file || dir2.is_dir) error("Directory already exists: " + dir2.absolute)
 | 
| 
bbbee54b1198
prepare patched version more thoroughly, with explicit patches;
 wenzelm parents: 
75229diff
changeset | 196 |     else {
 | 
| 
bbbee54b1198
prepare patched version more thoroughly, with explicit patches;
 wenzelm parents: 
75229diff
changeset | 197 |       try { copy_dir(dir1, dir2); body }
 | 
| 
bbbee54b1198
prepare patched version more thoroughly, with explicit patches;
 wenzelm parents: 
75229diff
changeset | 198 |       finally { rm_tree(dir2 ) }
 | 
| 
bbbee54b1198
prepare patched version more thoroughly, with explicit patches;
 wenzelm parents: 
75229diff
changeset | 199 | } | 
| 
bbbee54b1198
prepare patched version more thoroughly, with explicit patches;
 wenzelm parents: 
75229diff
changeset | 200 | } | 
| 
bbbee54b1198
prepare patched version more thoroughly, with explicit patches;
 wenzelm parents: 
75229diff
changeset | 201 | |
| 73317 | 202 | |
| 75393 | 203 |   object Make_Directory extends Scala.Fun_Strings("make_directory") {
 | 
| 73322 | 204 | val here = Scala_Project.here | 
| 73567 | 205 | def apply(args: List[String]): List[String] = apply_paths1(args, make_directory) | 
| 73322 | 206 | } | 
| 73317 | 207 | |
| 75393 | 208 |   object Copy_Dir extends Scala.Fun_Strings("copy_dir") {
 | 
| 73322 | 209 | val here = Scala_Project.here | 
| 73567 | 210 | def apply(args: List[String]): List[String] = apply_paths2(args, copy_dir) | 
| 73322 | 211 | } | 
| 212 | ||
| 213 | ||
| 214 | /* copy files */ | |
| 64189 | 215 | |
| 75393 | 216 |   def copy_file(src: JFile, dst: JFile): Unit = {
 | 
| 73317 | 217 | val target = if (dst.isDirectory) new JFile(dst, src.getName) else dst | 
| 73319 | 218 |     if (!File.eq(src, target)) {
 | 
| 73322 | 219 |       try {
 | 
| 220 | Files.copy(src.toPath, target.toPath, | |
| 221 | StandardCopyOption.COPY_ATTRIBUTES, | |
| 222 | StandardCopyOption.REPLACE_EXISTING) | |
| 223 | } | |
| 224 |       catch {
 | |
| 225 | case ERROR(msg) => | |
| 73651 | 226 |           cat_error("Failed to copy file " +
 | 
| 73322 | 227 | File.path(src).absolute + " to " + File.path(dst).absolute, msg) | 
| 228 | } | |
| 73317 | 229 | } | 
| 230 | } | |
| 231 | ||
| 73320 | 232 | def copy_file(src: Path, dst: Path): Unit = copy_file(src.file, dst.file) | 
| 73317 | 233 | |
| 75393 | 234 |   def copy_file_base(base_dir: Path, src: Path, target_dir: Path): Unit = {
 | 
| 73320 | 235 | val src1 = src.expand | 
| 236 | val src1_dir = src1.dir | |
| 73321 | 237 |     if (!src1.starts_basic) error("Illegal path specification " + src1 + " beyond base directory")
 | 
| 73320 | 238 | copy_file(base_dir + src1, Isabelle_System.make_directory(target_dir + src1_dir)) | 
| 73317 | 239 | } | 
| 240 | ||
| 241 | ||
| 75393 | 242 |   object Copy_File extends Scala.Fun_Strings("copy_file") {
 | 
| 73322 | 243 | val here = Scala_Project.here | 
| 73567 | 244 | def apply(args: List[String]): List[String] = apply_paths2(args, copy_file) | 
| 73322 | 245 | } | 
| 246 | ||
| 75393 | 247 |   object Copy_File_Base extends Scala.Fun_Strings("copy_file_base") {
 | 
| 73322 | 248 | val here = Scala_Project.here | 
| 73567 | 249 | def apply(args: List[String]): List[String] = apply_paths3(args, copy_file_base) | 
| 73322 | 250 | } | 
| 251 | ||
| 252 | ||
| 253 | /* move files */ | |
| 73317 | 254 | |
| 75393 | 255 |   def move_file(src: JFile, dst: JFile): Unit = {
 | 
| 73317 | 256 | val target = if (dst.isDirectory) new JFile(dst, src.getName) else dst | 
| 73319 | 257 | if (!File.eq(src, target)) | 
| 73317 | 258 | Files.move(src.toPath, target.toPath, StandardCopyOption.REPLACE_EXISTING) | 
| 259 | } | |
| 260 | ||
| 73320 | 261 | def move_file(src: Path, dst: Path): Unit = move_file(src.file, dst.file) | 
| 73317 | 262 | |
| 263 | ||
| 264 | /* symbolic link */ | |
| 265 | ||
| 75393 | 266 |   def symlink(src: Path, dst: Path, force: Boolean = false, native: Boolean = false): Unit = {
 | 
| 73317 | 267 | val src_file = src.file | 
| 268 | val dst_file = dst.file | |
| 269 | val target = if (dst_file.isDirectory) new JFile(dst_file, src_file.getName) else dst_file | |
| 270 | ||
| 271 | if (force) target.delete | |
| 272 | ||
| 75393 | 273 |     def cygwin_link(): Unit = {
 | 
| 74070 | 274 |       if (native) {
 | 
| 275 |         error("Failed to create native symlink on Windows: " + quote(src_file.toString) +
 | |
| 276 | "\n(but it could work as Administrator)") | |
| 277 | } | |
| 278 | else isabelle.setup.Environment.cygwin_link(File.standard_path(src), target) | |
| 279 | } | |
| 280 | ||
| 73893 | 281 | |
| 73317 | 282 |     try { Files.createSymbolicLink(target.toPath, src_file.toPath) }
 | 
| 283 |     catch {
 | |
| 73893 | 284 | case _: UnsupportedOperationException if Platform.is_windows => cygwin_link() | 
| 285 | case _: FileSystemException if Platform.is_windows => cygwin_link() | |
| 73317 | 286 | } | 
| 287 | } | |
| 288 | ||
| 50893 
d55eb82ae77b
Isabelle_System.mkdirs with explicit error checking (in accordance to ML version), e.g. relevant with read-only DMG file-system on Mac OS X;
 wenzelm parents: 
50854diff
changeset | 289 | |
| 56428 
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
 wenzelm parents: 
55876diff
changeset | 290 | /* tmp files */ | 
| 
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
 wenzelm parents: 
55876diff
changeset | 291 | |
| 75393 | 292 |   def isabelle_tmp_prefix(): JFile = {
 | 
| 56428 
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
 wenzelm parents: 
55876diff
changeset | 293 |     val path = Path.explode("$ISABELLE_TMP_PREFIX")
 | 
| 72375 | 294 | path.file.mkdirs // low-level mkdirs to avoid recursion via Isabelle environment | 
| 60988 | 295 | File.platform_file(path) | 
| 56428 
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
 wenzelm parents: 
55876diff
changeset | 296 | } | 
| 
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
 wenzelm parents: 
55876diff
changeset | 297 | |
| 75393 | 298 |   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: 
55876diff
changeset | 299 | val suffix = if (ext == "") "" else "." + ext | 
| 67924 | 300 | val file = Files.createTempFile(base_dir.toPath, name, suffix).toFile | 
| 75219 | 301 | file.deleteOnExit() | 
| 56428 
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
 wenzelm parents: 
55876diff
changeset | 302 | file | 
| 
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
 wenzelm parents: 
55876diff
changeset | 303 | } | 
| 
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
 wenzelm parents: 
55876diff
changeset | 304 | |
| 75393 | 305 |   def with_tmp_file[A](name: String, ext: String = "")(body: Path => A): A = {
 | 
| 56428 
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
 wenzelm parents: 
55876diff
changeset | 306 | val file = tmp_file(name, ext) | 
| 64220 | 307 |     try { body(File.path(file)) } finally { file.delete }
 | 
| 56428 
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
 wenzelm parents: 
55876diff
changeset | 308 | } | 
| 
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
 wenzelm parents: 
55876diff
changeset | 309 | |
| 
1acf2d76ac23
more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
 wenzelm parents: 
55876diff
changeset | 310 | |
| 56477 | 311 | /* tmp dirs */ | 
| 312 | ||
| 75393 | 313 |   def rm_tree(root: JFile): Unit = {
 | 
| 56477 | 314 | root.delete | 
| 315 |     if (root.isDirectory) {
 | |
| 316 | Files.walkFileTree(root.toPath, | |
| 317 |         new SimpleFileVisitor[JPath] {
 | |
| 75393 | 318 |           override def visitFile(file: JPath, attrs: BasicFileAttributes): FileVisitResult = {
 | 
| 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: 
68409diff
changeset | 319 |             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: 
68409diff
changeset | 320 |             catch { case _: IOException => }
 | 
| 56477 | 321 | FileVisitResult.CONTINUE | 
| 322 | } | |
| 323 | ||
| 75393 | 324 |           override def postVisitDirectory(dir: JPath, e: IOException): FileVisitResult = {
 | 
| 56477 | 325 |             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: 
68409diff
changeset | 326 |               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: 
68409diff
changeset | 327 |               catch { case _: IOException => }
 | 
| 56477 | 328 | FileVisitResult.CONTINUE | 
| 329 | } | |
| 330 | else throw e | |
| 331 | } | |
| 332 | } | |
| 333 | ) | |
| 334 | } | |
| 335 | } | |
| 336 | ||
| 73324 | 337 | def rm_tree(root: Path): Unit = rm_tree(root.file) | 
| 338 | ||
| 75393 | 339 |   object Rm_Tree extends Scala.Fun_Strings("rm_tree") {
 | 
| 73324 | 340 | val here = Scala_Project.here | 
| 73567 | 341 | def apply(args: List[String]): List[String] = apply_paths1(args, rm_tree) | 
| 73324 | 342 | } | 
| 343 | ||
| 75393 | 344 |   def tmp_dir(name: String, base_dir: JFile = isabelle_tmp_prefix()): JFile = {
 | 
| 67924 | 345 | val dir = Files.createTempDirectory(base_dir.toPath, name).toFile | 
| 75219 | 346 | dir.deleteOnExit() | 
| 56477 | 347 | dir | 
| 348 | } | |
| 349 | ||
| 75393 | 350 |   def with_tmp_dir[A](name: String)(body: Path => A): A = {
 | 
| 56477 | 351 | val dir = tmp_dir(name) | 
| 64220 | 352 |     try { body(File.path(dir)) } finally { rm_tree(dir) }
 | 
| 56477 | 353 | } | 
| 354 | ||
| 355 | ||
| 65793 | 356 | /* quasi-atomic update of directory */ | 
| 357 | ||
| 75393 | 358 |   def update_directory(dir: Path, f: Path => Unit): Unit = {
 | 
| 65793 | 359 |     val new_dir = dir.ext("new")
 | 
| 360 |     val old_dir = dir.ext("old")
 | |
| 361 | ||
| 362 | rm_tree(new_dir) | |
| 363 | rm_tree(old_dir) | |
| 364 | ||
| 365 | f(new_dir) | |
| 366 | ||
| 73317 | 367 | if (dir.is_dir) move_file(dir, old_dir) | 
| 368 | move_file(new_dir, dir) | |
| 65793 | 369 | rm_tree(old_dir) | 
| 370 | } | |
| 371 | ||
| 372 | ||
| 62613 | 373 | |
| 374 | /** external processes **/ | |
| 375 | ||
| 376 | /* GNU bash */ | |
| 31796 | 377 | |
| 62610 
4c89504c76fb
more uniform signature for various process invocations;
 wenzelm parents: 
62602diff
changeset | 378 | def bash(script: String, | 
| 74212 | 379 | description: String = "", | 
| 62610 
4c89504c76fb
more uniform signature for various process invocations;
 wenzelm parents: 
62602diff
changeset | 380 | cwd: JFile = null, | 
| 73897 | 381 | env: JMap[String, String] = settings(), | 
| 62610 
4c89504c76fb
more uniform signature for various process invocations;
 wenzelm parents: 
62602diff
changeset | 382 | redirect: Boolean = false, | 
| 74142 
0f051404f487
clarified signature: more options for bash_process;
 wenzelm parents: 
74070diff
changeset | 383 | input: String = "", | 
| 51962 
016cb7d8f297
limit build process output, to avoid bombing Isabelle/Scala process by ill-behaved jobs (e.g. Containers in AFP/9025435b29cf);
 wenzelm parents: 
51820diff
changeset | 384 | progress_stdout: String => Unit = (_: String) => (), | 
| 
016cb7d8f297
limit build process output, to avoid bombing Isabelle/Scala process by ill-behaved jobs (e.g. Containers in AFP/9025435b29cf);
 wenzelm parents: 
51820diff
changeset | 385 | progress_stderr: String => Unit = (_: String) => (), | 
| 72598 | 386 | watchdog: Option[Bash.Watchdog] = None, | 
| 62602 | 387 | strict: Boolean = true, | 
| 75393 | 388 | cleanup: () => Unit = () => () | 
| 389 |   ): Process_Result = {
 | |
| 74212 | 390 | Bash.process(script, | 
| 391 | description = description, cwd = cwd, env = env, redirect = redirect, cleanup = cleanup). | |
| 74142 
0f051404f487
clarified signature: more options for bash_process;
 wenzelm parents: 
74070diff
changeset | 392 | result(input = input, progress_stdout = progress_stdout, progress_stderr = progress_stderr, | 
| 72598 | 393 | watchdog = watchdog, strict = strict) | 
| 34198 
ff5486262cd6
moved Library.decode_permissive_utf8 to Isabelle_System;
 wenzelm parents: 
34196diff
changeset | 394 | } | 
| 
ff5486262cd6
moved Library.decode_permissive_utf8 to Isabelle_System;
 wenzelm parents: 
34196diff
changeset | 395 | |
| 75218 | 396 | |
| 397 | /* command-line tools */ | |
| 398 | ||
| 75393 | 399 |   def require_command(cmd: String, test: String = "--version"): Unit = {
 | 
| 75218 | 400 |     if (!bash(Bash.string(cmd) + " " + test).ok) error("Missing system command: " + quote(cmd))
 | 
| 401 | } | |
| 402 | ||
| 64935 
9437a117408b
insist in proper GNU tar, to avoid subtle semantic differences;
 wenzelm parents: 
64657diff
changeset | 403 | private lazy val gnutar_check: Boolean = | 
| 
9437a117408b
insist in proper GNU tar, to avoid subtle semantic differences;
 wenzelm parents: 
64657diff
changeset | 404 |     try { bash("tar --version").check.out.containsSlice("GNU tar") || error("") }
 | 
| 
9437a117408b
insist in proper GNU tar, to avoid subtle semantic differences;
 wenzelm parents: 
64657diff
changeset | 405 |     catch { case ERROR(_) => false }
 | 
| 
9437a117408b
insist in proper GNU tar, to avoid subtle semantic differences;
 wenzelm parents: 
64657diff
changeset | 406 | |
| 69425 | 407 | def gnutar( | 
| 408 | args: String, | |
| 409 | dir: Path = Path.current, | |
| 410 | original_owner: Boolean = false, | |
| 73624 | 411 | strip: Int = 0, | 
| 75393 | 412 | redirect: Boolean = false | 
| 413 |   ): Process_Result = {
 | |
| 69425 | 414 | val options = | 
| 415 | (if (dir.is_current) "" else "-C " + File.bash_path(dir) + " ") + | |
| 73624 | 416 | (if (original_owner) "" else "--owner=root --group=staff ") + | 
| 417 | (if (strip <= 0) "" else "--strip-components=" + strip + " ") | |
| 69425 | 418 | |
| 419 |     if (gnutar_check) bash("tar " + options + args, redirect = redirect)
 | |
| 64935 
9437a117408b
insist in proper GNU tar, to avoid subtle semantic differences;
 wenzelm parents: 
64657diff
changeset | 420 |     else error("Expected to find GNU tar executable")
 | 
| 
9437a117408b
insist in proper GNU tar, to avoid subtle semantic differences;
 wenzelm parents: 
64657diff
changeset | 421 | } | 
| 
9437a117408b
insist in proper GNU tar, to avoid subtle semantic differences;
 wenzelm parents: 
64657diff
changeset | 422 | |
| 75393 | 423 |   def make_patch(base_dir: Path, src: Path, dst: Path, diff_options: String = ""): String = {
 | 
| 75394 | 424 |     with_tmp_file("patch") { patch =>
 | 
| 75229 | 425 | Isabelle_System.bash( | 
| 75230 
bbbee54b1198
prepare patched version more thoroughly, with explicit patches;
 wenzelm parents: 
75229diff
changeset | 426 | "diff -ru " + diff_options + " -- " + File.bash_path(src) + " " + File.bash_path(dst) + | 
| 
bbbee54b1198
prepare patched version more thoroughly, with explicit patches;
 wenzelm parents: 
75229diff
changeset | 427 | " > " + File.bash_path(patch), | 
| 75229 | 428 | cwd = base_dir.file).check_rc(_ <= 1) | 
| 429 | File.read(patch) | |
| 75394 | 430 | } | 
| 75220 | 431 | } | 
| 432 | ||
| 64152 | 433 |   def hostname(): String = bash("hostname -s").check.out
 | 
| 64139 | 434 | |
| 54690 | 435 | def open(arg: String): Unit = | 
| 64304 | 436 |     bash("exec \"$ISABELLE_OPEN\" " + Bash.string(arg) + " >/dev/null 2>/dev/null &")
 | 
| 54690 | 437 | |
| 438 | def pdf_viewer(arg: Path): Unit = | |
| 62616 | 439 |     bash("exec \"$PDF_VIEWER\" " + File.bash_path(arg) + " >/dev/null 2>/dev/null &")
 | 
| 54690 | 440 | |
| 75393 | 441 |   def open_external_file(name: String): Boolean = {
 | 
| 73224 
49686e3b1909
clarified links to external files, e.g. .pdf within .thy source document;
 wenzelm parents: 
72976diff
changeset | 442 | 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: 
72976diff
changeset | 443 | val external = | 
| 
49686e3b1909
clarified links to external files, e.g. .pdf within .thy source document;
 wenzelm parents: 
72976diff
changeset | 444 | ext.nonEmpty && | 
| 
49686e3b1909
clarified links to external files, e.g. .pdf within .thy source document;
 wenzelm parents: 
72976diff
changeset | 445 |       Library.space_explode(':', getenv("ISABELLE_EXTERNAL_FILES")).contains(ext)
 | 
| 
49686e3b1909
clarified links to external files, e.g. .pdf within .thy source document;
 wenzelm parents: 
72976diff
changeset | 446 |     if (external) {
 | 
| 
49686e3b1909
clarified links to external files, e.g. .pdf within .thy source document;
 wenzelm parents: 
72976diff
changeset | 447 | 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: 
72976diff
changeset | 448 | else open(name) | 
| 
49686e3b1909
clarified links to external files, e.g. .pdf within .thy source document;
 wenzelm parents: 
72976diff
changeset | 449 | } | 
| 
49686e3b1909
clarified links to external files, e.g. .pdf within .thy source document;
 wenzelm parents: 
72976diff
changeset | 450 | external | 
| 
49686e3b1909
clarified links to external files, e.g. .pdf within .thy source document;
 wenzelm parents: 
72976diff
changeset | 451 | } | 
| 
49686e3b1909
clarified links to external files, e.g. .pdf within .thy source document;
 wenzelm parents: 
72976diff
changeset | 452 | |
| 65916 | 453 | |
| 32450 | 454 | |
| 31796 | 455 | /** Isabelle resources **/ | 
| 456 | ||
| 64161 | 457 | /* repository clone with Admin */ | 
| 458 | ||
| 459 |   def admin(): Boolean = Path.explode("~~/Admin").is_dir
 | |
| 460 | ||
| 461 | ||
| 62633 | 462 | /* default logic */ | 
| 48503 | 463 | |
| 75393 | 464 |   def default_logic(args: String*): String = {
 | 
| 50403 
87868964733c
more uniform default logic, using settings, options, args etc.;
 wenzelm parents: 
50298diff
changeset | 465 |     args.find(_ != "") match {
 | 
| 
87868964733c
more uniform default logic, using settings, options, args etc.;
 wenzelm parents: 
50298diff
changeset | 466 | case Some(logic) => logic | 
| 73317 | 467 |       case None => getenv_strict("ISABELLE_LOGIC")
 | 
| 50403 
87868964733c
more uniform default logic, using settings, options, args etc.;
 wenzelm parents: 
50298diff
changeset | 468 | } | 
| 
87868964733c
more uniform default logic, using settings, options, args etc.;
 wenzelm parents: 
50298diff
changeset | 469 | } | 
| 73323 | 470 | |
| 471 | ||
| 472 | /* download file */ | |
| 473 | ||
| 75393 | 474 |   def download(url_name: String, progress: Progress = new Progress): HTTP.Content = {
 | 
| 73335 | 475 | val url = Url(url_name) | 
| 476 |     progress.echo("Getting " + quote(url_name))
 | |
| 73566 | 477 |     try { HTTP.Client.get(url) }
 | 
| 478 |     catch { case ERROR(msg) => cat_error("Failed to download " + quote(url_name), msg) }
 | |
| 73323 | 479 | } | 
| 480 | ||
| 73566 | 481 | def download_file(url_name: String, file: Path, progress: Progress = new Progress): Unit = | 
| 482 | Bytes.write(file, download(url_name, progress = progress).bytes) | |
| 483 | ||
| 75393 | 484 |   object Download extends Scala.Fun("download", thread = true) {
 | 
| 73323 | 485 | val here = Scala_Project.here | 
| 73566 | 486 | override def invoke(args: List[Bytes]): List[Bytes] = | 
| 75439 | 487 | args.map(url => download(url.text).bytes) | 
| 73323 | 488 | } | 
| 73608 | 489 | |
| 490 | ||
| 491 | /* repositories */ | |
| 492 | ||
| 73611 | 493 | val isabelle_repository: Mercurial.Server = | 
| 494 |     Mercurial.Server("https://isabelle.sketis.net/repos/isabelle")
 | |
| 73608 | 495 | |
| 73611 | 496 | val afp_repository: Mercurial.Server = | 
| 497 |     Mercurial.Server("https://isabelle.sketis.net/repos/afp-devel")
 | |
| 73610 | 498 | |
| 499 | def official_releases(): List[String] = | |
| 500 | Library.trim_split_lines( | |
| 501 |       isabelle_repository.read_file(Path.explode("Admin/Release/official")))
 | |
| 27919 | 502 | } |