author | wenzelm |
Sun, 30 Nov 2014 12:24:56 +0100 | |
changeset 59064 | a8bcb5a446c8 |
parent 58999 | ed09ae4ea2d8 |
child 59065 | 8ce02aafc363 |
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 |
d8da44a8dd25
proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents:
38766
diff
changeset
|
11 |
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
|
12 |
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
|
13 |
val break: bool Config.T |
52042 | 14 |
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
|
15 |
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
|
16 |
val add_option: binding -> (string -> Proof.context -> Proof.context) -> theory -> theory |
55743 | 17 |
val check_command: Proof.context -> xstring * Position.T -> string |
18 |
val check_option: Proof.context -> xstring * Position.T -> string |
|
43564
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42669
diff
changeset
|
19 |
val print_antiquotations: Proof.context -> unit |
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42669
diff
changeset
|
20 |
val antiquotation: binding -> 'a context_parser -> |
58011
bc6bced136e5
tuned signature -- moved type src to Token, without aliases;
wenzelm
parents:
57080
diff
changeset
|
21 |
({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
|
22 |
theory -> theory |
22124 | 23 |
val boolean: string -> bool |
24 |
val integer: string -> int |
|
58928
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58923
diff
changeset
|
25 |
val eval_antiq: Toplevel.state -> Antiquote.antiq -> string |
59064 | 26 |
val check_text: Input.source -> Toplevel.state -> unit |
58928
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58923
diff
changeset
|
27 |
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
|
28 |
val pretty_text: Proof.context -> string -> Pretty.T |
28644 | 29 |
val pretty_term: Proof.context -> term -> Pretty.T |
30 |
val pretty_thm: Proof.context -> thm -> Pretty.T |
|
58011
bc6bced136e5
tuned signature -- moved type src to Token, without aliases;
wenzelm
parents:
57080
diff
changeset
|
31 |
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
|
32 |
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
|
33 |
Token.src -> 'a list -> Pretty.T list |
38767
d8da44a8dd25
proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents:
38766
diff
changeset
|
34 |
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
|
35 |
val verbatim_text: Proof.context -> string -> string |
59064 | 36 |
val old_header_command: Input.source -> Toplevel.transition -> Toplevel.transition |
37 |
val document_command: (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
|
38 |
Toplevel.transition -> Toplevel.transition |
22124 | 39 |
end; |
40 |
||
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
37198
diff
changeset
|
41 |
structure Thy_Output: THY_OUTPUT = |
22124 | 42 |
struct |
43 |
||
52042 | 44 |
(** options **) |
22124 | 45 |
|
56438 | 46 |
val display = Attrib.setup_option_bool ("thy_output_display", @{here}); |
47 |
val break = Attrib.setup_option_bool ("thy_output_break", @{here}); |
|
48 |
val quotes = Attrib.setup_option_bool ("thy_output_quotes", @{here}); |
|
49 |
val indent = Attrib.setup_option_int ("thy_output_indent", @{here}); |
|
50 |
val source = Attrib.setup_option_bool ("thy_output_source", @{here}); |
|
51 |
val modes = Attrib.setup_option_string ("thy_output_modes", @{here}); |
|
22124 | 52 |
|
53 |
||
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
|
54 |
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
|
55 |
( |
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 |
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
|
57 |
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
|
58 |
); |
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 |
|
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 |
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
|
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 |
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
|
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 |
|
22124 | 65 |
|
30390
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
66 |
(** maintain global antiquotations **) |
22124 | 67 |
|
43564
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42669
diff
changeset
|
68 |
structure Antiquotations = Theory_Data |
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42669
diff
changeset
|
69 |
( |
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42669
diff
changeset
|
70 |
type T = |
58011
bc6bced136e5
tuned signature -- moved type src to Token, without aliases;
wenzelm
parents:
57080
diff
changeset
|
71 |
(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
|
72 |
(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
|
73 |
val empty : T = |
50201
c26369c9eda6
Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents:
49847
diff
changeset
|
74 |
(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
|
75 |
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
|
76 |
val extend = I; |
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42669
diff
changeset
|
77 |
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
|
78 |
(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
|
79 |
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
|
80 |
); |
22124 | 81 |
|
55743 | 82 |
val get_antiquotations = Antiquotations.get o Proof_Context.theory_of; |
83 |
||
47005
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
46958
diff
changeset
|
84 |
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
|
85 |
|> Antiquotations.map (apfst (Name_Space.define (Context.Theory thy) true (name, cmd) #> snd)); |
22124 | 86 |
|
47005
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
46958
diff
changeset
|
87 |
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
|
88 |
|> Antiquotations.map (apsnd (Name_Space.define (Context.Theory thy) true (name, opt) #> snd)); |
22124 | 89 |
|
55743 | 90 |
fun check_command ctxt = #1 o Name_Space.check (Context.Proof ctxt) (#1 (get_antiquotations ctxt)); |
26893 | 91 |
|
55743 | 92 |
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
|
93 |
|
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42669
diff
changeset
|
94 |
fun command src state ctxt = |
58011
bc6bced136e5
tuned signature -- moved type src to Token, without aliases;
wenzelm
parents:
57080
diff
changeset
|
95 |
let val (src', f) = Token.check_src ctxt (#1 (get_antiquotations ctxt)) src |
56029
8bedca4bd5a3
clarified Args.src: more abstract type, position refers to name only;
wenzelm
parents:
56028
diff
changeset
|
96 |
in f src' state ctxt end; |
22124 | 97 |
|
43564
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42669
diff
changeset
|
98 |
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
|
99 |
let |
55743 | 100 |
val (_, opt) = |
101 |
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
|
102 |
in opt s ctxt end; |
22124 | 103 |
|
43564
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42669
diff
changeset
|
104 |
fun print_antiquotations ctxt = |
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42669
diff
changeset
|
105 |
let |
55743 | 106 |
val (commands, options) = get_antiquotations ctxt; |
56052 | 107 |
val command_names = map #1 (Name_Space.markup_table ctxt commands); |
108 |
val option_names = map #1 (Name_Space.markup_table ctxt options); |
|
43564
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42669
diff
changeset
|
109 |
in |
50301 | 110 |
[Pretty.big_list "document antiquotations:" (map Pretty.mark_str command_names), |
111 |
Pretty.big_list "document antiquotation options:" (map Pretty.mark_str option_names)] |
|
56334
6b3739fee456
some shortcuts for chunks, which sometimes avoid bulky string output;
wenzelm
parents:
56304
diff
changeset
|
112 |
|> Pretty.writeln_chunks |
43564
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42669
diff
changeset
|
113 |
end; |
22124 | 114 |
|
56069
451d5b73f8cf
simplified programming interface to define ML antiquotations -- NB: the transformed context ignores updates of the context parser;
wenzelm
parents:
56052
diff
changeset
|
115 |
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
|
116 |
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
|
117 |
(fn src => fn state => fn ctxt => |
58011
bc6bced136e5
tuned signature -- moved type src to Token, without aliases;
wenzelm
parents:
57080
diff
changeset
|
118 |
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
|
119 |
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
|
120 |
|
22124 | 121 |
|
122 |
||
123 |
(** syntax of antiquotations **) |
|
124 |
||
125 |
(* option values *) |
|
126 |
||
127 |
fun boolean "" = true |
|
128 |
| boolean "true" = true |
|
129 |
| boolean "false" = false |
|
130 |
| boolean s = error ("Bad boolean value: " ^ quote s); |
|
131 |
||
132 |
fun integer s = |
|
133 |
let |
|
134 |
fun int ss = |
|
135 |
(case Library.read_int ss of (i, []) => i |
|
136 |
| _ => error ("Bad integer value: " ^ quote s)); |
|
137 |
in (case Symbol.explode s of "-" :: ss => ~ (int ss) | ss => int ss) end; |
|
138 |
||
139 |
||
140 |
(* outer syntax *) |
|
141 |
||
142 |
local |
|
143 |
||
36950 | 144 |
val property = |
43564
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42669
diff
changeset
|
145 |
Parse.position Parse.xname -- Scan.optional (Parse.$$$ "=" |-- Parse.!!! Parse.xname) ""; |
36950 | 146 |
|
147 |
val properties = |
|
148 |
Scan.optional (Parse.$$$ "[" |-- Parse.!!! (Parse.enum "," property --| Parse.$$$ "]")) []; |
|
22124 | 149 |
|
150 |
in |
|
151 |
||
36950 | 152 |
val antiq = |
40800
330eb65c9469
Parse.liberal_name for document antiquotations and attributes;
wenzelm
parents:
39689
diff
changeset
|
153 |
Parse.!!! |
56201 | 154 |
(Parse.position Parse.liberal_name -- properties -- Parse.args --| Scan.ahead Parse.eof) |
58011
bc6bced136e5
tuned signature -- moved type src to Token, without aliases;
wenzelm
parents:
57080
diff
changeset
|
155 |
>> (fn ((name, props), args) => (props, Token.src name args)); |
22124 | 156 |
|
157 |
end; |
|
158 |
||
159 |
||
56548 | 160 |
(* eval_antiq *) |
22124 | 161 |
|
58928
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58923
diff
changeset
|
162 |
fun eval_antiq state ((ss, {range = (pos, _), ...}): Antiquote.antiq) = |
42508
e21362bf1d93
allow nested @{antiq} (nonterminal) and @@{antiq} terminal;
wenzelm
parents:
42399
diff
changeset
|
163 |
let |
58928
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58923
diff
changeset
|
164 |
val keywords = |
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58923
diff
changeset
|
165 |
(case try Toplevel.presentation_context_of state of |
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58923
diff
changeset
|
166 |
SOME ctxt => Thy_Header.get_keywords' ctxt |
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58923
diff
changeset
|
167 |
| NONE => |
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58923
diff
changeset
|
168 |
error ("Unknown context -- cannot expand document antiquotations" ^ |
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58923
diff
changeset
|
169 |
Position.here pos)); |
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58923
diff
changeset
|
170 |
|
58903 | 171 |
val (opts, src) = Token.read_antiq keywords antiq (ss, pos); |
42508
e21362bf1d93
allow nested @{antiq} (nonterminal) and @@{antiq} terminal;
wenzelm
parents:
42399
diff
changeset
|
172 |
fun cmd ctxt = wrap ctxt (fn () => command src state ctxt) (); |
58928
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58923
diff
changeset
|
173 |
|
42508
e21362bf1d93
allow nested @{antiq} (nonterminal) and @@{antiq} terminal;
wenzelm
parents:
42399
diff
changeset
|
174 |
val preview_ctxt = fold option opts (Toplevel.presentation_context_of state); |
e21362bf1d93
allow nested @{antiq} (nonterminal) and @@{antiq} terminal;
wenzelm
parents:
42399
diff
changeset
|
175 |
val print_ctxt = Context_Position.set_visible false preview_ctxt; |
e21362bf1d93
allow nested @{antiq} (nonterminal) and @@{antiq} terminal;
wenzelm
parents:
42399
diff
changeset
|
176 |
val _ = cmd preview_ctxt; |
52042 | 177 |
val print_modes = space_explode "," (Config.get print_ctxt modes) @ Latex.modes; |
178 |
in Print_Mode.with_modes print_modes (fn () => cmd print_ctxt) () end; |
|
42508
e21362bf1d93
allow nested @{antiq} (nonterminal) and @@{antiq} terminal;
wenzelm
parents:
42399
diff
changeset
|
179 |
|
56548 | 180 |
|
181 |
(* check_text *) |
|
182 |
||
58928
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58923
diff
changeset
|
183 |
fun eval_antiquote state (txt, pos) = |
22124 | 184 |
let |
56548 | 185 |
fun words (Antiquote.Text ss) = [(#1 (Symbol_Pos.range ss), Markup.words)] |
186 |
| words (Antiquote.Antiq _) = []; |
|
187 |
||
30589 | 188 |
fun expand (Antiquote.Text ss) = Symbol_Pos.content ss |
58928
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58923
diff
changeset
|
189 |
| expand (Antiquote.Antiq antiq) = eval_antiq state antiq; |
56548 | 190 |
|
30642 | 191 |
val ants = Antiquote.read (Symbol_Pos.explode (txt, pos), pos); |
56548 | 192 |
val _ = Position.reports (maps words ants); |
58928
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58923
diff
changeset
|
193 |
in implode (map expand ants) end; |
22124 | 194 |
|
59064 | 195 |
fun check_text source state = |
196 |
(Position.report (Input.pos_of source) (Markup.language_document (Input.is_delimited source)); |
|
51556 | 197 |
if Toplevel.is_skipped_proof state then () |
59064 | 198 |
else ignore (eval_antiquote state (Input.text_of source, Input.pos_of source))); |
48918
6e5fd4585512
check side-comments of command spans (normally filtered out in Outer_Syntax.toplevel_source);
wenzelm
parents:
47005
diff
changeset
|
199 |
|
6e5fd4585512
check side-comments of command spans (normally filtered out in Outer_Syntax.toplevel_source);
wenzelm
parents:
47005
diff
changeset
|
200 |
|
22124 | 201 |
|
202 |
(** present theory source **) |
|
203 |
||
204 |
(*NB: arranging white space around command spans is a black art.*) |
|
205 |
||
206 |
(* presentation tokens *) |
|
207 |
||
208 |
datatype token = |
|
209 |
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
|
210 |
| BasicToken of Token.T |
22124 | 211 |
| MarkupToken of string * (string * Position.T) |
212 |
| MarkupEnvToken of string * (string * Position.T) |
|
213 |
| VerbatimToken of string * Position.T; |
|
214 |
||
58928
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58923
diff
changeset
|
215 |
fun output_token state = |
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58923
diff
changeset
|
216 |
let val eval = eval_antiquote state in |
22124 | 217 |
fn NoToken => "" |
218 |
| BasicToken tok => Latex.output_basic tok |
|
219 |
| MarkupToken (cmd, txt) => Latex.output_markup cmd (eval txt) |
|
220 |
| MarkupEnvToken (cmd, txt) => Latex.output_markup_env cmd (eval txt) |
|
221 |
| VerbatimToken txt => Latex.output_verbatim (eval txt) |
|
222 |
end; |
|
223 |
||
224 |
fun basic_token pred (BasicToken tok) = pred tok |
|
225 |
| basic_token _ _ = false; |
|
226 |
||
51267 | 227 |
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
|
228 |
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
|
229 |
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
|
230 |
val newline_token = basic_token Token.is_newline; |
22124 | 231 |
|
232 |
||
233 |
(* command spans *) |
|
234 |
||
235 |
type command = string * Position.T * string list; (*name, position, tags*) |
|
236 |
type source = (token * (string * int)) list; (*token, markup flag, meta-comment depth*) |
|
237 |
||
238 |
datatype span = Span of command * (source * source * source * source) * bool; |
|
239 |
||
240 |
fun make_span cmd src = |
|
241 |
let |
|
242 |
fun take_newline (tok :: toks) = |
|
243 |
if newline_token (fst tok) then ([tok], toks, true) |
|
244 |
else ([], tok :: toks, false) |
|
245 |
| take_newline [] = ([], [], false); |
|
246 |
val (((src_prefix, src_main), src_suffix1), (src_suffix2, src_appendix, newline)) = |
|
247 |
src |
|
248 |
|> take_prefix (improper_token o fst) |
|
249 |
||>> take_suffix (improper_token o fst) |
|
250 |
||>> take_prefix (comment_token o fst) |
|
251 |
||> take_newline; |
|
252 |
in Span (cmd, (src_prefix, src_main, src_suffix1 @ src_suffix2, src_appendix), newline) end; |
|
253 |
||
254 |
||
255 |
(* present spans *) |
|
256 |
||
257 |
local |
|
258 |
||
259 |
fun err_bad_nesting pos = |
|
260 |
error ("Bad nesting of commands in presentation" ^ pos); |
|
261 |
||
262 |
fun edge which f (x: string option, y) = |
|
263 |
if x = y then I |
|
264 |
else (case which (x, y) of NONE => I | SOME txt => Buffer.add (f txt)); |
|
265 |
||
266 |
val begin_tag = edge #2 Latex.begin_tag; |
|
267 |
val end_tag = edge #1 Latex.end_tag; |
|
268 |
fun open_delim delim e = edge #2 Latex.begin_delim e #> delim #> edge #2 Latex.end_delim e; |
|
269 |
fun close_delim delim e = edge #1 Latex.begin_delim e #> delim #> edge #1 Latex.end_delim e; |
|
270 |
||
271 |
in |
|
272 |
||
58923 | 273 |
fun present_span keywords span state state' (tag_stack, active_tag, newline, buffer, present_cont) = |
22124 | 274 |
let |
275 |
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
|
276 |
Buffer.add (output_token state' tok) |
22124 | 277 |
#> Buffer.add flag |
278 |
| _ => I); |
|
279 |
||
280 |
val Span ((cmd_name, cmd_pos, cmd_tags), srcs, span_newline) = span; |
|
281 |
||
282 |
val (tag, tags) = tag_stack; |
|
46924 | 283 |
val tag' = try hd (fold (update (op =)) cmd_tags (the_list tag)); |
22124 | 284 |
|
58999
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58992
diff
changeset
|
285 |
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
|
286 |
|
22124 | 287 |
val active_tag' = |
288 |
if is_some tag' then tag' |
|
289 |
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
|
290 |
else |
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58992
diff
changeset
|
291 |
(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
|
292 |
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
|
293 |
| [] => |
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58992
diff
changeset
|
294 |
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
|
295 |
then active_tag |
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58992
diff
changeset
|
296 |
else NONE); |
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58992
diff
changeset
|
297 |
|
22124 | 298 |
val edge = (active_tag, active_tag'); |
299 |
||
300 |
val newline' = |
|
301 |
if is_none active_tag' then span_newline else newline; |
|
302 |
||
303 |
val tag_stack' = |
|
304 |
if nesting = 0 andalso not (Toplevel.is_proof state) then tag_stack |
|
305 |
else if nesting >= 0 then (tag', replicate nesting tag @ tags) |
|
306 |
else |
|
33957 | 307 |
(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
|
308 |
tg :: tgs => (tg, tgs) |
48992 | 309 |
| [] => err_bad_nesting (Position.here cmd_pos)); |
22124 | 310 |
|
311 |
val buffer' = |
|
312 |
buffer |
|
313 |
|> end_tag edge |
|
314 |
|> close_delim (fst present_cont) edge |
|
315 |
|> snd present_cont |
|
316 |
|> open_delim (present (#1 srcs)) edge |
|
317 |
|> begin_tag edge |
|
318 |
|> present (#2 srcs); |
|
319 |
val present_cont' = |
|
320 |
if newline then (present (#3 srcs), present (#4 srcs)) |
|
321 |
else (I, present (#3 srcs) #> present (#4 srcs)); |
|
322 |
in (tag_stack', active_tag', newline', buffer', present_cont') end; |
|
323 |
||
324 |
fun present_trailer ((_, tags), active_tag, _, buffer, present_cont) = |
|
325 |
if not (null tags) then err_bad_nesting " at end of theory" |
|
326 |
else |
|
327 |
buffer |
|
328 |
|> end_tag (active_tag, NONE) |
|
329 |
|> close_delim (fst present_cont) (active_tag, NONE) |
|
330 |
|> snd present_cont; |
|
331 |
||
332 |
end; |
|
333 |
||
334 |
||
28427
cc9f7d99fb73
turned process_thy into present_thy, which merely does presentation (wrt. persistent intermediate states);
wenzelm
parents:
28273
diff
changeset
|
335 |
(* present_thy *) |
22124 | 336 |
|
337 |
local |
|
338 |
||
339 |
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
|
340 |
Scan.one Token.is_blank -- Scan.many Token.is_comment -- Scan.one Token.is_proper; |
22124 | 341 |
|
36959
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36950
diff
changeset
|
342 |
val is_improper = not o (Token.is_proper orf Token.is_begin_ignore orf Token.is_end_ignore); |
22124 | 343 |
val improper = Scan.many is_improper; |
344 |
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
|
345 |
val blank_end = Scan.repeat (Scan.unless space_proper (Scan.one Token.is_blank)); |
22124 | 346 |
|
36959
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36950
diff
changeset
|
347 |
val opt_newline = Scan.option (Scan.one Token.is_newline); |
22124 | 348 |
|
349 |
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
|
350 |
Scan.depend (fn d => opt_newline |-- Scan.one Token.is_begin_ignore |
22124 | 351 |
>> 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
|
352 |
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
|
353 |
(if d = 0 then Scan.fail_with (K (fn () => "Bad nesting of meta-comments")) else opt_newline) |
22124 | 354 |
>> pair (d - 1)); |
355 |
||
36950 | 356 |
val tag = (improper -- Parse.$$$ "%" -- improper) |-- Parse.!!! (Parse.tag_name --| blank_end); |
22124 | 357 |
|
358 |
val locale = |
|
36950 | 359 |
Scan.option ((Parse.$$$ "(" -- improper -- Parse.$$$ "in") |-- |
360 |
Parse.!!! (improper |-- Parse.xname --| (improper -- Parse.$$$ ")"))); |
|
22124 | 361 |
|
362 |
in |
|
363 |
||
58928
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58923
diff
changeset
|
364 |
fun present_thy thy command_results toks = |
22124 | 365 |
let |
58928
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58923
diff
changeset
|
366 |
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
|
367 |
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58923
diff
changeset
|
368 |
|
22124 | 369 |
(* tokens *) |
370 |
||
371 |
val ignored = Scan.state --| ignore |
|
372 |
>> (fn d => (NONE, (NoToken, ("", d)))); |
|
373 |
||
58999
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58992
diff
changeset
|
374 |
fun markup pred mk flag = Scan.peek (fn d => |
36950 | 375 |
improper |-- |
58999
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58992
diff
changeset
|
376 |
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
|
377 |
Token.is_command tok andalso pred keywords (Token.content_of tok))) -- |
22124 | 378 |
Scan.repeat tag -- |
51627
589daaf48dba
tuned signature -- agree with markup terminology;
wenzelm
parents:
51626
diff
changeset
|
379 |
Parse.!!!! ((improper -- locale -- improper) |-- Parse.document_source --| improper_end) |
59064 | 380 |
>> (fn (((tok, pos'), tags), source) => |
381 |
let |
|
382 |
val name = Token.content_of tok; |
|
383 |
val text = Input.text_of source; |
|
384 |
val pos = Input.pos_of source; |
|
55828
42ac3cfb89f6
clarified language markup: added "delimited" property;
wenzelm
parents:
55796
diff
changeset
|
385 |
in (SOME (name, pos', tags), (mk (name, (text, pos)), (flag, d))) end)); |
22124 | 386 |
|
387 |
val command = Scan.peek (fn d => |
|
46811
03a2dc9e0624
clarified command span: include trailing whitespace/comments and thus reduce number of ignored spans with associated transactions and states (factor 2);
wenzelm
parents:
46261
diff
changeset
|
388 |
Parse.position (Scan.one (Token.is_command)) -- |
22124 | 389 |
Scan.repeat tag |
390 |
>> (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
|
391 |
let val name = Token.content_of tok |
22124 | 392 |
in (SOME (name, pos, tags), (BasicToken tok, (Latex.markup_false, d))) end)); |
393 |
||
394 |
val cmt = Scan.peek (fn d => |
|
59064 | 395 |
Parse.$$$ "--" |-- Parse.!!!! (improper |-- Parse.document_source) >> (fn source => |
396 |
(NONE, (MarkupToken ("cmt", (Input.text_of source, Input.pos_of source)), ("", d))))); |
|
22124 | 397 |
|
398 |
val other = Scan.peek (fn d => |
|
36950 | 399 |
Parse.not_eof >> (fn tok => (NONE, (BasicToken tok, ("", d))))); |
22124 | 400 |
|
401 |
val token = |
|
402 |
ignored || |
|
58999
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58992
diff
changeset
|
403 |
markup Keyword.is_document_heading MarkupToken Latex.markup_true || |
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58992
diff
changeset
|
404 |
markup Keyword.is_document_body MarkupEnvToken Latex.markup_true || |
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58992
diff
changeset
|
405 |
markup Keyword.is_document_raw (VerbatimToken o #2) "" || |
22124 | 406 |
command || cmt || other; |
407 |
||
408 |
||
409 |
(* spans *) |
|
410 |
||
36959
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36950
diff
changeset
|
411 |
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
|
412 |
val stopper = Scan.stopper (K (NONE, (BasicToken Token.eof, ("", 0)))) is_eof; |
22124 | 413 |
|
414 |
val cmd = Scan.one (is_some o fst); |
|
27732 | 415 |
val non_cmd = Scan.one (is_none o fst andf not o is_eof) >> #2; |
22124 | 416 |
|
417 |
val comments = Scan.many (comment_token o fst o snd); |
|
418 |
val blank = Scan.one (blank_token o fst o snd); |
|
419 |
val newline = Scan.one (newline_token o fst o snd); |
|
420 |
val before_cmd = |
|
421 |
Scan.option (newline -- comments) -- |
|
422 |
Scan.option (newline -- comments) -- |
|
423 |
Scan.option (blank -- comments) -- cmd; |
|
424 |
||
425 |
val span = |
|
426 |
Scan.repeat non_cmd -- cmd -- |
|
427 |
Scan.repeat (Scan.unless before_cmd non_cmd) -- |
|
428 |
Scan.option (newline >> (single o snd)) |
|
429 |
>> (fn (((toks1, (cmd, tok2)), toks3), tok4) => |
|
430 |
make_span (the cmd) (toks1 @ (tok2 :: (toks3 @ the_default [] tok4)))); |
|
431 |
||
57080
0e5fa27d3293
strip trailing white space, to avoid notorious problems of jEdit with last line;
wenzelm
parents:
56548
diff
changeset
|
432 |
val spans = toks |
0e5fa27d3293
strip trailing white space, to avoid notorious problems of jEdit with last line;
wenzelm
parents:
56548
diff
changeset
|
433 |
|> 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
|
434 |
|> Source.of_list |
58864 | 435 |
|> Source.source' 0 Token.stopper (Scan.error (Scan.bulk token)) |
436 |
|> Source.source stopper (Scan.error (Scan.bulk span)) |
|
22124 | 437 |
|> Source.exhaust; |
28427
cc9f7d99fb73
turned process_thy into present_thy, which merely does presentation (wrt. persistent intermediate states);
wenzelm
parents:
28273
diff
changeset
|
438 |
|
cc9f7d99fb73
turned process_thy into present_thy, which merely does presentation (wrt. persistent intermediate states);
wenzelm
parents:
28273
diff
changeset
|
439 |
|
cc9f7d99fb73
turned process_thy into present_thy, which merely does presentation (wrt. persistent intermediate states);
wenzelm
parents:
28273
diff
changeset
|
440 |
(* present commands *) |
cc9f7d99fb73
turned process_thy into present_thy, which merely does presentation (wrt. persistent intermediate states);
wenzelm
parents:
28273
diff
changeset
|
441 |
|
cc9f7d99fb73
turned process_thy into present_thy, which merely does presentation (wrt. persistent intermediate states);
wenzelm
parents:
28273
diff
changeset
|
442 |
fun present_command tr span st st' = |
58923 | 443 |
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
|
444 |
|
cc9f7d99fb73
turned process_thy into present_thy, which merely does presentation (wrt. persistent intermediate states);
wenzelm
parents:
28273
diff
changeset
|
445 |
fun present _ [] = I |
cc9f7d99fb73
turned process_thy into present_thy, which merely does presentation (wrt. persistent intermediate states);
wenzelm
parents:
28273
diff
changeset
|
446 |
| present st (((tr, st'), span) :: rest) = present_command tr span st st' #> present st' rest; |
22124 | 447 |
in |
28427
cc9f7d99fb73
turned process_thy into present_thy, which merely does presentation (wrt. persistent intermediate states);
wenzelm
parents:
28273
diff
changeset
|
448 |
if length command_results = length spans then |
22124 | 449 |
((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
|
450 |
|> present Toplevel.toplevel (command_results ~~ spans) |
22124 | 451 |
|> present_trailer |
452 |
else error "Messed-up outer syntax for presentation" |
|
453 |
end; |
|
454 |
||
455 |
end; |
|
456 |
||
457 |
||
458 |
||
459 |
(** setup default output **) |
|
460 |
||
461 |
(* options *) |
|
462 |
||
53171 | 463 |
val _ = Theory.setup |
56204 | 464 |
(add_option @{binding show_types} (Config.put show_types o boolean) #> |
465 |
add_option @{binding show_sorts} (Config.put show_sorts o boolean) #> |
|
466 |
add_option @{binding show_structs} (Config.put show_structs o boolean) #> |
|
467 |
add_option @{binding show_question_marks} (Config.put show_question_marks o boolean) #> |
|
468 |
add_option @{binding show_abbrevs} (Config.put show_abbrevs o boolean) #> |
|
469 |
add_option @{binding names_long} (Config.put Name_Space.names_long o boolean) #> |
|
470 |
add_option @{binding names_short} (Config.put Name_Space.names_short o boolean) #> |
|
471 |
add_option @{binding names_unique} (Config.put Name_Space.names_unique o boolean) #> |
|
472 |
add_option @{binding eta_contract} (Config.put Syntax_Trans.eta_contract o boolean) #> |
|
473 |
add_option @{binding display} (Config.put display o boolean) #> |
|
474 |
add_option @{binding break} (Config.put break o boolean) #> |
|
475 |
add_option @{binding quotes} (Config.put quotes o boolean) #> |
|
476 |
add_option @{binding mode} (add_wrapper o Print_Mode.with_modes o single) #> |
|
477 |
add_option @{binding margin} (add_wrapper o setmp_CRITICAL Pretty.margin_default o integer) #> |
|
478 |
add_option @{binding indent} (Config.put indent o integer) #> |
|
479 |
add_option @{binding source} (Config.put source o boolean) #> |
|
480 |
add_option @{binding goals_limit} (Config.put Goal_Display.goals_limit o integer)); |
|
22124 | 481 |
|
482 |
||
483 |
(* basic pretty printing *) |
|
484 |
||
38767
d8da44a8dd25
proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents:
38766
diff
changeset
|
485 |
fun tweak_line ctxt s = |
d8da44a8dd25
proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents:
38766
diff
changeset
|
486 |
if Config.get ctxt display then s else Symbol.strip_blanks s; |
22124 | 487 |
|
38767
d8da44a8dd25
proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents:
38766
diff
changeset
|
488 |
fun pretty_text ctxt = |
46195 | 489 |
Pretty.chunks o map Pretty.str o map (tweak_line ctxt) o split_lines; |
22124 | 490 |
|
55829 | 491 |
fun pretty_text_report ctxt source = |
55828
42ac3cfb89f6
clarified language markup: added "delimited" property;
wenzelm
parents:
55796
diff
changeset
|
492 |
let |
59064 | 493 |
val (s, pos) = Input.source_content source; |
494 |
val _ = Context_Position.report ctxt pos (Markup.language_text (Input.is_delimited source)); |
|
55828
42ac3cfb89f6
clarified language markup: added "delimited" property;
wenzelm
parents:
55796
diff
changeset
|
495 |
in pretty_text ctxt s end; |
55561 | 496 |
|
26710
f79aa228c582
pretty_term: no revert_skolems here, but auto_fixes (token translations will do the rest);
wenzelm
parents:
26455
diff
changeset
|
497 |
fun pretty_term ctxt t = Syntax.pretty_term (Variable.auto_fixes t ctxt) t; |
24920 | 498 |
|
32898
e871d897969c
term styles also cover antiquotations term_type and typeof
haftmann
parents:
32890
diff
changeset
|
499 |
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
|
500 |
|
e871d897969c
term styles also cover antiquotations term_type and typeof
haftmann
parents:
32890
diff
changeset
|
501 |
fun pretty_term_style ctxt (style, t) = |
e871d897969c
term styles also cover antiquotations term_type and typeof
haftmann
parents:
32890
diff
changeset
|
502 |
pretty_term ctxt (style t); |
22124 | 503 |
|
32898
e871d897969c
term styles also cover antiquotations term_type and typeof
haftmann
parents:
32890
diff
changeset
|
504 |
fun pretty_thm_style ctxt (style, th) = |
e871d897969c
term styles also cover antiquotations term_type and typeof
haftmann
parents:
32890
diff
changeset
|
505 |
pretty_term ctxt (style (Thm.full_prop_of th)); |
22124 | 506 |
|
32898
e871d897969c
term styles also cover antiquotations term_type and typeof
haftmann
parents:
32890
diff
changeset
|
507 |
fun pretty_term_typ ctxt (style, t) = |
e871d897969c
term styles also cover antiquotations term_type and typeof
haftmann
parents:
32890
diff
changeset
|
508 |
let val t' = style t |
39288 | 509 |
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
|
510 |
|
e871d897969c
term styles also cover antiquotations term_type and typeof
haftmann
parents:
32890
diff
changeset
|
511 |
fun pretty_term_typeof ctxt (style, t) = |
e871d897969c
term styles also cover antiquotations term_type and typeof
haftmann
parents:
32890
diff
changeset
|
512 |
Syntax.pretty_typ ctxt (Term.fastype_of (style t)); |
22124 | 513 |
|
25373
ccbf65080fdf
@{const}: improved ProofContext.read_const does the job;
wenzelm
parents:
25241
diff
changeset
|
514 |
fun pretty_const ctxt c = |
ccbf65080fdf
@{const}: improved ProofContext.read_const does the job;
wenzelm
parents:
25241
diff
changeset
|
515 |
let |
42360 | 516 |
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
|
517 |
handle TYPE (msg, _, _) => error msg; |
ccbf65080fdf
@{const}: improved ProofContext.read_const does the job;
wenzelm
parents:
25241
diff
changeset
|
518 |
val ([t'], _) = Variable.import_terms true [t] ctxt; |
ccbf65080fdf
@{const}: improved ProofContext.read_const does the job;
wenzelm
parents:
25241
diff
changeset
|
519 |
in pretty_term ctxt t' end; |
22124 | 520 |
|
25407
2859cf34aaf0
abbrev: bypass full term check via ProofContext.standard_infer_types (prevents forced expansion);
wenzelm
parents:
25373
diff
changeset
|
521 |
fun pretty_abbrev ctxt s = |
22124 | 522 |
let |
42399 | 523 |
val t = Syntax.read_term (Proof_Context.set_mode Proof_Context.mode_abbrev ctxt) s; |
24920 | 524 |
fun err () = error ("Abbreviated constant expected: " ^ Syntax.string_of_term ctxt t); |
22124 | 525 |
val (head, args) = Term.strip_comb t; |
526 |
val (c, T) = Term.dest_Const head handle TERM _ => err (); |
|
42360 | 527 |
val (U, u) = Consts.the_abbreviation (Proof_Context.consts_of ctxt) c |
22124 | 528 |
handle TYPE _ => err (); |
529 |
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
|
530 |
val eq = Logic.mk_equals (t, t'); |
e871d897969c
term styles also cover antiquotations term_type and typeof
haftmann
parents:
32890
diff
changeset
|
531 |
val ctxt' = Variable.auto_fixes eq ctxt; |
42360 | 532 |
in Proof_Context.pretty_term_abbrev ctxt' eq end; |
22124 | 533 |
|
39305
d4fa19eb0822
'class' and 'type' are now antiquoations by default
haftmann
parents:
39134
diff
changeset
|
534 |
fun pretty_class ctxt = |
42360 | 535 |
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
|
536 |
|
39309
74469faa27ca
type antiquotation: allow arbitrary type abbreviations, but fail with user-space exception on bad input
haftmann
parents:
39308
diff
changeset
|
537 |
fun pretty_type ctxt s = |
56002 | 538 |
let val Type (name, _) = Proof_Context.read_type_name {proper = true, strict = false} ctxt s |
42360 | 539 |
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
|
540 |
|
33388 | 541 |
fun pretty_prf full ctxt = Proof_Syntax.pretty_proof_of ctxt full; |
22124 | 542 |
|
48927
ef462b5558eb
theory def/ref position reports, which enable hyperlinks etc.;
wenzelm
parents:
48918
diff
changeset
|
543 |
fun pretty_theory ctxt (name, pos) = |
ef462b5558eb
theory def/ref position reports, which enable hyperlinks etc.;
wenzelm
parents:
48918
diff
changeset
|
544 |
(case find_first (fn thy => Context.theory_name thy = name) |
ef462b5558eb
theory def/ref position reports, which enable hyperlinks etc.;
wenzelm
parents:
48918
diff
changeset
|
545 |
(Theory.nodes_of (Proof_Context.theory_of ctxt)) of |
48992 | 546 |
NONE => error ("No ancestor theory " ^ quote name ^ Position.here pos) |
55614
e2d71b8b0d95
prefer guarded Context_Position.report where feasible;
wenzelm
parents:
55561
diff
changeset
|
547 |
| SOME thy => (Context_Position.report ctxt pos (Theory.get_markup thy); Pretty.str name)); |
22124 | 548 |
|
549 |
||
30390
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
550 |
(* default output *) |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
551 |
|
58011
bc6bced136e5
tuned signature -- moved type src to Token, without aliases;
wenzelm
parents:
57080
diff
changeset
|
552 |
val str_of_source = space_implode " " o Token.unparse_src; |
22124 | 553 |
|
38767
d8da44a8dd25
proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents:
38766
diff
changeset
|
554 |
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
|
555 |
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
|
556 |
|> (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
|
557 |
|
38767
d8da44a8dd25
proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents:
38766
diff
changeset
|
558 |
fun output ctxt prts = |
30390
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
559 |
prts |
58716
23a380cc45f4
official support for "tt" style variants, avoid fragile \verb in LaTeX;
wenzelm
parents:
58069
diff
changeset
|
560 |
|> 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
|
561 |
|> (if Config.get ctxt display then |
58716
23a380cc45f4
official support for "tt" style variants, avoid fragile \verb in LaTeX;
wenzelm
parents:
58069
diff
changeset
|
562 |
map (Output.output o Pretty.string_of o Pretty.indent (Config.get ctxt indent)) |
23a380cc45f4
official support for "tt" style variants, avoid fragile \verb in LaTeX;
wenzelm
parents:
58069
diff
changeset
|
563 |
#> space_implode "\\isasep\\isanewline%\n" |
23a380cc45f4
official support for "tt" style variants, avoid fragile \verb in LaTeX;
wenzelm
parents:
58069
diff
changeset
|
564 |
#> enclose "\\begin{isabelle}%\n" "%\n\\end{isabelle}" |
23a380cc45f4
official support for "tt" style variants, avoid fragile \verb in LaTeX;
wenzelm
parents:
58069
diff
changeset
|
565 |
else |
23a380cc45f4
official support for "tt" style variants, avoid fragile \verb in LaTeX;
wenzelm
parents:
58069
diff
changeset
|
566 |
map (Output.output o (if Config.get ctxt break then Pretty.string_of else Pretty.str_of)) |
23a380cc45f4
official support for "tt" style variants, avoid fragile \verb in LaTeX;
wenzelm
parents:
58069
diff
changeset
|
567 |
#> space_implode "\\isasep\\isanewline%\n" |
23a380cc45f4
official support for "tt" style variants, avoid fragile \verb in LaTeX;
wenzelm
parents:
58069
diff
changeset
|
568 |
#> enclose "\\isa{" "}"); |
22124 | 569 |
|
30390
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
570 |
|
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
571 |
|
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
572 |
(** concrete antiquotations **) |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
573 |
|
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
574 |
(* basic entities *) |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
575 |
|
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
576 |
local |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
577 |
|
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
578 |
fun basic_entities name scan pretty = antiquotation name scan |
38767
d8da44a8dd25
proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents:
38766
diff
changeset
|
579 |
(fn {source, context, ...} => output context o maybe_pretty_source pretty context source); |
30390
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
580 |
|
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
|
581 |
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
|
582 |
(fn {source, context, ...} => fn (style, xs) => |
38767
d8da44a8dd25
proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents:
38766
diff
changeset
|
583 |
output context |
d8da44a8dd25
proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents:
38766
diff
changeset
|
584 |
(maybe_pretty_source (fn ctxt => fn x => pretty ctxt (style, x)) context 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
|
585 |
|
30390
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
586 |
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
|
587 |
|
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
588 |
in |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
589 |
|
53171 | 590 |
val _ = Theory.setup |
56204 | 591 |
(basic_entities_style @{binding thm} (Term_Style.parse -- Attrib.thms) pretty_thm_style #> |
592 |
basic_entity @{binding prop} (Term_Style.parse -- Args.prop) pretty_term_style #> |
|
593 |
basic_entity @{binding term} (Term_Style.parse -- Args.term) pretty_term_style #> |
|
594 |
basic_entity @{binding term_type} (Term_Style.parse -- Args.term) pretty_term_typ #> |
|
595 |
basic_entity @{binding typeof} (Term_Style.parse -- Args.term) pretty_term_typeof #> |
|
596 |
basic_entity @{binding const} (Args.const {proper = true, strict = false}) pretty_const #> |
|
597 |
basic_entity @{binding abbrev} (Scan.lift Args.name_inner_syntax) pretty_abbrev #> |
|
598 |
basic_entity @{binding typ} Args.typ_abbrev Syntax.pretty_typ #> |
|
599 |
basic_entity @{binding class} (Scan.lift Args.name_inner_syntax) pretty_class #> |
|
600 |
basic_entity @{binding type} (Scan.lift Args.name) pretty_type #> |
|
58069
0255436b3d85
more liberal embedded "text", which includes cartouches;
wenzelm
parents:
58011
diff
changeset
|
601 |
basic_entity @{binding text} (Scan.lift Args.text_source_position) pretty_text_report #> |
56204 | 602 |
basic_entities @{binding prf} Attrib.thms (pretty_prf false) #> |
603 |
basic_entities @{binding full_prf} Attrib.thms (pretty_prf true) #> |
|
604 |
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
|
605 |
|
30390
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
606 |
end; |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
607 |
|
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 |
(* goal state *) |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
610 |
|
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
611 |
local |
22124 | 612 |
|
30367 | 613 |
fun proof_state state = |
49847 | 614 |
(case try (Proof.goal o Toplevel.proof_of) state of |
615 |
SOME {goal, ...} => goal |
|
22124 | 616 |
| _ => error "No proof state"); |
617 |
||
49847 | 618 |
fun goal_state name main = antiquotation name (Scan.succeed ()) |
39125
f45d332a90e3
pretty_goals: turned some global references and function arguments into configuration options (goals_limit = 10, goals_total = true, show_main_goal = false) depending on the context;
wenzelm
parents:
38980
diff
changeset
|
619 |
(fn {state, context = ctxt, ...} => fn () => output ctxt |
51958
bca32217b304
retain goal display options when printing error messages, to avoid breakdown for huge goals;
wenzelm
parents:
51627
diff
changeset
|
620 |
[Goal_Display.pretty_goal |
bca32217b304
retain goal display options when printing error messages, to avoid breakdown for huge goals;
wenzelm
parents:
51627
diff
changeset
|
621 |
(Config.put Goal_Display.show_main_goal main ctxt) (proof_state state)]); |
22124 | 622 |
|
30390
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
623 |
in |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
624 |
|
53171 | 625 |
val _ = Theory.setup |
56204 | 626 |
(goal_state @{binding goals} true #> |
627 |
goal_state @{binding subgoals} false); |
|
30390
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
628 |
|
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
629 |
end; |
22124 | 630 |
|
631 |
||
30390
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
632 |
(* embedded lemma *) |
27522 | 633 |
|
53171 | 634 |
val _ = Theory.setup |
56204 | 635 |
(antiquotation @{binding lemma} |
56029
8bedca4bd5a3
clarified Args.src: more abstract type, position refers to name only;
wenzelm
parents:
56028
diff
changeset
|
636 |
(Scan.lift (Scan.ahead Parse.not_eof) -- Args.prop -- |
58866
f81e11391562
clarified syntax -- avoid overlap with command category;
wenzelm
parents:
58864
diff
changeset
|
637 |
Scan.lift (Parse.position (Parse.reserved "by") -- Method.parse -- Scan.option Method.parse)) |
56029
8bedca4bd5a3
clarified Args.src: more abstract type, position refers to name only;
wenzelm
parents:
56028
diff
changeset
|
638 |
(fn {source, context = ctxt, ...} => fn ((prop_token, prop), (((_, by_pos), m1), m2)) => |
43564
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42669
diff
changeset
|
639 |
let |
58011
bc6bced136e5
tuned signature -- moved type src to Token, without aliases;
wenzelm
parents:
57080
diff
changeset
|
640 |
val prop_src = Token.src (Token.name_of_src source) [prop_token]; |
55795 | 641 |
|
642 |
val reports = (by_pos, Markup.keyword1) :: maps Method.reports_of (m1 :: the_list m2); |
|
643 |
val _ = Context_Position.reports ctxt reports; |
|
644 |
||
43564
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42669
diff
changeset
|
645 |
(* FIXME check proof!? *) |
55739 | 646 |
val _ = ctxt |
43564
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42669
diff
changeset
|
647 |
|> Proof.theorem NONE (K I) [[(prop, [])]] |
55795 | 648 |
|> Proof.global_terminal_proof (m1, m2); |
55739 | 649 |
in output ctxt (maybe_pretty_source pretty_term ctxt prop_src [prop]) end)); |
30390
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
650 |
|
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
651 |
|
58716
23a380cc45f4
official support for "tt" style variants, avoid fragile \verb in LaTeX;
wenzelm
parents:
58069
diff
changeset
|
652 |
(* verbatim text *) |
23a380cc45f4
official support for "tt" style variants, avoid fragile \verb in LaTeX;
wenzelm
parents:
58069
diff
changeset
|
653 |
|
58741
6e7b009e6d94
clarified verbatim line breaks, e.g. relevant for Implementation mldecls;
wenzelm
parents:
58716
diff
changeset
|
654 |
fun verbatim_text ctxt = |
6e7b009e6d94
clarified verbatim line breaks, e.g. relevant for Implementation mldecls;
wenzelm
parents:
58716
diff
changeset
|
655 |
if Config.get ctxt display then |
6e7b009e6d94
clarified verbatim line breaks, e.g. relevant for Implementation mldecls;
wenzelm
parents:
58716
diff
changeset
|
656 |
Latex.output_ascii #> |
6e7b009e6d94
clarified verbatim line breaks, e.g. relevant for Implementation mldecls;
wenzelm
parents:
58716
diff
changeset
|
657 |
enclose "\\begin{isabellett}%\n" "%\n\\end{isabellett}" |
6e7b009e6d94
clarified verbatim line breaks, e.g. relevant for Implementation mldecls;
wenzelm
parents:
58716
diff
changeset
|
658 |
else |
6e7b009e6d94
clarified verbatim line breaks, e.g. relevant for Implementation mldecls;
wenzelm
parents:
58716
diff
changeset
|
659 |
split_lines #> |
6e7b009e6d94
clarified verbatim line breaks, e.g. relevant for Implementation mldecls;
wenzelm
parents:
58716
diff
changeset
|
660 |
map (Latex.output_ascii #> enclose "\\isatt{" "}") #> |
6e7b009e6d94
clarified verbatim line breaks, e.g. relevant for Implementation mldecls;
wenzelm
parents:
58716
diff
changeset
|
661 |
space_implode "\\isasep\\isanewline%\n"; |
30390
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
662 |
|
58741
6e7b009e6d94
clarified verbatim line breaks, e.g. relevant for Implementation mldecls;
wenzelm
parents:
58716
diff
changeset
|
663 |
val _ = |
6e7b009e6d94
clarified verbatim line breaks, e.g. relevant for Implementation mldecls;
wenzelm
parents:
58716
diff
changeset
|
664 |
Theory.setup |
6e7b009e6d94
clarified verbatim line breaks, e.g. relevant for Implementation mldecls;
wenzelm
parents:
58716
diff
changeset
|
665 |
(antiquotation @{binding verbatim} (Scan.lift Args.text) (verbatim_text o #context)); |
58716
23a380cc45f4
official support for "tt" style variants, avoid fragile \verb in LaTeX;
wenzelm
parents:
58069
diff
changeset
|
666 |
|
23a380cc45f4
official support for "tt" style variants, avoid fragile \verb in LaTeX;
wenzelm
parents:
58069
diff
changeset
|
667 |
|
23a380cc45f4
official support for "tt" style variants, avoid fragile \verb in LaTeX;
wenzelm
parents:
58069
diff
changeset
|
668 |
(* ML text *) |
40801 | 669 |
|
30390
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
670 |
local |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
671 |
|
58069
0255436b3d85
more liberal embedded "text", which includes cartouches;
wenzelm
parents:
58011
diff
changeset
|
672 |
fun ml_text name ml = antiquotation name (Scan.lift Args.text_source_position) |
58716
23a380cc45f4
official support for "tt" style variants, avoid fragile \verb in LaTeX;
wenzelm
parents:
58069
diff
changeset
|
673 |
(fn {context = ctxt, ...} => fn source => |
59064 | 674 |
(ML_Context.eval_in (SOME ctxt) ML_Compiler.flags (Input.pos_of source) (ml source); |
675 |
Input.source_content source |> #1 |
|
58716
23a380cc45f4
official support for "tt" style variants, avoid fragile \verb in LaTeX;
wenzelm
parents:
58069
diff
changeset
|
676 |
|> verbatim_text ctxt)); |
30390
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
677 |
|
55828
42ac3cfb89f6
clarified language markup: added "delimited" property;
wenzelm
parents:
55796
diff
changeset
|
678 |
fun ml_enclose bg en source = |
42ac3cfb89f6
clarified language markup: added "delimited" property;
wenzelm
parents:
55796
diff
changeset
|
679 |
ML_Lex.read Position.none bg @ |
56278
2576d3a40ed6
separate tokenization and language context for SML: no symbols, no antiquotes;
wenzelm
parents:
56275
diff
changeset
|
680 |
ML_Lex.read_source false source @ |
55828
42ac3cfb89f6
clarified language markup: added "delimited" property;
wenzelm
parents:
55796
diff
changeset
|
681 |
ML_Lex.read Position.none en; |
37198
3af985b10550
replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
wenzelm
parents:
37146
diff
changeset
|
682 |
|
30390
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
683 |
in |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
684 |
|
53171 | 685 |
val _ = Theory.setup |
56204 | 686 |
(ml_text @{binding ML} (ml_enclose "fn _ => (" ");") #> |
687 |
ml_text @{binding ML_op} (ml_enclose "fn _ => (op " ");") #> |
|
688 |
ml_text @{binding ML_type} (ml_enclose "val _ = NONE : (" ") option;") #> |
|
689 |
ml_text @{binding ML_structure} |
|
53171 | 690 |
(ml_enclose "functor XXX() = struct structure XX = " " end;") #> |
37198
3af985b10550
replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
wenzelm
parents:
37146
diff
changeset
|
691 |
|
56204 | 692 |
ml_text @{binding ML_functor} (* FIXME formal treatment of functor name (!?) *) |
55829 | 693 |
(fn source => |
53171 | 694 |
ML_Lex.read Position.none ("ML_Env.check_functor " ^ |
59064 | 695 |
ML_Syntax.print_string (#1 (Input.source_content source)))) #> |
37198
3af985b10550
replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
wenzelm
parents:
37146
diff
changeset
|
696 |
|
56204 | 697 |
ml_text @{binding ML_text} (K [])); |
22124 | 698 |
|
699 |
end; |
|
30390
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
700 |
|
54702
3daeba5130f0
added document antiquotation @{url}, which produces formal markup for LaTeX and PIDE;
wenzelm
parents:
53171
diff
changeset
|
701 |
|
3daeba5130f0
added document antiquotation @{url}, which produces formal markup for LaTeX and PIDE;
wenzelm
parents:
53171
diff
changeset
|
702 |
(* URLs *) |
3daeba5130f0
added document antiquotation @{url}, which produces formal markup for LaTeX and PIDE;
wenzelm
parents:
53171
diff
changeset
|
703 |
|
3daeba5130f0
added document antiquotation @{url}, which produces formal markup for LaTeX and PIDE;
wenzelm
parents:
53171
diff
changeset
|
704 |
val _ = Theory.setup |
56204 | 705 |
(antiquotation @{binding url} (Scan.lift (Parse.position Parse.name)) |
54702
3daeba5130f0
added document antiquotation @{url}, which produces formal markup for LaTeX and PIDE;
wenzelm
parents:
53171
diff
changeset
|
706 |
(fn {context = ctxt, ...} => fn (name, pos) => |
56034
1c59b555ac4a
some Markup.language_path to prevent completion of symbols (notably "~") -- always "delimited" for simplicity in contrast to 42ac3cfb89f6;
wenzelm
parents:
56032
diff
changeset
|
707 |
(Context_Position.reports ctxt [(pos, Markup.language_path), (pos, Markup.url name)]; |
1c59b555ac4a
some Markup.language_path to prevent completion of symbols (notably "~") -- always "delimited" for simplicity in contrast to 42ac3cfb89f6;
wenzelm
parents:
56032
diff
changeset
|
708 |
enclose "\\url{" "}" name))); |
54702
3daeba5130f0
added document antiquotation @{url}, which produces formal markup for LaTeX and PIDE;
wenzelm
parents:
53171
diff
changeset
|
709 |
|
58928
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58923
diff
changeset
|
710 |
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58923
diff
changeset
|
711 |
|
58999
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58992
diff
changeset
|
712 |
(** document commands **) |
58928
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58923
diff
changeset
|
713 |
|
58999
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58992
diff
changeset
|
714 |
fun old_header_command txt = |
58928
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58923
diff
changeset
|
715 |
Toplevel.keep (fn state => |
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58923
diff
changeset
|
716 |
if Toplevel.is_toplevel state then |
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58923
diff
changeset
|
717 |
(legacy_feature "Obsolete 'header' command -- use 'chapter', 'section' etc. instead"; |
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58923
diff
changeset
|
718 |
check_text txt state) |
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58923
diff
changeset
|
719 |
else raise Toplevel.UNDEF); |
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58923
diff
changeset
|
720 |
|
58999
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58992
diff
changeset
|
721 |
fun document_command (loc, txt) = |
58928
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58923
diff
changeset
|
722 |
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
|
723 |
(case loc of |
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58992
diff
changeset
|
724 |
NONE => check_text txt state |
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58992
diff
changeset
|
725 |
| SOME (_, pos) => |
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58992
diff
changeset
|
726 |
error ("Illegal target specification -- not a theory context" ^ Position.here pos))) o |
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58992
diff
changeset
|
727 |
Toplevel.present_local_theory loc (check_text txt); |
58928
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58923
diff
changeset
|
728 |
|
30390
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
729 |
end; |