src/Pure/library.scala
author wenzelm
Tue, 14 May 2013 15:40:18 +0200
changeset 51983 32692ce4c61a
parent 51981 a8ffd3692f57
child 52444 2cfe6656d6d6
permissions -rw-r--r--
more frugal line termination, to cope with huge log files (see also 016cb7d8f297);
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
34136
3dcb46ae6185 added basic library -- Scala version;
wenzelm
parents:
diff changeset
     1
/*  Title:      Pure/library.scala
45673
cd41e3903fbf separate compilation of PIDE vs. Pure sources, which enables independent Scala library;
wenzelm
parents: 45667
diff changeset
     2
    Module:     PIDE
34136
3dcb46ae6185 added basic library -- Scala version;
wenzelm
parents:
diff changeset
     3
    Author:     Makarius
3dcb46ae6185 added basic library -- Scala version;
wenzelm
parents:
diff changeset
     4
3dcb46ae6185 added basic library -- Scala version;
wenzelm
parents:
diff changeset
     5
Basic library.
3dcb46ae6185 added basic library -- Scala version;
wenzelm
parents:
diff changeset
     6
*/
3dcb46ae6185 added basic library -- Scala version;
wenzelm
parents:
diff changeset
     7
3dcb46ae6185 added basic library -- Scala version;
wenzelm
parents:
diff changeset
     8
package isabelle
3dcb46ae6185 added basic library -- Scala version;
wenzelm
parents:
diff changeset
     9
38258
dd7dcb9b2637 added Library.thread_actor -- thread as actor;
wenzelm
parents: 38232
diff changeset
    10
51981
a8ffd3692f57 more scalable Library.separate -- NB: JVM has tiny fixed-size stack;
wenzelm
parents: 51616
diff changeset
    11
import scala.collection.mutable
a8ffd3692f57 more scalable Library.separate -- NB: JVM has tiny fixed-size stack;
wenzelm
parents: 51616
diff changeset
    12
49245
cb70157293c0 manage Isabelle/jEdit options as Isabelle/Scala options (with persistent preferences);
wenzelm
parents: 48996
diff changeset
    13
import java.util.Locale
50414
e17a1f179bb0 explore theory_body_files via future, for improved performance;
wenzelm
parents: 50299
diff changeset
    14
import java.util.concurrent.{Future => JFuture, TimeUnit}
37018
39f4cce5a22c added somewhat generic zoom box;
wenzelm
parents: 36791
diff changeset
    15
39f4cce5a22c added somewhat generic zoom box;
wenzelm
parents: 36791
diff changeset
    16
34136
3dcb46ae6185 added basic library -- Scala version;
wenzelm
parents:
diff changeset
    17
object Library
3dcb46ae6185 added basic library -- Scala version;
wenzelm
parents:
diff changeset
    18
{
43652
dcd0b667f73d pervasive Basic_Library in Scala;
wenzelm
parents: 43598
diff changeset
    19
  /* user errors */
dcd0b667f73d pervasive Basic_Library in Scala;
wenzelm
parents: 43598
diff changeset
    20
dcd0b667f73d pervasive Basic_Library in Scala;
wenzelm
parents: 43598
diff changeset
    21
  object ERROR
dcd0b667f73d pervasive Basic_Library in Scala;
wenzelm
parents: 43598
diff changeset
    22
  {
dcd0b667f73d pervasive Basic_Library in Scala;
wenzelm
parents: 43598
diff changeset
    23
    def apply(message: String): Throwable = new RuntimeException(message)
48479
819f7a5f3e7f more general notion of user ERROR (cf. 44f56fe01528);
wenzelm
parents: 48425
diff changeset
    24
    def unapply(exn: Throwable): Option[String] = Exn.user_message(exn)
43652
dcd0b667f73d pervasive Basic_Library in Scala;
wenzelm
parents: 43598
diff changeset
    25
  }
dcd0b667f73d pervasive Basic_Library in Scala;
wenzelm
parents: 43598
diff changeset
    26
dcd0b667f73d pervasive Basic_Library in Scala;
wenzelm
parents: 43598
diff changeset
    27
  def error(message: String): Nothing = throw ERROR(message)
dcd0b667f73d pervasive Basic_Library in Scala;
wenzelm
parents: 43598
diff changeset
    28
dcd0b667f73d pervasive Basic_Library in Scala;
wenzelm
parents: 43598
diff changeset
    29
  def cat_error(msg1: String, msg2: String): Nothing =
dcd0b667f73d pervasive Basic_Library in Scala;
wenzelm
parents: 43598
diff changeset
    30
    if (msg1 == "") error(msg1)
dcd0b667f73d pervasive Basic_Library in Scala;
wenzelm
parents: 43598
diff changeset
    31
    else error(msg1 + "\n" + msg2)
dcd0b667f73d pervasive Basic_Library in Scala;
wenzelm
parents: 43598
diff changeset
    32
dcd0b667f73d pervasive Basic_Library in Scala;
wenzelm
parents: 43598
diff changeset
    33
48996
a8bad1369ada clarified separated_chunks vs. space_explode;
wenzelm
parents: 48479
diff changeset
    34
  /* separated chunks */
36688
321d392ab12e added separate;
wenzelm
parents: 36685
diff changeset
    35
321d392ab12e added separate;
wenzelm
parents: 36685
diff changeset
    36
  def separate[A](s: A, list: List[A]): List[A] =
51981
a8ffd3692f57 more scalable Library.separate -- NB: JVM has tiny fixed-size stack;
wenzelm
parents: 51616
diff changeset
    37
  {
a8ffd3692f57 more scalable Library.separate -- NB: JVM has tiny fixed-size stack;
wenzelm
parents: 51616
diff changeset
    38
    val result = new mutable.ListBuffer[A]
a8ffd3692f57 more scalable Library.separate -- NB: JVM has tiny fixed-size stack;
wenzelm
parents: 51616
diff changeset
    39
    var first = true
a8ffd3692f57 more scalable Library.separate -- NB: JVM has tiny fixed-size stack;
wenzelm
parents: 51616
diff changeset
    40
    for (x <- list) {
a8ffd3692f57 more scalable Library.separate -- NB: JVM has tiny fixed-size stack;
wenzelm
parents: 51616
diff changeset
    41
      if (first) {
a8ffd3692f57 more scalable Library.separate -- NB: JVM has tiny fixed-size stack;
wenzelm
parents: 51616
diff changeset
    42
        first = false
a8ffd3692f57 more scalable Library.separate -- NB: JVM has tiny fixed-size stack;
wenzelm
parents: 51616
diff changeset
    43
        result += x
a8ffd3692f57 more scalable Library.separate -- NB: JVM has tiny fixed-size stack;
wenzelm
parents: 51616
diff changeset
    44
      }
a8ffd3692f57 more scalable Library.separate -- NB: JVM has tiny fixed-size stack;
wenzelm
parents: 51616
diff changeset
    45
      else {
a8ffd3692f57 more scalable Library.separate -- NB: JVM has tiny fixed-size stack;
wenzelm
parents: 51616
diff changeset
    46
        result += s
a8ffd3692f57 more scalable Library.separate -- NB: JVM has tiny fixed-size stack;
wenzelm
parents: 51616
diff changeset
    47
        result += x
a8ffd3692f57 more scalable Library.separate -- NB: JVM has tiny fixed-size stack;
wenzelm
parents: 51616
diff changeset
    48
      }
36688
321d392ab12e added separate;
wenzelm
parents: 36685
diff changeset
    49
    }
51981
a8ffd3692f57 more scalable Library.separate -- NB: JVM has tiny fixed-size stack;
wenzelm
parents: 51616
diff changeset
    50
    result.toList
a8ffd3692f57 more scalable Library.separate -- NB: JVM has tiny fixed-size stack;
wenzelm
parents: 51616
diff changeset
    51
  }
36688
321d392ab12e added separate;
wenzelm
parents: 36685
diff changeset
    52
48996
a8bad1369ada clarified separated_chunks vs. space_explode;
wenzelm
parents: 48479
diff changeset
    53
  def separated_chunks(sep: Char, source: CharSequence): Iterator[CharSequence] =
a8bad1369ada clarified separated_chunks vs. space_explode;
wenzelm
parents: 48479
diff changeset
    54
    new Iterator[CharSequence] {
a8bad1369ada clarified separated_chunks vs. space_explode;
wenzelm
parents: 48479
diff changeset
    55
      private val end = source.length
a8bad1369ada clarified separated_chunks vs. space_explode;
wenzelm
parents: 48479
diff changeset
    56
      private def next_chunk(i: Int): Option[(CharSequence, Int)] =
a8bad1369ada clarified separated_chunks vs. space_explode;
wenzelm
parents: 48479
diff changeset
    57
      {
a8bad1369ada clarified separated_chunks vs. space_explode;
wenzelm
parents: 48479
diff changeset
    58
        if (i < end) {
a8bad1369ada clarified separated_chunks vs. space_explode;
wenzelm
parents: 48479
diff changeset
    59
          var j = i; do j += 1 while (j < end && source.charAt(j) != sep)
a8bad1369ada clarified separated_chunks vs. space_explode;
wenzelm
parents: 48479
diff changeset
    60
          Some((source.subSequence(i + 1, j), j))
a8bad1369ada clarified separated_chunks vs. space_explode;
wenzelm
parents: 48479
diff changeset
    61
        }
a8bad1369ada clarified separated_chunks vs. space_explode;
wenzelm
parents: 48479
diff changeset
    62
        else None
43598
826ddd91ae2b basic operations on lists and strings;
wenzelm
parents: 43442
diff changeset
    63
      }
48996
a8bad1369ada clarified separated_chunks vs. space_explode;
wenzelm
parents: 48479
diff changeset
    64
      private var state: Option[(CharSequence, Int)] = if (end == 0) None else next_chunk(-1)
a8bad1369ada clarified separated_chunks vs. space_explode;
wenzelm
parents: 48479
diff changeset
    65
a8bad1369ada clarified separated_chunks vs. space_explode;
wenzelm
parents: 48479
diff changeset
    66
      def hasNext(): Boolean = state.isDefined
a8bad1369ada clarified separated_chunks vs. space_explode;
wenzelm
parents: 48479
diff changeset
    67
      def next(): CharSequence =
a8bad1369ada clarified separated_chunks vs. space_explode;
wenzelm
parents: 48479
diff changeset
    68
        state match {
a8bad1369ada clarified separated_chunks vs. space_explode;
wenzelm
parents: 48479
diff changeset
    69
          case Some((s, i)) => { state = next_chunk(i); s }
a8bad1369ada clarified separated_chunks vs. space_explode;
wenzelm
parents: 48479
diff changeset
    70
          case None => Iterator.empty.next()
a8bad1369ada clarified separated_chunks vs. space_explode;
wenzelm
parents: 48479
diff changeset
    71
        }
43598
826ddd91ae2b basic operations on lists and strings;
wenzelm
parents: 43442
diff changeset
    72
    }
826ddd91ae2b basic operations on lists and strings;
wenzelm
parents: 43442
diff changeset
    73
48996
a8bad1369ada clarified separated_chunks vs. space_explode;
wenzelm
parents: 48479
diff changeset
    74
  def space_explode(sep: Char, str: String): List[String] =
a8bad1369ada clarified separated_chunks vs. space_explode;
wenzelm
parents: 48479
diff changeset
    75
    separated_chunks(sep, str).map(_.toString).toList
a8bad1369ada clarified separated_chunks vs. space_explode;
wenzelm
parents: 48479
diff changeset
    76
a8bad1369ada clarified separated_chunks vs. space_explode;
wenzelm
parents: 48479
diff changeset
    77
a8bad1369ada clarified separated_chunks vs. space_explode;
wenzelm
parents: 48479
diff changeset
    78
  /* lines */
a8bad1369ada clarified separated_chunks vs. space_explode;
wenzelm
parents: 48479
diff changeset
    79
51983
32692ce4c61a more frugal line termination, to cope with huge log files (see also 016cb7d8f297);
wenzelm
parents: 51981
diff changeset
    80
  def terminate_lines(lines: Iterable[CharSequence]): Iterable[CharSequence] =
32692ce4c61a more frugal line termination, to cope with huge log files (see also 016cb7d8f297);
wenzelm
parents: 51981
diff changeset
    81
    new Iterable[CharSequence] {
32692ce4c61a more frugal line termination, to cope with huge log files (see also 016cb7d8f297);
wenzelm
parents: 51981
diff changeset
    82
      def iterator: Iterator[CharSequence] =
32692ce4c61a more frugal line termination, to cope with huge log files (see also 016cb7d8f297);
wenzelm
parents: 51981
diff changeset
    83
        lines.iterator.map(line => new Line_Termination(line))
32692ce4c61a more frugal line termination, to cope with huge log files (see also 016cb7d8f297);
wenzelm
parents: 51981
diff changeset
    84
    }
32692ce4c61a more frugal line termination, to cope with huge log files (see also 016cb7d8f297);
wenzelm
parents: 51981
diff changeset
    85
48996
a8bad1369ada clarified separated_chunks vs. space_explode;
wenzelm
parents: 48479
diff changeset
    86
  def cat_lines(lines: TraversableOnce[String]): String = lines.mkString("\n")
a8bad1369ada clarified separated_chunks vs. space_explode;
wenzelm
parents: 48479
diff changeset
    87
43670
7f933761764b prefer space_explode/split_lines as in Isabelle/ML;
wenzelm
parents: 43652
diff changeset
    88
  def split_lines(str: String): List[String] = space_explode('\n', str)
7f933761764b prefer space_explode/split_lines as in Isabelle/ML;
wenzelm
parents: 43652
diff changeset
    89
48996
a8bad1369ada clarified separated_chunks vs. space_explode;
wenzelm
parents: 48479
diff changeset
    90
  def first_line(source: CharSequence): String =
a8bad1369ada clarified separated_chunks vs. space_explode;
wenzelm
parents: 48479
diff changeset
    91
  {
a8bad1369ada clarified separated_chunks vs. space_explode;
wenzelm
parents: 48479
diff changeset
    92
    val lines = separated_chunks('\n', source)
a8bad1369ada clarified separated_chunks vs. space_explode;
wenzelm
parents: 48479
diff changeset
    93
    if (lines.hasNext) lines.next.toString
a8bad1369ada clarified separated_chunks vs. space_explode;
wenzelm
parents: 48479
diff changeset
    94
    else ""
a8bad1369ada clarified separated_chunks vs. space_explode;
wenzelm
parents: 48479
diff changeset
    95
  }
a8bad1369ada clarified separated_chunks vs. space_explode;
wenzelm
parents: 48479
diff changeset
    96
50847
78c40f1cc9b3 tuned signature;
wenzelm
parents: 50845
diff changeset
    97
78c40f1cc9b3 tuned signature;
wenzelm
parents: 50845
diff changeset
    98
  /* strings */
78c40f1cc9b3 tuned signature;
wenzelm
parents: 50845
diff changeset
    99
50299
f70b3712040f renamed dockable "Prover Session" to "Theories";
wenzelm
parents: 49470
diff changeset
   100
  def lowercase(str: String): String = str.toLowerCase(Locale.ENGLISH)
f70b3712040f renamed dockable "Prover Session" to "Theories";
wenzelm
parents: 49470
diff changeset
   101
  def uppercase(str: String): String = str.toUpperCase(Locale.ENGLISH)
f70b3712040f renamed dockable "Prover Session" to "Theories";
wenzelm
parents: 49470
diff changeset
   102
49245
cb70157293c0 manage Isabelle/jEdit options as Isabelle/Scala options (with persistent preferences);
wenzelm
parents: 48996
diff changeset
   103
  def capitalize(str: String): String =
cb70157293c0 manage Isabelle/jEdit options as Isabelle/Scala options (with persistent preferences);
wenzelm
parents: 48996
diff changeset
   104
    if (str.length == 0) str
50299
f70b3712040f renamed dockable "Prover Session" to "Theories";
wenzelm
parents: 49470
diff changeset
   105
    else uppercase(str.substring(0, 1)) + str.substring(1)
49245
cb70157293c0 manage Isabelle/jEdit options as Isabelle/Scala options (with persistent preferences);
wenzelm
parents: 48996
diff changeset
   106
50847
78c40f1cc9b3 tuned signature;
wenzelm
parents: 50845
diff changeset
   107
  def try_unprefix(prfx: String, s: String): Option[String] =
78c40f1cc9b3 tuned signature;
wenzelm
parents: 50845
diff changeset
   108
    if (s.startsWith(prfx)) Some(s.substring(prfx.length)) else None
78c40f1cc9b3 tuned signature;
wenzelm
parents: 50845
diff changeset
   109
43598
826ddd91ae2b basic operations on lists and strings;
wenzelm
parents: 43442
diff changeset
   110
48996
a8bad1369ada clarified separated_chunks vs. space_explode;
wenzelm
parents: 48479
diff changeset
   111
  /* quote */
46196
805de058722b added cat_lines convenience;
wenzelm
parents: 45900
diff changeset
   112
43598
826ddd91ae2b basic operations on lists and strings;
wenzelm
parents: 43442
diff changeset
   113
  def quote(s: String): String = "\"" + s + "\""
826ddd91ae2b basic operations on lists and strings;
wenzelm
parents: 43442
diff changeset
   114
  def commas(ss: Iterable[String]): String = ss.iterator.mkString(", ")
48362
c3192ccb0ff4 proper commas_quote;
wenzelm
parents: 48345
diff changeset
   115
  def commas_quote(ss: Iterable[String]): String = ss.iterator.map(quote).mkString(", ")
43598
826ddd91ae2b basic operations on lists and strings;
wenzelm
parents: 43442
diff changeset
   116
36688
321d392ab12e added separate;
wenzelm
parents: 36685
diff changeset
   117
51983
32692ce4c61a more frugal line termination, to cope with huge log files (see also 016cb7d8f297);
wenzelm
parents: 51981
diff changeset
   118
  /* CharSequence */
34141
297b2149077d simiplified result of keyword parser (again);
wenzelm
parents: 34136
diff changeset
   119
297b2149077d simiplified result of keyword parser (again);
wenzelm
parents: 34136
diff changeset
   120
  class Reverse(text: CharSequence, start: Int, end: Int) extends CharSequence
297b2149077d simiplified result of keyword parser (again);
wenzelm
parents: 34136
diff changeset
   121
  {
297b2149077d simiplified result of keyword parser (again);
wenzelm
parents: 34136
diff changeset
   122
    require(0 <= start && start <= end && end <= text.length)
297b2149077d simiplified result of keyword parser (again);
wenzelm
parents: 34136
diff changeset
   123
297b2149077d simiplified result of keyword parser (again);
wenzelm
parents: 34136
diff changeset
   124
    def this(text: CharSequence) = this(text, 0, text.length)
297b2149077d simiplified result of keyword parser (again);
wenzelm
parents: 34136
diff changeset
   125
297b2149077d simiplified result of keyword parser (again);
wenzelm
parents: 34136
diff changeset
   126
    def length: Int = end - start
297b2149077d simiplified result of keyword parser (again);
wenzelm
parents: 34136
diff changeset
   127
    def charAt(i: Int): Char = text.charAt(end - i - 1)
297b2149077d simiplified result of keyword parser (again);
wenzelm
parents: 34136
diff changeset
   128
297b2149077d simiplified result of keyword parser (again);
wenzelm
parents: 34136
diff changeset
   129
    def subSequence(i: Int, j: Int): CharSequence =
297b2149077d simiplified result of keyword parser (again);
wenzelm
parents: 34136
diff changeset
   130
      if (0 <= i && i <= j && j <= length) new Reverse(text, end - j, end - i)
297b2149077d simiplified result of keyword parser (again);
wenzelm
parents: 34136
diff changeset
   131
      else throw new IndexOutOfBoundsException
297b2149077d simiplified result of keyword parser (again);
wenzelm
parents: 34136
diff changeset
   132
297b2149077d simiplified result of keyword parser (again);
wenzelm
parents: 34136
diff changeset
   133
    override def toString: String =
297b2149077d simiplified result of keyword parser (again);
wenzelm
parents: 34136
diff changeset
   134
    {
297b2149077d simiplified result of keyword parser (again);
wenzelm
parents: 34136
diff changeset
   135
      val buf = new StringBuilder(length)
297b2149077d simiplified result of keyword parser (again);
wenzelm
parents: 34136
diff changeset
   136
      for (i <- 0 until length)
297b2149077d simiplified result of keyword parser (again);
wenzelm
parents: 34136
diff changeset
   137
        buf.append(charAt(i))
297b2149077d simiplified result of keyword parser (again);
wenzelm
parents: 34136
diff changeset
   138
      buf.toString
297b2149077d simiplified result of keyword parser (again);
wenzelm
parents: 34136
diff changeset
   139
    }
297b2149077d simiplified result of keyword parser (again);
wenzelm
parents: 34136
diff changeset
   140
  }
297b2149077d simiplified result of keyword parser (again);
wenzelm
parents: 34136
diff changeset
   141
51983
32692ce4c61a more frugal line termination, to cope with huge log files (see also 016cb7d8f297);
wenzelm
parents: 51981
diff changeset
   142
  class Line_Termination(text: CharSequence) extends CharSequence
32692ce4c61a more frugal line termination, to cope with huge log files (see also 016cb7d8f297);
wenzelm
parents: 51981
diff changeset
   143
  {
32692ce4c61a more frugal line termination, to cope with huge log files (see also 016cb7d8f297);
wenzelm
parents: 51981
diff changeset
   144
    def length: Int = text.length + 1
32692ce4c61a more frugal line termination, to cope with huge log files (see also 016cb7d8f297);
wenzelm
parents: 51981
diff changeset
   145
    def charAt(i: Int): Char = if (i == text.length) '\n' else text.charAt(i)
32692ce4c61a more frugal line termination, to cope with huge log files (see also 016cb7d8f297);
wenzelm
parents: 51981
diff changeset
   146
    def subSequence(i: Int, j: Int): CharSequence =
32692ce4c61a more frugal line termination, to cope with huge log files (see also 016cb7d8f297);
wenzelm
parents: 51981
diff changeset
   147
      if (j == text.length + 1) new Line_Termination(text.subSequence(i, j - 1))
32692ce4c61a more frugal line termination, to cope with huge log files (see also 016cb7d8f297);
wenzelm
parents: 51981
diff changeset
   148
      else text.subSequence(i, j)
32692ce4c61a more frugal line termination, to cope with huge log files (see also 016cb7d8f297);
wenzelm
parents: 51981
diff changeset
   149
    override def toString: String = text.toString + "\n"
32692ce4c61a more frugal line termination, to cope with huge log files (see also 016cb7d8f297);
wenzelm
parents: 51981
diff changeset
   150
  }
32692ce4c61a more frugal line termination, to cope with huge log files (see also 016cb7d8f297);
wenzelm
parents: 51981
diff changeset
   151
34141
297b2149077d simiplified result of keyword parser (again);
wenzelm
parents: 34136
diff changeset
   152
50414
e17a1f179bb0 explore theory_body_files via future, for improved performance;
wenzelm
parents: 50299
diff changeset
   153
  /* Java futures */
e17a1f179bb0 explore theory_body_files via future, for improved performance;
wenzelm
parents: 50299
diff changeset
   154
e17a1f179bb0 explore theory_body_files via future, for improved performance;
wenzelm
parents: 50299
diff changeset
   155
  def future_value[A](x: A) = new JFuture[A]
e17a1f179bb0 explore theory_body_files via future, for improved performance;
wenzelm
parents: 50299
diff changeset
   156
  {
e17a1f179bb0 explore theory_body_files via future, for improved performance;
wenzelm
parents: 50299
diff changeset
   157
    def cancel(may_interrupt: Boolean): Boolean = false
e17a1f179bb0 explore theory_body_files via future, for improved performance;
wenzelm
parents: 50299
diff changeset
   158
    def isCancelled(): Boolean = false
e17a1f179bb0 explore theory_body_files via future, for improved performance;
wenzelm
parents: 50299
diff changeset
   159
    def isDone(): Boolean = true
e17a1f179bb0 explore theory_body_files via future, for improved performance;
wenzelm
parents: 50299
diff changeset
   160
    def get(): A = x
e17a1f179bb0 explore theory_body_files via future, for improved performance;
wenzelm
parents: 50299
diff changeset
   161
    def get(timeout: Long, time_unit: TimeUnit): A = x
e17a1f179bb0 explore theory_body_files via future, for improved performance;
wenzelm
parents: 50299
diff changeset
   162
  }
34136
3dcb46ae6185 added basic library -- Scala version;
wenzelm
parents:
diff changeset
   163
}
43652
dcd0b667f73d pervasive Basic_Library in Scala;
wenzelm
parents: 43598
diff changeset
   164
dcd0b667f73d pervasive Basic_Library in Scala;
wenzelm
parents: 43598
diff changeset
   165
dcd0b667f73d pervasive Basic_Library in Scala;
wenzelm
parents: 43598
diff changeset
   166
class Basic_Library
dcd0b667f73d pervasive Basic_Library in Scala;
wenzelm
parents: 43598
diff changeset
   167
{
43670
7f933761764b prefer space_explode/split_lines as in Isabelle/ML;
wenzelm
parents: 43652
diff changeset
   168
  val ERROR = Library.ERROR
7f933761764b prefer space_explode/split_lines as in Isabelle/ML;
wenzelm
parents: 43652
diff changeset
   169
  val error = Library.error _
7f933761764b prefer space_explode/split_lines as in Isabelle/ML;
wenzelm
parents: 43652
diff changeset
   170
  val cat_error = Library.cat_error _
7f933761764b prefer space_explode/split_lines as in Isabelle/ML;
wenzelm
parents: 43652
diff changeset
   171
43652
dcd0b667f73d pervasive Basic_Library in Scala;
wenzelm
parents: 43598
diff changeset
   172
  val space_explode = Library.space_explode _
43670
7f933761764b prefer space_explode/split_lines as in Isabelle/ML;
wenzelm
parents: 43652
diff changeset
   173
  val split_lines = Library.split_lines _
46196
805de058722b added cat_lines convenience;
wenzelm
parents: 45900
diff changeset
   174
  val cat_lines = Library.cat_lines _
43652
dcd0b667f73d pervasive Basic_Library in Scala;
wenzelm
parents: 43598
diff changeset
   175
  val quote = Library.quote _
dcd0b667f73d pervasive Basic_Library in Scala;
wenzelm
parents: 43598
diff changeset
   176
  val commas = Library.commas _
dcd0b667f73d pervasive Basic_Library in Scala;
wenzelm
parents: 43598
diff changeset
   177
  val commas_quote = Library.commas_quote _
49470
ee564db2649b more management of Invoke_Scala tasks;
wenzelm
parents: 49245
diff changeset
   178
ee564db2649b more management of Invoke_Scala tasks;
wenzelm
parents: 49245
diff changeset
   179
ee564db2649b more management of Invoke_Scala tasks;
wenzelm
parents: 49245
diff changeset
   180
  /* parallel tasks */
ee564db2649b more management of Invoke_Scala tasks;
wenzelm
parents: 49245
diff changeset
   181
ee564db2649b more management of Invoke_Scala tasks;
wenzelm
parents: 49245
diff changeset
   182
  implicit def function_as_callable[A](f: () => A) =
ee564db2649b more management of Invoke_Scala tasks;
wenzelm
parents: 49245
diff changeset
   183
    new java.util.concurrent.Callable[A] { def call = f() }
ee564db2649b more management of Invoke_Scala tasks;
wenzelm
parents: 49245
diff changeset
   184
ee564db2649b more management of Invoke_Scala tasks;
wenzelm
parents: 49245
diff changeset
   185
  val default_thread_pool =
ee564db2649b more management of Invoke_Scala tasks;
wenzelm
parents: 49245
diff changeset
   186
    scala.collection.parallel.ThreadPoolTasks.defaultThreadPool
43652
dcd0b667f73d pervasive Basic_Library in Scala;
wenzelm
parents: 43598
diff changeset
   187
}