| author | wenzelm |
| Tue, 09 Dec 2014 22:13:48 +0100 | |
| changeset 59123 | e68e44836d04 |
| parent 59033 | 9d5662acb19c |
| child 59125 | ee19c92ae8b4 |
| permissions | -rw-r--r-- |
|
36949
080e85d46108
renamed structure OuterKeyword to Keyword and OuterParse to Parse, keeping the old names as legacy aliases for some time;
wenzelm
parents:
36681
diff
changeset
|
1 |
(* Title: Pure/Isar/keyword.ML |
|
17059
a001a3ebfcfd
Isar command keyword classification (from Isar/outer_syntax.ML);
wenzelm
parents:
diff
changeset
|
2 |
Author: Makarius |
|
a001a3ebfcfd
Isar command keyword classification (from Isar/outer_syntax.ML);
wenzelm
parents:
diff
changeset
|
3 |
|
| 58900 | 4 |
Isar keyword classification. |
|
17059
a001a3ebfcfd
Isar command keyword classification (from Isar/outer_syntax.ML);
wenzelm
parents:
diff
changeset
|
5 |
*) |
|
a001a3ebfcfd
Isar command keyword classification (from Isar/outer_syntax.ML);
wenzelm
parents:
diff
changeset
|
6 |
|
|
36949
080e85d46108
renamed structure OuterKeyword to Keyword and OuterParse to Parse, keeping the old names as legacy aliases for some time;
wenzelm
parents:
36681
diff
changeset
|
7 |
signature KEYWORD = |
|
17059
a001a3ebfcfd
Isar command keyword classification (from Isar/outer_syntax.ML);
wenzelm
parents:
diff
changeset
|
8 |
sig |
|
58928
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58924
diff
changeset
|
9 |
val diag: string |
|
58999
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58931
diff
changeset
|
10 |
val document_heading: string |
|
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58931
diff
changeset
|
11 |
val document_body: string |
|
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58931
diff
changeset
|
12 |
val document_raw: string |
|
58928
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58924
diff
changeset
|
13 |
val thy_begin: string |
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58924
diff
changeset
|
14 |
val thy_end: string |
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58924
diff
changeset
|
15 |
val thy_decl: string |
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58924
diff
changeset
|
16 |
val thy_decl_block: string |
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58924
diff
changeset
|
17 |
val thy_load: string |
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58924
diff
changeset
|
18 |
val thy_goal: string |
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58924
diff
changeset
|
19 |
val qed: string |
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58924
diff
changeset
|
20 |
val qed_script: string |
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58924
diff
changeset
|
21 |
val qed_block: string |
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58924
diff
changeset
|
22 |
val qed_global: string |
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58924
diff
changeset
|
23 |
val prf_goal: string |
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58924
diff
changeset
|
24 |
val prf_block: string |
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58924
diff
changeset
|
25 |
val prf_open: string |
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58924
diff
changeset
|
26 |
val prf_close: string |
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58924
diff
changeset
|
27 |
val prf_chain: string |
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58924
diff
changeset
|
28 |
val prf_decl: string |
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58924
diff
changeset
|
29 |
val prf_asm: string |
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58924
diff
changeset
|
30 |
val prf_asm_goal: string |
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58924
diff
changeset
|
31 |
val prf_asm_goal_script: string |
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58924
diff
changeset
|
32 |
val prf_script: string |
|
48864
3ee314ae1e0a
added keyword kind "thy_load" (with optional list of file extensions);
wenzelm
parents:
48709
diff
changeset
|
33 |
type spec = (string * string list) * string list |
| 58903 | 34 |
type keywords |
35 |
val minor_keywords: keywords -> Scan.lexicon |
|
36 |
val major_keywords: keywords -> Scan.lexicon |
|
| 58920 | 37 |
val no_command_keywords: keywords -> keywords |
| 58903 | 38 |
val empty_keywords: keywords |
39 |
val merge_keywords: keywords * keywords -> keywords |
|
|
58928
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58924
diff
changeset
|
40 |
val add_keywords: (string * spec option) list -> keywords -> keywords |
| 58931 | 41 |
val is_keyword: keywords -> string -> bool |
42 |
val is_command: keywords -> string -> bool |
|
|
58928
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58924
diff
changeset
|
43 |
val is_literal: keywords -> string -> bool |
|
59123
e68e44836d04
imitate command markup and rendering of Isabelle/jEdit in HTML output;
wenzelm
parents:
59033
diff
changeset
|
44 |
val command_kind: keywords -> string -> string option |
| 58923 | 45 |
val command_files: keywords -> string -> Path.T -> Path.T list |
46 |
val command_tags: keywords -> string -> string list |
|
|
58999
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58931
diff
changeset
|
47 |
val is_vacuous: keywords -> string -> bool |
| 58923 | 48 |
val is_diag: keywords -> string -> bool |
|
58999
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58931
diff
changeset
|
49 |
val is_document_heading: keywords -> string -> bool |
|
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58931
diff
changeset
|
50 |
val is_document_body: keywords -> string -> bool |
|
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58931
diff
changeset
|
51 |
val is_document_raw: keywords -> string -> bool |
| 59033 | 52 |
val is_document: keywords -> string -> bool |
| 58923 | 53 |
val is_theory_begin: keywords -> string -> bool |
54 |
val is_theory_load: keywords -> string -> bool |
|
55 |
val is_theory: keywords -> string -> bool |
|
56 |
val is_theory_body: keywords -> string -> bool |
|
57 |
val is_proof: keywords -> string -> bool |
|
58 |
val is_proof_body: keywords -> string -> bool |
|
59 |
val is_theory_goal: keywords -> string -> bool |
|
60 |
val is_proof_goal: keywords -> string -> bool |
|
61 |
val is_qed: keywords -> string -> bool |
|
62 |
val is_qed_global: keywords -> string -> bool |
|
63 |
val is_printed: keywords -> string -> bool |
|
|
17059
a001a3ebfcfd
Isar command keyword classification (from Isar/outer_syntax.ML);
wenzelm
parents:
diff
changeset
|
64 |
end; |
|
a001a3ebfcfd
Isar command keyword classification (from Isar/outer_syntax.ML);
wenzelm
parents:
diff
changeset
|
65 |
|
|
36949
080e85d46108
renamed structure OuterKeyword to Keyword and OuterParse to Parse, keeping the old names as legacy aliases for some time;
wenzelm
parents:
36681
diff
changeset
|
66 |
structure Keyword: KEYWORD = |
|
17059
a001a3ebfcfd
Isar command keyword classification (from Isar/outer_syntax.ML);
wenzelm
parents:
diff
changeset
|
67 |
struct |
|
a001a3ebfcfd
Isar command keyword classification (from Isar/outer_syntax.ML);
wenzelm
parents:
diff
changeset
|
68 |
|
|
27357
5b3a087ff292
moved global keywords from OuterSyntax to OuterKeyword, tuned interfaces;
wenzelm
parents:
17270
diff
changeset
|
69 |
(** keyword classification **) |
|
17059
a001a3ebfcfd
Isar command keyword classification (from Isar/outer_syntax.ML);
wenzelm
parents:
diff
changeset
|
70 |
|
| 58918 | 71 |
(* kinds *) |
72 |
||
|
58928
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58924
diff
changeset
|
73 |
val diag = "diag"; |
|
58999
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58931
diff
changeset
|
74 |
val document_heading = "document_heading"; |
|
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58931
diff
changeset
|
75 |
val document_body = "document_body"; |
|
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58931
diff
changeset
|
76 |
val document_raw = "document_raw"; |
|
58928
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58924
diff
changeset
|
77 |
val thy_begin = "thy_begin"; |
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58924
diff
changeset
|
78 |
val thy_end = "thy_end"; |
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58924
diff
changeset
|
79 |
val thy_decl = "thy_decl"; |
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58924
diff
changeset
|
80 |
val thy_decl_block = "thy_decl_block"; |
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58924
diff
changeset
|
81 |
val thy_load = "thy_load"; |
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58924
diff
changeset
|
82 |
val thy_goal = "thy_goal"; |
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58924
diff
changeset
|
83 |
val qed = "qed"; |
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58924
diff
changeset
|
84 |
val qed_script = "qed_script"; |
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58924
diff
changeset
|
85 |
val qed_block = "qed_block"; |
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58924
diff
changeset
|
86 |
val qed_global = "qed_global"; |
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58924
diff
changeset
|
87 |
val prf_goal = "prf_goal"; |
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58924
diff
changeset
|
88 |
val prf_block = "prf_block"; |
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58924
diff
changeset
|
89 |
val prf_open = "prf_open"; |
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58924
diff
changeset
|
90 |
val prf_close = "prf_close"; |
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58924
diff
changeset
|
91 |
val prf_chain = "prf_chain"; |
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58924
diff
changeset
|
92 |
val prf_decl = "prf_decl"; |
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58924
diff
changeset
|
93 |
val prf_asm = "prf_asm"; |
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58924
diff
changeset
|
94 |
val prf_asm_goal = "prf_asm_goal"; |
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58924
diff
changeset
|
95 |
val prf_asm_goal_script = "prf_asm_goal_script"; |
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58924
diff
changeset
|
96 |
val prf_script = "prf_script"; |
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58924
diff
changeset
|
97 |
|
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58924
diff
changeset
|
98 |
val kinds = |
|
58999
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58931
diff
changeset
|
99 |
[diag, document_heading, document_body, document_raw, thy_begin, thy_end, thy_load, thy_decl, |
|
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58931
diff
changeset
|
100 |
thy_decl_block, thy_goal, qed, qed_script, qed_block, qed_global, prf_goal, prf_block, prf_open, |
|
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58931
diff
changeset
|
101 |
prf_close, prf_chain, prf_decl, prf_asm, prf_asm_goal, prf_asm_goal_script, prf_script]; |
|
58928
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58924
diff
changeset
|
102 |
|
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58924
diff
changeset
|
103 |
|
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58924
diff
changeset
|
104 |
(* specifications *) |
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58924
diff
changeset
|
105 |
|
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58924
diff
changeset
|
106 |
type T = |
|
48864
3ee314ae1e0a
added keyword kind "thy_load" (with optional list of file extensions);
wenzelm
parents:
48709
diff
changeset
|
107 |
{kind: string,
|
|
3ee314ae1e0a
added keyword kind "thy_load" (with optional list of file extensions);
wenzelm
parents:
48709
diff
changeset
|
108 |
files: string list, (*extensions of embedded files*) |
| 58918 | 109 |
tags: string list}; |
|
17059
a001a3ebfcfd
Isar command keyword classification (from Isar/outer_syntax.ML);
wenzelm
parents:
diff
changeset
|
110 |
|
|
48864
3ee314ae1e0a
added keyword kind "thy_load" (with optional list of file extensions);
wenzelm
parents:
48709
diff
changeset
|
111 |
type spec = (string * string list) * string list; |
|
46961
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
112 |
|
|
58928
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58924
diff
changeset
|
113 |
fun check_spec ((kind, files), tags) : T = |
| 58918 | 114 |
if not (member (op =) kinds kind) then |
115 |
error ("Unknown outer syntax keyword kind " ^ quote kind)
|
|
|
58928
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58924
diff
changeset
|
116 |
else if not (null files) andalso kind <> thy_load then |
| 58918 | 117 |
error ("Illegal specification of files for " ^ quote kind)
|
|
58928
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58924
diff
changeset
|
118 |
else {kind = kind, files = files, tags = tags};
|
|
46961
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
119 |
|
|
46938
cda018294515
some support for outer syntax keyword declarations within theory header;
wenzelm
parents:
46924
diff
changeset
|
120 |
|
|
27357
5b3a087ff292
moved global keywords from OuterSyntax to OuterKeyword, tuned interfaces;
wenzelm
parents:
17270
diff
changeset
|
121 |
|
| 58903 | 122 |
(** keyword tables **) |
123 |
||
124 |
(* type keywords *) |
|
|
27357
5b3a087ff292
moved global keywords from OuterSyntax to OuterKeyword, tuned interfaces;
wenzelm
parents:
17270
diff
changeset
|
125 |
|
|
48874
ff9cd47be39b
refined Thy_Load.check_thy: find more uses in body text, based on keywords;
wenzelm
parents:
48872
diff
changeset
|
126 |
datatype keywords = Keywords of |
| 58903 | 127 |
{minor: Scan.lexicon,
|
128 |
major: Scan.lexicon, |
|
| 58906 | 129 |
commands: T Symtab.table}; |
| 58903 | 130 |
|
131 |
fun minor_keywords (Keywords {minor, ...}) = minor;
|
|
132 |
fun major_keywords (Keywords {major, ...}) = major;
|
|
133 |
||
| 58906 | 134 |
fun make_keywords (minor, major, commands) = |
135 |
Keywords {minor = minor, major = major, commands = commands};
|
|
|
46957
0c15caf47040
clarified Keyword.is_keyword: union of minor and major;
wenzelm
parents:
46950
diff
changeset
|
136 |
|
| 58906 | 137 |
fun map_keywords f (Keywords {minor, major, commands}) =
|
138 |
make_keywords (f (minor, major, commands)); |
|
| 58903 | 139 |
|
| 58920 | 140 |
val no_command_keywords = |
141 |
map_keywords (fn (minor, _, _) => (minor, Scan.empty_lexicon, Symtab.empty)); |
|
142 |
||
143 |
||
144 |
(* build keywords *) |
|
145 |
||
| 58903 | 146 |
val empty_keywords = |
147 |
make_keywords (Scan.empty_lexicon, Scan.empty_lexicon, Symtab.empty); |
|
|
48874
ff9cd47be39b
refined Thy_Load.check_thy: find more uses in body text, based on keywords;
wenzelm
parents:
48872
diff
changeset
|
148 |
|
| 58903 | 149 |
fun merge_keywords |
| 58906 | 150 |
(Keywords {minor = minor1, major = major1, commands = commands1},
|
151 |
Keywords {minor = minor2, major = major2, commands = commands2}) =
|
|
| 58903 | 152 |
make_keywords |
153 |
(Scan.merge_lexicons (minor1, minor2), |
|
154 |
Scan.merge_lexicons (major1, major2), |
|
| 58906 | 155 |
Symtab.merge (K true) (commands1, commands2)); |
|
27357
5b3a087ff292
moved global keywords from OuterSyntax to OuterKeyword, tuned interfaces;
wenzelm
parents:
17270
diff
changeset
|
156 |
|
|
58928
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58924
diff
changeset
|
157 |
val add_keywords = |
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58924
diff
changeset
|
158 |
fold (fn (name, opt_spec) => map_keywords (fn (minor, major, commands) => |
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58924
diff
changeset
|
159 |
(case opt_spec of |
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58924
diff
changeset
|
160 |
NONE => |
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58924
diff
changeset
|
161 |
let |
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58924
diff
changeset
|
162 |
val minor' = Scan.extend_lexicon (Symbol.explode name) minor; |
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58924
diff
changeset
|
163 |
in (minor', major, commands) end |
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58924
diff
changeset
|
164 |
| SOME spec => |
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58924
diff
changeset
|
165 |
let |
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58924
diff
changeset
|
166 |
val kind = check_spec spec; |
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58924
diff
changeset
|
167 |
val major' = Scan.extend_lexicon (Symbol.explode name) major; |
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58924
diff
changeset
|
168 |
val commands' = Symtab.update (name, kind) commands; |
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58924
diff
changeset
|
169 |
in (minor, major', commands') end))); |
|
27357
5b3a087ff292
moved global keywords from OuterSyntax to OuterKeyword, tuned interfaces;
wenzelm
parents:
17270
diff
changeset
|
170 |
|
| 58903 | 171 |
|
| 58931 | 172 |
(* keyword status *) |
|
27357
5b3a087ff292
moved global keywords from OuterSyntax to OuterKeyword, tuned interfaces;
wenzelm
parents:
17270
diff
changeset
|
173 |
|
| 58931 | 174 |
fun is_keyword keywords s = Scan.is_literal (minor_keywords keywords) (Symbol.explode s); |
175 |
fun is_command (Keywords {commands, ...}) = Symtab.defined commands;
|
|
176 |
fun is_literal keywords = is_keyword keywords orf is_command keywords; |
|
|
27357
5b3a087ff292
moved global keywords from OuterSyntax to OuterKeyword, tuned interfaces;
wenzelm
parents:
17270
diff
changeset
|
177 |
|
|
58928
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58924
diff
changeset
|
178 |
|
| 58931 | 179 |
(* command kind *) |
180 |
||
|
59123
e68e44836d04
imitate command markup and rendering of Isabelle/jEdit in HTML output;
wenzelm
parents:
59033
diff
changeset
|
181 |
fun lookup_command (Keywords {commands, ...}) = Symtab.lookup commands;
|
|
e68e44836d04
imitate command markup and rendering of Isabelle/jEdit in HTML output;
wenzelm
parents:
59033
diff
changeset
|
182 |
|
|
e68e44836d04
imitate command markup and rendering of Isabelle/jEdit in HTML output;
wenzelm
parents:
59033
diff
changeset
|
183 |
fun command_kind keywords = Option.map #kind o lookup_command keywords; |
| 54523 | 184 |
|
| 58923 | 185 |
fun command_files keywords name path = |
|
59123
e68e44836d04
imitate command markup and rendering of Isabelle/jEdit in HTML output;
wenzelm
parents:
59033
diff
changeset
|
186 |
(case lookup_command keywords name of |
| 54523 | 187 |
NONE => [] |
|
58928
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58924
diff
changeset
|
188 |
| SOME {kind, files, ...} =>
|
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58924
diff
changeset
|
189 |
if kind <> thy_load then [] |
| 54523 | 190 |
else if null files then [path] |
191 |
else map (fn ext => Path.ext ext path) files); |
|
192 |
||
| 58923 | 193 |
fun command_tags keywords name = |
|
59123
e68e44836d04
imitate command markup and rendering of Isabelle/jEdit in HTML output;
wenzelm
parents:
59033
diff
changeset
|
194 |
(case lookup_command keywords name of |
|
58928
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58924
diff
changeset
|
195 |
SOME {tags, ...} => tags
|
| 58918 | 196 |
| NONE => []); |
|
27357
5b3a087ff292
moved global keywords from OuterSyntax to OuterKeyword, tuned interfaces;
wenzelm
parents:
17270
diff
changeset
|
197 |
|
| 27433 | 198 |
|
| 28431 | 199 |
(* command categories *) |
| 27433 | 200 |
|
| 51225 | 201 |
fun command_category ks = |
| 58923 | 202 |
let |
|
58928
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58924
diff
changeset
|
203 |
val tab = Symtab.make_set ks; |
| 58923 | 204 |
fun pred keywords name = |
|
59123
e68e44836d04
imitate command markup and rendering of Isabelle/jEdit in HTML output;
wenzelm
parents:
59033
diff
changeset
|
205 |
(case lookup_command keywords name of |
| 51225 | 206 |
NONE => false |
|
58928
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58924
diff
changeset
|
207 |
| SOME {kind, ...} => Symtab.defined tab kind);
|
| 58923 | 208 |
in pred end; |
|
27440
a1eda23752bd
replaced datatype category constructivism by is_theory/is_proof;
wenzelm
parents:
27433
diff
changeset
|
209 |
|
|
58999
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58931
diff
changeset
|
210 |
val is_vacuous = command_category [diag, document_heading, document_body, document_raw]; |
|
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58931
diff
changeset
|
211 |
|
| 29347 | 212 |
val is_diag = command_category [diag]; |
| 40397 | 213 |
|
|
58999
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58931
diff
changeset
|
214 |
val is_document_heading = command_category [document_heading]; |
|
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58931
diff
changeset
|
215 |
val is_document_body = command_category [document_body]; |
|
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58931
diff
changeset
|
216 |
val is_document_raw = command_category [document_raw]; |
|
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58931
diff
changeset
|
217 |
val is_document = command_category [document_heading, document_body, document_raw]; |
| 29347 | 218 |
|
219 |
val is_theory_begin = command_category [thy_begin]; |
|
220 |
||
|
48867
e9beabf045ab
some support for inlining file content into outer syntax token language;
wenzelm
parents:
48864
diff
changeset
|
221 |
val is_theory_load = command_category [thy_load]; |
|
e9beabf045ab
some support for inlining file content into outer syntax token language;
wenzelm
parents:
48864
diff
changeset
|
222 |
|
|
27440
a1eda23752bd
replaced datatype category constructivism by is_theory/is_proof;
wenzelm
parents:
27433
diff
changeset
|
223 |
val is_theory = command_category |
|
58868
c5e1cce7ace3
uniform heading commands work in any context, even in theory header;
wenzelm
parents:
58853
diff
changeset
|
224 |
[thy_begin, thy_end, thy_load, thy_decl, thy_decl_block, thy_goal]; |
|
27440
a1eda23752bd
replaced datatype category constructivism by is_theory/is_proof;
wenzelm
parents:
27433
diff
changeset
|
225 |
|
|
56944
578dc6b4be89
no reset for 'end' -- e.g. relevant for 'notepad';
wenzelm
parents:
56895
diff
changeset
|
226 |
val is_theory_body = command_category |
|
58868
c5e1cce7ace3
uniform heading commands work in any context, even in theory header;
wenzelm
parents:
58853
diff
changeset
|
227 |
[thy_load, thy_decl, thy_decl_block, thy_goal]; |
|
56944
578dc6b4be89
no reset for 'end' -- e.g. relevant for 'notepad';
wenzelm
parents:
56895
diff
changeset
|
228 |
|
|
27440
a1eda23752bd
replaced datatype category constructivism by is_theory/is_proof;
wenzelm
parents:
27433
diff
changeset
|
229 |
val is_proof = command_category |
|
58868
c5e1cce7ace3
uniform heading commands work in any context, even in theory header;
wenzelm
parents:
58853
diff
changeset
|
230 |
[qed, qed_script, qed_block, qed_global, prf_goal, prf_block, prf_open, prf_close, |
|
c5e1cce7ace3
uniform heading commands work in any context, even in theory header;
wenzelm
parents:
58853
diff
changeset
|
231 |
prf_chain, prf_decl, prf_asm, prf_asm_goal, prf_asm_goal_script, prf_script]; |
| 28431 | 232 |
|
| 51225 | 233 |
val is_proof_body = command_category |
|
58999
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58931
diff
changeset
|
234 |
[diag, document_heading, document_body, document_raw, prf_block, prf_open, prf_close, |
|
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58931
diff
changeset
|
235 |
prf_chain, prf_decl, prf_asm, prf_asm_goal, prf_asm_goal_script, prf_script]; |
| 51225 | 236 |
|
|
51274
cfc83ad52571
discontinued pointless command category "thy_schematic_goal" -- this is checked dynamically;
wenzelm
parents:
51225
diff
changeset
|
237 |
val is_theory_goal = command_category [thy_goal]; |
|
53371
47b23c582127
more explicit indication of 'guess' as improper Isar (aka "script") element;
wenzelm
parents:
52440
diff
changeset
|
238 |
val is_proof_goal = command_category [prf_goal, prf_asm_goal, prf_asm_goal_script]; |
|
53571
e58ca0311c0f
more explicit indication of 'done' as proof script element;
wenzelm
parents:
53371
diff
changeset
|
239 |
val is_qed = command_category [qed, qed_script, qed_block]; |
| 28431 | 240 |
val is_qed_global = command_category [qed_global]; |
| 27520 | 241 |
|
| 58923 | 242 |
fun is_printed keywords = is_theory_goal keywords orf is_proof keywords; |
243 |
||
|
27357
5b3a087ff292
moved global keywords from OuterSyntax to OuterKeyword, tuned interfaces;
wenzelm
parents:
17270
diff
changeset
|
244 |
end; |
|
36949
080e85d46108
renamed structure OuterKeyword to Keyword and OuterParse to Parse, keeping the old names as legacy aliases for some time;
wenzelm
parents:
36681
diff
changeset
|
245 |