src/Pure/System/isabelle_system.scala
author wenzelm
Sun, 22 Apr 2012 14:30:18 +0200
changeset 47661 012a887997f3
parent 47113 b5a5662528fb
child 47674 cdf95042e09c
permissions -rw-r--r--
USER_HOME settings variable points to cross-platform user home directory;
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
43520
cec9b95fa35d explicit import java.lang.System to prevent odd scope problems;
wenzelm
parents: 43514
diff changeset
    10
import java.lang.System
31520
0a99c8716312 simplified IsabelleSystem.platform_path for cygwin;
wenzelm
parents: 31500
diff changeset
    11
import java.util.regex.Pattern
31820
8199c9a42941 added isabelle_path;
wenzelm
parents: 31818
diff changeset
    12
import java.util.Locale
45027
f459e93a038e more abstract wrapping of fifos as System_Channel;
wenzelm
parents: 44184
diff changeset
    13
import java.io.{InputStream, OutputStream, File, BufferedReader, InputStreamReader,
f459e93a038e more abstract wrapping of fifos as System_Channel;
wenzelm
parents: 44184
diff changeset
    14
  BufferedWriter, OutputStreamWriter, IOException}
34024
0bae8702a7c5 basic support for IsabelleText fonts;
wenzelm
parents: 32450
diff changeset
    15
import java.awt.{GraphicsEnvironment, Font}
37367
8680677265c9 clarified font_family vs. font_family_default;
wenzelm
parents: 37132
diff changeset
    16
import java.awt.font.TextAttribute
28063
3533485fc7b8 IsabelleSystem.mk_fifo, IsabelleSystem.rm_fifo;
wenzelm
parents: 28057
diff changeset
    17
3533485fc7b8 IsabelleSystem.mk_fifo, IsabelleSystem.rm_fifo;
wenzelm
parents: 28057
diff changeset
    18
import scala.io.Source
31520
0a99c8716312 simplified IsabelleSystem.platform_path for cygwin;
wenzelm
parents: 31500
diff changeset
    19
import scala.util.matching.Regex
34163
wenzelm
parents: 34162
diff changeset
    20
import scala.collection.mutable
27936
947cb8e3d313 added get_setting;
wenzelm
parents: 27919
diff changeset
    21
27919
1eb8a3902d49 Isabelle system support.
wenzelm
parents:
diff changeset
    22
43514
45cf8d5e109a lazy Isabelle_System.default supports implicit boot;
wenzelm
parents: 43484
diff changeset
    23
object Isabelle_System
45cf8d5e109a lazy Isabelle_System.default supports implicit boot;
wenzelm
parents: 43484
diff changeset
    24
{
43661
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    25
  /** implicit state **/
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    26
43695
5130dfe1b7be simplified Symbol based on lazy Symbol.Interpretation -- reduced odd "functorial style";
wenzelm
parents: 43670
diff changeset
    27
  private case class State(standard_system: Standard_System, settings: Map[String, String])
43661
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    28
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    29
  @volatile private var _state: Option[State] = None
43514
45cf8d5e109a lazy Isabelle_System.default supports implicit boot;
wenzelm
parents: 43484
diff changeset
    30
43661
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    31
  private def check_state(): State =
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    32
  {
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    33
    if (_state.isEmpty) init()  // unsynchronized check
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    34
    _state.get
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    35
  }
37013
641923374eba Isabelle_System: allow explicit isabelle_home argument;
wenzelm
parents: 36991
diff changeset
    36
43661
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    37
  def standard_system: Standard_System = check_state().standard_system
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    38
  def settings: Map[String, String] = check_state().settings
31796
117300d72398 renamed IsabelleSystem to Isabelle_System;
wenzelm
parents: 31704
diff changeset
    39
37013
641923374eba Isabelle_System: allow explicit isabelle_home argument;
wenzelm
parents: 36991
diff changeset
    40
  /*
641923374eba Isabelle_System: allow explicit isabelle_home argument;
wenzelm
parents: 36991
diff changeset
    41
    isabelle_home precedence:
641923374eba Isabelle_System: allow explicit isabelle_home argument;
wenzelm
parents: 36991
diff changeset
    42
      (1) this_isabelle_home as explicit argument
641923374eba Isabelle_System: allow explicit isabelle_home argument;
wenzelm
parents: 36991
diff changeset
    43
      (2) ISABELLE_HOME process environment variable (e.g. inherited from running isabelle tool)
641923374eba Isabelle_System: allow explicit isabelle_home argument;
wenzelm
parents: 36991
diff changeset
    44
      (3) isabelle.home system property (e.g. via JVM application boot process)
641923374eba Isabelle_System: allow explicit isabelle_home argument;
wenzelm
parents: 36991
diff changeset
    45
  */
43661
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    46
  def init(this_isabelle_home: String = null) = synchronized {
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    47
    if (_state.isEmpty) {
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    48
      import scala.collection.JavaConversions._
37013
641923374eba Isabelle_System: allow explicit isabelle_home argument;
wenzelm
parents: 36991
diff changeset
    49
43661
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    50
      val standard_system = new Standard_System
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    51
      val settings =
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    52
      {
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    53
        val env = Map(System.getenv.toList: _*) +
47113
b5a5662528fb ISABELLE_JDK_HOME settings variable points to JDK with javac and jar (not just JRE);
wenzelm
parents: 45900
diff changeset
    54
          ("ISABELLE_JDK_HOME" -> standard_system.this_jdk_home())
27919
1eb8a3902d49 Isabelle system support.
wenzelm
parents:
diff changeset
    55
43661
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    56
        val isabelle_home =
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    57
          if (this_isabelle_home != null) this_isabelle_home
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    58
          else
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    59
            env.get("ISABELLE_HOME") match {
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    60
              case None | Some("") =>
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    61
                val path = System.getProperty("isabelle.home")
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    62
                if (path == null || path == "") error("Unknown Isabelle home directory")
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    63
                else path
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    64
              case Some(path) => path
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    65
            }
29177
0e88d33e8d19 maintain initial process environment;
wenzelm
parents: 29174
diff changeset
    66
43661
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    67
          Standard_System.with_tmp_file("settings") { dump =>
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    68
              val shell_prefix =
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    69
                if (Platform.is_windows) List(standard_system.platform_root + "\\bin\\bash", "-l")
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    70
                else Nil
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    71
              val cmdline =
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    72
                shell_prefix ::: List(isabelle_home + "/bin/isabelle", "getenv", "-d", dump.toString)
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    73
              val (output, rc) = Standard_System.raw_exec(null, env, true, cmdline: _*)
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    74
              if (rc != 0) error(output)
31498
be0f7f4f9e12 static IsabelleSystem.charset;
wenzelm
parents: 31443
diff changeset
    75
43661
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    76
              val entries =
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    77
                for (entry <- Source.fromFile(dump).mkString split "\0" if entry != "") yield {
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    78
                  val i = entry.indexOf('=')
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    79
                  if (i <= 0) (entry -> "")
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    80
                  else (entry.substring(0, i) -> entry.substring(i + 1))
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    81
                }
47661
012a887997f3 USER_HOME settings variable points to cross-platform user home directory;
wenzelm
parents: 47113
diff changeset
    82
              Map(entries: _*) + ("PATH" -> System.getenv("PATH"))
43661
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    83
            }
34201
c95dcd12f48a separate Standard_System (Cygwin/Posix compatibility) vs. Isabelle_System (settings environment etc.);
wenzelm
parents: 34200
diff changeset
    84
          }
43695
5130dfe1b7be simplified Symbol based on lazy Symbol.Interpretation -- reduced odd "functorial style";
wenzelm
parents: 43670
diff changeset
    85
      _state = Some(State(standard_system, settings))
43661
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
    86
    }
27953
b2003c98897c added getenv;
wenzelm
parents: 27936
diff changeset
    87
  }
27919
1eb8a3902d49 Isabelle system support.
wenzelm
parents:
diff changeset
    88
31796
117300d72398 renamed IsabelleSystem to Isabelle_System;
wenzelm
parents: 31704
diff changeset
    89
117300d72398 renamed IsabelleSystem to Isabelle_System;
wenzelm
parents: 31704
diff changeset
    90
  /* getenv */
117300d72398 renamed IsabelleSystem to Isabelle_System;
wenzelm
parents: 31704
diff changeset
    91
47661
012a887997f3 USER_HOME settings variable points to cross-platform user home directory;
wenzelm
parents: 47113
diff changeset
    92
  def getenv(name: String): String = settings.getOrElse(name, "")
31498
be0f7f4f9e12 static IsabelleSystem.charset;
wenzelm
parents: 31443
diff changeset
    93
be0f7f4f9e12 static IsabelleSystem.charset;
wenzelm
parents: 31443
diff changeset
    94
  def getenv_strict(name: String): String =
be0f7f4f9e12 static IsabelleSystem.charset;
wenzelm
parents: 31443
diff changeset
    95
  {
31234
6ce6801129de getenv_strict needs to be based on getenv (accidentally broken in 0e88d33e8d19);
wenzelm
parents: 30175
diff changeset
    96
    val value = getenv(name)
27993
6dd90ef9f927 simplified exceptions: use plain error function / RuntimeException;
wenzelm
parents: 27974
diff changeset
    97
    if (value != "") value else error("Undefined environment variable: " + name)
27919
1eb8a3902d49 Isabelle system support.
wenzelm
parents:
diff changeset
    98
  }
1eb8a3902d49 Isabelle system support.
wenzelm
parents:
diff changeset
    99
31796
117300d72398 renamed IsabelleSystem to Isabelle_System;
wenzelm
parents: 31704
diff changeset
   100
43606
e1a09c2a6248 prefer Isabelle path algebra;
wenzelm
parents: 43520
diff changeset
   101
  /** file-system operations **/
31796
117300d72398 renamed IsabelleSystem to Isabelle_System;
wenzelm
parents: 31704
diff changeset
   102
43606
e1a09c2a6248 prefer Isabelle path algebra;
wenzelm
parents: 43520
diff changeset
   103
  /* path specifications */
36136
89b1a136edef more precise treatment of UNC server prefix, e.g. //foo;
wenzelm
parents: 36012
diff changeset
   104
43664
wenzelm
parents: 43661
diff changeset
   105
  def standard_path(path: Path): String = path.expand.implode
31796
117300d72398 renamed IsabelleSystem to Isabelle_System;
wenzelm
parents: 31704
diff changeset
   106
43661
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
   107
  def platform_path(path: Path): String = standard_system.jvm_path(standard_path(path))
45027
f459e93a038e more abstract wrapping of fifos as System_Channel;
wenzelm
parents: 44184
diff changeset
   108
  def platform_file(path: Path): File = new File(platform_path(path))
29152
89b0803404d7 added platform_file;
wenzelm
parents: 29140
diff changeset
   109
45100
0971c3ee3cdf proper platform_file_url;
wenzelm
parents: 45027
diff changeset
   110
  def platform_file_url(raw_path: Path): String =
0971c3ee3cdf proper platform_file_url;
wenzelm
parents: 45027
diff changeset
   111
  {
0971c3ee3cdf proper platform_file_url;
wenzelm
parents: 45027
diff changeset
   112
    val path = raw_path.expand
0971c3ee3cdf proper platform_file_url;
wenzelm
parents: 45027
diff changeset
   113
    require(path.is_absolute)
45101
6317e969fb30 proper platform_file_url for Windows UNC paths (server shares);
wenzelm
parents: 45100
diff changeset
   114
    val s = platform_path(path).replaceAll(" ", "%20")
6317e969fb30 proper platform_file_url for Windows UNC paths (server shares);
wenzelm
parents: 45100
diff changeset
   115
    if (!Platform.is_windows) "file://" + s
6317e969fb30 proper platform_file_url for Windows UNC paths (server shares);
wenzelm
parents: 45100
diff changeset
   116
    else if (s.startsWith("\\\\")) "file:" + s.replace('\\', '/')
6317e969fb30 proper platform_file_url for Windows UNC paths (server shares);
wenzelm
parents: 45100
diff changeset
   117
    else "file:///" + s.replace('\\', '/')
45100
0971c3ee3cdf proper platform_file_url;
wenzelm
parents: 45027
diff changeset
   118
  }
0971c3ee3cdf proper platform_file_url;
wenzelm
parents: 45027
diff changeset
   119
43661
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
   120
  def posix_path(jvm_path: String): String = standard_system.posix_path(jvm_path)
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
   121
27953
b2003c98897c added getenv;
wenzelm
parents: 27936
diff changeset
   122
36991
ccb8da7f76e6 general Isabelle_System.try_read;
wenzelm
parents: 36788
diff changeset
   123
  /* try_read */
ccb8da7f76e6 general Isabelle_System.try_read;
wenzelm
parents: 36788
diff changeset
   124
43606
e1a09c2a6248 prefer Isabelle path algebra;
wenzelm
parents: 43520
diff changeset
   125
  def try_read(paths: Seq[Path]): String =
36991
ccb8da7f76e6 general Isabelle_System.try_read;
wenzelm
parents: 36788
diff changeset
   126
  {
37058
c47653f3ec14 rendering information and style sheets via settings;
wenzelm
parents: 37013
diff changeset
   127
    val buf = new StringBuilder
c47653f3ec14 rendering information and style sheets via settings;
wenzelm
parents: 37013
diff changeset
   128
    for {
c47653f3ec14 rendering information and style sheets via settings;
wenzelm
parents: 37013
diff changeset
   129
      path <- paths
c47653f3ec14 rendering information and style sheets via settings;
wenzelm
parents: 37013
diff changeset
   130
      file = platform_file(path) if file.isFile
c47653f3ec14 rendering information and style sheets via settings;
wenzelm
parents: 37013
diff changeset
   131
      c <- (Source.fromFile(file) ++ Iterator.single('\n'))
c47653f3ec14 rendering information and style sheets via settings;
wenzelm
parents: 37013
diff changeset
   132
    } buf.append(c)
c47653f3ec14 rendering information and style sheets via settings;
wenzelm
parents: 37013
diff changeset
   133
    buf.toString
36991
ccb8da7f76e6 general Isabelle_System.try_read;
wenzelm
parents: 36788
diff changeset
   134
  }
ccb8da7f76e6 general Isabelle_System.try_read;
wenzelm
parents: 36788
diff changeset
   135
ccb8da7f76e6 general Isabelle_System.try_read;
wenzelm
parents: 36788
diff changeset
   136
31436
dde1b4d1c95b retrieve ML source files;
wenzelm
parents: 31234
diff changeset
   137
  /* source files */
dde1b4d1c95b retrieve ML source files;
wenzelm
parents: 31234
diff changeset
   138
dde1b4d1c95b retrieve ML source files;
wenzelm
parents: 31234
diff changeset
   139
  private def try_file(file: File) = if (file.isFile) Some(file) else None
dde1b4d1c95b retrieve ML source files;
wenzelm
parents: 31234
diff changeset
   140
43606
e1a09c2a6248 prefer Isabelle path algebra;
wenzelm
parents: 43520
diff changeset
   141
  def source_file(path: Path): Option[File] =
31498
be0f7f4f9e12 static IsabelleSystem.charset;
wenzelm
parents: 31443
diff changeset
   142
  {
43606
e1a09c2a6248 prefer Isabelle path algebra;
wenzelm
parents: 43520
diff changeset
   143
    if (path.is_absolute || path.is_current)
31436
dde1b4d1c95b retrieve ML source files;
wenzelm
parents: 31234
diff changeset
   144
      try_file(platform_file(path))
dde1b4d1c95b retrieve ML source files;
wenzelm
parents: 31234
diff changeset
   145
    else {
43606
e1a09c2a6248 prefer Isabelle path algebra;
wenzelm
parents: 43520
diff changeset
   146
      val pure_file = platform_file(Path.explode("~~/src/Pure") + path)
31436
dde1b4d1c95b retrieve ML source files;
wenzelm
parents: 31234
diff changeset
   147
      if (pure_file.isFile) Some(pure_file)
dde1b4d1c95b retrieve ML source files;
wenzelm
parents: 31234
diff changeset
   148
      else if (getenv("ML_SOURCES") != "")
43606
e1a09c2a6248 prefer Isabelle path algebra;
wenzelm
parents: 43520
diff changeset
   149
        try_file(platform_file(Path.explode("$ML_SOURCES") + path))
31436
dde1b4d1c95b retrieve ML source files;
wenzelm
parents: 31234
diff changeset
   150
      else None
dde1b4d1c95b retrieve ML source files;
wenzelm
parents: 31234
diff changeset
   151
    }
dde1b4d1c95b retrieve ML source files;
wenzelm
parents: 31234
diff changeset
   152
  }
dde1b4d1c95b retrieve ML source files;
wenzelm
parents: 31234
diff changeset
   153
dde1b4d1c95b retrieve ML source files;
wenzelm
parents: 31234
diff changeset
   154
32450
375db037f4d2 misc tuning;
wenzelm
parents: 32328
diff changeset
   155
39583
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   156
  /** external processes **/
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   157
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   158
  /* plain execute */
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   159
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   160
  def execute(redirect: Boolean, args: String*): Process =
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   161
  {
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   162
    val cmdline =
43661
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
   163
      if (Platform.is_windows) List(standard_system.platform_root + "\\bin\\env.exe") ++ args
39583
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   164
      else args
43661
39fdbd814c7f quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents: 43660
diff changeset
   165
    Standard_System.raw_execute(null, settings, redirect, cmdline: _*)
39583
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   166
  }
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   167
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   168
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   169
  /* managed process */
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   170
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   171
  class Managed_Process(redirect: Boolean, args: String*)
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   172
  {
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   173
    private val params =
43606
e1a09c2a6248 prefer Isabelle path algebra;
wenzelm
parents: 43520
diff changeset
   174
      List(standard_path(Path.explode("~~/lib/scripts/process")), "group", "-", "no_script")
39583
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   175
    private val proc = execute(redirect, (params ++ args):_*)
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   176
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   177
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   178
    // channels
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   179
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   180
    val stdin: BufferedWriter =
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   181
      new BufferedWriter(new OutputStreamWriter(proc.getOutputStream, Standard_System.charset))
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   182
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   183
    val stdout: BufferedReader =
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   184
      new BufferedReader(new InputStreamReader(proc.getInputStream, Standard_System.charset))
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   185
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   186
    val stderr: BufferedReader =
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   187
      new BufferedReader(new InputStreamReader(proc.getErrorStream, Standard_System.charset))
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   188
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   189
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   190
    // signals
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   191
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   192
    private val pid = stdout.readLine
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   193
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   194
    private def kill(signal: String): Boolean =
39584
f2a10986e85a more robust Managed_Process.kill: check after sending signal;
wenzelm
parents: 39583
diff changeset
   195
    {
f2a10986e85a more robust Managed_Process.kill: check after sending signal;
wenzelm
parents: 39583
diff changeset
   196
      execute(true, "kill", "-" + signal, "-" + pid).waitFor
f2a10986e85a more robust Managed_Process.kill: check after sending signal;
wenzelm
parents: 39583
diff changeset
   197
      execute(true, "kill", "-0", "-" + pid).waitFor == 0
f2a10986e85a more robust Managed_Process.kill: check after sending signal;
wenzelm
parents: 39583
diff changeset
   198
    }
39583
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   199
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   200
    private def multi_kill(signal: String): Boolean =
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   201
    {
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   202
      var running = true
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   203
      var count = 10
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   204
      while (running && count > 0) {
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   205
        if (kill(signal)) {
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   206
          Thread.sleep(100)
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   207
          count -= 1
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   208
        }
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   209
        else running = false
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   210
      }
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   211
      running
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   212
    }
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   213
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   214
    def interrupt() { multi_kill("INT") }
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   215
    def terminate() { multi_kill("INT") && multi_kill("TERM") && kill("KILL"); proc.destroy }
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   216
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   217
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   218
    // JVM shutdown hook
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   219
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   220
    private val shutdown_hook = new Thread { override def run = terminate() }
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   221
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   222
    try { Runtime.getRuntime.addShutdownHook(shutdown_hook) }
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   223
    catch { case _: IllegalStateException => }
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   224
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   225
    private def cleanup() =
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   226
      try { Runtime.getRuntime.removeShutdownHook(shutdown_hook) }
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   227
      catch { case _: IllegalStateException => }
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   228
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   229
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   230
    /* result */
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   231
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   232
    def join: Int = { val rc = proc.waitFor; cleanup(); rc }
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   233
  }
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   234
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   235
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   236
  /* bash */
31796
117300d72398 renamed IsabelleSystem to Isabelle_System;
wenzelm
parents: 31704
diff changeset
   237
39581
430ff865089b refined Isabelle_System.bash_output: pass pid via stdout, separate stdout/stderr;
wenzelm
parents: 39576
diff changeset
   238
  def bash(script: String): (String, String, Int) =
34198
ff5486262cd6 moved Library.decode_permissive_utf8 to Isabelle_System;
wenzelm
parents: 34196
diff changeset
   239
  {
34201
c95dcd12f48a separate Standard_System (Cygwin/Posix compatibility) vs. Isabelle_System (settings environment etc.);
wenzelm
parents: 34200
diff changeset
   240
    Standard_System.with_tmp_file("isabelle_script") { script_file =>
39581
430ff865089b refined Isabelle_System.bash_output: pass pid via stdout, separate stdout/stderr;
wenzelm
parents: 39576
diff changeset
   241
      Standard_System.write_file(script_file, script)
39583
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   242
      val proc = new Managed_Process(false, "bash", posix_path(script_file.getPath))
39581
430ff865089b refined Isabelle_System.bash_output: pass pid via stdout, separate stdout/stderr;
wenzelm
parents: 39576
diff changeset
   243
39583
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   244
      proc.stdin.close
39586
ea8f3ea13a95 eliminated Simple_Thread shorthands that can overlap with full version;
wenzelm
parents: 39584
diff changeset
   245
      val stdout = Simple_Thread.future("bash_stdout") { Standard_System.slurp(proc.stdout) }
ea8f3ea13a95 eliminated Simple_Thread shorthands that can overlap with full version;
wenzelm
parents: 39584
diff changeset
   246
      val stderr = Simple_Thread.future("bash_stderr") { Standard_System.slurp(proc.stderr) }
34198
ff5486262cd6 moved Library.decode_permissive_utf8 to Isabelle_System;
wenzelm
parents: 34196
diff changeset
   247
39581
430ff865089b refined Isabelle_System.bash_output: pass pid via stdout, separate stdout/stderr;
wenzelm
parents: 39576
diff changeset
   248
      val rc =
39583
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   249
        try { proc.join }
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   250
        catch { case e: InterruptedException => Thread.interrupted; proc.terminate; 130 }
39581
430ff865089b refined Isabelle_System.bash_output: pass pid via stdout, separate stdout/stderr;
wenzelm
parents: 39576
diff changeset
   251
      (stdout.join, stderr.join, rc)
34198
ff5486262cd6 moved Library.decode_permissive_utf8 to Isabelle_System;
wenzelm
parents: 34196
diff changeset
   252
    }
ff5486262cd6 moved Library.decode_permissive_utf8 to Isabelle_System;
wenzelm
parents: 34196
diff changeset
   253
  }
ff5486262cd6 moved Library.decode_permissive_utf8 to Isabelle_System;
wenzelm
parents: 34196
diff changeset
   254
39583
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   255
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   256
  /* system tools */
c1e9c6dfeff8 more robust lib/scripts/process, with explicit script/no_script mode;
wenzelm
parents: 39581
diff changeset
   257
31818
f698f76a3713 builtin isabelle_tool for ML and Scala -- avoids excessive shell script (especially important for Cygwin);
wenzelm
parents: 31803
diff changeset
   258
  def isabelle_tool(name: String, args: String*): (String, Int) =
31498
be0f7f4f9e12 static IsabelleSystem.charset;
wenzelm
parents: 31443
diff changeset
   259
  {
43669
9d34288e9351 Path.split convenience;
wenzelm
parents: 43664
diff changeset
   260
    Path.split(getenv_strict("ISABELLE_TOOLS")).find { dir =>
9d34288e9351 Path.split convenience;
wenzelm
parents: 43664
diff changeset
   261
      val file = platform_file(dir + Path.basic(name))
42124
7519c7c33017 suppress Mercurial backup files;
wenzelm
parents: 39699
diff changeset
   262
      try {
7519c7c33017 suppress Mercurial backup files;
wenzelm
parents: 39699
diff changeset
   263
        file.isFile && file.canRead && file.canExecute &&
7519c7c33017 suppress Mercurial backup files;
wenzelm
parents: 39699
diff changeset
   264
          !name.endsWith("~") && !name.endsWith(".orig")
7519c7c33017 suppress Mercurial backup files;
wenzelm
parents: 39699
diff changeset
   265
      }
31818
f698f76a3713 builtin isabelle_tool for ML and Scala -- avoids excessive shell script (especially important for Cygwin);
wenzelm
parents: 31803
diff changeset
   266
      catch { case _: SecurityException => false }
34200
wenzelm
parents: 34199
diff changeset
   267
    } match {
31818
f698f76a3713 builtin isabelle_tool for ML and Scala -- avoids excessive shell script (especially important for Cygwin);
wenzelm
parents: 31803
diff changeset
   268
      case Some(dir) =>
43669
9d34288e9351 Path.split convenience;
wenzelm
parents: 43664
diff changeset
   269
        val file = standard_path(dir + Path.basic(name))
43606
e1a09c2a6248 prefer Isabelle path algebra;
wenzelm
parents: 43520
diff changeset
   270
        Standard_System.process_output(execute(true, (List(file) ++ args): _*))
31818
f698f76a3713 builtin isabelle_tool for ML and Scala -- avoids excessive shell script (especially important for Cygwin);
wenzelm
parents: 31803
diff changeset
   271
      case None => ("Unknown Isabelle tool: " + name, 2)
f698f76a3713 builtin isabelle_tool for ML and Scala -- avoids excessive shell script (especially important for Cygwin);
wenzelm
parents: 31803
diff changeset
   272
    }
28063
3533485fc7b8 IsabelleSystem.mk_fifo, IsabelleSystem.rm_fifo;
wenzelm
parents: 28057
diff changeset
   273
  }
3533485fc7b8 IsabelleSystem.mk_fifo, IsabelleSystem.rm_fifo;
wenzelm
parents: 28057
diff changeset
   274
3533485fc7b8 IsabelleSystem.mk_fifo, IsabelleSystem.rm_fifo;
wenzelm
parents: 28057
diff changeset
   275
32450
375db037f4d2 misc tuning;
wenzelm
parents: 32328
diff changeset
   276
31796
117300d72398 renamed IsabelleSystem to Isabelle_System;
wenzelm
parents: 31704
diff changeset
   277
  /** Isabelle resources **/
117300d72398 renamed IsabelleSystem to Isabelle_System;
wenzelm
parents: 31704
diff changeset
   278
32328
f2fd9da84bac added Isabelle_System.components;
wenzelm
parents: 31927
diff changeset
   279
  /* components */
f2fd9da84bac added Isabelle_System.components;
wenzelm
parents: 31927
diff changeset
   280
43669
9d34288e9351 Path.split convenience;
wenzelm
parents: 43664
diff changeset
   281
  def components(): List[Path] =
9d34288e9351 Path.split convenience;
wenzelm
parents: 43664
diff changeset
   282
    Path.split(getenv_strict("ISABELLE_COMPONENTS"))
32328
f2fd9da84bac added Isabelle_System.components;
wenzelm
parents: 31927
diff changeset
   283
f2fd9da84bac added Isabelle_System.components;
wenzelm
parents: 31927
diff changeset
   284
29152
89b0803404d7 added platform_file;
wenzelm
parents: 29140
diff changeset
   285
  /* find logics */
89b0803404d7 added platform_file;
wenzelm
parents: 29140
diff changeset
   286
31498
be0f7f4f9e12 static IsabelleSystem.charset;
wenzelm
parents: 31443
diff changeset
   287
  def find_logics(): List[String] =
be0f7f4f9e12 static IsabelleSystem.charset;
wenzelm
parents: 31443
diff changeset
   288
  {
29152
89b0803404d7 added platform_file;
wenzelm
parents: 29140
diff changeset
   289
    val ml_ident = getenv_strict("ML_IDENTIFIER")
34163
wenzelm
parents: 34162
diff changeset
   290
    val logics = new mutable.ListBuffer[String]
43669
9d34288e9351 Path.split convenience;
wenzelm
parents: 43664
diff changeset
   291
    for (dir <- Path.split(getenv_strict("ISABELLE_PATH"))) {
9d34288e9351 Path.split convenience;
wenzelm
parents: 43664
diff changeset
   292
      val files = platform_file(dir + Path.explode(ml_ident)).listFiles()
29152
89b0803404d7 added platform_file;
wenzelm
parents: 29140
diff changeset
   293
      if (files != null) {
89b0803404d7 added platform_file;
wenzelm
parents: 29140
diff changeset
   294
        for (file <- files if file.isFile) logics += file.getName
89b0803404d7 added platform_file;
wenzelm
parents: 29140
diff changeset
   295
      }
89b0803404d7 added platform_file;
wenzelm
parents: 29140
diff changeset
   296
    }
45900
793bf5fa5fbf prefer sorting from Scala library;
wenzelm
parents: 45101
diff changeset
   297
    logics.toList.sorted
29152
89b0803404d7 added platform_file;
wenzelm
parents: 29140
diff changeset
   298
  }
29570
10fca82e688a IsabelleSystem: provide Symbol.Interpretation;
wenzelm
parents: 29180
diff changeset
   299
10fca82e688a IsabelleSystem: provide Symbol.Interpretation;
wenzelm
parents: 29180
diff changeset
   300
34024
0bae8702a7c5 basic support for IsabelleText fonts;
wenzelm
parents: 32450
diff changeset
   301
  /* fonts */
0bae8702a7c5 basic support for IsabelleText fonts;
wenzelm
parents: 32450
diff changeset
   302
43484
51b8043a8cf5 simplified/generalized ISABELLE_FONTS handling;
wenzelm
parents: 42124
diff changeset
   303
  def get_font(family: String = "IsabelleText", size: Int = 1, bold: Boolean = false): Font =
51b8043a8cf5 simplified/generalized ISABELLE_FONTS handling;
wenzelm
parents: 42124
diff changeset
   304
    new Font(family, if (bold) Font.BOLD else Font.PLAIN, size)
37367
8680677265c9 clarified font_family vs. font_family_default;
wenzelm
parents: 37132
diff changeset
   305
34044
09afb1d49fe7 slightly more robust and less ambitious version of install_fonts;
wenzelm
parents: 34027
diff changeset
   306
  def install_fonts()
09afb1d49fe7 slightly more robust and less ambitious version of install_fonts;
wenzelm
parents: 34027
diff changeset
   307
  {
37367
8680677265c9 clarified font_family vs. font_family_default;
wenzelm
parents: 37132
diff changeset
   308
    val ge = GraphicsEnvironment.getLocalGraphicsEnvironment()
43669
9d34288e9351 Path.split convenience;
wenzelm
parents: 43664
diff changeset
   309
    for (font <- Path.split(getenv_strict("ISABELLE_FONTS")))
9d34288e9351 Path.split convenience;
wenzelm
parents: 43664
diff changeset
   310
      ge.registerFont(Font.createFont(Font.TRUETYPE_FONT, platform_file(font)))
34024
0bae8702a7c5 basic support for IsabelleText fonts;
wenzelm
parents: 32450
diff changeset
   311
  }
27919
1eb8a3902d49 Isabelle system support.
wenzelm
parents:
diff changeset
   312
}