author | wenzelm |
Tue, 29 Mar 2016 16:20:48 +0200 | |
changeset 62749 | eba34ff9671c |
parent 62453 | b93cc7d73431 |
child 62969 | 9f394a16c557 |
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 |
|
38767
d8da44a8dd25
proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents:
38766
diff
changeset
|
9 |
val display: bool Config.T |
d8da44a8dd25
proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents:
38766
diff
changeset
|
10 |
val quotes: bool Config.T |
59175
bf465f335e85
system option "pretty_margin" is superseded by "thy_output_margin";
wenzelm
parents:
59067
diff
changeset
|
11 |
val margin: int Config.T |
38767
d8da44a8dd25
proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents:
38766
diff
changeset
|
12 |
val indent: int Config.T |
d8da44a8dd25
proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents:
38766
diff
changeset
|
13 |
val source: bool Config.T |
d8da44a8dd25
proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents:
38766
diff
changeset
|
14 |
val break: bool Config.T |
52042 | 15 |
val modes: string Config.T |
38766
8891f4520d16
Thy_Output: options based on proper context, although Thy_Output.add_wrapper still allows to maintain old-style wrapper combinators (setmp_CRITICAL etc.);
wenzelm
parents:
37216
diff
changeset
|
16 |
val add_wrapper: ((unit -> string) -> unit -> string) -> Proof.context -> Proof.context |
43564
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42669
diff
changeset
|
17 |
val add_option: binding -> (string -> Proof.context -> Proof.context) -> theory -> theory |
55743 | 18 |
val check_command: Proof.context -> xstring * Position.T -> string |
19 |
val check_option: Proof.context -> xstring * Position.T -> string |
|
59917
9830c944670f
more uniform "verbose" option to print name space;
wenzelm
parents:
59809
diff
changeset
|
20 |
val print_antiquotations: bool -> Proof.context -> unit |
43564
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42669
diff
changeset
|
21 |
val antiquotation: binding -> 'a context_parser -> |
58011
bc6bced136e5
tuned signature -- moved type src to Token, without aliases;
wenzelm
parents:
57080
diff
changeset
|
22 |
({source: Token.src, state: Toplevel.state, context: Proof.context} -> 'a -> string) -> |
43564
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42669
diff
changeset
|
23 |
theory -> theory |
22124 | 24 |
val boolean: string -> bool |
25 |
val integer: string -> int |
|
61456 | 26 |
val eval_antiquote: Toplevel.state -> Antiquote.text_antiquote -> string |
61457 | 27 |
val output_text: Toplevel.state -> {markdown: bool} -> Input.source -> string |
58928
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58923
diff
changeset
|
28 |
val present_thy: theory -> (Toplevel.transition * Toplevel.state) list -> Token.T list -> Buffer.T |
38767
d8da44a8dd25
proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents:
38766
diff
changeset
|
29 |
val pretty_text: Proof.context -> string -> Pretty.T |
28644 | 30 |
val pretty_term: Proof.context -> term -> Pretty.T |
31 |
val pretty_thm: Proof.context -> thm -> Pretty.T |
|
58011
bc6bced136e5
tuned signature -- moved type src to Token, without aliases;
wenzelm
parents:
57080
diff
changeset
|
32 |
val str_of_source: Token.src -> string |
38767
d8da44a8dd25
proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents:
38766
diff
changeset
|
33 |
val maybe_pretty_source: (Proof.context -> 'a -> Pretty.T) -> Proof.context -> |
58011
bc6bced136e5
tuned signature -- moved type src to Token, without aliases;
wenzelm
parents:
57080
diff
changeset
|
34 |
Token.src -> 'a list -> Pretty.T list |
59175
bf465f335e85
system option "pretty_margin" is superseded by "thy_output_margin";
wenzelm
parents:
59067
diff
changeset
|
35 |
val string_of_margin: Proof.context -> Pretty.T -> string |
38767
d8da44a8dd25
proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents:
38766
diff
changeset
|
36 |
val output: Proof.context -> Pretty.T list -> string |
58716
23a380cc45f4
official support for "tt" style variants, avoid fragile \verb in LaTeX;
wenzelm
parents:
58069
diff
changeset
|
37 |
val verbatim_text: Proof.context -> string -> string |
61457 | 38 |
val document_command: {markdown: bool} -> (xstring * Position.T) option * Input.source -> |
58928
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58923
diff
changeset
|
39 |
Toplevel.transition -> Toplevel.transition |
22124 | 40 |
end; |
41 |
||
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
37198
diff
changeset
|
42 |
structure Thy_Output: THY_OUTPUT = |
22124 | 43 |
struct |
44 |
||
52042 | 45 |
(** options **) |
22124 | 46 |
|
56438 | 47 |
val display = Attrib.setup_option_bool ("thy_output_display", @{here}); |
48 |
val break = Attrib.setup_option_bool ("thy_output_break", @{here}); |
|
49 |
val quotes = Attrib.setup_option_bool ("thy_output_quotes", @{here}); |
|
59175
bf465f335e85
system option "pretty_margin" is superseded by "thy_output_margin";
wenzelm
parents:
59067
diff
changeset
|
50 |
val margin = Attrib.setup_option_int ("thy_output_margin", @{here}); |
56438 | 51 |
val indent = Attrib.setup_option_int ("thy_output_indent", @{here}); |
52 |
val source = Attrib.setup_option_bool ("thy_output_source", @{here}); |
|
53 |
val modes = Attrib.setup_option_string ("thy_output_modes", @{here}); |
|
22124 | 54 |
|
55 |
||
38766
8891f4520d16
Thy_Output: options based on proper context, although Thy_Output.add_wrapper still allows to maintain old-style wrapper combinators (setmp_CRITICAL etc.);
wenzelm
parents:
37216
diff
changeset
|
56 |
structure Wrappers = Proof_Data |
8891f4520d16
Thy_Output: options based on proper context, although Thy_Output.add_wrapper still allows to maintain old-style wrapper combinators (setmp_CRITICAL etc.);
wenzelm
parents:
37216
diff
changeset
|
57 |
( |
8891f4520d16
Thy_Output: options based on proper context, although Thy_Output.add_wrapper still allows to maintain old-style wrapper combinators (setmp_CRITICAL etc.);
wenzelm
parents:
37216
diff
changeset
|
58 |
type T = ((unit -> string) -> unit -> string) list; |
8891f4520d16
Thy_Output: options based on proper context, although Thy_Output.add_wrapper still allows to maintain old-style wrapper combinators (setmp_CRITICAL etc.);
wenzelm
parents:
37216
diff
changeset
|
59 |
fun init _ = []; |
8891f4520d16
Thy_Output: options based on proper context, although Thy_Output.add_wrapper still allows to maintain old-style wrapper combinators (setmp_CRITICAL etc.);
wenzelm
parents:
37216
diff
changeset
|
60 |
); |
8891f4520d16
Thy_Output: options based on proper context, although Thy_Output.add_wrapper still allows to maintain old-style wrapper combinators (setmp_CRITICAL etc.);
wenzelm
parents:
37216
diff
changeset
|
61 |
|
8891f4520d16
Thy_Output: options based on proper context, although Thy_Output.add_wrapper still allows to maintain old-style wrapper combinators (setmp_CRITICAL etc.);
wenzelm
parents:
37216
diff
changeset
|
62 |
fun add_wrapper wrapper = Wrappers.map (cons wrapper); |
8891f4520d16
Thy_Output: options based on proper context, although Thy_Output.add_wrapper still allows to maintain old-style wrapper combinators (setmp_CRITICAL etc.);
wenzelm
parents:
37216
diff
changeset
|
63 |
|
8891f4520d16
Thy_Output: options based on proper context, although Thy_Output.add_wrapper still allows to maintain old-style wrapper combinators (setmp_CRITICAL etc.);
wenzelm
parents:
37216
diff
changeset
|
64 |
val wrap = Wrappers.get #> fold (fn wrapper => fn f => wrapper f); |
8891f4520d16
Thy_Output: options based on proper context, although Thy_Output.add_wrapper still allows to maintain old-style wrapper combinators (setmp_CRITICAL etc.);
wenzelm
parents:
37216
diff
changeset
|
65 |
|
8891f4520d16
Thy_Output: options based on proper context, although Thy_Output.add_wrapper still allows to maintain old-style wrapper combinators (setmp_CRITICAL etc.);
wenzelm
parents:
37216
diff
changeset
|
66 |
|
22124 | 67 |
|
30390
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
68 |
(** maintain global antiquotations **) |
22124 | 69 |
|
43564
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42669
diff
changeset
|
70 |
structure Antiquotations = Theory_Data |
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42669
diff
changeset
|
71 |
( |
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42669
diff
changeset
|
72 |
type T = |
58011
bc6bced136e5
tuned signature -- moved type src to Token, without aliases;
wenzelm
parents:
57080
diff
changeset
|
73 |
(Token.src -> Toplevel.state -> Proof.context -> string) Name_Space.table * |
43564
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42669
diff
changeset
|
74 |
(string -> Proof.context -> Proof.context) Name_Space.table; |
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42669
diff
changeset
|
75 |
val empty : T = |
50201
c26369c9eda6
Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents:
49847
diff
changeset
|
76 |
(Name_Space.empty_table Markup.document_antiquotationN, |
c26369c9eda6
Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents:
49847
diff
changeset
|
77 |
Name_Space.empty_table Markup.document_antiquotation_optionN); |
43564
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42669
diff
changeset
|
78 |
val extend = I; |
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42669
diff
changeset
|
79 |
fun merge ((commands1, options1), (commands2, options2)) : T = |
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42669
diff
changeset
|
80 |
(Name_Space.merge_tables (commands1, commands2), |
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42669
diff
changeset
|
81 |
Name_Space.merge_tables (options1, options2)); |
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42669
diff
changeset
|
82 |
); |
22124 | 83 |
|
55743 | 84 |
val get_antiquotations = Antiquotations.get o Proof_Context.theory_of; |
85 |
||
47005
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
46958
diff
changeset
|
86 |
fun add_command name cmd thy = thy |
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
46958
diff
changeset
|
87 |
|> Antiquotations.map (apfst (Name_Space.define (Context.Theory thy) true (name, cmd) #> snd)); |
22124 | 88 |
|
47005
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
46958
diff
changeset
|
89 |
fun add_option name opt thy = thy |
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
46958
diff
changeset
|
90 |
|> Antiquotations.map (apsnd (Name_Space.define (Context.Theory thy) true (name, opt) #> snd)); |
22124 | 91 |
|
55743 | 92 |
fun check_command ctxt = #1 o Name_Space.check (Context.Proof ctxt) (#1 (get_antiquotations ctxt)); |
26893 | 93 |
|
55743 | 94 |
fun check_option ctxt = #1 o Name_Space.check (Context.Proof ctxt) (#2 (get_antiquotations ctxt)); |
43564
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42669
diff
changeset
|
95 |
|
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42669
diff
changeset
|
96 |
fun command src state ctxt = |
61814
1ca1142e1711
clarified type Token.src: plain token list, with usual implicit value assignment;
wenzelm
parents:
61748
diff
changeset
|
97 |
let val (src', f) = Token.check_src ctxt (#1 o get_antiquotations) src |
56029
8bedca4bd5a3
clarified Args.src: more abstract type, position refers to name only;
wenzelm
parents:
56028
diff
changeset
|
98 |
in f src' state ctxt end; |
22124 | 99 |
|
43564
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42669
diff
changeset
|
100 |
fun option ((xname, pos), s) ctxt = |
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42669
diff
changeset
|
101 |
let |
55743 | 102 |
val (_, opt) = |
103 |
Name_Space.check (Context.Proof ctxt) (#2 (get_antiquotations ctxt)) (xname, pos); |
|
43564
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42669
diff
changeset
|
104 |
in opt s ctxt end; |
22124 | 105 |
|
59917
9830c944670f
more uniform "verbose" option to print name space;
wenzelm
parents:
59809
diff
changeset
|
106 |
fun print_antiquotations verbose ctxt = |
43564
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42669
diff
changeset
|
107 |
let |
55743 | 108 |
val (commands, options) = get_antiquotations ctxt; |
59917
9830c944670f
more uniform "verbose" option to print name space;
wenzelm
parents:
59809
diff
changeset
|
109 |
val command_names = map #1 (Name_Space.markup_table verbose ctxt commands); |
9830c944670f
more uniform "verbose" option to print name space;
wenzelm
parents:
59809
diff
changeset
|
110 |
val option_names = map #1 (Name_Space.markup_table verbose ctxt options); |
43564
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42669
diff
changeset
|
111 |
in |
50301 | 112 |
[Pretty.big_list "document antiquotations:" (map Pretty.mark_str command_names), |
59175
bf465f335e85
system option "pretty_margin" is superseded by "thy_output_margin";
wenzelm
parents:
59067
diff
changeset
|
113 |
Pretty.big_list "document antiquotation options:" (map Pretty.mark_str option_names)] |
bf465f335e85
system option "pretty_margin" is superseded by "thy_output_margin";
wenzelm
parents:
59067
diff
changeset
|
114 |
end |> Pretty.writeln_chunks; |
22124 | 115 |
|
56069
451d5b73f8cf
simplified programming interface to define ML antiquotations -- NB: the transformed context ignores updates of the context parser;
wenzelm
parents:
56052
diff
changeset
|
116 |
fun antiquotation name scan body = |
38766
8891f4520d16
Thy_Output: options based on proper context, although Thy_Output.add_wrapper still allows to maintain old-style wrapper combinators (setmp_CRITICAL etc.);
wenzelm
parents:
37216
diff
changeset
|
117 |
add_command name |
8891f4520d16
Thy_Output: options based on proper context, although Thy_Output.add_wrapper still allows to maintain old-style wrapper combinators (setmp_CRITICAL etc.);
wenzelm
parents:
37216
diff
changeset
|
118 |
(fn src => fn state => fn ctxt => |
58011
bc6bced136e5
tuned signature -- moved type src to Token, without aliases;
wenzelm
parents:
57080
diff
changeset
|
119 |
let val (x, ctxt') = Token.syntax scan src ctxt |
56069
451d5b73f8cf
simplified programming interface to define ML antiquotations -- NB: the transformed context ignores updates of the context parser;
wenzelm
parents:
56052
diff
changeset
|
120 |
in body {source = src, state = state, context = ctxt'} x end); |
30390
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
121 |
|
22124 | 122 |
|
123 |
||
124 |
(** syntax of antiquotations **) |
|
125 |
||
126 |
(* option values *) |
|
127 |
||
128 |
fun boolean "" = true |
|
129 |
| boolean "true" = true |
|
130 |
| boolean "false" = false |
|
131 |
| boolean s = error ("Bad boolean value: " ^ quote s); |
|
132 |
||
133 |
fun integer s = |
|
134 |
let |
|
135 |
fun int ss = |
|
136 |
(case Library.read_int ss of (i, []) => i |
|
137 |
| _ => error ("Bad integer value: " ^ quote s)); |
|
138 |
in (case Symbol.explode s of "-" :: ss => ~ (int ss) | ss => int ss) end; |
|
139 |
||
140 |
||
141 |
(* outer syntax *) |
|
142 |
||
143 |
local |
|
144 |
||
36950 | 145 |
val property = |
43564
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42669
diff
changeset
|
146 |
Parse.position Parse.xname -- Scan.optional (Parse.$$$ "=" |-- Parse.!!! Parse.xname) ""; |
36950 | 147 |
|
148 |
val properties = |
|
149 |
Scan.optional (Parse.$$$ "[" |-- Parse.!!! (Parse.enum "," property --| Parse.$$$ "]")) []; |
|
22124 | 150 |
|
151 |
in |
|
152 |
||
36950 | 153 |
val antiq = |
40800
330eb65c9469
Parse.liberal_name for document antiquotations and attributes;
wenzelm
parents:
39689
diff
changeset
|
154 |
Parse.!!! |
61814
1ca1142e1711
clarified type Token.src: plain token list, with usual implicit value assignment;
wenzelm
parents:
61748
diff
changeset
|
155 |
(Parse.token Parse.liberal_name -- properties -- Parse.args --| Scan.ahead Parse.eof) |
1ca1142e1711
clarified type Token.src: plain token list, with usual implicit value assignment;
wenzelm
parents:
61748
diff
changeset
|
156 |
>> (fn ((name, props), args) => (props, name :: args)); |
22124 | 157 |
|
158 |
end; |
|
159 |
||
160 |
||
61457 | 161 |
(* eval antiquote *) |
58928
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58923
diff
changeset
|
162 |
|
61471 | 163 |
local |
164 |
||
165 |
fun eval_antiq state (opts, src) = |
|
166 |
let |
|
167 |
val preview_ctxt = fold option opts (Toplevel.presentation_context_of state); |
|
168 |
val print_ctxt = Context_Position.set_visible false preview_ctxt; |
|
169 |
||
170 |
fun cmd ctxt = wrap ctxt (fn () => command src state ctxt) (); |
|
171 |
val _ = cmd preview_ctxt; |
|
172 |
val print_modes = space_explode "," (Config.get print_ctxt modes) @ Latex.modes; |
|
173 |
in Print_Mode.with_modes print_modes (fn () => cmd print_ctxt) () end; |
|
174 |
||
175 |
in |
|
176 |
||
61456 | 177 |
fun eval_antiquote _ (Antiquote.Text ss) = Symbol_Pos.content ss |
61473
34d1913f0b20
clarified control antiquotations: decode control symbol to get name;
wenzelm
parents:
61471
diff
changeset
|
178 |
| eval_antiquote state (Antiquote.Control {name, body, ...}) = |
61814
1ca1142e1711
clarified type Token.src: plain token list, with usual implicit value assignment;
wenzelm
parents:
61748
diff
changeset
|
179 |
eval_antiq state |
1ca1142e1711
clarified type Token.src: plain token list, with usual implicit value assignment;
wenzelm
parents:
61748
diff
changeset
|
180 |
([], Token.make_src name (if null body then [] else [Token.read_cartouche body])) |
61473
34d1913f0b20
clarified control antiquotations: decode control symbol to get name;
wenzelm
parents:
61471
diff
changeset
|
181 |
| eval_antiquote state (Antiquote.Antiq {range = (pos, _), body, ...}) = |
61456 | 182 |
let |
183 |
val keywords = |
|
184 |
(case try Toplevel.presentation_context_of state of |
|
185 |
SOME ctxt => Thy_Header.get_keywords' ctxt |
|
186 |
| NONE => |
|
187 |
error ("Unknown context -- cannot expand document antiquotations" ^ |
|
188 |
Position.here pos)); |
|
61473
34d1913f0b20
clarified control antiquotations: decode control symbol to get name;
wenzelm
parents:
61471
diff
changeset
|
189 |
in eval_antiq state (Token.read_antiq keywords antiq (body, pos)) end; |
61456 | 190 |
|
61471 | 191 |
end; |
42508
e21362bf1d93
allow nested @{antiq} (nonterminal) and @@{antiq} terminal;
wenzelm
parents:
42399
diff
changeset
|
192 |
|
56548 | 193 |
|
61457 | 194 |
(* output text *) |
56548 | 195 |
|
61457 | 196 |
fun output_text state {markdown} source = |
197 |
let |
|
62749 | 198 |
val is_reported = |
199 |
(case try Toplevel.context_of state of |
|
200 |
SOME ctxt => Context_Position.is_visible ctxt |
|
201 |
| NONE => true); |
|
202 |
||
61457 | 203 |
val pos = Input.pos_of source; |
204 |
val syms = Input.source_explode source; |
|
205 |
||
62749 | 206 |
val _ = |
207 |
if is_reported then |
|
208 |
Position.report pos (Markup.language_document (Input.is_delimited source)) |
|
209 |
else (); |
|
210 |
||
61595 | 211 |
val output_antiquotes = map (eval_antiquote state) #> implode; |
61036
f6f2959bed67
clarified language context, e.g. relevant for symbols;
wenzelm
parents:
60100
diff
changeset
|
212 |
|
61461 | 213 |
fun output_line line = |
214 |
(if Markdown.line_is_item line then "\\item " else "") ^ |
|
215 |
output_antiquotes (Markdown.line_content line); |
|
216 |
||
61457 | 217 |
fun output_blocks blocks = space_implode "\n\n" (map output_block blocks) |
61461 | 218 |
and output_block (Markdown.Paragraph lines) = cat_lines (map output_line lines) |
61459
5f2ddeb15c06
clarified nesting of paragraphs: indentation is taken into account more uniformly;
wenzelm
parents:
61458
diff
changeset
|
219 |
| output_block (Markdown.List {kind, body, ...}) = |
61462 | 220 |
Latex.environment (Markdown.print_kind kind) (output_blocks body); |
61457 | 221 |
in |
222 |
if Toplevel.is_skipped_proof state then "" |
|
223 |
else if markdown andalso exists (Markdown.is_control o Symbol_Pos.symbol) syms |
|
224 |
then |
|
225 |
let |
|
62749 | 226 |
val ants = Antiquote.parse pos syms; |
227 |
val reports = Antiquote.antiq_reports ants; |
|
61457 | 228 |
val blocks = Markdown.read_antiquotes ants; |
62749 | 229 |
val _ = if is_reported then Position.reports (reports @ Markdown.reports blocks) else (); |
61457 | 230 |
in output_blocks blocks end |
231 |
else |
|
232 |
let |
|
62749 | 233 |
val ants = Antiquote.parse pos (Symbol_Pos.trim_blanks syms); |
234 |
val reports = Antiquote.antiq_reports ants; |
|
235 |
val _ = if is_reported then Position.reports (reports @ Markdown.text_reports ants) else (); |
|
61457 | 236 |
in output_antiquotes ants end |
237 |
end; |
|
48918
6e5fd4585512
check side-comments of command spans (normally filtered out in Outer_Syntax.toplevel_source);
wenzelm
parents:
47005
diff
changeset
|
238 |
|
6e5fd4585512
check side-comments of command spans (normally filtered out in Outer_Syntax.toplevel_source);
wenzelm
parents:
47005
diff
changeset
|
239 |
|
22124 | 240 |
|
241 |
(** present theory source **) |
|
242 |
||
59924
801b979ec0c2
more general notion of command span: command keyword not necessarily at start;
wenzelm
parents:
59917
diff
changeset
|
243 |
(*NB: arranging white space around command spans is a black art*) |
22124 | 244 |
|
245 |
(* presentation tokens *) |
|
246 |
||
247 |
datatype token = |
|
59065 | 248 |
No_Token |
249 |
| Basic_Token of Token.T |
|
250 |
| Markup_Token of string * Input.source |
|
251 |
| Markup_Env_Token of string * Input.source |
|
61456 | 252 |
| Raw_Token of Input.source; |
22124 | 253 |
|
59065 | 254 |
fun basic_token pred (Basic_Token tok) = pred tok |
22124 | 255 |
| basic_token _ _ = false; |
256 |
||
51267 | 257 |
val improper_token = basic_token Token.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
|
258 |
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
|
259 |
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
|
260 |
val newline_token = basic_token Token.is_newline; |
22124 | 261 |
|
262 |
||
61455 | 263 |
(* output token *) |
264 |
||
61457 | 265 |
fun output_token state tok = |
266 |
(case tok of |
|
267 |
No_Token => "" |
|
268 |
| Basic_Token tok => Latex.output_token tok |
|
269 |
| Markup_Token (cmd, source) => |
|
270 |
"%\n\\isamarkup" ^ cmd ^ "{" ^ output_text state {markdown = false} source ^ "%\n}\n" |
|
271 |
| Markup_Env_Token (cmd, source) => |
|
61462 | 272 |
Latex.environment ("isamarkup" ^ cmd) (output_text state {markdown = true} source) |
61457 | 273 |
| Raw_Token source => |
274 |
"%\n" ^ output_text state {markdown = true} source ^ "\n"); |
|
61455 | 275 |
|
276 |
||
22124 | 277 |
(* command spans *) |
278 |
||
279 |
type command = string * Position.T * string list; (*name, position, tags*) |
|
280 |
type source = (token * (string * int)) list; (*token, markup flag, meta-comment depth*) |
|
281 |
||
282 |
datatype span = Span of command * (source * source * source * source) * bool; |
|
283 |
||
284 |
fun make_span cmd src = |
|
285 |
let |
|
286 |
fun take_newline (tok :: toks) = |
|
287 |
if newline_token (fst tok) then ([tok], toks, true) |
|
288 |
else ([], tok :: toks, false) |
|
289 |
| take_newline [] = ([], [], false); |
|
290 |
val (((src_prefix, src_main), src_suffix1), (src_suffix2, src_appendix, newline)) = |
|
291 |
src |
|
292 |
|> take_prefix (improper_token o fst) |
|
293 |
||>> take_suffix (improper_token o fst) |
|
294 |
||>> take_prefix (comment_token o fst) |
|
295 |
||> take_newline; |
|
296 |
in Span (cmd, (src_prefix, src_main, src_suffix1 @ src_suffix2, src_appendix), newline) end; |
|
297 |
||
298 |
||
299 |
(* present spans *) |
|
300 |
||
301 |
local |
|
302 |
||
303 |
fun err_bad_nesting pos = |
|
304 |
error ("Bad nesting of commands in presentation" ^ pos); |
|
305 |
||
306 |
fun edge which f (x: string option, y) = |
|
307 |
if x = y then I |
|
308 |
else (case which (x, y) of NONE => I | SOME txt => Buffer.add (f txt)); |
|
309 |
||
310 |
val begin_tag = edge #2 Latex.begin_tag; |
|
311 |
val end_tag = edge #1 Latex.end_tag; |
|
312 |
fun open_delim delim e = edge #2 Latex.begin_delim e #> delim #> edge #2 Latex.end_delim e; |
|
313 |
fun close_delim delim e = edge #1 Latex.begin_delim e #> delim #> edge #1 Latex.end_delim e; |
|
314 |
||
315 |
in |
|
316 |
||
58923 | 317 |
fun present_span keywords span state state' (tag_stack, active_tag, newline, buffer, present_cont) = |
22124 | 318 |
let |
319 |
val present = fold (fn (tok, (flag, 0)) => |
|
58928
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58923
diff
changeset
|
320 |
Buffer.add (output_token state' tok) |
22124 | 321 |
#> Buffer.add flag |
322 |
| _ => I); |
|
323 |
||
324 |
val Span ((cmd_name, cmd_pos, cmd_tags), srcs, span_newline) = span; |
|
325 |
||
326 |
val (tag, tags) = tag_stack; |
|
46924 | 327 |
val tag' = try hd (fold (update (op =)) cmd_tags (the_list tag)); |
22124 | 328 |
|
58999
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58992
diff
changeset
|
329 |
val nesting = Toplevel.level state' - Toplevel.level state; |
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58992
diff
changeset
|
330 |
|
22124 | 331 |
val active_tag' = |
332 |
if is_some tag' then tag' |
|
333 |
else if cmd_name = "end" andalso not (Toplevel.is_toplevel state') then NONE |
|
58999
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58992
diff
changeset
|
334 |
else |
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58992
diff
changeset
|
335 |
(case Keyword.command_tags keywords cmd_name of |
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58992
diff
changeset
|
336 |
default_tag :: _ => SOME default_tag |
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58992
diff
changeset
|
337 |
| [] => |
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58992
diff
changeset
|
338 |
if Keyword.is_vacuous keywords cmd_name andalso Toplevel.is_proof state |
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58992
diff
changeset
|
339 |
then active_tag |
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58992
diff
changeset
|
340 |
else NONE); |
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58992
diff
changeset
|
341 |
|
22124 | 342 |
val edge = (active_tag, active_tag'); |
343 |
||
344 |
val newline' = |
|
345 |
if is_none active_tag' then span_newline else newline; |
|
346 |
||
347 |
val tag_stack' = |
|
348 |
if nesting = 0 andalso not (Toplevel.is_proof state) then tag_stack |
|
349 |
else if nesting >= 0 then (tag', replicate nesting tag @ tags) |
|
350 |
else |
|
33957 | 351 |
(case drop (~ nesting - 1) tags of |
58999
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58992
diff
changeset
|
352 |
tg :: tgs => (tg, tgs) |
48992 | 353 |
| [] => err_bad_nesting (Position.here cmd_pos)); |
22124 | 354 |
|
355 |
val buffer' = |
|
356 |
buffer |
|
357 |
|> end_tag edge |
|
358 |
|> close_delim (fst present_cont) edge |
|
359 |
|> snd present_cont |
|
360 |
|> open_delim (present (#1 srcs)) edge |
|
361 |
|> begin_tag edge |
|
362 |
|> present (#2 srcs); |
|
363 |
val present_cont' = |
|
364 |
if newline then (present (#3 srcs), present (#4 srcs)) |
|
365 |
else (I, present (#3 srcs) #> present (#4 srcs)); |
|
366 |
in (tag_stack', active_tag', newline', buffer', present_cont') end; |
|
367 |
||
368 |
fun present_trailer ((_, tags), active_tag, _, buffer, present_cont) = |
|
369 |
if not (null tags) then err_bad_nesting " at end of theory" |
|
370 |
else |
|
371 |
buffer |
|
372 |
|> end_tag (active_tag, NONE) |
|
373 |
|> close_delim (fst present_cont) (active_tag, NONE) |
|
374 |
|> snd present_cont; |
|
375 |
||
376 |
end; |
|
377 |
||
378 |
||
28427
cc9f7d99fb73
turned process_thy into present_thy, which merely does presentation (wrt. persistent intermediate states);
wenzelm
parents:
28273
diff
changeset
|
379 |
(* present_thy *) |
22124 | 380 |
|
381 |
local |
|
382 |
||
61455 | 383 |
val markup_true = "\\isamarkuptrue%\n"; |
384 |
val markup_false = "\\isamarkupfalse%\n"; |
|
385 |
||
22124 | 386 |
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
|
387 |
Scan.one Token.is_blank -- Scan.many Token.is_comment -- Scan.one Token.is_proper; |
22124 | 388 |
|
36959
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36950
diff
changeset
|
389 |
val is_improper = not o (Token.is_proper orf Token.is_begin_ignore orf Token.is_end_ignore); |
22124 | 390 |
val improper = Scan.many is_improper; |
391 |
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
|
392 |
val blank_end = Scan.repeat (Scan.unless space_proper (Scan.one Token.is_blank)); |
22124 | 393 |
|
36959
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36950
diff
changeset
|
394 |
val opt_newline = Scan.option (Scan.one Token.is_newline); |
22124 | 395 |
|
396 |
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
|
397 |
Scan.depend (fn d => opt_newline |-- Scan.one Token.is_begin_ignore |
22124 | 398 |
>> 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
|
399 |
Scan.depend (fn d => Scan.one Token.is_end_ignore --| |
43947
9b00f09f7721
defer evaluation of Scan.message, for improved performance in the frequent situation where failure is handled later (e.g. via ||);
wenzelm
parents:
43564
diff
changeset
|
400 |
(if d = 0 then Scan.fail_with (K (fn () => "Bad nesting of meta-comments")) else opt_newline) |
22124 | 401 |
>> pair (d - 1)); |
402 |
||
36950 | 403 |
val tag = (improper -- Parse.$$$ "%" -- improper) |-- Parse.!!! (Parse.tag_name --| blank_end); |
22124 | 404 |
|
405 |
val locale = |
|
36950 | 406 |
Scan.option ((Parse.$$$ "(" -- improper -- Parse.$$$ "in") |-- |
407 |
Parse.!!! (improper |-- Parse.xname --| (improper -- Parse.$$$ ")"))); |
|
22124 | 408 |
|
409 |
in |
|
410 |
||
58928
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58923
diff
changeset
|
411 |
fun present_thy thy command_results toks = |
22124 | 412 |
let |
58928
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58923
diff
changeset
|
413 |
val keywords = Thy_Header.get_keywords thy; |
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58923
diff
changeset
|
414 |
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58923
diff
changeset
|
415 |
|
22124 | 416 |
(* tokens *) |
417 |
||
418 |
val ignored = Scan.state --| ignore |
|
59065 | 419 |
>> (fn d => (NONE, (No_Token, ("", d)))); |
22124 | 420 |
|
58999
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58992
diff
changeset
|
421 |
fun markup pred mk flag = Scan.peek (fn d => |
36950 | 422 |
improper |-- |
58999
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58992
diff
changeset
|
423 |
Parse.position (Scan.one (fn tok => |
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58992
diff
changeset
|
424 |
Token.is_command tok andalso pred keywords (Token.content_of tok))) -- |
22124 | 425 |
Scan.repeat tag -- |
51627
589daaf48dba
tuned signature -- agree with markup terminology;
wenzelm
parents:
51626
diff
changeset
|
426 |
Parse.!!!! ((improper -- locale -- improper) |-- Parse.document_source --| improper_end) |
59064 | 427 |
>> (fn (((tok, pos'), tags), source) => |
59065 | 428 |
let val name = Token.content_of tok |
429 |
in (SOME (name, pos', tags), (mk (name, source), (flag, d))) end)); |
|
22124 | 430 |
|
431 |
val command = Scan.peek (fn d => |
|
61814
1ca1142e1711
clarified type Token.src: plain token list, with usual implicit value assignment;
wenzelm
parents:
61748
diff
changeset
|
432 |
Scan.optional (Scan.one Token.is_command_modifier ::: improper) [] -- |
59924
801b979ec0c2
more general notion of command span: command keyword not necessarily at start;
wenzelm
parents:
59917
diff
changeset
|
433 |
Scan.one Token.is_command -- Scan.repeat tag |
59939
7d46aa03696e
support for 'restricted' modifier: only qualified accesses outside the local scope;
wenzelm
parents:
59924
diff
changeset
|
434 |
>> (fn ((cmd_mod, cmd), tags) => |
7d46aa03696e
support for 'restricted' modifier: only qualified accesses outside the local scope;
wenzelm
parents:
59924
diff
changeset
|
435 |
map (fn tok => (NONE, (Basic_Token tok, ("", d)))) cmd_mod @ |
59924
801b979ec0c2
more general notion of command span: command keyword not necessarily at start;
wenzelm
parents:
59917
diff
changeset
|
436 |
[(SOME (Token.content_of cmd, Token.pos_of cmd, tags), |
61455 | 437 |
(Basic_Token cmd, (markup_false, d)))])); |
22124 | 438 |
|
439 |
val cmt = Scan.peek (fn d => |
|
61579 | 440 |
(Parse.$$$ "--" || Parse.$$$ Symbol.comment) |-- |
441 |
Parse.!!!! (improper |-- Parse.document_source) >> |
|
59065 | 442 |
(fn source => (NONE, (Markup_Token ("cmt", source), ("", d))))); |
22124 | 443 |
|
444 |
val other = Scan.peek (fn d => |
|
59065 | 445 |
Parse.not_eof >> (fn tok => (NONE, (Basic_Token tok, ("", d))))); |
22124 | 446 |
|
59924
801b979ec0c2
more general notion of command span: command keyword not necessarily at start;
wenzelm
parents:
59917
diff
changeset
|
447 |
val tokens = |
801b979ec0c2
more general notion of command span: command keyword not necessarily at start;
wenzelm
parents:
59917
diff
changeset
|
448 |
(ignored || |
61455 | 449 |
markup Keyword.is_document_heading Markup_Token markup_true || |
450 |
markup Keyword.is_document_body Markup_Env_Token markup_true || |
|
61456 | 451 |
markup Keyword.is_document_raw (Raw_Token o #2) "") >> single || |
59924
801b979ec0c2
more general notion of command span: command keyword not necessarily at start;
wenzelm
parents:
59917
diff
changeset
|
452 |
command || |
801b979ec0c2
more general notion of command span: command keyword not necessarily at start;
wenzelm
parents:
59917
diff
changeset
|
453 |
(cmt || other) >> single; |
22124 | 454 |
|
455 |
||
456 |
(* spans *) |
|
457 |
||
59065 | 458 |
val is_eof = fn (_, (Basic_Token x, _)) => Token.is_eof x | _ => false; |
459 |
val stopper = Scan.stopper (K (NONE, (Basic_Token Token.eof, ("", 0)))) is_eof; |
|
22124 | 460 |
|
461 |
val cmd = Scan.one (is_some o fst); |
|
27732 | 462 |
val non_cmd = Scan.one (is_none o fst andf not o is_eof) >> #2; |
22124 | 463 |
|
464 |
val comments = Scan.many (comment_token o fst o snd); |
|
465 |
val blank = Scan.one (blank_token o fst o snd); |
|
466 |
val newline = Scan.one (newline_token o fst o snd); |
|
467 |
val before_cmd = |
|
468 |
Scan.option (newline -- comments) -- |
|
469 |
Scan.option (newline -- comments) -- |
|
470 |
Scan.option (blank -- comments) -- cmd; |
|
471 |
||
472 |
val span = |
|
473 |
Scan.repeat non_cmd -- cmd -- |
|
474 |
Scan.repeat (Scan.unless before_cmd non_cmd) -- |
|
475 |
Scan.option (newline >> (single o snd)) |
|
476 |
>> (fn (((toks1, (cmd, tok2)), toks3), tok4) => |
|
477 |
make_span (the cmd) (toks1 @ (tok2 :: (toks3 @ the_default [] tok4)))); |
|
478 |
||
57080
0e5fa27d3293
strip trailing white space, to avoid notorious problems of jEdit with last line;
wenzelm
parents:
56548
diff
changeset
|
479 |
val spans = toks |
0e5fa27d3293
strip trailing white space, to avoid notorious problems of jEdit with last line;
wenzelm
parents:
56548
diff
changeset
|
480 |
|> take_suffix Token.is_space |> #1 |
0e5fa27d3293
strip trailing white space, to avoid notorious problems of jEdit with last line;
wenzelm
parents:
56548
diff
changeset
|
481 |
|> Source.of_list |
59924
801b979ec0c2
more general notion of command span: command keyword not necessarily at start;
wenzelm
parents:
59917
diff
changeset
|
482 |
|> Source.source' 0 Token.stopper (Scan.error (Scan.bulk tokens >> flat)) |
58864 | 483 |
|> Source.source stopper (Scan.error (Scan.bulk span)) |
22124 | 484 |
|> Source.exhaust; |
28427
cc9f7d99fb73
turned process_thy into present_thy, which merely does presentation (wrt. persistent intermediate states);
wenzelm
parents:
28273
diff
changeset
|
485 |
|
cc9f7d99fb73
turned process_thy into present_thy, which merely does presentation (wrt. persistent intermediate states);
wenzelm
parents:
28273
diff
changeset
|
486 |
|
cc9f7d99fb73
turned process_thy into present_thy, which merely does presentation (wrt. persistent intermediate states);
wenzelm
parents:
28273
diff
changeset
|
487 |
(* present commands *) |
cc9f7d99fb73
turned process_thy into present_thy, which merely does presentation (wrt. persistent intermediate states);
wenzelm
parents:
28273
diff
changeset
|
488 |
|
cc9f7d99fb73
turned process_thy into present_thy, which merely does presentation (wrt. persistent intermediate states);
wenzelm
parents:
28273
diff
changeset
|
489 |
fun present_command tr span st st' = |
58923 | 490 |
Toplevel.setmp_thread_position tr (present_span keywords span st st'); |
28427
cc9f7d99fb73
turned process_thy into present_thy, which merely does presentation (wrt. persistent intermediate states);
wenzelm
parents:
28273
diff
changeset
|
491 |
|
cc9f7d99fb73
turned process_thy into present_thy, which merely does presentation (wrt. persistent intermediate states);
wenzelm
parents:
28273
diff
changeset
|
492 |
fun present _ [] = I |
cc9f7d99fb73
turned process_thy into present_thy, which merely does presentation (wrt. persistent intermediate states);
wenzelm
parents:
28273
diff
changeset
|
493 |
| present st (((tr, st'), span) :: rest) = present_command tr span st st' #> present st' rest; |
22124 | 494 |
in |
28427
cc9f7d99fb73
turned process_thy into present_thy, which merely does presentation (wrt. persistent intermediate states);
wenzelm
parents:
28273
diff
changeset
|
495 |
if length command_results = length spans then |
22124 | 496 |
((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
|
497 |
|> present Toplevel.toplevel (command_results ~~ spans) |
22124 | 498 |
|> present_trailer |
499 |
else error "Messed-up outer syntax for presentation" |
|
500 |
end; |
|
501 |
||
502 |
end; |
|
503 |
||
504 |
||
505 |
||
506 |
(** setup default output **) |
|
507 |
||
508 |
(* options *) |
|
509 |
||
53171 | 510 |
val _ = Theory.setup |
56204 | 511 |
(add_option @{binding show_types} (Config.put show_types o boolean) #> |
512 |
add_option @{binding show_sorts} (Config.put show_sorts o boolean) #> |
|
513 |
add_option @{binding show_structs} (Config.put show_structs o boolean) #> |
|
514 |
add_option @{binding show_question_marks} (Config.put show_question_marks o boolean) #> |
|
515 |
add_option @{binding show_abbrevs} (Config.put show_abbrevs o boolean) #> |
|
516 |
add_option @{binding names_long} (Config.put Name_Space.names_long o boolean) #> |
|
517 |
add_option @{binding names_short} (Config.put Name_Space.names_short o boolean) #> |
|
518 |
add_option @{binding names_unique} (Config.put Name_Space.names_unique o boolean) #> |
|
519 |
add_option @{binding eta_contract} (Config.put Syntax_Trans.eta_contract o boolean) #> |
|
520 |
add_option @{binding display} (Config.put display o boolean) #> |
|
521 |
add_option @{binding break} (Config.put break o boolean) #> |
|
522 |
add_option @{binding quotes} (Config.put quotes o boolean) #> |
|
523 |
add_option @{binding mode} (add_wrapper o Print_Mode.with_modes o single) #> |
|
59175
bf465f335e85
system option "pretty_margin" is superseded by "thy_output_margin";
wenzelm
parents:
59067
diff
changeset
|
524 |
add_option @{binding margin} (Config.put margin o integer) #> |
56204 | 525 |
add_option @{binding indent} (Config.put indent o integer) #> |
526 |
add_option @{binding source} (Config.put source o boolean) #> |
|
527 |
add_option @{binding goals_limit} (Config.put Goal_Display.goals_limit o integer)); |
|
22124 | 528 |
|
529 |
||
530 |
(* basic pretty printing *) |
|
531 |
||
61435 | 532 |
fun perhaps_trim ctxt = |
533 |
not (Config.get ctxt display) ? Symbol.trim_blanks; |
|
22124 | 534 |
|
38767
d8da44a8dd25
proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents:
38766
diff
changeset
|
535 |
fun pretty_text ctxt = |
61435 | 536 |
Pretty.chunks o map Pretty.str o map (perhaps_trim ctxt) o split_lines; |
22124 | 537 |
|
26710
f79aa228c582
pretty_term: no revert_skolems here, but auto_fixes (token translations will do the rest);
wenzelm
parents:
26455
diff
changeset
|
538 |
fun pretty_term ctxt t = Syntax.pretty_term (Variable.auto_fixes t ctxt) t; |
24920 | 539 |
|
32898
e871d897969c
term styles also cover antiquotations term_type and typeof
haftmann
parents:
32890
diff
changeset
|
540 |
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
|
541 |
|
e871d897969c
term styles also cover antiquotations term_type and typeof
haftmann
parents:
32890
diff
changeset
|
542 |
fun pretty_term_style ctxt (style, t) = |
e871d897969c
term styles also cover antiquotations term_type and typeof
haftmann
parents:
32890
diff
changeset
|
543 |
pretty_term ctxt (style t); |
22124 | 544 |
|
32898
e871d897969c
term styles also cover antiquotations term_type and typeof
haftmann
parents:
32890
diff
changeset
|
545 |
fun pretty_thm_style ctxt (style, th) = |
e871d897969c
term styles also cover antiquotations term_type and typeof
haftmann
parents:
32890
diff
changeset
|
546 |
pretty_term ctxt (style (Thm.full_prop_of th)); |
22124 | 547 |
|
32898
e871d897969c
term styles also cover antiquotations term_type and typeof
haftmann
parents:
32890
diff
changeset
|
548 |
fun pretty_term_typ ctxt (style, t) = |
e871d897969c
term styles also cover antiquotations term_type and typeof
haftmann
parents:
32890
diff
changeset
|
549 |
let val t' = style t |
39288 | 550 |
in pretty_term ctxt (Type.constraint (Term.fastype_of t') t') end; |
32898
e871d897969c
term styles also cover antiquotations term_type and typeof
haftmann
parents:
32890
diff
changeset
|
551 |
|
e871d897969c
term styles also cover antiquotations term_type and typeof
haftmann
parents:
32890
diff
changeset
|
552 |
fun pretty_term_typeof ctxt (style, t) = |
e871d897969c
term styles also cover antiquotations term_type and typeof
haftmann
parents:
32890
diff
changeset
|
553 |
Syntax.pretty_typ ctxt (Term.fastype_of (style t)); |
22124 | 554 |
|
25373
ccbf65080fdf
@{const}: improved ProofContext.read_const does the job;
wenzelm
parents:
25241
diff
changeset
|
555 |
fun pretty_const ctxt c = |
ccbf65080fdf
@{const}: improved ProofContext.read_const does the job;
wenzelm
parents:
25241
diff
changeset
|
556 |
let |
42360 | 557 |
val t = Const (c, Consts.type_scheme (Proof_Context.consts_of ctxt) c) |
25373
ccbf65080fdf
@{const}: improved ProofContext.read_const does the job;
wenzelm
parents:
25241
diff
changeset
|
558 |
handle TYPE (msg, _, _) => error msg; |
ccbf65080fdf
@{const}: improved ProofContext.read_const does the job;
wenzelm
parents:
25241
diff
changeset
|
559 |
val ([t'], _) = Variable.import_terms true [t] ctxt; |
ccbf65080fdf
@{const}: improved ProofContext.read_const does the job;
wenzelm
parents:
25241
diff
changeset
|
560 |
in pretty_term ctxt t' end; |
22124 | 561 |
|
25407
2859cf34aaf0
abbrev: bypass full term check via ProofContext.standard_infer_types (prevents forced expansion);
wenzelm
parents:
25373
diff
changeset
|
562 |
fun pretty_abbrev ctxt s = |
22124 | 563 |
let |
42399 | 564 |
val t = Syntax.read_term (Proof_Context.set_mode Proof_Context.mode_abbrev ctxt) s; |
24920 | 565 |
fun err () = error ("Abbreviated constant expected: " ^ Syntax.string_of_term ctxt t); |
22124 | 566 |
val (head, args) = Term.strip_comb t; |
567 |
val (c, T) = Term.dest_Const head handle TERM _ => err (); |
|
42360 | 568 |
val (U, u) = Consts.the_abbreviation (Proof_Context.consts_of ctxt) c |
22124 | 569 |
handle TYPE _ => err (); |
570 |
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
|
571 |
val eq = Logic.mk_equals (t, t'); |
e871d897969c
term styles also cover antiquotations term_type and typeof
haftmann
parents:
32890
diff
changeset
|
572 |
val ctxt' = Variable.auto_fixes eq ctxt; |
42360 | 573 |
in Proof_Context.pretty_term_abbrev ctxt' eq end; |
22124 | 574 |
|
39305
d4fa19eb0822
'class' and 'type' are now antiquoations by default
haftmann
parents:
39134
diff
changeset
|
575 |
fun pretty_class ctxt = |
42360 | 576 |
Pretty.str o Proof_Context.extern_class ctxt o Proof_Context.read_class ctxt; |
39305
d4fa19eb0822
'class' and 'type' are now antiquoations by default
haftmann
parents:
39134
diff
changeset
|
577 |
|
39309
74469faa27ca
type antiquotation: allow arbitrary type abbreviations, but fail with user-space exception on bad input
haftmann
parents:
39308
diff
changeset
|
578 |
fun pretty_type ctxt s = |
56002 | 579 |
let val Type (name, _) = Proof_Context.read_type_name {proper = true, strict = false} ctxt s |
42360 | 580 |
in Pretty.str (Proof_Context.extern_type ctxt name) end; |
39305
d4fa19eb0822
'class' and 'type' are now antiquoations by default
haftmann
parents:
39134
diff
changeset
|
581 |
|
33388 | 582 |
fun pretty_prf full ctxt = Proof_Syntax.pretty_proof_of ctxt full; |
22124 | 583 |
|
60100
2ce2e0358e91
clarified document antiquotation: same check as in ML antiquotation;
wenzelm
parents:
60094
diff
changeset
|
584 |
fun pretty_theory ctxt (name, pos) = (Theory.check ctxt (name, pos); Pretty.str name); |
22124 | 585 |
|
586 |
||
30390
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
587 |
(* default output *) |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
588 |
|
61814
1ca1142e1711
clarified type Token.src: plain token list, with usual implicit value assignment;
wenzelm
parents:
61748
diff
changeset
|
589 |
val str_of_source = space_implode " " o map Token.unparse o Token.args_of_src; |
22124 | 590 |
|
38767
d8da44a8dd25
proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents:
38766
diff
changeset
|
591 |
fun maybe_pretty_source pretty ctxt src xs = |
d8da44a8dd25
proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents:
38766
diff
changeset
|
592 |
map (pretty ctxt) xs (*always pretty in order to exhibit errors!*) |
d8da44a8dd25
proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents:
38766
diff
changeset
|
593 |
|> (if Config.get ctxt source then K [pretty_text ctxt (str_of_source src)] else I); |
30390
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
594 |
|
59175
bf465f335e85
system option "pretty_margin" is superseded by "thy_output_margin";
wenzelm
parents:
59067
diff
changeset
|
595 |
fun string_of_margin ctxt = Pretty.string_of_margin (Config.get ctxt margin); |
bf465f335e85
system option "pretty_margin" is superseded by "thy_output_margin";
wenzelm
parents:
59067
diff
changeset
|
596 |
|
38767
d8da44a8dd25
proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents:
38766
diff
changeset
|
597 |
fun output ctxt prts = |
30390
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
598 |
prts |
58716
23a380cc45f4
official support for "tt" style variants, avoid fragile \verb in LaTeX;
wenzelm
parents:
58069
diff
changeset
|
599 |
|> Config.get ctxt quotes ? map Pretty.quote |
38767
d8da44a8dd25
proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents:
38766
diff
changeset
|
600 |
|> (if Config.get ctxt display then |
59175
bf465f335e85
system option "pretty_margin" is superseded by "thy_output_margin";
wenzelm
parents:
59067
diff
changeset
|
601 |
map (Pretty.indent (Config.get ctxt indent) #> string_of_margin ctxt #> Output.output) |
58716
23a380cc45f4
official support for "tt" style variants, avoid fragile \verb in LaTeX;
wenzelm
parents:
58069
diff
changeset
|
602 |
#> space_implode "\\isasep\\isanewline%\n" |
61462 | 603 |
#> Latex.environment "isabelle" |
58716
23a380cc45f4
official support for "tt" style variants, avoid fragile \verb in LaTeX;
wenzelm
parents:
58069
diff
changeset
|
604 |
else |
61877
276ad4354069
renamed Pretty.str_of to Pretty.unformatted_string_of to emphasize its meaning;
wenzelm
parents:
61865
diff
changeset
|
605 |
map |
276ad4354069
renamed Pretty.str_of to Pretty.unformatted_string_of to emphasize its meaning;
wenzelm
parents:
61865
diff
changeset
|
606 |
((if Config.get ctxt break then string_of_margin ctxt else Pretty.unformatted_string_of) |
276ad4354069
renamed Pretty.str_of to Pretty.unformatted_string_of to emphasize its meaning;
wenzelm
parents:
61865
diff
changeset
|
607 |
#> Output.output) |
58716
23a380cc45f4
official support for "tt" style variants, avoid fragile \verb in LaTeX;
wenzelm
parents:
58069
diff
changeset
|
608 |
#> space_implode "\\isasep\\isanewline%\n" |
23a380cc45f4
official support for "tt" style variants, avoid fragile \verb in LaTeX;
wenzelm
parents:
58069
diff
changeset
|
609 |
#> enclose "\\isa{" "}"); |
22124 | 610 |
|
30390
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
611 |
|
61619 | 612 |
(* verbatim text *) |
61473
34d1913f0b20
clarified control antiquotations: decode control symbol to get name;
wenzelm
parents:
61471
diff
changeset
|
613 |
|
61619 | 614 |
fun verbatim_text ctxt = |
615 |
if Config.get ctxt display then |
|
61865 | 616 |
split_lines #> map (prefix (Symbol.spaces (Config.get ctxt indent))) #> cat_lines #> |
61619 | 617 |
Latex.output_ascii #> Latex.environment "isabellett" |
618 |
else |
|
619 |
split_lines #> |
|
620 |
map (Latex.output_ascii #> enclose "\\isatt{" "}") #> |
|
621 |
space_implode "\\isasep\\isanewline%\n"; |
|
61491
97261e6c1d42
another antiquotation short form: undecorated cartouche as alias for @{text};
wenzelm
parents:
61473
diff
changeset
|
622 |
|
97261e6c1d42
another antiquotation short form: undecorated cartouche as alias for @{text};
wenzelm
parents:
61473
diff
changeset
|
623 |
|
61619 | 624 |
(* antiquotations for basic entities *) |
30390
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
625 |
|
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
626 |
local |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
627 |
|
59175
bf465f335e85
system option "pretty_margin" is superseded by "thy_output_margin";
wenzelm
parents:
59067
diff
changeset
|
628 |
fun basic_entities name scan pretty = |
61491
97261e6c1d42
another antiquotation short form: undecorated cartouche as alias for @{text};
wenzelm
parents:
61473
diff
changeset
|
629 |
antiquotation name scan (fn {source, context = ctxt, ...} => |
97261e6c1d42
another antiquotation short form: undecorated cartouche as alias for @{text};
wenzelm
parents:
61473
diff
changeset
|
630 |
output ctxt o maybe_pretty_source pretty ctxt source); |
30390
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
631 |
|
59175
bf465f335e85
system option "pretty_margin" is superseded by "thy_output_margin";
wenzelm
parents:
59067
diff
changeset
|
632 |
fun basic_entities_style name scan pretty = |
61491
97261e6c1d42
another antiquotation short form: undecorated cartouche as alias for @{text};
wenzelm
parents:
61473
diff
changeset
|
633 |
antiquotation name scan (fn {source, context = ctxt, ...} => fn (style, xs) => |
97261e6c1d42
another antiquotation short form: undecorated cartouche as alias for @{text};
wenzelm
parents:
61473
diff
changeset
|
634 |
output ctxt |
97261e6c1d42
another antiquotation short form: undecorated cartouche as alias for @{text};
wenzelm
parents:
61473
diff
changeset
|
635 |
(maybe_pretty_source (fn ctxt => fn x => pretty ctxt (style, x)) ctxt source xs)); |
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
|
636 |
|
30390
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
637 |
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
|
638 |
|
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
639 |
in |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
640 |
|
53171 | 641 |
val _ = Theory.setup |
56204 | 642 |
(basic_entities_style @{binding thm} (Term_Style.parse -- Attrib.thms) pretty_thm_style #> |
643 |
basic_entity @{binding prop} (Term_Style.parse -- Args.prop) pretty_term_style #> |
|
644 |
basic_entity @{binding term} (Term_Style.parse -- Args.term) pretty_term_style #> |
|
645 |
basic_entity @{binding term_type} (Term_Style.parse -- Args.term) pretty_term_typ #> |
|
646 |
basic_entity @{binding typeof} (Term_Style.parse -- Args.term) pretty_term_typeof #> |
|
647 |
basic_entity @{binding const} (Args.const {proper = true, strict = false}) pretty_const #> |
|
648 |
basic_entity @{binding abbrev} (Scan.lift Args.name_inner_syntax) pretty_abbrev #> |
|
649 |
basic_entity @{binding typ} Args.typ_abbrev Syntax.pretty_typ #> |
|
650 |
basic_entity @{binding class} (Scan.lift Args.name_inner_syntax) pretty_class #> |
|
651 |
basic_entity @{binding type} (Scan.lift Args.name) pretty_type #> |
|
652 |
basic_entities @{binding prf} Attrib.thms (pretty_prf false) #> |
|
653 |
basic_entities @{binding full_prf} Attrib.thms (pretty_prf true) #> |
|
654 |
basic_entity @{binding theory} (Scan.lift (Parse.position Args.name)) pretty_theory); |
|
32898
e871d897969c
term styles also cover antiquotations term_type and typeof
haftmann
parents:
32890
diff
changeset
|
655 |
|
30390
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
656 |
end; |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
657 |
|
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
658 |
|
58928
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58923
diff
changeset
|
659 |
|
62453 | 660 |
(** document command **) |
58928
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58923
diff
changeset
|
661 |
|
61457 | 662 |
fun document_command markdown (loc, txt) = |
58928
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58923
diff
changeset
|
663 |
Toplevel.keep (fn state => |
58999
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58992
diff
changeset
|
664 |
(case loc of |
61457 | 665 |
NONE => ignore (output_text state markdown txt) |
58999
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58992
diff
changeset
|
666 |
| SOME (_, pos) => |
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58992
diff
changeset
|
667 |
error ("Illegal target specification -- not a theory context" ^ Position.here pos))) o |
61457 | 668 |
Toplevel.present_local_theory loc (fn state => ignore (output_text state markdown txt)); |
58928
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58923
diff
changeset
|
669 |
|
30390
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
670 |
end; |