| author | wenzelm |
| Thu, 11 Dec 2014 15:24:28 +0100 | |
| changeset 59135 | 580de802aafd |
| parent 58999 | ed09ae4ea2d8 |
| child 59694 | d2bb4b5ed862 |
| permissions | -rw-r--r-- |
| 28495 | 1 |
/* Title: Pure/Thy/thy_header.scala |
2 |
Author: Makarius |
|
3 |
||
| 46939 | 4 |
Static theory header information. |
| 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 |
|
15 |
||
|
43661
39fdbd814c7f
quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents:
43652
diff
changeset
|
16 |
object Thy_Header extends Parse.Parser |
| 32450 | 17 |
{
|
|
58928
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58908
diff
changeset
|
18 |
/* bootstrap keywords */ |
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58908
diff
changeset
|
19 |
|
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58908
diff
changeset
|
20 |
type Keywords = List[(String, Option[Keyword.Spec], Option[String])] |
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58908
diff
changeset
|
21 |
|
| 28495 | 22 |
val HEADER = "header" |
|
58868
c5e1cce7ace3
uniform heading commands work in any context, even in theory header;
wenzelm
parents:
58861
diff
changeset
|
23 |
val CHAPTER = "chapter" |
|
c5e1cce7ace3
uniform heading commands work in any context, even in theory header;
wenzelm
parents:
58861
diff
changeset
|
24 |
val SECTION = "section" |
|
c5e1cce7ace3
uniform heading commands work in any context, even in theory header;
wenzelm
parents:
58861
diff
changeset
|
25 |
val SUBSECTION = "subsection" |
|
c5e1cce7ace3
uniform heading commands work in any context, even in theory header;
wenzelm
parents:
58861
diff
changeset
|
26 |
val SUBSUBSECTION = "subsubsection" |
|
58999
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58928
diff
changeset
|
27 |
val TEXT = "text" |
|
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58928
diff
changeset
|
28 |
val TXT = "txt" |
|
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58928
diff
changeset
|
29 |
val TEXT_RAW = "text_raw" |
|
58868
c5e1cce7ace3
uniform heading commands work in any context, even in theory header;
wenzelm
parents:
58861
diff
changeset
|
30 |
|
| 28495 | 31 |
val THEORY = "theory" |
32 |
val IMPORTS = "imports" |
|
|
46938
cda018294515
some support for outer syntax keyword declarations within theory header;
wenzelm
parents:
46737
diff
changeset
|
33 |
val KEYWORDS = "keywords" |
|
cda018294515
some support for outer syntax keyword declarations within theory header;
wenzelm
parents:
46737
diff
changeset
|
34 |
val AND = "and" |
| 28495 | 35 |
val BEGIN = "begin" |
36 |
||
|
58928
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58908
diff
changeset
|
37 |
private val bootstrap_header: Keywords = |
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58908
diff
changeset
|
38 |
List( |
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58908
diff
changeset
|
39 |
("%", None, None),
|
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58908
diff
changeset
|
40 |
("(", None, None),
|
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58908
diff
changeset
|
41 |
(")", None, None),
|
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58908
diff
changeset
|
42 |
(",", None, None),
|
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58908
diff
changeset
|
43 |
("::", None, None),
|
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58908
diff
changeset
|
44 |
("==", None, None),
|
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58908
diff
changeset
|
45 |
(AND, None, None), |
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58908
diff
changeset
|
46 |
(BEGIN, None, None), |
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58908
diff
changeset
|
47 |
(IMPORTS, None, None), |
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58908
diff
changeset
|
48 |
(KEYWORDS, None, None), |
|
58999
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58928
diff
changeset
|
49 |
(HEADER, Some(((Keyword.DOCUMENT_HEADING, Nil), Nil)), None), |
|
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58928
diff
changeset
|
50 |
(CHAPTER, Some(((Keyword.DOCUMENT_HEADING, Nil), Nil)), None), |
|
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58928
diff
changeset
|
51 |
(SECTION, Some(((Keyword.DOCUMENT_HEADING, Nil), Nil)), None), |
|
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58928
diff
changeset
|
52 |
(SUBSECTION, Some(((Keyword.DOCUMENT_HEADING, Nil), Nil)), None), |
|
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58928
diff
changeset
|
53 |
(SUBSUBSECTION, Some(((Keyword.DOCUMENT_HEADING, Nil), Nil)), None), |
|
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58928
diff
changeset
|
54 |
(TEXT, Some(((Keyword.DOCUMENT_BODY, Nil), Nil)), None), |
|
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58928
diff
changeset
|
55 |
(TXT, Some(((Keyword.DOCUMENT_BODY, Nil), Nil)), None), |
|
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58928
diff
changeset
|
56 |
(TEXT_RAW, Some(((Keyword.DOCUMENT_RAW, Nil), Nil)), None), |
|
58928
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58908
diff
changeset
|
57 |
(THEORY, Some((Keyword.THY_BEGIN, Nil), List("theory")), None),
|
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58908
diff
changeset
|
58 |
("ML_file", Some((Keyword.THY_LOAD, Nil), List("ML")), None))
|
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58908
diff
changeset
|
59 |
|
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58908
diff
changeset
|
60 |
private val bootstrap_keywords = |
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58908
diff
changeset
|
61 |
Keyword.Keywords.empty.add_keywords(bootstrap_header) |
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58908
diff
changeset
|
62 |
|
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58908
diff
changeset
|
63 |
def bootstrap_syntax(): Outer_Syntax = |
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58908
diff
changeset
|
64 |
Outer_Syntax.init().add_keywords(bootstrap_header) |
| 34190 | 65 |
|
|
38149
3c380380beac
somewhat uniform Thy_Header.split_thy_path in ML and Scala;
wenzelm
parents:
36956
diff
changeset
|
66 |
|
|
44160
8848867501fb
clarified document model header: master_dir (native wrt. editor, potentially URL) and node_name (full canonical path);
wenzelm
parents:
44159
diff
changeset
|
67 |
/* 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
|
68 |
|
|
44225
a8f921e6484f
more robust Thy_Header.base_name, with minimal assumptions about path syntax;
wenzelm
parents:
44222
diff
changeset
|
69 |
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
|
70 |
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
|
71 |
|
|
44225
a8f921e6484f
more robust Thy_Header.base_name, with minimal assumptions about path syntax;
wenzelm
parents:
44222
diff
changeset
|
72 |
def base_name(s: String): String = |
|
a8f921e6484f
more robust Thy_Header.base_name, with minimal assumptions about path syntax;
wenzelm
parents:
44222
diff
changeset
|
73 |
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
|
74 |
|
|
44222
9d5ef6cd4ee1
use full .thy file name as node name, which makes MiscUtilities.resolveSymlinks/File.getCanonicalPath more predictable;
wenzelm
parents:
44185
diff
changeset
|
75 |
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
|
76 |
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
|
77 |
|
| 34169 | 78 |
|
79 |
/* header */ |
|
80 |
||
| 44159 | 81 |
val header: Parser[Thy_Header] = |
| 34169 | 82 |
{
|
| 43611 | 83 |
val file_name = atom("file name", _.is_name)
|
| 34169 | 84 |
|
|
48864
3ee314ae1e0a
added keyword kind "thy_load" (with optional list of file extensions);
wenzelm
parents:
48706
diff
changeset
|
85 |
val opt_files = |
| 58908 | 86 |
$$$("(") ~! (rep1sep(name, $$$(",")) <~ $$$(")")) ^^ { case _ ~ x => x } |
|
|
48864
3ee314ae1e0a
added keyword kind "thy_load" (with optional list of file extensions);
wenzelm
parents:
48706
diff
changeset
|
87 |
success(Nil) |
|
3ee314ae1e0a
added keyword kind "thy_load" (with optional list of file extensions);
wenzelm
parents:
48706
diff
changeset
|
88 |
val keyword_spec = |
|
3ee314ae1e0a
added keyword kind "thy_load" (with optional list of file extensions);
wenzelm
parents:
48706
diff
changeset
|
89 |
atom("outer syntax keyword specification", _.is_name) ~ opt_files ~ tags ^^
|
|
3ee314ae1e0a
added keyword kind "thy_load" (with optional list of file extensions);
wenzelm
parents:
48706
diff
changeset
|
90 |
{ case x ~ y ~ z => ((x, y), z) }
|
|
3ee314ae1e0a
added keyword kind "thy_load" (with optional list of file extensions);
wenzelm
parents:
48706
diff
changeset
|
91 |
|
|
46938
cda018294515
some support for outer syntax keyword declarations within theory header;
wenzelm
parents:
46737
diff
changeset
|
92 |
val keyword_decl = |
|
50128
599c935aac82
alternative completion for outer syntax keywords;
wenzelm
parents:
48882
diff
changeset
|
93 |
rep1(string) ~ |
| 58908 | 94 |
opt($$$("::") ~! keyword_spec ^^ { case _ ~ x => x }) ~
|
95 |
opt($$$("==") ~! name ^^ { case _ ~ x => x }) ^^
|
|
|
50128
599c935aac82
alternative completion for outer syntax keywords;
wenzelm
parents:
48882
diff
changeset
|
96 |
{ case xs ~ y ~ z => xs.map((_, y, z)) }
|
| 46939 | 97 |
val keyword_decls = |
| 58908 | 98 |
keyword_decl ~ rep($$$(AND) ~! keyword_decl ^^ { case _ ~ x => x }) ^^
|
| 46939 | 99 |
{ case xs ~ yss => (xs :: yss).flatten }
|
|
46938
cda018294515
some support for outer syntax keyword declarations within theory header;
wenzelm
parents:
46737
diff
changeset
|
100 |
|
| 34169 | 101 |
val file = |
| 58908 | 102 |
$$$("(") ~! (file_name ~ $$$(")")) ^^ { case _ ~ (x ~ _) => (x, false) } |
|
| 44185 | 103 |
file_name ^^ (x => (x, true)) |
| 34169 | 104 |
|
105 |
val args = |
|
|
46938
cda018294515
some support for outer syntax keyword declarations within theory header;
wenzelm
parents:
46737
diff
changeset
|
106 |
theory_name ~ |
| 58908 | 107 |
(opt($$$(IMPORTS) ~! (rep1(theory_xname))) ^^ |
|
56823
37be55461dbe
more frugal access to theory text via Reader, reduced costs for I/O text decoding;
wenzelm
parents:
56801
diff
changeset
|
108 |
{ case None => Nil case Some(_ ~ xs) => xs }) ~
|
| 58908 | 109 |
(opt($$$(KEYWORDS) ~! keyword_decls) ^^ |
|
56823
37be55461dbe
more frugal access to theory text via Reader, reduced costs for I/O text decoding;
wenzelm
parents:
56801
diff
changeset
|
110 |
{ case None => Nil case Some(_ ~ xs) => xs }) ~
|
| 58908 | 111 |
$$$(BEGIN) ^^ |
|
51294
0850d43cb355
discontinued obsolete header "files" -- these are loaded explicitly after exploring dependencies;
wenzelm
parents:
51293
diff
changeset
|
112 |
{ case x ~ ys ~ zs ~ _ => Thy_Header(x, ys, zs) }
|
| 34169 | 113 |
|
|
58868
c5e1cce7ace3
uniform heading commands work in any context, even in theory header;
wenzelm
parents:
58861
diff
changeset
|
114 |
val heading = |
| 58907 | 115 |
(command(HEADER) | |
116 |
command(CHAPTER) | |
|
117 |
command(SECTION) | |
|
118 |
command(SUBSECTION) | |
|
|
58999
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58928
diff
changeset
|
119 |
command(SUBSUBSECTION) | |
|
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58928
diff
changeset
|
120 |
command(TEXT) | |
|
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58928
diff
changeset
|
121 |
command(TXT) | |
|
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58928
diff
changeset
|
122 |
command(TEXT_RAW)) ~ |
|
58868
c5e1cce7ace3
uniform heading commands work in any context, even in theory header;
wenzelm
parents:
58861
diff
changeset
|
123 |
tags ~! document_source |
|
c5e1cce7ace3
uniform heading commands work in any context, even in theory header;
wenzelm
parents:
58861
diff
changeset
|
124 |
|
| 58907 | 125 |
(rep(heading) ~ command(THEORY) ~ tags) ~! args ^^ { case _ ~ x => x }
|
| 34169 | 126 |
} |
127 |
||
128 |
||
| 34190 | 129 |
/* read -- lazy scanning */ |
| 34169 | 130 |
|
| 44159 | 131 |
def read(reader: Reader[Char]): Thy_Header = |
| 34169 | 132 |
{
|
|
58928
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58908
diff
changeset
|
133 |
val token = Token.Parsers.token(bootstrap_keywords) |
|
36956
21be4832c362
renamed class Outer_Lex to Token and Token_Kind to Token.Kind;
wenzelm
parents:
36948
diff
changeset
|
134 |
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
|
135 |
|
| 43611 | 136 |
@tailrec def scan_to_begin(in: Reader[Char]) |
| 34169 | 137 |
{
|
138 |
token(in) match {
|
|
| 55494 | 139 |
case Token.Parsers.Success(tok, rest) => |
| 34169 | 140 |
toks += tok |
| 43611 | 141 |
if (!tok.is_begin) scan_to_begin(rest) |
| 34169 | 142 |
case _ => |
143 |
} |
|
144 |
} |
|
| 43611 | 145 |
scan_to_begin(reader) |
| 34190 | 146 |
|
|
36956
21be4832c362
renamed class Outer_Lex to Token and Token_Kind to Token.Kind;
wenzelm
parents:
36948
diff
changeset
|
147 |
parse(commit(header), Token.reader(toks.toList)) match {
|
| 34190 | 148 |
case Success(result, _) => result |
149 |
case bad => error(bad.toString) |
|
150 |
} |
|
| 34169 | 151 |
} |
| 43611 | 152 |
|
| 44159 | 153 |
def read(source: CharSequence): Thy_Header = |
| 43646 | 154 |
read(new CharSequenceReader(source)) |
| 34169 | 155 |
} |
| 44159 | 156 |
|
157 |
||
| 44185 | 158 |
sealed case class Thy_Header( |
|
50128
599c935aac82
alternative completion for outer syntax keywords;
wenzelm
parents:
48882
diff
changeset
|
159 |
name: String, |
|
599c935aac82
alternative completion for outer syntax keywords;
wenzelm
parents:
48882
diff
changeset
|
160 |
imports: List[String], |
|
51294
0850d43cb355
discontinued obsolete header "files" -- these are loaded explicitly after exploring dependencies;
wenzelm
parents:
51293
diff
changeset
|
161 |
keywords: Thy_Header.Keywords) |
| 44159 | 162 |
{
|
163 |
def map(f: String => String): Thy_Header = |
|
|
51294
0850d43cb355
discontinued obsolete header "files" -- these are loaded explicitly after exploring dependencies;
wenzelm
parents:
51293
diff
changeset
|
164 |
Thy_Header(f(name), imports.map(f), keywords) |
|
56823
37be55461dbe
more frugal access to theory text via Reader, reduced costs for I/O text decoding;
wenzelm
parents:
56801
diff
changeset
|
165 |
|
|
37be55461dbe
more frugal access to theory text via Reader, reduced costs for I/O text decoding;
wenzelm
parents:
56801
diff
changeset
|
166 |
def decode_symbols: Thy_Header = |
|
37be55461dbe
more frugal access to theory text via Reader, reduced costs for I/O text decoding;
wenzelm
parents:
56801
diff
changeset
|
167 |
{
|
|
37be55461dbe
more frugal access to theory text via Reader, reduced costs for I/O text decoding;
wenzelm
parents:
56801
diff
changeset
|
168 |
val f = Symbol.decode _ |
|
37be55461dbe
more frugal access to theory text via Reader, reduced costs for I/O text decoding;
wenzelm
parents:
56801
diff
changeset
|
169 |
Thy_Header(f(name), imports.map(f), |
|
37be55461dbe
more frugal access to theory text via Reader, reduced costs for I/O text decoding;
wenzelm
parents:
56801
diff
changeset
|
170 |
keywords.map({ case (a, b, c) =>
|
| 58899 | 171 |
(f(a), b.map({ case ((x, y), z) => ((f(x), y.map(f)), z.map(f)) }), c.map(f)) }))
|
|
56823
37be55461dbe
more frugal access to theory text via Reader, reduced costs for I/O text decoding;
wenzelm
parents:
56801
diff
changeset
|
172 |
} |
| 44159 | 173 |
} |
174 |