| author | haftmann |
| Fri, 09 Mar 2012 20:50:28 +0100 | |
| changeset 46851 | c6235baf20e0 |
| parent 46737 | 09ab89658a5d |
| child 46938 | cda018294515 |
| permissions | -rw-r--r-- |
| 28495 | 1 |
/* Title: Pure/Thy/thy_header.scala |
2 |
Author: Makarius |
|
3 |
||
| 34169 | 4 |
Theory headers -- independent of outer syntax. |
| 28495 | 5 |
*/ |
6 |
||
7 |
package isabelle |
|
8 |
||
9 |
||
| 43611 | 10 |
import scala.annotation.tailrec |
| 34169 | 11 |
import scala.collection.mutable |
| 43646 | 12 |
import scala.util.parsing.input.{Reader, CharSequenceReader}
|
|
38149
3c380380beac
somewhat uniform Thy_Header.split_thy_path in ML and Scala;
wenzelm
parents:
36956
diff
changeset
|
13 |
import scala.util.matching.Regex |
| 34169 | 14 |
|
|
34188
fbfc18be1f8c
scan: operate on file (via Scan.byte_reader), more robust exception handling;
wenzelm
parents:
34169
diff
changeset
|
15 |
import java.io.File |
|
fbfc18be1f8c
scan: operate on file (via Scan.byte_reader), more robust exception handling;
wenzelm
parents:
34169
diff
changeset
|
16 |
|
| 34169 | 17 |
|
|
43661
39fdbd814c7f
quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents:
43652
diff
changeset
|
18 |
object Thy_Header extends Parse.Parser |
| 32450 | 19 |
{
|
| 28495 | 20 |
val HEADER = "header" |
21 |
val THEORY = "theory" |
|
22 |
val IMPORTS = "imports" |
|
23 |
val USES = "uses" |
|
24 |
val BEGIN = "begin" |
|
25 |
||
| 46676 | 26 |
private val lexicon = Scan.Lexicon("%", "(", ")", ";", BEGIN, HEADER, IMPORTS, THEORY, USES)
|
| 34190 | 27 |
|
|
38149
3c380380beac
somewhat uniform Thy_Header.split_thy_path in ML and Scala;
wenzelm
parents:
36956
diff
changeset
|
28 |
|
|
44160
8848867501fb
clarified document model header: master_dir (native wrt. editor, potentially URL) and node_name (full canonical path);
wenzelm
parents:
44159
diff
changeset
|
29 |
/* theory file name */ |
|
8848867501fb
clarified document model header: master_dir (native wrt. editor, potentially URL) and node_name (full canonical path);
wenzelm
parents:
44159
diff
changeset
|
30 |
|
|
44225
a8f921e6484f
more robust Thy_Header.base_name, with minimal assumptions about path syntax;
wenzelm
parents:
44222
diff
changeset
|
31 |
private val Base_Name = new Regex(""".*?([^/\\:]+)""")
|
|
44222
9d5ef6cd4ee1
use full .thy file name as node name, which makes MiscUtilities.resolveSymlinks/File.getCanonicalPath more predictable;
wenzelm
parents:
44185
diff
changeset
|
32 |
private val Thy_Name = new Regex(""".*?([^/\\:]+)\.thy""")
|
|
44160
8848867501fb
clarified document model header: master_dir (native wrt. editor, potentially URL) and node_name (full canonical path);
wenzelm
parents:
44159
diff
changeset
|
33 |
|
|
44225
a8f921e6484f
more robust Thy_Header.base_name, with minimal assumptions about path syntax;
wenzelm
parents:
44222
diff
changeset
|
34 |
def base_name(s: String): String = |
|
a8f921e6484f
more robust Thy_Header.base_name, with minimal assumptions about path syntax;
wenzelm
parents:
44222
diff
changeset
|
35 |
s match { case Base_Name(name) => name case _ => error("Malformed import: " + quote(s)) }
|
|
a8f921e6484f
more robust Thy_Header.base_name, with minimal assumptions about path syntax;
wenzelm
parents:
44222
diff
changeset
|
36 |
|
|
44222
9d5ef6cd4ee1
use full .thy file name as node name, which makes MiscUtilities.resolveSymlinks/File.getCanonicalPath more predictable;
wenzelm
parents:
44185
diff
changeset
|
37 |
def thy_name(s: String): Option[String] = |
|
9d5ef6cd4ee1
use full .thy file name as node name, which makes MiscUtilities.resolveSymlinks/File.getCanonicalPath more predictable;
wenzelm
parents:
44185
diff
changeset
|
38 |
s match { case Thy_Name(name) => Some(name) case _ => None }
|
|
38149
3c380380beac
somewhat uniform Thy_Header.split_thy_path in ML and Scala;
wenzelm
parents:
36956
diff
changeset
|
39 |
|
| 34169 | 40 |
|
41 |
/* header */ |
|
42 |
||
| 44159 | 43 |
val header: Parser[Thy_Header] = |
| 34169 | 44 |
{
|
| 43611 | 45 |
val file_name = atom("file name", _.is_name)
|
46 |
val theory_name = atom("theory name", _.is_name)
|
|
| 34169 | 47 |
|
48 |
val file = |
|
| 44185 | 49 |
keyword("(") ~! (file_name ~ keyword(")")) ^^ { case _ ~ (x ~ _) => (x, false) } |
|
50 |
file_name ^^ (x => (x, true)) |
|
| 34169 | 51 |
|
52 |
val uses = opt(keyword(USES) ~! (rep1(file))) ^^ { case None => Nil case Some(_ ~ xs) => xs }
|
|
53 |
||
54 |
val args = |
|
55 |
theory_name ~ (keyword(IMPORTS) ~! (rep1(theory_name) ~ uses ~ keyword(BEGIN))) ^^ |
|
| 44159 | 56 |
{ case x ~ (_ ~ (ys ~ zs ~ _)) => Thy_Header(x, ys, zs) }
|
| 34169 | 57 |
|
58 |
(keyword(HEADER) ~ tags) ~! |
|
59 |
((doc_source ~ rep(keyword(";")) ~ keyword(THEORY) ~ tags) ~> args) ^^ { case _ ~ x => x } |
|
|
60 |
(keyword(THEORY) ~ tags) ~! args ^^ { case _ ~ x => x }
|
|
61 |
} |
|
62 |
||
63 |
||
| 34190 | 64 |
/* read -- lazy scanning */ |
| 34169 | 65 |
|
| 44159 | 66 |
def read(reader: Reader[Char]): Thy_Header = |
| 34169 | 67 |
{
|
|
43695
5130dfe1b7be
simplified Symbol based on lazy Symbol.Interpretation -- reduced odd "functorial style";
wenzelm
parents:
43672
diff
changeset
|
68 |
val token = lexicon.token(_ => false) |
|
36956
21be4832c362
renamed class Outer_Lex to Token and Token_Kind to Token.Kind;
wenzelm
parents:
36948
diff
changeset
|
69 |
val toks = new mutable.ListBuffer[Token] |
|
34188
fbfc18be1f8c
scan: operate on file (via Scan.byte_reader), more robust exception handling;
wenzelm
parents:
34169
diff
changeset
|
70 |
|
| 43611 | 71 |
@tailrec def scan_to_begin(in: Reader[Char]) |
| 34169 | 72 |
{
|
73 |
token(in) match {
|
|
74 |
case lexicon.Success(tok, rest) => |
|
75 |
toks += tok |
|
| 43611 | 76 |
if (!tok.is_begin) scan_to_begin(rest) |
| 34169 | 77 |
case _ => |
78 |
} |
|
79 |
} |
|
| 43611 | 80 |
scan_to_begin(reader) |
| 34190 | 81 |
|
|
36956
21be4832c362
renamed class Outer_Lex to Token and Token_Kind to Token.Kind;
wenzelm
parents:
36948
diff
changeset
|
82 |
parse(commit(header), Token.reader(toks.toList)) match {
|
| 34190 | 83 |
case Success(result, _) => result |
84 |
case bad => error(bad.toString) |
|
85 |
} |
|
| 34169 | 86 |
} |
| 43611 | 87 |
|
| 44159 | 88 |
def read(source: CharSequence): Thy_Header = |
| 43646 | 89 |
read(new CharSequenceReader(source)) |
90 |
||
| 44159 | 91 |
def read(file: File): Thy_Header = |
| 43611 | 92 |
{
|
93 |
val reader = Scan.byte_reader(file) |
|
| 43699 | 94 |
try { read(reader).map(Standard_System.decode_permissive_utf8) }
|
| 43611 | 95 |
finally { reader.close }
|
96 |
} |
|
| 34169 | 97 |
} |
| 44159 | 98 |
|
99 |
||
| 44185 | 100 |
sealed case class Thy_Header( |
101 |
val name: String, val imports: List[String], val uses: List[(String, Boolean)]) |
|
| 44159 | 102 |
{
|
103 |
def map(f: String => String): Thy_Header = |
|
| 44185 | 104 |
Thy_Header(f(name), imports.map(f), uses.map(p => (f(p._1), p._2))) |
| 44159 | 105 |
} |
106 |