author | berghofe |
Fri, 09 Nov 2001 10:25:10 +0100 | |
changeset 12125 | 316d11f760f7 |
parent 12069 | 87fecdd74030 |
child 12288 | c8214e408f35 |
permissions | -rw-r--r-- |
5831 | 1 |
(* Title: Pure/Isar/isar_cmd.ML |
2 |
ID: $Id$ |
|
3 |
Author: Markus Wenzel, TU Muenchen |
|
8807 | 4 |
License: GPL (GNU GENERAL PUBLIC LICENSE) |
5831 | 5 |
|
6 |
Non-logical toplevel commands. |
|
7 |
*) |
|
8 |
||
9 |
signature ISAR_CMD = |
|
10 |
sig |
|
7462 | 11 |
val welcome: Toplevel.transition -> Toplevel.transition |
12 |
val init_toplevel: Toplevel.transition -> Toplevel.transition |
|
5831 | 13 |
val exit: Toplevel.transition -> Toplevel.transition |
14 |
val quit: Toplevel.transition -> Toplevel.transition |
|
7908 | 15 |
val touch_child_thys: string -> Toplevel.transition -> Toplevel.transition |
7101 | 16 |
val touch_all_thys: Toplevel.transition -> Toplevel.transition |
17 |
val touch_thy: string -> Toplevel.transition -> Toplevel.transition |
|
18 |
val remove_thy: string -> Toplevel.transition -> Toplevel.transition |
|
7931 | 19 |
val kill_thy: string -> Toplevel.transition -> Toplevel.transition |
9731 | 20 |
val pr: string list * (int option * int option) -> Toplevel.transition -> Toplevel.transition |
8453 | 21 |
val disable_pr: Toplevel.transition -> Toplevel.transition |
22 |
val enable_pr: Toplevel.transition -> Toplevel.transition |
|
6734 | 23 |
val cannot_undo: string -> Toplevel.transition -> Toplevel.transition |
7729 | 24 |
val clear_undos_theory: int -> Toplevel.transition -> Toplevel.transition |
6742 | 25 |
val redo: Toplevel.transition -> Toplevel.transition |
26 |
val undos_proof: int -> Toplevel.transition -> Toplevel.transition |
|
7936 | 27 |
val kill_proof_notify: (unit -> unit) -> Toplevel.transition -> Toplevel.transition |
6742 | 28 |
val kill_proof: Toplevel.transition -> Toplevel.transition |
29 |
val undo_theory: Toplevel.transition -> Toplevel.transition |
|
6686 | 30 |
val undo: Toplevel.transition -> Toplevel.transition |
8498 | 31 |
val kill: Toplevel.transition -> Toplevel.transition |
9273 | 32 |
val back: bool * Comment.text -> Toplevel.transition -> Toplevel.transition |
33 |
val use: string * Comment.text -> Toplevel.transition -> Toplevel.transition |
|
34 |
val use_mltext_theory: string * Comment.text -> Toplevel.transition -> Toplevel.transition |
|
35 |
val use_mltext: bool -> string * Comment.text -> Toplevel.transition -> Toplevel.transition |
|
36 |
val use_setup: string * Comment.text -> theory -> theory |
|
5831 | 37 |
val use_commit: Toplevel.transition -> Toplevel.transition |
38 |
val cd: string -> Toplevel.transition -> Toplevel.transition |
|
39 |
val pwd: Toplevel.transition -> Toplevel.transition |
|
40 |
val use_thy: string -> Toplevel.transition -> Toplevel.transition |
|
6694 | 41 |
val use_thy_only: string -> Toplevel.transition -> Toplevel.transition |
6195 | 42 |
val update_thy: string -> Toplevel.transition -> Toplevel.transition |
7101 | 43 |
val update_thy_only: string -> Toplevel.transition -> Toplevel.transition |
7124 | 44 |
val pretty_setmargin: int -> Toplevel.transition -> Toplevel.transition |
7308 | 45 |
val print_context: Toplevel.transition -> Toplevel.transition |
5831 | 46 |
val print_theory: Toplevel.transition -> Toplevel.transition |
47 |
val print_syntax: Toplevel.transition -> Toplevel.transition |
|
5880 | 48 |
val print_theorems: Toplevel.transition -> Toplevel.transition |
12060 | 49 |
val print_locales: Toplevel.transition -> Toplevel.transition |
50 |
val print_locale: xstring -> Toplevel.transition -> Toplevel.transition |
|
5831 | 51 |
val print_attributes: Toplevel.transition -> Toplevel.transition |
11666 | 52 |
val print_induct_rules: Toplevel.transition -> Toplevel.transition |
9219 | 53 |
val print_trans_rules: Toplevel.transition -> Toplevel.transition |
5831 | 54 |
val print_methods: Toplevel.transition -> Toplevel.transition |
9219 | 55 |
val print_antiquotations: Toplevel.transition -> Toplevel.transition |
11017 | 56 |
val print_thms_containing: string list -> Toplevel.transition -> Toplevel.transition |
9454 | 57 |
val thm_deps: (string * Args.src list) list -> Toplevel.transition -> Toplevel.transition |
5831 | 58 |
val print_binds: Toplevel.transition -> Toplevel.transition |
59 |
val print_lthms: Toplevel.transition -> Toplevel.transition |
|
8369 | 60 |
val print_cases: Toplevel.transition -> Toplevel.transition |
10581 | 61 |
val print_thms: (string list * (string * Args.src list) list) * Comment.text |
62 |
-> Toplevel.transition -> Toplevel.transition |
|
12125
316d11f760f7
Commands prf and full_prf can now also be used to display proof term
berghofe
parents:
12069
diff
changeset
|
63 |
val print_prfs: bool -> (string list * (string * Args.src list) list option) * Comment.text |
11524
197f2e14a714
Added functions for printing primitive proof terms.
berghofe
parents:
11017
diff
changeset
|
64 |
-> Toplevel.transition -> Toplevel.transition |
10581 | 65 |
val print_prop: (string list * string) * Comment.text |
8463 | 66 |
-> Toplevel.transition -> Toplevel.transition |
10581 | 67 |
val print_term: (string list * string) * Comment.text |
68 |
-> Toplevel.transition -> Toplevel.transition |
|
69 |
val print_type: (string list * string) * Comment.text |
|
70 |
-> Toplevel.transition -> Toplevel.transition |
|
5831 | 71 |
end; |
72 |
||
73 |
structure IsarCmd: ISAR_CMD = |
|
74 |
struct |
|
75 |
||
76 |
||
7462 | 77 |
(* variations on init / exit *) |
78 |
||
79 |
val init_toplevel = Toplevel.imperative (fn () => raise Toplevel.RESTART); |
|
80 |
val welcome = Toplevel.imperative (writeln o Session.welcome); |
|
5831 | 81 |
|
82 |
val exit = Toplevel.keep (fn state => |
|
83 |
(Context.set_context (try Toplevel.theory_of state); |
|
6635 | 84 |
writeln "Leaving the Isar loop. Invoke 'loop();' to restart."; |
5831 | 85 |
raise Toplevel.TERMINATE)); |
86 |
||
87 |
val quit = Toplevel.imperative quit; |
|
88 |
||
7101 | 89 |
|
90 |
(* touch theories *) |
|
91 |
||
7908 | 92 |
fun touch_child_thys name = Toplevel.imperative (fn () => ThyInfo.touch_child_thys name); |
7101 | 93 |
val touch_all_thys = Toplevel.imperative ThyInfo.touch_all_thys; |
94 |
fun touch_thy name = Toplevel.imperative (fn () => ThyInfo.touch_thy name); |
|
95 |
fun remove_thy name = Toplevel.imperative (fn () => ThyInfo.remove_thy name); |
|
7931 | 96 |
fun kill_thy name = Toplevel.imperative (fn () => IsarThy.kill_theory name); |
7101 | 97 |
|
5831 | 98 |
|
8453 | 99 |
(* print state *) |
100 |
||
8463 | 101 |
fun with_modes modes e = |
102 |
Library.setmp print_mode (modes @ ! print_mode) e (); |
|
103 |
||
9731 | 104 |
fun set_limit _ None = () |
105 |
| set_limit r (Some n) = r := n; |
|
106 |
||
107 |
fun pr (ms, (lim1, lim2)) = Toplevel.keep (fn state => |
|
108 |
(set_limit goals_limit lim1; set_limit ProofContext.prems_limit lim2; Toplevel.quiet := false; |
|
8886 | 109 |
with_modes ms (fn () => Toplevel.print_state true state))); |
8453 | 110 |
|
111 |
val disable_pr = Toplevel.imperative (fn () => Toplevel.quiet := true); |
|
112 |
val enable_pr = Toplevel.imperative (fn () => Toplevel.quiet := false); |
|
113 |
||
114 |
||
6686 | 115 |
(* history commands *) |
116 |
||
6734 | 117 |
fun cannot_undo txt = Toplevel.imperative (fn () => error ("Cannot undo " ^ quote txt)); |
7729 | 118 |
val clear_undos_theory = Toplevel.history o History.clear; |
6686 | 119 |
val redo = Toplevel.history History.redo o Toplevel.proof ProofHistory.redo; |
120 |
||
6742 | 121 |
fun undos_proof n = Toplevel.proof (fn prf => |
122 |
if ProofHistory.is_initial prf then raise Toplevel.UNDEF else funpow n ProofHistory.undo prf); |
|
6686 | 123 |
|
7936 | 124 |
fun kill_proof_notify (f: unit -> unit) = Toplevel.history (fn hist => |
6742 | 125 |
(case History.current hist of |
126 |
Toplevel.Theory _ => raise Toplevel.UNDEF |
|
7936 | 127 |
| Toplevel.Proof _ => (f (); History.undo hist))); |
128 |
||
129 |
val kill_proof = kill_proof_notify (K ()); |
|
6686 | 130 |
|
6742 | 131 |
val undo_theory = Toplevel.history (fn hist => |
132 |
if History.is_initial hist then raise Toplevel.UNDEF else History.undo hist); |
|
6686 | 133 |
|
7413 | 134 |
val undo = Toplevel.kill o undo_theory o undos_proof 1; |
8498 | 135 |
val kill = Toplevel.kill o kill_proof; |
6686 | 136 |
|
9273 | 137 |
val back = Toplevel.proof o ProofHistory.back o Comment.ignore; |
138 |
||
6686 | 139 |
|
5831 | 140 |
(* use ML text *) |
141 |
||
9273 | 142 |
fun use (name, comment_ignore) = Toplevel.keep (fn state => |
6264 | 143 |
Context.setmp (try Toplevel.theory_of state) ThyInfo.use name); |
5831 | 144 |
|
145 |
(*passes changes of theory context*) |
|
9273 | 146 |
val use_mltext_theory = Toplevel.theory' o Context.use_mltext_theory o Comment.ignore; |
5831 | 147 |
|
148 |
(*ignore result theory context*) |
|
9273 | 149 |
fun use_mltext v (txt, comment_ignore) = Toplevel.keep' (fn verb => fn state => |
8349
611342539639
moved use_mltext, use_mltext_theory, use_let, use_setup to context.ML;
wenzelm
parents:
7936
diff
changeset
|
150 |
(Context.use_mltext txt (v andalso verb) (try Toplevel.theory_of state))); |
5831 | 151 |
|
9273 | 152 |
val use_setup = Context.use_setup o Comment.ignore; |
153 |
||
5831 | 154 |
(*Note: commit is dynamically bound*) |
9273 | 155 |
val use_commit = use_mltext false ("commit();", Comment.none); |
5831 | 156 |
|
157 |
||
158 |
(* current working directory *) |
|
159 |
||
7790 | 160 |
fun cd dir = Toplevel.imperative (fn () => (File.cd (Path.unpack dir))); |
161 |
val pwd = Toplevel.imperative (fn () => writeln (Path.pack (File.pwd ()))); |
|
5831 | 162 |
|
163 |
||
164 |
(* load theory files *) |
|
165 |
||
6243 | 166 |
fun use_thy name = Toplevel.imperative (fn () => Context.save ThyInfo.use_thy name); |
6694 | 167 |
fun use_thy_only name = Toplevel.imperative (fn () => Context.save ThyInfo.use_thy_only name); |
6243 | 168 |
fun update_thy name = Toplevel.imperative (fn () => Context.save ThyInfo.update_thy name); |
7124 | 169 |
fun update_thy_only name = |
170 |
Toplevel.imperative (fn () => Context.save ThyInfo.update_thy_only name); |
|
171 |
||
172 |
||
173 |
(* pretty_setmargin *) |
|
174 |
||
175 |
fun pretty_setmargin n = Toplevel.imperative (fn () => Pretty.setmargin n); |
|
5831 | 176 |
|
177 |
||
9513 | 178 |
(* print parts of theory and proof context *) |
5831 | 179 |
|
7308 | 180 |
val print_context = Toplevel.keep Toplevel.print_state_context; |
9513 | 181 |
|
182 |
val print_theory = Toplevel.unknown_theory o |
|
183 |
Toplevel.keep (PureThy.print_theory o Toplevel.theory_of); |
|
184 |
||
185 |
val print_syntax = Toplevel.unknown_theory o |
|
12069 | 186 |
Toplevel.keep (Display.print_syntax o Toplevel.theory_of) o |
187 |
Toplevel.keep (ProofContext.print_syntax o Proof.context_of o Toplevel.proof_of); |
|
9513 | 188 |
|
189 |
val print_theorems = Toplevel.unknown_theory o |
|
190 |
Toplevel.keep (PureThy.print_theorems o Toplevel.theory_of); |
|
191 |
||
12060 | 192 |
val print_locales = Toplevel.unknown_theory o |
193 |
Toplevel.keep (Locale.print_locales o Toplevel.theory_of); |
|
194 |
||
195 |
fun print_locale name = Toplevel.unknown_theory o |
|
196 |
Toplevel.keep (fn state => Locale.print_locale (Toplevel.theory_of state) name); |
|
197 |
||
9513 | 198 |
val print_attributes = Toplevel.unknown_theory o |
199 |
Toplevel.keep (Attrib.print_attributes o Toplevel.theory_of); |
|
200 |
||
11666 | 201 |
val print_induct_rules = Toplevel.unknown_context o |
202 |
Toplevel.keep (Toplevel.node_case InductAttrib.print_global_rules |
|
203 |
(InductAttrib.print_local_rules o Proof.context_of)); |
|
204 |
||
9513 | 205 |
val print_trans_rules = Toplevel.unknown_context o |
206 |
Toplevel.keep (Toplevel.node_case Calculation.print_global_rules |
|
207 |
(Calculation.print_local_rules o Proof.context_of)); |
|
208 |
||
209 |
val print_methods = Toplevel.unknown_theory o |
|
210 |
Toplevel.keep (Method.print_methods o Toplevel.theory_of); |
|
211 |
||
9219 | 212 |
val print_antiquotations = Toplevel.imperative IsarOutput.print_antiquotations; |
5831 | 213 |
|
11017 | 214 |
fun print_thms_containing ss = Toplevel.unknown_theory o Toplevel.keep (fn state => |
215 |
ThmDatabase.print_thms_containing (Toplevel.theory_of state) |
|
216 |
(map (ProofContext.read_term (Toplevel.context_of state)) ss)); |
|
7615 | 217 |
|
9513 | 218 |
fun thm_deps args = Toplevel.unknown_theory o Toplevel.keep (fn state => |
9454 | 219 |
ThmDeps.thm_deps (IsarThy.get_thmss args (Toplevel.enter_forward_proof state))); |
220 |
||
5831 | 221 |
|
222 |
(* print proof context contents *) |
|
223 |
||
9513 | 224 |
val print_binds = Toplevel.unknown_proof o Toplevel.keep (fn state => |
225 |
ProofContext.setmp_verbose |
|
226 |
ProofContext.print_binds (Proof.context_of (Toplevel.proof_of state))); |
|
227 |
||
228 |
val print_lthms = Toplevel.unknown_proof o Toplevel.keep (fn state => |
|
229 |
ProofContext.setmp_verbose |
|
12055 | 230 |
ProofContext.print_lthms (Proof.context_of (Toplevel.proof_of state))); |
9513 | 231 |
|
232 |
val print_cases = Toplevel.unknown_proof o Toplevel.keep (fn state => |
|
233 |
ProofContext.setmp_verbose |
|
234 |
ProofContext.print_cases (Proof.context_of (Toplevel.proof_of state))); |
|
5831 | 235 |
|
236 |
||
7012 | 237 |
(* print theorems / types / terms / props *) |
5880 | 238 |
|
9128 | 239 |
fun string_of_thms state ms args = with_modes ms (fn () => |
12055 | 240 |
Pretty.string_of (ProofContext.pretty_thms (Proof.context_of state) |
241 |
(IsarThy.get_thmss args state))); |
|
5895 | 242 |
|
12125
316d11f760f7
Commands prf and full_prf can now also be used to display proof term
berghofe
parents:
12069
diff
changeset
|
243 |
fun string_of_prfs full state ms arg = with_modes ms (fn () => |
316d11f760f7
Commands prf and full_prf can now also be used to display proof term
berghofe
parents:
12069
diff
changeset
|
244 |
Pretty.string_of (case arg of (* FIXME context syntax!? *) |
316d11f760f7
Commands prf and full_prf can now also be used to display proof term
berghofe
parents:
12069
diff
changeset
|
245 |
None => |
316d11f760f7
Commands prf and full_prf can now also be used to display proof term
berghofe
parents:
12069
diff
changeset
|
246 |
let |
316d11f760f7
Commands prf and full_prf can now also be used to display proof term
berghofe
parents:
12069
diff
changeset
|
247 |
val (_, (_, thm)) = Proof.get_goal state; |
316d11f760f7
Commands prf and full_prf can now also be used to display proof term
berghofe
parents:
12069
diff
changeset
|
248 |
val {sign, prop, der = (_, prf), ...} = rep_thm thm; |
316d11f760f7
Commands prf and full_prf can now also be used to display proof term
berghofe
parents:
12069
diff
changeset
|
249 |
val prf' = Proofterm.rewrite_proof_notypes ([], []) prf |
316d11f760f7
Commands prf and full_prf can now also be used to display proof term
berghofe
parents:
12069
diff
changeset
|
250 |
in |
316d11f760f7
Commands prf and full_prf can now also be used to display proof term
berghofe
parents:
12069
diff
changeset
|
251 |
ProofSyntax.pretty_proof sign |
316d11f760f7
Commands prf and full_prf can now also be used to display proof term
berghofe
parents:
12069
diff
changeset
|
252 |
(if full then Reconstruct.reconstruct_proof sign prop prf' else prf') |
316d11f760f7
Commands prf and full_prf can now also be used to display proof term
berghofe
parents:
12069
diff
changeset
|
253 |
end |
316d11f760f7
Commands prf and full_prf can now also be used to display proof term
berghofe
parents:
12069
diff
changeset
|
254 |
| Some args => Pretty.chunks |
316d11f760f7
Commands prf and full_prf can now also be used to display proof term
berghofe
parents:
12069
diff
changeset
|
255 |
(map (ProofSyntax.pretty_proof_of full) (IsarThy.get_thmss args state)))); |
11524
197f2e14a714
Added functions for printing primitive proof terms.
berghofe
parents:
11017
diff
changeset
|
256 |
|
9128 | 257 |
fun string_of_prop state ms s = |
5831 | 258 |
let |
12055 | 259 |
val ctxt = Proof.context_of state; |
260 |
val prop = ProofContext.read_prop ctxt s; |
|
261 |
in |
|
262 |
with_modes ms (fn () => Pretty.string_of (Pretty.quote (ProofContext.pretty_term ctxt prop))) |
|
263 |
end; |
|
5831 | 264 |
|
9128 | 265 |
fun string_of_term state ms s = |
5831 | 266 |
let |
12055 | 267 |
val ctxt = Proof.context_of state; |
268 |
val t = ProofContext.read_term ctxt s; |
|
5831 | 269 |
val T = Term.type_of t; |
270 |
in |
|
9128 | 271 |
with_modes ms (fn () => Pretty.string_of |
12055 | 272 |
(Pretty.block [Pretty.quote (ProofContext.pretty_term ctxt t), Pretty.fbrk, |
273 |
Pretty.str "::", Pretty.brk 1, Pretty.quote (ProofContext.pretty_typ ctxt T)])) |
|
9128 | 274 |
end; |
5831 | 275 |
|
9128 | 276 |
fun string_of_type state ms s = |
5831 | 277 |
let |
12055 | 278 |
val ctxt = Proof.context_of state; |
279 |
val T = ProofContext.read_typ ctxt s; |
|
280 |
in with_modes ms (fn () => Pretty.string_of (Pretty.quote (ProofContext.pretty_typ ctxt T))) end; |
|
9128 | 281 |
|
282 |
fun print_item string_of (x, y) = Toplevel.keep (fn state => |
|
9454 | 283 |
writeln (string_of (Toplevel.enter_forward_proof state) x y)); |
9128 | 284 |
|
10581 | 285 |
val print_thms = print_item string_of_thms o Comment.ignore; |
11524
197f2e14a714
Added functions for printing primitive proof terms.
berghofe
parents:
11017
diff
changeset
|
286 |
fun print_prfs full = print_item (string_of_prfs full) o Comment.ignore; |
10581 | 287 |
val print_prop = print_item string_of_prop o Comment.ignore; |
288 |
val print_term = print_item string_of_term o Comment.ignore; |
|
289 |
val print_type = print_item string_of_type o Comment.ignore; |
|
5831 | 290 |
|
291 |
||
292 |
end; |