src/Pure/General/symbol.scala
author wenzelm
Mon, 25 Aug 2008 20:01:17 +0200
changeset 27993 6dd90ef9f927
parent 27939 41b1c0b769bf
child 28007 2d0c93291293
permissions -rw-r--r--
simplified exceptions: use plain error function / RuntimeException;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
27901
28083e9f8d1d Basic support for Isabelle symbols.
wenzelm
parents:
diff changeset
     1
/*  Title:      Pure/General/symbol.scala
28083e9f8d1d Basic support for Isabelle symbols.
wenzelm
parents:
diff changeset
     2
    ID:         $Id$
28083e9f8d1d Basic support for Isabelle symbols.
wenzelm
parents:
diff changeset
     3
    Author:     Makarius
28083e9f8d1d Basic support for Isabelle symbols.
wenzelm
parents:
diff changeset
     4
27924
8dd8b564faf5 tuned comments;
wenzelm
parents: 27923
diff changeset
     5
Detecting and recoding Isabelle symbols.
27901
28083e9f8d1d Basic support for Isabelle symbols.
wenzelm
parents:
diff changeset
     6
*/
28083e9f8d1d Basic support for Isabelle symbols.
wenzelm
parents:
diff changeset
     7
28083e9f8d1d Basic support for Isabelle symbols.
wenzelm
parents:
diff changeset
     8
package isabelle
28083e9f8d1d Basic support for Isabelle symbols.
wenzelm
parents:
diff changeset
     9
27937
fdf77e7be01a more robust pattern: look at longer matches first, added catch-all case;
wenzelm
parents: 27935
diff changeset
    10
import java.util.regex.Pattern
27918
85942d2036a0 reading symbol interpretation tables;
wenzelm
parents: 27905
diff changeset
    11
import java.io.File
85942d2036a0 reading symbol interpretation tables;
wenzelm
parents: 27905
diff changeset
    12
import scala.io.Source
27923
7ebe9d38743a use scala.collection.jcl.HashMap, which seems to be more efficient;
wenzelm
parents: 27918
diff changeset
    13
import scala.collection.jcl.HashMap
27901
28083e9f8d1d Basic support for Isabelle symbols.
wenzelm
parents:
diff changeset
    14
28083e9f8d1d Basic support for Isabelle symbols.
wenzelm
parents:
diff changeset
    15
28083e9f8d1d Basic support for Isabelle symbols.
wenzelm
parents:
diff changeset
    16
object Symbol {
28083e9f8d1d Basic support for Isabelle symbols.
wenzelm
parents:
diff changeset
    17
27924
8dd8b564faf5 tuned comments;
wenzelm
parents: 27923
diff changeset
    18
  /** Symbol regexps **/
27901
28083e9f8d1d Basic support for Isabelle symbols.
wenzelm
parents:
diff changeset
    19
28083e9f8d1d Basic support for Isabelle symbols.
wenzelm
parents:
diff changeset
    20
  private def compile(s: String) =
28083e9f8d1d Basic support for Isabelle symbols.
wenzelm
parents:
diff changeset
    21
    Pattern.compile(s, Pattern.COMMENTS | Pattern.DOTALL)
28083e9f8d1d Basic support for Isabelle symbols.
wenzelm
parents:
diff changeset
    22
27937
fdf77e7be01a more robust pattern: look at longer matches first, added catch-all case;
wenzelm
parents: 27935
diff changeset
    23
  private val plain_pattern = compile(""" [^\\ \ud800-\udfff] | [\ud800-\udbff][\udc00-\udfff] """)
27924
8dd8b564faf5 tuned comments;
wenzelm
parents: 27923
diff changeset
    24
27937
fdf77e7be01a more robust pattern: look at longer matches first, added catch-all case;
wenzelm
parents: 27935
diff changeset
    25
  private val symbol_pattern = compile(""" \\ \\? < (?:
27924
8dd8b564faf5 tuned comments;
wenzelm
parents: 27923
diff changeset
    26
      \^? [A-Za-z][A-Za-z0-9_']* |
8dd8b564faf5 tuned comments;
wenzelm
parents: 27923
diff changeset
    27
      \^raw: [\x20-\x7e\u0100-\uffff && [^.>]]* ) >""")
8dd8b564faf5 tuned comments;
wenzelm
parents: 27923
diff changeset
    28
27937
fdf77e7be01a more robust pattern: look at longer matches first, added catch-all case;
wenzelm
parents: 27935
diff changeset
    29
  private val bad_symbol_pattern = compile("(?!" + symbol_pattern + ")" +
27924
8dd8b564faf5 tuned comments;
wenzelm
parents: 27923
diff changeset
    30
    """ \\ \\? < (?: (?! \s | [\"`\\] | \(\* | \*\) | \{\* | \*\} ) . )*""")
8dd8b564faf5 tuned comments;
wenzelm
parents: 27923
diff changeset
    31
27939
41b1c0b769bf pattern: proper "." not "[.]"!
wenzelm
parents: 27938
diff changeset
    32
  // total pattern
41b1c0b769bf pattern: proper "." not "[.]"!
wenzelm
parents: 27938
diff changeset
    33
  val pattern = compile(plain_pattern + "|" + symbol_pattern + "|" + bad_symbol_pattern + "| .")
27937
fdf77e7be01a more robust pattern: look at longer matches first, added catch-all case;
wenzelm
parents: 27935
diff changeset
    34
fdf77e7be01a more robust pattern: look at longer matches first, added catch-all case;
wenzelm
parents: 27935
diff changeset
    35
fdf77e7be01a more robust pattern: look at longer matches first, added catch-all case;
wenzelm
parents: 27935
diff changeset
    36
fdf77e7be01a more robust pattern: look at longer matches first, added catch-all case;
wenzelm
parents: 27935
diff changeset
    37
  /** Recoding **/
fdf77e7be01a more robust pattern: look at longer matches first, added catch-all case;
wenzelm
parents: 27935
diff changeset
    38
fdf77e7be01a more robust pattern: look at longer matches first, added catch-all case;
wenzelm
parents: 27935
diff changeset
    39
  private class Recoder(list: List[(String, String)]) {
fdf77e7be01a more robust pattern: look at longer matches first, added catch-all case;
wenzelm
parents: 27935
diff changeset
    40
    private val (min, max) = {
fdf77e7be01a more robust pattern: look at longer matches first, added catch-all case;
wenzelm
parents: 27935
diff changeset
    41
      var min = '\uffff'
fdf77e7be01a more robust pattern: look at longer matches first, added catch-all case;
wenzelm
parents: 27935
diff changeset
    42
      var max = '\u0000'
fdf77e7be01a more robust pattern: look at longer matches first, added catch-all case;
wenzelm
parents: 27935
diff changeset
    43
      for ((x, _) <- list) {
fdf77e7be01a more robust pattern: look at longer matches first, added catch-all case;
wenzelm
parents: 27935
diff changeset
    44
        val c = x(0)
fdf77e7be01a more robust pattern: look at longer matches first, added catch-all case;
wenzelm
parents: 27935
diff changeset
    45
        if (c < min) min = c
fdf77e7be01a more robust pattern: look at longer matches first, added catch-all case;
wenzelm
parents: 27935
diff changeset
    46
        if (c > max) max = c
fdf77e7be01a more robust pattern: look at longer matches first, added catch-all case;
wenzelm
parents: 27935
diff changeset
    47
      }
fdf77e7be01a more robust pattern: look at longer matches first, added catch-all case;
wenzelm
parents: 27935
diff changeset
    48
      (min, max)
fdf77e7be01a more robust pattern: look at longer matches first, added catch-all case;
wenzelm
parents: 27935
diff changeset
    49
    }
fdf77e7be01a more robust pattern: look at longer matches first, added catch-all case;
wenzelm
parents: 27935
diff changeset
    50
    private val table = {
fdf77e7be01a more robust pattern: look at longer matches first, added catch-all case;
wenzelm
parents: 27935
diff changeset
    51
      val table = new HashMap[String, String]
fdf77e7be01a more robust pattern: look at longer matches first, added catch-all case;
wenzelm
parents: 27935
diff changeset
    52
      for ((x, y) <- list) table + (x -> y)
fdf77e7be01a more robust pattern: look at longer matches first, added catch-all case;
wenzelm
parents: 27935
diff changeset
    53
      table
fdf77e7be01a more robust pattern: look at longer matches first, added catch-all case;
wenzelm
parents: 27935
diff changeset
    54
    }
fdf77e7be01a more robust pattern: look at longer matches first, added catch-all case;
wenzelm
parents: 27935
diff changeset
    55
    def recode(text: String) = {
fdf77e7be01a more robust pattern: look at longer matches first, added catch-all case;
wenzelm
parents: 27935
diff changeset
    56
      val len = text.length
fdf77e7be01a more robust pattern: look at longer matches first, added catch-all case;
wenzelm
parents: 27935
diff changeset
    57
      val matcher = pattern.matcher(text)
fdf77e7be01a more robust pattern: look at longer matches first, added catch-all case;
wenzelm
parents: 27935
diff changeset
    58
      val result = new StringBuilder(len)
fdf77e7be01a more robust pattern: look at longer matches first, added catch-all case;
wenzelm
parents: 27935
diff changeset
    59
      var i = 0
fdf77e7be01a more robust pattern: look at longer matches first, added catch-all case;
wenzelm
parents: 27935
diff changeset
    60
      while (i < len) {
fdf77e7be01a more robust pattern: look at longer matches first, added catch-all case;
wenzelm
parents: 27935
diff changeset
    61
        val c = text(i)
fdf77e7be01a more robust pattern: look at longer matches first, added catch-all case;
wenzelm
parents: 27935
diff changeset
    62
        if (min <= c && c <= max) {
27939
41b1c0b769bf pattern: proper "." not "[.]"!
wenzelm
parents: 27938
diff changeset
    63
          matcher.region(i, len)
41b1c0b769bf pattern: proper "." not "[.]"!
wenzelm
parents: 27938
diff changeset
    64
          matcher.lookingAt
27938
3d5b12f23f15 recode: proper result for unmatched symbols;
wenzelm
parents: 27937
diff changeset
    65
          val x = matcher.group
3d5b12f23f15 recode: proper result for unmatched symbols;
wenzelm
parents: 27937
diff changeset
    66
          table.get(x) match {
27937
fdf77e7be01a more robust pattern: look at longer matches first, added catch-all case;
wenzelm
parents: 27935
diff changeset
    67
            case Some(y) => result.append(y)
27938
3d5b12f23f15 recode: proper result for unmatched symbols;
wenzelm
parents: 27937
diff changeset
    68
            case None => result.append(x)
27937
fdf77e7be01a more robust pattern: look at longer matches first, added catch-all case;
wenzelm
parents: 27935
diff changeset
    69
          }
fdf77e7be01a more robust pattern: look at longer matches first, added catch-all case;
wenzelm
parents: 27935
diff changeset
    70
          i = matcher.end
fdf77e7be01a more robust pattern: look at longer matches first, added catch-all case;
wenzelm
parents: 27935
diff changeset
    71
        }
fdf77e7be01a more robust pattern: look at longer matches first, added catch-all case;
wenzelm
parents: 27935
diff changeset
    72
        else { result.append(c); i += 1 }
fdf77e7be01a more robust pattern: look at longer matches first, added catch-all case;
wenzelm
parents: 27935
diff changeset
    73
      }
fdf77e7be01a more robust pattern: look at longer matches first, added catch-all case;
wenzelm
parents: 27935
diff changeset
    74
      result.toString
fdf77e7be01a more robust pattern: look at longer matches first, added catch-all case;
wenzelm
parents: 27935
diff changeset
    75
    }
fdf77e7be01a more robust pattern: look at longer matches first, added catch-all case;
wenzelm
parents: 27935
diff changeset
    76
  }
27924
8dd8b564faf5 tuned comments;
wenzelm
parents: 27923
diff changeset
    77
27918
85942d2036a0 reading symbol interpretation tables;
wenzelm
parents: 27905
diff changeset
    78
27923
7ebe9d38743a use scala.collection.jcl.HashMap, which seems to be more efficient;
wenzelm
parents: 27918
diff changeset
    79
27927
eb624bb54bc6 tuned Recoder;
wenzelm
parents: 27926
diff changeset
    80
  /** Symbol interpretation **/
eb624bb54bc6 tuned Recoder;
wenzelm
parents: 27926
diff changeset
    81
27923
7ebe9d38743a use scala.collection.jcl.HashMap, which seems to be more efficient;
wenzelm
parents: 27918
diff changeset
    82
  class Interpretation {
7ebe9d38743a use scala.collection.jcl.HashMap, which seems to be more efficient;
wenzelm
parents: 27918
diff changeset
    83
27924
8dd8b564faf5 tuned comments;
wenzelm
parents: 27923
diff changeset
    84
    private var symbols = new HashMap[String, HashMap[String, String]]
27926
308be7332e25 more private fields;
wenzelm
parents: 27924
diff changeset
    85
    private var decoder: Recoder = null
308be7332e25 more private fields;
wenzelm
parents: 27924
diff changeset
    86
    private var encoder: Recoder = null
27918
85942d2036a0 reading symbol interpretation tables;
wenzelm
parents: 27905
diff changeset
    87
27924
8dd8b564faf5 tuned comments;
wenzelm
parents: 27923
diff changeset
    88
    def decode(text: String) = decoder.recode(text)
8dd8b564faf5 tuned comments;
wenzelm
parents: 27923
diff changeset
    89
    def encode(text: String) = encoder.recode(text)
27923
7ebe9d38743a use scala.collection.jcl.HashMap, which seems to be more efficient;
wenzelm
parents: 27918
diff changeset
    90
27918
85942d2036a0 reading symbol interpretation tables;
wenzelm
parents: 27905
diff changeset
    91
27923
7ebe9d38743a use scala.collection.jcl.HashMap, which seems to be more efficient;
wenzelm
parents: 27918
diff changeset
    92
    /* read symbols */
7ebe9d38743a use scala.collection.jcl.HashMap, which seems to be more efficient;
wenzelm
parents: 27918
diff changeset
    93
7ebe9d38743a use scala.collection.jcl.HashMap, which seems to be more efficient;
wenzelm
parents: 27918
diff changeset
    94
    private val empty_pattern = compile(""" ^\s* (?: \#.* )? $ """)
7ebe9d38743a use scala.collection.jcl.HashMap, which seems to be more efficient;
wenzelm
parents: 27918
diff changeset
    95
    private val blank_pattern = compile(""" \s+ """)
7ebe9d38743a use scala.collection.jcl.HashMap, which seems to be more efficient;
wenzelm
parents: 27918
diff changeset
    96
    private val key_pattern = compile(""" (.+): """)
27918
85942d2036a0 reading symbol interpretation tables;
wenzelm
parents: 27905
diff changeset
    97
27923
7ebe9d38743a use scala.collection.jcl.HashMap, which seems to be more efficient;
wenzelm
parents: 27918
diff changeset
    98
    private def read_line(line: String) = {
27993
6dd90ef9f927 simplified exceptions: use plain error function / RuntimeException;
wenzelm
parents: 27939
diff changeset
    99
      def err() = error("Bad symbol specification (line " + line + ")")
27918
85942d2036a0 reading symbol interpretation tables;
wenzelm
parents: 27905
diff changeset
   100
27923
7ebe9d38743a use scala.collection.jcl.HashMap, which seems to be more efficient;
wenzelm
parents: 27918
diff changeset
   101
      def read_props(props: List[String], tab: HashMap[String, String]): Unit = {
27918
85942d2036a0 reading symbol interpretation tables;
wenzelm
parents: 27905
diff changeset
   102
        props match {
27923
7ebe9d38743a use scala.collection.jcl.HashMap, which seems to be more efficient;
wenzelm
parents: 27918
diff changeset
   103
          case Nil => ()
27918
85942d2036a0 reading symbol interpretation tables;
wenzelm
parents: 27905
diff changeset
   104
          case _ :: Nil => err()
85942d2036a0 reading symbol interpretation tables;
wenzelm
parents: 27905
diff changeset
   105
          case key :: value :: rest => {
85942d2036a0 reading symbol interpretation tables;
wenzelm
parents: 27905
diff changeset
   106
            val key_matcher = key_pattern.matcher(key)
27923
7ebe9d38743a use scala.collection.jcl.HashMap, which seems to be more efficient;
wenzelm
parents: 27918
diff changeset
   107
            if (key_matcher.matches) {
7ebe9d38743a use scala.collection.jcl.HashMap, which seems to be more efficient;
wenzelm
parents: 27918
diff changeset
   108
              tab + (key_matcher.group(1) -> value)
7ebe9d38743a use scala.collection.jcl.HashMap, which seems to be more efficient;
wenzelm
parents: 27918
diff changeset
   109
              read_props(rest, tab)
7ebe9d38743a use scala.collection.jcl.HashMap, which seems to be more efficient;
wenzelm
parents: 27918
diff changeset
   110
            }
27918
85942d2036a0 reading symbol interpretation tables;
wenzelm
parents: 27905
diff changeset
   111
            else err ()
85942d2036a0 reading symbol interpretation tables;
wenzelm
parents: 27905
diff changeset
   112
          }
85942d2036a0 reading symbol interpretation tables;
wenzelm
parents: 27905
diff changeset
   113
        }
85942d2036a0 reading symbol interpretation tables;
wenzelm
parents: 27905
diff changeset
   114
      }
85942d2036a0 reading symbol interpretation tables;
wenzelm
parents: 27905
diff changeset
   115
85942d2036a0 reading symbol interpretation tables;
wenzelm
parents: 27905
diff changeset
   116
      if (!empty_pattern.matcher(line).matches) {
85942d2036a0 reading symbol interpretation tables;
wenzelm
parents: 27905
diff changeset
   117
        blank_pattern.split(line).toList match {
85942d2036a0 reading symbol interpretation tables;
wenzelm
parents: 27905
diff changeset
   118
          case Nil => err()
27923
7ebe9d38743a use scala.collection.jcl.HashMap, which seems to be more efficient;
wenzelm
parents: 27918
diff changeset
   119
          case symbol :: props => {
7ebe9d38743a use scala.collection.jcl.HashMap, which seems to be more efficient;
wenzelm
parents: 27918
diff changeset
   120
            val tab = new HashMap[String, String]
7ebe9d38743a use scala.collection.jcl.HashMap, which seems to be more efficient;
wenzelm
parents: 27918
diff changeset
   121
            read_props(props, tab)
7ebe9d38743a use scala.collection.jcl.HashMap, which seems to be more efficient;
wenzelm
parents: 27918
diff changeset
   122
            symbols + (symbol -> tab)
7ebe9d38743a use scala.collection.jcl.HashMap, which seems to be more efficient;
wenzelm
parents: 27918
diff changeset
   123
          }
27918
85942d2036a0 reading symbol interpretation tables;
wenzelm
parents: 27905
diff changeset
   124
        }
85942d2036a0 reading symbol interpretation tables;
wenzelm
parents: 27905
diff changeset
   125
      }
85942d2036a0 reading symbol interpretation tables;
wenzelm
parents: 27905
diff changeset
   126
    }
85942d2036a0 reading symbol interpretation tables;
wenzelm
parents: 27905
diff changeset
   127
27935
68d40072e9e7 read_symbols: proper IsabelleSystem.platform_path;
wenzelm
parents: 27928
diff changeset
   128
    private def read_symbols(path: String) = {
68d40072e9e7 read_symbols: proper IsabelleSystem.platform_path;
wenzelm
parents: 27928
diff changeset
   129
      val file = new File(IsabelleSystem.platform_path(path))
27918
85942d2036a0 reading symbol interpretation tables;
wenzelm
parents: 27905
diff changeset
   130
      if (file.canRead) {
85942d2036a0 reading symbol interpretation tables;
wenzelm
parents: 27905
diff changeset
   131
        for (line <- Source.fromFile(file).getLines) read_line(line)
85942d2036a0 reading symbol interpretation tables;
wenzelm
parents: 27905
diff changeset
   132
      }
85942d2036a0 reading symbol interpretation tables;
wenzelm
parents: 27905
diff changeset
   133
    }
27923
7ebe9d38743a use scala.collection.jcl.HashMap, which seems to be more efficient;
wenzelm
parents: 27918
diff changeset
   134
7ebe9d38743a use scala.collection.jcl.HashMap, which seems to be more efficient;
wenzelm
parents: 27918
diff changeset
   135
7ebe9d38743a use scala.collection.jcl.HashMap, which seems to be more efficient;
wenzelm
parents: 27918
diff changeset
   136
    /* init tables */
7ebe9d38743a use scala.collection.jcl.HashMap, which seems to be more efficient;
wenzelm
parents: 27918
diff changeset
   137
27924
8dd8b564faf5 tuned comments;
wenzelm
parents: 27923
diff changeset
   138
    private def get_code(entry: (String, HashMap[String, String])) = {
8dd8b564faf5 tuned comments;
wenzelm
parents: 27923
diff changeset
   139
      val (symbol, props) = entry
8dd8b564faf5 tuned comments;
wenzelm
parents: 27923
diff changeset
   140
      val code =
8dd8b564faf5 tuned comments;
wenzelm
parents: 27923
diff changeset
   141
        try { Integer.decode(props("code")).intValue }
8dd8b564faf5 tuned comments;
wenzelm
parents: 27923
diff changeset
   142
        catch {
27993
6dd90ef9f927 simplified exceptions: use plain error function / RuntimeException;
wenzelm
parents: 27939
diff changeset
   143
          case _: NoSuchElementException => error("Missing code for symbol " + symbol)
6dd90ef9f927 simplified exceptions: use plain error function / RuntimeException;
wenzelm
parents: 27939
diff changeset
   144
          case _: NumberFormatException => error("Bad code for symbol " + symbol)
27923
7ebe9d38743a use scala.collection.jcl.HashMap, which seems to be more efficient;
wenzelm
parents: 27918
diff changeset
   145
        }
27924
8dd8b564faf5 tuned comments;
wenzelm
parents: 27923
diff changeset
   146
      (symbol, new String(Character.toChars(code)))
8dd8b564faf5 tuned comments;
wenzelm
parents: 27923
diff changeset
   147
    }
27923
7ebe9d38743a use scala.collection.jcl.HashMap, which seems to be more efficient;
wenzelm
parents: 27918
diff changeset
   148
27924
8dd8b564faf5 tuned comments;
wenzelm
parents: 27923
diff changeset
   149
    private def init_recoders() = {
8dd8b564faf5 tuned comments;
wenzelm
parents: 27923
diff changeset
   150
      val list = symbols.elements.toList.map(get_code)
27928
b1d0d1351ed9 decode escaped symbols as well;
wenzelm
parents: 27927
diff changeset
   151
      decoder = new Recoder(list ::: (for ((x, y) <- list) yield ("\\" + x, y)))
b1d0d1351ed9 decode escaped symbols as well;
wenzelm
parents: 27927
diff changeset
   152
      encoder = new Recoder(for ((x, y) <- list) yield (y, x))
27923
7ebe9d38743a use scala.collection.jcl.HashMap, which seems to be more efficient;
wenzelm
parents: 27918
diff changeset
   153
    }
7ebe9d38743a use scala.collection.jcl.HashMap, which seems to be more efficient;
wenzelm
parents: 27918
diff changeset
   154
7ebe9d38743a use scala.collection.jcl.HashMap, which seems to be more efficient;
wenzelm
parents: 27918
diff changeset
   155
7ebe9d38743a use scala.collection.jcl.HashMap, which seems to be more efficient;
wenzelm
parents: 27918
diff changeset
   156
    /* constructor */
7ebe9d38743a use scala.collection.jcl.HashMap, which seems to be more efficient;
wenzelm
parents: 27918
diff changeset
   157
27935
68d40072e9e7 read_symbols: proper IsabelleSystem.platform_path;
wenzelm
parents: 27928
diff changeset
   158
    read_symbols("$ISABELLE_HOME/etc/symbols")
68d40072e9e7 read_symbols: proper IsabelleSystem.platform_path;
wenzelm
parents: 27928
diff changeset
   159
    read_symbols("$ISABELLE_HOME_USER/etc/symbols")
27924
8dd8b564faf5 tuned comments;
wenzelm
parents: 27923
diff changeset
   160
    init_recoders()
27918
85942d2036a0 reading symbol interpretation tables;
wenzelm
parents: 27905
diff changeset
   161
  }
85942d2036a0 reading symbol interpretation tables;
wenzelm
parents: 27905
diff changeset
   162
27901
28083e9f8d1d Basic support for Isabelle symbols.
wenzelm
parents:
diff changeset
   163
}