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