src/Pure/System/isabelle_system.scala
author wenzelm
Wed, 30 Jun 2021 15:35:39 +0200
changeset 73904 51f510517aa0
parent 73900 1f1e490dd251
child 73906 f627ffab387b
permissions -rw-r--r--
clarified package: towards stand-alone setup;
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
73897
0ddb5de0506e clarified signature: prefer Java interfaces;
wenzelm
parents: 73893
diff changeset
    10
import java.util.{Map => JMap}
67835
c8e4ee2b5482 tuned imports;
wenzelm
parents: 67586
diff changeset
    11
import java.io.{File => JFile, IOException}
73317
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
    12
import java.nio.file.{Path => JPath, Files, SimpleFileVisitor, FileVisitResult,
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
    13
  StandardCopyOption, FileSystemException}
56477
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
    14
import java.nio.file.attribute.BasicFileAttributes
27936
947cb8e3d313 added get_setting;
wenzelm
parents: 27919
diff changeset
    15
27919
1eb8a3902d49 Isabelle system support.
wenzelm
parents:
diff changeset
    16
43514
45cf8d5e109a lazy Isabelle_System.default supports implicit boot;
wenzelm
parents: 43484
diff changeset
    17
object Isabelle_System
45cf8d5e109a lazy Isabelle_System.default supports implicit boot;
wenzelm
parents: 43484
diff changeset
    18
{
73890
8f6b2eb15240 clarified modules;
wenzelm
parents: 73888
diff changeset
    19
  /* settings */
56477
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
    20
73904
51f510517aa0 clarified package: towards stand-alone setup;
wenzelm
parents: 73900
diff changeset
    21
  def settings(): JMap[String, String] = isabelle.setup.Isabelle_Env.settings()
71739
c0bc99aad936 clarified init of settings vs. services;
wenzelm
parents: 71734
diff changeset
    22
73897
0ddb5de0506e clarified signature: prefer Java interfaces;
wenzelm
parents: 73893
diff changeset
    23
  def getenv(name: String, env: JMap[String, String] = settings()): String =
0ddb5de0506e clarified signature: prefer Java interfaces;
wenzelm
parents: 73893
diff changeset
    24
    Option(env.get(name)).getOrElse("")
31498
be0f7f4f9e12 static IsabelleSystem.charset;
wenzelm
parents: 31443
diff changeset
    25
73897
0ddb5de0506e clarified signature: prefer Java interfaces;
wenzelm
parents: 73893
diff changeset
    26
  def getenv_strict(name: String, env: JMap[String, String] = settings()): String =
65717
wenzelm
parents: 65090
diff changeset
    27
    proper_string(getenv(name, env)) getOrElse
wenzelm
parents: 65090
diff changeset
    28
      error("Undefined Isabelle environment variable: " + quote(name))
27919
1eb8a3902d49 Isabelle system support.
wenzelm
parents:
diff changeset
    29
73900
1f1e490dd251 clarified modules;
wenzelm
parents: 73897
diff changeset
    30
  def cygwin_root(): String = getenv("CYGWIN_ROOT")
51820
142c69695785 cygwin_root as optional argument;
wenzelm
parents: 51615
diff changeset
    31
73520
4cba4e250c28 clarified ISABELLE_ID: distribution vs. hg archive vs. hg repos;
wenzelm
parents: 73445
diff changeset
    32
73891
6c9044f04756 clarified modules (again): services require full Isabelle/Scala environment;
wenzelm
parents: 73890
diff changeset
    33
  /* services */
6c9044f04756 clarified modules (again): services require full Isabelle/Scala environment;
wenzelm
parents: 73890
diff changeset
    34
6c9044f04756 clarified modules (again): services require full Isabelle/Scala environment;
wenzelm
parents: 73890
diff changeset
    35
  abstract class Service
6c9044f04756 clarified modules (again): services require full Isabelle/Scala environment;
wenzelm
parents: 73890
diff changeset
    36
6c9044f04756 clarified modules (again): services require full Isabelle/Scala environment;
wenzelm
parents: 73890
diff changeset
    37
  @volatile private var _services: Option[List[Class[Service]]] = None
6c9044f04756 clarified modules (again): services require full Isabelle/Scala environment;
wenzelm
parents: 73890
diff changeset
    38
6c9044f04756 clarified modules (again): services require full Isabelle/Scala environment;
wenzelm
parents: 73890
diff changeset
    39
  def services(): List[Class[Service]] =
6c9044f04756 clarified modules (again): services require full Isabelle/Scala environment;
wenzelm
parents: 73890
diff changeset
    40
  {
6c9044f04756 clarified modules (again): services require full Isabelle/Scala environment;
wenzelm
parents: 73890
diff changeset
    41
    if (_services.isEmpty) init()  // unsynchronized check
6c9044f04756 clarified modules (again): services require full Isabelle/Scala environment;
wenzelm
parents: 73890
diff changeset
    42
    _services.get
6c9044f04756 clarified modules (again): services require full Isabelle/Scala environment;
wenzelm
parents: 73890
diff changeset
    43
  }
6c9044f04756 clarified modules (again): services require full Isabelle/Scala environment;
wenzelm
parents: 73890
diff changeset
    44
6c9044f04756 clarified modules (again): services require full Isabelle/Scala environment;
wenzelm
parents: 73890
diff changeset
    45
  def make_services[C](c: Class[C]): List[C] =
6c9044f04756 clarified modules (again): services require full Isabelle/Scala environment;
wenzelm
parents: 73890
diff changeset
    46
    for { c1 <- services() if Library.is_subclass(c1, c) }
6c9044f04756 clarified modules (again): services require full Isabelle/Scala environment;
wenzelm
parents: 73890
diff changeset
    47
      yield c1.getDeclaredConstructor().newInstance().asInstanceOf[C]
6c9044f04756 clarified modules (again): services require full Isabelle/Scala environment;
wenzelm
parents: 73890
diff changeset
    48
6c9044f04756 clarified modules (again): services require full Isabelle/Scala environment;
wenzelm
parents: 73890
diff changeset
    49
6c9044f04756 clarified modules (again): services require full Isabelle/Scala environment;
wenzelm
parents: 73890
diff changeset
    50
  /* init settings + services */
6c9044f04756 clarified modules (again): services require full Isabelle/Scala environment;
wenzelm
parents: 73890
diff changeset
    51
6c9044f04756 clarified modules (again): services require full Isabelle/Scala environment;
wenzelm
parents: 73890
diff changeset
    52
  def init(isabelle_root: String = "", cygwin_root: String = ""): Unit =
6c9044f04756 clarified modules (again): services require full Isabelle/Scala environment;
wenzelm
parents: 73890
diff changeset
    53
  {
73904
51f510517aa0 clarified package: towards stand-alone setup;
wenzelm
parents: 73900
diff changeset
    54
    isabelle.setup.Isabelle_Env.init(isabelle_root, cygwin_root)
73891
6c9044f04756 clarified modules (again): services require full Isabelle/Scala environment;
wenzelm
parents: 73890
diff changeset
    55
    synchronized {
6c9044f04756 clarified modules (again): services require full Isabelle/Scala environment;
wenzelm
parents: 73890
diff changeset
    56
      if (_services.isEmpty) {
6c9044f04756 clarified modules (again): services require full Isabelle/Scala environment;
wenzelm
parents: 73890
diff changeset
    57
        val variable = "ISABELLE_SCALA_SERVICES"
6c9044f04756 clarified modules (again): services require full Isabelle/Scala environment;
wenzelm
parents: 73890
diff changeset
    58
        val services =
6c9044f04756 clarified modules (again): services require full Isabelle/Scala environment;
wenzelm
parents: 73890
diff changeset
    59
          for (name <- space_explode(':', getenv_strict(variable)))
6c9044f04756 clarified modules (again): services require full Isabelle/Scala environment;
wenzelm
parents: 73890
diff changeset
    60
            yield {
6c9044f04756 clarified modules (again): services require full Isabelle/Scala environment;
wenzelm
parents: 73890
diff changeset
    61
              def err(msg: String): Nothing =
6c9044f04756 clarified modules (again): services require full Isabelle/Scala environment;
wenzelm
parents: 73890
diff changeset
    62
                error("Bad entry " + quote(name) + " in " + variable + "\n" + msg)
6c9044f04756 clarified modules (again): services require full Isabelle/Scala environment;
wenzelm
parents: 73890
diff changeset
    63
              try { Class.forName(name).asInstanceOf[Class[Service]] }
6c9044f04756 clarified modules (again): services require full Isabelle/Scala environment;
wenzelm
parents: 73890
diff changeset
    64
              catch {
6c9044f04756 clarified modules (again): services require full Isabelle/Scala environment;
wenzelm
parents: 73890
diff changeset
    65
                case _: ClassNotFoundException => err("Class not found")
6c9044f04756 clarified modules (again): services require full Isabelle/Scala environment;
wenzelm
parents: 73890
diff changeset
    66
                case exn: Throwable => err(Exn.message(exn))
6c9044f04756 clarified modules (again): services require full Isabelle/Scala environment;
wenzelm
parents: 73890
diff changeset
    67
              }
6c9044f04756 clarified modules (again): services require full Isabelle/Scala environment;
wenzelm
parents: 73890
diff changeset
    68
            }
6c9044f04756 clarified modules (again): services require full Isabelle/Scala environment;
wenzelm
parents: 73890
diff changeset
    69
        _services = Some(services)
6c9044f04756 clarified modules (again): services require full Isabelle/Scala environment;
wenzelm
parents: 73890
diff changeset
    70
      }
6c9044f04756 clarified modules (again): services require full Isabelle/Scala environment;
wenzelm
parents: 73890
diff changeset
    71
    }
6c9044f04756 clarified modules (again): services require full Isabelle/Scala environment;
wenzelm
parents: 73890
diff changeset
    72
  }
6c9044f04756 clarified modules (again): services require full Isabelle/Scala environment;
wenzelm
parents: 73890
diff changeset
    73
6c9044f04756 clarified modules (again): services require full Isabelle/Scala environment;
wenzelm
parents: 73890
diff changeset
    74
73520
4cba4e250c28 clarified ISABELLE_ID: distribution vs. hg archive vs. hg repos;
wenzelm
parents: 73445
diff changeset
    75
  /* getetc -- static distribution parameters */
4cba4e250c28 clarified ISABELLE_ID: distribution vs. hg archive vs. hg repos;
wenzelm
parents: 73445
diff changeset
    76
73522
b219774a71ae tuned signature -- more explicit types;
wenzelm
parents: 73521
diff changeset
    77
  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
    78
  {
4cba4e250c28 clarified ISABELLE_ID: distribution vs. hg archive vs. hg repos;
wenzelm
parents: 73445
diff changeset
    79
    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
    80
    if (path.is_file) {
4cba4e250c28 clarified ISABELLE_ID: distribution vs. hg archive vs. hg repos;
wenzelm
parents: 73445
diff changeset
    81
      Library.trim_split_lines(File.read(path)) match {
4cba4e250c28 clarified ISABELLE_ID: distribution vs. hg archive vs. hg repos;
wenzelm
parents: 73445
diff changeset
    82
        case Nil => None
4cba4e250c28 clarified ISABELLE_ID: distribution vs. hg archive vs. hg repos;
wenzelm
parents: 73445
diff changeset
    83
        case List(s) => Some(s)
4cba4e250c28 clarified ISABELLE_ID: distribution vs. hg archive vs. hg repos;
wenzelm
parents: 73445
diff changeset
    84
        case _ => error("Single line expected in " + path.absolute)
4cba4e250c28 clarified ISABELLE_ID: distribution vs. hg archive vs. hg repos;
wenzelm
parents: 73445
diff changeset
    85
      }
4cba4e250c28 clarified ISABELLE_ID: distribution vs. hg archive vs. hg repos;
wenzelm
parents: 73445
diff changeset
    86
    }
4cba4e250c28 clarified ISABELLE_ID: distribution vs. hg archive vs. hg repos;
wenzelm
parents: 73445
diff changeset
    87
    else None
4cba4e250c28 clarified ISABELLE_ID: distribution vs. hg archive vs. hg repos;
wenzelm
parents: 73445
diff changeset
    88
  }
4cba4e250c28 clarified ISABELLE_ID: distribution vs. hg archive vs. hg repos;
wenzelm
parents: 73445
diff changeset
    89
4cba4e250c28 clarified ISABELLE_ID: distribution vs. hg archive vs. hg repos;
wenzelm
parents: 73445
diff changeset
    90
73521
a6ca869af096 more robust and uniform ISABELLE_TAGS;
wenzelm
parents: 73520
diff changeset
    91
  /* Isabelle distribution identification */
73520
4cba4e250c28 clarified ISABELLE_ID: distribution vs. hg archive vs. hg repos;
wenzelm
parents: 73445
diff changeset
    92
73525
419edc7f3726 clarified signature;
wenzelm
parents: 73523
diff changeset
    93
  def isabelle_id(root: Path = Path.ISABELLE_HOME): String =
419edc7f3726 clarified signature;
wenzelm
parents: 73523
diff changeset
    94
    getetc("ISABELLE_ID", root = root) orElse Mercurial.archive_id(root) getOrElse {
419edc7f3726 clarified signature;
wenzelm
parents: 73523
diff changeset
    95
      if (Mercurial.is_repository(root)) Mercurial.repository(root).parent()
419edc7f3726 clarified signature;
wenzelm
parents: 73523
diff changeset
    96
      else error("Failed to identify Isabelle distribution " + root)
73520
4cba4e250c28 clarified ISABELLE_ID: distribution vs. hg archive vs. hg repos;
wenzelm
parents: 73445
diff changeset
    97
    }
67865
ab0b8e388967 more uniform id;
wenzelm
parents: 67835
diff changeset
    98
73565
1aa92bc4d356 clarified signature for Scala functions;
wenzelm
parents: 73547
diff changeset
    99
  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
   100
  {
2cd23d587db9 further clarification of Isabelle distribution identification -- avoid odd patching of sources;
wenzelm
parents: 73522
diff changeset
   101
    val here = Scala_Project.here
73525
419edc7f3726 clarified signature;
wenzelm
parents: 73523
diff changeset
   102
    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
   103
  }
2cd23d587db9 further clarification of Isabelle distribution identification -- avoid odd patching of sources;
wenzelm
parents: 73522
diff changeset
   104
73522
b219774a71ae tuned signature -- more explicit types;
wenzelm
parents: 73521
diff changeset
   105
  def isabelle_tags(root: Path = Path.ISABELLE_HOME): String =
73521
a6ca869af096 more robust and uniform ISABELLE_TAGS;
wenzelm
parents: 73520
diff changeset
   106
    getetc("ISABELLE_TAGS", root = root) orElse Mercurial.archive_tags(root) getOrElse {
a6ca869af096 more robust and uniform ISABELLE_TAGS;
wenzelm
parents: 73520
diff changeset
   107
      if (Mercurial.is_repository(root)) {
a6ca869af096 more robust and uniform ISABELLE_TAGS;
wenzelm
parents: 73520
diff changeset
   108
        val hg = Mercurial.repository(root)
a6ca869af096 more robust and uniform ISABELLE_TAGS;
wenzelm
parents: 73520
diff changeset
   109
        hg.tags(rev = hg.parent())
a6ca869af096 more robust and uniform ISABELLE_TAGS;
wenzelm
parents: 73520
diff changeset
   110
      }
a6ca869af096 more robust and uniform ISABELLE_TAGS;
wenzelm
parents: 73520
diff changeset
   111
      else ""
a6ca869af096 more robust and uniform ISABELLE_TAGS;
wenzelm
parents: 73520
diff changeset
   112
    }
31796
117300d72398 renamed IsabelleSystem to Isabelle_System;
wenzelm
parents: 31704
diff changeset
   113
73523
2cd23d587db9 further clarification of Isabelle distribution identification -- avoid odd patching of sources;
wenzelm
parents: 73522
diff changeset
   114
  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
   115
2cd23d587db9 further clarification of Isabelle distribution identification -- avoid odd patching of sources;
wenzelm
parents: 73522
diff changeset
   116
  def isabelle_heading(): String =
2cd23d587db9 further clarification of Isabelle distribution identification -- avoid odd patching of sources;
wenzelm
parents: 73522
diff changeset
   117
    isabelle_identifier() match {
2cd23d587db9 further clarification of Isabelle distribution identification -- avoid odd patching of sources;
wenzelm
parents: 73522
diff changeset
   118
      case None => ""
2cd23d587db9 further clarification of Isabelle distribution identification -- avoid odd patching of sources;
wenzelm
parents: 73522
diff changeset
   119
      case Some(version) => " (" + version + ")"
2cd23d587db9 further clarification of Isabelle distribution identification -- avoid odd patching of sources;
wenzelm
parents: 73522
diff changeset
   120
    }
2cd23d587db9 further clarification of Isabelle distribution identification -- avoid odd patching of sources;
wenzelm
parents: 73522
diff changeset
   121
2cd23d587db9 further clarification of Isabelle distribution identification -- avoid odd patching of sources;
wenzelm
parents: 73522
diff changeset
   122
  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
   123
73547
a7aabdf889b7 clarified signature;
wenzelm
parents: 73525
diff changeset
   124
  def identification(): String = "Isabelle/" + isabelle_id() + isabelle_heading()
a7aabdf889b7 clarified signature;
wenzelm
parents: 73525
diff changeset
   125
54039
c931190b8c5c tuned whitespace;
wenzelm
parents: 53582
diff changeset
   126
43606
e1a09c2a6248 prefer Isabelle path algebra;
wenzelm
parents: 43520
diff changeset
   127
  /** file-system operations **/
31796
117300d72398 renamed IsabelleSystem to Isabelle_System;
wenzelm
parents: 31704
diff changeset
   128
73322
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   129
  /* scala functions */
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   130
73567
355af2d1b817 clarified signature;
wenzelm
parents: 73566
diff changeset
   131
  private def apply_paths(args: List[String], fun: List[Path] => Unit): List[String] =
355af2d1b817 clarified signature;
wenzelm
parents: 73566
diff changeset
   132
    { fun(args.map(Path.explode)); Nil }
73322
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   133
73567
355af2d1b817 clarified signature;
wenzelm
parents: 73566
diff changeset
   134
  private def apply_paths1(args: List[String], fun: Path => Unit): List[String] =
355af2d1b817 clarified signature;
wenzelm
parents: 73566
diff changeset
   135
    apply_paths(args, { case List(path) => fun(path) })
73322
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   136
73567
355af2d1b817 clarified signature;
wenzelm
parents: 73566
diff changeset
   137
  private def apply_paths2(args: List[String], fun: (Path, Path) => Unit): List[String] =
355af2d1b817 clarified signature;
wenzelm
parents: 73566
diff changeset
   138
    apply_paths(args, { case List(path1, path2) => fun(path1, path2) })
73322
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   139
73567
355af2d1b817 clarified signature;
wenzelm
parents: 73566
diff changeset
   140
  private def apply_paths3(args: List[String], fun: (Path, Path, Path) => Unit): List[String] =
355af2d1b817 clarified signature;
wenzelm
parents: 73566
diff changeset
   141
    apply_paths(args, { case List(path1, path2, path3) => fun(path1, path2, path3) })
73322
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   142
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   143
71114
6cfec8029831 clarified signature;
wenzelm
parents: 69425
diff changeset
   144
  /* permissions */
6cfec8029831 clarified signature;
wenzelm
parents: 69425
diff changeset
   145
6cfec8029831 clarified signature;
wenzelm
parents: 69425
diff changeset
   146
  def chmod(arg: String, path: Path): Unit =
71123
6ab4a5fb82e1 clarified signature: allow compound arg;
wenzelm
parents: 71119
diff changeset
   147
    bash("chmod " + arg + " " + File.bash_path(path)).check
71114
6cfec8029831 clarified signature;
wenzelm
parents: 69425
diff changeset
   148
6cfec8029831 clarified signature;
wenzelm
parents: 69425
diff changeset
   149
  def chown(arg: String, path: Path): Unit =
71123
6ab4a5fb82e1 clarified signature: allow compound arg;
wenzelm
parents: 71119
diff changeset
   150
    bash("chown " + arg + " " + File.bash_path(path)).check
71114
6cfec8029831 clarified signature;
wenzelm
parents: 69425
diff changeset
   151
6cfec8029831 clarified signature;
wenzelm
parents: 69425
diff changeset
   152
64189
dfb63036c4f6 tuned signature;
wenzelm
parents: 64167
diff changeset
   153
  /* 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
   154
72376
04bce3478688 clarified signature;
wenzelm
parents: 72375
diff changeset
   155
  def make_directory(path: Path): Path =
04bce3478688 clarified signature;
wenzelm
parents: 72375
diff changeset
   156
  {
73325
a89f56ab2686 more robust (amending 87403fde8cc3): notably allow symlink to existing directory, which Files.createDirectories does not accept;
wenzelm
parents: 73324
diff changeset
   157
    if (!path.is_dir) {
a89f56ab2686 more robust (amending 87403fde8cc3): notably allow symlink to existing directory, which Files.createDirectories does not accept;
wenzelm
parents: 73324
diff changeset
   158
      try { Files.createDirectories(path.file.toPath) }
a89f56ab2686 more robust (amending 87403fde8cc3): notably allow symlink to existing directory, which Files.createDirectories does not accept;
wenzelm
parents: 73324
diff changeset
   159
      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
   160
    }
72376
04bce3478688 clarified signature;
wenzelm
parents: 72375
diff changeset
   161
    path
04bce3478688 clarified signature;
wenzelm
parents: 72375
diff changeset
   162
  }
50893
d55eb82ae77b Isabelle_System.mkdirs with explicit error checking (in accordance to ML version), e.g. relevant with read-only DMG file-system on Mac OS X;
wenzelm
parents: 50854
diff changeset
   163
72377
c7741f767e3e clarified signature;
wenzelm
parents: 72376
diff changeset
   164
  def new_directory(path: Path): Path =
72426
f5d60c12deeb more standard path output (despite platform_path from d55eb82ae77b);
wenzelm
parents: 72414
diff changeset
   165
    if (path.is_dir) error("Directory already exists: " + path.absolute)
72377
c7741f767e3e clarified signature;
wenzelm
parents: 72376
diff changeset
   166
    else make_directory(path)
c7741f767e3e clarified signature;
wenzelm
parents: 72376
diff changeset
   167
73322
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   168
  def copy_dir(dir1: Path, dir2: Path): Unit =
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   169
  {
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   170
    val res = bash("cp -a " + File.bash_path(dir1) + " " + File.bash_path(dir2))
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   171
    if (!res.ok) {
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   172
      cat_error("Failed to copy directory " + dir1.absolute + " to " + dir2.absolute, res.err)
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   173
    }
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   174
  }
73317
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   175
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   176
73567
355af2d1b817 clarified signature;
wenzelm
parents: 73566
diff changeset
   177
  object Make_Directory extends Scala.Fun_Strings("make_directory")
73322
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   178
  {
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   179
    val here = Scala_Project.here
73567
355af2d1b817 clarified signature;
wenzelm
parents: 73566
diff changeset
   180
    def apply(args: List[String]): List[String] = apply_paths1(args, make_directory)
73322
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   181
  }
73317
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   182
73567
355af2d1b817 clarified signature;
wenzelm
parents: 73566
diff changeset
   183
  object Copy_Dir extends Scala.Fun_Strings("copy_dir")
73322
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   184
  {
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   185
    val here = Scala_Project.here
73567
355af2d1b817 clarified signature;
wenzelm
parents: 73566
diff changeset
   186
    def apply(args: List[String]): List[String] = apply_paths2(args, copy_dir)
73322
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   187
  }
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   188
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   189
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   190
  /* copy files */
64189
dfb63036c4f6 tuned signature;
wenzelm
parents: 64167
diff changeset
   191
73317
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   192
  def copy_file(src: JFile, dst: JFile): Unit =
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   193
  {
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   194
    val target = if (dst.isDirectory) new JFile(dst, src.getName) else dst
73319
a7d9edd2e63b proper File.eq, amending df49ca5da9d0;
wenzelm
parents: 73317
diff changeset
   195
    if (!File.eq(src, target)) {
73322
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   196
      try {
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   197
        Files.copy(src.toPath, target.toPath,
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   198
          StandardCopyOption.COPY_ATTRIBUTES,
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   199
          StandardCopyOption.REPLACE_EXISTING)
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   200
      }
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   201
      catch {
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   202
        case ERROR(msg) =>
73651
4fbbf421c376 tuned message;
wenzelm
parents: 73650
diff changeset
   203
          cat_error("Failed to copy file " +
73322
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   204
            File.path(src).absolute + " to " + File.path(dst).absolute, msg)
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   205
      }
73317
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   206
    }
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   207
  }
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   208
73320
wenzelm
parents: 73319
diff changeset
   209
  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
   210
73320
wenzelm
parents: 73319
diff changeset
   211
  def copy_file_base(base_dir: Path, src: Path, target_dir: Path): Unit =
73317
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   212
  {
73320
wenzelm
parents: 73319
diff changeset
   213
    val src1 = src.expand
wenzelm
parents: 73319
diff changeset
   214
    val src1_dir = src1.dir
73321
0b8411b27059 proper src1, amending 20157c8ab3f3;
wenzelm
parents: 73320
diff changeset
   215
    if (!src1.starts_basic) error("Illegal path specification " + src1 + " beyond base directory")
73320
wenzelm
parents: 73319
diff changeset
   216
    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
   217
  }
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   218
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   219
73567
355af2d1b817 clarified signature;
wenzelm
parents: 73566
diff changeset
   220
  object Copy_File extends Scala.Fun_Strings("copy_file")
73322
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   221
  {
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   222
    val here = Scala_Project.here
73567
355af2d1b817 clarified signature;
wenzelm
parents: 73566
diff changeset
   223
    def apply(args: List[String]): List[String] = apply_paths2(args, copy_file)
73322
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   224
  }
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   225
73567
355af2d1b817 clarified signature;
wenzelm
parents: 73566
diff changeset
   226
  object Copy_File_Base extends Scala.Fun_Strings("copy_file_base")
73322
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   227
  {
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   228
    val here = Scala_Project.here
73567
355af2d1b817 clarified signature;
wenzelm
parents: 73566
diff changeset
   229
    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
   230
  }
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   231
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   232
5b15eee1a661 more Isabelle/ML/Scala operations;
wenzelm
parents: 73321
diff changeset
   233
  /* move files */
73317
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   234
73340
0ffcad1f6130 tuned --- fewer warnings;
wenzelm
parents: 73335
diff changeset
   235
  def move_file(src: JFile, dst: JFile): Unit =
73317
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   236
  {
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   237
    val target = if (dst.isDirectory) new JFile(dst, src.getName) else dst
73319
a7d9edd2e63b proper File.eq, amending df49ca5da9d0;
wenzelm
parents: 73317
diff changeset
   238
    if (!File.eq(src, target))
73317
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   239
      Files.move(src.toPath, target.toPath, StandardCopyOption.REPLACE_EXISTING)
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   240
  }
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   241
73320
wenzelm
parents: 73319
diff changeset
   242
  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
   243
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   244
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   245
  /* symbolic link */
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   246
73340
0ffcad1f6130 tuned --- fewer warnings;
wenzelm
parents: 73335
diff changeset
   247
  def symlink(src: Path, dst: Path, force: Boolean = false): Unit =
73317
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   248
  {
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   249
    val src_file = src.file
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   250
    val dst_file = dst.file
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   251
    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
   252
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   253
    if (force) target.delete
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   254
73893
eb7655fcb090 clarified modules;
wenzelm
parents: 73891
diff changeset
   255
    def cygwin_link(): Unit =
73904
51f510517aa0 clarified package: towards stand-alone setup;
wenzelm
parents: 73900
diff changeset
   256
      isabelle.setup.Isabelle_Env.cygwin_link(File.standard_path(src), target)
73893
eb7655fcb090 clarified modules;
wenzelm
parents: 73891
diff changeset
   257
73317
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   258
    try { Files.createSymbolicLink(target.toPath, src_file.toPath) }
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   259
    catch {
73893
eb7655fcb090 clarified modules;
wenzelm
parents: 73891
diff changeset
   260
      case _: UnsupportedOperationException if Platform.is_windows => cygwin_link()
eb7655fcb090 clarified modules;
wenzelm
parents: 73891
diff changeset
   261
      case _: FileSystemException if Platform.is_windows => cygwin_link()
73317
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   262
    }
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   263
  }
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   264
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
   265
56428
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   266
  /* tmp files */
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   267
71569
391ea80ff27c more robust re-use of $ISABELLE_TMP_PREFIX (amending c1597167563e);
wenzelm
parents: 71520
diff changeset
   268
  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
   269
  {
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   270
    val path = Path.explode("$ISABELLE_TMP_PREFIX")
72375
e48d93811ed7 clarified signature;
wenzelm
parents: 72362
diff changeset
   271
    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
   272
    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
   273
  }
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   274
67924
b2cdd24e83b6 clarified signature: flexible base_dir;
wenzelm
parents: 67872
diff changeset
   275
  def tmp_file(name: String, ext: String = "", base_dir: JFile = isabelle_tmp_prefix()): JFile =
56428
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   276
  {
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   277
    val suffix = if (ext == "") "" else "." + ext
67924
b2cdd24e83b6 clarified signature: flexible base_dir;
wenzelm
parents: 67872
diff changeset
   278
    val file = Files.createTempFile(base_dir.toPath, name, suffix).toFile
56428
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   279
    file.deleteOnExit
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   280
    file
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   281
  }
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   282
64220
e7cbf81ec4b7 prefer Isabelle standard Path;
wenzelm
parents: 64213
diff changeset
   283
  def with_tmp_file[A](name: String, ext: String = "")(body: Path => A): A =
56428
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   284
  {
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   285
    val file = tmp_file(name, ext)
64220
e7cbf81ec4b7 prefer Isabelle standard Path;
wenzelm
parents: 64213
diff changeset
   286
    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
   287
  }
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   288
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   289
56477
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   290
  /* tmp dirs */
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   291
73324
48abb09d49ea more Isabelle/ML/Scala operations;
wenzelm
parents: 73323
diff changeset
   292
  def rm_tree(root: JFile): Unit =
56477
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   293
  {
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   294
    root.delete
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   295
    if (root.isDirectory) {
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   296
      Files.walkFileTree(root.toPath,
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   297
        new SimpleFileVisitor[JPath] {
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   298
          override def visitFile(file: JPath, attrs: BasicFileAttributes): FileVisitResult =
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   299
          {
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
   300
            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
   301
            catch { case _: IOException => }
56477
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   302
            FileVisitResult.CONTINUE
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   303
          }
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   304
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   305
          override def postVisitDirectory(dir: JPath, e: IOException): FileVisitResult =
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   306
          {
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   307
            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
   308
              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
   309
              catch { case _: IOException => }
56477
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   310
              FileVisitResult.CONTINUE
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   311
            }
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   312
            else throw e
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   313
          }
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   314
        }
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   315
      )
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   316
    }
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   317
  }
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   318
73324
48abb09d49ea more Isabelle/ML/Scala operations;
wenzelm
parents: 73323
diff changeset
   319
  def rm_tree(root: Path): Unit = rm_tree(root.file)
48abb09d49ea more Isabelle/ML/Scala operations;
wenzelm
parents: 73323
diff changeset
   320
73567
355af2d1b817 clarified signature;
wenzelm
parents: 73566
diff changeset
   321
  object Rm_Tree extends Scala.Fun_Strings("rm_tree")
73324
48abb09d49ea more Isabelle/ML/Scala operations;
wenzelm
parents: 73323
diff changeset
   322
  {
48abb09d49ea more Isabelle/ML/Scala operations;
wenzelm
parents: 73323
diff changeset
   323
    val here = Scala_Project.here
73567
355af2d1b817 clarified signature;
wenzelm
parents: 73566
diff changeset
   324
    def apply(args: List[String]): List[String] = apply_paths1(args, rm_tree)
73324
48abb09d49ea more Isabelle/ML/Scala operations;
wenzelm
parents: 73323
diff changeset
   325
  }
48abb09d49ea more Isabelle/ML/Scala operations;
wenzelm
parents: 73323
diff changeset
   326
67924
b2cdd24e83b6 clarified signature: flexible base_dir;
wenzelm
parents: 67872
diff changeset
   327
  def tmp_dir(name: String, base_dir: JFile = isabelle_tmp_prefix()): JFile =
56477
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   328
  {
67924
b2cdd24e83b6 clarified signature: flexible base_dir;
wenzelm
parents: 67872
diff changeset
   329
    val dir = Files.createTempDirectory(base_dir.toPath, name).toFile
56477
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   330
    dir.deleteOnExit
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   331
    dir
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   332
  }
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   333
64220
e7cbf81ec4b7 prefer Isabelle standard Path;
wenzelm
parents: 64213
diff changeset
   334
  def with_tmp_dir[A](name: String)(body: Path => A): A =
56477
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   335
  {
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   336
    val dir = tmp_dir(name)
64220
e7cbf81ec4b7 prefer Isabelle standard Path;
wenzelm
parents: 64213
diff changeset
   337
    try { body(File.path(dir)) } finally { rm_tree(dir) }
56477
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
65793
96b4799a2e04 more robust update of generated directory;
wenzelm
parents: 65717
diff changeset
   341
  /* quasi-atomic update of directory */
96b4799a2e04 more robust update of generated directory;
wenzelm
parents: 65717
diff changeset
   342
73340
0ffcad1f6130 tuned --- fewer warnings;
wenzelm
parents: 73335
diff changeset
   343
  def update_directory(dir: Path, f: Path => Unit): Unit =
65793
96b4799a2e04 more robust update of generated directory;
wenzelm
parents: 65717
diff changeset
   344
  {
96b4799a2e04 more robust update of generated directory;
wenzelm
parents: 65717
diff changeset
   345
    val new_dir = dir.ext("new")
96b4799a2e04 more robust update of generated directory;
wenzelm
parents: 65717
diff changeset
   346
    val old_dir = dir.ext("old")
96b4799a2e04 more robust update of generated directory;
wenzelm
parents: 65717
diff changeset
   347
96b4799a2e04 more robust update of generated directory;
wenzelm
parents: 65717
diff changeset
   348
    rm_tree(new_dir)
96b4799a2e04 more robust update of generated directory;
wenzelm
parents: 65717
diff changeset
   349
    rm_tree(old_dir)
96b4799a2e04 more robust update of generated directory;
wenzelm
parents: 65717
diff changeset
   350
96b4799a2e04 more robust update of generated directory;
wenzelm
parents: 65717
diff changeset
   351
    f(new_dir)
96b4799a2e04 more robust update of generated directory;
wenzelm
parents: 65717
diff changeset
   352
73317
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   353
    if (dir.is_dir) move_file(dir, old_dir)
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   354
    move_file(new_dir, dir)
65793
96b4799a2e04 more robust update of generated directory;
wenzelm
parents: 65717
diff changeset
   355
    rm_tree(old_dir)
96b4799a2e04 more robust update of generated directory;
wenzelm
parents: 65717
diff changeset
   356
  }
96b4799a2e04 more robust update of generated directory;
wenzelm
parents: 65717
diff changeset
   357
96b4799a2e04 more robust update of generated directory;
wenzelm
parents: 65717
diff changeset
   358
62613
wenzelm
parents: 62612
diff changeset
   359
wenzelm
parents: 62612
diff changeset
   360
  /** external processes **/
wenzelm
parents: 62612
diff changeset
   361
wenzelm
parents: 62612
diff changeset
   362
  /* GNU bash */
31796
117300d72398 renamed IsabelleSystem to Isabelle_System;
wenzelm
parents: 31704
diff changeset
   363
62610
4c89504c76fb more uniform signature for various process invocations;
wenzelm
parents: 62602
diff changeset
   364
  def bash(script: String,
4c89504c76fb more uniform signature for various process invocations;
wenzelm
parents: 62602
diff changeset
   365
    cwd: JFile = null,
73897
0ddb5de0506e clarified signature: prefer Java interfaces;
wenzelm
parents: 73893
diff changeset
   366
    env: JMap[String, String] = settings(),
62610
4c89504c76fb more uniform signature for various process invocations;
wenzelm
parents: 62602
diff changeset
   367
    redirect: Boolean = false,
51962
016cb7d8f297 limit build process output, to avoid bombing Isabelle/Scala process by ill-behaved jobs (e.g. Containers in AFP/9025435b29cf);
wenzelm
parents: 51820
diff changeset
   368
    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
   369
    progress_stderr: String => Unit = (_: String) => (),
72598
d9f2be66ebad support for watchdog thread;
wenzelm
parents: 72455
diff changeset
   370
    watchdog: Option[Bash.Watchdog] = None,
62602
96e679f042ec more thorough cleanup -- in Scala;
wenzelm
parents: 62573
diff changeset
   371
    strict: Boolean = true,
96e679f042ec more thorough cleanup -- in Scala;
wenzelm
parents: 62573
diff changeset
   372
    cleanup: () => Unit = () => ()): Process_Result =
34198
ff5486262cd6 moved Library.decode_permissive_utf8 to Isabelle_System;
wenzelm
parents: 34196
diff changeset
   373
  {
62610
4c89504c76fb more uniform signature for various process invocations;
wenzelm
parents: 62602
diff changeset
   374
    Bash.process(script, cwd = cwd, env = env, redirect = redirect, cleanup = cleanup).
72598
d9f2be66ebad support for watchdog thread;
wenzelm
parents: 72455
diff changeset
   375
      result(progress_stdout = progress_stdout, progress_stderr = progress_stderr,
d9f2be66ebad support for watchdog thread;
wenzelm
parents: 72455
diff changeset
   376
        watchdog = watchdog, strict = strict)
34198
ff5486262cd6 moved Library.decode_permissive_utf8 to Isabelle_System;
wenzelm
parents: 34196
diff changeset
   377
  }
ff5486262cd6 moved Library.decode_permissive_utf8 to Isabelle_System;
wenzelm
parents: 34196
diff changeset
   378
64935
9437a117408b insist in proper GNU tar, to avoid subtle semantic differences;
wenzelm
parents: 64657
diff changeset
   379
  private lazy val gnutar_check: Boolean =
9437a117408b insist in proper GNU tar, to avoid subtle semantic differences;
wenzelm
parents: 64657
diff changeset
   380
    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
   381
    catch { case ERROR(_) => false }
9437a117408b insist in proper GNU tar, to avoid subtle semantic differences;
wenzelm
parents: 64657
diff changeset
   382
69425
94f6ca69d983 clarified gnutar options: more uniform owner;
wenzelm
parents: 69355
diff changeset
   383
  def gnutar(
94f6ca69d983 clarified gnutar options: more uniform owner;
wenzelm
parents: 69355
diff changeset
   384
    args: String,
94f6ca69d983 clarified gnutar options: more uniform owner;
wenzelm
parents: 69355
diff changeset
   385
    dir: Path = Path.current,
94f6ca69d983 clarified gnutar options: more uniform owner;
wenzelm
parents: 69355
diff changeset
   386
    original_owner: Boolean = false,
73624
f033d4f661e9 tuned signature;
wenzelm
parents: 73611
diff changeset
   387
    strip: Int = 0,
69425
94f6ca69d983 clarified gnutar options: more uniform owner;
wenzelm
parents: 69355
diff changeset
   388
    redirect: Boolean = false): Process_Result =
64935
9437a117408b insist in proper GNU tar, to avoid subtle semantic differences;
wenzelm
parents: 64657
diff changeset
   389
  {
69425
94f6ca69d983 clarified gnutar options: more uniform owner;
wenzelm
parents: 69355
diff changeset
   390
    val options =
94f6ca69d983 clarified gnutar options: more uniform owner;
wenzelm
parents: 69355
diff changeset
   391
      (if (dir.is_current) "" else "-C " + File.bash_path(dir) + " ") +
73624
f033d4f661e9 tuned signature;
wenzelm
parents: 73611
diff changeset
   392
      (if (original_owner) "" else "--owner=root --group=staff ") +
f033d4f661e9 tuned signature;
wenzelm
parents: 73611
diff changeset
   393
      (if (strip <= 0) "" else "--strip-components=" + strip + " ")
69425
94f6ca69d983 clarified gnutar options: more uniform owner;
wenzelm
parents: 69355
diff changeset
   394
94f6ca69d983 clarified gnutar options: more uniform owner;
wenzelm
parents: 69355
diff changeset
   395
    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
   396
    else error("Expected to find GNU tar executable")
9437a117408b insist in proper GNU tar, to avoid subtle semantic differences;
wenzelm
parents: 64657
diff changeset
   397
  }
9437a117408b insist in proper GNU tar, to avoid subtle semantic differences;
wenzelm
parents: 64657
diff changeset
   398
73650
9ce115baaa4f clarified signature;
wenzelm
parents: 73624
diff changeset
   399
  def require_command(cmd: String, test: String = "--version"): Unit =
72455
7bf67a58f54a clarified signature;
wenzelm
parents: 72426
diff changeset
   400
  {
73650
9ce115baaa4f clarified signature;
wenzelm
parents: 73624
diff changeset
   401
    if (!bash(Bash.string(cmd) + " " + test).ok) error("Missing system command: " + quote(cmd))
72455
7bf67a58f54a clarified signature;
wenzelm
parents: 72426
diff changeset
   402
  }
7bf67a58f54a clarified signature;
wenzelm
parents: 72426
diff changeset
   403
64152
8f5b23536c56 enforce short name, notably on Mac OS X;
wenzelm
parents: 64139
diff changeset
   404
  def hostname(): String = bash("hostname -s").check.out
64139
387c811cad6a tuned signature;
wenzelm
parents: 64021
diff changeset
   405
54690
cd88b44623bf more direct Isabelle_System.pdf_viewer;
wenzelm
parents: 54645
diff changeset
   406
  def open(arg: String): Unit =
64304
96bc94c87a81 clarified modules;
wenzelm
parents: 64228
diff changeset
   407
    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
   408
cd88b44623bf more direct Isabelle_System.pdf_viewer;
wenzelm
parents: 54645
diff changeset
   409
  def pdf_viewer(arg: Path): Unit =
62616
wenzelm
parents: 62615
diff changeset
   410
    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
   411
73224
49686e3b1909 clarified links to external files, e.g. .pdf within .thy source document;
wenzelm
parents: 72976
diff changeset
   412
  def open_external_file(name: String): Boolean =
49686e3b1909 clarified links to external files, e.g. .pdf within .thy source document;
wenzelm
parents: 72976
diff changeset
   413
  {
49686e3b1909 clarified links to external files, e.g. .pdf within .thy source document;
wenzelm
parents: 72976
diff changeset
   414
    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
   415
    val external =
49686e3b1909 clarified links to external files, e.g. .pdf within .thy source document;
wenzelm
parents: 72976
diff changeset
   416
      ext.nonEmpty &&
49686e3b1909 clarified links to external files, e.g. .pdf within .thy source document;
wenzelm
parents: 72976
diff changeset
   417
      Library.space_explode(':', getenv("ISABELLE_EXTERNAL_FILES")).contains(ext)
49686e3b1909 clarified links to external files, e.g. .pdf within .thy source document;
wenzelm
parents: 72976
diff changeset
   418
    if (external) {
49686e3b1909 clarified links to external files, e.g. .pdf within .thy source document;
wenzelm
parents: 72976
diff changeset
   419
      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
   420
      else open(name)
49686e3b1909 clarified links to external files, e.g. .pdf within .thy source document;
wenzelm
parents: 72976
diff changeset
   421
    }
49686e3b1909 clarified links to external files, e.g. .pdf within .thy source document;
wenzelm
parents: 72976
diff changeset
   422
    external
49686e3b1909 clarified links to external files, e.g. .pdf within .thy source document;
wenzelm
parents: 72976
diff changeset
   423
  }
49686e3b1909 clarified links to external files, e.g. .pdf within .thy source document;
wenzelm
parents: 72976
diff changeset
   424
65916
wenzelm
parents: 65793
diff changeset
   425
  def export_isabelle_identifier(isabelle_identifier: String): String =
wenzelm
parents: 65793
diff changeset
   426
    if (isabelle_identifier == "") ""
wenzelm
parents: 65793
diff changeset
   427
    else "export ISABELLE_IDENTIFIER=" + Bash.string(isabelle_identifier) + "\n"
wenzelm
parents: 65793
diff changeset
   428
32450
375db037f4d2 misc tuning;
wenzelm
parents: 32328
diff changeset
   429
31796
117300d72398 renamed IsabelleSystem to Isabelle_System;
wenzelm
parents: 31704
diff changeset
   430
  /** Isabelle resources **/
117300d72398 renamed IsabelleSystem to Isabelle_System;
wenzelm
parents: 31704
diff changeset
   431
64161
2b1128e95dfb explicit indication of Admin tools;
wenzelm
parents: 64152
diff changeset
   432
  /* repository clone with Admin */
2b1128e95dfb explicit indication of Admin tools;
wenzelm
parents: 64152
diff changeset
   433
2b1128e95dfb explicit indication of Admin tools;
wenzelm
parents: 64152
diff changeset
   434
  def admin(): Boolean = Path.explode("~~/Admin").is_dir
2b1128e95dfb explicit indication of Admin tools;
wenzelm
parents: 64152
diff changeset
   435
2b1128e95dfb explicit indication of Admin tools;
wenzelm
parents: 64152
diff changeset
   436
62633
e57416b649d5 find heaps uniformly via Sessions.Store;
wenzelm
parents: 62616
diff changeset
   437
  /* default logic */
48503
wenzelm
parents: 48418
diff changeset
   438
50403
87868964733c more uniform default logic, using settings, options, args etc.;
wenzelm
parents: 50298
diff changeset
   439
  def default_logic(args: String*): String =
87868964733c more uniform default logic, using settings, options, args etc.;
wenzelm
parents: 50298
diff changeset
   440
  {
87868964733c more uniform default logic, using settings, options, args etc.;
wenzelm
parents: 50298
diff changeset
   441
    args.find(_ != "") match {
87868964733c more uniform default logic, using settings, options, args etc.;
wenzelm
parents: 50298
diff changeset
   442
      case Some(logic) => logic
73317
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   443
      case None => getenv_strict("ISABELLE_LOGIC")
50403
87868964733c more uniform default logic, using settings, options, args etc.;
wenzelm
parents: 50298
diff changeset
   444
    }
87868964733c more uniform default logic, using settings, options, args etc.;
wenzelm
parents: 50298
diff changeset
   445
  }
73323
c2ab1a970e82 more Isabelle/ML/Scala operations;
wenzelm
parents: 73322
diff changeset
   446
c2ab1a970e82 more Isabelle/ML/Scala operations;
wenzelm
parents: 73322
diff changeset
   447
c2ab1a970e82 more Isabelle/ML/Scala operations;
wenzelm
parents: 73322
diff changeset
   448
  /* download file */
c2ab1a970e82 more Isabelle/ML/Scala operations;
wenzelm
parents: 73322
diff changeset
   449
73566
4e6b31ed7197 clarified signature: avoid tmp file;
wenzelm
parents: 73565
diff changeset
   450
  def download(url_name: String, progress: Progress = new Progress): HTTP.Content =
73323
c2ab1a970e82 more Isabelle/ML/Scala operations;
wenzelm
parents: 73322
diff changeset
   451
  {
73335
c707655239e2 download more directly, via means of JVM;
wenzelm
parents: 73333
diff changeset
   452
    val url = Url(url_name)
c707655239e2 download more directly, via means of JVM;
wenzelm
parents: 73333
diff changeset
   453
    progress.echo("Getting " + quote(url_name))
73566
4e6b31ed7197 clarified signature: avoid tmp file;
wenzelm
parents: 73565
diff changeset
   454
    try { HTTP.Client.get(url) }
4e6b31ed7197 clarified signature: avoid tmp file;
wenzelm
parents: 73565
diff changeset
   455
    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
   456
  }
c2ab1a970e82 more Isabelle/ML/Scala operations;
wenzelm
parents: 73322
diff changeset
   457
73566
4e6b31ed7197 clarified signature: avoid tmp file;
wenzelm
parents: 73565
diff changeset
   458
  def download_file(url_name: String, file: Path, progress: Progress = new Progress): Unit =
4e6b31ed7197 clarified signature: avoid tmp file;
wenzelm
parents: 73565
diff changeset
   459
    Bytes.write(file, download(url_name, progress = progress).bytes)
4e6b31ed7197 clarified signature: avoid tmp file;
wenzelm
parents: 73565
diff changeset
   460
4e6b31ed7197 clarified signature: avoid tmp file;
wenzelm
parents: 73565
diff changeset
   461
  object Download extends Scala.Fun("download", thread = true)
73323
c2ab1a970e82 more Isabelle/ML/Scala operations;
wenzelm
parents: 73322
diff changeset
   462
  {
c2ab1a970e82 more Isabelle/ML/Scala operations;
wenzelm
parents: 73322
diff changeset
   463
    val here = Scala_Project.here
73566
4e6b31ed7197 clarified signature: avoid tmp file;
wenzelm
parents: 73565
diff changeset
   464
    override def invoke(args: List[Bytes]): List[Bytes] =
4e6b31ed7197 clarified signature: avoid tmp file;
wenzelm
parents: 73565
diff changeset
   465
      args match { case List(url) => List(download(url.text).bytes) }
73323
c2ab1a970e82 more Isabelle/ML/Scala operations;
wenzelm
parents: 73322
diff changeset
   466
  }
73608
6081885b9d06 tuned signature;
wenzelm
parents: 73601
diff changeset
   467
6081885b9d06 tuned signature;
wenzelm
parents: 73601
diff changeset
   468
6081885b9d06 tuned signature;
wenzelm
parents: 73601
diff changeset
   469
  /* repositories */
6081885b9d06 tuned signature;
wenzelm
parents: 73601
diff changeset
   470
73611
cc36841eeff6 clarified signature: more operations;
wenzelm
parents: 73610
diff changeset
   471
  val isabelle_repository: Mercurial.Server =
cc36841eeff6 clarified signature: more operations;
wenzelm
parents: 73610
diff changeset
   472
    Mercurial.Server("https://isabelle.sketis.net/repos/isabelle")
73608
6081885b9d06 tuned signature;
wenzelm
parents: 73601
diff changeset
   473
73611
cc36841eeff6 clarified signature: more operations;
wenzelm
parents: 73610
diff changeset
   474
  val afp_repository: Mercurial.Server =
cc36841eeff6 clarified signature: more operations;
wenzelm
parents: 73610
diff changeset
   475
    Mercurial.Server("https://isabelle.sketis.net/repos/afp-devel")
73610
6ba5f9d18c56 clarified signature: more operations;
wenzelm
parents: 73609
diff changeset
   476
6ba5f9d18c56 clarified signature: more operations;
wenzelm
parents: 73609
diff changeset
   477
  def official_releases(): List[String] =
6ba5f9d18c56 clarified signature: more operations;
wenzelm
parents: 73609
diff changeset
   478
    Library.trim_split_lines(
6ba5f9d18c56 clarified signature: more operations;
wenzelm
parents: 73609
diff changeset
   479
      isabelle_repository.read_file(Path.explode("Admin/Release/official")))
27919
1eb8a3902d49 Isabelle system support.
wenzelm
parents:
diff changeset
   480
}