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