author | berghofe |
Mon, 11 Oct 2004 10:51:19 +0200 | |
changeset 15237 | 250e9be7a09d |
parent 14985 | fefcf6cd858a |
child 15431 | 6f4959ba7664 |
permissions | -rw-r--r-- |
5828 | 1 |
(* Title: Pure/Isar/toplevel.ML |
2 |
ID: $Id$ |
|
3 |
Author: Markus Wenzel, TU Muenchen |
|
4 |
||
5 |
The Isabelle/Isar toplevel. |
|
6 |
*) |
|
7 |
||
8 |
signature TOPLEVEL = |
|
9 |
sig |
|
10 |
datatype node = Theory of theory | Proof of ProofHistory.T |
|
15237
250e9be7a09d
Some changes to allow skipping of proof scripts.
berghofe
parents:
14985
diff
changeset
|
11 |
| SkipProof of int History.T * theory |
5828 | 12 |
type state |
13 |
val toplevel: state |
|
7732 | 14 |
val is_toplevel: state -> bool |
6689 | 15 |
val prompt_state_default: state -> string |
16 |
val prompt_state_fn: (state -> string) ref |
|
7308 | 17 |
val print_state_context: state -> unit |
8886 | 18 |
val print_state_default: bool -> state -> unit |
19 |
val print_state_fn: (bool -> state -> unit) ref |
|
20 |
val print_state: bool -> state -> unit |
|
12423 | 21 |
val pretty_state: bool -> state -> Pretty.T list |
6689 | 22 |
exception UNDEF |
23 |
val node_history_of: state -> node History.T |
|
5828 | 24 |
val node_of: state -> node |
6664 | 25 |
val node_case: (theory -> 'a) -> (Proof.state -> 'a) -> state -> 'a |
5828 | 26 |
val theory_of: state -> theory |
27 |
val sign_of: state -> Sign.sg |
|
7501 | 28 |
val context_of: state -> Proof.context |
5828 | 29 |
val proof_of: state -> Proof.state |
9453 | 30 |
val enter_forward_proof: state -> Proof.state |
5828 | 31 |
type transition |
32 |
exception TERMINATE |
|
5990 | 33 |
exception RESTART |
6689 | 34 |
val undo_limit: bool -> int option |
5828 | 35 |
val empty: transition |
14923 | 36 |
val name_of: transition -> string |
37 |
val source_of: transition -> OuterLex.token list option |
|
5828 | 38 |
val name: string -> transition -> transition |
39 |
val position: Position.T -> transition -> transition |
|
14923 | 40 |
val source: OuterLex.token list -> transition -> transition |
5828 | 41 |
val interactive: bool -> transition -> transition |
42 |
val print: transition -> transition |
|
9010 | 43 |
val no_timing: transition -> transition |
5828 | 44 |
val reset: transition -> transition |
8465 | 45 |
val init: (bool -> node) -> (node -> unit) -> (node -> unit) -> transition -> transition |
6689 | 46 |
val exit: transition -> transition |
47 |
val kill: transition -> transition |
|
5828 | 48 |
val keep: (state -> unit) -> transition -> transition |
7612 | 49 |
val keep': (bool -> state -> unit) -> transition -> transition |
6689 | 50 |
val history: (node History.T -> node History.T) -> transition -> transition |
5828 | 51 |
val imperative: (unit -> unit) -> transition -> transition |
7105 | 52 |
val init_theory: (bool -> theory) -> (theory -> unit) -> (theory -> unit) |
6689 | 53 |
-> transition -> transition |
15237
250e9be7a09d
Some changes to allow skipping of proof scripts.
berghofe
parents:
14985
diff
changeset
|
54 |
val skip_proofs: bool ref |
5828 | 55 |
val theory: (theory -> theory) -> transition -> transition |
7612 | 56 |
val theory': (bool -> theory -> theory) -> transition -> transition |
6689 | 57 |
val theory_to_proof: (bool -> theory -> ProofHistory.T) -> transition -> transition |
5828 | 58 |
val proof: (ProofHistory.T -> ProofHistory.T) -> transition -> transition |
6689 | 59 |
val proof': (bool -> ProofHistory.T -> ProofHistory.T) -> transition -> transition |
15237
250e9be7a09d
Some changes to allow skipping of proof scripts.
berghofe
parents:
14985
diff
changeset
|
60 |
val proof'': (ProofHistory.T -> ProofHistory.T) -> transition -> transition |
5828 | 61 |
val proof_to_theory: (ProofHistory.T -> theory) -> transition -> transition |
12315 | 62 |
val proof_to_theory': (bool -> ProofHistory.T -> theory) -> transition -> transition |
15237
250e9be7a09d
Some changes to allow skipping of proof scripts.
berghofe
parents:
14985
diff
changeset
|
63 |
val skip_proof: (int History.T -> int History.T) -> transition -> transition |
250e9be7a09d
Some changes to allow skipping of proof scripts.
berghofe
parents:
14985
diff
changeset
|
64 |
val skip_proof_to_theory: (int History.T -> bool) -> transition -> transition |
9512 | 65 |
val unknown_theory: transition -> transition |
66 |
val unknown_proof: transition -> transition |
|
67 |
val unknown_context: transition -> transition |
|
7198 | 68 |
val quiet: bool ref |
5922 | 69 |
val exn_message: exn -> string |
5828 | 70 |
val apply: bool -> transition -> state -> (state * (exn * string) option) option |
9134 | 71 |
val excursion_result: ((transition * (state -> 'a -> 'a)) list * 'a) -> 'a |
5828 | 72 |
val excursion: transition list -> unit |
73 |
val set_state: state -> unit |
|
74 |
val get_state: unit -> state |
|
75 |
val exn: unit -> (exn * string) option |
|
76 |
val >> : transition -> bool |
|
14985 | 77 |
val >>> : transition list -> unit |
14091 | 78 |
type 'a isar |
79 |
val loop: 'a isar -> unit |
|
5828 | 80 |
end; |
81 |
||
6965 | 82 |
structure Toplevel: TOPLEVEL = |
5828 | 83 |
struct |
84 |
||
85 |
||
86 |
(** toplevel state **) |
|
87 |
||
88 |
(* datatype node *) |
|
89 |
||
90 |
datatype node = |
|
91 |
Theory of theory | |
|
15237
250e9be7a09d
Some changes to allow skipping of proof scripts.
berghofe
parents:
14985
diff
changeset
|
92 |
Proof of ProofHistory.T | |
250e9be7a09d
Some changes to allow skipping of proof scripts.
berghofe
parents:
14985
diff
changeset
|
93 |
SkipProof of int History.T * theory; |
5828 | 94 |
|
6689 | 95 |
fun str_of_node (Theory _) = "in theory mode" |
15237
250e9be7a09d
Some changes to allow skipping of proof scripts.
berghofe
parents:
14985
diff
changeset
|
96 |
| str_of_node _ = "in proof mode"; |
6689 | 97 |
|
12423 | 98 |
fun pretty_context thy = [Pretty.block |
8561 | 99 |
[Pretty.str "theory", Pretty.brk 1, Pretty.str (PureThy.get_name thy), |
12423 | 100 |
Pretty.str " =", Pretty.brk 1, Display.pretty_theory thy]]; |
7308 | 101 |
|
12423 | 102 |
fun pretty_prf prf = Proof.pretty_state (ProofHistory.position prf) (ProofHistory.current prf); |
8886 | 103 |
|
12423 | 104 |
fun pretty_node_context (Theory thy) = pretty_context thy |
15237
250e9be7a09d
Some changes to allow skipping of proof scripts.
berghofe
parents:
14985
diff
changeset
|
105 |
| pretty_node_context (Proof prf) = pretty_context (Proof.theory_of (ProofHistory.current prf)) |
250e9be7a09d
Some changes to allow skipping of proof scripts.
berghofe
parents:
14985
diff
changeset
|
106 |
| pretty_node_context _ = []; |
7308 | 107 |
|
12423 | 108 |
fun pretty_node prf_only (Theory thy) = if prf_only then [] else pretty_context thy |
15237
250e9be7a09d
Some changes to allow skipping of proof scripts.
berghofe
parents:
14985
diff
changeset
|
109 |
| pretty_node _ (Proof prf) = pretty_prf prf |
250e9be7a09d
Some changes to allow skipping of proof scripts.
berghofe
parents:
14985
diff
changeset
|
110 |
| pretty_node _ _ = []; |
5828 | 111 |
|
112 |
||
113 |
(* datatype state *) |
|
114 |
||
8465 | 115 |
datatype state = State of (node History.T * ((node -> unit) * (node -> unit))) option; |
5828 | 116 |
|
8465 | 117 |
val toplevel = State None; |
5828 | 118 |
|
8465 | 119 |
fun is_toplevel (State None) = true |
7732 | 120 |
| is_toplevel _ = false; |
121 |
||
8465 | 122 |
fun str_of_state (State None) = "at top level" |
123 |
| str_of_state (State (Some (node, _))) = str_of_node (History.current node); |
|
6689 | 124 |
|
125 |
||
126 |
(* prompt_state hook *) |
|
127 |
||
8465 | 128 |
fun prompt_state_default (State _) = Source.default_prompt; |
6689 | 129 |
|
130 |
val prompt_state_fn = ref prompt_state_default; |
|
131 |
fun prompt_state state = ! prompt_state_fn state; |
|
5828 | 132 |
|
133 |
||
7308 | 134 |
(* print state *) |
5946
a4600d21b59b
print_state hook, obeys Goals.current_goals_markers by default;
wenzelm
parents:
5939
diff
changeset
|
135 |
|
12423 | 136 |
fun pretty_current_node _ (State None) = [] |
137 |
| pretty_current_node prt (State (Some (node, _))) = prt (History.current node); |
|
7308 | 138 |
|
12423 | 139 |
val print_state_context = |
140 |
Pretty.writeln o Pretty.chunks o pretty_current_node pretty_node_context; |
|
5946
a4600d21b59b
print_state hook, obeys Goals.current_goals_markers by default;
wenzelm
parents:
5939
diff
changeset
|
141 |
|
12423 | 142 |
fun pretty_state prf_only state = |
11894 | 143 |
let val ref (begin_state, end_state, _) = Display.current_goals_markers in |
12423 | 144 |
(case pretty_current_node (pretty_node prf_only) state of [] => [] |
145 |
| prts => |
|
146 |
(if begin_state = "" then [] else [Pretty.str begin_state]) @ prts @ |
|
147 |
(if end_state = "" then [] else [Pretty.str end_state])) |
|
5946
a4600d21b59b
print_state hook, obeys Goals.current_goals_markers by default;
wenzelm
parents:
5939
diff
changeset
|
148 |
end; |
a4600d21b59b
print_state hook, obeys Goals.current_goals_markers by default;
wenzelm
parents:
5939
diff
changeset
|
149 |
|
12423 | 150 |
fun print_state_default prf_only state = Pretty.writelns (pretty_state prf_only state); |
5946
a4600d21b59b
print_state hook, obeys Goals.current_goals_markers by default;
wenzelm
parents:
5939
diff
changeset
|
151 |
val print_state_fn = ref print_state_default; |
a4600d21b59b
print_state hook, obeys Goals.current_goals_markers by default;
wenzelm
parents:
5939
diff
changeset
|
152 |
fun print_state state = ! print_state_fn state; |
a4600d21b59b
print_state hook, obeys Goals.current_goals_markers by default;
wenzelm
parents:
5939
diff
changeset
|
153 |
|
a4600d21b59b
print_state hook, obeys Goals.current_goals_markers by default;
wenzelm
parents:
5939
diff
changeset
|
154 |
|
5828 | 155 |
(* top node *) |
156 |
||
6689 | 157 |
exception UNDEF; |
158 |
||
8465 | 159 |
fun node_history_of (State None) = raise UNDEF |
160 |
| node_history_of (State (Some (node, _))) = node; |
|
6689 | 161 |
|
162 |
val node_of = History.current o node_history_of; |
|
5828 | 163 |
|
6664 | 164 |
fun node_case f g state = |
5828 | 165 |
(case node_of state of |
166 |
Theory thy => f thy |
|
15237
250e9be7a09d
Some changes to allow skipping of proof scripts.
berghofe
parents:
14985
diff
changeset
|
167 |
| SkipProof (i, thy) => f thy |
5828 | 168 |
| Proof prf => g (ProofHistory.current prf)); |
169 |
||
6664 | 170 |
val theory_of = node_case I Proof.theory_of; |
7501 | 171 |
val context_of = node_case ProofContext.init Proof.context_of; |
5828 | 172 |
val sign_of = Theory.sign_of o theory_of; |
6664 | 173 |
val proof_of = node_case (fn _ => raise UNDEF) I; |
174 |
||
12049 | 175 |
val enter_forward_proof = node_case Proof.init_state Proof.enter_forward; |
5828 | 176 |
|
177 |
||
178 |
(** toplevel transitions **) |
|
179 |
||
180 |
exception TERMINATE; |
|
5990 | 181 |
exception RESTART; |
7022 | 182 |
exception EXCURSION_FAIL of exn * string; |
6689 | 183 |
exception FAILURE of state * exn; |
5828 | 184 |
|
185 |
||
6689 | 186 |
(* recovery from stale signatures *) |
187 |
||
7022 | 188 |
(*note: proof commands should be non-destructive!*) |
189 |
||
6689 | 190 |
local |
191 |
||
192 |
fun is_stale state = Sign.is_stale (sign_of state) handle UNDEF => false; |
|
193 |
||
194 |
fun checkpoint_node true (Theory thy) = Theory (PureThy.checkpoint thy) |
|
195 |
| checkpoint_node _ node = node; |
|
196 |
||
197 |
fun copy_node true (Theory thy) = Theory (Theory.copy thy) |
|
198 |
| copy_node _ node = node; |
|
199 |
||
6965 | 200 |
fun interruptible f x = |
201 |
let val y = ref (None: node History.T option); |
|
12987 | 202 |
in raise_interrupt (fn () => y := Some (f x)) (); the (! y) end; |
6965 | 203 |
|
7022 | 204 |
val rollback = ERROR_MESSAGE "Stale signature encountered after succesful execution!"; |
205 |
||
206 |
fun return (result, None) = result |
|
207 |
| return (result, Some exn) = raise FAILURE (result, exn); |
|
208 |
||
6689 | 209 |
in |
210 |
||
8465 | 211 |
fun node_trans _ _ _ (State None) = raise UNDEF |
212 |
| node_trans int hist f (State (Some (node, term))) = |
|
6689 | 213 |
let |
8465 | 214 |
fun mk_state nd = State (Some (nd, term)); |
6689 | 215 |
|
216 |
val cont_node = History.map (checkpoint_node int) node; |
|
217 |
val back_node = History.map (copy_node int) cont_node; |
|
218 |
||
219 |
val trans = if hist then History.apply_copy (copy_node int) else History.map; |
|
6965 | 220 |
val (result, opt_exn) = |
221 |
(mk_state (transform_error (interruptible (trans (f int))) cont_node), None) |
|
222 |
handle exn => (mk_state cont_node, Some exn); |
|
6689 | 223 |
in |
7022 | 224 |
if is_stale result then return (mk_state back_node, Some (if_none opt_exn rollback)) |
225 |
else return (result, opt_exn) |
|
6689 | 226 |
end; |
227 |
||
228 |
fun check_stale state = |
|
229 |
if not (is_stale state) then () |
|
7022 | 230 |
else warning "Stale signature encountered! Should restart current theory."; |
6689 | 231 |
|
232 |
end; |
|
233 |
||
234 |
||
235 |
(* primitive transitions *) |
|
236 |
||
237 |
(*Important note: recovery from stale signatures is provided only for |
|
238 |
theory-level operations via MapCurrent and AppCurrent. Other node |
|
6965 | 239 |
or state operations should not touch signatures at all. |
240 |
||
241 |
Also note that interrupts are enabled for Keep, MapCurrent, and |
|
242 |
AppCurrent only.*) |
|
5828 | 243 |
|
244 |
datatype trans = |
|
6689 | 245 |
Reset | (*empty toplevel*) |
8465 | 246 |
Init of (bool -> node) * ((node -> unit) * (node -> unit)) | |
247 |
(*init node; provide exit/kill operation*) |
|
248 |
Exit | (*conclude node*) |
|
6689 | 249 |
Kill | (*abort node*) |
7612 | 250 |
Keep of bool -> state -> unit | (*peek at state*) |
6689 | 251 |
History of node History.T -> node History.T | (*history operation (undo etc.)*) |
252 |
MapCurrent of bool -> node -> node | (*change node, bypassing history*) |
|
253 |
AppCurrent of bool -> node -> node; (*change node, recording history*) |
|
254 |
||
255 |
fun undo_limit int = if int then None else Some 0; |
|
256 |
||
257 |
local |
|
5828 | 258 |
|
6689 | 259 |
fun apply_tr _ Reset _ = toplevel |
8465 | 260 |
| apply_tr int (Init (f, term)) (State None) = |
261 |
State (Some (History.init (undo_limit int) (f int), term)) |
|
262 |
| apply_tr _ (Init _ ) (State (Some _)) = raise UNDEF |
|
263 |
| apply_tr _ Exit (State None) = raise UNDEF |
|
264 |
| apply_tr _ Exit (State (Some (node, (exit, _)))) = |
|
265 |
(exit (History.current node); State None) |
|
266 |
| apply_tr _ Kill (State None) = raise UNDEF |
|
267 |
| apply_tr _ Kill (State (Some (node, (_, kill)))) = |
|
268 |
(kill (History.current node); State None) |
|
12987 | 269 |
| apply_tr int (Keep f) state = (raise_interrupt (f int) state; state) |
8465 | 270 |
| apply_tr _ (History _) (State None) = raise UNDEF |
271 |
| apply_tr _ (History f) (State (Some (node, term))) = State (Some (f node, term)) |
|
6689 | 272 |
| apply_tr int (MapCurrent f) state = node_trans int false f state |
273 |
| apply_tr int (AppCurrent f) state = node_trans int true f state; |
|
5828 | 274 |
|
6689 | 275 |
fun apply_union _ [] state = raise FAILURE (state, UNDEF) |
276 |
| apply_union int (tr :: trs) state = |
|
277 |
transform_error (apply_tr int tr) state |
|
278 |
handle UNDEF => apply_union int trs state |
|
279 |
| FAILURE (alt_state, UNDEF) => apply_union int trs alt_state |
|
280 |
| exn as FAILURE _ => raise exn |
|
281 |
| exn => raise FAILURE (state, exn); |
|
282 |
||
283 |
in |
|
284 |
||
285 |
fun apply_trans int trs state = (apply_union int trs state, None) |
|
286 |
handle FAILURE (alt_state, exn) => (alt_state, Some exn) | exn => (state, Some exn); |
|
287 |
||
288 |
end; |
|
5828 | 289 |
|
290 |
||
291 |
(* datatype transition *) |
|
292 |
||
293 |
datatype transition = Transition of |
|
294 |
{name: string, |
|
295 |
pos: Position.T, |
|
14923 | 296 |
source: OuterLex.token list option, |
5828 | 297 |
int_only: bool, |
298 |
print: bool, |
|
9010 | 299 |
no_timing: bool, |
5828 | 300 |
trans: trans list}; |
301 |
||
14923 | 302 |
fun make_transition (name, pos, source, int_only, print, no_timing, trans) = |
303 |
Transition {name = name, pos = pos, source = source, |
|
304 |
int_only = int_only, print = print, no_timing = no_timing, trans = trans}; |
|
5828 | 305 |
|
14923 | 306 |
fun map_transition f (Transition {name, pos, source, int_only, print, no_timing, trans}) = |
307 |
make_transition (f (name, pos, source, int_only, print, no_timing, trans)); |
|
5828 | 308 |
|
14923 | 309 |
val empty = make_transition ("<unknown>", Position.none, None, false, false, false, []); |
310 |
||
311 |
fun name_of (Transition {name, ...}) = name; |
|
312 |
fun source_of (Transition {source, ...}) = source; |
|
5828 | 313 |
|
314 |
||
315 |
(* diagnostics *) |
|
316 |
||
317 |
fun str_of_transition (Transition {name, pos, ...}) = quote name ^ Position.str_of pos; |
|
318 |
||
319 |
fun command_msg msg tr = msg ^ "command " ^ str_of_transition tr; |
|
320 |
fun at_command tr = command_msg "At " tr ^ "."; |
|
321 |
||
322 |
fun type_error tr state = |
|
6689 | 323 |
ERROR_MESSAGE (command_msg "Illegal application of " tr ^ " " ^ str_of_state state); |
5828 | 324 |
|
325 |
||
326 |
(* modify transitions *) |
|
327 |
||
14923 | 328 |
fun name nm = map_transition (fn (_, pos, source, int_only, print, no_timing, trans) => |
329 |
(nm, pos, source, int_only, print, no_timing, trans)); |
|
5828 | 330 |
|
14923 | 331 |
fun position pos = map_transition (fn (name, _, source, int_only, print, no_timing, trans) => |
332 |
(name, pos, source, int_only, print, no_timing, trans)); |
|
9010 | 333 |
|
14923 | 334 |
fun source src = map_transition (fn (name, pos, _, int_only, print, no_timing, trans) => |
335 |
(name, pos, Some src, int_only, print, no_timing, trans)); |
|
5828 | 336 |
|
14923 | 337 |
fun interactive int_only = map_transition (fn (name, pos, source, _, print, no_timing, trans) => |
338 |
(name, pos, source, int_only, print, no_timing, trans)); |
|
339 |
||
340 |
val print = map_transition (fn (name, pos, source, int_only, _, no_timing, trans) => |
|
341 |
(name, pos, source, int_only, true, no_timing, trans)); |
|
5828 | 342 |
|
14923 | 343 |
val no_timing = map_transition (fn (name, pos, source, int_only, print, _, trans) => |
344 |
(name, pos, source, int_only, print, true, trans)); |
|
5828 | 345 |
|
14923 | 346 |
fun add_trans tr = map_transition (fn (name, pos, source, int_only, print, no_timing, trans) => |
347 |
(name, pos, source, int_only, print, no_timing, trans @ [tr])); |
|
5828 | 348 |
|
349 |
||
350 |
(* build transitions *) |
|
351 |
||
352 |
val reset = add_trans Reset; |
|
6689 | 353 |
fun init f exit kill = add_trans (Init (f, (exit, kill))); |
354 |
val exit = add_trans Exit; |
|
355 |
val kill = add_trans Kill; |
|
7612 | 356 |
val keep' = add_trans o Keep; |
6689 | 357 |
val history = add_trans o History; |
5828 | 358 |
val map_current = add_trans o MapCurrent; |
6689 | 359 |
val app_current = add_trans o AppCurrent; |
5828 | 360 |
|
7612 | 361 |
fun keep f = add_trans (Keep (fn _ => f)); |
5828 | 362 |
fun imperative f = keep (fn _ => f ()); |
363 |
||
6689 | 364 |
fun init_theory f exit kill = |
8465 | 365 |
init (fn int => Theory (f int)) |
6689 | 366 |
(fn Theory thy => exit thy | _ => raise UNDEF) |
367 |
(fn Theory thy => kill thy | _ => raise UNDEF); |
|
5828 | 368 |
|
15237
250e9be7a09d
Some changes to allow skipping of proof scripts.
berghofe
parents:
14985
diff
changeset
|
369 |
(* |
250e9be7a09d
Some changes to allow skipping of proof scripts.
berghofe
parents:
14985
diff
changeset
|
370 |
The skip_proofs flag allows proof scripts to be skipped during interactive |
250e9be7a09d
Some changes to allow skipping of proof scripts.
berghofe
parents:
14985
diff
changeset
|
371 |
proof in order to speed up processing of large theories. While in skipping |
250e9be7a09d
Some changes to allow skipping of proof scripts.
berghofe
parents:
14985
diff
changeset
|
372 |
mode, states are represented as SkipProof (h, thy), where h contains a |
250e9be7a09d
Some changes to allow skipping of proof scripts.
berghofe
parents:
14985
diff
changeset
|
373 |
counter for the number of open proof blocks. |
250e9be7a09d
Some changes to allow skipping of proof scripts.
berghofe
parents:
14985
diff
changeset
|
374 |
*) |
250e9be7a09d
Some changes to allow skipping of proof scripts.
berghofe
parents:
14985
diff
changeset
|
375 |
|
250e9be7a09d
Some changes to allow skipping of proof scripts.
berghofe
parents:
14985
diff
changeset
|
376 |
val skip_proofs = ref false; |
250e9be7a09d
Some changes to allow skipping of proof scripts.
berghofe
parents:
14985
diff
changeset
|
377 |
|
6689 | 378 |
fun theory f = app_current (fn _ => (fn Theory thy => Theory (f thy) | _ => raise UNDEF)); |
7612 | 379 |
fun theory' f = app_current (fn int => (fn Theory thy => Theory (f int thy) | _ => raise UNDEF)); |
15237
250e9be7a09d
Some changes to allow skipping of proof scripts.
berghofe
parents:
14985
diff
changeset
|
380 |
fun theory_to_proof f = app_current (fn int => |
250e9be7a09d
Some changes to allow skipping of proof scripts.
berghofe
parents:
14985
diff
changeset
|
381 |
(fn Theory thy => |
250e9be7a09d
Some changes to allow skipping of proof scripts.
berghofe
parents:
14985
diff
changeset
|
382 |
if !skip_proofs then SkipProof (History.init (undo_limit int) 0, |
250e9be7a09d
Some changes to allow skipping of proof scripts.
berghofe
parents:
14985
diff
changeset
|
383 |
fst (SkipProof.global_skip_proof int (ProofHistory.current (f int thy)))) |
250e9be7a09d
Some changes to allow skipping of proof scripts.
berghofe
parents:
14985
diff
changeset
|
384 |
else Proof (f int thy) |
250e9be7a09d
Some changes to allow skipping of proof scripts.
berghofe
parents:
14985
diff
changeset
|
385 |
| _ => raise UNDEF)); |
250e9be7a09d
Some changes to allow skipping of proof scripts.
berghofe
parents:
14985
diff
changeset
|
386 |
fun proof''' b f = map_current (fn int => (fn Proof prf => Proof (f int prf) |
250e9be7a09d
Some changes to allow skipping of proof scripts.
berghofe
parents:
14985
diff
changeset
|
387 |
| SkipProof (h, thy) => if b then SkipProof (History.apply I h, thy) else raise UNDEF |
250e9be7a09d
Some changes to allow skipping of proof scripts.
berghofe
parents:
14985
diff
changeset
|
388 |
| _ => raise UNDEF)); |
250e9be7a09d
Some changes to allow skipping of proof scripts.
berghofe
parents:
14985
diff
changeset
|
389 |
val proof' = proof''' true; |
6689 | 390 |
val proof = proof' o K; |
15237
250e9be7a09d
Some changes to allow skipping of proof scripts.
berghofe
parents:
14985
diff
changeset
|
391 |
val proof'' = proof''' false o K; |
12315 | 392 |
fun proof_to_theory' f = |
15237
250e9be7a09d
Some changes to allow skipping of proof scripts.
berghofe
parents:
14985
diff
changeset
|
393 |
map_current (fn int => (fn Proof prf => Theory (f int prf) |
250e9be7a09d
Some changes to allow skipping of proof scripts.
berghofe
parents:
14985
diff
changeset
|
394 |
| SkipProof (h, thy) => if History.current h = 0 then Theory thy else raise UNDEF |
250e9be7a09d
Some changes to allow skipping of proof scripts.
berghofe
parents:
14985
diff
changeset
|
395 |
| _ => raise UNDEF)); |
12315 | 396 |
val proof_to_theory = proof_to_theory' o K; |
15237
250e9be7a09d
Some changes to allow skipping of proof scripts.
berghofe
parents:
14985
diff
changeset
|
397 |
fun skip_proof f = map_current (fn int => |
250e9be7a09d
Some changes to allow skipping of proof scripts.
berghofe
parents:
14985
diff
changeset
|
398 |
(fn SkipProof (h, thy) => SkipProof (f h, thy) | _ => raise UNDEF)); |
250e9be7a09d
Some changes to allow skipping of proof scripts.
berghofe
parents:
14985
diff
changeset
|
399 |
fun skip_proof_to_theory p = map_current (fn int => |
250e9be7a09d
Some changes to allow skipping of proof scripts.
berghofe
parents:
14985
diff
changeset
|
400 |
(fn SkipProof (h, thy) => if p h then Theory thy else raise UNDEF | _ => raise UNDEF)); |
5828 | 401 |
|
9512 | 402 |
val unknown_theory = imperative (fn () => warning "Unknown theory context"); |
403 |
val unknown_proof = imperative (fn () => warning "Unknown proof context"); |
|
404 |
val unknown_context = imperative (fn () => warning "Unknown context"); |
|
405 |
||
5828 | 406 |
|
407 |
||
408 |
(** toplevel transactions **) |
|
409 |
||
7198 | 410 |
val quiet = ref false; |
5828 | 411 |
|
412 |
||
413 |
(* print exceptions *) |
|
414 |
||
415 |
fun raised name = "exception " ^ name ^ " raised"; |
|
416 |
fun raised_msg name msg = raised name ^ ": " ^ msg; |
|
417 |
||
418 |
fun exn_message TERMINATE = "Exit." |
|
5990 | 419 |
| exn_message RESTART = "Restart." |
7022 | 420 |
| exn_message (EXCURSION_FAIL (exn, msg)) = cat_lines [exn_message exn, msg] |
6971 | 421 |
| exn_message Interrupt = "Interrupt." |
6002 | 422 |
| exn_message ERROR = "ERROR." |
5828 | 423 |
| exn_message (ERROR_MESSAGE msg) = msg |
424 |
| exn_message (THEORY (msg, _)) = msg |
|
425 |
| exn_message (ProofContext.CONTEXT (msg, _)) = msg |
|
426 |
| exn_message (Proof.STATE (msg, _)) = msg |
|
427 |
| exn_message (ProofHistory.FAIL msg) = msg |
|
13486
54464ea94d6f
exception SIMPROC_FAIL: solid error reporting of simprocs;
wenzelm
parents:
12987
diff
changeset
|
428 |
| exn_message (MetaSimplifier.SIMPROC_FAIL (name, exn)) = |
54464ea94d6f
exception SIMPROC_FAIL: solid error reporting of simprocs;
wenzelm
parents:
12987
diff
changeset
|
429 |
fail_message "simproc" ((name, Position.none), exn) |
5920 | 430 |
| exn_message (Attrib.ATTRIB_FAIL info) = fail_message "attribute" info |
431 |
| exn_message (Method.METHOD_FAIL info) = fail_message "method" info |
|
12881 | 432 |
| exn_message (Antiquote.ANTIQUOTE_FAIL info) = fail_message "antiquotation" info |
5828 | 433 |
| exn_message (Syntax.AST (msg, _)) = raised_msg "AST" msg |
434 |
| exn_message (TYPE (msg, _, _)) = raised_msg "TYPE" msg |
|
435 |
| exn_message (TERM (msg, _)) = raised_msg "TERM" msg |
|
436 |
| exn_message (THM (msg, _, _)) = raised_msg "THM" msg |
|
437 |
| exn_message Library.OPTION = raised "Library.OPTION" |
|
438 |
| exn_message (Library.LIST msg) = raised_msg "Library.LIST" msg |
|
5920 | 439 |
| exn_message exn = General.exnMessage exn |
440 |
and fail_message kind ((name, pos), exn) = |
|
9152 | 441 |
"Error in " ^ kind ^ " " ^ quote name ^ Position.str_of pos ^ ":\n" ^ exn_message exn; |
5828 | 442 |
|
443 |
fun print_exn None = () |
|
444 |
| print_exn (Some (exn, s)) = error_msg (cat_lines [exn_message exn, s]); |
|
445 |
||
446 |
||
447 |
(* apply transitions *) |
|
448 |
||
6664 | 449 |
local |
450 |
||
9010 | 451 |
fun app int (tr as Transition {trans, int_only, print, no_timing, ...}) state = |
5828 | 452 |
let |
453 |
val _ = |
|
454 |
if int orelse not int_only then () |
|
8722 | 455 |
else warning (command_msg "Interactive-only " tr); |
6689 | 456 |
val (result, opt_exn) = |
14825 | 457 |
(if ! Output.timing andalso not no_timing then (warning (command_msg "" tr); timeap) else I) |
9010 | 458 |
(apply_trans int trans) state; |
8886 | 459 |
val _ = if int andalso print andalso not (! quiet) then print_state false result else (); |
6689 | 460 |
in (result, apsome (fn UNDEF => type_error tr state | exn => exn) opt_exn) end; |
6664 | 461 |
|
462 |
in |
|
5828 | 463 |
|
6689 | 464 |
fun apply int tr st = |
6965 | 465 |
(case app int tr st of |
6689 | 466 |
(_, Some TERMINATE) => None |
6664 | 467 |
| (_, Some RESTART) => Some (toplevel, None) |
7022 | 468 |
| (state', Some (EXCURSION_FAIL exn_info)) => Some (state', Some exn_info) |
6689 | 469 |
| (state', Some exn) => Some (state', Some (exn, at_command tr)) |
470 |
| (state', None) => Some (state', None)); |
|
6664 | 471 |
|
472 |
end; |
|
5828 | 473 |
|
474 |
||
475 |
(* excursion: toplevel -- apply transformers -- toplevel *) |
|
476 |
||
6664 | 477 |
local |
478 |
||
5828 | 479 |
fun excur [] x = x |
9134 | 480 |
| excur ((tr, f) :: trs) (st, res) = |
481 |
(case apply false tr st of |
|
482 |
Some (st', None) => |
|
9154 | 483 |
excur trs (st', transform_error (fn () => f st' res) () handle exn => |
10324 | 484 |
raise EXCURSION_FAIL (exn, "Presentation failed\n" ^ at_command tr)) |
9134 | 485 |
| Some (st', Some exn_info) => raise EXCURSION_FAIL exn_info |
7022 | 486 |
| None => raise EXCURSION_FAIL (TERMINATE, at_command tr)); |
5828 | 487 |
|
6664 | 488 |
in |
489 |
||
9134 | 490 |
fun excursion_result (trs, res) = |
491 |
(case excur trs (State None, res) of |
|
492 |
(State None, res') => res' |
|
493 |
| _ => raise ERROR_MESSAGE "Unfinished development at end of input") |
|
494 |
handle exn => error (exn_message exn); |
|
495 |
||
5828 | 496 |
fun excursion trs = |
9134 | 497 |
excursion_result (map (fn tr => (tr, fn _ => fn _ => ())) trs, ()); |
7062 | 498 |
|
6664 | 499 |
end; |
500 |
||
5828 | 501 |
|
502 |
||
503 |
(** interactive transformations **) |
|
504 |
||
505 |
(* the global state reference *) |
|
506 |
||
6689 | 507 |
val global_state = ref (toplevel, None: (exn * string) option); |
5828 | 508 |
|
509 |
fun set_state state = global_state := (state, None); |
|
510 |
fun get_state () = fst (! global_state); |
|
511 |
fun exn () = snd (! global_state); |
|
512 |
||
513 |
||
6965 | 514 |
(* the Isar source of transitions *) |
515 |
||
14091 | 516 |
type 'a isar = |
6965 | 517 |
(transition, (transition option, |
12881 | 518 |
(OuterLex.token, (OuterLex.token option, (OuterLex.token, (OuterLex.token, |
14091 | 519 |
Position.T * (Symbol.symbol, (string, 'a) Source.source) Source.source) |
12881 | 520 |
Source.source) Source.source) Source.source) Source.source) Source.source) Source.source; |
6965 | 521 |
|
522 |
||
5828 | 523 |
(* apply transformers to global state *) |
524 |
||
14985 | 525 |
nonfix >> >>>; |
5828 | 526 |
|
527 |
fun >> tr = |
|
528 |
(case apply true tr (get_state ()) of |
|
529 |
None => false |
|
530 |
| Some (state', exn_info) => |
|
531 |
(global_state := (state', exn_info); |
|
532 |
check_stale state'; print_exn exn_info; |
|
533 |
true)); |
|
534 |
||
14985 | 535 |
fun >>> [] = () |
536 |
| >>> (tr :: trs) = if >> tr then >>> trs else (); |
|
537 |
||
7602 | 538 |
(*Note: this is for Poly/ML only, we really do not intend to exhibit |
539 |
interrupts here*) |
|
540 |
fun get_interrupt src = Some (Source.get_single src) handle Interrupt => None; |
|
541 |
||
5828 | 542 |
fun raw_loop src = |
7602 | 543 |
(case get_interrupt (Source.set_prompt (prompt_state (get_state ())) src) of |
6971 | 544 |
None => (writeln "\nInterrupt."; raw_loop src) |
5828 | 545 |
| Some None => () |
546 |
| Some (Some (tr, src')) => if >> tr then raw_loop src' else ()); |
|
547 |
||
548 |
||
12987 | 549 |
fun loop src = ignore_interrupt raw_loop src; |
5828 | 550 |
|
551 |
||
552 |
end; |