src/Pure/Isar/toplevel.ML
author wenzelm
Sat, 24 May 2008 20:12:16 +0200
changeset 26982 de7738deadfb
parent 26624 770265032999
child 27427 f6751d265cf6
permissions -rw-r--r--
present_excursion: setmp_thread_position during presentation;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
     1
(*  Title:      Pure/Isar/toplevel.ML
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
     2
    ID:         $Id$
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
     3
    Author:     Markus Wenzel, TU Muenchen
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
     4
26602
5534b6a6b810 made purely value-oriented, moved global state to structure Isar (cf. isar.ML);
wenzelm
parents: 26491
diff changeset
     5
Isabelle/Isar toplevel transactions.
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
     6
*)
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
     7
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
     8
signature TOPLEVEL =
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
     9
sig
19063
049c010c8fb7 added cases_node;
wenzelm
parents: 18955
diff changeset
    10
  exception UNDEF
20963
a7fd8f05a2be added type global_theory -- theory or local_theory;
wenzelm
parents: 20928
diff changeset
    11
  type generic_theory
18589
c27c9fa9e83d hide type datatype node;
wenzelm
parents: 18564
diff changeset
    12
  type node
20963
a7fd8f05a2be added type global_theory -- theory or local_theory;
wenzelm
parents: 20928
diff changeset
    13
  val theory_node: node -> generic_theory option
18589
c27c9fa9e83d hide type datatype node;
wenzelm
parents: 18564
diff changeset
    14
  val proof_node: node -> ProofHistory.T option
20963
a7fd8f05a2be added type global_theory -- theory or local_theory;
wenzelm
parents: 20928
diff changeset
    15
  val cases_node: (generic_theory -> 'a) -> (Proof.state -> 'a) -> node -> 'a
a7fd8f05a2be added type global_theory -- theory or local_theory;
wenzelm
parents: 20928
diff changeset
    16
  val presentation_context: node option -> xstring option -> Proof.context
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
    17
  type state
26602
5534b6a6b810 made purely value-oriented, moved global state to structure Isar (cf. isar.ML);
wenzelm
parents: 26491
diff changeset
    18
  val toplevel: state
7732
d62523296573 added is_toplevel;
wenzelm
parents: 7612
diff changeset
    19
  val is_toplevel: state -> bool
18589
c27c9fa9e83d hide type datatype node;
wenzelm
parents: 18564
diff changeset
    20
  val is_theory: state -> bool
c27c9fa9e83d hide type datatype node;
wenzelm
parents: 18564
diff changeset
    21
  val is_proof: state -> bool
17076
c7effdf2e2e2 state: body context;
wenzelm
parents: 16815
diff changeset
    22
  val level: state -> int
6689
wenzelm
parents: 6664
diff changeset
    23
  val node_history_of: state -> node History.T
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
    24
  val node_of: state -> node
20963
a7fd8f05a2be added type global_theory -- theory or local_theory;
wenzelm
parents: 20928
diff changeset
    25
  val node_case: (generic_theory -> 'a) -> (Proof.state -> 'a) -> state -> 'a
21506
b2a673894ce5 prefer Proof.context over Context.generic;
wenzelm
parents: 21310
diff changeset
    26
  val context_of: state -> Proof.context
22089
d9b614dc883d added generic_theory_of;
wenzelm
parents: 22056
diff changeset
    27
  val generic_theory_of: state -> generic_theory
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
    28
  val theory_of: state -> theory
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
    29
  val proof_of: state -> Proof.state
18589
c27c9fa9e83d hide type datatype node;
wenzelm
parents: 18564
diff changeset
    30
  val proof_position_of: state -> int
21007
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
    31
  val enter_proof_body: state -> Proof.state
16815
13d20ed9086c added print_state_hook;
wenzelm
parents: 16729
diff changeset
    32
  val print_state_context: state -> unit
13d20ed9086c added print_state_hook;
wenzelm
parents: 16729
diff changeset
    33
  val print_state: bool -> state -> unit
16682
wenzelm
parents: 16658
diff changeset
    34
  val quiet: bool ref
wenzelm
parents: 16658
diff changeset
    35
  val debug: bool ref
17321
227f1f5c3959 added interact flag to control mode of excursions;
wenzelm
parents: 17320
diff changeset
    36
  val interact: bool ref
16682
wenzelm
parents: 16658
diff changeset
    37
  val timing: bool ref
wenzelm
parents: 16658
diff changeset
    38
  val profiling: int ref
16815
13d20ed9086c added print_state_hook;
wenzelm
parents: 16729
diff changeset
    39
  val skip_proofs: bool ref
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
    40
  exception TERMINATE
5990
8b6de9bd7d72 added exception RESTART;
wenzelm
parents: 5946
diff changeset
    41
  exception RESTART
26256
3e7939e978c6 added exception CONTEXT, indicating context of another exception;
wenzelm
parents: 26081
diff changeset
    42
  exception CONTEXT of Proof.context * exn
24055
f7483532537b added TOPLEVEL_ERROR (simplified version from output.ML);
wenzelm
parents: 23975
diff changeset
    43
  exception TOPLEVEL_ERROR
20128
8f0e07d7cf92 keep/transaction: unified execution model (with debugging etc.);
wenzelm
parents: 19996
diff changeset
    44
  val exn_message: exn -> string
8f0e07d7cf92 keep/transaction: unified execution model (with debugging etc.);
wenzelm
parents: 19996
diff changeset
    45
  val program: (unit -> 'a) -> 'a
16682
wenzelm
parents: 16658
diff changeset
    46
  type transition
6689
wenzelm
parents: 6664
diff changeset
    47
  val undo_limit: bool -> int option
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
    48
  val empty: transition
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
    49
  val name: string -> transition -> transition
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
    50
  val position: Position.T -> transition -> transition
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
    51
  val interactive: bool -> transition -> transition
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
    52
  val print: transition -> transition
9010
ce78dc5e1a73 Toplevel.no_timing;
wenzelm
parents: 8999
diff changeset
    53
  val no_timing: transition -> transition
22056
858016d00449 fixed exit: proper type check of state;
wenzelm
parents: 22014
diff changeset
    54
  val init_theory: (bool -> theory) -> (theory -> unit) -> (theory -> unit) ->
858016d00449 fixed exit: proper type check of state;
wenzelm
parents: 22014
diff changeset
    55
    transition -> transition
25441
4028958d19ff init_empty: check before change (avoids non-linear update);
wenzelm
parents: 25292
diff changeset
    56
  val init_empty: (state -> bool) -> (unit -> unit) -> transition -> transition
6689
wenzelm
parents: 6664
diff changeset
    57
  val exit: transition -> transition
21958
9dfd1ca4c0a0 refined notion of empty toplevel, admits undo of 'end';
wenzelm
parents: 21861
diff changeset
    58
  val undo_exit: transition -> transition
6689
wenzelm
parents: 6664
diff changeset
    59
  val kill: transition -> transition
20128
8f0e07d7cf92 keep/transaction: unified execution model (with debugging etc.);
wenzelm
parents: 19996
diff changeset
    60
  val history: (node History.T -> node History.T) -> transition -> transition
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
    61
  val keep: (state -> unit) -> transition -> transition
7612
ba11b5db431a added keep', theory';
wenzelm
parents: 7602
diff changeset
    62
  val keep': (bool -> state -> unit) -> transition -> transition
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
    63
  val imperative: (unit -> unit) -> transition -> transition
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
    64
  val theory: (theory -> theory) -> transition -> transition
26491
c93ff30790fe added generic_theory transaction;
wenzelm
parents: 26293
diff changeset
    65
  val generic_theory: (generic_theory -> generic_theory) -> transition -> transition
7612
ba11b5db431a added keep', theory';
wenzelm
parents: 7602
diff changeset
    66
  val theory': (bool -> theory -> theory) -> transition -> transition
20985
de13e2a23c8e exit_local_theory: pass interactive flag;
wenzelm
parents: 20963
diff changeset
    67
  val begin_local_theory: bool -> (theory -> local_theory) -> transition -> transition
21007
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
    68
  val end_local_theory: transition -> transition
20963
a7fd8f05a2be added type global_theory -- theory or local_theory;
wenzelm
parents: 20928
diff changeset
    69
  val local_theory: xstring option -> (local_theory -> local_theory) -> transition -> transition
a7fd8f05a2be added type global_theory -- theory or local_theory;
wenzelm
parents: 20928
diff changeset
    70
  val present_local_theory: xstring option -> (bool -> node -> unit) -> transition -> transition
24453
86cf57ddf8f6 Added local_theory_to_proof'
berghofe
parents: 24295
diff changeset
    71
  val local_theory_to_proof': xstring option -> (bool -> local_theory -> Proof.state) ->
86cf57ddf8f6 Added local_theory_to_proof'
berghofe
parents: 24295
diff changeset
    72
    transition -> transition
21007
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
    73
  val local_theory_to_proof: xstring option -> (local_theory -> Proof.state) ->
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
    74
    transition -> transition
17363
046c829c075f added three_buffersN, print3;
wenzelm
parents: 17321
diff changeset
    75
  val theory_to_proof: (theory -> Proof.state) -> transition -> transition
21007
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
    76
  val end_proof: (bool -> Proof.state -> Proof.context) -> transition -> transition
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
    77
  val forget_proof: transition -> transition
21177
e8228486aa03 removed checkpoint interface;
wenzelm
parents: 21007
diff changeset
    78
  val present_proof: (bool -> node -> unit) -> transition -> transition
e8228486aa03 removed checkpoint interface;
wenzelm
parents: 21007
diff changeset
    79
  val proofs': (bool -> Proof.state -> Proof.state Seq.seq) -> transition -> transition
17904
21c6894b5998 simplified interfaces proof/proof' etc.: perform ProofHistory.apply(s)/current internally;
wenzelm
parents: 17513
diff changeset
    80
  val proof': (bool -> Proof.state -> Proof.state) -> transition -> transition
21177
e8228486aa03 removed checkpoint interface;
wenzelm
parents: 21007
diff changeset
    81
  val proofs: (Proof.state -> Proof.state Seq.seq) -> transition -> transition
e8228486aa03 removed checkpoint interface;
wenzelm
parents: 21007
diff changeset
    82
  val proof: (Proof.state -> Proof.state) -> transition -> transition
16815
13d20ed9086c added print_state_hook;
wenzelm
parents: 16729
diff changeset
    83
  val actual_proof: (ProofHistory.T -> ProofHistory.T) -> transition -> transition
13d20ed9086c added print_state_hook;
wenzelm
parents: 16729
diff changeset
    84
  val skip_proof: (int History.T -> int History.T) -> transition -> transition
17904
21c6894b5998 simplified interfaces proof/proof' etc.: perform ProofHistory.apply(s)/current internally;
wenzelm
parents: 17513
diff changeset
    85
  val skip_proof_to_theory: (int -> bool) -> transition -> transition
9512
c30f6d0f81d2 added unknown_theory/proof/context;
wenzelm
parents: 9453
diff changeset
    86
  val unknown_theory: transition -> transition
c30f6d0f81d2 added unknown_theory/proof/context;
wenzelm
parents: 9453
diff changeset
    87
  val unknown_proof: transition -> transition
c30f6d0f81d2 added unknown_theory/proof/context;
wenzelm
parents: 9453
diff changeset
    88
  val unknown_context: transition -> transition
26602
5534b6a6b810 made purely value-oriented, moved global state to structure Isar (cf. isar.ML);
wenzelm
parents: 26491
diff changeset
    89
  val error_msg: transition -> exn * string -> unit
5534b6a6b810 made purely value-oriented, moved global state to structure Isar (cf. isar.ML);
wenzelm
parents: 26491
diff changeset
    90
  val transition: bool -> transition -> state -> (state * (exn * string) option) option
17076
c7effdf2e2e2 state: body context;
wenzelm
parents: 16815
diff changeset
    91
  val present_excursion: (transition * (state -> state -> 'a -> 'a)) list -> 'a -> 'a
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
    92
  val excursion: transition list -> unit
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
    93
end;
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
    94
6965
a766de752996 fixed interrupts (eliminated races);
wenzelm
parents: 6689
diff changeset
    95
structure Toplevel: TOPLEVEL =
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
    96
struct
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
    97
21958
9dfd1ca4c0a0 refined notion of empty toplevel, admits undo of 'end';
wenzelm
parents: 21861
diff changeset
    98
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
    99
(** toplevel state **)
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   100
19063
049c010c8fb7 added cases_node;
wenzelm
parents: 18955
diff changeset
   101
exception UNDEF;
049c010c8fb7 added cases_node;
wenzelm
parents: 18955
diff changeset
   102
049c010c8fb7 added cases_node;
wenzelm
parents: 18955
diff changeset
   103
21294
5cd48242ef17 simplified local theory wrappers;
wenzelm
parents: 21277
diff changeset
   104
(* local theory wrappers *)
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   105
20963
a7fd8f05a2be added type global_theory -- theory or local_theory;
wenzelm
parents: 20928
diff changeset
   106
type generic_theory = Context.generic;    (*theory or local_theory*)
a7fd8f05a2be added type global_theory -- theory or local_theory;
wenzelm
parents: 20928
diff changeset
   107
25292
f082e59551b0 simplified LocalTheory.reinit;
wenzelm
parents: 25269
diff changeset
   108
val loc_init = TheoryTarget.context;
21294
5cd48242ef17 simplified local theory wrappers;
wenzelm
parents: 21277
diff changeset
   109
val loc_exit = ProofContext.theory_of o LocalTheory.exit;
5cd48242ef17 simplified local theory wrappers;
wenzelm
parents: 21277
diff changeset
   110
25292
f082e59551b0 simplified LocalTheory.reinit;
wenzelm
parents: 25269
diff changeset
   111
fun loc_begin loc (Context.Theory thy) = loc_init (the_default "-" loc) thy
21294
5cd48242ef17 simplified local theory wrappers;
wenzelm
parents: 21277
diff changeset
   112
  | loc_begin NONE (Context.Proof lthy) = lthy
25269
f9090ae5cec9 clarified theory target interface
haftmann
parents: 25219
diff changeset
   113
  | loc_begin (SOME loc) (Context.Proof lthy) = loc_init loc (loc_exit lthy);
21294
5cd48242ef17 simplified local theory wrappers;
wenzelm
parents: 21277
diff changeset
   114
5cd48242ef17 simplified local theory wrappers;
wenzelm
parents: 21277
diff changeset
   115
fun loc_finish _ (Context.Theory _) = Context.Theory o loc_exit
5cd48242ef17 simplified local theory wrappers;
wenzelm
parents: 21277
diff changeset
   116
  | loc_finish NONE (Context.Proof _) = Context.Proof o LocalTheory.restore
25292
f082e59551b0 simplified LocalTheory.reinit;
wenzelm
parents: 25269
diff changeset
   117
  | loc_finish (SOME _) (Context.Proof lthy) = fn lthy' =>
f082e59551b0 simplified LocalTheory.reinit;
wenzelm
parents: 25269
diff changeset
   118
      Context.Proof (LocalTheory.reinit (LocalTheory.raw_theory (K (loc_exit lthy')) lthy));
21294
5cd48242ef17 simplified local theory wrappers;
wenzelm
parents: 21277
diff changeset
   119
5cd48242ef17 simplified local theory wrappers;
wenzelm
parents: 21277
diff changeset
   120
21958
9dfd1ca4c0a0 refined notion of empty toplevel, admits undo of 'end';
wenzelm
parents: 21861
diff changeset
   121
(* datatype node *)
21294
5cd48242ef17 simplified local theory wrappers;
wenzelm
parents: 21277
diff changeset
   122
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   123
datatype node =
20963
a7fd8f05a2be added type global_theory -- theory or local_theory;
wenzelm
parents: 20928
diff changeset
   124
  Theory of generic_theory * Proof.context option | (*theory with presentation context*)
21007
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   125
  Proof of ProofHistory.T * ((Proof.context -> generic_theory) * generic_theory) |
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   126
    (*history of proof states, finish, original theory*)
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   127
  SkipProof of int History.T * (generic_theory * generic_theory);
18563
wenzelm
parents: 17904
diff changeset
   128
    (*history of proof depths, resulting theory, original theory*)
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   129
22056
858016d00449 fixed exit: proper type check of state;
wenzelm
parents: 22014
diff changeset
   130
val the_global_theory = fn Theory (Context.Theory thy, _) => thy | _ => raise UNDEF;
20963
a7fd8f05a2be added type global_theory -- theory or local_theory;
wenzelm
parents: 20928
diff changeset
   131
val theory_node = fn Theory (gthy, _) => SOME gthy | _ => NONE;
18589
c27c9fa9e83d hide type datatype node;
wenzelm
parents: 18564
diff changeset
   132
val proof_node = fn Proof (prf, _) => SOME prf | _ => NONE;
c27c9fa9e83d hide type datatype node;
wenzelm
parents: 18564
diff changeset
   133
20963
a7fd8f05a2be added type global_theory -- theory or local_theory;
wenzelm
parents: 20928
diff changeset
   134
fun cases_node f _ (Theory (gthy, _)) = f gthy
19063
049c010c8fb7 added cases_node;
wenzelm
parents: 18955
diff changeset
   135
  | cases_node _ g (Proof (prf, _)) = g (ProofHistory.current prf)
21007
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   136
  | cases_node f _ (SkipProof (_, (gthy, _))) = f gthy;
19063
049c010c8fb7 added cases_node;
wenzelm
parents: 18955
diff changeset
   137
20963
a7fd8f05a2be added type global_theory -- theory or local_theory;
wenzelm
parents: 20928
diff changeset
   138
fun presentation_context (SOME (Theory (_, SOME ctxt))) NONE = ctxt
a7fd8f05a2be added type global_theory -- theory or local_theory;
wenzelm
parents: 20928
diff changeset
   139
  | presentation_context (SOME node) NONE = cases_node Context.proof_of Proof.context_of node
a7fd8f05a2be added type global_theory -- theory or local_theory;
wenzelm
parents: 20928
diff changeset
   140
  | presentation_context (SOME node) (SOME loc) =
25269
f9090ae5cec9 clarified theory target interface
haftmann
parents: 25219
diff changeset
   141
      loc_init loc (cases_node Context.theory_of Proof.theory_of node)
20963
a7fd8f05a2be added type global_theory -- theory or local_theory;
wenzelm
parents: 20928
diff changeset
   142
  | presentation_context NONE _ = raise UNDEF;
19063
049c010c8fb7 added cases_node;
wenzelm
parents: 18955
diff changeset
   143
26624
770265032999 transaction/init: ensure stable theory (non-draft);
wenzelm
parents: 26621
diff changeset
   144
fun reset_presentation (Theory (gthy, _)) = Theory (gthy, NONE)
770265032999 transaction/init: ensure stable theory (non-draft);
wenzelm
parents: 26621
diff changeset
   145
  | reset_presentation node = node;
770265032999 transaction/init: ensure stable theory (non-draft);
wenzelm
parents: 26621
diff changeset
   146
21958
9dfd1ca4c0a0 refined notion of empty toplevel, admits undo of 'end';
wenzelm
parents: 21861
diff changeset
   147
9dfd1ca4c0a0 refined notion of empty toplevel, admits undo of 'end';
wenzelm
parents: 21861
diff changeset
   148
(* datatype state *)
9dfd1ca4c0a0 refined notion of empty toplevel, admits undo of 'end';
wenzelm
parents: 21861
diff changeset
   149
22056
858016d00449 fixed exit: proper type check of state;
wenzelm
parents: 22014
diff changeset
   150
type state_info = node History.T * ((theory -> unit) * (theory -> unit));
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   151
21958
9dfd1ca4c0a0 refined notion of empty toplevel, admits undo of 'end';
wenzelm
parents: 21861
diff changeset
   152
datatype state =
9dfd1ca4c0a0 refined notion of empty toplevel, admits undo of 'end';
wenzelm
parents: 21861
diff changeset
   153
  Toplevel of state_info option |  (*outer toplevel, leftover end state*)
9dfd1ca4c0a0 refined notion of empty toplevel, admits undo of 'end';
wenzelm
parents: 21861
diff changeset
   154
  State of state_info;
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   155
21958
9dfd1ca4c0a0 refined notion of empty toplevel, admits undo of 'end';
wenzelm
parents: 21861
diff changeset
   156
val toplevel = Toplevel NONE;
9dfd1ca4c0a0 refined notion of empty toplevel, admits undo of 'end';
wenzelm
parents: 21861
diff changeset
   157
9dfd1ca4c0a0 refined notion of empty toplevel, admits undo of 'end';
wenzelm
parents: 21861
diff changeset
   158
fun is_toplevel (Toplevel _) = true
7732
d62523296573 added is_toplevel;
wenzelm
parents: 7612
diff changeset
   159
  | is_toplevel _ = false;
d62523296573 added is_toplevel;
wenzelm
parents: 7612
diff changeset
   160
21958
9dfd1ca4c0a0 refined notion of empty toplevel, admits undo of 'end';
wenzelm
parents: 21861
diff changeset
   161
fun level (Toplevel _) = 0
9dfd1ca4c0a0 refined notion of empty toplevel, admits undo of 'end';
wenzelm
parents: 21861
diff changeset
   162
  | level (State (node, _)) =
17076
c7effdf2e2e2 state: body context;
wenzelm
parents: 16815
diff changeset
   163
      (case History.current node of
21310
bfcc24fc7c46 level: do not account for local theory blocks (relevant for document preparation);
wenzelm
parents: 21294
diff changeset
   164
        Theory _ => 0
bfcc24fc7c46 level: do not account for local theory blocks (relevant for document preparation);
wenzelm
parents: 21294
diff changeset
   165
      | Proof (prf, _) => Proof.level (ProofHistory.current prf)
bfcc24fc7c46 level: do not account for local theory blocks (relevant for document preparation);
wenzelm
parents: 21294
diff changeset
   166
      | SkipProof (h, _) => History.current h + 1);   (*different notion of proof depth!*)
17076
c7effdf2e2e2 state: body context;
wenzelm
parents: 16815
diff changeset
   167
21958
9dfd1ca4c0a0 refined notion of empty toplevel, admits undo of 'end';
wenzelm
parents: 21861
diff changeset
   168
fun str_of_state (Toplevel _) = "at top level"
9dfd1ca4c0a0 refined notion of empty toplevel, admits undo of 'end';
wenzelm
parents: 21861
diff changeset
   169
  | str_of_state (State (node, _)) =
16815
13d20ed9086c added print_state_hook;
wenzelm
parents: 16729
diff changeset
   170
      (case History.current node of
20963
a7fd8f05a2be added type global_theory -- theory or local_theory;
wenzelm
parents: 20928
diff changeset
   171
        Theory (Context.Theory _, _) => "in theory mode"
a7fd8f05a2be added type global_theory -- theory or local_theory;
wenzelm
parents: 20928
diff changeset
   172
      | Theory (Context.Proof _, _) => "in local theory mode"
16815
13d20ed9086c added print_state_hook;
wenzelm
parents: 16729
diff changeset
   173
      | Proof _ => "in proof mode"
13d20ed9086c added print_state_hook;
wenzelm
parents: 16729
diff changeset
   174
      | SkipProof _ => "in skipped proof mode");
5946
a4600d21b59b print_state hook, obeys Goals.current_goals_markers by default;
wenzelm
parents: 5939
diff changeset
   175
a4600d21b59b print_state hook, obeys Goals.current_goals_markers by default;
wenzelm
parents: 5939
diff changeset
   176
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   177
(* top node *)
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   178
21958
9dfd1ca4c0a0 refined notion of empty toplevel, admits undo of 'end';
wenzelm
parents: 21861
diff changeset
   179
fun node_history_of (Toplevel _) = raise UNDEF
9dfd1ca4c0a0 refined notion of empty toplevel, admits undo of 'end';
wenzelm
parents: 21861
diff changeset
   180
  | node_history_of (State (node, _)) = node;
6689
wenzelm
parents: 6664
diff changeset
   181
wenzelm
parents: 6664
diff changeset
   182
val node_of = History.current o node_history_of;
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   183
18589
c27c9fa9e83d hide type datatype node;
wenzelm
parents: 18564
diff changeset
   184
fun is_theory state = not (is_toplevel state) andalso is_some (theory_node (node_of state));
c27c9fa9e83d hide type datatype node;
wenzelm
parents: 18564
diff changeset
   185
fun is_proof state = not (is_toplevel state) andalso is_some (proof_node (node_of state));
c27c9fa9e83d hide type datatype node;
wenzelm
parents: 18564
diff changeset
   186
19063
049c010c8fb7 added cases_node;
wenzelm
parents: 18955
diff changeset
   187
fun node_case f g state = cases_node f g (node_of state);
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   188
21506
b2a673894ce5 prefer Proof.context over Context.generic;
wenzelm
parents: 21310
diff changeset
   189
val context_of = node_case Context.proof_of Proof.context_of;
22089
d9b614dc883d added generic_theory_of;
wenzelm
parents: 22056
diff changeset
   190
val generic_theory_of = node_case I (Context.Proof o Proof.context_of);
20963
a7fd8f05a2be added type global_theory -- theory or local_theory;
wenzelm
parents: 20928
diff changeset
   191
val theory_of = node_case Context.theory_of Proof.theory_of;
18589
c27c9fa9e83d hide type datatype node;
wenzelm
parents: 18564
diff changeset
   192
val proof_of = node_case (fn _ => raise UNDEF) I;
17208
49bc1bdc7b6e added no_body_context;
wenzelm
parents: 17115
diff changeset
   193
18589
c27c9fa9e83d hide type datatype node;
wenzelm
parents: 18564
diff changeset
   194
fun proof_position_of state =
c27c9fa9e83d hide type datatype node;
wenzelm
parents: 18564
diff changeset
   195
  (case node_of state of
c27c9fa9e83d hide type datatype node;
wenzelm
parents: 18564
diff changeset
   196
    Proof (prf, _) => ProofHistory.position prf
c27c9fa9e83d hide type datatype node;
wenzelm
parents: 18564
diff changeset
   197
  | _ => raise UNDEF);
6664
f679ddd1ddd8 cleaned comments;
wenzelm
parents: 6244
diff changeset
   198
21007
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   199
val enter_proof_body = node_case (Proof.init o Context.proof_of) Proof.enter_forward;
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   200
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   201
16815
13d20ed9086c added print_state_hook;
wenzelm
parents: 16729
diff changeset
   202
(* print state *)
13d20ed9086c added print_state_hook;
wenzelm
parents: 16729
diff changeset
   203
25292
f082e59551b0 simplified LocalTheory.reinit;
wenzelm
parents: 25269
diff changeset
   204
val pretty_context = LocalTheory.pretty o Context.cases (TheoryTarget.init NONE) I;
16815
13d20ed9086c added print_state_hook;
wenzelm
parents: 16729
diff changeset
   205
23640
baec2e674461 toplevel prompt/print_state: proper markup, removed hooks;
wenzelm
parents: 23619
diff changeset
   206
fun print_state_context state =
24795
6f5cb7885fd7 print_state_context: local theory context, not proof context;
wenzelm
parents: 24780
diff changeset
   207
  (case try node_of state of
21506
b2a673894ce5 prefer Proof.context over Context.generic;
wenzelm
parents: 21310
diff changeset
   208
    NONE => []
24795
6f5cb7885fd7 print_state_context: local theory context, not proof context;
wenzelm
parents: 24780
diff changeset
   209
  | SOME (Theory (gthy, _)) => pretty_context gthy
6f5cb7885fd7 print_state_context: local theory context, not proof context;
wenzelm
parents: 24780
diff changeset
   210
  | SOME (Proof (_, (_, gthy))) => pretty_context gthy
6f5cb7885fd7 print_state_context: local theory context, not proof context;
wenzelm
parents: 24780
diff changeset
   211
  | SOME (SkipProof (_, (gthy, _))) => pretty_context gthy)
23640
baec2e674461 toplevel prompt/print_state: proper markup, removed hooks;
wenzelm
parents: 23619
diff changeset
   212
  |> Pretty.chunks |> Pretty.writeln;
16815
13d20ed9086c added print_state_hook;
wenzelm
parents: 16729
diff changeset
   213
23640
baec2e674461 toplevel prompt/print_state: proper markup, removed hooks;
wenzelm
parents: 23619
diff changeset
   214
fun print_state prf_only state =
23701
1716f19e7d25 Markup.output;
wenzelm
parents: 23661
diff changeset
   215
  (case try node_of state of
1716f19e7d25 Markup.output;
wenzelm
parents: 23661
diff changeset
   216
    NONE => []
1716f19e7d25 Markup.output;
wenzelm
parents: 23661
diff changeset
   217
  | SOME (Theory (gthy, _)) => if prf_only then [] else pretty_context gthy
1716f19e7d25 Markup.output;
wenzelm
parents: 23661
diff changeset
   218
  | SOME (Proof (prf, _)) =>
1716f19e7d25 Markup.output;
wenzelm
parents: 23661
diff changeset
   219
      Proof.pretty_state (ProofHistory.position prf) (ProofHistory.current prf)
1716f19e7d25 Markup.output;
wenzelm
parents: 23661
diff changeset
   220
  | SOME (SkipProof (h, _)) =>
1716f19e7d25 Markup.output;
wenzelm
parents: 23661
diff changeset
   221
      [Pretty.str ("skipped proof: depth " ^ string_of_int (History.current h))])
1716f19e7d25 Markup.output;
wenzelm
parents: 23661
diff changeset
   222
  |> Pretty.markup_chunks Markup.state |> Pretty.writeln;
16815
13d20ed9086c added print_state_hook;
wenzelm
parents: 16729
diff changeset
   223
13d20ed9086c added print_state_hook;
wenzelm
parents: 16729
diff changeset
   224
15668
53c049a365cf improved exn_message;
wenzelm
parents: 15633
diff changeset
   225
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   226
(** toplevel transitions **)
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   227
16682
wenzelm
parents: 16658
diff changeset
   228
val quiet = ref false;
22135
cd3c167e6f19 Toplevel.debug: coincide with Output.debugging;
wenzelm
parents: 22095
diff changeset
   229
val debug = Output.debugging;
17321
227f1f5c3959 added interact flag to control mode of excursions;
wenzelm
parents: 17320
diff changeset
   230
val interact = ref false;
16682
wenzelm
parents: 16658
diff changeset
   231
val timing = Output.timing;
wenzelm
parents: 16658
diff changeset
   232
val profiling = ref 0;
16815
13d20ed9086c added print_state_hook;
wenzelm
parents: 16729
diff changeset
   233
val skip_proofs = ref false;
16682
wenzelm
parents: 16658
diff changeset
   234
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   235
exception TERMINATE;
5990
8b6de9bd7d72 added exception RESTART;
wenzelm
parents: 5946
diff changeset
   236
exception RESTART;
7022
abf9d5e2fb6e removed BREAK, ROLLBACK;
wenzelm
parents: 6971
diff changeset
   237
exception EXCURSION_FAIL of exn * string;
6689
wenzelm
parents: 6664
diff changeset
   238
exception FAILURE of state * exn;
24055
f7483532537b added TOPLEVEL_ERROR (simplified version from output.ML);
wenzelm
parents: 23975
diff changeset
   239
exception TOPLEVEL_ERROR;
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   240
20128
8f0e07d7cf92 keep/transaction: unified execution model (with debugging etc.);
wenzelm
parents: 19996
diff changeset
   241
8f0e07d7cf92 keep/transaction: unified execution model (with debugging etc.);
wenzelm
parents: 19996
diff changeset
   242
(* print exceptions *)
8f0e07d7cf92 keep/transaction: unified execution model (with debugging etc.);
wenzelm
parents: 19996
diff changeset
   243
26256
3e7939e978c6 added exception CONTEXT, indicating context of another exception;
wenzelm
parents: 26081
diff changeset
   244
exception CONTEXT of Proof.context * exn;
3e7939e978c6 added exception CONTEXT, indicating context of another exception;
wenzelm
parents: 26081
diff changeset
   245
3e7939e978c6 added exception CONTEXT, indicating context of another exception;
wenzelm
parents: 26081
diff changeset
   246
fun exn_context NONE exn = exn
3e7939e978c6 added exception CONTEXT, indicating context of another exception;
wenzelm
parents: 26081
diff changeset
   247
  | exn_context (SOME ctxt) exn = CONTEXT (ctxt, exn);
3e7939e978c6 added exception CONTEXT, indicating context of another exception;
wenzelm
parents: 26081
diff changeset
   248
20128
8f0e07d7cf92 keep/transaction: unified execution model (with debugging etc.);
wenzelm
parents: 19996
diff changeset
   249
local
8f0e07d7cf92 keep/transaction: unified execution model (with debugging etc.);
wenzelm
parents: 19996
diff changeset
   250
26256
3e7939e978c6 added exception CONTEXT, indicating context of another exception;
wenzelm
parents: 26081
diff changeset
   251
fun if_context NONE _ _ = []
3e7939e978c6 added exception CONTEXT, indicating context of another exception;
wenzelm
parents: 26081
diff changeset
   252
  | if_context (SOME ctxt) f xs = map (f ctxt) xs;
20128
8f0e07d7cf92 keep/transaction: unified execution model (with debugging etc.);
wenzelm
parents: 19996
diff changeset
   253
8f0e07d7cf92 keep/transaction: unified execution model (with debugging etc.);
wenzelm
parents: 19996
diff changeset
   254
fun raised name [] = "exception " ^ name ^ " raised"
8f0e07d7cf92 keep/transaction: unified execution model (with debugging etc.);
wenzelm
parents: 19996
diff changeset
   255
  | raised name [msg] = "exception " ^ name ^ " raised: " ^ msg
8f0e07d7cf92 keep/transaction: unified execution model (with debugging etc.);
wenzelm
parents: 19996
diff changeset
   256
  | raised name msgs = cat_lines (("exception " ^ name ^ " raised:") :: msgs);
8f0e07d7cf92 keep/transaction: unified execution model (with debugging etc.);
wenzelm
parents: 19996
diff changeset
   257
8f0e07d7cf92 keep/transaction: unified execution model (with debugging etc.);
wenzelm
parents: 19996
diff changeset
   258
in
8f0e07d7cf92 keep/transaction: unified execution model (with debugging etc.);
wenzelm
parents: 19996
diff changeset
   259
26256
3e7939e978c6 added exception CONTEXT, indicating context of another exception;
wenzelm
parents: 26081
diff changeset
   260
fun exn_message e =
3e7939e978c6 added exception CONTEXT, indicating context of another exception;
wenzelm
parents: 26081
diff changeset
   261
  let
3e7939e978c6 added exception CONTEXT, indicating context of another exception;
wenzelm
parents: 26081
diff changeset
   262
    val detailed = ! debug;
3e7939e978c6 added exception CONTEXT, indicating context of another exception;
wenzelm
parents: 26081
diff changeset
   263
3e7939e978c6 added exception CONTEXT, indicating context of another exception;
wenzelm
parents: 26081
diff changeset
   264
    fun exn_msg _ (CONTEXT (ctxt, exn)) = exn_msg (SOME ctxt) exn
3e7939e978c6 added exception CONTEXT, indicating context of another exception;
wenzelm
parents: 26081
diff changeset
   265
      | exn_msg ctxt (Exn.EXCEPTIONS (exns, "")) = cat_lines (map (exn_msg ctxt) exns)
3e7939e978c6 added exception CONTEXT, indicating context of another exception;
wenzelm
parents: 26081
diff changeset
   266
      | exn_msg ctxt (Exn.EXCEPTIONS (exns, msg)) = cat_lines (map (exn_msg ctxt) exns @ [msg])
26293
wenzelm
parents: 26257
diff changeset
   267
      | exn_msg ctxt (EXCURSION_FAIL (exn, loc)) =
wenzelm
parents: 26257
diff changeset
   268
          exn_msg ctxt exn ^ Markup.markup Markup.location ("\n" ^ loc)
26256
3e7939e978c6 added exception CONTEXT, indicating context of another exception;
wenzelm
parents: 26081
diff changeset
   269
      | exn_msg _ TERMINATE = "Exit."
3e7939e978c6 added exception CONTEXT, indicating context of another exception;
wenzelm
parents: 26081
diff changeset
   270
      | exn_msg _ RESTART = "Restart."
3e7939e978c6 added exception CONTEXT, indicating context of another exception;
wenzelm
parents: 26081
diff changeset
   271
      | exn_msg _ Interrupt = "Interrupt."
3e7939e978c6 added exception CONTEXT, indicating context of another exception;
wenzelm
parents: 26081
diff changeset
   272
      | exn_msg _ TimeLimit.TimeOut = "Timeout."
3e7939e978c6 added exception CONTEXT, indicating context of another exception;
wenzelm
parents: 26081
diff changeset
   273
      | exn_msg _ TOPLEVEL_ERROR = "Error."
3e7939e978c6 added exception CONTEXT, indicating context of another exception;
wenzelm
parents: 26081
diff changeset
   274
      | exn_msg _ (SYS_ERROR msg) = "## SYSTEM ERROR ##\n" ^ msg
3e7939e978c6 added exception CONTEXT, indicating context of another exception;
wenzelm
parents: 26081
diff changeset
   275
      | exn_msg _ (ERROR msg) = msg
3e7939e978c6 added exception CONTEXT, indicating context of another exception;
wenzelm
parents: 26081
diff changeset
   276
      | exn_msg _ (Fail msg) = raised "Fail" [msg]
3e7939e978c6 added exception CONTEXT, indicating context of another exception;
wenzelm
parents: 26081
diff changeset
   277
      | exn_msg _ (THEORY (msg, thys)) =
3e7939e978c6 added exception CONTEXT, indicating context of another exception;
wenzelm
parents: 26081
diff changeset
   278
          raised "THEORY" (msg :: (if detailed then map Context.str_of_thy thys else []))
3e7939e978c6 added exception CONTEXT, indicating context of another exception;
wenzelm
parents: 26081
diff changeset
   279
      | exn_msg _ (Syntax.AST (msg, asts)) = raised "AST" (msg ::
3e7939e978c6 added exception CONTEXT, indicating context of another exception;
wenzelm
parents: 26081
diff changeset
   280
            (if detailed then map (Pretty.string_of o Syntax.pretty_ast) asts else []))
3e7939e978c6 added exception CONTEXT, indicating context of another exception;
wenzelm
parents: 26081
diff changeset
   281
      | exn_msg ctxt (TYPE (msg, Ts, ts)) = raised "TYPE" (msg ::
3e7939e978c6 added exception CONTEXT, indicating context of another exception;
wenzelm
parents: 26081
diff changeset
   282
            (if detailed then
3e7939e978c6 added exception CONTEXT, indicating context of another exception;
wenzelm
parents: 26081
diff changeset
   283
              if_context ctxt Syntax.string_of_typ Ts @ if_context ctxt Syntax.string_of_term ts
3e7939e978c6 added exception CONTEXT, indicating context of another exception;
wenzelm
parents: 26081
diff changeset
   284
             else []))
3e7939e978c6 added exception CONTEXT, indicating context of another exception;
wenzelm
parents: 26081
diff changeset
   285
      | exn_msg ctxt (TERM (msg, ts)) = raised "TERM" (msg ::
3e7939e978c6 added exception CONTEXT, indicating context of another exception;
wenzelm
parents: 26081
diff changeset
   286
            (if detailed then if_context ctxt Syntax.string_of_term ts else []))
3e7939e978c6 added exception CONTEXT, indicating context of another exception;
wenzelm
parents: 26081
diff changeset
   287
      | exn_msg ctxt (THM (msg, i, thms)) = raised ("THM " ^ string_of_int i) (msg ::
3e7939e978c6 added exception CONTEXT, indicating context of another exception;
wenzelm
parents: 26081
diff changeset
   288
            (if detailed then if_context ctxt ProofContext.string_of_thm thms else []))
3e7939e978c6 added exception CONTEXT, indicating context of another exception;
wenzelm
parents: 26081
diff changeset
   289
      | exn_msg _ exn = raised (General.exnMessage exn) []
3e7939e978c6 added exception CONTEXT, indicating context of another exception;
wenzelm
parents: 26081
diff changeset
   290
  in exn_msg NONE e end;
3e7939e978c6 added exception CONTEXT, indicating context of another exception;
wenzelm
parents: 26081
diff changeset
   291
20128
8f0e07d7cf92 keep/transaction: unified execution model (with debugging etc.);
wenzelm
parents: 19996
diff changeset
   292
end;
8f0e07d7cf92 keep/transaction: unified execution model (with debugging etc.);
wenzelm
parents: 19996
diff changeset
   293
8f0e07d7cf92 keep/transaction: unified execution model (with debugging etc.);
wenzelm
parents: 19996
diff changeset
   294
8f0e07d7cf92 keep/transaction: unified execution model (with debugging etc.);
wenzelm
parents: 19996
diff changeset
   295
(* controlled execution *)
8f0e07d7cf92 keep/transaction: unified execution model (with debugging etc.);
wenzelm
parents: 19996
diff changeset
   296
8f0e07d7cf92 keep/transaction: unified execution model (with debugging etc.);
wenzelm
parents: 19996
diff changeset
   297
local
8f0e07d7cf92 keep/transaction: unified execution model (with debugging etc.);
wenzelm
parents: 19996
diff changeset
   298
18685
725660906cb3 sane ERROR vs. TOPLEVEL_ERROR handling;
wenzelm
parents: 18664
diff changeset
   299
fun debugging f x =
23940
f2181804fced marked some CRITICAL sections;
wenzelm
parents: 23911
diff changeset
   300
  if ! debug then exception_trace (fn () => f x)
18685
725660906cb3 sane ERROR vs. TOPLEVEL_ERROR handling;
wenzelm
parents: 18664
diff changeset
   301
  else f x;
725660906cb3 sane ERROR vs. TOPLEVEL_ERROR handling;
wenzelm
parents: 18664
diff changeset
   302
26256
3e7939e978c6 added exception CONTEXT, indicating context of another exception;
wenzelm
parents: 26081
diff changeset
   303
fun toplevel_error f x =
3e7939e978c6 added exception CONTEXT, indicating context of another exception;
wenzelm
parents: 26081
diff changeset
   304
  let val ctxt = try ML_Context.the_local_context () in
3e7939e978c6 added exception CONTEXT, indicating context of another exception;
wenzelm
parents: 26081
diff changeset
   305
    f x handle exn =>
3e7939e978c6 added exception CONTEXT, indicating context of another exception;
wenzelm
parents: 26081
diff changeset
   306
      (Output.error_msg (exn_message (exn_context ctxt exn)); raise TOPLEVEL_ERROR)
3e7939e978c6 added exception CONTEXT, indicating context of another exception;
wenzelm
parents: 26081
diff changeset
   307
  end;
24055
f7483532537b added TOPLEVEL_ERROR (simplified version from output.ML);
wenzelm
parents: 23975
diff changeset
   308
20128
8f0e07d7cf92 keep/transaction: unified execution model (with debugging etc.);
wenzelm
parents: 19996
diff changeset
   309
in
8f0e07d7cf92 keep/transaction: unified execution model (with debugging etc.);
wenzelm
parents: 19996
diff changeset
   310
8f0e07d7cf92 keep/transaction: unified execution model (with debugging etc.);
wenzelm
parents: 19996
diff changeset
   311
fun controlled_execution f =
8f0e07d7cf92 keep/transaction: unified execution model (with debugging etc.);
wenzelm
parents: 19996
diff changeset
   312
  f
8f0e07d7cf92 keep/transaction: unified execution model (with debugging etc.);
wenzelm
parents: 19996
diff changeset
   313
  |> debugging
24055
f7483532537b added TOPLEVEL_ERROR (simplified version from output.ML);
wenzelm
parents: 23975
diff changeset
   314
  |> interruptible;
20128
8f0e07d7cf92 keep/transaction: unified execution model (with debugging etc.);
wenzelm
parents: 19996
diff changeset
   315
8f0e07d7cf92 keep/transaction: unified execution model (with debugging etc.);
wenzelm
parents: 19996
diff changeset
   316
fun program f =
24055
f7483532537b added TOPLEVEL_ERROR (simplified version from output.ML);
wenzelm
parents: 23975
diff changeset
   317
 (f
f7483532537b added TOPLEVEL_ERROR (simplified version from output.ML);
wenzelm
parents: 23975
diff changeset
   318
  |> debugging
f7483532537b added TOPLEVEL_ERROR (simplified version from output.ML);
wenzelm
parents: 23975
diff changeset
   319
  |> toplevel_error) ();
20128
8f0e07d7cf92 keep/transaction: unified execution model (with debugging etc.);
wenzelm
parents: 19996
diff changeset
   320
8f0e07d7cf92 keep/transaction: unified execution model (with debugging etc.);
wenzelm
parents: 19996
diff changeset
   321
end;
8f0e07d7cf92 keep/transaction: unified execution model (with debugging etc.);
wenzelm
parents: 19996
diff changeset
   322
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   323
16815
13d20ed9086c added print_state_hook;
wenzelm
parents: 16729
diff changeset
   324
(* node transactions and recovery from stale theories *)
6689
wenzelm
parents: 6664
diff changeset
   325
16815
13d20ed9086c added print_state_hook;
wenzelm
parents: 16729
diff changeset
   326
(*NB: proof commands should be non-destructive!*)
7022
abf9d5e2fb6e removed BREAK, ROLLBACK;
wenzelm
parents: 6971
diff changeset
   327
6689
wenzelm
parents: 6664
diff changeset
   328
local
wenzelm
parents: 6664
diff changeset
   329
16452
71f3e0041f14 Context.DATA_FAIL;
wenzelm
parents: 16197
diff changeset
   330
fun is_stale state = Context.is_stale (theory_of state) handle UNDEF => false;
6689
wenzelm
parents: 6664
diff changeset
   331
26624
770265032999 transaction/init: ensure stable theory (non-draft);
wenzelm
parents: 26621
diff changeset
   332
fun is_draft_theory (Theory (gthy, _)) = Context.is_draft (Context.theory_of gthy)
770265032999 transaction/init: ensure stable theory (non-draft);
wenzelm
parents: 26621
diff changeset
   333
  | is_draft_theory _ = false;
770265032999 transaction/init: ensure stable theory (non-draft);
wenzelm
parents: 26621
diff changeset
   334
770265032999 transaction/init: ensure stable theory (non-draft);
wenzelm
parents: 26621
diff changeset
   335
fun stale_error NONE = SOME (ERROR "Stale theory encountered after successful execution!")
770265032999 transaction/init: ensure stable theory (non-draft);
wenzelm
parents: 26621
diff changeset
   336
  | stale_error some = some;
16815
13d20ed9086c added print_state_hook;
wenzelm
parents: 16729
diff changeset
   337
23363
9981199bf865 transaction: context_position (non-destructive only);
wenzelm
parents: 22588
diff changeset
   338
fun map_theory f = History.map_current
26624
770265032999 transaction/init: ensure stable theory (non-draft);
wenzelm
parents: 26621
diff changeset
   339
  (fn Theory (gthy, ctxt) => Theory (Context.mapping f (LocalTheory.raw_theory f) gthy, ctxt)
21177
e8228486aa03 removed checkpoint interface;
wenzelm
parents: 21007
diff changeset
   340
    | node => node);
6689
wenzelm
parents: 6664
diff changeset
   341
wenzelm
parents: 6664
diff changeset
   342
in
wenzelm
parents: 6664
diff changeset
   343
23363
9981199bf865 transaction: context_position (non-destructive only);
wenzelm
parents: 22588
diff changeset
   344
fun transaction hist pos f (node, term) =
20128
8f0e07d7cf92 keep/transaction: unified execution model (with debugging etc.);
wenzelm
parents: 19996
diff changeset
   345
  let
26624
770265032999 transaction/init: ensure stable theory (non-draft);
wenzelm
parents: 26621
diff changeset
   346
    val _ = is_draft_theory (History.current node) andalso
770265032999 transaction/init: ensure stable theory (non-draft);
wenzelm
parents: 26621
diff changeset
   347
      error "Illegal draft theory in toplevel state";
770265032999 transaction/init: ensure stable theory (non-draft);
wenzelm
parents: 26621
diff changeset
   348
    val cont_node = node |> History.map_current reset_presentation;
770265032999 transaction/init: ensure stable theory (non-draft);
wenzelm
parents: 26621
diff changeset
   349
    val back_node = cont_node |> map_theory Theory.copy |> map_theory Theory.checkpoint;
770265032999 transaction/init: ensure stable theory (non-draft);
wenzelm
parents: 26621
diff changeset
   350
    fun state_error e nd = (State (nd, term), e);
6689
wenzelm
parents: 6664
diff changeset
   351
20128
8f0e07d7cf92 keep/transaction: unified execution model (with debugging etc.);
wenzelm
parents: 19996
diff changeset
   352
    val (result, err) =
8f0e07d7cf92 keep/transaction: unified execution model (with debugging etc.);
wenzelm
parents: 19996
diff changeset
   353
      cont_node
8f0e07d7cf92 keep/transaction: unified execution model (with debugging etc.);
wenzelm
parents: 19996
diff changeset
   354
      |> (f
23363
9981199bf865 transaction: context_position (non-destructive only);
wenzelm
parents: 22588
diff changeset
   355
          |> (if hist then History.apply' (History.current back_node) else History.map_current)
20128
8f0e07d7cf92 keep/transaction: unified execution model (with debugging etc.);
wenzelm
parents: 19996
diff changeset
   356
          |> controlled_execution)
26624
770265032999 transaction/init: ensure stable theory (non-draft);
wenzelm
parents: 26621
diff changeset
   357
      |> map_theory Theory.checkpoint
770265032999 transaction/init: ensure stable theory (non-draft);
wenzelm
parents: 26621
diff changeset
   358
      |> state_error NONE
770265032999 transaction/init: ensure stable theory (non-draft);
wenzelm
parents: 26621
diff changeset
   359
      handle exn => state_error (SOME exn) cont_node;
770265032999 transaction/init: ensure stable theory (non-draft);
wenzelm
parents: 26621
diff changeset
   360
770265032999 transaction/init: ensure stable theory (non-draft);
wenzelm
parents: 26621
diff changeset
   361
    val (result', err') =
770265032999 transaction/init: ensure stable theory (non-draft);
wenzelm
parents: 26621
diff changeset
   362
      if is_stale result then state_error (stale_error err) back_node
770265032999 transaction/init: ensure stable theory (non-draft);
wenzelm
parents: 26621
diff changeset
   363
      else (result, err);
20128
8f0e07d7cf92 keep/transaction: unified execution model (with debugging etc.);
wenzelm
parents: 19996
diff changeset
   364
  in
26624
770265032999 transaction/init: ensure stable theory (non-draft);
wenzelm
parents: 26621
diff changeset
   365
    (case err' of
770265032999 transaction/init: ensure stable theory (non-draft);
wenzelm
parents: 26621
diff changeset
   366
      NONE => result'
770265032999 transaction/init: ensure stable theory (non-draft);
wenzelm
parents: 26621
diff changeset
   367
    | SOME exn => raise FAILURE (result', exn))
20128
8f0e07d7cf92 keep/transaction: unified execution model (with debugging etc.);
wenzelm
parents: 19996
diff changeset
   368
  end;
6689
wenzelm
parents: 6664
diff changeset
   369
wenzelm
parents: 6664
diff changeset
   370
end;
wenzelm
parents: 6664
diff changeset
   371
wenzelm
parents: 6664
diff changeset
   372
wenzelm
parents: 6664
diff changeset
   373
(* primitive transitions *)
wenzelm
parents: 6664
diff changeset
   374
18563
wenzelm
parents: 17904
diff changeset
   375
(*Note: Recovery from stale theories is provided only for theory-level
18589
c27c9fa9e83d hide type datatype node;
wenzelm
parents: 18564
diff changeset
   376
  operations via Transaction.  Other node or state operations should
c27c9fa9e83d hide type datatype node;
wenzelm
parents: 18564
diff changeset
   377
  not touch theories at all.  Interrupts are enabled only for Keep and
c27c9fa9e83d hide type datatype node;
wenzelm
parents: 18564
diff changeset
   378
  Transaction.*)
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   379
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   380
datatype trans =
22056
858016d00449 fixed exit: proper type check of state;
wenzelm
parents: 22014
diff changeset
   381
  Init of (bool -> theory) * ((theory -> unit) * (theory -> unit)) |
21958
9dfd1ca4c0a0 refined notion of empty toplevel, admits undo of 'end';
wenzelm
parents: 21861
diff changeset
   382
                                                    (*init node; with exit/kill operation*)
25441
4028958d19ff init_empty: check before change (avoids non-linear update);
wenzelm
parents: 25292
diff changeset
   383
  InitEmpty of (state -> bool) * (unit -> unit) |   (*init empty toplevel*)
21958
9dfd1ca4c0a0 refined notion of empty toplevel, admits undo of 'end';
wenzelm
parents: 21861
diff changeset
   384
  Exit |                                            (*conclude node -- deferred until init*)
9dfd1ca4c0a0 refined notion of empty toplevel, admits undo of 'end';
wenzelm
parents: 21861
diff changeset
   385
  UndoExit |                                        (*continue after conclusion*)
9dfd1ca4c0a0 refined notion of empty toplevel, admits undo of 'end';
wenzelm
parents: 21861
diff changeset
   386
  Kill |                                            (*abort node*)
9dfd1ca4c0a0 refined notion of empty toplevel, admits undo of 'end';
wenzelm
parents: 21861
diff changeset
   387
  History of node History.T -> node History.T |     (*history operation (undo etc.)*)
9dfd1ca4c0a0 refined notion of empty toplevel, admits undo of 'end';
wenzelm
parents: 21861
diff changeset
   388
  Keep of bool -> state -> unit |                   (*peek at state*)
9dfd1ca4c0a0 refined notion of empty toplevel, admits undo of 'end';
wenzelm
parents: 21861
diff changeset
   389
  Transaction of bool * (bool -> node -> node);     (*node transaction*)
6689
wenzelm
parents: 6664
diff changeset
   390
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15519
diff changeset
   391
fun undo_limit int = if int then NONE else SOME 0;
6689
wenzelm
parents: 6664
diff changeset
   392
22056
858016d00449 fixed exit: proper type check of state;
wenzelm
parents: 22014
diff changeset
   393
fun safe_exit (Toplevel (SOME (node, (exit, _)))) =
858016d00449 fixed exit: proper type check of state;
wenzelm
parents: 22014
diff changeset
   394
    (case try the_global_theory (History.current node) of
25219
084f468145e3 safe_exit: controlled_execution;
wenzelm
parents: 24936
diff changeset
   395
      SOME thy => controlled_execution exit thy
22056
858016d00449 fixed exit: proper type check of state;
wenzelm
parents: 22014
diff changeset
   396
    | NONE => ())
858016d00449 fixed exit: proper type check of state;
wenzelm
parents: 22014
diff changeset
   397
  | safe_exit _ = ();
21958
9dfd1ca4c0a0 refined notion of empty toplevel, admits undo of 'end';
wenzelm
parents: 21861
diff changeset
   398
6689
wenzelm
parents: 6664
diff changeset
   399
local
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   400
21958
9dfd1ca4c0a0 refined notion of empty toplevel, admits undo of 'end';
wenzelm
parents: 21861
diff changeset
   401
fun keep_state int f = controlled_execution (fn x => tap (f int) x);
9dfd1ca4c0a0 refined notion of empty toplevel, admits undo of 'end';
wenzelm
parents: 21861
diff changeset
   402
23363
9981199bf865 transaction: context_position (non-destructive only);
wenzelm
parents: 22588
diff changeset
   403
fun apply_tr int _ (Init (f, term)) (state as Toplevel _) =
26624
770265032999 transaction/init: ensure stable theory (non-draft);
wenzelm
parents: 26621
diff changeset
   404
      let val node = Theory (Context.Theory (Theory.checkpoint (f int)), NONE)
22056
858016d00449 fixed exit: proper type check of state;
wenzelm
parents: 22014
diff changeset
   405
      in safe_exit state; State (History.init (undo_limit int) node, term) end
25441
4028958d19ff init_empty: check before change (avoids non-linear update);
wenzelm
parents: 25292
diff changeset
   406
  | apply_tr int _ (InitEmpty (check, f)) (state as Toplevel _) =
4028958d19ff init_empty: check before change (avoids non-linear update);
wenzelm
parents: 25292
diff changeset
   407
      if check state then (safe_exit state; keep_state int (fn _ => fn _ => f ()) toplevel)
4028958d19ff init_empty: check before change (avoids non-linear update);
wenzelm
parents: 25292
diff changeset
   408
      else raise UNDEF
23363
9981199bf865 transaction: context_position (non-destructive only);
wenzelm
parents: 22588
diff changeset
   409
  | apply_tr _ _ Exit (State (node, term)) =
22056
858016d00449 fixed exit: proper type check of state;
wenzelm
parents: 22014
diff changeset
   410
      (the_global_theory (History.current node); Toplevel (SOME (node, term)))
23363
9981199bf865 transaction: context_position (non-destructive only);
wenzelm
parents: 22588
diff changeset
   411
  | apply_tr _ _ UndoExit (Toplevel (SOME state_info)) = State state_info
9981199bf865 transaction: context_position (non-destructive only);
wenzelm
parents: 22588
diff changeset
   412
  | apply_tr _ _ Kill (State (node, (_, kill))) =
22056
858016d00449 fixed exit: proper type check of state;
wenzelm
parents: 22014
diff changeset
   413
      (kill (the_global_theory (History.current node)); toplevel)
23363
9981199bf865 transaction: context_position (non-destructive only);
wenzelm
parents: 22588
diff changeset
   414
  | apply_tr _ _ (History f) (State (node, term)) = State (f node, term)
9981199bf865 transaction: context_position (non-destructive only);
wenzelm
parents: 22588
diff changeset
   415
  | apply_tr int _ (Keep f) state = keep_state int f state
9981199bf865 transaction: context_position (non-destructive only);
wenzelm
parents: 22588
diff changeset
   416
  | apply_tr int pos (Transaction (hist, f)) (State state) =
9981199bf865 transaction: context_position (non-destructive only);
wenzelm
parents: 22588
diff changeset
   417
      transaction hist pos (fn x => f int x) state
9981199bf865 transaction: context_position (non-destructive only);
wenzelm
parents: 22588
diff changeset
   418
  | apply_tr _ _ _ _ = raise UNDEF;
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   419
23363
9981199bf865 transaction: context_position (non-destructive only);
wenzelm
parents: 22588
diff changeset
   420
fun apply_union _ _ [] state = raise FAILURE (state, UNDEF)
9981199bf865 transaction: context_position (non-destructive only);
wenzelm
parents: 22588
diff changeset
   421
  | apply_union int pos (tr :: trs) state =
9981199bf865 transaction: context_position (non-destructive only);
wenzelm
parents: 22588
diff changeset
   422
      apply_tr int pos tr state
9981199bf865 transaction: context_position (non-destructive only);
wenzelm
parents: 22588
diff changeset
   423
        handle UNDEF => apply_union int pos trs state
9981199bf865 transaction: context_position (non-destructive only);
wenzelm
parents: 22588
diff changeset
   424
          | FAILURE (alt_state, UNDEF) => apply_union int pos trs alt_state
6689
wenzelm
parents: 6664
diff changeset
   425
          | exn as FAILURE _ => raise exn
wenzelm
parents: 6664
diff changeset
   426
          | exn => raise FAILURE (state, exn);
wenzelm
parents: 6664
diff changeset
   427
wenzelm
parents: 6664
diff changeset
   428
in
wenzelm
parents: 6664
diff changeset
   429
23363
9981199bf865 transaction: context_position (non-destructive only);
wenzelm
parents: 22588
diff changeset
   430
fun apply_trans int pos trs state = (apply_union int pos trs state, NONE)
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15519
diff changeset
   431
  handle FAILURE (alt_state, exn) => (alt_state, SOME exn) | exn => (state, SOME exn);
6689
wenzelm
parents: 6664
diff changeset
   432
wenzelm
parents: 6664
diff changeset
   433
end;
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   434
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   435
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   436
(* datatype transition *)
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   437
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   438
datatype transition = Transition of
26621
78b3ad7af5d5 eliminated unused name_of, source, source_of, print', print3, three_buffersN;
wenzelm
parents: 26602
diff changeset
   439
 {name: string,              (*command name*)
78b3ad7af5d5 eliminated unused name_of, source, source_of, print', print3, three_buffersN;
wenzelm
parents: 26602
diff changeset
   440
  pos: Position.T,           (*source position*)
78b3ad7af5d5 eliminated unused name_of, source, source_of, print', print3, three_buffersN;
wenzelm
parents: 26602
diff changeset
   441
  int_only: bool,            (*interactive-only*)
78b3ad7af5d5 eliminated unused name_of, source, source_of, print', print3, three_buffersN;
wenzelm
parents: 26602
diff changeset
   442
  print: bool,               (*print result state*)
78b3ad7af5d5 eliminated unused name_of, source, source_of, print', print3, three_buffersN;
wenzelm
parents: 26602
diff changeset
   443
  no_timing: bool,           (*suppress timing*)
78b3ad7af5d5 eliminated unused name_of, source, source_of, print', print3, three_buffersN;
wenzelm
parents: 26602
diff changeset
   444
  trans: trans list};        (*primitive transitions (union)*)
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   445
26621
78b3ad7af5d5 eliminated unused name_of, source, source_of, print', print3, three_buffersN;
wenzelm
parents: 26602
diff changeset
   446
fun make_transition (name, pos, int_only, print, no_timing, trans) =
78b3ad7af5d5 eliminated unused name_of, source, source_of, print', print3, three_buffersN;
wenzelm
parents: 26602
diff changeset
   447
  Transition {name = name, pos = pos, int_only = int_only, print = print, no_timing = no_timing,
78b3ad7af5d5 eliminated unused name_of, source, source_of, print', print3, three_buffersN;
wenzelm
parents: 26602
diff changeset
   448
    trans = trans};
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   449
26621
78b3ad7af5d5 eliminated unused name_of, source, source_of, print', print3, three_buffersN;
wenzelm
parents: 26602
diff changeset
   450
fun map_transition f (Transition {name, pos, int_only, print, no_timing, trans}) =
78b3ad7af5d5 eliminated unused name_of, source, source_of, print', print3, three_buffersN;
wenzelm
parents: 26602
diff changeset
   451
  make_transition (f (name, pos, int_only, print, no_timing, trans));
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   452
26621
78b3ad7af5d5 eliminated unused name_of, source, source_of, print', print3, three_buffersN;
wenzelm
parents: 26602
diff changeset
   453
val empty = make_transition ("<unknown>", Position.none, false, false, false, []);
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   454
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   455
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   456
(* diagnostics *)
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   457
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   458
fun str_of_transition (Transition {name, pos, ...}) = quote name ^ Position.str_of pos;
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   459
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   460
fun command_msg msg tr = msg ^ "command " ^ str_of_transition tr;
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   461
fun at_command tr = command_msg "At " tr ^ ".";
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   462
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   463
fun type_error tr state =
18685
725660906cb3 sane ERROR vs. TOPLEVEL_ERROR handling;
wenzelm
parents: 18664
diff changeset
   464
  ERROR (command_msg "Illegal application of " tr ^ " " ^ str_of_state state);
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   465
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   466
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   467
(* modify transitions *)
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   468
26621
78b3ad7af5d5 eliminated unused name_of, source, source_of, print', print3, three_buffersN;
wenzelm
parents: 26602
diff changeset
   469
fun name nm = map_transition (fn (_, pos, int_only, print, no_timing, trans) =>
78b3ad7af5d5 eliminated unused name_of, source, source_of, print', print3, three_buffersN;
wenzelm
parents: 26602
diff changeset
   470
  (nm, pos, int_only, print, no_timing, trans));
9010
ce78dc5e1a73 Toplevel.no_timing;
wenzelm
parents: 8999
diff changeset
   471
26621
78b3ad7af5d5 eliminated unused name_of, source, source_of, print', print3, three_buffersN;
wenzelm
parents: 26602
diff changeset
   472
fun position pos = map_transition (fn (name, _, int_only, print, no_timing, trans) =>
78b3ad7af5d5 eliminated unused name_of, source, source_of, print', print3, three_buffersN;
wenzelm
parents: 26602
diff changeset
   473
  (name, pos, int_only, print, no_timing, trans));
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   474
26621
78b3ad7af5d5 eliminated unused name_of, source, source_of, print', print3, three_buffersN;
wenzelm
parents: 26602
diff changeset
   475
fun interactive int_only = map_transition (fn (name, pos, _, print, no_timing, trans) =>
78b3ad7af5d5 eliminated unused name_of, source, source_of, print', print3, three_buffersN;
wenzelm
parents: 26602
diff changeset
   476
  (name, pos, int_only, print, no_timing, trans));
14923
8a32071c3c13 added name_of, source_of, source;
wenzelm
parents: 14825
diff changeset
   477
26621
78b3ad7af5d5 eliminated unused name_of, source, source_of, print', print3, three_buffersN;
wenzelm
parents: 26602
diff changeset
   478
val no_timing = map_transition (fn (name, pos, int_only, print, _, trans) =>
78b3ad7af5d5 eliminated unused name_of, source, source_of, print', print3, three_buffersN;
wenzelm
parents: 26602
diff changeset
   479
  (name, pos, int_only, print, true, trans));
17363
046c829c075f added three_buffersN, print3;
wenzelm
parents: 17321
diff changeset
   480
26621
78b3ad7af5d5 eliminated unused name_of, source, source_of, print', print3, three_buffersN;
wenzelm
parents: 26602
diff changeset
   481
fun add_trans tr = map_transition (fn (name, pos, int_only, print, no_timing, trans) =>
78b3ad7af5d5 eliminated unused name_of, source, source_of, print', print3, three_buffersN;
wenzelm
parents: 26602
diff changeset
   482
  (name, pos, int_only, print, no_timing, trans @ [tr]));
16607
81e687c63e29 added print': print depending on print_mode;
wenzelm
parents: 16490
diff changeset
   483
26621
78b3ad7af5d5 eliminated unused name_of, source, source_of, print', print3, three_buffersN;
wenzelm
parents: 26602
diff changeset
   484
val print = map_transition (fn (name, pos, int_only, _, no_timing, trans) =>
78b3ad7af5d5 eliminated unused name_of, source, source_of, print', print3, three_buffersN;
wenzelm
parents: 26602
diff changeset
   485
  (name, pos, int_only, true, no_timing, trans));
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   486
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   487
21007
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   488
(* basic transitions *)
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   489
22056
858016d00449 fixed exit: proper type check of state;
wenzelm
parents: 22014
diff changeset
   490
fun init_theory f exit kill = add_trans (Init (f, (exit, kill)));
25441
4028958d19ff init_empty: check before change (avoids non-linear update);
wenzelm
parents: 25292
diff changeset
   491
fun init_empty check f = add_trans (InitEmpty (check, f));
6689
wenzelm
parents: 6664
diff changeset
   492
val exit = add_trans Exit;
21958
9dfd1ca4c0a0 refined notion of empty toplevel, admits undo of 'end';
wenzelm
parents: 21861
diff changeset
   493
val undo_exit = add_trans UndoExit;
6689
wenzelm
parents: 6664
diff changeset
   494
val kill = add_trans Kill;
20128
8f0e07d7cf92 keep/transaction: unified execution model (with debugging etc.);
wenzelm
parents: 19996
diff changeset
   495
val history = add_trans o History;
7612
ba11b5db431a added keep', theory';
wenzelm
parents: 7602
diff changeset
   496
val keep' = add_trans o Keep;
18592
451d622bb4a9 transactions now always see quasi-functional intermediate checkpoint;
wenzelm
parents: 18589
diff changeset
   497
fun map_current f = add_trans (Transaction (false, f));
451d622bb4a9 transactions now always see quasi-functional intermediate checkpoint;
wenzelm
parents: 18589
diff changeset
   498
fun app_current f = add_trans (Transaction (true, f));
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   499
7612
ba11b5db431a added keep', theory';
wenzelm
parents: 7602
diff changeset
   500
fun keep f = add_trans (Keep (fn _ => f));
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   501
fun imperative f = keep (fn _ => f ());
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   502
21007
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   503
val unknown_theory = imperative (fn () => warning "Unknown theory context");
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   504
val unknown_proof = imperative (fn () => warning "Unknown proof context");
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   505
val unknown_context = imperative (fn () => warning "Unknown context");
15668
53c049a365cf improved exn_message;
wenzelm
parents: 15633
diff changeset
   506
21007
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   507
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   508
(* theory transitions *)
15668
53c049a365cf improved exn_message;
wenzelm
parents: 15633
diff changeset
   509
26491
c93ff30790fe added generic_theory transaction;
wenzelm
parents: 26293
diff changeset
   510
fun generic_theory f = app_current (fn _ =>
c93ff30790fe added generic_theory transaction;
wenzelm
parents: 26293
diff changeset
   511
  (fn Theory (gthy, _) => Theory (f gthy, NONE)
c93ff30790fe added generic_theory transaction;
wenzelm
parents: 26293
diff changeset
   512
    | _ => raise UNDEF));
c93ff30790fe added generic_theory transaction;
wenzelm
parents: 26293
diff changeset
   513
20963
a7fd8f05a2be added type global_theory -- theory or local_theory;
wenzelm
parents: 20928
diff changeset
   514
fun theory' f = app_current (fn int =>
a7fd8f05a2be added type global_theory -- theory or local_theory;
wenzelm
parents: 20928
diff changeset
   515
  (fn Theory (Context.Theory thy, _) => Theory (Context.Theory (f int thy), NONE)
a7fd8f05a2be added type global_theory -- theory or local_theory;
wenzelm
parents: 20928
diff changeset
   516
    | _ => raise UNDEF));
a7fd8f05a2be added type global_theory -- theory or local_theory;
wenzelm
parents: 20928
diff changeset
   517
a7fd8f05a2be added type global_theory -- theory or local_theory;
wenzelm
parents: 20928
diff changeset
   518
fun theory f = theory' (K f);
a7fd8f05a2be added type global_theory -- theory or local_theory;
wenzelm
parents: 20928
diff changeset
   519
21294
5cd48242ef17 simplified local theory wrappers;
wenzelm
parents: 21277
diff changeset
   520
fun begin_local_theory begin f = app_current (fn _ =>
20963
a7fd8f05a2be added type global_theory -- theory or local_theory;
wenzelm
parents: 20928
diff changeset
   521
  (fn Theory (Context.Theory thy, _) =>
a7fd8f05a2be added type global_theory -- theory or local_theory;
wenzelm
parents: 20928
diff changeset
   522
        let
20985
de13e2a23c8e exit_local_theory: pass interactive flag;
wenzelm
parents: 20963
diff changeset
   523
          val lthy = f thy;
21294
5cd48242ef17 simplified local theory wrappers;
wenzelm
parents: 21277
diff changeset
   524
          val gthy = if begin then Context.Proof lthy else Context.Theory (loc_exit lthy);
5cd48242ef17 simplified local theory wrappers;
wenzelm
parents: 21277
diff changeset
   525
        in Theory (gthy, SOME lthy) end
20963
a7fd8f05a2be added type global_theory -- theory or local_theory;
wenzelm
parents: 20928
diff changeset
   526
    | _ => raise UNDEF));
17076
c7effdf2e2e2 state: body context;
wenzelm
parents: 16815
diff changeset
   527
21294
5cd48242ef17 simplified local theory wrappers;
wenzelm
parents: 21277
diff changeset
   528
val end_local_theory = app_current (fn _ =>
5cd48242ef17 simplified local theory wrappers;
wenzelm
parents: 21277
diff changeset
   529
  (fn Theory (Context.Proof lthy, _) => Theory (Context.Theory (loc_exit lthy), SOME lthy)
21007
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   530
    | _ => raise UNDEF));
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   531
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   532
local
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   533
20963
a7fd8f05a2be added type global_theory -- theory or local_theory;
wenzelm
parents: 20928
diff changeset
   534
fun local_theory_presentation loc f g = app_current (fn int =>
21294
5cd48242ef17 simplified local theory wrappers;
wenzelm
parents: 21277
diff changeset
   535
  (fn Theory (gthy, _) =>
5cd48242ef17 simplified local theory wrappers;
wenzelm
parents: 21277
diff changeset
   536
        let
5cd48242ef17 simplified local theory wrappers;
wenzelm
parents: 21277
diff changeset
   537
          val finish = loc_finish loc gthy;
25960
1f9956e0bd89 removed unused properties;
wenzelm
parents: 25847
diff changeset
   538
          val lthy' = f (loc_begin loc gthy);
21294
5cd48242ef17 simplified local theory wrappers;
wenzelm
parents: 21277
diff changeset
   539
        in Theory (finish lthy', SOME lthy') end
20963
a7fd8f05a2be added type global_theory -- theory or local_theory;
wenzelm
parents: 20928
diff changeset
   540
    | _ => raise UNDEF) #> tap (g int));
15668
53c049a365cf improved exn_message;
wenzelm
parents: 15633
diff changeset
   541
21007
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   542
in
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   543
20963
a7fd8f05a2be added type global_theory -- theory or local_theory;
wenzelm
parents: 20928
diff changeset
   544
fun local_theory loc f = local_theory_presentation loc f (K I);
a7fd8f05a2be added type global_theory -- theory or local_theory;
wenzelm
parents: 20928
diff changeset
   545
fun present_local_theory loc g = local_theory_presentation loc I g;
18955
fa71f2ddd2e8 added local_theory, with optional locale xname;
wenzelm
parents: 18811
diff changeset
   546
21007
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   547
end;
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   548
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   549
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   550
(* proof transitions *)
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   551
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   552
fun end_proof f = map_current (fn int =>
24795
6f5cb7885fd7 print_state_context: local theory context, not proof context;
wenzelm
parents: 24780
diff changeset
   553
  (fn Proof (prf, (finish, _)) =>
21007
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   554
        let val state = ProofHistory.current prf in
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   555
          if can (Proof.assert_bottom true) state then
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   556
            let
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   557
              val ctxt' = f int state;
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   558
              val gthy' = finish ctxt';
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   559
            in Theory (gthy', SOME ctxt') end
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   560
          else raise UNDEF
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   561
        end
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   562
    | SkipProof (h, (gthy, _)) =>
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   563
        if History.current h = 0 then Theory (gthy, NONE) else raise UNDEF
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   564
    | _ => raise UNDEF));
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   565
21294
5cd48242ef17 simplified local theory wrappers;
wenzelm
parents: 21277
diff changeset
   566
local
5cd48242ef17 simplified local theory wrappers;
wenzelm
parents: 21277
diff changeset
   567
5cd48242ef17 simplified local theory wrappers;
wenzelm
parents: 21277
diff changeset
   568
fun begin_proof init finish = app_current (fn int =>
5cd48242ef17 simplified local theory wrappers;
wenzelm
parents: 21277
diff changeset
   569
  (fn Theory (gthy, _) =>
5cd48242ef17 simplified local theory wrappers;
wenzelm
parents: 21277
diff changeset
   570
    let
24453
86cf57ddf8f6 Added local_theory_to_proof'
berghofe
parents: 24295
diff changeset
   571
      val prf = init int gthy;
21294
5cd48242ef17 simplified local theory wrappers;
wenzelm
parents: 21277
diff changeset
   572
      val schematic = Proof.schematic_goal prf;
5cd48242ef17 simplified local theory wrappers;
wenzelm
parents: 21277
diff changeset
   573
    in
5cd48242ef17 simplified local theory wrappers;
wenzelm
parents: 21277
diff changeset
   574
      if ! skip_proofs andalso schematic then
5cd48242ef17 simplified local theory wrappers;
wenzelm
parents: 21277
diff changeset
   575
        warning "Cannot skip proof of schematic goal statement"
5cd48242ef17 simplified local theory wrappers;
wenzelm
parents: 21277
diff changeset
   576
      else ();
5cd48242ef17 simplified local theory wrappers;
wenzelm
parents: 21277
diff changeset
   577
      if ! skip_proofs andalso not schematic then
5cd48242ef17 simplified local theory wrappers;
wenzelm
parents: 21277
diff changeset
   578
        SkipProof
5cd48242ef17 simplified local theory wrappers;
wenzelm
parents: 21277
diff changeset
   579
          (History.init (undo_limit int) 0, (finish gthy (Proof.global_skip_proof int prf), gthy))
5cd48242ef17 simplified local theory wrappers;
wenzelm
parents: 21277
diff changeset
   580
      else Proof (ProofHistory.init (undo_limit int) prf, (finish gthy, gthy))
5cd48242ef17 simplified local theory wrappers;
wenzelm
parents: 21277
diff changeset
   581
    end
5cd48242ef17 simplified local theory wrappers;
wenzelm
parents: 21277
diff changeset
   582
  | _ => raise UNDEF));
5cd48242ef17 simplified local theory wrappers;
wenzelm
parents: 21277
diff changeset
   583
5cd48242ef17 simplified local theory wrappers;
wenzelm
parents: 21277
diff changeset
   584
in
5cd48242ef17 simplified local theory wrappers;
wenzelm
parents: 21277
diff changeset
   585
24780
47bb1e380d83 local_theory transactions: more careful treatment of context position;
wenzelm
parents: 24634
diff changeset
   586
fun local_theory_to_proof' loc f = begin_proof
25960
1f9956e0bd89 removed unused properties;
wenzelm
parents: 25847
diff changeset
   587
  (fn int => fn gthy => f int (loc_begin loc gthy))
24780
47bb1e380d83 local_theory transactions: more careful treatment of context position;
wenzelm
parents: 24634
diff changeset
   588
  (loc_finish loc);
47bb1e380d83 local_theory transactions: more careful treatment of context position;
wenzelm
parents: 24634
diff changeset
   589
24453
86cf57ddf8f6 Added local_theory_to_proof'
berghofe
parents: 24295
diff changeset
   590
fun local_theory_to_proof loc f = local_theory_to_proof' loc (K f);
21294
5cd48242ef17 simplified local theory wrappers;
wenzelm
parents: 21277
diff changeset
   591
5cd48242ef17 simplified local theory wrappers;
wenzelm
parents: 21277
diff changeset
   592
fun theory_to_proof f = begin_proof
24780
47bb1e380d83 local_theory transactions: more careful treatment of context position;
wenzelm
parents: 24634
diff changeset
   593
  (K (fn Context.Theory thy => f thy | _ => raise UNDEF))
47bb1e380d83 local_theory transactions: more careful treatment of context position;
wenzelm
parents: 24634
diff changeset
   594
  (K (Context.Theory o ProofContext.theory_of));
21294
5cd48242ef17 simplified local theory wrappers;
wenzelm
parents: 21277
diff changeset
   595
5cd48242ef17 simplified local theory wrappers;
wenzelm
parents: 21277
diff changeset
   596
end;
5cd48242ef17 simplified local theory wrappers;
wenzelm
parents: 21277
diff changeset
   597
21007
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   598
val forget_proof = map_current (fn _ =>
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   599
  (fn Proof (_, (_, orig_gthy)) => Theory (orig_gthy, NONE)
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   600
    | SkipProof (_, (_, orig_gthy)) => Theory (orig_gthy, NONE)
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   601
    | _ => raise UNDEF));
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   602
21177
e8228486aa03 removed checkpoint interface;
wenzelm
parents: 21007
diff changeset
   603
fun present_proof f = map_current (fn int =>
e8228486aa03 removed checkpoint interface;
wenzelm
parents: 21007
diff changeset
   604
  (fn Proof (prf, x) => Proof (ProofHistory.apply I prf, x)
e8228486aa03 removed checkpoint interface;
wenzelm
parents: 21007
diff changeset
   605
    | SkipProof (h, x) => SkipProof (History.apply I h, x)
e8228486aa03 removed checkpoint interface;
wenzelm
parents: 21007
diff changeset
   606
    | _ => raise UNDEF) #> tap (f int));
e8228486aa03 removed checkpoint interface;
wenzelm
parents: 21007
diff changeset
   607
17904
21c6894b5998 simplified interfaces proof/proof' etc.: perform ProofHistory.apply(s)/current internally;
wenzelm
parents: 17513
diff changeset
   608
fun proofs' f = map_current (fn int =>
21007
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   609
  (fn Proof (prf, x) => Proof (ProofHistory.applys (f int) prf, x)
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   610
    | SkipProof (h, x) => SkipProof (History.apply I h, x)
16815
13d20ed9086c added print_state_hook;
wenzelm
parents: 16729
diff changeset
   611
    | _ => raise UNDEF));
15668
53c049a365cf improved exn_message;
wenzelm
parents: 15633
diff changeset
   612
17904
21c6894b5998 simplified interfaces proof/proof' etc.: perform ProofHistory.apply(s)/current internally;
wenzelm
parents: 17513
diff changeset
   613
fun proof' f = proofs' (Seq.single oo f);
21c6894b5998 simplified interfaces proof/proof' etc.: perform ProofHistory.apply(s)/current internally;
wenzelm
parents: 17513
diff changeset
   614
val proofs = proofs' o K;
6689
wenzelm
parents: 6664
diff changeset
   615
val proof = proof' o K;
16815
13d20ed9086c added print_state_hook;
wenzelm
parents: 16729
diff changeset
   616
13d20ed9086c added print_state_hook;
wenzelm
parents: 16729
diff changeset
   617
fun actual_proof f = map_current (fn _ =>
21007
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   618
  (fn Proof (prf, x) => Proof (f prf, x)
20963
a7fd8f05a2be added type global_theory -- theory or local_theory;
wenzelm
parents: 20928
diff changeset
   619
    | _ => raise UNDEF));
16815
13d20ed9086c added print_state_hook;
wenzelm
parents: 16729
diff changeset
   620
13d20ed9086c added print_state_hook;
wenzelm
parents: 16729
diff changeset
   621
fun skip_proof f = map_current (fn _ =>
21007
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   622
  (fn SkipProof (h, x) => SkipProof (f h, x)
18563
wenzelm
parents: 17904
diff changeset
   623
    | _ => raise UNDEF));
wenzelm
parents: 17904
diff changeset
   624
16815
13d20ed9086c added print_state_hook;
wenzelm
parents: 16729
diff changeset
   625
fun skip_proof_to_theory p = map_current (fn _ =>
21007
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   626
  (fn SkipProof (h, (gthy, _)) =>
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   627
    if p (History.current h) then Theory (gthy, NONE)
17904
21c6894b5998 simplified interfaces proof/proof' etc.: perform ProofHistory.apply(s)/current internally;
wenzelm
parents: 17513
diff changeset
   628
    else raise UNDEF
21c6894b5998 simplified interfaces proof/proof' etc.: perform ProofHistory.apply(s)/current internally;
wenzelm
parents: 17513
diff changeset
   629
  | _ => raise UNDEF));
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   630
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   631
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   632
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   633
(** toplevel transactions **)
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   634
25960
1f9956e0bd89 removed unused properties;
wenzelm
parents: 25847
diff changeset
   635
(* thread position *)
25799
7a204e0467f8 maintain thread transition properties;
wenzelm
parents: 25796
diff changeset
   636
25960
1f9956e0bd89 removed unused properties;
wenzelm
parents: 25847
diff changeset
   637
fun setmp_thread_position (Transition {pos, ...}) f x =
25819
e6feb08b7f4b replaced thread_properties by simplified version in position.ML;
wenzelm
parents: 25809
diff changeset
   638
  Position.setmp_thread_data pos f x;
25799
7a204e0467f8 maintain thread transition properties;
wenzelm
parents: 25796
diff changeset
   639
26602
5534b6a6b810 made purely value-oriented, moved global state to structure Isar (cf. isar.ML);
wenzelm
parents: 26491
diff changeset
   640
fun error_msg tr exn_info =
5534b6a6b810 made purely value-oriented, moved global state to structure Isar (cf. isar.ML);
wenzelm
parents: 26491
diff changeset
   641
  setmp_thread_position tr (fn () => Output.error_msg (exn_message (EXCURSION_FAIL exn_info))) ();
5534b6a6b810 made purely value-oriented, moved global state to structure Isar (cf. isar.ML);
wenzelm
parents: 26491
diff changeset
   642
25799
7a204e0467f8 maintain thread transition properties;
wenzelm
parents: 25796
diff changeset
   643
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   644
(* apply transitions *)
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   645
6664
f679ddd1ddd8 cleaned comments;
wenzelm
parents: 6244
diff changeset
   646
local
f679ddd1ddd8 cleaned comments;
wenzelm
parents: 6244
diff changeset
   647
25799
7a204e0467f8 maintain thread transition properties;
wenzelm
parents: 25796
diff changeset
   648
fun app int (tr as Transition {trans, pos, int_only, print, no_timing, ...}) =
25819
e6feb08b7f4b replaced thread_properties by simplified version in position.ML;
wenzelm
parents: 25809
diff changeset
   649
  setmp_thread_position tr (fn state =>
25799
7a204e0467f8 maintain thread transition properties;
wenzelm
parents: 25796
diff changeset
   650
    let
26621
78b3ad7af5d5 eliminated unused name_of, source, source_of, print', print3, three_buffersN;
wenzelm
parents: 26602
diff changeset
   651
      val _ = if not int andalso int_only then warning (command_msg "Interactive-only " tr) else ();
16682
wenzelm
parents: 16658
diff changeset
   652
25799
7a204e0467f8 maintain thread transition properties;
wenzelm
parents: 25796
diff changeset
   653
      fun do_timing f x = (warning (command_msg "" tr); timeap f x);
7a204e0467f8 maintain thread transition properties;
wenzelm
parents: 25796
diff changeset
   654
      fun do_profiling f x = profile (! profiling) f x;
7a204e0467f8 maintain thread transition properties;
wenzelm
parents: 25796
diff changeset
   655
26256
3e7939e978c6 added exception CONTEXT, indicating context of another exception;
wenzelm
parents: 26081
diff changeset
   656
      val (result, status) =
25799
7a204e0467f8 maintain thread transition properties;
wenzelm
parents: 25796
diff changeset
   657
         state |> (apply_trans int pos trans
7a204e0467f8 maintain thread transition properties;
wenzelm
parents: 25796
diff changeset
   658
          |> (if ! profiling > 0 andalso not no_timing then do_profiling else I)
7a204e0467f8 maintain thread transition properties;
wenzelm
parents: 25796
diff changeset
   659
          |> (if ! profiling > 0 orelse ! timing andalso not no_timing then do_timing else I));
26256
3e7939e978c6 added exception CONTEXT, indicating context of another exception;
wenzelm
parents: 26081
diff changeset
   660
26621
78b3ad7af5d5 eliminated unused name_of, source, source_of, print', print3, three_buffersN;
wenzelm
parents: 26602
diff changeset
   661
      val _ = if int andalso not (! quiet) andalso print then print_state false result else ();
26256
3e7939e978c6 added exception CONTEXT, indicating context of another exception;
wenzelm
parents: 26081
diff changeset
   662
    in (result, Option.map (fn UNDEF => type_error tr state | exn => exn) status) end);
6664
f679ddd1ddd8 cleaned comments;
wenzelm
parents: 6244
diff changeset
   663
f679ddd1ddd8 cleaned comments;
wenzelm
parents: 6244
diff changeset
   664
in
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   665
26602
5534b6a6b810 made purely value-oriented, moved global state to structure Isar (cf. isar.ML);
wenzelm
parents: 26491
diff changeset
   666
fun transition int tr st =
26256
3e7939e978c6 added exception CONTEXT, indicating context of another exception;
wenzelm
parents: 26081
diff changeset
   667
  let val ctxt = try context_of st in
3e7939e978c6 added exception CONTEXT, indicating context of another exception;
wenzelm
parents: 26081
diff changeset
   668
    (case app int tr st of
3e7939e978c6 added exception CONTEXT, indicating context of another exception;
wenzelm
parents: 26081
diff changeset
   669
      (_, SOME TERMINATE) => NONE
3e7939e978c6 added exception CONTEXT, indicating context of another exception;
wenzelm
parents: 26081
diff changeset
   670
    | (_, SOME RESTART) => SOME (toplevel, NONE)
3e7939e978c6 added exception CONTEXT, indicating context of another exception;
wenzelm
parents: 26081
diff changeset
   671
    | (state', SOME (EXCURSION_FAIL exn_info)) => SOME (state', SOME exn_info)
3e7939e978c6 added exception CONTEXT, indicating context of another exception;
wenzelm
parents: 26081
diff changeset
   672
    | (state', SOME exn) => SOME (state', SOME (exn_context ctxt exn, at_command tr))
3e7939e978c6 added exception CONTEXT, indicating context of another exception;
wenzelm
parents: 26081
diff changeset
   673
    | (state', NONE) => SOME (state', NONE))
3e7939e978c6 added exception CONTEXT, indicating context of another exception;
wenzelm
parents: 26081
diff changeset
   674
  end;
6664
f679ddd1ddd8 cleaned comments;
wenzelm
parents: 6244
diff changeset
   675
f679ddd1ddd8 cleaned comments;
wenzelm
parents: 6244
diff changeset
   676
end;
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   677
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   678
17076
c7effdf2e2e2 state: body context;
wenzelm
parents: 16815
diff changeset
   679
(* excursion: toplevel -- apply transformers/presentation -- toplevel *)
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   680
6664
f679ddd1ddd8 cleaned comments;
wenzelm
parents: 6244
diff changeset
   681
local
f679ddd1ddd8 cleaned comments;
wenzelm
parents: 6244
diff changeset
   682
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   683
fun excur [] x = x
17076
c7effdf2e2e2 state: body context;
wenzelm
parents: 16815
diff changeset
   684
  | excur ((tr, pr) :: trs) (st, res) =
26602
5534b6a6b810 made purely value-oriented, moved global state to structure Isar (cf. isar.ML);
wenzelm
parents: 26491
diff changeset
   685
      (case transition (! interact) tr st of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15519
diff changeset
   686
        SOME (st', NONE) =>
26982
de7738deadfb present_excursion: setmp_thread_position during presentation;
wenzelm
parents: 26624
diff changeset
   687
          excur trs (st', setmp_thread_position tr (fn () => pr st st' res) () handle exn =>
10324
498999fd7c37 tuned msg;
wenzelm
parents: 9512
diff changeset
   688
            raise EXCURSION_FAIL (exn, "Presentation failed\n" ^ at_command tr))
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15519
diff changeset
   689
      | SOME (st', SOME exn_info) => raise EXCURSION_FAIL exn_info
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15519
diff changeset
   690
      | NONE => raise EXCURSION_FAIL (TERMINATE, at_command tr));
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   691
17076
c7effdf2e2e2 state: body context;
wenzelm
parents: 16815
diff changeset
   692
fun no_pr _ _ _ = ();
c7effdf2e2e2 state: body context;
wenzelm
parents: 16815
diff changeset
   693
6664
f679ddd1ddd8 cleaned comments;
wenzelm
parents: 6244
diff changeset
   694
in
f679ddd1ddd8 cleaned comments;
wenzelm
parents: 6244
diff changeset
   695
17076
c7effdf2e2e2 state: body context;
wenzelm
parents: 16815
diff changeset
   696
fun present_excursion trs res =
21958
9dfd1ca4c0a0 refined notion of empty toplevel, admits undo of 'end';
wenzelm
parents: 21861
diff changeset
   697
  (case excur trs (toplevel, res) of
22056
858016d00449 fixed exit: proper type check of state;
wenzelm
parents: 22014
diff changeset
   698
    (state as Toplevel _, res') => (safe_exit state; res')
18685
725660906cb3 sane ERROR vs. TOPLEVEL_ERROR handling;
wenzelm
parents: 18664
diff changeset
   699
  | _ => error "Unfinished development at end of input")
9134
b38e94631f19 excursion_result;
wenzelm
parents: 9010
diff changeset
   700
  handle exn => error (exn_message exn);
b38e94631f19 excursion_result;
wenzelm
parents: 9010
diff changeset
   701
17076
c7effdf2e2e2 state: body context;
wenzelm
parents: 16815
diff changeset
   702
fun excursion trs = present_excursion (map (rpair no_pr) trs) ();
7062
e992884b256d Toplevel.excursion_error;
wenzelm
parents: 7022
diff changeset
   703
6664
f679ddd1ddd8 cleaned comments;
wenzelm
parents: 6244
diff changeset
   704
end;
f679ddd1ddd8 cleaned comments;
wenzelm
parents: 6244
diff changeset
   705
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   706
end;