src/Pure/System/isabelle_system.scala
author wenzelm
Wed, 29 Nov 2023 00:07:54 +0100
changeset 79074 7f24c5be57bd
parent 78944 b0b86fead48c
child 79633 c59231722f10
permissions -rw-r--r--
compact representation of sets of integers;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
30175
62ba490670e8 fixed headers;
wenzelm
parents: 30174
diff changeset
     1
/*  Title:      Pure/System/isabelle_system.scala
27919
1eb8a3902d49 Isabelle system support.
wenzelm
parents:
diff changeset
     2
    Author:     Makarius
1eb8a3902d49 Isabelle system support.
wenzelm
parents:
diff changeset
     3
73890
8f6b2eb15240 clarified modules;
wenzelm
parents: 73888
diff changeset
     4
Miscellaneous Isabelle system operations.
27919
1eb8a3902d49 Isabelle system support.
wenzelm
parents:
diff changeset
     5
*/
1eb8a3902d49 Isabelle system support.
wenzelm
parents:
diff changeset
     6
1eb8a3902d49 Isabelle system support.
wenzelm
parents:
diff changeset
     7
package isabelle
1eb8a3902d49 Isabelle system support.
wenzelm
parents:
diff changeset
     8
55618
995162143ef4 tuned imports;
wenzelm
parents: 55555
diff changeset
     9
74146
dd1639961016 clarified signature;
wenzelm
parents: 74142
diff changeset
    10
import java.util.{Map => JMap, HashMap}
76546
88cecb9f1cdc proper unzip with strip option, within the JVM;
wenzelm
parents: 76543
diff changeset
    11
import java.util.zip.ZipFile
67835
c8e4ee2b5482 tuned imports;
wenzelm
parents: 67586
diff changeset
    12
import java.io.{File => JFile, IOException}
76145
a6bdf4b889ca clarified signature;
wenzelm
parents: 76144
diff changeset
    13
import java.net.ServerSocket
73317
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
    14
import java.nio.file.{Path => JPath, Files, SimpleFileVisitor, FileVisitResult,
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
    15
  StandardCopyOption, FileSystemException}
56477
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
    16
import java.nio.file.attribute.BasicFileAttributes
73987
fc363a3b690a build.props for isabelle.jar, including isabelle.jedit;
wenzelm
parents: 73945
diff changeset
    17
76546
88cecb9f1cdc proper unzip with strip option, within the JVM;
wenzelm
parents: 76543
diff changeset
    18
import scala.jdk.CollectionConverters._
88cecb9f1cdc proper unzip with strip option, within the JVM;
wenzelm
parents: 76543
diff changeset
    19
27919
1eb8a3902d49 Isabelle system support.
wenzelm
parents:
diff changeset
    20
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75230
diff changeset
    21
object Isabelle_System {
75218
wenzelm
parents: 74336
diff changeset
    22
  /* settings environment */
56477
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
    23
77079
395a0701a125 clarified signature: minimal interface for getenv/expand_env, instead of bulky java.util.Map;
wenzelm
parents: 77027
diff changeset
    24
  trait Settings { def get(name: String): String }
395a0701a125 clarified signature: minimal interface for getenv/expand_env, instead of bulky java.util.Map;
wenzelm
parents: 77027
diff changeset
    25
  trait Settings_Env extends Settings { def env: JMap[String, String] }
395a0701a125 clarified signature: minimal interface for getenv/expand_env, instead of bulky java.util.Map;
wenzelm
parents: 77027
diff changeset
    26
395a0701a125 clarified signature: minimal interface for getenv/expand_env, instead of bulky java.util.Map;
wenzelm
parents: 77027
diff changeset
    27
  class Env(val env: JMap[String, String]) extends Settings_Env {
395a0701a125 clarified signature: minimal interface for getenv/expand_env, instead of bulky java.util.Map;
wenzelm
parents: 77027
diff changeset
    28
    override def get(name: String): String = Option(env.get(name)).getOrElse("")
395a0701a125 clarified signature: minimal interface for getenv/expand_env, instead of bulky java.util.Map;
wenzelm
parents: 77027
diff changeset
    29
  }
395a0701a125 clarified signature: minimal interface for getenv/expand_env, instead of bulky java.util.Map;
wenzelm
parents: 77027
diff changeset
    30
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75230
diff changeset
    31
  def settings(putenv: List[(String, String)] = Nil): JMap[String, String] = {
74146
dd1639961016 clarified signature;
wenzelm
parents: 74142
diff changeset
    32
    val env0 = isabelle.setup.Environment.settings()
dd1639961016 clarified signature;
wenzelm
parents: 74142
diff changeset
    33
    if (putenv.isEmpty) env0
dd1639961016 clarified signature;
wenzelm
parents: 74142
diff changeset
    34
    else {
dd1639961016 clarified signature;
wenzelm
parents: 74142
diff changeset
    35
      val env = new HashMap(env0)
dd1639961016 clarified signature;
wenzelm
parents: 74142
diff changeset
    36
      for ((a, b) <- putenv) env.put(a, b)
dd1639961016 clarified signature;
wenzelm
parents: 74142
diff changeset
    37
      env
dd1639961016 clarified signature;
wenzelm
parents: 74142
diff changeset
    38
    }
dd1639961016 clarified signature;
wenzelm
parents: 74142
diff changeset
    39
  }
71739
c0bc99aad936 clarified init of settings vs. services;
wenzelm
parents: 71734
diff changeset
    40
77079
395a0701a125 clarified signature: minimal interface for getenv/expand_env, instead of bulky java.util.Map;
wenzelm
parents: 77027
diff changeset
    41
  def settings_env(putenv: List[(String, String)] = Nil): Settings_Env =
395a0701a125 clarified signature: minimal interface for getenv/expand_env, instead of bulky java.util.Map;
wenzelm
parents: 77027
diff changeset
    42
    new Env(settings(putenv = putenv))
31498
be0f7f4f9e12 static IsabelleSystem.charset;
wenzelm
parents: 31443
diff changeset
    43
77079
395a0701a125 clarified signature: minimal interface for getenv/expand_env, instead of bulky java.util.Map;
wenzelm
parents: 77027
diff changeset
    44
  def getenv(name: String, env: Settings = settings_env()): String = env.get(name)
395a0701a125 clarified signature: minimal interface for getenv/expand_env, instead of bulky java.util.Map;
wenzelm
parents: 77027
diff changeset
    45
395a0701a125 clarified signature: minimal interface for getenv/expand_env, instead of bulky java.util.Map;
wenzelm
parents: 77027
diff changeset
    46
  def getenv_strict(name: String, env: Settings = settings_env()): String =
65717
wenzelm
parents: 65090
diff changeset
    47
    proper_string(getenv(name, env)) getOrElse
wenzelm
parents: 65090
diff changeset
    48
      error("Undefined Isabelle environment variable: " + quote(name))
27919
1eb8a3902d49 Isabelle system support.
wenzelm
parents:
diff changeset
    49
77719
cbfbf48b0281 tuned signature;
wenzelm
parents: 77504
diff changeset
    50
  def ml_identifier(): String = getenv("ML_IDENTIFIER")
cbfbf48b0281 tuned signature;
wenzelm
parents: 77504
diff changeset
    51
77384
ef6673859c38 option build_hostname allows to change hostname easily;
wenzelm
parents: 77373
diff changeset
    52
  def hostname(default: String = ""): String =
ef6673859c38 option build_hostname allows to change hostname easily;
wenzelm
parents: 77373
diff changeset
    53
    proper_string(default) getOrElse getenv_strict("ISABELLE_HOSTNAME")
77373
eaf234b0c849 proper settings for hostname: allow to adjust it in user space;
wenzelm
parents: 77218
diff changeset
    54
73520
4cba4e250c28 clarified ISABELLE_ID: distribution vs. hg archive vs. hg repos;
wenzelm
parents: 73445
diff changeset
    55
73891
6c9044f04756 clarified modules (again): services require full Isabelle/Scala environment;
wenzelm
parents: 73890
diff changeset
    56
  /* services */
6c9044f04756 clarified modules (again): services require full Isabelle/Scala environment;
wenzelm
parents: 73890
diff changeset
    57
75702
97e8f4c938bf clarified modules;
wenzelm
parents: 75697
diff changeset
    58
  type Service = Classpath.Service
73891
6c9044f04756 clarified modules (again): services require full Isabelle/Scala environment;
wenzelm
parents: 73890
diff changeset
    59
75702
97e8f4c938bf clarified modules;
wenzelm
parents: 75697
diff changeset
    60
  @volatile private var _classpath: Option[Classpath] = None
73891
6c9044f04756 clarified modules (again): services require full Isabelle/Scala environment;
wenzelm
parents: 73890
diff changeset
    61
75702
97e8f4c938bf clarified modules;
wenzelm
parents: 75697
diff changeset
    62
  def classpath(): Classpath = {
97e8f4c938bf clarified modules;
wenzelm
parents: 75697
diff changeset
    63
    if (_classpath.isEmpty) init()  // unsynchronized check
97e8f4c938bf clarified modules;
wenzelm
parents: 75697
diff changeset
    64
    _classpath.get
73891
6c9044f04756 clarified modules (again): services require full Isabelle/Scala environment;
wenzelm
parents: 73890
diff changeset
    65
  }
6c9044f04756 clarified modules (again): services require full Isabelle/Scala environment;
wenzelm
parents: 73890
diff changeset
    66
75702
97e8f4c938bf clarified modules;
wenzelm
parents: 75697
diff changeset
    67
  def make_services[C](c: Class[C]): List[C] = classpath().make_services(c)
75697
21c1f82e7f5d support for dynamic classpath from exports;
wenzelm
parents: 75695
diff changeset
    68
73891
6c9044f04756 clarified modules (again): services require full Isabelle/Scala environment;
wenzelm
parents: 73890
diff changeset
    69
75702
97e8f4c938bf clarified modules;
wenzelm
parents: 75697
diff changeset
    70
  /* init settings + classpath */
75692
048bbe0bf807 clarified signature;
wenzelm
parents: 75681
diff changeset
    71
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75230
diff changeset
    72
  def init(isabelle_root: String = "", cygwin_root: String = ""): Unit = {
73906
f627ffab387b support for Isabelle setup in pure Java;
wenzelm
parents: 73904
diff changeset
    73
    isabelle.setup.Environment.init(isabelle_root, cygwin_root)
75692
048bbe0bf807 clarified signature;
wenzelm
parents: 75681
diff changeset
    74
    synchronized {
75702
97e8f4c938bf clarified modules;
wenzelm
parents: 75697
diff changeset
    75
      if (_classpath.isEmpty) _classpath = Some(Classpath())
75692
048bbe0bf807 clarified signature;
wenzelm
parents: 75681
diff changeset
    76
    }
78944
b0b86fead48c more robust init;
wenzelm
parents: 78592
diff changeset
    77
    Registry.global
73891
6c9044f04756 clarified modules (again): services require full Isabelle/Scala environment;
wenzelm
parents: 73890
diff changeset
    78
  }
6c9044f04756 clarified modules (again): services require full Isabelle/Scala environment;
wenzelm
parents: 73890
diff changeset
    79
6c9044f04756 clarified modules (again): services require full Isabelle/Scala environment;
wenzelm
parents: 73890
diff changeset
    80
73520
4cba4e250c28 clarified ISABELLE_ID: distribution vs. hg archive vs. hg repos;
wenzelm
parents: 73445
diff changeset
    81
  /* getetc -- static distribution parameters */
4cba4e250c28 clarified ISABELLE_ID: distribution vs. hg archive vs. hg repos;
wenzelm
parents: 73445
diff changeset
    82
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75230
diff changeset
    83
  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
    84
    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
    85
    if (path.is_file) {
4cba4e250c28 clarified ISABELLE_ID: distribution vs. hg archive vs. hg repos;
wenzelm
parents: 73445
diff changeset
    86
      Library.trim_split_lines(File.read(path)) match {
4cba4e250c28 clarified ISABELLE_ID: distribution vs. hg archive vs. hg repos;
wenzelm
parents: 73445
diff changeset
    87
        case Nil => None
4cba4e250c28 clarified ISABELLE_ID: distribution vs. hg archive vs. hg repos;
wenzelm
parents: 73445
diff changeset
    88
        case List(s) => Some(s)
4cba4e250c28 clarified ISABELLE_ID: distribution vs. hg archive vs. hg repos;
wenzelm
parents: 73445
diff changeset
    89
        case _ => error("Single line expected in " + path.absolute)
4cba4e250c28 clarified ISABELLE_ID: distribution vs. hg archive vs. hg repos;
wenzelm
parents: 73445
diff changeset
    90
      }
4cba4e250c28 clarified ISABELLE_ID: distribution vs. hg archive vs. hg repos;
wenzelm
parents: 73445
diff changeset
    91
    }
4cba4e250c28 clarified ISABELLE_ID: distribution vs. hg archive vs. hg repos;
wenzelm
parents: 73445
diff changeset
    92
    else None
4cba4e250c28 clarified ISABELLE_ID: distribution vs. hg archive vs. hg repos;
wenzelm
parents: 73445
diff changeset
    93
  }
4cba4e250c28 clarified ISABELLE_ID: distribution vs. hg archive vs. hg repos;
wenzelm
parents: 73445
diff changeset
    94
4cba4e250c28 clarified ISABELLE_ID: distribution vs. hg archive vs. hg repos;
wenzelm
parents: 73445
diff changeset
    95
73521
a6ca869af096 more robust and uniform ISABELLE_TAGS;
wenzelm
parents: 73520
diff changeset
    96
  /* Isabelle distribution identification */
73520
4cba4e250c28 clarified ISABELLE_ID: distribution vs. hg archive vs. hg repos;
wenzelm
parents: 73445
diff changeset
    97
73525
419edc7f3726 clarified signature;
wenzelm
parents: 73523
diff changeset
    98
  def isabelle_id(root: Path = Path.ISABELLE_HOME): String =
75510
0106c89fb71f clarified signature;
wenzelm
parents: 75509
diff changeset
    99
    getetc("ISABELLE_ID", root = root) orElse
0106c89fb71f clarified signature;
wenzelm
parents: 75509
diff changeset
   100
    Mercurial.archive_id(root) orElse
0106c89fb71f clarified signature;
wenzelm
parents: 75509
diff changeset
   101
    Mercurial.id_repository(root, rev = "") getOrElse
0106c89fb71f clarified signature;
wenzelm
parents: 75509
diff changeset
   102
    error("Failed to identify Isabelle distribution " + root.expand)
67865
ab0b8e388967 more uniform id;
wenzelm
parents: 67835
diff changeset
   103
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75230
diff changeset
   104
  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
   105
    val here = Scala_Project.here
73525
419edc7f3726 clarified signature;
wenzelm
parents: 73523
diff changeset
   106
    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
   107
  }
2cd23d587db9 further clarification of Isabelle distribution identification -- avoid odd patching of sources;
wenzelm
parents: 73522
diff changeset
   108
73522
b219774a71ae tuned signature -- more explicit types;
wenzelm
parents: 73521
diff changeset
   109
  def isabelle_tags(root: Path = Path.ISABELLE_HOME): String =
73521
a6ca869af096 more robust and uniform ISABELLE_TAGS;
wenzelm
parents: 73520
diff changeset
   110
    getetc("ISABELLE_TAGS", root = root) orElse Mercurial.archive_tags(root) getOrElse {
a6ca869af096 more robust and uniform ISABELLE_TAGS;
wenzelm
parents: 73520
diff changeset
   111
      if (Mercurial.is_repository(root)) {
a6ca869af096 more robust and uniform ISABELLE_TAGS;
wenzelm
parents: 73520
diff changeset
   112
        val hg = Mercurial.repository(root)
a6ca869af096 more robust and uniform ISABELLE_TAGS;
wenzelm
parents: 73520
diff changeset
   113
        hg.tags(rev = hg.parent())
a6ca869af096 more robust and uniform ISABELLE_TAGS;
wenzelm
parents: 73520
diff changeset
   114
      }
a6ca869af096 more robust and uniform ISABELLE_TAGS;
wenzelm
parents: 73520
diff changeset
   115
      else ""
a6ca869af096 more robust and uniform ISABELLE_TAGS;
wenzelm
parents: 73520
diff changeset
   116
    }
31796
117300d72398 renamed IsabelleSystem to Isabelle_System;
wenzelm
parents: 31704
diff changeset
   117
75218
wenzelm
parents: 74336
diff changeset
   118
  def export_isabelle_identifier(isabelle_identifier: String): String =
75563
5bba3516ddb5 more robust: always override ISABELLE_IDENTIFIER from environment;
wenzelm
parents: 75523
diff changeset
   119
    "export ISABELLE_IDENTIFIER=" + Bash.string(isabelle_identifier) + "\n"
75218
wenzelm
parents: 74336
diff changeset
   120
73523
2cd23d587db9 further clarification of Isabelle distribution identification -- avoid odd patching of sources;
wenzelm
parents: 73522
diff changeset
   121
  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
   122
2cd23d587db9 further clarification of Isabelle distribution identification -- avoid odd patching of sources;
wenzelm
parents: 73522
diff changeset
   123
  def isabelle_heading(): String =
2cd23d587db9 further clarification of Isabelle distribution identification -- avoid odd patching of sources;
wenzelm
parents: 73522
diff changeset
   124
    isabelle_identifier() match {
2cd23d587db9 further clarification of Isabelle distribution identification -- avoid odd patching of sources;
wenzelm
parents: 73522
diff changeset
   125
      case None => ""
2cd23d587db9 further clarification of Isabelle distribution identification -- avoid odd patching of sources;
wenzelm
parents: 73522
diff changeset
   126
      case Some(version) => " (" + version + ")"
2cd23d587db9 further clarification of Isabelle distribution identification -- avoid odd patching of sources;
wenzelm
parents: 73522
diff changeset
   127
    }
2cd23d587db9 further clarification of Isabelle distribution identification -- avoid odd patching of sources;
wenzelm
parents: 73522
diff changeset
   128
2cd23d587db9 further clarification of Isabelle distribution identification -- avoid odd patching of sources;
wenzelm
parents: 73522
diff changeset
   129
  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
   130
74336
7bb0ac635397 permissive identification, e.g. relevant for HOL-SPARK examples running on rsync-clone;
wenzelm
parents: 74268
diff changeset
   131
  def identification(): String =
7bb0ac635397 permissive identification, e.g. relevant for HOL-SPARK examples running on rsync-clone;
wenzelm
parents: 74268
diff changeset
   132
    "Isabelle" + (try { "/" + isabelle_id () } catch { case ERROR(_) => "" }) + isabelle_heading()
73547
a7aabdf889b7 clarified signature;
wenzelm
parents: 73525
diff changeset
   133
54039
c931190b8c5c tuned whitespace;
wenzelm
parents: 53582
diff changeset
   134
43606
e1a09c2a6248 prefer Isabelle path algebra;
wenzelm
parents: 43520
diff changeset
   135
  /** file-system operations **/
31796
117300d72398 renamed IsabelleSystem to Isabelle_System;
wenzelm
parents: 31704
diff changeset
   136
73322
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   137
  /* scala functions */
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   138
75437
7b417c578b19 clarified signature;
wenzelm
parents: 75425
diff changeset
   139
  private def apply_paths(
7b417c578b19 clarified signature;
wenzelm
parents: 75425
diff changeset
   140
    args: List[String],
7b417c578b19 clarified signature;
wenzelm
parents: 75425
diff changeset
   141
    fun: PartialFunction[List[Path], Unit]
7b417c578b19 clarified signature;
wenzelm
parents: 75425
diff changeset
   142
  ): List[String] = {
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75230
diff changeset
   143
    fun(args.map(Path.explode))
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75230
diff changeset
   144
    Nil
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75230
diff changeset
   145
  }
73322
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   146
73567
355af2d1b817 clarified signature;
wenzelm
parents: 73566
diff changeset
   147
  private def apply_paths1(args: List[String], fun: Path => Unit): List[String] =
75437
7b417c578b19 clarified signature;
wenzelm
parents: 75425
diff changeset
   148
    apply_paths(args, { case List(path) => fun(path) })
73322
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   149
73567
355af2d1b817 clarified signature;
wenzelm
parents: 73566
diff changeset
   150
  private def apply_paths2(args: List[String], fun: (Path, Path) => Unit): List[String] =
75437
7b417c578b19 clarified signature;
wenzelm
parents: 75425
diff changeset
   151
    apply_paths(args, { case List(path1, path2) => fun(path1, path2) })
73322
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   152
73567
355af2d1b817 clarified signature;
wenzelm
parents: 73566
diff changeset
   153
  private def apply_paths3(args: List[String], fun: (Path, Path, Path) => Unit): List[String] =
75437
7b417c578b19 clarified signature;
wenzelm
parents: 75425
diff changeset
   154
    apply_paths(args, { case List(path1, path2, path3) => fun(path1, path2, path3) })
73322
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   155
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   156
71114
6cfec8029831 clarified signature;
wenzelm
parents: 69425
diff changeset
   157
  /* permissions */
6cfec8029831 clarified signature;
wenzelm
parents: 69425
diff changeset
   158
6cfec8029831 clarified signature;
wenzelm
parents: 69425
diff changeset
   159
  def chmod(arg: String, path: Path): Unit =
71123
6ab4a5fb82e1 clarified signature: allow compound arg;
wenzelm
parents: 71119
diff changeset
   160
    bash("chmod " + arg + " " + File.bash_path(path)).check
71114
6cfec8029831 clarified signature;
wenzelm
parents: 69425
diff changeset
   161
6cfec8029831 clarified signature;
wenzelm
parents: 69425
diff changeset
   162
  def chown(arg: String, path: Path): Unit =
71123
6ab4a5fb82e1 clarified signature: allow compound arg;
wenzelm
parents: 71119
diff changeset
   163
    bash("chown " + arg + " " + File.bash_path(path)).check
71114
6cfec8029831 clarified signature;
wenzelm
parents: 69425
diff changeset
   164
6cfec8029831 clarified signature;
wenzelm
parents: 69425
diff changeset
   165
64189
dfb63036c4f6 tuned signature;
wenzelm
parents: 64167
diff changeset
   166
  /* 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
   167
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75230
diff changeset
   168
  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: 73324
diff changeset
   169
    if (!path.is_dir) {
73945
e61add9d5b5e tuned signature;
wenzelm
parents: 73911
diff changeset
   170
      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: 73324
diff changeset
   171
      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
   172
    }
72376
04bce3478688 clarified signature;
wenzelm
parents: 72375
diff changeset
   173
    path
04bce3478688 clarified signature;
wenzelm
parents: 72375
diff changeset
   174
  }
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
   175
72377
c7741f767e3e clarified signature;
wenzelm
parents: 72376
diff changeset
   176
  def new_directory(path: Path): Path =
72426
f5d60c12deeb more standard path output (despite platform_path from d55eb82ae77b);
wenzelm
parents: 72414
diff changeset
   177
    if (path.is_dir) error("Directory already exists: " + path.absolute)
72377
c7741f767e3e clarified signature;
wenzelm
parents: 72376
diff changeset
   178
    else make_directory(path)
c7741f767e3e clarified signature;
wenzelm
parents: 72376
diff changeset
   179
76621
7af197063e2f clarified signature: copy directory content more directly;
wenzelm
parents: 76620
diff changeset
   180
  def copy_dir(dir1: Path, dir2: Path, direct: Boolean = false): Unit = {
76620
fb322b989584 more robust;
wenzelm
parents: 76619
diff changeset
   181
    def make_path(dir: Path): String = {
76621
7af197063e2f clarified signature: copy directory content more directly;
wenzelm
parents: 76620
diff changeset
   182
      val s = File.standard_path(dir.absolute)
7af197063e2f clarified signature: copy directory content more directly;
wenzelm
parents: 76620
diff changeset
   183
      if (direct) Url.direct_path(s) else s
73322
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   184
    }
76620
fb322b989584 more robust;
wenzelm
parents: 76619
diff changeset
   185
    val p1 = make_path(dir1)
fb322b989584 more robust;
wenzelm
parents: 76619
diff changeset
   186
    val p2 = make_path(dir2)
76624
247a51c3abec more uniform use of make_directory;
wenzelm
parents: 76623
diff changeset
   187
    make_directory(if (direct) dir2.absolute else dir2.absolute.dir)
76620
fb322b989584 more robust;
wenzelm
parents: 76619
diff changeset
   188
    val res = bash("cp -a " + Bash.string(p1) + " " + Bash.string(p2))
fb322b989584 more robust;
wenzelm
parents: 76619
diff changeset
   189
    if (!res.ok) cat_error("Failed to copy " + quote(p1) + " to " + quote(p2), res.err)
73322
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   190
  }
73317
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   191
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75230
diff changeset
   192
  def with_copy_dir[A](dir1: Path, dir2: Path)(body: => A): A = {
76625
3bacdff9e24f tuned implementation;
wenzelm
parents: 76624
diff changeset
   193
    new_directory(dir2)
3bacdff9e24f tuned implementation;
wenzelm
parents: 76624
diff changeset
   194
    try { copy_dir(dir1, dir2, direct = true); body }
3bacdff9e24f tuned implementation;
wenzelm
parents: 76624
diff changeset
   195
    finally { rm_tree(dir2) }
75230
bbbee54b1198 prepare patched version more thoroughly, with explicit patches;
wenzelm
parents: 75229
diff changeset
   196
  }
bbbee54b1198 prepare patched version more thoroughly, with explicit patches;
wenzelm
parents: 75229
diff changeset
   197
73317
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   198
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75230
diff changeset
   199
  object Make_Directory extends Scala.Fun_Strings("make_directory") {
73322
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   200
    val here = Scala_Project.here
73567
355af2d1b817 clarified signature;
wenzelm
parents: 73566
diff changeset
   201
    def apply(args: List[String]): List[String] = apply_paths1(args, make_directory)
73322
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   202
  }
73317
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   203
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75230
diff changeset
   204
  object Copy_Dir extends Scala.Fun_Strings("copy_dir") {
73322
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   205
    val here = Scala_Project.here
76621
7af197063e2f clarified signature: copy directory content more directly;
wenzelm
parents: 76620
diff changeset
   206
    def apply(args: List[String]): List[String] = apply_paths2(args, copy_dir(_, _))
73322
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   207
  }
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   208
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   209
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   210
  /* copy files */
64189
dfb63036c4f6 tuned signature;
wenzelm
parents: 64167
diff changeset
   211
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75230
diff changeset
   212
  def copy_file(src: JFile, dst: JFile): Unit = {
73317
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   213
    val target = if (dst.isDirectory) new JFile(dst, src.getName) else dst
73319
a7d9edd2e63b proper File.eq, amending df49ca5da9d0;
wenzelm
parents: 73317
diff changeset
   214
    if (!File.eq(src, target)) {
73322
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   215
      try {
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   216
        Files.copy(src.toPath, target.toPath,
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   217
          StandardCopyOption.COPY_ATTRIBUTES,
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   218
          StandardCopyOption.REPLACE_EXISTING)
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   219
      }
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   220
      catch {
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   221
        case ERROR(msg) =>
73651
4fbbf421c376 tuned message;
wenzelm
parents: 73650
diff changeset
   222
          cat_error("Failed to copy file " +
73322
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   223
            File.path(src).absolute + " to " + File.path(dst).absolute, msg)
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   224
      }
73317
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   225
    }
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   226
  }
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   227
73320
wenzelm
parents: 73319
diff changeset
   228
  def copy_file(src: Path, dst: Path): Unit = copy_file(src.file, dst.file)
73317
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   229
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75230
diff changeset
   230
  def copy_file_base(base_dir: Path, src: Path, target_dir: Path): Unit = {
73320
wenzelm
parents: 73319
diff changeset
   231
    val src1 = src.expand
wenzelm
parents: 73319
diff changeset
   232
    val src1_dir = src1.dir
76623
61dae67ad4dd tuned message;
wenzelm
parents: 76621
diff changeset
   233
    if (!src1.starts_basic) {
61dae67ad4dd tuned message;
wenzelm
parents: 76621
diff changeset
   234
      error("Illegal path specification " + src1 + " beyond base directory " + base_dir.absolute)
61dae67ad4dd tuned message;
wenzelm
parents: 76621
diff changeset
   235
    }
73320
wenzelm
parents: 73319
diff changeset
   236
    copy_file(base_dir + src1, Isabelle_System.make_directory(target_dir + src1_dir))
73317
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   237
  }
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   238
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   239
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75230
diff changeset
   240
  object Copy_File extends Scala.Fun_Strings("copy_file") {
73322
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   241
    val here = Scala_Project.here
73567
355af2d1b817 clarified signature;
wenzelm
parents: 73566
diff changeset
   242
    def apply(args: List[String]): List[String] = apply_paths2(args, copy_file)
73322
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   243
  }
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   244
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75230
diff changeset
   245
  object Copy_File_Base extends Scala.Fun_Strings("copy_file_base") {
73322
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   246
    val here = Scala_Project.here
73567
355af2d1b817 clarified signature;
wenzelm
parents: 73566
diff changeset
   247
    def apply(args: List[String]): List[String] = apply_paths3(args, copy_file_base)
73322
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   248
  }
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   249
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   250
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   251
  /* move files */
73317
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   252
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75230
diff changeset
   253
  def move_file(src: JFile, dst: JFile): Unit = {
73317
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   254
    val target = if (dst.isDirectory) new JFile(dst, src.getName) else dst
73319
a7d9edd2e63b proper File.eq, amending df49ca5da9d0;
wenzelm
parents: 73317
diff changeset
   255
    if (!File.eq(src, target))
73317
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   256
      Files.move(src.toPath, target.toPath, StandardCopyOption.REPLACE_EXISTING)
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   257
  }
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   258
73320
wenzelm
parents: 73319
diff changeset
   259
  def move_file(src: Path, dst: Path): Unit = move_file(src.file, dst.file)
73317
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   260
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   261
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   262
  /* symbolic link */
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   263
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75230
diff changeset
   264
  def symlink(src: Path, dst: Path, force: Boolean = false, native: Boolean = false): Unit = {
73317
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   265
    val src_file = src.file
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   266
    val dst_file = dst.file
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   267
    val target = if (dst_file.isDirectory) new JFile(dst_file, src_file.getName) else dst_file
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   268
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   269
    if (force) target.delete
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   270
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75230
diff changeset
   271
    def cygwin_link(): Unit = {
74070
a69a13c4b049 support for native symlinks on Windows;
wenzelm
parents: 73987
diff changeset
   272
      if (native) {
a69a13c4b049 support for native symlinks on Windows;
wenzelm
parents: 73987
diff changeset
   273
        error("Failed to create native symlink on Windows: " + quote(src_file.toString) +
a69a13c4b049 support for native symlinks on Windows;
wenzelm
parents: 73987
diff changeset
   274
          "\n(but it could work as Administrator)")
a69a13c4b049 support for native symlinks on Windows;
wenzelm
parents: 73987
diff changeset
   275
      }
a69a13c4b049 support for native symlinks on Windows;
wenzelm
parents: 73987
diff changeset
   276
      else isabelle.setup.Environment.cygwin_link(File.standard_path(src), target)
a69a13c4b049 support for native symlinks on Windows;
wenzelm
parents: 73987
diff changeset
   277
    }
a69a13c4b049 support for native symlinks on Windows;
wenzelm
parents: 73987
diff changeset
   278
73893
eb7655fcb090 clarified modules;
wenzelm
parents: 73891
diff changeset
   279
73317
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   280
    try { Files.createSymbolicLink(target.toPath, src_file.toPath) }
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   281
    catch {
73893
eb7655fcb090 clarified modules;
wenzelm
parents: 73891
diff changeset
   282
      case _: UnsupportedOperationException if Platform.is_windows => cygwin_link()
eb7655fcb090 clarified modules;
wenzelm
parents: 73891
diff changeset
   283
      case _: FileSystemException if Platform.is_windows => cygwin_link()
73317
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   284
    }
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   285
  }
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   286
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
   287
56428
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   288
  /* tmp files */
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   289
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75230
diff changeset
   290
  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
   291
    val path = Path.explode("$ISABELLE_TMP_PREFIX")
72375
e48d93811ed7 clarified signature;
wenzelm
parents: 72362
diff changeset
   292
    path.file.mkdirs  // low-level mkdirs to avoid recursion via Isabelle environment
60988
1d7a7e33fd67 tuned signature, according to ML version;
wenzelm
parents: 60263
diff changeset
   293
    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
   294
  }
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   295
76144
35a279a2d246 clarified signature;
wenzelm
parents: 75702
diff changeset
   296
  def tmp_file(
35a279a2d246 clarified signature;
wenzelm
parents: 75702
diff changeset
   297
    name: String,
35a279a2d246 clarified signature;
wenzelm
parents: 75702
diff changeset
   298
    ext: String = "",
35a279a2d246 clarified signature;
wenzelm
parents: 75702
diff changeset
   299
    base_dir: JFile = isabelle_tmp_prefix(),
35a279a2d246 clarified signature;
wenzelm
parents: 75702
diff changeset
   300
    initialized: Boolean = true
35a279a2d246 clarified signature;
wenzelm
parents: 75702
diff changeset
   301
  ): JFile = {
77504
wenzelm
parents: 77384
diff changeset
   302
    val suffix = if_proper(ext, "." + ext)
67924
b2cdd24e83b6 clarified signature: flexible base_dir;
wenzelm
parents: 67872
diff changeset
   303
    val file = Files.createTempFile(base_dir.toPath, name, suffix).toFile
76144
35a279a2d246 clarified signature;
wenzelm
parents: 75702
diff changeset
   304
    if (initialized) file.deleteOnExit() else file.delete()
56428
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   305
    file
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   306
  }
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   307
76177
b847a9983784 tuned signature;
wenzelm
parents: 76146
diff changeset
   308
  def with_tmp_file[A](
b847a9983784 tuned signature;
wenzelm
parents: 76146
diff changeset
   309
    name: String,
b847a9983784 tuned signature;
wenzelm
parents: 76146
diff changeset
   310
    ext: String = "",
b847a9983784 tuned signature;
wenzelm
parents: 76146
diff changeset
   311
    base_dir: JFile = isabelle_tmp_prefix()
b847a9983784 tuned signature;
wenzelm
parents: 76146
diff changeset
   312
  )(body: Path => A): A = {
b847a9983784 tuned signature;
wenzelm
parents: 76146
diff changeset
   313
    val file = tmp_file(name, ext, base_dir = base_dir)
64220
e7cbf81ec4b7 prefer Isabelle standard Path;
wenzelm
parents: 64213
diff changeset
   314
    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
   315
  }
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   316
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   317
56477
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   318
  /* tmp dirs */
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   319
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75230
diff changeset
   320
  def rm_tree(root: JFile): Unit = {
56477
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   321
    root.delete
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   322
    if (root.isDirectory) {
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   323
      Files.walkFileTree(root.toPath,
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   324
        new SimpleFileVisitor[JPath] {
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75230
diff changeset
   325
          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: 68409
diff changeset
   326
            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
   327
            catch { case _: IOException => }
56477
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   328
            FileVisitResult.CONTINUE
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   329
          }
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   330
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75230
diff changeset
   331
          override def postVisitDirectory(dir: JPath, e: IOException): FileVisitResult = {
56477
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   332
            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
   333
              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
   334
              catch { case _: IOException => }
56477
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   335
              FileVisitResult.CONTINUE
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   336
            }
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   337
            else throw e
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   338
          }
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   339
        }
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   340
      )
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   341
    }
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   342
  }
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   343
73324
48abb09d49ea more Isabelle/ML/Scala operations;
wenzelm
parents: 73323
diff changeset
   344
  def rm_tree(root: Path): Unit = rm_tree(root.file)
48abb09d49ea more Isabelle/ML/Scala operations;
wenzelm
parents: 73323
diff changeset
   345
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75230
diff changeset
   346
  object Rm_Tree extends Scala.Fun_Strings("rm_tree") {
73324
48abb09d49ea more Isabelle/ML/Scala operations;
wenzelm
parents: 73323
diff changeset
   347
    val here = Scala_Project.here
73567
355af2d1b817 clarified signature;
wenzelm
parents: 73566
diff changeset
   348
    def apply(args: List[String]): List[String] = apply_paths1(args, rm_tree)
73324
48abb09d49ea more Isabelle/ML/Scala operations;
wenzelm
parents: 73323
diff changeset
   349
  }
48abb09d49ea more Isabelle/ML/Scala operations;
wenzelm
parents: 73323
diff changeset
   350
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75230
diff changeset
   351
  def tmp_dir(name: String, base_dir: JFile = isabelle_tmp_prefix()): JFile = {
67924
b2cdd24e83b6 clarified signature: flexible base_dir;
wenzelm
parents: 67872
diff changeset
   352
    val dir = Files.createTempDirectory(base_dir.toPath, name).toFile
75219
6d1b64d76b57 tuned, based on suggestions by IntelliJ IDEA;
wenzelm
parents: 75218
diff changeset
   353
    dir.deleteOnExit()
56477
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   354
    dir
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   355
  }
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   356
76177
b847a9983784 tuned signature;
wenzelm
parents: 76146
diff changeset
   357
  def with_tmp_dir[A](
b847a9983784 tuned signature;
wenzelm
parents: 76146
diff changeset
   358
    name: String,
b847a9983784 tuned signature;
wenzelm
parents: 76146
diff changeset
   359
    base_dir: JFile = isabelle_tmp_prefix()
b847a9983784 tuned signature;
wenzelm
parents: 76146
diff changeset
   360
  )(body: Path => A): A = {
b847a9983784 tuned signature;
wenzelm
parents: 76146
diff changeset
   361
    val dir = tmp_dir(name, base_dir = base_dir)
64220
e7cbf81ec4b7 prefer Isabelle standard Path;
wenzelm
parents: 64213
diff changeset
   362
    try { body(File.path(dir)) } finally { rm_tree(dir) }
56477
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   363
  }
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   364
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   365
65793
96b4799a2e04 more robust update of generated directory;
wenzelm
parents: 65717
diff changeset
   366
  /* quasi-atomic update of directory */
96b4799a2e04 more robust update of generated directory;
wenzelm
parents: 65717
diff changeset
   367
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75230
diff changeset
   368
  def update_directory(dir: Path, f: Path => Unit): Unit = {
65793
96b4799a2e04 more robust update of generated directory;
wenzelm
parents: 65717
diff changeset
   369
    val new_dir = dir.ext("new")
96b4799a2e04 more robust update of generated directory;
wenzelm
parents: 65717
diff changeset
   370
    val old_dir = dir.ext("old")
96b4799a2e04 more robust update of generated directory;
wenzelm
parents: 65717
diff changeset
   371
96b4799a2e04 more robust update of generated directory;
wenzelm
parents: 65717
diff changeset
   372
    rm_tree(new_dir)
96b4799a2e04 more robust update of generated directory;
wenzelm
parents: 65717
diff changeset
   373
    rm_tree(old_dir)
96b4799a2e04 more robust update of generated directory;
wenzelm
parents: 65717
diff changeset
   374
96b4799a2e04 more robust update of generated directory;
wenzelm
parents: 65717
diff changeset
   375
    f(new_dir)
96b4799a2e04 more robust update of generated directory;
wenzelm
parents: 65717
diff changeset
   376
73317
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   377
    if (dir.is_dir) move_file(dir, old_dir)
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   378
    move_file(new_dir, dir)
65793
96b4799a2e04 more robust update of generated directory;
wenzelm
parents: 65717
diff changeset
   379
    rm_tree(old_dir)
96b4799a2e04 more robust update of generated directory;
wenzelm
parents: 65717
diff changeset
   380
  }
96b4799a2e04 more robust update of generated directory;
wenzelm
parents: 65717
diff changeset
   381
96b4799a2e04 more robust update of generated directory;
wenzelm
parents: 65717
diff changeset
   382
76145
a6bdf4b889ca clarified signature;
wenzelm
parents: 76144
diff changeset
   383
  /* TCP/IP ports */
a6bdf4b889ca clarified signature;
wenzelm
parents: 76144
diff changeset
   384
a6bdf4b889ca clarified signature;
wenzelm
parents: 76144
diff changeset
   385
  def local_port(): Int = {
a6bdf4b889ca clarified signature;
wenzelm
parents: 76144
diff changeset
   386
    val socket = new ServerSocket(0)
a6bdf4b889ca clarified signature;
wenzelm
parents: 76144
diff changeset
   387
    val port = socket.getLocalPort
a6bdf4b889ca clarified signature;
wenzelm
parents: 76144
diff changeset
   388
    socket.close()
a6bdf4b889ca clarified signature;
wenzelm
parents: 76144
diff changeset
   389
    port
a6bdf4b889ca clarified signature;
wenzelm
parents: 76144
diff changeset
   390
  }
a6bdf4b889ca clarified signature;
wenzelm
parents: 76144
diff changeset
   391
62613
wenzelm
parents: 62612
diff changeset
   392
76146
a64f3496d93a clarified signature;
wenzelm
parents: 76145
diff changeset
   393
  /* JVM shutdown hook */
a64f3496d93a clarified signature;
wenzelm
parents: 76145
diff changeset
   394
a64f3496d93a clarified signature;
wenzelm
parents: 76145
diff changeset
   395
  def create_shutdown_hook(body: => Unit): Thread = {
a64f3496d93a clarified signature;
wenzelm
parents: 76145
diff changeset
   396
    val shutdown_hook = Isabelle_Thread.create(new Runnable { def run: Unit = body })
a64f3496d93a clarified signature;
wenzelm
parents: 76145
diff changeset
   397
a64f3496d93a clarified signature;
wenzelm
parents: 76145
diff changeset
   398
    try { Runtime.getRuntime.addShutdownHook(shutdown_hook) }
a64f3496d93a clarified signature;
wenzelm
parents: 76145
diff changeset
   399
    catch { case _: IllegalStateException => }
a64f3496d93a clarified signature;
wenzelm
parents: 76145
diff changeset
   400
a64f3496d93a clarified signature;
wenzelm
parents: 76145
diff changeset
   401
    shutdown_hook
a64f3496d93a clarified signature;
wenzelm
parents: 76145
diff changeset
   402
  }
a64f3496d93a clarified signature;
wenzelm
parents: 76145
diff changeset
   403
a64f3496d93a clarified signature;
wenzelm
parents: 76145
diff changeset
   404
  def remove_shutdown_hook(shutdown_hook: Thread): Unit =
a64f3496d93a clarified signature;
wenzelm
parents: 76145
diff changeset
   405
    try { Runtime.getRuntime.removeShutdownHook(shutdown_hook) }
a64f3496d93a clarified signature;
wenzelm
parents: 76145
diff changeset
   406
    catch { case _: IllegalStateException => }
a64f3496d93a clarified signature;
wenzelm
parents: 76145
diff changeset
   407
a64f3496d93a clarified signature;
wenzelm
parents: 76145
diff changeset
   408
a64f3496d93a clarified signature;
wenzelm
parents: 76145
diff changeset
   409
62613
wenzelm
parents: 62612
diff changeset
   410
  /** external processes **/
wenzelm
parents: 62612
diff changeset
   411
wenzelm
parents: 62612
diff changeset
   412
  /* GNU bash */
31796
117300d72398 renamed IsabelleSystem to Isabelle_System;
wenzelm
parents: 31704
diff changeset
   413
62610
4c89504c76fb more uniform signature for various process invocations;
wenzelm
parents: 62602
diff changeset
   414
  def bash(script: String,
74212
a1ccecae6a57 clarified process description;
wenzelm
parents: 74146
diff changeset
   415
    description: String = "",
62610
4c89504c76fb more uniform signature for various process invocations;
wenzelm
parents: 62602
diff changeset
   416
    cwd: JFile = null,
73897
0ddb5de0506e clarified signature: prefer Java interfaces;
wenzelm
parents: 73893
diff changeset
   417
    env: JMap[String, String] = settings(),
62610
4c89504c76fb more uniform signature for various process invocations;
wenzelm
parents: 62602
diff changeset
   418
    redirect: Boolean = false,
74142
0f051404f487 clarified signature: more options for bash_process;
wenzelm
parents: 74070
diff changeset
   419
    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: 51820
diff changeset
   420
    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
   421
    progress_stderr: String => Unit = (_: String) => (),
72598
d9f2be66ebad support for watchdog thread;
wenzelm
parents: 72455
diff changeset
   422
    watchdog: Option[Bash.Watchdog] = None,
62602
96e679f042ec more thorough cleanup -- in Scala;
wenzelm
parents: 62573
diff changeset
   423
    strict: Boolean = true,
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75230
diff changeset
   424
    cleanup: () => Unit = () => ()
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75230
diff changeset
   425
  ): Process_Result = {
74212
a1ccecae6a57 clarified process description;
wenzelm
parents: 74146
diff changeset
   426
    Bash.process(script,
a1ccecae6a57 clarified process description;
wenzelm
parents: 74146
diff changeset
   427
      description = description, cwd = cwd, env = env, redirect = redirect, cleanup = cleanup).
74142
0f051404f487 clarified signature: more options for bash_process;
wenzelm
parents: 74070
diff changeset
   428
      result(input = input, progress_stdout = progress_stdout, progress_stderr = progress_stderr,
72598
d9f2be66ebad support for watchdog thread;
wenzelm
parents: 72455
diff changeset
   429
        watchdog = watchdog, strict = strict)
34198
ff5486262cd6 moved Library.decode_permissive_utf8 to Isabelle_System;
wenzelm
parents: 34196
diff changeset
   430
  }
ff5486262cd6 moved Library.decode_permissive_utf8 to Isabelle_System;
wenzelm
parents: 34196
diff changeset
   431
75218
wenzelm
parents: 74336
diff changeset
   432
wenzelm
parents: 74336
diff changeset
   433
  /* command-line tools */
wenzelm
parents: 74336
diff changeset
   434
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75230
diff changeset
   435
  def require_command(cmd: String, test: String = "--version"): Unit = {
75218
wenzelm
parents: 74336
diff changeset
   436
    if (!bash(Bash.string(cmd) + " " + test).ok) error("Missing system command: " + quote(cmd))
wenzelm
parents: 74336
diff changeset
   437
  }
wenzelm
parents: 74336
diff changeset
   438
64935
9437a117408b insist in proper GNU tar, to avoid subtle semantic differences;
wenzelm
parents: 64657
diff changeset
   439
  private lazy val gnutar_check: Boolean =
9437a117408b insist in proper GNU tar, to avoid subtle semantic differences;
wenzelm
parents: 64657
diff changeset
   440
    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
   441
    catch { case ERROR(_) => false }
9437a117408b insist in proper GNU tar, to avoid subtle semantic differences;
wenzelm
parents: 64657
diff changeset
   442
69425
94f6ca69d983 clarified gnutar options: more uniform owner;
wenzelm
parents: 69355
diff changeset
   443
  def gnutar(
94f6ca69d983 clarified gnutar options: more uniform owner;
wenzelm
parents: 69355
diff changeset
   444
    args: String,
94f6ca69d983 clarified gnutar options: more uniform owner;
wenzelm
parents: 69355
diff changeset
   445
    dir: Path = Path.current,
94f6ca69d983 clarified gnutar options: more uniform owner;
wenzelm
parents: 69355
diff changeset
   446
    original_owner: Boolean = false,
76540
83de6e9ae983 clarified signature: prefer Scala functions instead of shell scripts;
wenzelm
parents: 76533
diff changeset
   447
    strip: Boolean = false,
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75230
diff changeset
   448
    redirect: Boolean = false
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75230
diff changeset
   449
  ): Process_Result = {
69425
94f6ca69d983 clarified gnutar options: more uniform owner;
wenzelm
parents: 69355
diff changeset
   450
    val options =
94f6ca69d983 clarified gnutar options: more uniform owner;
wenzelm
parents: 69355
diff changeset
   451
      (if (dir.is_current) "" else "-C " + File.bash_path(dir) + " ") +
73624
f033d4f661e9 tuned signature;
wenzelm
parents: 73611
diff changeset
   452
      (if (original_owner) "" else "--owner=root --group=staff ") +
76540
83de6e9ae983 clarified signature: prefer Scala functions instead of shell scripts;
wenzelm
parents: 76533
diff changeset
   453
      (if (!strip) "" else "--strip-components=1 ")
69425
94f6ca69d983 clarified gnutar options: more uniform owner;
wenzelm
parents: 69355
diff changeset
   454
94f6ca69d983 clarified gnutar options: more uniform owner;
wenzelm
parents: 69355
diff changeset
   455
    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
   456
    else error("Expected to find GNU tar executable")
9437a117408b insist in proper GNU tar, to avoid subtle semantic differences;
wenzelm
parents: 64657
diff changeset
   457
  }
9437a117408b insist in proper GNU tar, to avoid subtle semantic differences;
wenzelm
parents: 64657
diff changeset
   458
76540
83de6e9ae983 clarified signature: prefer Scala functions instead of shell scripts;
wenzelm
parents: 76533
diff changeset
   459
  def extract(archive: Path, dir: Path, strip: Boolean = false): Unit = {
76533
2590980401b0 proper treatment of tar.gz double-extension;
wenzelm
parents: 76530
diff changeset
   460
    val name = archive.file_name
76541
3706b88035d2 more direct target directory;
wenzelm
parents: 76540
diff changeset
   461
    make_directory(dir)
76546
88cecb9f1cdc proper unzip with strip option, within the JVM;
wenzelm
parents: 76543
diff changeset
   462
    if (File.is_zip(name) || File.is_jar(name)) {
88cecb9f1cdc proper unzip with strip option, within the JVM;
wenzelm
parents: 76543
diff changeset
   463
      using(new ZipFile(archive.file)) { zip_file =>
88cecb9f1cdc proper unzip with strip option, within the JVM;
wenzelm
parents: 76543
diff changeset
   464
        val items =
88cecb9f1cdc proper unzip with strip option, within the JVM;
wenzelm
parents: 76543
diff changeset
   465
          for (entry <- zip_file.entries().asScala.toList)
88cecb9f1cdc proper unzip with strip option, within the JVM;
wenzelm
parents: 76543
diff changeset
   466
          yield {
88cecb9f1cdc proper unzip with strip option, within the JVM;
wenzelm
parents: 76543
diff changeset
   467
            val input = JPath.of(entry.getName)
88cecb9f1cdc proper unzip with strip option, within the JVM;
wenzelm
parents: 76543
diff changeset
   468
            val count = input.getNameCount
88cecb9f1cdc proper unzip with strip option, within the JVM;
wenzelm
parents: 76543
diff changeset
   469
            val output =
88cecb9f1cdc proper unzip with strip option, within the JVM;
wenzelm
parents: 76543
diff changeset
   470
              if (strip && count <= 1) None
88cecb9f1cdc proper unzip with strip option, within the JVM;
wenzelm
parents: 76543
diff changeset
   471
              else if (strip) Some(input.subpath(1, count))
88cecb9f1cdc proper unzip with strip option, within the JVM;
wenzelm
parents: 76543
diff changeset
   472
              else Some(input)
88cecb9f1cdc proper unzip with strip option, within the JVM;
wenzelm
parents: 76543
diff changeset
   473
            val result = output.map(dir.java_path.resolve(_))
88cecb9f1cdc proper unzip with strip option, within the JVM;
wenzelm
parents: 76543
diff changeset
   474
            for (res <- result) {
88cecb9f1cdc proper unzip with strip option, within the JVM;
wenzelm
parents: 76543
diff changeset
   475
              if (entry.isDirectory) Files.createDirectories(res)
88cecb9f1cdc proper unzip with strip option, within the JVM;
wenzelm
parents: 76543
diff changeset
   476
              else {
88cecb9f1cdc proper unzip with strip option, within the JVM;
wenzelm
parents: 76543
diff changeset
   477
                val bytes = using(zip_file.getInputStream(entry))(Bytes.read_stream(_))
88cecb9f1cdc proper unzip with strip option, within the JVM;
wenzelm
parents: 76543
diff changeset
   478
                Files.createDirectories(res.getParent)
88cecb9f1cdc proper unzip with strip option, within the JVM;
wenzelm
parents: 76543
diff changeset
   479
                Files.write(res, bytes.array)
88cecb9f1cdc proper unzip with strip option, within the JVM;
wenzelm
parents: 76543
diff changeset
   480
              }
88cecb9f1cdc proper unzip with strip option, within the JVM;
wenzelm
parents: 76543
diff changeset
   481
            }
88cecb9f1cdc proper unzip with strip option, within the JVM;
wenzelm
parents: 76543
diff changeset
   482
            (entry, result)
88cecb9f1cdc proper unzip with strip option, within the JVM;
wenzelm
parents: 76543
diff changeset
   483
          }
88cecb9f1cdc proper unzip with strip option, within the JVM;
wenzelm
parents: 76543
diff changeset
   484
        for {
78592
fdfe9b91d96e misc tuning: support "scalac -source 3.3";
wenzelm
parents: 77719
diff changeset
   485
          case (entry, Some(res)) <- items
76546
88cecb9f1cdc proper unzip with strip option, within the JVM;
wenzelm
parents: 76543
diff changeset
   486
          if !entry.isDirectory
88cecb9f1cdc proper unzip with strip option, within the JVM;
wenzelm
parents: 76543
diff changeset
   487
          t <- Option(entry.getLastModifiedTime)
88cecb9f1cdc proper unzip with strip option, within the JVM;
wenzelm
parents: 76543
diff changeset
   488
        } Files.setLastModifiedTime(res, t)
88cecb9f1cdc proper unzip with strip option, within the JVM;
wenzelm
parents: 76543
diff changeset
   489
      }
76543
fef0195f8d8e clarified signature: prefer Scala functions instead of shell scripts;
wenzelm
parents: 76541
diff changeset
   490
    }
76540
83de6e9ae983 clarified signature: prefer Scala functions instead of shell scripts;
wenzelm
parents: 76533
diff changeset
   491
    else if (File.is_tar_bz2(name) || File.is_tgz(name) || File.is_tar_gz(name)) {
83de6e9ae983 clarified signature: prefer Scala functions instead of shell scripts;
wenzelm
parents: 76533
diff changeset
   492
      val flags = if (File.is_tar_bz2(name)) "-xjf " else "-xzf "
83de6e9ae983 clarified signature: prefer Scala functions instead of shell scripts;
wenzelm
parents: 76533
diff changeset
   493
      Isabelle_System.gnutar(flags + File.bash_path(archive), dir = dir, strip = strip).check
76533
2590980401b0 proper treatment of tar.gz double-extension;
wenzelm
parents: 76530
diff changeset
   494
    }
2590980401b0 proper treatment of tar.gz double-extension;
wenzelm
parents: 76530
diff changeset
   495
    else error("Cannot extract " + archive)
2590980401b0 proper treatment of tar.gz double-extension;
wenzelm
parents: 76530
diff changeset
   496
  }
76530
2bf13b30b98e clarified signature;
wenzelm
parents: 76177
diff changeset
   497
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75230
diff changeset
   498
  def make_patch(base_dir: Path, src: Path, dst: Path, diff_options: String = ""): String = {
75394
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   499
    with_tmp_file("patch") { patch =>
75229
075467e070ba tuned signature;
wenzelm
parents: 75220
diff changeset
   500
      Isabelle_System.bash(
75230
bbbee54b1198 prepare patched version more thoroughly, with explicit patches;
wenzelm
parents: 75229
diff changeset
   501
        "diff -ru " + diff_options + " -- " + File.bash_path(src) + " " + File.bash_path(dst) +
bbbee54b1198 prepare patched version more thoroughly, with explicit patches;
wenzelm
parents: 75229
diff changeset
   502
          " > " + File.bash_path(patch),
75229
075467e070ba tuned signature;
wenzelm
parents: 75220
diff changeset
   503
        cwd = base_dir.file).check_rc(_ <= 1)
075467e070ba tuned signature;
wenzelm
parents: 75220
diff changeset
   504
      File.read(patch)
75394
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   505
    }
75220
1cbdf9cfc94b clarified signature;
wenzelm
parents: 75219
diff changeset
   506
  }
1cbdf9cfc94b clarified signature;
wenzelm
parents: 75219
diff changeset
   507
54690
cd88b44623bf more direct Isabelle_System.pdf_viewer;
wenzelm
parents: 54645
diff changeset
   508
  def open(arg: String): Unit =
64304
96bc94c87a81 clarified modules;
wenzelm
parents: 64228
diff changeset
   509
    bash("exec \"$ISABELLE_OPEN\" " + Bash.string(arg) + " >/dev/null 2>/dev/null &")
54690
cd88b44623bf more direct Isabelle_System.pdf_viewer;
wenzelm
parents: 54645
diff changeset
   510
cd88b44623bf more direct Isabelle_System.pdf_viewer;
wenzelm
parents: 54645
diff changeset
   511
  def pdf_viewer(arg: Path): Unit =
62616
wenzelm
parents: 62615
diff changeset
   512
    bash("exec \"$PDF_VIEWER\" " + File.bash_path(arg) + " >/dev/null 2>/dev/null &")
54690
cd88b44623bf more direct Isabelle_System.pdf_viewer;
wenzelm
parents: 54645
diff changeset
   513
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75230
diff changeset
   514
  def open_external_file(name: String): Boolean = {
73224
49686e3b1909 clarified links to external files, e.g. .pdf within .thy source document;
wenzelm
parents: 72976
diff changeset
   515
    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
   516
    val external =
77218
86217697863c tuned signature;
wenzelm
parents: 77079
diff changeset
   517
      ext.nonEmpty && space_explode(':', getenv("ISABELLE_EXTERNAL_FILES")).contains(ext)
73224
49686e3b1909 clarified links to external files, e.g. .pdf within .thy source document;
wenzelm
parents: 72976
diff changeset
   518
    if (external) {
49686e3b1909 clarified links to external files, e.g. .pdf within .thy source document;
wenzelm
parents: 72976
diff changeset
   519
      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
   520
      else open(name)
49686e3b1909 clarified links to external files, e.g. .pdf within .thy source document;
wenzelm
parents: 72976
diff changeset
   521
    }
49686e3b1909 clarified links to external files, e.g. .pdf within .thy source document;
wenzelm
parents: 72976
diff changeset
   522
    external
49686e3b1909 clarified links to external files, e.g. .pdf within .thy source document;
wenzelm
parents: 72976
diff changeset
   523
  }
49686e3b1909 clarified links to external files, e.g. .pdf within .thy source document;
wenzelm
parents: 72976
diff changeset
   524
65916
wenzelm
parents: 65793
diff changeset
   525
32450
375db037f4d2 misc tuning;
wenzelm
parents: 32328
diff changeset
   526
31796
117300d72398 renamed IsabelleSystem to Isabelle_System;
wenzelm
parents: 31704
diff changeset
   527
  /** Isabelle resources **/
117300d72398 renamed IsabelleSystem to Isabelle_System;
wenzelm
parents: 31704
diff changeset
   528
64161
2b1128e95dfb explicit indication of Admin tools;
wenzelm
parents: 64152
diff changeset
   529
  /* repository clone with Admin */
2b1128e95dfb explicit indication of Admin tools;
wenzelm
parents: 64152
diff changeset
   530
2b1128e95dfb explicit indication of Admin tools;
wenzelm
parents: 64152
diff changeset
   531
  def admin(): Boolean = Path.explode("~~/Admin").is_dir
2b1128e95dfb explicit indication of Admin tools;
wenzelm
parents: 64152
diff changeset
   532
2b1128e95dfb explicit indication of Admin tools;
wenzelm
parents: 64152
diff changeset
   533
62633
e57416b649d5 find heaps uniformly via Sessions.Store;
wenzelm
parents: 62616
diff changeset
   534
  /* default logic */
48503
wenzelm
parents: 48418
diff changeset
   535
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75230
diff changeset
   536
  def default_logic(args: String*): String = {
50403
87868964733c more uniform default logic, using settings, options, args etc.;
wenzelm
parents: 50298
diff changeset
   537
    args.find(_ != "") match {
87868964733c more uniform default logic, using settings, options, args etc.;
wenzelm
parents: 50298
diff changeset
   538
      case Some(logic) => logic
73317
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   539
      case None => getenv_strict("ISABELLE_LOGIC")
50403
87868964733c more uniform default logic, using settings, options, args etc.;
wenzelm
parents: 50298
diff changeset
   540
    }
87868964733c more uniform default logic, using settings, options, args etc.;
wenzelm
parents: 50298
diff changeset
   541
  }
73323
c2ab1a970e82 more Isabelle/ML/Scala operations;
wenzelm
parents: 73322
diff changeset
   542
c2ab1a970e82 more Isabelle/ML/Scala operations;
wenzelm
parents: 73322
diff changeset
   543
c2ab1a970e82 more Isabelle/ML/Scala operations;
wenzelm
parents: 73322
diff changeset
   544
  /* download file */
c2ab1a970e82 more Isabelle/ML/Scala operations;
wenzelm
parents: 73322
diff changeset
   545
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75230
diff changeset
   546
  def download(url_name: String, progress: Progress = new Progress): HTTP.Content = {
73335
c707655239e2 download more directly, via means of JVM;
wenzelm
parents: 73333
diff changeset
   547
    val url = Url(url_name)
c707655239e2 download more directly, via means of JVM;
wenzelm
parents: 73333
diff changeset
   548
    progress.echo("Getting " + quote(url_name))
73566
4e6b31ed7197 clarified signature: avoid tmp file;
wenzelm
parents: 73565
diff changeset
   549
    try { HTTP.Client.get(url) }
4e6b31ed7197 clarified signature: avoid tmp file;
wenzelm
parents: 73565
diff changeset
   550
    catch { case ERROR(msg) => cat_error("Failed to download " + quote(url_name), msg) }
73323
c2ab1a970e82 more Isabelle/ML/Scala operations;
wenzelm
parents: 73322
diff changeset
   551
  }
c2ab1a970e82 more Isabelle/ML/Scala operations;
wenzelm
parents: 73322
diff changeset
   552
73566
4e6b31ed7197 clarified signature: avoid tmp file;
wenzelm
parents: 73565
diff changeset
   553
  def download_file(url_name: String, file: Path, progress: Progress = new Progress): Unit =
4e6b31ed7197 clarified signature: avoid tmp file;
wenzelm
parents: 73565
diff changeset
   554
    Bytes.write(file, download(url_name, progress = progress).bytes)
4e6b31ed7197 clarified signature: avoid tmp file;
wenzelm
parents: 73565
diff changeset
   555
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75230
diff changeset
   556
  object Download extends Scala.Fun("download", thread = true) {
73323
c2ab1a970e82 more Isabelle/ML/Scala operations;
wenzelm
parents: 73322
diff changeset
   557
    val here = Scala_Project.here
77027
ac7af931189f support Session argument for Scala.Fun;
wenzelm
parents: 76625
diff changeset
   558
    override def invoke(session: Session, args: List[Bytes]): List[Bytes] =
75439
e1c9e4d59921 more robust: avoid partiality;
wenzelm
parents: 75437
diff changeset
   559
      args.map(url => download(url.text).bytes)
73323
c2ab1a970e82 more Isabelle/ML/Scala operations;
wenzelm
parents: 73322
diff changeset
   560
  }
73608
6081885b9d06 tuned signature;
wenzelm
parents: 73601
diff changeset
   561
6081885b9d06 tuned signature;
wenzelm
parents: 73601
diff changeset
   562
6081885b9d06 tuned signature;
wenzelm
parents: 73601
diff changeset
   563
  /* repositories */
6081885b9d06 tuned signature;
wenzelm
parents: 73601
diff changeset
   564
73611
cc36841eeff6 clarified signature: more operations;
wenzelm
parents: 73610
diff changeset
   565
  val isabelle_repository: Mercurial.Server =
cc36841eeff6 clarified signature: more operations;
wenzelm
parents: 73610
diff changeset
   566
    Mercurial.Server("https://isabelle.sketis.net/repos/isabelle")
73608
6081885b9d06 tuned signature;
wenzelm
parents: 73601
diff changeset
   567
73611
cc36841eeff6 clarified signature: more operations;
wenzelm
parents: 73610
diff changeset
   568
  val afp_repository: Mercurial.Server =
cc36841eeff6 clarified signature: more operations;
wenzelm
parents: 73610
diff changeset
   569
    Mercurial.Server("https://isabelle.sketis.net/repos/afp-devel")
73610
6ba5f9d18c56 clarified signature: more operations;
wenzelm
parents: 73609
diff changeset
   570
6ba5f9d18c56 clarified signature: more operations;
wenzelm
parents: 73609
diff changeset
   571
  def official_releases(): List[String] =
6ba5f9d18c56 clarified signature: more operations;
wenzelm
parents: 73609
diff changeset
   572
    Library.trim_split_lines(
6ba5f9d18c56 clarified signature: more operations;
wenzelm
parents: 73609
diff changeset
   573
      isabelle_repository.read_file(Path.explode("Admin/Release/official")))
27919
1eb8a3902d49 Isabelle system support.
wenzelm
parents:
diff changeset
   574
}