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