src/Pure/System/isabelle_system.scala
author wenzelm
Sat, 27 Feb 2021 18:04:29 +0100
changeset 73317 df49ca5da9d0
parent 73314 87403fde8cc3
child 73319 a7d9edd2e63b
permissions -rw-r--r--
clarified modules: more like ML;
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
43695
5130dfe1b7be simplified Symbol based on lazy Symbol.Interpretation -- reduced odd "functorial style";
wenzelm
parents: 43670
diff changeset
     4
Fundamental Isabelle system environment: quasi-static module with
5130dfe1b7be simplified Symbol based on lazy Symbol.Interpretation -- reduced odd "functorial style";
wenzelm
parents: 43670
diff changeset
     5
optional init operation.
27919
1eb8a3902d49 Isabelle system support.
wenzelm
parents:
diff changeset
     6
*/
1eb8a3902d49 Isabelle system support.
wenzelm
parents:
diff changeset
     7
1eb8a3902d49 Isabelle system support.
wenzelm
parents:
diff changeset
     8
package isabelle
1eb8a3902d49 Isabelle system support.
wenzelm
parents:
diff changeset
     9
55618
995162143ef4 tuned imports;
wenzelm
parents: 55555
diff changeset
    10
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
73317
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
    16
72159
40b5ee5889d2 clarified management of services: static declarations vs. dynamic instances (e.g. relevant for stateful Session.Protocol_Handler, notably Scala.Handler and session "System");
wenzelm
parents: 72105
diff changeset
    17
import scala.annotation.tailrec
61281
wenzelm
parents: 61025
diff changeset
    18
27919
1eb8a3902d49 Isabelle system support.
wenzelm
parents:
diff changeset
    19
43514
45cf8d5e109a lazy Isabelle_System.default supports implicit boot;
wenzelm
parents: 43484
diff changeset
    20
object Isabelle_System
45cf8d5e109a lazy Isabelle_System.default supports implicit boot;
wenzelm
parents: 43484
diff changeset
    21
{
50652
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
    22
  /** bootstrap information **/
43661
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    23
50652
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
    24
  def jdk_home(): String =
43661
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    25
  {
53582
8533b4cb8dd7 more robust System.getProperty with default;
wenzelm
parents: 52667
diff changeset
    26
    val java_home = System.getProperty("java.home", "")
50652
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
    27
    val home = new JFile(java_home)
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
    28
    val parent = home.getParent
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
    29
    if (home.getName == "jre" && parent != null &&
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
    30
        (new JFile(new JFile(parent, "bin"), "javac")).exists) parent
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
    31
    else java_home
43661
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    32
  }
37013
641923374eba Isabelle_System: allow explicit isabelle_home argument;
wenzelm
parents: 36991
diff changeset
    33
61291
e00e1bf23d03 uniform treatment of bootstrap directories;
wenzelm
parents: 61282
diff changeset
    34
  def bootstrap_directory(
e00e1bf23d03 uniform treatment of bootstrap directories;
wenzelm
parents: 61282
diff changeset
    35
    preference: String, envar: String, property: String, description: String): String =
50652
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
    36
  {
61291
e00e1bf23d03 uniform treatment of bootstrap directories;
wenzelm
parents: 61282
diff changeset
    37
    val value =
68409
c8c3136e3ba7 tuned -- use existing operation;
wenzelm
parents: 67924
diff changeset
    38
      proper_string(preference) orElse  // explicit argument
c8c3136e3ba7 tuned -- use existing operation;
wenzelm
parents: 67924
diff changeset
    39
      proper_string(System.getenv(envar)) orElse  // e.g. inherited from running isabelle tool
c8c3136e3ba7 tuned -- use existing operation;
wenzelm
parents: 67924
diff changeset
    40
      proper_string(System.getProperty(property)) getOrElse  // e.g. via JVM application boot process
61291
e00e1bf23d03 uniform treatment of bootstrap directories;
wenzelm
parents: 61282
diff changeset
    41
      error("Unknown " + description + " directory")
50652
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
    42
61291
e00e1bf23d03 uniform treatment of bootstrap directories;
wenzelm
parents: 61282
diff changeset
    43
    if ((new JFile(value)).isDirectory) value
e00e1bf23d03 uniform treatment of bootstrap directories;
wenzelm
parents: 61282
diff changeset
    44
    else error("Bad " + description + " directory " + quote(value))
50652
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
    45
  }
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
    46
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
    47
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
    48
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
    49
  /** implicit settings environment **/
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
    50
71739
c0bc99aad936 clarified init of settings vs. services;
wenzelm
parents: 71734
diff changeset
    51
  abstract class Service
c0bc99aad936 clarified init of settings vs. services;
wenzelm
parents: 71734
diff changeset
    52
50652
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
    53
  @volatile private var _settings: Option[Map[String, String]] = None
72159
40b5ee5889d2 clarified management of services: static declarations vs. dynamic instances (e.g. relevant for stateful Session.Protocol_Handler, notably Scala.Handler and session "System");
wenzelm
parents: 72105
diff changeset
    54
  @volatile private var _services: Option[List[Class[Service]]] = None
71739
c0bc99aad936 clarified init of settings vs. services;
wenzelm
parents: 71734
diff changeset
    55
62610
4c89504c76fb more uniform signature for various process invocations;
wenzelm
parents: 62602
diff changeset
    56
  def settings(): Map[String, String] =
50652
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
    57
  {
71792
936718dede80 more robust Isabelle_System.init (amending c0bc99aad936): avoid non-termination on Windows (java.lang.StackOverflowError);
wenzelm
parents: 71739
diff changeset
    58
    if (_settings.isEmpty) init()  // unsynchronized check
62610
4c89504c76fb more uniform signature for various process invocations;
wenzelm
parents: 62602
diff changeset
    59
    _settings.get
50652
ead5714cc480 tuned signature -- eliminated obsolete Standard_System;
wenzelm
parents: 50651
diff changeset
    60
  }
31796
117300d72398 renamed IsabelleSystem to Isabelle_System;
wenzelm
parents: 31704
diff changeset
    61
72159
40b5ee5889d2 clarified management of services: static declarations vs. dynamic instances (e.g. relevant for stateful Session.Protocol_Handler, notably Scala.Handler and session "System");
wenzelm
parents: 72105
diff changeset
    62
  def services(): List[Class[Service]] =
71739
c0bc99aad936 clarified init of settings vs. services;
wenzelm
parents: 71734
diff changeset
    63
  {
71792
936718dede80 more robust Isabelle_System.init (amending c0bc99aad936): avoid non-termination on Windows (java.lang.StackOverflowError);
wenzelm
parents: 71739
diff changeset
    64
    if (_services.isEmpty) init()  // unsynchronized check
71739
c0bc99aad936 clarified init of settings vs. services;
wenzelm
parents: 71734
diff changeset
    65
    _services.get
c0bc99aad936 clarified init of settings vs. services;
wenzelm
parents: 71734
diff changeset
    66
  }
c0bc99aad936 clarified init of settings vs. services;
wenzelm
parents: 71734
diff changeset
    67
72159
40b5ee5889d2 clarified management of services: static declarations vs. dynamic instances (e.g. relevant for stateful Session.Protocol_Handler, notably Scala.Handler and session "System");
wenzelm
parents: 72105
diff changeset
    68
  def make_services[C](c: Class[C]): List[C] =
72214
5924c1da3c45 clarified modules;
wenzelm
parents: 72159
diff changeset
    69
    for { c1 <- services() if Library.is_subclass(c1, c) }
72159
40b5ee5889d2 clarified management of services: static declarations vs. dynamic instances (e.g. relevant for stateful Session.Protocol_Handler, notably Scala.Handler and session "System");
wenzelm
parents: 72105
diff changeset
    70
      yield c1.getDeclaredConstructor().newInstance().asInstanceOf[C]
40b5ee5889d2 clarified management of services: static declarations vs. dynamic instances (e.g. relevant for stateful Session.Protocol_Handler, notably Scala.Handler and session "System");
wenzelm
parents: 72105
diff changeset
    71
71889
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
    72
  def init(isabelle_root: String = "", cygwin_root: String = ""): Unit = synchronized
71739
c0bc99aad936 clarified init of settings vs. services;
wenzelm
parents: 71734
diff changeset
    73
  {
71889
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
    74
    if (_settings.isEmpty || _services.isEmpty) {
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
    75
      val isabelle_root1 =
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
    76
        bootstrap_directory(isabelle_root, "ISABELLE_ROOT", "isabelle.root", "Isabelle root")
61291
e00e1bf23d03 uniform treatment of bootstrap directories;
wenzelm
parents: 61282
diff changeset
    77
71889
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
    78
      val cygwin_root1 =
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
    79
        if (Platform.is_windows)
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
    80
          bootstrap_directory(cygwin_root, "CYGWIN_ROOT", "cygwin.root", "Cygwin root")
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
    81
        else ""
61295
efe76f7f9162 proper Cygwin.init (amending e00e1bf23d03);
wenzelm
parents: 61293
diff changeset
    82
71889
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
    83
      if (Platform.is_windows) Cygwin.init(isabelle_root1, cygwin_root1)
57411
9444489766a1 sane environment defaults for Mac OS X, based on former App1/script -- e.g. relevant for MacTeX PATH;
wenzelm
parents: 56871
diff changeset
    84
71889
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
    85
      def set_cygwin_root()
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
    86
      {
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
    87
        if (Platform.is_windows)
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
    88
          _settings = Some(_settings.getOrElse(Map.empty) + ("CYGWIN_ROOT" -> cygwin_root1))
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
    89
      }
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
    90
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
    91
      set_cygwin_root()
58640
37f852399a32 prefer original TEMP from Windows, e.g. relevant for Isabelle distribution within read-only directory (due to its bundled Cygwin and /tmp inside of it);
wenzelm
parents: 57411
diff changeset
    92
71889
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
    93
      def default(env: Map[String, String], entry: (String, String)): Map[String, String] =
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
    94
        if (env.isDefinedAt(entry._1) || entry._2 == "") env
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
    95
        else env + entry
71870
82abfda58667 init default context;
wenzelm
parents: 71792
diff changeset
    96
71889
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
    97
      val env =
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
    98
      {
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
    99
        val temp_windows =
71870
82abfda58667 init default context;
wenzelm
parents: 71792
diff changeset
   100
        {
71889
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
   101
          val temp = if (Platform.is_windows) System.getenv("TEMP") else null
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
   102
          if (temp != null && temp.contains('\\')) temp else ""
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
   103
        }
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
   104
        val user_home = System.getProperty("user.home", "")
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
   105
        val isabelle_app = System.getProperty("isabelle.app", "")
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
   106
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
   107
        default(
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
   108
          default(
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
   109
            default(sys.env + ("ISABELLE_JDK_HOME" -> File.standard_path(jdk_home())),
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
   110
              "TEMP_WINDOWS" -> temp_windows),
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
   111
            "HOME" -> user_home),
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
   112
          "ISABELLE_APP" -> "true")
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
   113
      }
61293
876e7eae22be clarified ISABELLE_ROOT (platform path) vs. ISABELLE_HOME (standard path);
wenzelm
parents: 61291
diff changeset
   114
71889
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
   115
      val settings =
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
   116
      {
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
   117
        val dump = JFile.createTempFile("settings", null)
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
   118
        dump.deleteOnExit
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
   119
        try {
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
   120
          val cmd1 =
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
   121
            if (Platform.is_windows)
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
   122
              List(cygwin_root1 + "\\bin\\bash", "-l",
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
   123
                File.standard_path(isabelle_root1 + "\\bin\\isabelle"))
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
   124
            else
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
   125
              List(isabelle_root1 + "/bin/isabelle")
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
   126
          val cmd = cmd1 ::: List("getenv", "-d", dump.toString)
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
   127
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
   128
          val (output, rc) = process_output(process(cmd, env = env, redirect = true))
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
   129
          if (rc != 0) error(output)
56477
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   130
71889
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
   131
          val entries =
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
   132
            (for (entry <- File.read(dump).split("\u0000") if entry != "") yield {
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
   133
              val i = entry.indexOf('=')
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
   134
              if (i <= 0) entry -> ""
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
   135
              else entry.substring(0, i) -> entry.substring(i + 1)
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
   136
            }).toMap
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
   137
          entries + ("PATH" -> entries("PATH_JVM")) - "PATH_JVM"
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
   138
        }
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
   139
        finally { dump.delete }
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
   140
      }
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
   141
      _settings = Some(settings)
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
   142
      set_cygwin_root()
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
   143
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
   144
      val variable = "ISABELLE_SCALA_SERVICES"
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
   145
      val services =
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
   146
        for (name <- space_explode(':', settings.getOrElse(variable, getenv_error(variable))))
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
   147
        yield {
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
   148
          def err(msg: String): Nothing =
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
   149
            error("Bad entry " + quote(name) + " in " + variable + "\n" + msg)
72159
40b5ee5889d2 clarified management of services: static declarations vs. dynamic instances (e.g. relevant for stateful Session.Protocol_Handler, notably Scala.Handler and session "System");
wenzelm
parents: 72105
diff changeset
   150
          try { Class.forName(name).asInstanceOf[Class[Service]] }
71889
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
   151
          catch {
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
   152
            case _: ClassNotFoundException => err("Class not found")
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
   153
            case exn: Throwable => err(Exn.message(exn))
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
   154
          }
51820
142c69695785 cygwin_root as optional argument;
wenzelm
parents: 51615
diff changeset
   155
        }
71889
8dbefe849666 omit pointless memoing: Scala compiler is rather bulky anyway;
wenzelm
parents: 71870
diff changeset
   156
      _services = Some(services)
43661
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
   157
    }
27953
b2003c98897c added getenv;
wenzelm
parents: 27936
diff changeset
   158
  }
27919
1eb8a3902d49 Isabelle system support.
wenzelm
parents:
diff changeset
   159
31796
117300d72398 renamed IsabelleSystem to Isabelle_System;
wenzelm
parents: 31704
diff changeset
   160
117300d72398 renamed IsabelleSystem to Isabelle_System;
wenzelm
parents: 31704
diff changeset
   161
  /* getenv */
117300d72398 renamed IsabelleSystem to Isabelle_System;
wenzelm
parents: 31704
diff changeset
   162
71739
c0bc99aad936 clarified init of settings vs. services;
wenzelm
parents: 71734
diff changeset
   163
  private def getenv_error(name: String): Nothing =
c0bc99aad936 clarified init of settings vs. services;
wenzelm
parents: 71734
diff changeset
   164
    error("Undefined Isabelle environment variable: " + quote(name))
c0bc99aad936 clarified init of settings vs. services;
wenzelm
parents: 71734
diff changeset
   165
64228
b46969a851a9 expand relatively to given environment, notably remote HOME;
wenzelm
parents: 64220
diff changeset
   166
  def getenv(name: String, env: Map[String, String] = settings()): String =
b46969a851a9 expand relatively to given environment, notably remote HOME;
wenzelm
parents: 64220
diff changeset
   167
    env.getOrElse(name, "")
31498
be0f7f4f9e12 static IsabelleSystem.charset;
wenzelm
parents: 31443
diff changeset
   168
64228
b46969a851a9 expand relatively to given environment, notably remote HOME;
wenzelm
parents: 64220
diff changeset
   169
  def getenv_strict(name: String, env: Map[String, String] = settings()): String =
65717
wenzelm
parents: 65090
diff changeset
   170
    proper_string(getenv(name, env)) getOrElse
wenzelm
parents: 65090
diff changeset
   171
      error("Undefined Isabelle environment variable: " + quote(name))
27919
1eb8a3902d49 Isabelle system support.
wenzelm
parents:
diff changeset
   172
61291
e00e1bf23d03 uniform treatment of bootstrap directories;
wenzelm
parents: 61282
diff changeset
   173
  def cygwin_root(): String = getenv_strict("CYGWIN_ROOT")
51820
142c69695785 cygwin_root as optional argument;
wenzelm
parents: 51615
diff changeset
   174
67865
ab0b8e388967 more uniform id;
wenzelm
parents: 67835
diff changeset
   175
  def isabelle_id(): String =
ab0b8e388967 more uniform id;
wenzelm
parents: 67835
diff changeset
   176
    proper_string(getenv("ISABELLE_ID")) getOrElse
67872
39b27d38a54c more accurate isabelle_id: parent directory is not necessarily at tip;
wenzelm
parents: 67865
diff changeset
   177
      Mercurial.repository(Path.explode("~~")).parent()
67865
ab0b8e388967 more uniform id;
wenzelm
parents: 67835
diff changeset
   178
31796
117300d72398 renamed IsabelleSystem to Isabelle_System;
wenzelm
parents: 31704
diff changeset
   179
54039
c931190b8c5c tuned whitespace;
wenzelm
parents: 53582
diff changeset
   180
43606
e1a09c2a6248 prefer Isabelle path algebra;
wenzelm
parents: 43520
diff changeset
   181
  /** file-system operations **/
31796
117300d72398 renamed IsabelleSystem to Isabelle_System;
wenzelm
parents: 31704
diff changeset
   182
71114
6cfec8029831 clarified signature;
wenzelm
parents: 69425
diff changeset
   183
  /* permissions */
6cfec8029831 clarified signature;
wenzelm
parents: 69425
diff changeset
   184
6cfec8029831 clarified signature;
wenzelm
parents: 69425
diff changeset
   185
  def chmod(arg: String, path: Path): Unit =
71123
6ab4a5fb82e1 clarified signature: allow compound arg;
wenzelm
parents: 71119
diff changeset
   186
    bash("chmod " + arg + " " + File.bash_path(path)).check
71114
6cfec8029831 clarified signature;
wenzelm
parents: 69425
diff changeset
   187
6cfec8029831 clarified signature;
wenzelm
parents: 69425
diff changeset
   188
  def chown(arg: String, path: Path): Unit =
71123
6ab4a5fb82e1 clarified signature: allow compound arg;
wenzelm
parents: 71119
diff changeset
   189
    bash("chown " + arg + " " + File.bash_path(path)).check
71114
6cfec8029831 clarified signature;
wenzelm
parents: 69425
diff changeset
   190
6cfec8029831 clarified signature;
wenzelm
parents: 69425
diff changeset
   191
64189
dfb63036c4f6 tuned signature;
wenzelm
parents: 64167
diff changeset
   192
  /* 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
   193
72376
04bce3478688 clarified signature;
wenzelm
parents: 72375
diff changeset
   194
  def make_directory(path: Path): Path =
04bce3478688 clarified signature;
wenzelm
parents: 72375
diff changeset
   195
  {
73314
87403fde8cc3 more direct make_directory in ML and Scala, but ssh still requires perl for Windows UNC paths (see a5dbad753552);
wenzelm
parents: 73224
diff changeset
   196
    try { Files.createDirectories(path.file.toPath) }
87403fde8cc3 more direct make_directory in ML and Scala, but ssh still requires perl for Windows UNC paths (see a5dbad753552);
wenzelm
parents: 73224
diff changeset
   197
    catch { case ERROR(_) => error("Failed to create directory: " + path.absolute) }
72376
04bce3478688 clarified signature;
wenzelm
parents: 72375
diff changeset
   198
    path
04bce3478688 clarified signature;
wenzelm
parents: 72375
diff changeset
   199
  }
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
   200
73314
87403fde8cc3 more direct make_directory in ML and Scala, but ssh still requires perl for Windows UNC paths (see a5dbad753552);
wenzelm
parents: 73224
diff changeset
   201
  object Make_Directory extends Scala.Fun("make_directory")
87403fde8cc3 more direct make_directory in ML and Scala, but ssh still requires perl for Windows UNC paths (see a5dbad753552);
wenzelm
parents: 73224
diff changeset
   202
  {
87403fde8cc3 more direct make_directory in ML and Scala, but ssh still requires perl for Windows UNC paths (see a5dbad753552);
wenzelm
parents: 73224
diff changeset
   203
    val here = Scala_Project.here
87403fde8cc3 more direct make_directory in ML and Scala, but ssh still requires perl for Windows UNC paths (see a5dbad753552);
wenzelm
parents: 73224
diff changeset
   204
    def apply(arg: String): String = { make_directory(Path.explode(arg)); "" }
87403fde8cc3 more direct make_directory in ML and Scala, but ssh still requires perl for Windows UNC paths (see a5dbad753552);
wenzelm
parents: 73224
diff changeset
   205
  }
87403fde8cc3 more direct make_directory in ML and Scala, but ssh still requires perl for Windows UNC paths (see a5dbad753552);
wenzelm
parents: 73224
diff changeset
   206
72377
c7741f767e3e clarified signature;
wenzelm
parents: 72376
diff changeset
   207
  def new_directory(path: Path): Path =
72426
f5d60c12deeb more standard path output (despite platform_path from d55eb82ae77b);
wenzelm
parents: 72414
diff changeset
   208
    if (path.is_dir) error("Directory already exists: " + path.absolute)
72377
c7741f767e3e clarified signature;
wenzelm
parents: 72376
diff changeset
   209
    else make_directory(path)
c7741f767e3e clarified signature;
wenzelm
parents: 72376
diff changeset
   210
73317
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   211
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   212
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   213
  /* copy */
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   214
64189
dfb63036c4f6 tuned signature;
wenzelm
parents: 64167
diff changeset
   215
  def copy_dir(dir1: Path, dir2: Path): Unit =
dfb63036c4f6 tuned signature;
wenzelm
parents: 64167
diff changeset
   216
    bash("cp -a " + File.bash_path(dir1) + " " + File.bash_path(dir2)).check
dfb63036c4f6 tuned signature;
wenzelm
parents: 64167
diff changeset
   217
73317
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   218
  def copy_file(src: JFile, dst: JFile): Unit =
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   219
  {
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   220
    val target = if (dst.isDirectory) new JFile(dst, src.getName) else dst
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   221
    if (!eq(src, target)) {
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   222
      Files.copy(src.toPath, target.toPath,
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   223
        StandardCopyOption.COPY_ATTRIBUTES,
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   224
        StandardCopyOption.REPLACE_EXISTING)
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
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   228
  def copy_file(path1: Path, path2: Path): Unit = copy_file(path1.file, path2.file)
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   229
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   230
  def copy_file_base(base_dir: Path, src0: Path, target_dir: Path): Unit =
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   231
  {
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   232
    val src = src0.expand
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   233
    val src_dir = src.dir
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   234
    if (!src.starts_basic) error("Illegal path specification " + src + " beyond base directory")
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   235
    copy_file(base_dir + src, Isabelle_System.make_directory(target_dir + src_dir))
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   236
  }
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
  /* move */
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   240
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   241
  def move_file(src: JFile, dst: JFile)
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   242
  {
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   243
    val target = if (dst.isDirectory) new JFile(dst, src.getName) else dst
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   244
    if (!eq(src, target))
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   245
      Files.move(src.toPath, target.toPath, StandardCopyOption.REPLACE_EXISTING)
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   246
  }
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   247
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   248
  def move_file(path1: Path, path2: Path): Unit = move_file(path1.file, path2.file)
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   249
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   250
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   251
  /* symbolic link */
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   252
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   253
  def symlink(src: Path, dst: Path, force: Boolean = false)
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   254
  {
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   255
    val src_file = src.file
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   256
    val dst_file = dst.file
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   257
    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
   258
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   259
    if (force) target.delete
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   260
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   261
    try { Files.createSymbolicLink(target.toPath, src_file.toPath) }
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   262
    catch {
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   263
      case _: UnsupportedOperationException if Platform.is_windows =>
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   264
        Cygwin.link(File.standard_path(src), target)
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   265
      case _: FileSystemException if Platform.is_windows =>
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   266
        Cygwin.link(File.standard_path(src), target)
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   267
    }
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   268
  }
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   269
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
   270
56428
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   271
  /* tmp files */
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   272
71569
391ea80ff27c more robust re-use of $ISABELLE_TMP_PREFIX (amending c1597167563e);
wenzelm
parents: 71520
diff changeset
   273
  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
   274
  {
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   275
    val path = Path.explode("$ISABELLE_TMP_PREFIX")
72375
e48d93811ed7 clarified signature;
wenzelm
parents: 72362
diff changeset
   276
    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
   277
    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
   278
  }
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   279
67924
b2cdd24e83b6 clarified signature: flexible base_dir;
wenzelm
parents: 67872
diff changeset
   280
  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
   281
  {
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   282
    val suffix = if (ext == "") "" else "." + ext
67924
b2cdd24e83b6 clarified signature: flexible base_dir;
wenzelm
parents: 67872
diff changeset
   283
    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
   284
    file.deleteOnExit
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   285
    file
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   286
  }
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   287
64220
e7cbf81ec4b7 prefer Isabelle standard Path;
wenzelm
parents: 64213
diff changeset
   288
  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
   289
  {
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   290
    val file = tmp_file(name, ext)
64220
e7cbf81ec4b7 prefer Isabelle standard Path;
wenzelm
parents: 64213
diff changeset
   291
    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
   292
  }
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   293
1acf2d76ac23 more standard Isabelle_System.tmp_file and tmp_dir operations, in accordance to ML version;
wenzelm
parents: 55876
diff changeset
   294
56477
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   295
  /* tmp dirs */
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   296
64213
b265dd04d57d clarified file operations;
wenzelm
parents: 64189
diff changeset
   297
  def rm_tree(root: Path): Unit = rm_tree(root.file)
b265dd04d57d clarified file operations;
wenzelm
parents: 64189
diff changeset
   298
56477
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   299
  def rm_tree(root: JFile)
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   300
  {
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   301
    root.delete
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   302
    if (root.isDirectory) {
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   303
      Files.walkFileTree(root.toPath,
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   304
        new SimpleFileVisitor[JPath] {
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   305
          override def visitFile(file: JPath, attrs: BasicFileAttributes): FileVisitResult =
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   306
          {
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
   307
            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
   308
            catch { case _: IOException => }
56477
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   309
            FileVisitResult.CONTINUE
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   310
          }
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
          override def postVisitDirectory(dir: JPath, e: IOException): FileVisitResult =
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
            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
   315
              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
   316
              catch { case _: IOException => }
56477
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   317
              FileVisitResult.CONTINUE
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   318
            }
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   319
            else throw e
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   320
          }
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   321
        }
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   322
      )
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   323
    }
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   324
  }
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   325
67924
b2cdd24e83b6 clarified signature: flexible base_dir;
wenzelm
parents: 67872
diff changeset
   326
  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
   327
  {
67924
b2cdd24e83b6 clarified signature: flexible base_dir;
wenzelm
parents: 67872
diff changeset
   328
    val dir = Files.createTempDirectory(base_dir.toPath, name).toFile
56477
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   329
    dir.deleteOnExit
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   330
    dir
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   331
  }
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   332
64220
e7cbf81ec4b7 prefer Isabelle standard Path;
wenzelm
parents: 64213
diff changeset
   333
  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
   334
  {
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   335
    val dir = tmp_dir(name)
64220
e7cbf81ec4b7 prefer Isabelle standard Path;
wenzelm
parents: 64213
diff changeset
   336
    try { body(File.path(dir)) } finally { rm_tree(dir) }
56477
57b5c8db55f1 more native rm_tree, using Java 7 facilities;
wenzelm
parents: 56449
diff changeset
   337
  }
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
65793
96b4799a2e04 more robust update of generated directory;
wenzelm
parents: 65717
diff changeset
   340
  /* quasi-atomic update of directory */
96b4799a2e04 more robust update of generated directory;
wenzelm
parents: 65717
diff changeset
   341
96b4799a2e04 more robust update of generated directory;
wenzelm
parents: 65717
diff changeset
   342
  def update_directory(dir: Path, f: Path => Unit)
96b4799a2e04 more robust update of generated directory;
wenzelm
parents: 65717
diff changeset
   343
  {
96b4799a2e04 more robust update of generated directory;
wenzelm
parents: 65717
diff changeset
   344
    val new_dir = dir.ext("new")
96b4799a2e04 more robust update of generated directory;
wenzelm
parents: 65717
diff changeset
   345
    val old_dir = dir.ext("old")
96b4799a2e04 more robust update of generated directory;
wenzelm
parents: 65717
diff changeset
   346
96b4799a2e04 more robust update of generated directory;
wenzelm
parents: 65717
diff changeset
   347
    rm_tree(new_dir)
96b4799a2e04 more robust update of generated directory;
wenzelm
parents: 65717
diff changeset
   348
    rm_tree(old_dir)
96b4799a2e04 more robust update of generated directory;
wenzelm
parents: 65717
diff changeset
   349
96b4799a2e04 more robust update of generated directory;
wenzelm
parents: 65717
diff changeset
   350
    f(new_dir)
96b4799a2e04 more robust update of generated directory;
wenzelm
parents: 65717
diff changeset
   351
73317
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   352
    if (dir.is_dir) move_file(dir, old_dir)
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   353
    move_file(new_dir, dir)
65793
96b4799a2e04 more robust update of generated directory;
wenzelm
parents: 65717
diff changeset
   354
    rm_tree(old_dir)
96b4799a2e04 more robust update of generated directory;
wenzelm
parents: 65717
diff changeset
   355
  }
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
62613
wenzelm
parents: 62612
diff changeset
   358
wenzelm
parents: 62612
diff changeset
   359
  /** external processes **/
wenzelm
parents: 62612
diff changeset
   360
wenzelm
parents: 62612
diff changeset
   361
  /* raw process */
wenzelm
parents: 62612
diff changeset
   362
wenzelm
parents: 62612
diff changeset
   363
  def process(command_line: List[String],
wenzelm
parents: 62612
diff changeset
   364
    cwd: JFile = null,
wenzelm
parents: 62612
diff changeset
   365
    env: Map[String, String] = settings(),
wenzelm
parents: 62612
diff changeset
   366
    redirect: Boolean = false): Process =
wenzelm
parents: 62612
diff changeset
   367
  {
wenzelm
parents: 62612
diff changeset
   368
    val proc = new ProcessBuilder
wenzelm
parents: 62612
diff changeset
   369
    proc.command(command_line:_*)  // fragile on Windows
wenzelm
parents: 62612
diff changeset
   370
    if (cwd != null) proc.directory(cwd)
64021
1e23caac8757 basic setup for Admin/build_history -- outside of Isabelle environment;
wenzelm
parents: 63687
diff changeset
   371
    if (env != null) {
1e23caac8757 basic setup for Admin/build_history -- outside of Isabelle environment;
wenzelm
parents: 63687
diff changeset
   372
      proc.environment.clear
1e23caac8757 basic setup for Admin/build_history -- outside of Isabelle environment;
wenzelm
parents: 63687
diff changeset
   373
      for ((x, y) <- env) proc.environment.put(x, y)
1e23caac8757 basic setup for Admin/build_history -- outside of Isabelle environment;
wenzelm
parents: 63687
diff changeset
   374
    }
62613
wenzelm
parents: 62612
diff changeset
   375
    proc.redirectErrorStream(redirect)
wenzelm
parents: 62612
diff changeset
   376
    proc.start
wenzelm
parents: 62612
diff changeset
   377
  }
wenzelm
parents: 62612
diff changeset
   378
wenzelm
parents: 62612
diff changeset
   379
  def process_output(proc: Process): (String, Int) =
wenzelm
parents: 62612
diff changeset
   380
  {
wenzelm
parents: 62612
diff changeset
   381
    proc.getOutputStream.close
wenzelm
parents: 62612
diff changeset
   382
wenzelm
parents: 62612
diff changeset
   383
    val output = File.read_stream(proc.getInputStream)
wenzelm
parents: 62612
diff changeset
   384
    val rc =
wenzelm
parents: 62612
diff changeset
   385
      try { proc.waitFor }
wenzelm
parents: 62612
diff changeset
   386
      finally {
wenzelm
parents: 62612
diff changeset
   387
        proc.getInputStream.close
wenzelm
parents: 62612
diff changeset
   388
        proc.getErrorStream.close
wenzelm
parents: 62612
diff changeset
   389
        proc.destroy
71700
6c39c3be85df clarified signature;
wenzelm
parents: 71569
diff changeset
   390
        Exn.Interrupt.dispose()
62613
wenzelm
parents: 62612
diff changeset
   391
      }
wenzelm
parents: 62612
diff changeset
   392
    (output, rc)
wenzelm
parents: 62612
diff changeset
   393
  }
61025
636b578bfadd clarified kill on Windows: just one executable;
wenzelm
parents: 60992
diff changeset
   394
636b578bfadd clarified kill on Windows: just one executable;
wenzelm
parents: 60992
diff changeset
   395
  def kill(signal: String, group_pid: String): (String, Int) =
636b578bfadd clarified kill on Windows: just one executable;
wenzelm
parents: 60992
diff changeset
   396
  {
636b578bfadd clarified kill on Windows: just one executable;
wenzelm
parents: 60992
diff changeset
   397
    val bash =
61291
e00e1bf23d03 uniform treatment of bootstrap directories;
wenzelm
parents: 61282
diff changeset
   398
      if (Platform.is_windows) List(cygwin_root() + "\\bin\\bash.exe")
61025
636b578bfadd clarified kill on Windows: just one executable;
wenzelm
parents: 60992
diff changeset
   399
      else List("/usr/bin/env", "bash")
62610
4c89504c76fb more uniform signature for various process invocations;
wenzelm
parents: 62602
diff changeset
   400
    process_output(process(bash ::: List("-c", "kill -" + signal + " -" + group_pid)))
61025
636b578bfadd clarified kill on Windows: just one executable;
wenzelm
parents: 60992
diff changeset
   401
  }
636b578bfadd clarified kill on Windows: just one executable;
wenzelm
parents: 60992
diff changeset
   402
636b578bfadd clarified kill on Windows: just one executable;
wenzelm
parents: 60992
diff changeset
   403
62613
wenzelm
parents: 62612
diff changeset
   404
  /* GNU bash */
31796
117300d72398 renamed IsabelleSystem to Isabelle_System;
wenzelm
parents: 31704
diff changeset
   405
62610
4c89504c76fb more uniform signature for various process invocations;
wenzelm
parents: 62602
diff changeset
   406
  def bash(script: String,
4c89504c76fb more uniform signature for various process invocations;
wenzelm
parents: 62602
diff changeset
   407
    cwd: JFile = null,
4c89504c76fb more uniform signature for various process invocations;
wenzelm
parents: 62602
diff changeset
   408
    env: Map[String, String] = settings(),
4c89504c76fb more uniform signature for various process invocations;
wenzelm
parents: 62602
diff changeset
   409
    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
   410
    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
   411
    progress_stderr: String => Unit = (_: String) => (),
72598
d9f2be66ebad support for watchdog thread;
wenzelm
parents: 72455
diff changeset
   412
    watchdog: Option[Bash.Watchdog] = None,
62602
96e679f042ec more thorough cleanup -- in Scala;
wenzelm
parents: 62573
diff changeset
   413
    strict: Boolean = true,
96e679f042ec more thorough cleanup -- in Scala;
wenzelm
parents: 62573
diff changeset
   414
    cleanup: () => Unit = () => ()): Process_Result =
34198
ff5486262cd6 moved Library.decode_permissive_utf8 to Isabelle_System;
wenzelm
parents: 34196
diff changeset
   415
  {
62610
4c89504c76fb more uniform signature for various process invocations;
wenzelm
parents: 62602
diff changeset
   416
    Bash.process(script, cwd = cwd, env = env, redirect = redirect, cleanup = cleanup).
72598
d9f2be66ebad support for watchdog thread;
wenzelm
parents: 72455
diff changeset
   417
      result(progress_stdout = progress_stdout, progress_stderr = progress_stderr,
d9f2be66ebad support for watchdog thread;
wenzelm
parents: 72455
diff changeset
   418
        watchdog = watchdog, strict = strict)
34198
ff5486262cd6 moved Library.decode_permissive_utf8 to Isabelle_System;
wenzelm
parents: 34196
diff changeset
   419
  }
ff5486262cd6 moved Library.decode_permissive_utf8 to Isabelle_System;
wenzelm
parents: 34196
diff changeset
   420
64935
9437a117408b insist in proper GNU tar, to avoid subtle semantic differences;
wenzelm
parents: 64657
diff changeset
   421
  private lazy val gnutar_check: Boolean =
9437a117408b insist in proper GNU tar, to avoid subtle semantic differences;
wenzelm
parents: 64657
diff changeset
   422
    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
   423
    catch { case ERROR(_) => false }
9437a117408b insist in proper GNU tar, to avoid subtle semantic differences;
wenzelm
parents: 64657
diff changeset
   424
69425
94f6ca69d983 clarified gnutar options: more uniform owner;
wenzelm
parents: 69355
diff changeset
   425
  def gnutar(
94f6ca69d983 clarified gnutar options: more uniform owner;
wenzelm
parents: 69355
diff changeset
   426
    args: String,
94f6ca69d983 clarified gnutar options: more uniform owner;
wenzelm
parents: 69355
diff changeset
   427
    dir: Path = Path.current,
94f6ca69d983 clarified gnutar options: more uniform owner;
wenzelm
parents: 69355
diff changeset
   428
    original_owner: Boolean = false,
94f6ca69d983 clarified gnutar options: more uniform owner;
wenzelm
parents: 69355
diff changeset
   429
    redirect: Boolean = false): Process_Result =
64935
9437a117408b insist in proper GNU tar, to avoid subtle semantic differences;
wenzelm
parents: 64657
diff changeset
   430
  {
69425
94f6ca69d983 clarified gnutar options: more uniform owner;
wenzelm
parents: 69355
diff changeset
   431
    val options =
94f6ca69d983 clarified gnutar options: more uniform owner;
wenzelm
parents: 69355
diff changeset
   432
      (if (dir.is_current) "" else "-C " + File.bash_path(dir) + " ") +
94f6ca69d983 clarified gnutar options: more uniform owner;
wenzelm
parents: 69355
diff changeset
   433
      (if (original_owner) "" else "--owner=root --group=staff ")
94f6ca69d983 clarified gnutar options: more uniform owner;
wenzelm
parents: 69355
diff changeset
   434
94f6ca69d983 clarified gnutar options: more uniform owner;
wenzelm
parents: 69355
diff changeset
   435
    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
   436
    else error("Expected to find GNU tar executable")
9437a117408b insist in proper GNU tar, to avoid subtle semantic differences;
wenzelm
parents: 64657
diff changeset
   437
  }
9437a117408b insist in proper GNU tar, to avoid subtle semantic differences;
wenzelm
parents: 64657
diff changeset
   438
72455
7bf67a58f54a clarified signature;
wenzelm
parents: 72426
diff changeset
   439
  def require_command(cmds: String*)
7bf67a58f54a clarified signature;
wenzelm
parents: 72426
diff changeset
   440
  {
7bf67a58f54a clarified signature;
wenzelm
parents: 72426
diff changeset
   441
    for (cmd <- cmds) {
7bf67a58f54a clarified signature;
wenzelm
parents: 72426
diff changeset
   442
      if (!bash(Bash.string(cmd) + " --version").ok) error("Missing command: " + quote(cmd))
7bf67a58f54a clarified signature;
wenzelm
parents: 72426
diff changeset
   443
    }
7bf67a58f54a clarified signature;
wenzelm
parents: 72426
diff changeset
   444
  }
7bf67a58f54a clarified signature;
wenzelm
parents: 72426
diff changeset
   445
72362
5f17bf3709b8 clarified signature;
wenzelm
parents: 72214
diff changeset
   446
  private lazy val curl_check: Unit =
72455
7bf67a58f54a clarified signature;
wenzelm
parents: 72426
diff changeset
   447
    try { require_command("curl") }
7bf67a58f54a clarified signature;
wenzelm
parents: 72426
diff changeset
   448
    catch { case ERROR(msg) => error(msg + " --- cannot download files") }
72362
5f17bf3709b8 clarified signature;
wenzelm
parents: 72214
diff changeset
   449
5f17bf3709b8 clarified signature;
wenzelm
parents: 72214
diff changeset
   450
  def download(url: String, file: Path, progress: Progress = new Progress): Unit =
5f17bf3709b8 clarified signature;
wenzelm
parents: 72214
diff changeset
   451
  {
5f17bf3709b8 clarified signature;
wenzelm
parents: 72214
diff changeset
   452
    curl_check
5f17bf3709b8 clarified signature;
wenzelm
parents: 72214
diff changeset
   453
    progress.echo("Getting " + quote(url))
5f17bf3709b8 clarified signature;
wenzelm
parents: 72214
diff changeset
   454
    try {
5f17bf3709b8 clarified signature;
wenzelm
parents: 72214
diff changeset
   455
      bash("curl --fail --silent --location " + Bash.string(url) +
5f17bf3709b8 clarified signature;
wenzelm
parents: 72214
diff changeset
   456
        " > " + File.bash_path(file)).check
5f17bf3709b8 clarified signature;
wenzelm
parents: 72214
diff changeset
   457
    }
5f17bf3709b8 clarified signature;
wenzelm
parents: 72214
diff changeset
   458
    catch { case ERROR(msg) => cat_error("Failed to download " + quote(url), msg) }
5f17bf3709b8 clarified signature;
wenzelm
parents: 72214
diff changeset
   459
  }
5f17bf3709b8 clarified signature;
wenzelm
parents: 72214
diff changeset
   460
64152
8f5b23536c56 enforce short name, notably on Mac OS X;
wenzelm
parents: 64139
diff changeset
   461
  def hostname(): String = bash("hostname -s").check.out
64139
387c811cad6a tuned signature;
wenzelm
parents: 64021
diff changeset
   462
54690
cd88b44623bf more direct Isabelle_System.pdf_viewer;
wenzelm
parents: 54645
diff changeset
   463
  def open(arg: String): Unit =
64304
96bc94c87a81 clarified modules;
wenzelm
parents: 64228
diff changeset
   464
    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
   465
cd88b44623bf more direct Isabelle_System.pdf_viewer;
wenzelm
parents: 54645
diff changeset
   466
  def pdf_viewer(arg: Path): Unit =
62616
wenzelm
parents: 62615
diff changeset
   467
    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
   468
73224
49686e3b1909 clarified links to external files, e.g. .pdf within .thy source document;
wenzelm
parents: 72976
diff changeset
   469
  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
   470
  {
49686e3b1909 clarified links to external files, e.g. .pdf within .thy source document;
wenzelm
parents: 72976
diff changeset
   471
    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
   472
    val external =
49686e3b1909 clarified links to external files, e.g. .pdf within .thy source document;
wenzelm
parents: 72976
diff changeset
   473
      ext.nonEmpty &&
49686e3b1909 clarified links to external files, e.g. .pdf within .thy source document;
wenzelm
parents: 72976
diff changeset
   474
      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
   475
    if (external) {
49686e3b1909 clarified links to external files, e.g. .pdf within .thy source document;
wenzelm
parents: 72976
diff changeset
   476
      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
   477
      else open(name)
49686e3b1909 clarified links to external files, e.g. .pdf within .thy source document;
wenzelm
parents: 72976
diff changeset
   478
    }
49686e3b1909 clarified links to external files, e.g. .pdf within .thy source document;
wenzelm
parents: 72976
diff changeset
   479
    external
49686e3b1909 clarified links to external files, e.g. .pdf within .thy source document;
wenzelm
parents: 72976
diff changeset
   480
  }
49686e3b1909 clarified links to external files, e.g. .pdf within .thy source document;
wenzelm
parents: 72976
diff changeset
   481
65916
wenzelm
parents: 65793
diff changeset
   482
  def export_isabelle_identifier(isabelle_identifier: String): String =
wenzelm
parents: 65793
diff changeset
   483
    if (isabelle_identifier == "") ""
wenzelm
parents: 65793
diff changeset
   484
    else "export ISABELLE_IDENTIFIER=" + Bash.string(isabelle_identifier) + "\n"
wenzelm
parents: 65793
diff changeset
   485
32450
375db037f4d2 misc tuning;
wenzelm
parents: 32328
diff changeset
   486
31796
117300d72398 renamed IsabelleSystem to Isabelle_System;
wenzelm
parents: 31704
diff changeset
   487
  /** Isabelle resources **/
117300d72398 renamed IsabelleSystem to Isabelle_System;
wenzelm
parents: 31704
diff changeset
   488
64161
2b1128e95dfb explicit indication of Admin tools;
wenzelm
parents: 64152
diff changeset
   489
  /* repository clone with Admin */
2b1128e95dfb explicit indication of Admin tools;
wenzelm
parents: 64152
diff changeset
   490
2b1128e95dfb explicit indication of Admin tools;
wenzelm
parents: 64152
diff changeset
   491
  def admin(): Boolean = Path.explode("~~/Admin").is_dir
2b1128e95dfb explicit indication of Admin tools;
wenzelm
parents: 64152
diff changeset
   492
2b1128e95dfb explicit indication of Admin tools;
wenzelm
parents: 64152
diff changeset
   493
32328
f2fd9da84bac added Isabelle_System.components;
wenzelm
parents: 31927
diff changeset
   494
  /* components */
f2fd9da84bac added Isabelle_System.components;
wenzelm
parents: 31927
diff changeset
   495
43669
9d34288e9351 Path.split convenience;
wenzelm
parents: 43664
diff changeset
   496
  def components(): List[Path] =
9d34288e9351 Path.split convenience;
wenzelm
parents: 43664
diff changeset
   497
    Path.split(getenv_strict("ISABELLE_COMPONENTS"))
32328
f2fd9da84bac added Isabelle_System.components;
wenzelm
parents: 31927
diff changeset
   498
f2fd9da84bac added Isabelle_System.components;
wenzelm
parents: 31927
diff changeset
   499
62633
e57416b649d5 find heaps uniformly via Sessions.Store;
wenzelm
parents: 62616
diff changeset
   500
  /* default logic */
48503
wenzelm
parents: 48418
diff changeset
   501
50403
87868964733c more uniform default logic, using settings, options, args etc.;
wenzelm
parents: 50298
diff changeset
   502
  def default_logic(args: String*): String =
87868964733c more uniform default logic, using settings, options, args etc.;
wenzelm
parents: 50298
diff changeset
   503
  {
87868964733c more uniform default logic, using settings, options, args etc.;
wenzelm
parents: 50298
diff changeset
   504
    args.find(_ != "") match {
87868964733c more uniform default logic, using settings, options, args etc.;
wenzelm
parents: 50298
diff changeset
   505
      case Some(logic) => logic
73317
df49ca5da9d0 clarified modules: more like ML;
wenzelm
parents: 73314
diff changeset
   506
      case None => getenv_strict("ISABELLE_LOGIC")
50403
87868964733c more uniform default logic, using settings, options, args etc.;
wenzelm
parents: 50298
diff changeset
   507
    }
87868964733c more uniform default logic, using settings, options, args etc.;
wenzelm
parents: 50298
diff changeset
   508
  }
27919
1eb8a3902d49 Isabelle system support.
wenzelm
parents:
diff changeset
   509
}