46
|
1 |
|
|
2 |
theory Antiquotes
|
47
4daf913fdbe1
hakked latex so that it does not display ML {* *}; general tuning
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
3 |
imports "../Base"
|
46
|
4 |
begin
|
|
5 |
|
|
6 |
|
47
4daf913fdbe1
hakked latex so that it does not display ML {* *}; general tuning
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
7 |
section {* Useful Document Antiquotations *}
|
46
|
8 |
|
|
9 |
text {*
|
47
4daf913fdbe1
hakked latex so that it does not display ML {* *}; general tuning
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
10 |
{\bf Problem:}
|
51
|
11 |
How to keep your ML-code inside a document synchronised with the actual code?\smallskip
|
46
|
12 |
|
47
4daf913fdbe1
hakked latex so that it does not display ML {* *}; general tuning
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
13 |
{\bf Solution:} This can be achieved using document antiquotations.\smallskip
|
4daf913fdbe1
hakked latex so that it does not display ML {* *}; general tuning
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
14 |
|
51
|
15 |
Document antiquotations can be used for ensuring consistent type-setting of
|
|
16 |
various entities in a document. They can also be used for sophisticated
|
65
|
17 |
\LaTeX-hacking. If you type @{text "Ctrl-c Ctrl-a h A"} inside ProofGeneral, you
|
74
|
18 |
obtain a list of all currently available document antiquotations and their options.
|
153
|
19 |
You obtain the same list on the ML-level by typing
|
|
20 |
|
|
21 |
@{ML [display,gray] "ThyOutput.print_antiquotations ()"}
|
46
|
22 |
|
65
|
23 |
Below we give the code for two additional antiquotations that can be used to typeset
|
51
|
24 |
ML-code and also to check whether the given code actually compiles. This
|
|
25 |
provides a sanity check for the code and also allows one to keep documents
|
|
26 |
in sync with other code, for example Isabelle.
|
47
4daf913fdbe1
hakked latex so that it does not display ML {* *}; general tuning
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
27 |
|
74
|
28 |
We first describe the antiquotation @{text "ML_checked"} with the syntax:
|
|
29 |
|
|
30 |
@{text [display] "@{ML_checked \"a_piece_of_code\"}"}
|
|
31 |
|
|
32 |
The code is checked by sending the ML-expression @{text [quotes] "val _ =
|
|
33 |
a_piece_of_code"} to the ML-compiler (i.e.~the function @{ML
|
|
34 |
"ML_Context.eval_in"} in Line 4 below). The complete code of the
|
|
35 |
antiquotation is as follows:
|
51
|
36 |
|
46
|
37 |
*}
|
|
38 |
|
114
|
39 |
ML%linenosgray{*fun ml_val code_txt = "val _ = " ^ code_txt
|
46
|
40 |
|
168
|
41 |
fun output_ml {context = ctxt, ...} code_txt =
|
59
|
42 |
(ML_Context.eval_in (SOME ctxt) false Position.none (ml_val code_txt);
|
168
|
43 |
ThyOutput.output (map Pretty.str (space_explode "\n" code_txt)))
|
46
|
44 |
|
165
|
45 |
val _ = ThyOutput.antiquotation "ML_checked" (Scan.lift Args.name) output_ml*}
|
46
|
46 |
|
|
47 |
text {*
|
51
|
48 |
|
|
49 |
Note that the parser @{ML "(Scan.lift Args.name)"} in line 9 parses a string,
|
168
|
50 |
in this case the code. As mentioned before, the code
|
74
|
51 |
is sent to the ML-compiler in the line 4 using the function @{ML ml_val},
|
|
52 |
which constructs the appropriate ML-expression.
|
51
|
53 |
If the code is ``approved'' by the compiler, then the output function @{ML
|
165
|
54 |
"ThyOutput.output"} in the next line pretty prints the
|
51
|
55 |
code. This function expects that the code is a list of strings where each
|
59
|
56 |
string correspond to a line in the output. Therefore the use of
|
|
57 |
@{ML "(space_explode \"\\n\" txt)" for txt}
|
165
|
58 |
which produces this list according to linebreaks. There are a number of options
|
|
59 |
for antiquotations that are observed by @{ML ThyOutput.output} when printing the
|
168
|
60 |
code (including @{text "[display]"} and @{text "[quotes]"}). Line 7 sets
|
|
61 |
up the new antiquotation.
|
51
|
62 |
|
|
63 |
\begin{readmore}
|
|
64 |
For more information about options of antiquotations see \rsccite{sec:antiq}).
|
|
65 |
\end{readmore}
|
46
|
66 |
|
47
4daf913fdbe1
hakked latex so that it does not display ML {* *}; general tuning
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
67 |
Since we used the argument @{ML "Position.none"}, the compiler cannot give specific
|
59
|
68 |
information about the line number, in case an error is detected. We
|
|
69 |
can improve the code above slightly by writing
|
46
|
70 |
*}
|
|
71 |
|
168
|
72 |
ML%linenosgray{*fun output_ml {context = ctxt, ...} (code_txt,pos) =
|
59
|
73 |
(ML_Context.eval_in (SOME ctxt) false pos (ml_val code_txt);
|
168
|
74 |
ThyOutput.output (map Pretty.str (space_explode "\n" code_txt)))
|
46
|
75 |
|
165
|
76 |
val _ = ThyOutput.antiquotation "ML_checked"
|
168
|
77 |
(Scan.lift (OuterParse.position Args.name)) output_ml *}
|
46
|
78 |
|
|
79 |
text {*
|
58
|
80 |
where in Lines 1 and 2 the positional information is properly treated.
|
|
81 |
|
51
|
82 |
We can now write in a document @{text "@{ML_checked \"2 + 3\"}"} in order to
|
|
83 |
obtain @{ML_checked "2 + 3"} and be sure that this code compiles until
|
58
|
84 |
somebody changes the definition of \mbox{@{ML "(op +)"}}.
|
51
|
85 |
|
|
86 |
|
168
|
87 |
The second antiquotation we describe extends the first by a pattern that
|
|
88 |
specifies what the result of the ML-code should be and check
|
74
|
89 |
the consistency of the actual result with the given pattern. For this we are going
|
|
90 |
to implement the antiquotation
|
|
91 |
|
168
|
92 |
@{text [display] "@{ML_resp \"a_piece_of_code\" \"a_pattern\"}"}
|
74
|
93 |
|
168
|
94 |
To add some convenience and also to deal with large outputs, the user can
|
|
95 |
give a partial specification inside the pattern by giving abbreviations of
|
|
96 |
the form @{text [quotes] "\<dots>"}. For example @{text "(\<dots>, \<dots>)"} to specify a
|
|
97 |
pair.
|
51
|
98 |
|
168
|
99 |
Whereas in the antiquotation @{text "@{ML_checked \"piece_of_code\"}"}
|
|
100 |
above, we have sent the expression @{text [quotes] "val _ = piece_of_code"}
|
|
101 |
to the compiler, in the second the wildcard @{text "_"} we will be replaced
|
|
102 |
by the given pattern. To do this we need to replace the @{text [quotes] "\<dots>"}
|
|
103 |
by @{text [quotes] "_"} before sending the code to the compiler. The
|
|
104 |
following function will do this:
|
46
|
105 |
*}
|
|
106 |
|
69
|
107 |
ML{*fun ml_pat (code_txt, pat) =
|
168
|
108 |
let val pat' =
|
59
|
109 |
implode (map (fn "\<dots>" => "_" | s => s) (Symbol.explode pat))
|
168
|
110 |
in
|
|
111 |
"val " ^ pat' ^ " = " ^ code_txt
|
|
112 |
end*}
|
46
|
113 |
|
51
|
114 |
text {*
|
59
|
115 |
Next we like to add a response indicator to the result using:
|
51
|
116 |
*}
|
|
117 |
|
|
118 |
|
72
7b8c4fe235aa
added an antiquotation option [gray] for gray boxes around displays
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
119 |
ML{*fun add_resp_indicator pat =
|
69
|
120 |
map (fn s => "> " ^ s) (space_explode "\n" pat) *}
|
46
|
121 |
|
51
|
122 |
text {*
|
|
123 |
The rest of the code of the antiquotation is
|
72
7b8c4fe235aa
added an antiquotation option [gray] for gray boxes around displays
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
124 |
*}
|
51
|
125 |
|
168
|
126 |
ML{*fun output_ml_resp {context = ctxt, ...} ((code_txt, pat), pos) =
|
|
127 |
(ML_Context.eval_in (SOME ctxt) false pos (ml_pat (code_txt, pat));
|
59
|
128 |
let
|
72
7b8c4fe235aa
added an antiquotation option [gray] for gray boxes around displays
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
129 |
val output = (space_explode "\n" code_txt) @ (add_resp_indicator pat)
|
59
|
130 |
in
|
165
|
131 |
ThyOutput.output (map Pretty.str output)
|
59
|
132 |
end)
|
46
|
133 |
|
165
|
134 |
val _ = ThyOutput.antiquotation "ML_resp"
|
168
|
135 |
(Scan.lift (OuterParse.position (Args.name -- Args.name)))
|
|
136 |
output_ml_resp*}
|
46
|
137 |
|
51
|
138 |
text {*
|
72
7b8c4fe235aa
added an antiquotation option [gray] for gray boxes around displays
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
139 |
This extended antiquotation allows us to write
|
7b8c4fe235aa
added an antiquotation option [gray] for gray boxes around displays
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
140 |
|
7b8c4fe235aa
added an antiquotation option [gray] for gray boxes around displays
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
141 |
@{text [display] "@{ML_resp [display] \"true andalso false\" \"false\"}"}
|
7b8c4fe235aa
added an antiquotation option [gray] for gray boxes around displays
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
142 |
|
51
|
143 |
to obtain
|
46
|
144 |
|
72
7b8c4fe235aa
added an antiquotation option [gray] for gray boxes around displays
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
145 |
@{ML_resp [display] "true andalso false" "false"}
|
46
|
146 |
|
51
|
147 |
or
|
|
148 |
|
168
|
149 |
@{text [display] "@{ML_resp [display] \"let val i = 3 in (i * i, \"foo\") end\" \"(9, \<dots>)\"}"}
|
51
|
150 |
|
|
151 |
to obtain
|
|
152 |
|
168
|
153 |
@{ML_resp [display] "let val i = 3 in (i * i, \"foo\") end" "(9, \<dots>)"}
|
51
|
154 |
|
168
|
155 |
In both cases, the check by the compiler ensures that code and result
|
|
156 |
match. A limitation of this antiquotation, however, is that the pattern can
|
|
157 |
only be given for values that can be constructed. This excludes
|
|
158 |
values that are abstract datatypes, like theorems or cterms.
|
51
|
159 |
*}
|
168
|
160 |
end |