author | wenzelm |
Mon, 16 Feb 2009 20:07:05 +0100 | |
changeset 29751 | e2756594c414 |
parent 29619 | 82054da94a74 |
child 29874 | 0b92f68124e8 |
permissions | -rw-r--r-- |
28440 | 1 |
(* Title: Doc/more_antiquote.ML |
2 |
ID: $Id$ |
|
3 |
Author: Florian Haftmann, TU Muenchen |
|
4 |
||
5 |
More antiquotations. |
|
6 |
*) |
|
7 |
||
8 |
signature MORE_ANTIQUOTE = |
|
9 |
sig |
|
28727 | 10 |
val typewriter: string -> string |
28440 | 11 |
end; |
12 |
||
13 |
structure More_Antiquote : MORE_ANTIQUOTE = |
|
14 |
struct |
|
15 |
||
16 |
structure O = ThyOutput; |
|
17 |
||
28727 | 18 |
(* printing typewriter lines *) |
28440 | 19 |
|
28727 | 20 |
fun typewriter s = |
28714 | 21 |
let |
22 |
val parse = Scan.repeat |
|
23 |
(Scan.this_string "\n" |-- Scan.succeed "\\\\\n\\hspace*{0pt}" |
|
24 |
|| (Scan.this_string " " |
|
28921
e60a41c21768
consider TeX spacing conventions for punctuation marks
haftmann
parents:
28727
diff
changeset
|
25 |
|| Scan.this_string "." |
e60a41c21768
consider TeX spacing conventions for punctuation marks
haftmann
parents:
28727
diff
changeset
|
26 |
|| Scan.this_string "," |
28714 | 27 |
|| Scan.this_string ":" |
28921
e60a41c21768
consider TeX spacing conventions for punctuation marks
haftmann
parents:
28727
diff
changeset
|
28 |
|| Scan.this_string ";" |
28714 | 29 |
|| Scan.this_string "\"" |-- Scan.succeed "{\\char34}" |
30 |
|| Scan.this_string "#" |-- Scan.succeed "{\\char35}" |
|
31 |
|| Scan.this_string "$" |-- Scan.succeed "{\\char36}" |
|
32 |
|| Scan.this_string "%" |-- Scan.succeed "{\\char37}" |
|
33 |
|| Scan.this_string "&" |-- Scan.succeed "{\\char38}" |
|
34 |
|| Scan.this_string "\\" |-- Scan.succeed "{\\char92}" |
|
35 |
|| Scan.this_string "^" |-- Scan.succeed "{\\char94}" |
|
36 |
|| Scan.this_string "_" |-- Scan.succeed "{\\char95}" |
|
37 |
|| Scan.this_string "{" |-- Scan.succeed "{\\char123}" |
|
38 |
|| Scan.this_string "}" |-- Scan.succeed "{\\char125}" |
|
39 |
|| Scan.this_string "~" |-- Scan.succeed "{\\char126}") |
|
40 |
-- Scan.repeat (Scan.this_string " ") |
|
41 |
>> (fn (x, xs) => x ^ replicate_string (length xs) "~") |
|
42 |
|| Scan.one Symbol.not_eof); |
|
43 |
fun is_newline s = (s = "\n"); |
|
44 |
val cs = explode s |> take_prefix is_newline |> snd |
|
45 |
|> take_suffix is_newline |> fst; |
|
46 |
val (texts, []) = Scan.finite Symbol.stopper parse cs |
|
47 |
in if null texts |
|
48 |
then "" |
|
28727 | 49 |
else implode ("\\isatypewriter%\n\\noindent%\n\\hspace*{0pt}" :: texts) |
28714 | 50 |
end |
28440 | 51 |
|
52 |
||
29397 | 53 |
(* class and type constructor antiquotation *) |
28440 | 54 |
|
55 |
local |
|
56 |
||
28634 | 57 |
val pr_text = enclose "\\isa{" "}" o Pretty.output o Pretty.str; |
58 |
||
59 |
fun pr_class ctxt = Sign.read_class (ProofContext.theory_of ctxt) |
|
60 |
#> Sign.extern_class (ProofContext.theory_of ctxt) |
|
61 |
#> pr_text; |
|
62 |
||
63 |
fun pr_type ctxt = Sign.intern_type (ProofContext.theory_of ctxt) |
|
64 |
#> tap (Sign.arity_number (ProofContext.theory_of ctxt)) |
|
65 |
#> Sign.extern_type (ProofContext.theory_of ctxt) |
|
66 |
#> pr_text; |
|
28440 | 67 |
|
68 |
in |
|
69 |
||
70 |
val _ = O.add_commands |
|
28634 | 71 |
[("class", ThyOutput.args (Scan.lift Args.name) (K pr_class)), |
72 |
("type", ThyOutput.args (Scan.lift Args.name) (K pr_type))] |
|
28440 | 73 |
|
74 |
end; |
|
75 |
||
76 |
||
29397 | 77 |
(* code theorem antiquotation *) |
78 |
||
79 |
local |
|
80 |
||
81 |
fun pretty_term ctxt t = Syntax.pretty_term (Variable.auto_fixes t ctxt) t; |
|
82 |
||
83 |
fun pretty_thm ctxt = pretty_term ctxt o Thm.full_prop_of; |
|
84 |
||
85 |
fun no_vars ctxt thm = |
|
86 |
let |
|
87 |
val ctxt' = Variable.set_body false ctxt; |
|
88 |
val ((_, [thm]), _) = Variable.import_thms true [thm] ctxt'; |
|
89 |
in thm end; |
|
90 |
||
91 |
fun pretty_code_thm src ctxt raw_const = |
|
92 |
let |
|
93 |
val thy = ProofContext.theory_of ctxt; |
|
94 |
val const = Code_Unit.check_const thy raw_const; |
|
95 |
val (_, funcgr) = Code_Funcgr.make thy [const]; |
|
96 |
val thms = Code_Funcgr.eqns funcgr const |
|
97 |
|> map_filter (fn (thm, linear) => if linear then SOME thm else NONE) |
|
98 |
|> map (no_vars ctxt o AxClass.overload thy); |
|
99 |
in ThyOutput.output_list pretty_thm src ctxt thms end; |
|
100 |
||
101 |
in |
|
102 |
||
103 |
val _ = O.add_commands |
|
104 |
[("code_thms", ThyOutput.args Args.term pretty_code_thm)]; |
|
105 |
||
106 |
end; |
|
107 |
||
108 |
||
28440 | 109 |
(* code antiquotation *) |
110 |
||
111 |
local |
|
112 |
||
113 |
val parse_const_terms = Scan.repeat1 Args.term |
|
114 |
>> (fn ts => fn thy => map (Code_Unit.check_const thy) ts); |
|
115 |
val parse_consts = Scan.lift (Args.parens (Args.$$$ "consts")) |-- parse_const_terms |
|
29619 | 116 |
>> (fn mk_cs => fn thy => fn naming => map_filter (Code_Thingol.lookup_const naming) (mk_cs thy)); |
28440 | 117 |
val parse_types = Scan.lift (Args.parens (Args.$$$ "types") |-- Scan.repeat1 Args.name) |
29619 | 118 |
>> (fn tycos => fn thy => fn naming => map_filter (Code_Thingol.lookup_tyco naming o Sign.intern_type thy) tycos); |
28440 | 119 |
val parse_classes = Scan.lift (Args.parens (Args.$$$ "classes") |-- Scan.repeat1 Args.name) |
29619 | 120 |
>> (fn classes => fn thy => fn naming => map_filter (Code_Thingol.lookup_class naming o Sign.intern_class thy) classes); |
28440 | 121 |
val parse_instances = Scan.lift (Args.parens (Args.$$$ "instances") |-- Scan.repeat1 (Args.name --| Args.$$$ "::" -- Args.name)) |
29619 | 122 |
>> (fn insts => fn thy => fn naming => map_filter (Code_Thingol.lookup_instance naming o apsnd (Sign.intern_type thy) o apfst (Sign.intern_class thy) o swap) insts); |
28440 | 123 |
val parse_names = parse_consts || parse_types || parse_classes || parse_instances; |
124 |
||
125 |
fun code_stmts src ctxt ((mk_cs, mk_stmtss), target) = |
|
126 |
Code_Target.code_of (ProofContext.theory_of ctxt) |
|
127 |
target "Example" (mk_cs (ProofContext.theory_of ctxt)) |
|
28679 | 128 |
(fn naming => maps (fn f => f (ProofContext.theory_of ctxt) naming) mk_stmtss) |
28727 | 129 |
|> typewriter; |
28440 | 130 |
|
131 |
in |
|
132 |
||
133 |
val _ = O.add_commands |
|
134 |
[("code_stmts", O.args |
|
135 |
(parse_const_terms -- Scan.repeat parse_names -- Scan.lift (Args.parens Args.name)) |
|
136 |
code_stmts)] |
|
137 |
||
138 |
end |
|
139 |
||
140 |
end; |