author | krauss |
Tue, 03 Feb 2009 11:16:28 +0100 | |
changeset 29780 | 1df0e5af40b9 |
parent 28759 | 8358fabeea95 |
child 29726 | 5f91ff5c03a2 |
child 30240 | 5b25fee0362c |
permissions | -rw-r--r-- |
24584 | 1 |
(* Title: Doc/antiquote_setup.ML |
21375 | 2 |
ID: $Id$ |
3 |
Author: Makarius |
|
4 |
||
26742 | 5 |
Auxiliary antiquotations for the Isabelle manuals. |
21375 | 6 |
*) |
7 |
||
26742 | 8 |
structure AntiquoteSetup: sig end = |
9 |
struct |
|
21375 | 10 |
|
22094 | 11 |
structure O = ThyOutput; |
21375 | 12 |
|
26742 | 13 |
|
14 |
(* misc utils *) |
|
15 |
||
26768 | 16 |
val clean_string = translate_string |
26853
52cb0e965041
clean_string: map "_" to "\\_" (best used with underscore.sty);
wenzelm
parents:
26843
diff
changeset
|
17 |
(fn "_" => "\\_" |
26897 | 18 |
| "<" => "$<$" |
26768 | 19 |
| ">" => "$>$" |
20 |
| "#" => "\\#" |
|
21 |
| "{" => "\\{" |
|
22 |
| "}" => "\\}" |
|
23 |
| c => c); |
|
26751 | 24 |
|
26897 | 25 |
fun clean_name "\\<dots>" = "dots" |
26 |
| clean_name ".." = "ddot" |
|
27 |
| clean_name "." = "dot" |
|
26910 | 28 |
| clean_name "_" = "underscore" |
26897 | 29 |
| clean_name "{" = "braceleft" |
30 |
| clean_name "}" = "braceright" |
|
26903 | 31 |
| clean_name s = s |> translate_string (fn "_" => "-" | c => c); |
26897 | 32 |
|
26742 | 33 |
|
34 |
(* verbatim text *) |
|
35 |
||
36 |
val verbatim = space_implode "\\verb,|," o map (enclose "\\verb|" "|") o space_explode "|"; |
|
37 |
||
38 |
val _ = O.add_commands |
|
39 |
[("verbatim", O.args (Scan.lift Args.name) (fn _ => fn _ => |
|
40 |
split_lines #> map verbatim #> space_implode "\\isasep\\isanewline%\n"))]; |
|
41 |
||
42 |
||
43 |
(* ML text *) |
|
44 |
||
45 |
local |
|
46 |
||
21375 | 47 |
fun ml_val (txt1, "") = "fn _ => (" ^ txt1 ^ ");" |
48 |
| ml_val (txt1, txt2) = "fn _ => (" ^ txt1 ^ ": " ^ txt2 ^ ");"; |
|
49 |
||
50 |
fun ml_type (txt1, "") = "val _ = NONE : (" ^ txt1 ^ ") option;" |
|
51 |
| ml_type (txt1, txt2) = "val _ = [NONE : (" ^ txt1 ^ ") option, NONE : (" ^ txt2 ^ ") option];"; |
|
22289 | 52 |
|
23651 | 53 |
fun ml_exn (txt1, "") = "fn _ => (" ^ txt1 ^ ": exn);" |
54 |
| ml_exn (txt1, txt2) = "fn _ => (" ^ txt1 ^ ": " ^ txt2 ^ " -> exn);"; |
|
22289 | 55 |
|
21375 | 56 |
fun ml_structure (txt, _) = "functor DUMMY_FUNCTOR() = struct structure DUMMY = " ^ txt ^ " end;" |
57 |
||
58 |
fun ml_functor _ = "val _ = ();"; (*no check!*) |
|
59 |
||
60 |
fun index_ml kind ml src ctxt (txt1, txt2) = |
|
61 |
let |
|
62 |
val txt = if txt2 = "" then txt1 else |
|
26742 | 63 |
if kind = "type" then txt1 ^ " = " ^ txt2 |
64 |
else if kind = "exception" then txt1 ^ " of " ^ txt2 |
|
22289 | 65 |
else txt1 ^ ": " ^ txt2; |
21375 | 66 |
val txt' = if kind = "" then txt else kind ^ " " ^ txt; |
22289 | 67 |
val _ = writeln (ml (txt1, txt2)); |
28273
17f6aa02ded3
simplified ML_Context.eval_in -- expect immutable Proof.context value;
wenzelm
parents:
28237
diff
changeset
|
68 |
val _ = ML_Context.eval_in (SOME ctxt) false Position.none (ml (txt1, txt2)); |
21375 | 69 |
in |
26751 | 70 |
"\\indexml" ^ kind ^ enclose "{" "}" (clean_string txt1) ^ |
28759 | 71 |
(txt' |
21375 | 72 |
|> (if ! O.quotes then quote else I) |
73 |
|> (if ! O.display then enclose "\\begin{verbatim}\n" "\n\\end{verbatim}" |
|
26751 | 74 |
else split_lines #> map verbatim #> space_implode "\\isasep\\isanewline%\n")) |
21375 | 75 |
end; |
76 |
||
26461 | 77 |
fun output_ml ctxt src = |
78 |
if ! O.display then enclose "\\begin{verbatim}\n" "\n\\end{verbatim}" |
|
26742 | 79 |
else |
26461 | 80 |
split_lines |
81 |
#> map (space_implode "\\verb,|," o map (enclose "\\verb|" "|") o space_explode "|") |
|
82 |
#> space_implode "\\isasep\\isanewline%\n"; |
|
83 |
||
26742 | 84 |
fun ml_args x = O.args (Scan.lift (Args.name -- Scan.optional (Args.colon |-- Args.name) "")) x; |
85 |
||
86 |
in |
|
21375 | 87 |
|
26742 | 88 |
val _ = O.add_commands |
89 |
[("index_ML", ml_args (index_ml "" ml_val)), |
|
90 |
("index_ML_type", ml_args (index_ml "type" ml_type)), |
|
91 |
("index_ML_exn", ml_args (index_ml "exception" ml_exn)), |
|
92 |
("index_ML_structure", ml_args (index_ml "structure" ml_structure)), |
|
93 |
("index_ML_functor", ml_args (index_ml "functor" ml_functor)), |
|
94 |
("ML_functor", O.args (Scan.lift Args.name) output_ml), |
|
95 |
("ML_text", O.args (Scan.lift Args.name) output_ml)]; |
|
21375 | 96 |
|
26742 | 97 |
end; |
21375 | 98 |
|
23846 | 99 |
|
100 |
(* theorems with names *) |
|
101 |
||
26742 | 102 |
local |
23846 | 103 |
|
26742 | 104 |
fun output_named_thms src ctxt xs = |
28644 | 105 |
map (apfst (ThyOutput.pretty_thm ctxt)) xs (*always pretty in order to exhibit errors!*) |
23846 | 106 |
|> (if ! O.quotes then map (apfst Pretty.quote) else I) |
107 |
|> (if ! O.display then |
|
108 |
map (fn (p, name) => |
|
109 |
Output.output (Pretty.string_of (Pretty.indent (! O.indent) p)) ^ |
|
28644 | 110 |
"\\rulename{" ^ Output.output (Pretty.str_of (ThyOutput.pretty_text name)) ^ "}") |
23846 | 111 |
#> space_implode "\\par\\smallskip%\n" |
112 |
#> enclose "\\begin{isabelle}%\n" "%\n\\end{isabelle}" |
|
113 |
else |
|
114 |
map (fn (p, name) => |
|
115 |
Output.output (Pretty.str_of p) ^ |
|
28644 | 116 |
"\\rulename{" ^ Output.output (Pretty.str_of (ThyOutput.pretty_text name)) ^ "}") |
23846 | 117 |
#> space_implode "\\par\\smallskip%\n" |
118 |
#> enclose "\\isa{" "}"); |
|
119 |
||
21375 | 120 |
in |
121 |
||
122 |
val _ = O.add_commands |
|
26742 | 123 |
[("named_thms", O.args (Scan.repeat (Attrib.thm -- |
26751 | 124 |
Scan.lift (Args.parens Args.name))) output_named_thms)]; |
21375 | 125 |
|
126 |
end; |
|
26742 | 127 |
|
128 |
||
129 |
(* theory files *) |
|
130 |
||
131 |
val _ = O.add_commands |
|
132 |
[("thy_file", O.args (Scan.lift Args.name) (O.output (fn _ => fn name => |
|
133 |
(ThyLoad.check_thy Path.current name; Pretty.str name))))]; |
|
134 |
||
26751 | 135 |
|
28218 | 136 |
(* Isabelle entities (with index) *) |
26751 | 137 |
|
138 |
local |
|
139 |
||
26894 | 140 |
fun no_check _ _ = true; |
141 |
||
142 |
fun thy_check intern defined ctxt = |
|
143 |
let val thy = ProofContext.theory_of ctxt |
|
144 |
in defined thy o intern thy end; |
|
145 |
||
28237 | 146 |
fun check_tool name = |
147 |
File.exists (Path.append (Path.explode "~~/lib/Tools") (Path.basic name)); |
|
148 |
||
26751 | 149 |
val arg = enclose "{" "}" o clean_string; |
150 |
||
26894 | 151 |
fun output_entity check markup index kind ctxt (logic, name) = |
26897 | 152 |
let |
153 |
val hyper_name = "{" ^ NameSpace.append kind (NameSpace.append logic (clean_name name)) ^ "}"; |
|
154 |
val hyper = |
|
155 |
enclose ("\\hyperlink" ^ hyper_name ^ "{") "}" #> |
|
156 |
index = SOME true ? enclose ("\\hypertarget" ^ hyper_name ^ "{") "}"; |
|
157 |
val idx = |
|
158 |
(case index of |
|
159 |
NONE => "" |
|
160 |
| SOME is_def => |
|
161 |
"\\index" ^ (if is_def then "def" else "ref") ^ arg logic ^ arg kind ^ arg name); |
|
162 |
in |
|
163 |
if check ctxt name then |
|
164 |
idx ^ |
|
165 |
(Output.output name |
|
166 |
|> (if markup = "" then I else enclose ("\\" ^ markup ^ "{") "}") |
|
167 |
|> (if ! O.quotes then quote else I) |
|
168 |
|> (if ! O.display then enclose "\\begin{isabelle}%\n" "%\n\\end{isabelle}" |
|
169 |
else hyper o enclose "\\mbox{\\isa{" "}}")) |
|
28237 | 170 |
else error ("Bad " ^ kind ^ " " ^ quote name) |
26897 | 171 |
end; |
26751 | 172 |
|
26894 | 173 |
fun entity check markup index kind = |
26751 | 174 |
O.args (Scan.lift (Scan.optional (Args.parens Args.name) "" -- Args.name)) |
26894 | 175 |
(K (output_entity check markup index kind)); |
26897 | 176 |
|
26894 | 177 |
fun entity_antiqs check markup kind = |
178 |
[(kind, entity check markup NONE kind), |
|
26897 | 179 |
(kind ^ "_def", entity check markup (SOME true) kind), |
26894 | 180 |
(kind ^ "_ref", entity check markup (SOME false) kind)]; |
26751 | 181 |
|
182 |
in |
|
183 |
||
184 |
val _ = O.add_commands |
|
26894 | 185 |
(entity_antiqs no_check "" "syntax" @ |
27353
71c4dd53d4cb
moved global keywords from OuterSyntax to OuterKeyword, tuned interfaces;
wenzelm
parents:
26910
diff
changeset
|
186 |
entity_antiqs (K (is_some o OuterKeyword.command_keyword)) "isacommand" "command" @ |
71c4dd53d4cb
moved global keywords from OuterSyntax to OuterKeyword, tuned interfaces;
wenzelm
parents:
26910
diff
changeset
|
187 |
entity_antiqs (K OuterKeyword.is_keyword) "isakeyword" "keyword" @ |
71c4dd53d4cb
moved global keywords from OuterSyntax to OuterKeyword, tuned interfaces;
wenzelm
parents:
26910
diff
changeset
|
188 |
entity_antiqs (K OuterKeyword.is_keyword) "isakeyword" "element" @ |
26894 | 189 |
entity_antiqs (thy_check Method.intern Method.defined) "" "method" @ |
190 |
entity_antiqs (thy_check Attrib.intern Attrib.defined) "" "attribute" @ |
|
191 |
entity_antiqs no_check "" "fact" @ |
|
192 |
entity_antiqs no_check "" "variable" @ |
|
193 |
entity_antiqs no_check "" "case" @ |
|
28217
21f0c2de0a38
added formal markup for setting, executable, tool;
wenzelm
parents:
27809
diff
changeset
|
194 |
entity_antiqs (K ThyOutput.defined_command) "" "antiquotation" @ |
28237 | 195 |
entity_antiqs (fn _ => fn name => is_some (OS.Process.getEnv name)) "isatt" "setting" @ |
28217
21f0c2de0a38
added formal markup for setting, executable, tool;
wenzelm
parents:
27809
diff
changeset
|
196 |
entity_antiqs no_check "isatt" "executable" @ |
28237 | 197 |
entity_antiqs (K check_tool) "isatt" "tool" @ |
28399 | 198 |
entity_antiqs (K (File.exists o Path.explode)) "isatt" "file" @ |
199 |
entity_antiqs (K ThyInfo.known_thy) "" "theory"); |
|
26751 | 200 |
|
26742 | 201 |
end; |
26751 | 202 |
|
203 |
end; |