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