author | wenzelm |
Thu, 27 May 2010 17:41:27 +0200 | |
changeset 37145 | 01aa36932739 |
parent 36959 | f5417836dbea |
child 37146 | f652333bbf8e |
permissions | -rw-r--r-- |
22124 | 1 |
(* Title: Pure/Thy/thy_output.ML |
2 |
Author: Markus Wenzel, TU Muenchen |
|
3 |
||
30390
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
4 |
Theory document output with antiquotations. |
22124 | 5 |
*) |
6 |
||
7 |
signature THY_OUTPUT = |
|
8 |
sig |
|
32738 | 9 |
val display: bool Unsynchronized.ref |
10 |
val quotes: bool Unsynchronized.ref |
|
11 |
val indent: int Unsynchronized.ref |
|
12 |
val source: bool Unsynchronized.ref |
|
13 |
val break: bool Unsynchronized.ref |
|
30367 | 14 |
val add_commands: (string * (Args.src -> Toplevel.state -> string)) list -> unit |
22124 | 15 |
val add_options: (string * (string -> (unit -> string) -> unit -> string)) list -> unit |
26893 | 16 |
val defined_command: string -> bool |
17 |
val defined_option: string -> bool |
|
22124 | 18 |
val print_antiquotations: unit -> unit |
19 |
val boolean: string -> bool |
|
20 |
val integer: string -> int |
|
30513 | 21 |
val antiquotation: string -> 'a context_parser -> |
30381
a59d792d0ccf
refined antiquotation interface: formally pass result context and (potential) result source;
wenzelm
parents:
30368
diff
changeset
|
22 |
({state: Toplevel.state, source: Args.src, context: Proof.context} -> 'a -> string) -> unit |
22124 | 23 |
datatype markup = Markup | MarkupEnv | Verbatim |
32738 | 24 |
val modes: string list Unsynchronized.ref |
30573 | 25 |
val eval_antiquote: Scan.lexicon -> Toplevel.state -> Symbol_Pos.text * Position.T -> string |
28427
cc9f7d99fb73
turned process_thy into present_thy, which merely does presentation (wrt. persistent intermediate states);
wenzelm
parents:
28273
diff
changeset
|
26 |
val present_thy: Scan.lexicon -> (string -> string list) -> (markup -> string -> bool) -> |
36959
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36950
diff
changeset
|
27 |
(Toplevel.transition * Toplevel.state) list -> (Token.T, 'a) Source.source -> Buffer.T |
28644 | 28 |
val pretty_text: string -> Pretty.T |
29 |
val pretty_term: Proof.context -> term -> Pretty.T |
|
30 |
val pretty_thm: Proof.context -> thm -> Pretty.T |
|
30390
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
31 |
val str_of_source: Args.src -> string |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
32 |
val maybe_pretty_source: ('a -> Pretty.T) -> Args.src -> 'a list -> Pretty.T list |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
33 |
val output: Pretty.T list -> string |
22124 | 34 |
end; |
35 |
||
36 |
structure ThyOutput: THY_OUTPUT = |
|
37 |
struct |
|
38 |
||
39 |
(** global options **) |
|
40 |
||
32738 | 41 |
val display = Unsynchronized.ref false; |
42 |
val quotes = Unsynchronized.ref false; |
|
43 |
val indent = Unsynchronized.ref 0; |
|
44 |
val source = Unsynchronized.ref false; |
|
45 |
val break = Unsynchronized.ref false; |
|
22124 | 46 |
|
47 |
||
48 |
||
30390
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
49 |
(** maintain global antiquotations **) |
22124 | 50 |
|
51 |
local |
|
52 |
||
53 |
val global_commands = |
|
32738 | 54 |
Unsynchronized.ref (Symtab.empty: (Args.src -> Toplevel.state -> string) Symtab.table); |
22124 | 55 |
|
56 |
val global_options = |
|
32738 | 57 |
Unsynchronized.ref (Symtab.empty: (string -> (unit -> string) -> unit -> string) Symtab.table); |
22124 | 58 |
|
59 |
fun add_item kind (name, x) tab = |
|
60 |
(if not (Symtab.defined tab name) then () |
|
27897 | 61 |
else warning ("Redefined document antiquotation " ^ kind ^ ": " ^ quote name); |
22124 | 62 |
Symtab.update (name, x) tab); |
63 |
||
64 |
in |
|
65 |
||
32738 | 66 |
fun add_commands xs = |
67 |
CRITICAL (fn () => Unsynchronized.change global_commands (fold (add_item "command") xs)); |
|
68 |
fun add_options xs = |
|
69 |
CRITICAL (fn () => Unsynchronized.change global_options (fold (add_item "option") xs)); |
|
22124 | 70 |
|
26893 | 71 |
fun defined_command name = Symtab.defined (! global_commands) name; |
72 |
fun defined_option name = Symtab.defined (! global_options) name; |
|
73 |
||
22124 | 74 |
fun command src = |
75 |
let val ((name, _), pos) = Args.dest_src src in |
|
76 |
(case Symtab.lookup (! global_commands) name of |
|
30317
159bab53b40d
improved error handling for document antiquotations;
wenzelm
parents:
30208
diff
changeset
|
77 |
NONE => error ("Unknown document antiquotation: " ^ quote name ^ Position.str_of pos) |
159bab53b40d
improved error handling for document antiquotations;
wenzelm
parents:
30208
diff
changeset
|
78 |
| SOME f => |
159bab53b40d
improved error handling for document antiquotations;
wenzelm
parents:
30208
diff
changeset
|
79 |
(Position.report (Markup.doc_antiq name) pos; |
30367 | 80 |
(fn state => f src state handle ERROR msg => |
30317
159bab53b40d
improved error handling for document antiquotations;
wenzelm
parents:
30208
diff
changeset
|
81 |
cat_error msg ("The error(s) above occurred in document antiquotation: " ^ |
159bab53b40d
improved error handling for document antiquotations;
wenzelm
parents:
30208
diff
changeset
|
82 |
quote name ^ Position.str_of pos)))) |
22124 | 83 |
end; |
84 |
||
85 |
fun option (name, s) f () = |
|
86 |
(case Symtab.lookup (! global_options) name of |
|
27897 | 87 |
NONE => error ("Unknown document antiquotation option: " ^ quote name) |
22124 | 88 |
| SOME opt => opt s f ()); |
89 |
||
90 |
fun options [] f = f |
|
91 |
| options (opt :: opts) f = option opt (options opts f); |
|
92 |
||
93 |
||
94 |
fun print_antiquotations () = |
|
27897 | 95 |
[Pretty.big_list "document antiquotation commands:" |
23272 | 96 |
(map Pretty.str (sort_strings (Symtab.keys (! global_commands)))), |
27897 | 97 |
Pretty.big_list "document antiquotation options:" |
23272 | 98 |
(map Pretty.str (sort_strings (Symtab.keys (! global_options))))] |
22124 | 99 |
|> Pretty.chunks |> Pretty.writeln; |
100 |
||
101 |
end; |
|
102 |
||
30390
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
103 |
fun antiquotation name scan out = add_commands [(name, fn src => fn state => |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
104 |
let val (x, ctxt) = Args.context_syntax "document antiquotation" |
30398 | 105 |
scan src (Toplevel.presentation_context_of state) |
30390
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
106 |
in out {source = src, state = state, context = ctxt} x end)]; |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
107 |
|
22124 | 108 |
|
109 |
||
110 |
(** syntax of antiquotations **) |
|
111 |
||
112 |
(* option values *) |
|
113 |
||
114 |
fun boolean "" = true |
|
115 |
| boolean "true" = true |
|
116 |
| boolean "false" = false |
|
117 |
| boolean s = error ("Bad boolean value: " ^ quote s); |
|
118 |
||
119 |
fun integer s = |
|
120 |
let |
|
121 |
fun int ss = |
|
122 |
(case Library.read_int ss of (i, []) => i |
|
123 |
| _ => error ("Bad integer value: " ^ quote s)); |
|
124 |
in (case Symbol.explode s of "-" :: ss => ~ (int ss) | ss => int ss) end; |
|
125 |
||
126 |
||
127 |
(* outer syntax *) |
|
128 |
||
129 |
local |
|
130 |
||
36950 | 131 |
val property = |
132 |
Parse.xname -- Scan.optional (Parse.$$$ "=" |-- Parse.!!! Parse.xname) ""; |
|
133 |
||
134 |
val properties = |
|
135 |
Scan.optional (Parse.$$$ "[" |-- Parse.!!! (Parse.enum "," property --| Parse.$$$ "]")) []; |
|
22124 | 136 |
|
137 |
in |
|
138 |
||
36950 | 139 |
val antiq = |
140 |
Parse.!!! (Parse.position Parse.xname -- properties -- Args.parse --| Scan.ahead Parse.eof) |
|
22124 | 141 |
>> (fn (((x, pos), y), z) => (y, Args.src ((x, z), pos))); |
142 |
||
143 |
end; |
|
144 |
||
145 |
||
146 |
(* eval_antiquote *) |
|
147 |
||
32738 | 148 |
val modes = Unsynchronized.ref ([]: string list); |
22124 | 149 |
|
30367 | 150 |
fun eval_antiquote lex state (txt, pos) = |
22124 | 151 |
let |
30589 | 152 |
fun expand (Antiquote.Text ss) = Symbol_Pos.content ss |
30683
e8ac1f9d9469
datatype antiquote: maintain original Position.range, which is eventually attached to the resulting ML tokens;
wenzelm
parents:
30642
diff
changeset
|
153 |
| expand (Antiquote.Antiq (ss, (pos, _))) = |
36959
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36950
diff
changeset
|
154 |
let val (opts, src) = Token.read_antiq lex antiq (ss, pos) in |
30367 | 155 |
options opts (fn () => command src state) (); (*preview errors!*) |
23935 | 156 |
PrintMode.with_modes (! modes @ Latex.modes) |
32966
5b21661fe618
indicate CRITICAL nature of various setmp combinators;
wenzelm
parents:
32898
diff
changeset
|
157 |
(Output.no_warnings_CRITICAL (options opts (fn () => command src state))) () |
27344 | 158 |
end |
159 |
| expand (Antiquote.Open _) = "" |
|
160 |
| expand (Antiquote.Close _) = ""; |
|
30642 | 161 |
val ants = Antiquote.read (Symbol_Pos.explode (txt, pos), pos); |
22124 | 162 |
in |
30635
a7d175c48228
replaced Antiquote.is_antiq by Antiquote.is_text;
wenzelm
parents:
30613
diff
changeset
|
163 |
if Toplevel.is_toplevel state andalso not (forall Antiquote.is_text ants) then |
27897 | 164 |
error ("Unknown context -- cannot expand document antiquotations" ^ Position.str_of pos) |
22124 | 165 |
else implode (map expand ants) |
166 |
end; |
|
167 |
||
168 |
||
169 |
||
170 |
(** present theory source **) |
|
171 |
||
172 |
(*NB: arranging white space around command spans is a black art.*) |
|
173 |
||
174 |
(* presentation tokens *) |
|
175 |
||
176 |
datatype token = |
|
177 |
NoToken |
|
36959
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36950
diff
changeset
|
178 |
| BasicToken of Token.T |
22124 | 179 |
| MarkupToken of string * (string * Position.T) |
180 |
| MarkupEnvToken of string * (string * Position.T) |
|
181 |
| VerbatimToken of string * Position.T; |
|
182 |
||
183 |
fun output_token lex state = |
|
30367 | 184 |
let val eval = eval_antiquote lex state in |
22124 | 185 |
fn NoToken => "" |
186 |
| BasicToken tok => Latex.output_basic tok |
|
187 |
| MarkupToken (cmd, txt) => Latex.output_markup cmd (eval txt) |
|
188 |
| MarkupEnvToken (cmd, txt) => Latex.output_markup_env cmd (eval txt) |
|
189 |
| VerbatimToken txt => Latex.output_verbatim (eval txt) |
|
190 |
end; |
|
191 |
||
192 |
fun basic_token pred (BasicToken tok) = pred tok |
|
193 |
| basic_token _ _ = false; |
|
194 |
||
36959
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36950
diff
changeset
|
195 |
val improper_token = basic_token (not o Token.is_proper); |
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36950
diff
changeset
|
196 |
val comment_token = basic_token Token.is_comment; |
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36950
diff
changeset
|
197 |
val blank_token = basic_token Token.is_blank; |
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36950
diff
changeset
|
198 |
val newline_token = basic_token Token.is_newline; |
22124 | 199 |
|
200 |
||
201 |
(* command spans *) |
|
202 |
||
203 |
type command = string * Position.T * string list; (*name, position, tags*) |
|
204 |
type source = (token * (string * int)) list; (*token, markup flag, meta-comment depth*) |
|
205 |
||
206 |
datatype span = Span of command * (source * source * source * source) * bool; |
|
207 |
||
208 |
fun make_span cmd src = |
|
209 |
let |
|
210 |
fun take_newline (tok :: toks) = |
|
211 |
if newline_token (fst tok) then ([tok], toks, true) |
|
212 |
else ([], tok :: toks, false) |
|
213 |
| take_newline [] = ([], [], false); |
|
214 |
val (((src_prefix, src_main), src_suffix1), (src_suffix2, src_appendix, newline)) = |
|
215 |
src |
|
216 |
|> take_prefix (improper_token o fst) |
|
217 |
||>> take_suffix (improper_token o fst) |
|
218 |
||>> take_prefix (comment_token o fst) |
|
219 |
||> take_newline; |
|
220 |
in Span (cmd, (src_prefix, src_main, src_suffix1 @ src_suffix2, src_appendix), newline) end; |
|
221 |
||
222 |
||
223 |
(* present spans *) |
|
224 |
||
225 |
local |
|
226 |
||
227 |
fun err_bad_nesting pos = |
|
228 |
error ("Bad nesting of commands in presentation" ^ pos); |
|
229 |
||
230 |
fun edge which f (x: string option, y) = |
|
231 |
if x = y then I |
|
232 |
else (case which (x, y) of NONE => I | SOME txt => Buffer.add (f txt)); |
|
233 |
||
234 |
val begin_tag = edge #2 Latex.begin_tag; |
|
235 |
val end_tag = edge #1 Latex.end_tag; |
|
236 |
fun open_delim delim e = edge #2 Latex.begin_delim e #> delim #> edge #2 Latex.end_delim e; |
|
237 |
fun close_delim delim e = edge #1 Latex.begin_delim e #> delim #> edge #1 Latex.end_delim e; |
|
238 |
||
239 |
in |
|
240 |
||
241 |
fun present_span lex default_tags span state state' |
|
242 |
(tag_stack, active_tag, newline, buffer, present_cont) = |
|
243 |
let |
|
244 |
val present = fold (fn (tok, (flag, 0)) => |
|
245 |
Buffer.add (output_token lex state' tok) |
|
246 |
#> Buffer.add flag |
|
247 |
| _ => I); |
|
248 |
||
249 |
val Span ((cmd_name, cmd_pos, cmd_tags), srcs, span_newline) = span; |
|
250 |
||
251 |
val (tag, tags) = tag_stack; |
|
36950 | 252 |
val tag' = try hd (fold Keyword.update_tags cmd_tags (the_list tag)); |
22124 | 253 |
|
254 |
val active_tag' = |
|
255 |
if is_some tag' then tag' |
|
256 |
else if cmd_name = "end" andalso not (Toplevel.is_toplevel state') then NONE |
|
257 |
else try hd (default_tags cmd_name); |
|
258 |
val edge = (active_tag, active_tag'); |
|
259 |
||
260 |
val newline' = |
|
261 |
if is_none active_tag' then span_newline else newline; |
|
262 |
||
263 |
val nesting = Toplevel.level state' - Toplevel.level state; |
|
264 |
val tag_stack' = |
|
265 |
if nesting = 0 andalso not (Toplevel.is_proof state) then tag_stack |
|
266 |
else if nesting >= 0 then (tag', replicate nesting tag @ tags) |
|
267 |
else |
|
33957 | 268 |
(case drop (~ nesting - 1) tags of |
22124 | 269 |
tgs :: tgss => (tgs, tgss) |
270 |
| [] => err_bad_nesting (Position.str_of cmd_pos)); |
|
271 |
||
272 |
val buffer' = |
|
273 |
buffer |
|
274 |
|> end_tag edge |
|
275 |
|> close_delim (fst present_cont) edge |
|
276 |
|> snd present_cont |
|
277 |
|> open_delim (present (#1 srcs)) edge |
|
278 |
|> begin_tag edge |
|
279 |
|> present (#2 srcs); |
|
280 |
val present_cont' = |
|
281 |
if newline then (present (#3 srcs), present (#4 srcs)) |
|
282 |
else (I, present (#3 srcs) #> present (#4 srcs)); |
|
283 |
in (tag_stack', active_tag', newline', buffer', present_cont') end; |
|
284 |
||
285 |
fun present_trailer ((_, tags), active_tag, _, buffer, present_cont) = |
|
286 |
if not (null tags) then err_bad_nesting " at end of theory" |
|
287 |
else |
|
288 |
buffer |
|
289 |
|> end_tag (active_tag, NONE) |
|
290 |
|> close_delim (fst present_cont) (active_tag, NONE) |
|
291 |
|> snd present_cont; |
|
292 |
||
293 |
end; |
|
294 |
||
295 |
||
28427
cc9f7d99fb73
turned process_thy into present_thy, which merely does presentation (wrt. persistent intermediate states);
wenzelm
parents:
28273
diff
changeset
|
296 |
(* present_thy *) |
22124 | 297 |
|
298 |
datatype markup = Markup | MarkupEnv | Verbatim; |
|
299 |
||
300 |
local |
|
301 |
||
302 |
val space_proper = |
|
36959
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36950
diff
changeset
|
303 |
Scan.one Token.is_blank -- Scan.many Token.is_comment -- Scan.one Token.is_proper; |
22124 | 304 |
|
36959
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36950
diff
changeset
|
305 |
val is_improper = not o (Token.is_proper orf Token.is_begin_ignore orf Token.is_end_ignore); |
22124 | 306 |
val improper = Scan.many is_improper; |
307 |
val improper_end = Scan.repeat (Scan.unless space_proper (Scan.one is_improper)); |
|
36959
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36950
diff
changeset
|
308 |
val blank_end = Scan.repeat (Scan.unless space_proper (Scan.one Token.is_blank)); |
22124 | 309 |
|
36959
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36950
diff
changeset
|
310 |
val opt_newline = Scan.option (Scan.one Token.is_newline); |
22124 | 311 |
|
312 |
val ignore = |
|
36959
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36950
diff
changeset
|
313 |
Scan.depend (fn d => opt_newline |-- Scan.one Token.is_begin_ignore |
22124 | 314 |
>> pair (d + 1)) || |
36959
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36950
diff
changeset
|
315 |
Scan.depend (fn d => Scan.one Token.is_end_ignore --| |
22124 | 316 |
(if d = 0 then Scan.fail_with (K "Bad nesting of meta-comments") else opt_newline) |
317 |
>> pair (d - 1)); |
|
318 |
||
36950 | 319 |
val tag = (improper -- Parse.$$$ "%" -- improper) |-- Parse.!!! (Parse.tag_name --| blank_end); |
22124 | 320 |
|
321 |
val locale = |
|
36950 | 322 |
Scan.option ((Parse.$$$ "(" -- improper -- Parse.$$$ "in") |-- |
323 |
Parse.!!! (improper |-- Parse.xname --| (improper -- Parse.$$$ ")"))); |
|
22124 | 324 |
|
325 |
in |
|
326 |
||
28427
cc9f7d99fb73
turned process_thy into present_thy, which merely does presentation (wrt. persistent intermediate states);
wenzelm
parents:
28273
diff
changeset
|
327 |
fun present_thy lex default_tags is_markup command_results src = |
22124 | 328 |
let |
329 |
(* tokens *) |
|
330 |
||
331 |
val ignored = Scan.state --| ignore |
|
332 |
>> (fn d => (NONE, (NoToken, ("", d)))); |
|
333 |
||
334 |
fun markup mark mk flag = Scan.peek (fn d => |
|
36950 | 335 |
improper |-- |
36959
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36950
diff
changeset
|
336 |
Parse.position |
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36950
diff
changeset
|
337 |
(Scan.one (Token.is_kind Token.Command andf is_markup mark o Token.content_of)) -- |
22124 | 338 |
Scan.repeat tag -- |
36950 | 339 |
Parse.!!!! ((improper -- locale -- improper) |-- Parse.doc_source --| improper_end) |
22124 | 340 |
>> (fn (((tok, pos), tags), txt) => |
36959
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36950
diff
changeset
|
341 |
let val name = Token.content_of tok |
22124 | 342 |
in (SOME (name, pos, tags), (mk (name, txt), (flag, d))) end)); |
343 |
||
344 |
val command = Scan.peek (fn d => |
|
36959
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36950
diff
changeset
|
345 |
Parse.position (Scan.one (Token.is_kind Token.Command)) -- |
22124 | 346 |
Scan.repeat tag |
347 |
>> (fn ((tok, pos), tags) => |
|
36959
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36950
diff
changeset
|
348 |
let val name = Token.content_of tok |
22124 | 349 |
in (SOME (name, pos, tags), (BasicToken tok, (Latex.markup_false, d))) end)); |
350 |
||
351 |
val cmt = Scan.peek (fn d => |
|
36950 | 352 |
Parse.$$$ "--" |-- Parse.!!!! (improper |-- Parse.doc_source) |
22124 | 353 |
>> (fn txt => (NONE, (MarkupToken ("cmt", txt), ("", d))))); |
354 |
||
355 |
val other = Scan.peek (fn d => |
|
36950 | 356 |
Parse.not_eof >> (fn tok => (NONE, (BasicToken tok, ("", d))))); |
22124 | 357 |
|
358 |
val token = |
|
359 |
ignored || |
|
360 |
markup Markup MarkupToken Latex.markup_true || |
|
361 |
markup MarkupEnv MarkupEnvToken Latex.markup_true || |
|
362 |
markup Verbatim (VerbatimToken o #2) "" || |
|
363 |
command || cmt || other; |
|
364 |
||
365 |
||
366 |
(* spans *) |
|
367 |
||
36959
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36950
diff
changeset
|
368 |
val is_eof = fn (_, (BasicToken x, _)) => Token.is_eof x | _ => false; |
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36950
diff
changeset
|
369 |
val stopper = Scan.stopper (K (NONE, (BasicToken Token.eof, ("", 0)))) is_eof; |
22124 | 370 |
|
371 |
val cmd = Scan.one (is_some o fst); |
|
27732 | 372 |
val non_cmd = Scan.one (is_none o fst andf not o is_eof) >> #2; |
22124 | 373 |
|
374 |
val comments = Scan.many (comment_token o fst o snd); |
|
375 |
val blank = Scan.one (blank_token o fst o snd); |
|
376 |
val newline = Scan.one (newline_token o fst o snd); |
|
377 |
val before_cmd = |
|
378 |
Scan.option (newline -- comments) -- |
|
379 |
Scan.option (newline -- comments) -- |
|
380 |
Scan.option (blank -- comments) -- cmd; |
|
381 |
||
382 |
val span = |
|
383 |
Scan.repeat non_cmd -- cmd -- |
|
384 |
Scan.repeat (Scan.unless before_cmd non_cmd) -- |
|
385 |
Scan.option (newline >> (single o snd)) |
|
386 |
>> (fn (((toks1, (cmd, tok2)), toks3), tok4) => |
|
387 |
make_span (the cmd) (toks1 @ (tok2 :: (toks3 @ the_default [] tok4)))); |
|
388 |
||
389 |
val spans = |
|
390 |
src |
|
36959
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36950
diff
changeset
|
391 |
|> Source.filter (not o Token.is_semicolon) |
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36950
diff
changeset
|
392 |
|> Source.source' 0 Token.stopper (Scan.error (Scan.bulk token)) NONE |
22124 | 393 |
|> Source.source stopper (Scan.error (Scan.bulk span)) NONE |
394 |
|> Source.exhaust; |
|
28427
cc9f7d99fb73
turned process_thy into present_thy, which merely does presentation (wrt. persistent intermediate states);
wenzelm
parents:
28273
diff
changeset
|
395 |
|
cc9f7d99fb73
turned process_thy into present_thy, which merely does presentation (wrt. persistent intermediate states);
wenzelm
parents:
28273
diff
changeset
|
396 |
|
cc9f7d99fb73
turned process_thy into present_thy, which merely does presentation (wrt. persistent intermediate states);
wenzelm
parents:
28273
diff
changeset
|
397 |
(* present commands *) |
cc9f7d99fb73
turned process_thy into present_thy, which merely does presentation (wrt. persistent intermediate states);
wenzelm
parents:
28273
diff
changeset
|
398 |
|
cc9f7d99fb73
turned process_thy into present_thy, which merely does presentation (wrt. persistent intermediate states);
wenzelm
parents:
28273
diff
changeset
|
399 |
fun present_command tr span st st' = |
cc9f7d99fb73
turned process_thy into present_thy, which merely does presentation (wrt. persistent intermediate states);
wenzelm
parents:
28273
diff
changeset
|
400 |
Toplevel.setmp_thread_position tr (present_span lex default_tags span st st'); |
cc9f7d99fb73
turned process_thy into present_thy, which merely does presentation (wrt. persistent intermediate states);
wenzelm
parents:
28273
diff
changeset
|
401 |
|
cc9f7d99fb73
turned process_thy into present_thy, which merely does presentation (wrt. persistent intermediate states);
wenzelm
parents:
28273
diff
changeset
|
402 |
fun present _ [] = I |
cc9f7d99fb73
turned process_thy into present_thy, which merely does presentation (wrt. persistent intermediate states);
wenzelm
parents:
28273
diff
changeset
|
403 |
| present st (((tr, st'), span) :: rest) = present_command tr span st st' #> present st' rest; |
22124 | 404 |
in |
28427
cc9f7d99fb73
turned process_thy into present_thy, which merely does presentation (wrt. persistent intermediate states);
wenzelm
parents:
28273
diff
changeset
|
405 |
if length command_results = length spans then |
22124 | 406 |
((NONE, []), NONE, true, Buffer.empty, (I, I)) |
28427
cc9f7d99fb73
turned process_thy into present_thy, which merely does presentation (wrt. persistent intermediate states);
wenzelm
parents:
28273
diff
changeset
|
407 |
|> present Toplevel.toplevel (command_results ~~ spans) |
22124 | 408 |
|> present_trailer |
409 |
else error "Messed-up outer syntax for presentation" |
|
410 |
end; |
|
411 |
||
412 |
end; |
|
413 |
||
414 |
||
415 |
||
416 |
(** setup default output **) |
|
417 |
||
418 |
(* options *) |
|
419 |
||
420 |
val _ = add_options |
|
32966
5b21661fe618
indicate CRITICAL nature of various setmp combinators;
wenzelm
parents:
32898
diff
changeset
|
421 |
[("show_types", setmp_CRITICAL Syntax.show_types o boolean), |
5b21661fe618
indicate CRITICAL nature of various setmp combinators;
wenzelm
parents:
32898
diff
changeset
|
422 |
("show_sorts", setmp_CRITICAL Syntax.show_sorts o boolean), |
5b21661fe618
indicate CRITICAL nature of various setmp combinators;
wenzelm
parents:
32898
diff
changeset
|
423 |
("show_structs", setmp_CRITICAL show_structs o boolean), |
5b21661fe618
indicate CRITICAL nature of various setmp combinators;
wenzelm
parents:
32898
diff
changeset
|
424 |
("show_question_marks", setmp_CRITICAL show_question_marks o boolean), |
33095
bbd52d2f8696
renamed NameSpace to Name_Space -- also to emphasize its subtle change in semantics;
wenzelm
parents:
32966
diff
changeset
|
425 |
("long_names", setmp_CRITICAL Name_Space.long_names o boolean), |
bbd52d2f8696
renamed NameSpace to Name_Space -- also to emphasize its subtle change in semantics;
wenzelm
parents:
32966
diff
changeset
|
426 |
("short_names", setmp_CRITICAL Name_Space.short_names o boolean), |
bbd52d2f8696
renamed NameSpace to Name_Space -- also to emphasize its subtle change in semantics;
wenzelm
parents:
32966
diff
changeset
|
427 |
("unique_names", setmp_CRITICAL Name_Space.unique_names o boolean), |
32966
5b21661fe618
indicate CRITICAL nature of various setmp combinators;
wenzelm
parents:
32898
diff
changeset
|
428 |
("eta_contract", setmp_CRITICAL Syntax.eta_contract o boolean), |
5b21661fe618
indicate CRITICAL nature of various setmp combinators;
wenzelm
parents:
32898
diff
changeset
|
429 |
("display", setmp_CRITICAL display o boolean), |
5b21661fe618
indicate CRITICAL nature of various setmp combinators;
wenzelm
parents:
32898
diff
changeset
|
430 |
("break", setmp_CRITICAL break o boolean), |
5b21661fe618
indicate CRITICAL nature of various setmp combinators;
wenzelm
parents:
32898
diff
changeset
|
431 |
("quotes", setmp_CRITICAL quotes o boolean), |
23935 | 432 |
("mode", fn s => fn f => PrintMode.with_modes [s] f), |
36745 | 433 |
("margin", setmp_CRITICAL Pretty.margin_default o integer), |
32966
5b21661fe618
indicate CRITICAL nature of various setmp combinators;
wenzelm
parents:
32898
diff
changeset
|
434 |
("indent", setmp_CRITICAL indent o integer), |
5b21661fe618
indicate CRITICAL nature of various setmp combinators;
wenzelm
parents:
32898
diff
changeset
|
435 |
("source", setmp_CRITICAL source o boolean), |
5b21661fe618
indicate CRITICAL nature of various setmp combinators;
wenzelm
parents:
32898
diff
changeset
|
436 |
("goals_limit", setmp_CRITICAL goals_limit o integer)]; |
22124 | 437 |
|
438 |
||
439 |
(* basic pretty printing *) |
|
440 |
||
441 |
fun tweak_line s = |
|
442 |
if ! display then s else Symbol.strip_blanks s; |
|
443 |
||
444 |
val pretty_text = Pretty.chunks o map Pretty.str o map tweak_line o Library.split_lines; |
|
445 |
||
26710
f79aa228c582
pretty_term: no revert_skolems here, but auto_fixes (token translations will do the rest);
wenzelm
parents:
26455
diff
changeset
|
446 |
fun pretty_term ctxt t = Syntax.pretty_term (Variable.auto_fixes t ctxt) t; |
24920 | 447 |
|
32898
e871d897969c
term styles also cover antiquotations term_type and typeof
haftmann
parents:
32890
diff
changeset
|
448 |
fun pretty_thm ctxt = pretty_term ctxt o Thm.full_prop_of; |
e871d897969c
term styles also cover antiquotations term_type and typeof
haftmann
parents:
32890
diff
changeset
|
449 |
|
e871d897969c
term styles also cover antiquotations term_type and typeof
haftmann
parents:
32890
diff
changeset
|
450 |
fun pretty_term_style ctxt (style, t) = |
e871d897969c
term styles also cover antiquotations term_type and typeof
haftmann
parents:
32890
diff
changeset
|
451 |
pretty_term ctxt (style t); |
22124 | 452 |
|
32898
e871d897969c
term styles also cover antiquotations term_type and typeof
haftmann
parents:
32890
diff
changeset
|
453 |
fun pretty_thm_style ctxt (style, th) = |
e871d897969c
term styles also cover antiquotations term_type and typeof
haftmann
parents:
32890
diff
changeset
|
454 |
pretty_term ctxt (style (Thm.full_prop_of th)); |
22124 | 455 |
|
32898
e871d897969c
term styles also cover antiquotations term_type and typeof
haftmann
parents:
32890
diff
changeset
|
456 |
fun pretty_term_typ ctxt (style, t) = |
e871d897969c
term styles also cover antiquotations term_type and typeof
haftmann
parents:
32890
diff
changeset
|
457 |
let val t' = style t |
37145
01aa36932739
renamed structure TypeInfer to Type_Infer, keeping the old name as legacy alias for some time;
wenzelm
parents:
36959
diff
changeset
|
458 |
in pretty_term ctxt (Type_Infer.constrain (Term.fastype_of t') t') end; |
32898
e871d897969c
term styles also cover antiquotations term_type and typeof
haftmann
parents:
32890
diff
changeset
|
459 |
|
e871d897969c
term styles also cover antiquotations term_type and typeof
haftmann
parents:
32890
diff
changeset
|
460 |
fun pretty_term_typeof ctxt (style, t) = |
e871d897969c
term styles also cover antiquotations term_type and typeof
haftmann
parents:
32890
diff
changeset
|
461 |
Syntax.pretty_typ ctxt (Term.fastype_of (style t)); |
22124 | 462 |
|
25373
ccbf65080fdf
@{const}: improved ProofContext.read_const does the job;
wenzelm
parents:
25241
diff
changeset
|
463 |
fun pretty_const ctxt c = |
ccbf65080fdf
@{const}: improved ProofContext.read_const does the job;
wenzelm
parents:
25241
diff
changeset
|
464 |
let |
ccbf65080fdf
@{const}: improved ProofContext.read_const does the job;
wenzelm
parents:
25241
diff
changeset
|
465 |
val t = Const (c, Consts.type_scheme (ProofContext.consts_of ctxt) c) |
ccbf65080fdf
@{const}: improved ProofContext.read_const does the job;
wenzelm
parents:
25241
diff
changeset
|
466 |
handle TYPE (msg, _, _) => error msg; |
ccbf65080fdf
@{const}: improved ProofContext.read_const does the job;
wenzelm
parents:
25241
diff
changeset
|
467 |
val ([t'], _) = Variable.import_terms true [t] ctxt; |
ccbf65080fdf
@{const}: improved ProofContext.read_const does the job;
wenzelm
parents:
25241
diff
changeset
|
468 |
in pretty_term ctxt t' end; |
22124 | 469 |
|
25407
2859cf34aaf0
abbrev: bypass full term check via ProofContext.standard_infer_types (prevents forced expansion);
wenzelm
parents:
25373
diff
changeset
|
470 |
fun pretty_abbrev ctxt s = |
22124 | 471 |
let |
25407
2859cf34aaf0
abbrev: bypass full term check via ProofContext.standard_infer_types (prevents forced expansion);
wenzelm
parents:
25373
diff
changeset
|
472 |
val t = Syntax.parse_term ctxt s |> singleton (ProofContext.standard_infer_types ctxt); |
24920 | 473 |
fun err () = error ("Abbreviated constant expected: " ^ Syntax.string_of_term ctxt t); |
22124 | 474 |
val (head, args) = Term.strip_comb t; |
475 |
val (c, T) = Term.dest_Const head handle TERM _ => err (); |
|
25054 | 476 |
val (U, u) = Consts.the_abbreviation (ProofContext.consts_of ctxt) c |
22124 | 477 |
handle TYPE _ => err (); |
478 |
val t' = Term.betapplys (Envir.expand_atom T (U, u), args); |
|
32898
e871d897969c
term styles also cover antiquotations term_type and typeof
haftmann
parents:
32890
diff
changeset
|
479 |
val eq = Logic.mk_equals (t, t'); |
e871d897969c
term styles also cover antiquotations term_type and typeof
haftmann
parents:
32890
diff
changeset
|
480 |
val ctxt' = Variable.auto_fixes eq ctxt; |
e871d897969c
term styles also cover antiquotations term_type and typeof
haftmann
parents:
32890
diff
changeset
|
481 |
in ProofContext.pretty_term_abbrev ctxt' eq end; |
22124 | 482 |
|
33388 | 483 |
fun pretty_prf full ctxt = Proof_Syntax.pretty_proof_of ctxt full; |
22124 | 484 |
|
485 |
fun pretty_theory ctxt name = |
|
486 |
(Theory.requires (ProofContext.theory_of ctxt) name "presentation"; Pretty.str name); |
|
487 |
||
488 |
||
30390
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
489 |
(* default output *) |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
490 |
|
36959
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36950
diff
changeset
|
491 |
val str_of_source = space_implode " " o map Token.unparse o #2 o #1 o Args.dest_src; |
22124 | 492 |
|
30390
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
493 |
fun maybe_pretty_source pretty src xs = |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
494 |
map pretty xs (*always pretty in order to exhibit errors!*) |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
495 |
|> (if ! source then K [pretty_text (str_of_source src)] else I); |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
496 |
|
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
497 |
fun output prts = |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
498 |
prts |
22124 | 499 |
|> (if ! quotes then map Pretty.quote else I) |
500 |
|> (if ! display then |
|
501 |
map (Output.output o Pretty.string_of o Pretty.indent (! indent)) |
|
502 |
#> space_implode "\\isasep\\isanewline%\n" |
|
503 |
#> enclose "\\begin{isabelle}%\n" "%\n\\end{isabelle}" |
|
504 |
else |
|
505 |
map (Output.output o (if ! break then Pretty.string_of else Pretty.str_of)) |
|
506 |
#> space_implode "\\isasep\\isanewline%\n" |
|
507 |
#> enclose "\\isa{" "}"); |
|
508 |
||
30390
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
509 |
|
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
510 |
|
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
511 |
(** concrete antiquotations **) |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
512 |
|
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
513 |
(* basic entities *) |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
514 |
|
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
515 |
local |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
516 |
|
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
517 |
fun basic_entities name scan pretty = antiquotation name scan |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
518 |
(fn {source, context, ...} => output o maybe_pretty_source (pretty context) source); |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
519 |
|
32890
77df12652210
generalized term styles: transformations may depend on arguments; modernized term_style module; antiquotations thm, prop and term accepting term styles
haftmann
parents:
32738
diff
changeset
|
520 |
fun basic_entities_style name scan pretty = antiquotation name scan |
77df12652210
generalized term styles: transformations may depend on arguments; modernized term_style module; antiquotations thm, prop and term accepting term styles
haftmann
parents:
32738
diff
changeset
|
521 |
(fn {source, context, ...} => fn (style, xs) => |
77df12652210
generalized term styles: transformations may depend on arguments; modernized term_style module; antiquotations thm, prop and term accepting term styles
haftmann
parents:
32738
diff
changeset
|
522 |
output (maybe_pretty_source (fn x => pretty context (style, x)) source xs)); |
77df12652210
generalized term styles: transformations may depend on arguments; modernized term_style module; antiquotations thm, prop and term accepting term styles
haftmann
parents:
32738
diff
changeset
|
523 |
|
30390
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
524 |
fun basic_entity name scan = basic_entities name (scan >> single); |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
525 |
|
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
526 |
in |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
527 |
|
32890
77df12652210
generalized term styles: transformations may depend on arguments; modernized term_style module; antiquotations thm, prop and term accepting term styles
haftmann
parents:
32738
diff
changeset
|
528 |
val _ = basic_entities_style "thm" (Term_Style.parse -- Attrib.thms) pretty_thm_style; |
77df12652210
generalized term styles: transformations may depend on arguments; modernized term_style module; antiquotations thm, prop and term accepting term styles
haftmann
parents:
32738
diff
changeset
|
529 |
val _ = basic_entity "prop" (Term_Style.parse -- Args.prop) pretty_term_style; |
77df12652210
generalized term styles: transformations may depend on arguments; modernized term_style module; antiquotations thm, prop and term accepting term styles
haftmann
parents:
32738
diff
changeset
|
530 |
val _ = basic_entity "term" (Term_Style.parse -- Args.term) pretty_term_style; |
32898
e871d897969c
term styles also cover antiquotations term_type and typeof
haftmann
parents:
32890
diff
changeset
|
531 |
val _ = basic_entity "term_type" (Term_Style.parse -- Args.term) pretty_term_typ; |
e871d897969c
term styles also cover antiquotations term_type and typeof
haftmann
parents:
32890
diff
changeset
|
532 |
val _ = basic_entity "typeof" (Term_Style.parse -- Args.term) pretty_term_typeof; |
35399
3881972fcfca
clarified ProofContext.read_const(_proper)/Args.const(_proper) wrt. strict logical consts;
wenzelm
parents:
33957
diff
changeset
|
533 |
val _ = basic_entity "const" (Args.const_proper false) pretty_const; |
30390
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
534 |
val _ = basic_entity "abbrev" (Scan.lift Args.name_source) pretty_abbrev; |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
535 |
val _ = basic_entity "typ" Args.typ_abbrev Syntax.pretty_typ; |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
536 |
val _ = basic_entity "text" (Scan.lift Args.name) (K pretty_text); |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
537 |
val _ = basic_entities "prf" Attrib.thms (pretty_prf false); |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
538 |
val _ = basic_entities "full_prf" Attrib.thms (pretty_prf true); |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
539 |
val _ = basic_entity "theory" (Scan.lift Args.name) pretty_theory; |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
540 |
|
32898
e871d897969c
term styles also cover antiquotations term_type and typeof
haftmann
parents:
32890
diff
changeset
|
541 |
val _ = basic_entities_style "thm_style" (Term_Style.parse_bare -- Attrib.thms) pretty_thm_style; |
e871d897969c
term styles also cover antiquotations term_type and typeof
haftmann
parents:
32890
diff
changeset
|
542 |
val _ = basic_entity "term_style" (Term_Style.parse_bare -- Args.term) pretty_term_style; |
e871d897969c
term styles also cover antiquotations term_type and typeof
haftmann
parents:
32890
diff
changeset
|
543 |
|
30390
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
544 |
end; |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
545 |
|
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
546 |
|
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
547 |
(* goal state *) |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
548 |
|
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
549 |
local |
22124 | 550 |
|
30367 | 551 |
fun proof_state state = |
552 |
(case try Toplevel.proof_of state of |
|
553 |
SOME prf => prf |
|
22124 | 554 |
| _ => error "No proof state"); |
555 |
||
30390
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
556 |
fun goal_state name main_goal = antiquotation name (Scan.succeed ()) |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
557 |
(fn {state, ...} => fn () => output |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
558 |
[Pretty.chunks (Proof.pretty_goals main_goal (proof_state state))]); |
22124 | 559 |
|
30390
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
560 |
in |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
561 |
|
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
562 |
val _ = goal_state "goals" true; |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
563 |
val _ = goal_state "subgoals" false; |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
564 |
|
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
565 |
end; |
22124 | 566 |
|
567 |
||
30390
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
568 |
(* embedded lemma *) |
27522 | 569 |
|
36950 | 570 |
val _ = Keyword.keyword "by"; |
27381 | 571 |
|
30390
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
572 |
val _ = antiquotation "lemma" |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
573 |
(Args.prop -- Scan.lift (Args.$$$ "by" |-- Method.parse -- Scan.option Method.parse)) |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
574 |
(fn {source, context, ...} => fn (prop, methods) => |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
575 |
let |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
576 |
val prop_src = |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
577 |
(case Args.dest_src source of ((a, arg :: _), pos) => Args.src ((a, [arg]), pos)); |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
578 |
val _ = context |
36323
655e2d74de3a
modernized naming conventions of main Isar proof elements;
wenzelm
parents:
36163
diff
changeset
|
579 |
|> Proof.theorem NONE (K I) [[(prop, [])]] |
30390
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
580 |
|> Proof.global_terminal_proof methods; |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
581 |
in output (maybe_pretty_source (pretty_term context) prop_src [prop]) end); |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
582 |
|
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
583 |
|
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
584 |
(* ML text *) |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
585 |
|
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
586 |
local |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
587 |
|
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
588 |
fun ml_text name ml = antiquotation name (Scan.lift Args.name_source_position) |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
589 |
(fn {context, ...} => fn (txt, pos) => |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
590 |
(ML_Context.eval_in (SOME context) false pos (ml txt); |
30573 | 591 |
Symbol_Pos.content (Symbol_Pos.explode (txt, pos)) |
30390
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
592 |
|> (if ! quotes then quote else I) |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
593 |
|> (if ! display then enclose "\\begin{verbatim}\n" "\n\\end{verbatim}" |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
594 |
else |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
595 |
split_lines |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
596 |
#> map (space_implode "\\verb,|," o map (enclose "\\verb|" "|") o space_explode "|") |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
597 |
#> space_implode "\\isasep\\isanewline%\n"))); |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
598 |
|
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
599 |
in |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
600 |
|
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
601 |
val _ = ml_text "ML" (fn txt => "fn _ => (" ^ txt ^ ");"); |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
602 |
val _ = ml_text "ML_type" (fn txt => "val _ = NONE : (" ^ txt ^ ") option;"); |
30394 | 603 |
val _ = ml_text "ML_struct" (fn txt => "functor XXX() = struct structure XX = " ^ txt ^ " end;"); |
36163
823c9400eb62
proper checking of ML functors (in Poly/ML 5.2 or later);
wenzelm
parents:
35399
diff
changeset
|
604 |
val _ = ml_text "ML_functor" (fn txt => "ML_Env.check_functor " ^ ML_Syntax.print_string txt); |
30394 | 605 |
val _ = ml_text "ML_text" (K ""); |
22124 | 606 |
|
607 |
end; |
|
30390
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
608 |
|
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
609 |
end; |