src/Pure/Isar/toplevel.ML
author wenzelm
Mon, 04 Mar 2013 15:03:46 +0100
changeset 51332 8707df0b0255
parent 51324 c17f5de0a915
child 51423 e5f9a6d9ca82
permissions -rw-r--r--
refined parallel_proofs = 2: fork whole Isar sub-proofs, not just terminal ones; refined parallel_proofs = 3: fork terminal proofs, as poor man's parallelization in interactive mode;
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
    Author:     Markus Wenzel, TU Muenchen
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
     3
26602
5534b6a6b810 made purely value-oriented, moved global state to structure Isar (cf. isar.ML);
wenzelm
parents: 26491
diff changeset
     4
Isabelle/Isar toplevel transactions.
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
     5
*)
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
     6
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
     7
signature TOPLEVEL =
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
     8
sig
19063
049c010c8fb7 added cases_node;
wenzelm
parents: 18955
diff changeset
     9
  exception UNDEF
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
    10
  type state
26602
5534b6a6b810 made purely value-oriented, moved global state to structure Isar (cf. isar.ML);
wenzelm
parents: 26491
diff changeset
    11
  val toplevel: state
7732
d62523296573 added is_toplevel;
wenzelm
parents: 7612
diff changeset
    12
  val is_toplevel: state -> bool
18589
c27c9fa9e83d hide type datatype node;
wenzelm
parents: 18564
diff changeset
    13
  val is_theory: state -> bool
c27c9fa9e83d hide type datatype node;
wenzelm
parents: 18564
diff changeset
    14
  val is_proof: state -> bool
17076
c7effdf2e2e2 state: body context;
wenzelm
parents: 16815
diff changeset
    15
  val level: state -> int
30398
d7ac4b7aa590 simplified presentation_context_of;
wenzelm
parents: 30366
diff changeset
    16
  val presentation_context_of: state -> Proof.context
30801
9bdf001bea58 added Toplevel.previous_node_of;
wenzelm
parents: 30618
diff changeset
    17
  val previous_context_of: state -> Proof.context option
21506
b2a673894ce5 prefer Proof.context over Context.generic;
wenzelm
parents: 21310
diff changeset
    18
  val context_of: state -> Proof.context
22089
d9b614dc883d added generic_theory_of;
wenzelm
parents: 22056
diff changeset
    19
  val generic_theory_of: state -> generic_theory
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
    20
  val theory_of: state -> theory
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
    21
  val proof_of: state -> Proof.state
18589
c27c9fa9e83d hide type datatype node;
wenzelm
parents: 18564
diff changeset
    22
  val proof_position_of: state -> int
37953
ddc3b72f9a42 simplified handling of theory begin/end wrt. toplevel and theory loader;
wenzelm
parents: 37951
diff changeset
    23
  val end_theory: Position.T -> state -> theory
16815
13d20ed9086c added print_state_hook;
wenzelm
parents: 16729
diff changeset
    24
  val print_state_context: state -> unit
13d20ed9086c added print_state_hook;
wenzelm
parents: 16729
diff changeset
    25
  val print_state: bool -> state -> unit
37858
e1ef6b441fe7 toplevel pp for Proof.state and Toplevel.state;
wenzelm
parents: 37856
diff changeset
    26
  val pretty_abstract: state -> Pretty.T
32738
15bb09ca0378 explicit indication of Unsynchronized.ref;
wenzelm
parents: 32062
diff changeset
    27
  val quiet: bool Unsynchronized.ref
15bb09ca0378 explicit indication of Unsynchronized.ref;
wenzelm
parents: 32062
diff changeset
    28
  val debug: bool Unsynchronized.ref
15bb09ca0378 explicit indication of Unsynchronized.ref;
wenzelm
parents: 32062
diff changeset
    29
  val interact: bool Unsynchronized.ref
15bb09ca0378 explicit indication of Unsynchronized.ref;
wenzelm
parents: 32062
diff changeset
    30
  val timing: bool Unsynchronized.ref
15bb09ca0378 explicit indication of Unsynchronized.ref;
wenzelm
parents: 32062
diff changeset
    31
  val profiling: int Unsynchronized.ref
15bb09ca0378 explicit indication of Unsynchronized.ref;
wenzelm
parents: 32062
diff changeset
    32
  val skip_proofs: bool Unsynchronized.ref
20128
8f0e07d7cf92 keep/transaction: unified execution model (with debugging etc.);
wenzelm
parents: 19996
diff changeset
    33
  val program: (unit -> 'a) -> 'a
33604
d4220df6fde2 Toplevel.thread provides Isar-style exception output;
wenzelm
parents: 33553
diff changeset
    34
  val thread: bool -> (unit -> unit) -> Thread.thread
16682
wenzelm
parents: 16658
diff changeset
    35
  type transition
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
    36
  val empty: transition
38888
8248cda328de moved Toplevel.run_command to Pure/PIDE/document.ML;
wenzelm
parents: 38876
diff changeset
    37
  val print_of: transition -> bool
27427
f6751d265cf6 added name_of;
wenzelm
parents: 26982
diff changeset
    38
  val name_of: transition -> string
28105
44054657ea56 added pos_of;
wenzelm
parents: 28103
diff changeset
    39
  val pos_of: transition -> Position.T
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
    40
  val name: string -> transition -> transition
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
    41
  val position: Position.T -> transition -> transition
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
    42
  val interactive: bool -> transition -> transition
38888
8248cda328de moved Toplevel.run_command to Pure/PIDE/document.ML;
wenzelm
parents: 38876
diff changeset
    43
  val set_print: bool -> transition -> transition
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
    44
  val print: transition -> transition
9010
ce78dc5e1a73 Toplevel.no_timing;
wenzelm
parents: 8999
diff changeset
    45
  val no_timing: transition -> transition
44187
88d770052bac simplified Toplevel.init_theory: discontinued special name argument;
wenzelm
parents: 44186
diff changeset
    46
  val init_theory: (unit -> theory) -> transition -> transition
88d770052bac simplified Toplevel.init_theory: discontinued special name argument;
wenzelm
parents: 44186
diff changeset
    47
  val is_init: transition -> bool
44186
806f0ec1a43d simplified Toplevel.init_theory: discontinued special master argument;
wenzelm
parents: 44185
diff changeset
    48
  val modify_init: (unit -> theory) -> transition -> transition
6689
wenzelm
parents: 6664
diff changeset
    49
  val exit: transition -> transition
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
    50
  val keep: (state -> unit) -> transition -> transition
7612
ba11b5db431a added keep', theory';
wenzelm
parents: 7602
diff changeset
    51
  val keep': (bool -> state -> unit) -> transition -> transition
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
    52
  val imperative: (unit -> unit) -> transition -> transition
27840
e9483ef084cc added ignored, malformed transitions;
wenzelm
parents: 27606
diff changeset
    53
  val ignored: Position.T -> transition
51268
fcc4b89a600d simplified Outer_Syntax.read_span: internalized Toplevel.is_ignored;
wenzelm
parents: 51241
diff changeset
    54
  val is_ignored: transition -> bool
27840
e9483ef084cc added ignored, malformed transitions;
wenzelm
parents: 27606
diff changeset
    55
  val malformed: Position.T -> string -> transition
48772
e46cd0d26481 vacuous execution after first malformed command;
wenzelm
parents: 48633
diff changeset
    56
  val is_malformed: transition -> bool
26491
c93ff30790fe added generic_theory transaction;
wenzelm
parents: 26293
diff changeset
    57
  val generic_theory: (generic_theory -> generic_theory) -> transition -> transition
7612
ba11b5db431a added keep', theory';
wenzelm
parents: 7602
diff changeset
    58
  val theory': (bool -> theory -> theory) -> transition -> transition
49012
8686c36fa27d refined treatment of forked proofs at transaction boundaries, including proof commands (see also 7ee000ce5390);
wenzelm
parents: 49011
diff changeset
    59
  val theory: (theory -> theory) -> transition -> transition
20985
de13e2a23c8e exit_local_theory: pass interactive flag;
wenzelm
parents: 20963
diff changeset
    60
  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
    61
  val end_local_theory: transition -> transition
47069
451fc10a81f3 more explicit Toplevel.open_target/close_target;
wenzelm
parents: 46959
diff changeset
    62
  val open_target: (generic_theory -> local_theory) -> transition -> transition
451fc10a81f3 more explicit Toplevel.open_target/close_target;
wenzelm
parents: 46959
diff changeset
    63
  val close_target: transition -> transition
45488
6d71d9e52369 pass positions for named targets, for formal links in the document model;
wenzelm
parents: 44304
diff changeset
    64
  val local_theory': (xstring * Position.T) option -> (bool -> local_theory -> local_theory) ->
6d71d9e52369 pass positions for named targets, for formal links in the document model;
wenzelm
parents: 44304
diff changeset
    65
    transition -> transition
6d71d9e52369 pass positions for named targets, for formal links in the document model;
wenzelm
parents: 44304
diff changeset
    66
  val local_theory: (xstring * Position.T) option -> (local_theory -> local_theory) ->
29380
a9ee3475abf4 added local_theory';
wenzelm
parents: 29343
diff changeset
    67
    transition -> transition
45488
6d71d9e52369 pass positions for named targets, for formal links in the document model;
wenzelm
parents: 44304
diff changeset
    68
  val present_local_theory: (xstring * Position.T) option -> (state -> unit) ->
24453
86cf57ddf8f6 Added local_theory_to_proof'
berghofe
parents: 24295
diff changeset
    69
    transition -> transition
45488
6d71d9e52369 pass positions for named targets, for formal links in the document model;
wenzelm
parents: 44304
diff changeset
    70
  val local_theory_to_proof': (xstring * Position.T) option ->
6d71d9e52369 pass positions for named targets, for formal links in the document model;
wenzelm
parents: 44304
diff changeset
    71
    (bool -> local_theory -> Proof.state) -> transition -> transition
6d71d9e52369 pass positions for named targets, for formal links in the document model;
wenzelm
parents: 44304
diff changeset
    72
  val local_theory_to_proof: (xstring * Position.T) option ->
6d71d9e52369 pass positions for named targets, for formal links in the document model;
wenzelm
parents: 44304
diff changeset
    73
    (local_theory -> Proof.state) -> transition -> transition
17363
046c829c075f added three_buffersN, print3;
wenzelm
parents: 17321
diff changeset
    74
  val theory_to_proof: (theory -> Proof.state) -> transition -> transition
21007
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
    75
  val end_proof: (bool -> Proof.state -> Proof.context) -> transition -> transition
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
    76
  val forget_proof: transition -> transition
30366
e3d788b9dffb simplified presentation: built into transaction, pass state directly;
wenzelm
parents: 29516
diff changeset
    77
  val present_proof: (state -> unit) -> transition -> transition
49863
b5fb6e7f8d81 more informative errors for 'proof' and 'apply' steps;
wenzelm
parents: 49062
diff changeset
    78
  val proofs': (bool -> Proof.state -> Proof.state Seq.result Seq.seq) -> transition -> transition
17904
21c6894b5998 simplified interfaces proof/proof' etc.: perform ProofHistory.apply(s)/current internally;
wenzelm
parents: 17513
diff changeset
    79
  val proof': (bool -> Proof.state -> Proof.state) -> transition -> transition
49863
b5fb6e7f8d81 more informative errors for 'proof' and 'apply' steps;
wenzelm
parents: 49062
diff changeset
    80
  val proofs: (Proof.state -> Proof.state Seq.result Seq.seq) -> transition -> transition
21177
e8228486aa03 removed checkpoint interface;
wenzelm
parents: 21007
diff changeset
    81
  val proof: (Proof.state -> Proof.state) -> transition -> transition
33390
5b499f36dd25 modernized structure Proof_Node;
wenzelm
parents: 33223
diff changeset
    82
  val actual_proof: (Proof_Node.T -> Proof_Node.T) -> transition -> transition
27564
fc6d34e49e17 replaced obsolete ProofHistory by ProofNode (backtracking only);
wenzelm
parents: 27500
diff changeset
    83
  val skip_proof: (int -> int) -> transition -> transition
17904
21c6894b5998 simplified interfaces proof/proof' etc.: perform ProofHistory.apply(s)/current internally;
wenzelm
parents: 17513
diff changeset
    84
  val skip_proof_to_theory: (int -> bool) -> transition -> transition
27427
f6751d265cf6 added name_of;
wenzelm
parents: 26982
diff changeset
    85
  val get_id: transition -> string option
f6751d265cf6 added name_of;
wenzelm
parents: 26982
diff changeset
    86
  val put_id: string -> transition -> transition
9512
c30f6d0f81d2 added unknown_theory/proof/context;
wenzelm
parents: 9453
diff changeset
    87
  val unknown_theory: transition -> transition
c30f6d0f81d2 added unknown_theory/proof/context;
wenzelm
parents: 9453
diff changeset
    88
  val unknown_proof: transition -> transition
c30f6d0f81d2 added unknown_theory/proof/context;
wenzelm
parents: 9453
diff changeset
    89
  val unknown_context: transition -> transition
28425
25d6099179a6 export setmp_thread_position;
wenzelm
parents: 28394
diff changeset
    90
  val setmp_thread_position: transition -> ('a -> 'b) -> 'a -> 'b
27606
82399f3a8ca8 support for command status;
wenzelm
parents: 27603
diff changeset
    91
  val status: transition -> Markup.T -> unit
28103
b79e61861f0f simplified Toplevel.add_hook: cover successful transactions only;
wenzelm
parents: 28095
diff changeset
    92
  val add_hook: (transition -> state -> state -> unit) -> unit
51228
dff3471dd8bc more tight representation of command timing;
wenzelm
parents: 51226
diff changeset
    93
  val approximative_id: transition -> {file: string, offset: int, name: string} option
dff3471dd8bc more tight representation of command timing;
wenzelm
parents: 51226
diff changeset
    94
  val get_timing: transition -> Time.time
dff3471dd8bc more tight representation of command timing;
wenzelm
parents: 51226
diff changeset
    95
  val put_timing: Time.time -> transition -> transition
26602
5534b6a6b810 made purely value-oriented, moved global state to structure Isar (cf. isar.ML);
wenzelm
parents: 26491
diff changeset
    96
  val transition: bool -> transition -> state -> (state * (exn * string) option) option
51323
wenzelm
parents: 51322
diff changeset
    97
  val command_errors: bool -> transition -> state -> Runtime.error list * state option
51284
59a03019f3bf fork diagnostic commands (theory loader and PIDE interaction);
wenzelm
parents: 51282
diff changeset
    98
  val command_exception: bool -> transition -> state -> state
51332
8707df0b0255 refined parallel_proofs = 2: fork whole Isar sub-proofs, not just terminal ones;
wenzelm
parents: 51324
diff changeset
    99
  type result
8707df0b0255 refined parallel_proofs = 2: fork whole Isar sub-proofs, not just terminal ones;
wenzelm
parents: 51324
diff changeset
   100
  val join_results: result -> (transition * state) list
8707df0b0255 refined parallel_proofs = 2: fork whole Isar sub-proofs, not just terminal ones;
wenzelm
parents: 51324
diff changeset
   101
  val element_result: transition Thy_Syntax.element -> state -> result * state
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   102
end;
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   103
6965
a766de752996 fixed interrupts (eliminated races);
wenzelm
parents: 6689
diff changeset
   104
structure Toplevel: TOPLEVEL =
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   105
struct
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   106
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   107
(** toplevel state **)
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   108
31476
c5d2899b6de9 moved Isar toplevel runtime support to runtime.ML, which is loaded early (before ml_compiler.ML);
wenzelm
parents: 31431
diff changeset
   109
exception UNDEF = Runtime.UNDEF;
19063
049c010c8fb7 added cases_node;
wenzelm
parents: 18955
diff changeset
   110
049c010c8fb7 added cases_node;
wenzelm
parents: 18955
diff changeset
   111
21294
5cd48242ef17 simplified local theory wrappers;
wenzelm
parents: 21277
diff changeset
   112
(* local theory wrappers *)
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   113
38350
480b2de9927c renamed Theory_Target to the more appropriate Named_Target
haftmann
parents: 38236
diff changeset
   114
val loc_init = Named_Target.context_cmd;
47069
451fc10a81f3 more explicit Toplevel.open_target/close_target;
wenzelm
parents: 46959
diff changeset
   115
val loc_exit = Local_Theory.assert_bottom true #> Local_Theory.exit_global;
21294
5cd48242ef17 simplified local theory wrappers;
wenzelm
parents: 21277
diff changeset
   116
47274
feef9b0b6031 misc tuning and simplification;
wenzelm
parents: 47069
diff changeset
   117
fun loc_begin loc (Context.Theory thy) =
feef9b0b6031 misc tuning and simplification;
wenzelm
parents: 47069
diff changeset
   118
      (Context.Theory o loc_exit, loc_init (the_default ("-", Position.none) loc) thy)
feef9b0b6031 misc tuning and simplification;
wenzelm
parents: 47069
diff changeset
   119
  | loc_begin NONE (Context.Proof lthy) =
feef9b0b6031 misc tuning and simplification;
wenzelm
parents: 47069
diff changeset
   120
      (Context.Proof o Local_Theory.restore, lthy)
feef9b0b6031 misc tuning and simplification;
wenzelm
parents: 47069
diff changeset
   121
  | loc_begin (SOME loc) (Context.Proof lthy) =
feef9b0b6031 misc tuning and simplification;
wenzelm
parents: 47069
diff changeset
   122
      (Context.Proof o Named_Target.reinit lthy, loc_init loc (loc_exit 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 =
27576
7afff36043e6 eliminated internal command history -- superceeded by global Isar state (cf. isar.ML);
wenzelm
parents: 27564
diff changeset
   128
  Theory of generic_theory * Proof.context option
7afff36043e6 eliminated internal command history -- superceeded by global Isar state (cf. isar.ML);
wenzelm
parents: 27564
diff changeset
   129
    (*theory with presentation context*) |
33390
5b499f36dd25 modernized structure Proof_Node;
wenzelm
parents: 33223
diff changeset
   130
  Proof of Proof_Node.T * ((Proof.context -> generic_theory) * generic_theory)
27576
7afff36043e6 eliminated internal command history -- superceeded by global Isar state (cf. isar.ML);
wenzelm
parents: 27564
diff changeset
   131
    (*proof node, finish, original theory*) |
27564
fc6d34e49e17 replaced obsolete ProofHistory by ProofNode (backtracking only);
wenzelm
parents: 27500
diff changeset
   132
  SkipProof of int * (generic_theory * generic_theory);
fc6d34e49e17 replaced obsolete ProofHistory by ProofNode (backtracking only);
wenzelm
parents: 27500
diff changeset
   133
    (*proof depth, resulting theory, original theory*)
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   134
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
33390
5b499f36dd25 modernized structure Proof_Node;
wenzelm
parents: 33223
diff changeset
   139
  | cases_node _ g (Proof (prf, _)) = g (Proof_Node.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
29066
f50c24e5b9fe export context_node;
wenzelm
parents: 28999
diff changeset
   142
val context_node = cases_node Context.proof_of Proof.context_of;
f50c24e5b9fe export context_node;
wenzelm
parents: 28999
diff changeset
   143
21958
9dfd1ca4c0a0 refined notion of empty toplevel, admits undo of 'end';
wenzelm
parents: 21861
diff changeset
   144
9dfd1ca4c0a0 refined notion of empty toplevel, admits undo of 'end';
wenzelm
parents: 21861
diff changeset
   145
(* datatype state *)
9dfd1ca4c0a0 refined notion of empty toplevel, admits undo of 'end';
wenzelm
parents: 21861
diff changeset
   146
37953
ddc3b72f9a42 simplified handling of theory begin/end wrt. toplevel and theory loader;
wenzelm
parents: 37951
diff changeset
   147
datatype state = State of node option * node option;  (*current, previous*)
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   148
27576
7afff36043e6 eliminated internal command history -- superceeded by global Isar state (cf. isar.ML);
wenzelm
parents: 27564
diff changeset
   149
val toplevel = State (NONE, NONE);
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   150
27576
7afff36043e6 eliminated internal command history -- superceeded by global Isar state (cf. isar.ML);
wenzelm
parents: 27564
diff changeset
   151
fun is_toplevel (State (NONE, _)) = true
7732
d62523296573 added is_toplevel;
wenzelm
parents: 7612
diff changeset
   152
  | is_toplevel _ = false;
d62523296573 added is_toplevel;
wenzelm
parents: 7612
diff changeset
   153
27576
7afff36043e6 eliminated internal command history -- superceeded by global Isar state (cf. isar.ML);
wenzelm
parents: 27564
diff changeset
   154
fun level (State (NONE, _)) = 0
37953
ddc3b72f9a42 simplified handling of theory begin/end wrt. toplevel and theory loader;
wenzelm
parents: 37951
diff changeset
   155
  | level (State (SOME (Theory _), _)) = 0
ddc3b72f9a42 simplified handling of theory begin/end wrt. toplevel and theory loader;
wenzelm
parents: 37951
diff changeset
   156
  | level (State (SOME (Proof (prf, _)), _)) = Proof.level (Proof_Node.current prf)
ddc3b72f9a42 simplified handling of theory begin/end wrt. toplevel and theory loader;
wenzelm
parents: 37951
diff changeset
   157
  | level (State (SOME (SkipProof (d, _)), _)) = d + 1;   (*different notion of proof depth!*)
17076
c7effdf2e2e2 state: body context;
wenzelm
parents: 16815
diff changeset
   158
27576
7afff36043e6 eliminated internal command history -- superceeded by global Isar state (cf. isar.ML);
wenzelm
parents: 27564
diff changeset
   159
fun str_of_state (State (NONE, _)) = "at top level"
37953
ddc3b72f9a42 simplified handling of theory begin/end wrt. toplevel and theory loader;
wenzelm
parents: 37951
diff changeset
   160
  | str_of_state (State (SOME (Theory (Context.Theory _, _)), _)) = "in theory mode"
ddc3b72f9a42 simplified handling of theory begin/end wrt. toplevel and theory loader;
wenzelm
parents: 37951
diff changeset
   161
  | str_of_state (State (SOME (Theory (Context.Proof _, _)), _)) = "in local theory mode"
ddc3b72f9a42 simplified handling of theory begin/end wrt. toplevel and theory loader;
wenzelm
parents: 37951
diff changeset
   162
  | str_of_state (State (SOME (Proof _), _)) = "in proof mode"
ddc3b72f9a42 simplified handling of theory begin/end wrt. toplevel and theory loader;
wenzelm
parents: 37951
diff changeset
   163
  | str_of_state (State (SOME (SkipProof _), _)) = "in skipped proof mode";
5946
a4600d21b59b print_state hook, obeys Goals.current_goals_markers by default;
wenzelm
parents: 5939
diff changeset
   164
a4600d21b59b print_state hook, obeys Goals.current_goals_markers by default;
wenzelm
parents: 5939
diff changeset
   165
27576
7afff36043e6 eliminated internal command history -- superceeded by global Isar state (cf. isar.ML);
wenzelm
parents: 27564
diff changeset
   166
(* current node *)
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   167
27576
7afff36043e6 eliminated internal command history -- superceeded by global Isar state (cf. isar.ML);
wenzelm
parents: 27564
diff changeset
   168
fun node_of (State (NONE, _)) = raise UNDEF
37953
ddc3b72f9a42 simplified handling of theory begin/end wrt. toplevel and theory loader;
wenzelm
parents: 37951
diff changeset
   169
  | node_of (State (SOME node, _)) = node;
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   170
18589
c27c9fa9e83d hide type datatype node;
wenzelm
parents: 18564
diff changeset
   171
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
   172
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
   173
19063
049c010c8fb7 added cases_node;
wenzelm
parents: 18955
diff changeset
   174
fun node_case f g state = cases_node f g (node_of state);
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   175
30398
d7ac4b7aa590 simplified presentation_context_of;
wenzelm
parents: 30366
diff changeset
   176
fun presentation_context_of state =
d7ac4b7aa590 simplified presentation_context_of;
wenzelm
parents: 30366
diff changeset
   177
  (case try node_of state of
d7ac4b7aa590 simplified presentation_context_of;
wenzelm
parents: 30366
diff changeset
   178
    SOME (Theory (_, SOME ctxt)) => ctxt
d7ac4b7aa590 simplified presentation_context_of;
wenzelm
parents: 30366
diff changeset
   179
  | SOME node => context_node node
d7ac4b7aa590 simplified presentation_context_of;
wenzelm
parents: 30366
diff changeset
   180
  | NONE => raise UNDEF);
30366
e3d788b9dffb simplified presentation: built into transaction, pass state directly;
wenzelm
parents: 29516
diff changeset
   181
30801
9bdf001bea58 added Toplevel.previous_node_of;
wenzelm
parents: 30618
diff changeset
   182
fun previous_context_of (State (_, NONE)) = NONE
37953
ddc3b72f9a42 simplified handling of theory begin/end wrt. toplevel and theory loader;
wenzelm
parents: 37951
diff changeset
   183
  | previous_context_of (State (_, SOME prev)) = SOME (context_node prev);
30801
9bdf001bea58 added Toplevel.previous_node_of;
wenzelm
parents: 30618
diff changeset
   184
21506
b2a673894ce5 prefer Proof.context over Context.generic;
wenzelm
parents: 21310
diff changeset
   185
val context_of = node_case Context.proof_of Proof.context_of;
22089
d9b614dc883d added generic_theory_of;
wenzelm
parents: 22056
diff changeset
   186
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
   187
val theory_of = node_case Context.theory_of Proof.theory_of;
18589
c27c9fa9e83d hide type datatype node;
wenzelm
parents: 18564
diff changeset
   188
val proof_of = node_case (fn _ => raise UNDEF) I;
17208
49bc1bdc7b6e added no_body_context;
wenzelm
parents: 17115
diff changeset
   189
18589
c27c9fa9e83d hide type datatype node;
wenzelm
parents: 18564
diff changeset
   190
fun proof_position_of state =
c27c9fa9e83d hide type datatype node;
wenzelm
parents: 18564
diff changeset
   191
  (case node_of state of
33390
5b499f36dd25 modernized structure Proof_Node;
wenzelm
parents: 33223
diff changeset
   192
    Proof (prf, _) => Proof_Node.position prf
18589
c27c9fa9e83d hide type datatype node;
wenzelm
parents: 18564
diff changeset
   193
  | _ => raise UNDEF);
6664
f679ddd1ddd8 cleaned comments;
wenzelm
parents: 6244
diff changeset
   194
43667
6d73cceb1503 explicit exit_transaction with Theory.end_theory (which could include sanity checks as in HOL-SPARK for example);
wenzelm
parents: 43665
diff changeset
   195
fun end_theory _ (State (NONE, SOME (Theory (Context.Theory thy, _)))) = thy
48992
0518bf89c777 renamed Position.str_of to Position.here;
wenzelm
parents: 48772
diff changeset
   196
  | end_theory pos (State (NONE, _)) = error ("Bad theory" ^ Position.here pos)
0518bf89c777 renamed Position.str_of to Position.here;
wenzelm
parents: 48772
diff changeset
   197
  | end_theory pos (State (SOME _, _)) = error ("Unfinished theory" ^ Position.here pos);
37953
ddc3b72f9a42 simplified handling of theory begin/end wrt. toplevel and theory loader;
wenzelm
parents: 37951
diff changeset
   198
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   199
16815
13d20ed9086c added print_state_hook;
wenzelm
parents: 16729
diff changeset
   200
(* print state *)
13d20ed9086c added print_state_hook;
wenzelm
parents: 16729
diff changeset
   201
38388
94d5624dd1f7 Named_Target.theory_init
haftmann
parents: 38384
diff changeset
   202
val pretty_context = Local_Theory.pretty o Context.cases (Named_Target.theory_init) I;
16815
13d20ed9086c added print_state_hook;
wenzelm
parents: 16729
diff changeset
   203
23640
baec2e674461 toplevel prompt/print_state: proper markup, removed hooks;
wenzelm
parents: 23619
diff changeset
   204
fun print_state_context state =
24795
6f5cb7885fd7 print_state_context: local theory context, not proof context;
wenzelm
parents: 24780
diff changeset
   205
  (case try node_of state of
21506
b2a673894ce5 prefer Proof.context over Context.generic;
wenzelm
parents: 21310
diff changeset
   206
    NONE => []
24795
6f5cb7885fd7 print_state_context: local theory context, not proof context;
wenzelm
parents: 24780
diff changeset
   207
  | SOME (Theory (gthy, _)) => pretty_context gthy
6f5cb7885fd7 print_state_context: local theory context, not proof context;
wenzelm
parents: 24780
diff changeset
   208
  | SOME (Proof (_, (_, gthy))) => pretty_context gthy
6f5cb7885fd7 print_state_context: local theory context, not proof context;
wenzelm
parents: 24780
diff changeset
   209
  | SOME (SkipProof (_, (gthy, _))) => pretty_context gthy)
23640
baec2e674461 toplevel prompt/print_state: proper markup, removed hooks;
wenzelm
parents: 23619
diff changeset
   210
  |> Pretty.chunks |> Pretty.writeln;
16815
13d20ed9086c added print_state_hook;
wenzelm
parents: 16729
diff changeset
   211
23640
baec2e674461 toplevel prompt/print_state: proper markup, removed hooks;
wenzelm
parents: 23619
diff changeset
   212
fun print_state prf_only state =
23701
1716f19e7d25 Markup.output;
wenzelm
parents: 23661
diff changeset
   213
  (case try node_of state of
1716f19e7d25 Markup.output;
wenzelm
parents: 23661
diff changeset
   214
    NONE => []
1716f19e7d25 Markup.output;
wenzelm
parents: 23661
diff changeset
   215
  | SOME (Theory (gthy, _)) => if prf_only then [] else pretty_context gthy
1716f19e7d25 Markup.output;
wenzelm
parents: 23661
diff changeset
   216
  | SOME (Proof (prf, _)) =>
33390
5b499f36dd25 modernized structure Proof_Node;
wenzelm
parents: 33223
diff changeset
   217
      Proof.pretty_state (Proof_Node.position prf) (Proof_Node.current prf)
27564
fc6d34e49e17 replaced obsolete ProofHistory by ProofNode (backtracking only);
wenzelm
parents: 27500
diff changeset
   218
  | SOME (SkipProof (d, _)) => [Pretty.str ("skipped proof: depth " ^ string_of_int d)])
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49863
diff changeset
   219
  |> Pretty.markup_chunks Markup.state |> Pretty.writeln;
16815
13d20ed9086c added print_state_hook;
wenzelm
parents: 16729
diff changeset
   220
37858
e1ef6b441fe7 toplevel pp for Proof.state and Toplevel.state;
wenzelm
parents: 37856
diff changeset
   221
fun pretty_abstract state = Pretty.str ("<Isar " ^ str_of_state state ^ ">");
e1ef6b441fe7 toplevel pp for Proof.state and Toplevel.state;
wenzelm
parents: 37856
diff changeset
   222
16815
13d20ed9086c added print_state_hook;
wenzelm
parents: 16729
diff changeset
   223
15668
53c049a365cf improved exn_message;
wenzelm
parents: 15633
diff changeset
   224
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   225
(** toplevel transitions **)
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   226
32738
15bb09ca0378 explicit indication of Unsynchronized.ref;
wenzelm
parents: 32062
diff changeset
   227
val quiet = Unsynchronized.ref false;
39513
fce2202892c4 discontinued Output.debug, which belongs to early PGIP experiments (b6788dbd2ef9) and causes just too many problems (like spamming the message channel if it is used by more than one module);
wenzelm
parents: 39285
diff changeset
   228
val debug = Runtime.debug;
32738
15bb09ca0378 explicit indication of Unsynchronized.ref;
wenzelm
parents: 32062
diff changeset
   229
val interact = Unsynchronized.ref false;
42012
2c3fe3cbebae structure Timing: covers former start_timing/end_timing and Output.timeit etc;
wenzelm
parents: 41703
diff changeset
   230
val timing = Unsynchronized.ref false;
32738
15bb09ca0378 explicit indication of Unsynchronized.ref;
wenzelm
parents: 32062
diff changeset
   231
val profiling = Unsynchronized.ref 0;
15bb09ca0378 explicit indication of Unsynchronized.ref;
wenzelm
parents: 32062
diff changeset
   232
val skip_proofs = Unsynchronized.ref false;
16682
wenzelm
parents: 16658
diff changeset
   233
33604
d4220df6fde2 Toplevel.thread provides Isar-style exception output;
wenzelm
parents: 33553
diff changeset
   234
fun program body =
d4220df6fde2 Toplevel.thread provides Isar-style exception output;
wenzelm
parents: 33553
diff changeset
   235
 (body
31476
c5d2899b6de9 moved Isar toplevel runtime support to runtime.ML, which is loaded early (before ml_compiler.ML);
wenzelm
parents: 31431
diff changeset
   236
  |> Runtime.controlled_execution
33604
d4220df6fde2 Toplevel.thread provides Isar-style exception output;
wenzelm
parents: 33553
diff changeset
   237
  |> Runtime.toplevel_error (Output.error_msg o ML_Compiler.exn_message)) ();
d4220df6fde2 Toplevel.thread provides Isar-style exception output;
wenzelm
parents: 33553
diff changeset
   238
d4220df6fde2 Toplevel.thread provides Isar-style exception output;
wenzelm
parents: 33553
diff changeset
   239
fun thread interrupts body =
d4220df6fde2 Toplevel.thread provides Isar-style exception output;
wenzelm
parents: 33553
diff changeset
   240
  Thread.fork
39232
69c6d3e87660 more abstract treatment of interrupts in structure Exn -- hardly ever need to mention Interrupt literally;
wenzelm
parents: 38888
diff changeset
   241
    (((fn () => body () handle exn => if Exn.is_interrupt exn then () else reraise exn)
33604
d4220df6fde2 Toplevel.thread provides Isar-style exception output;
wenzelm
parents: 33553
diff changeset
   242
        |> Runtime.debugging
d4220df6fde2 Toplevel.thread provides Isar-style exception output;
wenzelm
parents: 33553
diff changeset
   243
        |> Runtime.toplevel_error
40132
7ee65dbffa31 renamed Output.priority to Output.urgent_message to emphasize its special role more clearly;
wenzelm
parents: 39513
diff changeset
   244
          (fn exn =>
7ee65dbffa31 renamed Output.priority to Output.urgent_message to emphasize its special role more clearly;
wenzelm
parents: 39513
diff changeset
   245
            Output.urgent_message ("## INTERNAL ERROR ##\n" ^ ML_Compiler.exn_message exn))),
37216
3165bc303f66 modernized some structure names, keeping a few legacy aliases;
wenzelm
parents: 37208
diff changeset
   246
      Simple_Thread.attributes interrupts);
20128
8f0e07d7cf92 keep/transaction: unified execution model (with debugging etc.);
wenzelm
parents: 19996
diff changeset
   247
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   248
27601
6683cdb94af8 simplified commit_exit: operate on previous node of final state, include warning here;
wenzelm
parents: 27583
diff changeset
   249
(* node transactions -- maintaining stable checkpoints *)
7022
abf9d5e2fb6e removed BREAK, ROLLBACK;
wenzelm
parents: 6971
diff changeset
   250
31476
c5d2899b6de9 moved Isar toplevel runtime support to runtime.ML, which is loaded early (before ml_compiler.ML);
wenzelm
parents: 31431
diff changeset
   251
exception FAILURE of state * exn;
c5d2899b6de9 moved Isar toplevel runtime support to runtime.ML, which is loaded early (before ml_compiler.ML);
wenzelm
parents: 31431
diff changeset
   252
6689
wenzelm
parents: 6664
diff changeset
   253
local
wenzelm
parents: 6664
diff changeset
   254
30366
e3d788b9dffb simplified presentation: built into transaction, pass state directly;
wenzelm
parents: 29516
diff changeset
   255
fun reset_presentation (Theory (gthy, _)) = Theory (gthy, NONE)
e3d788b9dffb simplified presentation: built into transaction, pass state directly;
wenzelm
parents: 29516
diff changeset
   256
  | reset_presentation node = node;
e3d788b9dffb simplified presentation: built into transaction, pass state directly;
wenzelm
parents: 29516
diff changeset
   257
26624
770265032999 transaction/init: ensure stable theory (non-draft);
wenzelm
parents: 26621
diff changeset
   258
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
   259
  | is_draft_theory _ = false;
770265032999 transaction/init: ensure stable theory (non-draft);
wenzelm
parents: 26621
diff changeset
   260
31476
c5d2899b6de9 moved Isar toplevel runtime support to runtime.ML, which is loaded early (before ml_compiler.ML);
wenzelm
parents: 31431
diff changeset
   261
fun is_stale state = Context.is_stale (theory_of state) handle Runtime.UNDEF => false;
27601
6683cdb94af8 simplified commit_exit: operate on previous node of final state, include warning here;
wenzelm
parents: 27583
diff changeset
   262
26624
770265032999 transaction/init: ensure stable theory (non-draft);
wenzelm
parents: 26621
diff changeset
   263
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
   264
  | stale_error some = some;
16815
13d20ed9086c added print_state_hook;
wenzelm
parents: 16729
diff changeset
   265
27576
7afff36043e6 eliminated internal command history -- superceeded by global Isar state (cf. isar.ML);
wenzelm
parents: 27564
diff changeset
   266
fun map_theory f (Theory (gthy, ctxt)) =
33671
4b0f2599ed48 modernized structure Local_Theory;
wenzelm
parents: 33604
diff changeset
   267
      Theory (Context.mapping f (Local_Theory.raw_theory f) gthy, ctxt)
27576
7afff36043e6 eliminated internal command history -- superceeded by global Isar state (cf. isar.ML);
wenzelm
parents: 27564
diff changeset
   268
  | map_theory _ node = node;
6689
wenzelm
parents: 6664
diff changeset
   269
wenzelm
parents: 6664
diff changeset
   270
in
wenzelm
parents: 6664
diff changeset
   271
37953
ddc3b72f9a42 simplified handling of theory begin/end wrt. toplevel and theory loader;
wenzelm
parents: 37951
diff changeset
   272
fun apply_transaction f g node =
20128
8f0e07d7cf92 keep/transaction: unified execution model (with debugging etc.);
wenzelm
parents: 19996
diff changeset
   273
  let
27576
7afff36043e6 eliminated internal command history -- superceeded by global Isar state (cf. isar.ML);
wenzelm
parents: 27564
diff changeset
   274
    val _ = is_draft_theory node andalso error "Illegal draft theory in toplevel state";
7afff36043e6 eliminated internal command history -- superceeded by global Isar state (cf. isar.ML);
wenzelm
parents: 27564
diff changeset
   275
    val cont_node = reset_presentation node;
7afff36043e6 eliminated internal command history -- superceeded by global Isar state (cf. isar.ML);
wenzelm
parents: 27564
diff changeset
   276
    val back_node = map_theory (Theory.checkpoint o Theory.copy) cont_node;
37953
ddc3b72f9a42 simplified handling of theory begin/end wrt. toplevel and theory loader;
wenzelm
parents: 37951
diff changeset
   277
    fun state_error e nd = (State (SOME nd, SOME node), e);
6689
wenzelm
parents: 6664
diff changeset
   278
20128
8f0e07d7cf92 keep/transaction: unified execution model (with debugging etc.);
wenzelm
parents: 19996
diff changeset
   279
    val (result, err) =
8f0e07d7cf92 keep/transaction: unified execution model (with debugging etc.);
wenzelm
parents: 19996
diff changeset
   280
      cont_node
31476
c5d2899b6de9 moved Isar toplevel runtime support to runtime.ML, which is loaded early (before ml_compiler.ML);
wenzelm
parents: 31431
diff changeset
   281
      |> Runtime.controlled_execution f
26624
770265032999 transaction/init: ensure stable theory (non-draft);
wenzelm
parents: 26621
diff changeset
   282
      |> map_theory Theory.checkpoint
770265032999 transaction/init: ensure stable theory (non-draft);
wenzelm
parents: 26621
diff changeset
   283
      |> state_error NONE
770265032999 transaction/init: ensure stable theory (non-draft);
wenzelm
parents: 26621
diff changeset
   284
      handle exn => state_error (SOME exn) cont_node;
770265032999 transaction/init: ensure stable theory (non-draft);
wenzelm
parents: 26621
diff changeset
   285
770265032999 transaction/init: ensure stable theory (non-draft);
wenzelm
parents: 26621
diff changeset
   286
    val (result', err') =
770265032999 transaction/init: ensure stable theory (non-draft);
wenzelm
parents: 26621
diff changeset
   287
      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
   288
      else (result, err);
20128
8f0e07d7cf92 keep/transaction: unified execution model (with debugging etc.);
wenzelm
parents: 19996
diff changeset
   289
  in
26624
770265032999 transaction/init: ensure stable theory (non-draft);
wenzelm
parents: 26621
diff changeset
   290
    (case err' of
30366
e3d788b9dffb simplified presentation: built into transaction, pass state directly;
wenzelm
parents: 29516
diff changeset
   291
      NONE => tap g result'
26624
770265032999 transaction/init: ensure stable theory (non-draft);
wenzelm
parents: 26621
diff changeset
   292
    | SOME exn => raise FAILURE (result', exn))
20128
8f0e07d7cf92 keep/transaction: unified execution model (with debugging etc.);
wenzelm
parents: 19996
diff changeset
   293
  end;
6689
wenzelm
parents: 6664
diff changeset
   294
43667
6d73cceb1503 explicit exit_transaction with Theory.end_theory (which could include sanity checks as in HOL-SPARK for example);
wenzelm
parents: 43665
diff changeset
   295
val exit_transaction =
6d73cceb1503 explicit exit_transaction with Theory.end_theory (which could include sanity checks as in HOL-SPARK for example);
wenzelm
parents: 43665
diff changeset
   296
  apply_transaction
6d73cceb1503 explicit exit_transaction with Theory.end_theory (which could include sanity checks as in HOL-SPARK for example);
wenzelm
parents: 43665
diff changeset
   297
    (fn Theory (Context.Theory thy, _) => Theory (Context.Theory (Theory.end_theory thy), NONE)
6d73cceb1503 explicit exit_transaction with Theory.end_theory (which could include sanity checks as in HOL-SPARK for example);
wenzelm
parents: 43665
diff changeset
   298
      | node => node) (K ())
6d73cceb1503 explicit exit_transaction with Theory.end_theory (which could include sanity checks as in HOL-SPARK for example);
wenzelm
parents: 43665
diff changeset
   299
  #> (fn State (node', _) => State (NONE, node'));
6d73cceb1503 explicit exit_transaction with Theory.end_theory (which could include sanity checks as in HOL-SPARK for example);
wenzelm
parents: 43665
diff changeset
   300
6689
wenzelm
parents: 6664
diff changeset
   301
end;
wenzelm
parents: 6664
diff changeset
   302
wenzelm
parents: 6664
diff changeset
   303
wenzelm
parents: 6664
diff changeset
   304
(* primitive transitions *)
wenzelm
parents: 6664
diff changeset
   305
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   306
datatype trans =
44187
88d770052bac simplified Toplevel.init_theory: discontinued special name argument;
wenzelm
parents: 44186
diff changeset
   307
  Init of unit -> theory |               (*init theory*)
37953
ddc3b72f9a42 simplified handling of theory begin/end wrt. toplevel and theory loader;
wenzelm
parents: 37951
diff changeset
   308
  Exit |                                 (*formal exit of theory*)
ddc3b72f9a42 simplified handling of theory begin/end wrt. toplevel and theory loader;
wenzelm
parents: 37951
diff changeset
   309
  Keep of bool -> state -> unit |        (*peek at state*)
30366
e3d788b9dffb simplified presentation: built into transaction, pass state directly;
wenzelm
parents: 29516
diff changeset
   310
  Transaction of (bool -> node -> node) * (state -> unit);  (*node transaction and presentation*)
21958
9dfd1ca4c0a0 refined notion of empty toplevel, admits undo of 'end';
wenzelm
parents: 21861
diff changeset
   311
6689
wenzelm
parents: 6664
diff changeset
   312
local
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   313
44187
88d770052bac simplified Toplevel.init_theory: discontinued special name argument;
wenzelm
parents: 44186
diff changeset
   314
fun apply_tr _ (Init f) (State (NONE, _)) =
33727
e2d5d7f51aa3 init_theory: Runtime.controlled_execution for proper exception trace etc.;
wenzelm
parents: 33725
diff changeset
   315
      State (SOME (Theory (Context.Theory
44186
806f0ec1a43d simplified Toplevel.init_theory: discontinued special master argument;
wenzelm
parents: 44185
diff changeset
   316
          (Theory.checkpoint (Runtime.controlled_execution f ())), NONE)), NONE)
43667
6d73cceb1503 explicit exit_transaction with Theory.end_theory (which could include sanity checks as in HOL-SPARK for example);
wenzelm
parents: 43665
diff changeset
   317
  | apply_tr _ Exit (State (SOME (state as Theory (Context.Theory _, _)), _)) =
6d73cceb1503 explicit exit_transaction with Theory.end_theory (which could include sanity checks as in HOL-SPARK for example);
wenzelm
parents: 43665
diff changeset
   318
      exit_transaction state
32792
a08a2b962a09 eliminated dead code;
wenzelm
parents: 32738
diff changeset
   319
  | apply_tr int (Keep f) state =
31476
c5d2899b6de9 moved Isar toplevel runtime support to runtime.ML, which is loaded early (before ml_compiler.ML);
wenzelm
parents: 31431
diff changeset
   320
      Runtime.controlled_execution (fn x => tap (f int) x) state
32792
a08a2b962a09 eliminated dead code;
wenzelm
parents: 32738
diff changeset
   321
  | apply_tr int (Transaction (f, g)) (State (SOME state, _)) =
a08a2b962a09 eliminated dead code;
wenzelm
parents: 32738
diff changeset
   322
      apply_transaction (fn x => f int x) g state
a08a2b962a09 eliminated dead code;
wenzelm
parents: 32738
diff changeset
   323
  | apply_tr _ _ _ = raise UNDEF;
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   324
32792
a08a2b962a09 eliminated dead code;
wenzelm
parents: 32738
diff changeset
   325
fun apply_union _ [] state = raise FAILURE (state, UNDEF)
a08a2b962a09 eliminated dead code;
wenzelm
parents: 32738
diff changeset
   326
  | apply_union int (tr :: trs) state =
a08a2b962a09 eliminated dead code;
wenzelm
parents: 32738
diff changeset
   327
      apply_union int trs state
a08a2b962a09 eliminated dead code;
wenzelm
parents: 32738
diff changeset
   328
        handle Runtime.UNDEF => apply_tr int tr state
a08a2b962a09 eliminated dead code;
wenzelm
parents: 32738
diff changeset
   329
          | FAILURE (alt_state, UNDEF) => apply_tr int tr alt_state
6689
wenzelm
parents: 6664
diff changeset
   330
          | exn as FAILURE _ => raise exn
wenzelm
parents: 6664
diff changeset
   331
          | exn => raise FAILURE (state, exn);
wenzelm
parents: 6664
diff changeset
   332
wenzelm
parents: 6664
diff changeset
   333
in
wenzelm
parents: 6664
diff changeset
   334
32792
a08a2b962a09 eliminated dead code;
wenzelm
parents: 32738
diff changeset
   335
fun apply_trans int trs state = (apply_union int trs state, NONE)
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15519
diff changeset
   336
  handle FAILURE (alt_state, exn) => (alt_state, SOME exn) | exn => (state, SOME exn);
6689
wenzelm
parents: 6664
diff changeset
   337
wenzelm
parents: 6664
diff changeset
   338
end;
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   339
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   340
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   341
(* datatype transition *)
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   342
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   343
datatype transition = Transition of
26621
78b3ad7af5d5 eliminated unused name_of, source, source_of, print', print3, three_buffersN;
wenzelm
parents: 26602
diff changeset
   344
 {name: string,              (*command name*)
78b3ad7af5d5 eliminated unused name_of, source, source_of, print', print3, three_buffersN;
wenzelm
parents: 26602
diff changeset
   345
  pos: Position.T,           (*source position*)
78b3ad7af5d5 eliminated unused name_of, source, source_of, print', print3, three_buffersN;
wenzelm
parents: 26602
diff changeset
   346
  int_only: bool,            (*interactive-only*)
78b3ad7af5d5 eliminated unused name_of, source, source_of, print', print3, three_buffersN;
wenzelm
parents: 26602
diff changeset
   347
  print: bool,               (*print result state*)
78b3ad7af5d5 eliminated unused name_of, source, source_of, print', print3, three_buffersN;
wenzelm
parents: 26602
diff changeset
   348
  no_timing: bool,           (*suppress timing*)
51228
dff3471dd8bc more tight representation of command timing;
wenzelm
parents: 51226
diff changeset
   349
  timing: Time.time,         (*prescient timing information*)
26621
78b3ad7af5d5 eliminated unused name_of, source, source_of, print', print3, three_buffersN;
wenzelm
parents: 26602
diff changeset
   350
  trans: trans list};        (*primitive transitions (union)*)
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   351
51217
65ab2c4f4c32 support for prescient timing information within command transactions;
wenzelm
parents: 51216
diff changeset
   352
fun make_transition (name, pos, int_only, print, no_timing, timing, trans) =
65ab2c4f4c32 support for prescient timing information within command transactions;
wenzelm
parents: 51216
diff changeset
   353
  Transition {name = name, pos = pos, int_only = int_only, print = print,
65ab2c4f4c32 support for prescient timing information within command transactions;
wenzelm
parents: 51216
diff changeset
   354
    no_timing = no_timing, timing = timing, trans = trans};
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   355
51217
65ab2c4f4c32 support for prescient timing information within command transactions;
wenzelm
parents: 51216
diff changeset
   356
fun map_transition f (Transition {name, pos, int_only, print, no_timing, timing, trans}) =
65ab2c4f4c32 support for prescient timing information within command transactions;
wenzelm
parents: 51216
diff changeset
   357
  make_transition (f (name, pos, int_only, print, no_timing, timing, trans));
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   358
51228
dff3471dd8bc more tight representation of command timing;
wenzelm
parents: 51226
diff changeset
   359
val empty = make_transition ("", Position.none, false, false, false, Time.zeroTime, []);
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   360
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   361
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   362
(* diagnostics *)
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   363
38888
8248cda328de moved Toplevel.run_command to Pure/PIDE/document.ML;
wenzelm
parents: 38876
diff changeset
   364
fun print_of (Transition {print, ...}) = print;
27427
f6751d265cf6 added name_of;
wenzelm
parents: 26982
diff changeset
   365
fun name_of (Transition {name, ...}) = name;
28105
44054657ea56 added pos_of;
wenzelm
parents: 28103
diff changeset
   366
fun pos_of (Transition {pos, ...}) = pos;
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   367
48993
44428ea53dc1 tuned signature;
wenzelm
parents: 48992
diff changeset
   368
fun command_msg msg tr = msg ^ "command " ^ quote (name_of tr) ^ Position.here (pos_of tr);
38875
c7a66b584147 tuned messages: discontinued spurious full-stops (messages are occasionally composed unexpectedly);
wenzelm
parents: 38721
diff changeset
   369
fun at_command tr = command_msg "At " tr;
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   370
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   371
fun type_error tr state =
18685
725660906cb3 sane ERROR vs. TOPLEVEL_ERROR handling;
wenzelm
parents: 18664
diff changeset
   372
  ERROR (command_msg "Illegal application of " tr ^ " " ^ str_of_state state);
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   373
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   374
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   375
(* modify transitions *)
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   376
51217
65ab2c4f4c32 support for prescient timing information within command transactions;
wenzelm
parents: 51216
diff changeset
   377
fun name name = map_transition (fn (_, pos, int_only, print, no_timing, timing, trans) =>
65ab2c4f4c32 support for prescient timing information within command transactions;
wenzelm
parents: 51216
diff changeset
   378
  (name, pos, int_only, print, no_timing, timing, trans));
9010
ce78dc5e1a73 Toplevel.no_timing;
wenzelm
parents: 8999
diff changeset
   379
51217
65ab2c4f4c32 support for prescient timing information within command transactions;
wenzelm
parents: 51216
diff changeset
   380
fun position pos = map_transition (fn (name, _, int_only, print, no_timing, timing, trans) =>
65ab2c4f4c32 support for prescient timing information within command transactions;
wenzelm
parents: 51216
diff changeset
   381
  (name, pos, int_only, print, no_timing, timing, trans));
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   382
51217
65ab2c4f4c32 support for prescient timing information within command transactions;
wenzelm
parents: 51216
diff changeset
   383
fun interactive int_only = map_transition (fn (name, pos, _, print, no_timing, timing, trans) =>
65ab2c4f4c32 support for prescient timing information within command transactions;
wenzelm
parents: 51216
diff changeset
   384
  (name, pos, int_only, print, no_timing, timing, trans));
14923
8a32071c3c13 added name_of, source_of, source;
wenzelm
parents: 14825
diff changeset
   385
51217
65ab2c4f4c32 support for prescient timing information within command transactions;
wenzelm
parents: 51216
diff changeset
   386
val no_timing = map_transition (fn (name, pos, int_only, print, _, timing, trans) =>
65ab2c4f4c32 support for prescient timing information within command transactions;
wenzelm
parents: 51216
diff changeset
   387
  (name, pos, int_only, print, true, timing, trans));
17363
046c829c075f added three_buffersN, print3;
wenzelm
parents: 17321
diff changeset
   388
51217
65ab2c4f4c32 support for prescient timing information within command transactions;
wenzelm
parents: 51216
diff changeset
   389
fun add_trans tr = map_transition (fn (name, pos, int_only, print, no_timing, timing, trans) =>
65ab2c4f4c32 support for prescient timing information within command transactions;
wenzelm
parents: 51216
diff changeset
   390
  (name, pos, int_only, print, no_timing, timing, tr :: trans));
16607
81e687c63e29 added print': print depending on print_mode;
wenzelm
parents: 16490
diff changeset
   391
51217
65ab2c4f4c32 support for prescient timing information within command transactions;
wenzelm
parents: 51216
diff changeset
   392
val reset_trans = map_transition (fn (name, pos, int_only, print, no_timing, timing, _) =>
65ab2c4f4c32 support for prescient timing information within command transactions;
wenzelm
parents: 51216
diff changeset
   393
  (name, pos, int_only, print, no_timing, timing, []));
28433
b3dab95f098f begin_proof: avoid race condition wrt. skip_proofs flag;
wenzelm
parents: 28425
diff changeset
   394
51217
65ab2c4f4c32 support for prescient timing information within command transactions;
wenzelm
parents: 51216
diff changeset
   395
fun set_print print = map_transition (fn (name, pos, int_only, _, no_timing, timing, trans) =>
65ab2c4f4c32 support for prescient timing information within command transactions;
wenzelm
parents: 51216
diff changeset
   396
  (name, pos, int_only, print, no_timing, timing, trans));
28453
06702e7acd1d excursion/unit_result: no print for forked end, finish into global theory, pick resul from presentation context;
wenzelm
parents: 28451
diff changeset
   397
06702e7acd1d excursion/unit_result: no print for forked end, finish into global theory, pick resul from presentation context;
wenzelm
parents: 28451
diff changeset
   398
val print = set_print true;
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   399
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   400
21007
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   401
(* basic transitions *)
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   402
44187
88d770052bac simplified Toplevel.init_theory: discontinued special name argument;
wenzelm
parents: 44186
diff changeset
   403
fun init_theory f = add_trans (Init f);
37977
3ceccd415145 simplified/clarified theory loader: more explicit task management, kill old versions at start, commit results only in the very end, non-optional master dependency, do not store text in deps;
wenzelm
parents: 37953
diff changeset
   404
44187
88d770052bac simplified Toplevel.init_theory: discontinued special name argument;
wenzelm
parents: 44186
diff changeset
   405
fun is_init (Transition {trans = [Init _], ...}) = true
88d770052bac simplified Toplevel.init_theory: discontinued special name argument;
wenzelm
parents: 44186
diff changeset
   406
  | is_init _ = false;
88d770052bac simplified Toplevel.init_theory: discontinued special name argument;
wenzelm
parents: 44186
diff changeset
   407
88d770052bac simplified Toplevel.init_theory: discontinued special name argument;
wenzelm
parents: 44186
diff changeset
   408
fun modify_init f tr = if is_init tr then init_theory f (reset_trans tr) else tr;
37977
3ceccd415145 simplified/clarified theory loader: more explicit task management, kill old versions at start, commit results only in the very end, non-optional master dependency, do not store text in deps;
wenzelm
parents: 37953
diff changeset
   409
6689
wenzelm
parents: 6664
diff changeset
   410
val exit = add_trans Exit;
7612
ba11b5db431a added keep', theory';
wenzelm
parents: 7602
diff changeset
   411
val keep' = add_trans o Keep;
30366
e3d788b9dffb simplified presentation: built into transaction, pass state directly;
wenzelm
parents: 29516
diff changeset
   412
e3d788b9dffb simplified presentation: built into transaction, pass state directly;
wenzelm
parents: 29516
diff changeset
   413
fun present_transaction f g = add_trans (Transaction (f, g));
e3d788b9dffb simplified presentation: built into transaction, pass state directly;
wenzelm
parents: 29516
diff changeset
   414
fun transaction f = present_transaction f (K ());
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   415
7612
ba11b5db431a added keep', theory';
wenzelm
parents: 7602
diff changeset
   416
fun keep f = add_trans (Keep (fn _ => f));
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   417
fun imperative f = keep (fn _ => f ());
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   418
27840
e9483ef084cc added ignored, malformed transitions;
wenzelm
parents: 27606
diff changeset
   419
fun ignored pos = empty |> name "<ignored>" |> position pos |> imperative I;
51268
fcc4b89a600d simplified Outer_Syntax.read_span: internalized Toplevel.is_ignored;
wenzelm
parents: 51241
diff changeset
   420
fun is_ignored tr = name_of tr = "<ignored>";
48772
e46cd0d26481 vacuous execution after first malformed command;
wenzelm
parents: 48633
diff changeset
   421
e46cd0d26481 vacuous execution after first malformed command;
wenzelm
parents: 48633
diff changeset
   422
val malformed_name = "<malformed>";
27840
e9483ef084cc added ignored, malformed transitions;
wenzelm
parents: 27606
diff changeset
   423
fun malformed pos msg =
48772
e46cd0d26481 vacuous execution after first malformed command;
wenzelm
parents: 48633
diff changeset
   424
  empty |> name malformed_name |> position pos |> imperative (fn () => error msg);
e46cd0d26481 vacuous execution after first malformed command;
wenzelm
parents: 48633
diff changeset
   425
fun is_malformed tr = name_of tr = malformed_name;
27840
e9483ef084cc added ignored, malformed transitions;
wenzelm
parents: 27606
diff changeset
   426
21007
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   427
val unknown_theory = imperative (fn () => warning "Unknown theory context");
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   428
val unknown_proof = imperative (fn () => warning "Unknown proof context");
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   429
val unknown_context = imperative (fn () => warning "Unknown context");
15668
53c049a365cf improved exn_message;
wenzelm
parents: 15633
diff changeset
   430
21007
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   431
49012
8686c36fa27d refined treatment of forked proofs at transaction boundaries, including proof commands (see also 7ee000ce5390);
wenzelm
parents: 49011
diff changeset
   432
(* theory transitions *)
44304
7ee000ce5390 maintain recent future proofs at transaction boundaries;
wenzelm
parents: 44270
diff changeset
   433
27601
6683cdb94af8 simplified commit_exit: operate on previous node of final state, include warning here;
wenzelm
parents: 27583
diff changeset
   434
fun generic_theory f = transaction (fn _ =>
26491
c93ff30790fe added generic_theory transaction;
wenzelm
parents: 26293
diff changeset
   435
  (fn Theory (gthy, _) => Theory (f gthy, NONE)
c93ff30790fe added generic_theory transaction;
wenzelm
parents: 26293
diff changeset
   436
    | _ => raise UNDEF));
c93ff30790fe added generic_theory transaction;
wenzelm
parents: 26293
diff changeset
   437
27601
6683cdb94af8 simplified commit_exit: operate on previous node of final state, include warning here;
wenzelm
parents: 27583
diff changeset
   438
fun theory' f = transaction (fn int =>
33725
a8481da77270 implicit name space grouping for theory/local_theory transactions;
wenzelm
parents: 33671
diff changeset
   439
  (fn Theory (Context.Theory thy, _) =>
a8481da77270 implicit name space grouping for theory/local_theory transactions;
wenzelm
parents: 33671
diff changeset
   440
      let val thy' = thy
49012
8686c36fa27d refined treatment of forked proofs at transaction boundaries, including proof commands (see also 7ee000ce5390);
wenzelm
parents: 49011
diff changeset
   441
        |> Sign.new_group
8686c36fa27d refined treatment of forked proofs at transaction boundaries, including proof commands (see also 7ee000ce5390);
wenzelm
parents: 49011
diff changeset
   442
        |> Theory.checkpoint
33725
a8481da77270 implicit name space grouping for theory/local_theory transactions;
wenzelm
parents: 33671
diff changeset
   443
        |> f int
a8481da77270 implicit name space grouping for theory/local_theory transactions;
wenzelm
parents: 33671
diff changeset
   444
        |> Sign.reset_group;
a8481da77270 implicit name space grouping for theory/local_theory transactions;
wenzelm
parents: 33671
diff changeset
   445
      in Theory (Context.Theory thy', NONE) end
20963
a7fd8f05a2be added type global_theory -- theory or local_theory;
wenzelm
parents: 20928
diff changeset
   446
    | _ => raise UNDEF));
a7fd8f05a2be added type global_theory -- theory or local_theory;
wenzelm
parents: 20928
diff changeset
   447
a7fd8f05a2be added type global_theory -- theory or local_theory;
wenzelm
parents: 20928
diff changeset
   448
fun theory f = theory' (K f);
a7fd8f05a2be added type global_theory -- theory or local_theory;
wenzelm
parents: 20928
diff changeset
   449
27601
6683cdb94af8 simplified commit_exit: operate on previous node of final state, include warning here;
wenzelm
parents: 27583
diff changeset
   450
fun begin_local_theory begin f = transaction (fn _ =>
20963
a7fd8f05a2be added type global_theory -- theory or local_theory;
wenzelm
parents: 20928
diff changeset
   451
  (fn Theory (Context.Theory thy, _) =>
a7fd8f05a2be added type global_theory -- theory or local_theory;
wenzelm
parents: 20928
diff changeset
   452
        let
20985
de13e2a23c8e exit_local_theory: pass interactive flag;
wenzelm
parents: 20963
diff changeset
   453
          val lthy = f thy;
21294
5cd48242ef17 simplified local theory wrappers;
wenzelm
parents: 21277
diff changeset
   454
          val gthy = if begin then Context.Proof lthy else Context.Theory (loc_exit lthy);
5cd48242ef17 simplified local theory wrappers;
wenzelm
parents: 21277
diff changeset
   455
        in Theory (gthy, SOME lthy) end
20963
a7fd8f05a2be added type global_theory -- theory or local_theory;
wenzelm
parents: 20928
diff changeset
   456
    | _ => raise UNDEF));
17076
c7effdf2e2e2 state: body context;
wenzelm
parents: 16815
diff changeset
   457
27601
6683cdb94af8 simplified commit_exit: operate on previous node of final state, include warning here;
wenzelm
parents: 27583
diff changeset
   458
val end_local_theory = transaction (fn _ =>
21294
5cd48242ef17 simplified local theory wrappers;
wenzelm
parents: 21277
diff changeset
   459
  (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
   460
    | _ => raise UNDEF));
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   461
47069
451fc10a81f3 more explicit Toplevel.open_target/close_target;
wenzelm
parents: 46959
diff changeset
   462
fun open_target f = transaction (fn _ =>
451fc10a81f3 more explicit Toplevel.open_target/close_target;
wenzelm
parents: 46959
diff changeset
   463
  (fn Theory (gthy, _) =>
451fc10a81f3 more explicit Toplevel.open_target/close_target;
wenzelm
parents: 46959
diff changeset
   464
        let val lthy = f gthy
451fc10a81f3 more explicit Toplevel.open_target/close_target;
wenzelm
parents: 46959
diff changeset
   465
        in Theory (Context.Proof lthy, SOME lthy) end
451fc10a81f3 more explicit Toplevel.open_target/close_target;
wenzelm
parents: 46959
diff changeset
   466
    | _ => raise UNDEF));
451fc10a81f3 more explicit Toplevel.open_target/close_target;
wenzelm
parents: 46959
diff changeset
   467
451fc10a81f3 more explicit Toplevel.open_target/close_target;
wenzelm
parents: 46959
diff changeset
   468
val close_target = transaction (fn _ =>
451fc10a81f3 more explicit Toplevel.open_target/close_target;
wenzelm
parents: 46959
diff changeset
   469
  (fn Theory (Context.Proof lthy, _) =>
451fc10a81f3 more explicit Toplevel.open_target/close_target;
wenzelm
parents: 46959
diff changeset
   470
        (case try Local_Theory.close_target lthy of
50739
5165d7e6d3b9 more precise Local_Theory.level: 1 really means main target and >= 2 nested context;
wenzelm
parents: 50201
diff changeset
   471
          SOME ctxt' =>
5165d7e6d3b9 more precise Local_Theory.level: 1 really means main target and >= 2 nested context;
wenzelm
parents: 50201
diff changeset
   472
            let
5165d7e6d3b9 more precise Local_Theory.level: 1 really means main target and >= 2 nested context;
wenzelm
parents: 50201
diff changeset
   473
              val gthy' =
5165d7e6d3b9 more precise Local_Theory.level: 1 really means main target and >= 2 nested context;
wenzelm
parents: 50201
diff changeset
   474
                if can Local_Theory.assert ctxt'
5165d7e6d3b9 more precise Local_Theory.level: 1 really means main target and >= 2 nested context;
wenzelm
parents: 50201
diff changeset
   475
                then Context.Proof ctxt'
5165d7e6d3b9 more precise Local_Theory.level: 1 really means main target and >= 2 nested context;
wenzelm
parents: 50201
diff changeset
   476
                else Context.Theory (Proof_Context.theory_of ctxt');
5165d7e6d3b9 more precise Local_Theory.level: 1 really means main target and >= 2 nested context;
wenzelm
parents: 50201
diff changeset
   477
            in Theory (gthy', SOME lthy) end
47069
451fc10a81f3 more explicit Toplevel.open_target/close_target;
wenzelm
parents: 46959
diff changeset
   478
        | NONE => raise UNDEF)
451fc10a81f3 more explicit Toplevel.open_target/close_target;
wenzelm
parents: 46959
diff changeset
   479
    | _ => raise UNDEF));
451fc10a81f3 more explicit Toplevel.open_target/close_target;
wenzelm
parents: 46959
diff changeset
   480
451fc10a81f3 more explicit Toplevel.open_target/close_target;
wenzelm
parents: 46959
diff changeset
   481
21007
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   482
local
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   483
30366
e3d788b9dffb simplified presentation: built into transaction, pass state directly;
wenzelm
parents: 29516
diff changeset
   484
fun local_theory_presentation loc f = present_transaction (fn int =>
21294
5cd48242ef17 simplified local theory wrappers;
wenzelm
parents: 21277
diff changeset
   485
  (fn Theory (gthy, _) =>
5cd48242ef17 simplified local theory wrappers;
wenzelm
parents: 21277
diff changeset
   486
        let
49062
7e31dfd99ce7 discontinued complicated/unreliable notion of recent proofs within context;
wenzelm
parents: 49042
diff changeset
   487
          val (finish, lthy) = loc_begin loc gthy;
47274
feef9b0b6031 misc tuning and simplification;
wenzelm
parents: 47069
diff changeset
   488
          val lthy' = lthy
49012
8686c36fa27d refined treatment of forked proofs at transaction boundaries, including proof commands (see also 7ee000ce5390);
wenzelm
parents: 49011
diff changeset
   489
            |> Local_Theory.new_group
33725
a8481da77270 implicit name space grouping for theory/local_theory transactions;
wenzelm
parents: 33671
diff changeset
   490
            |> f int
a8481da77270 implicit name space grouping for theory/local_theory transactions;
wenzelm
parents: 33671
diff changeset
   491
            |> Local_Theory.reset_group;
21294
5cd48242ef17 simplified local theory wrappers;
wenzelm
parents: 21277
diff changeset
   492
        in Theory (finish lthy', SOME lthy') end
30366
e3d788b9dffb simplified presentation: built into transaction, pass state directly;
wenzelm
parents: 29516
diff changeset
   493
    | _ => raise UNDEF));
15668
53c049a365cf improved exn_message;
wenzelm
parents: 15633
diff changeset
   494
21007
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   495
in
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   496
30366
e3d788b9dffb simplified presentation: built into transaction, pass state directly;
wenzelm
parents: 29516
diff changeset
   497
fun local_theory' loc f = local_theory_presentation loc f (K ());
29380
a9ee3475abf4 added local_theory';
wenzelm
parents: 29343
diff changeset
   498
fun local_theory loc f = local_theory' loc (K f);
30366
e3d788b9dffb simplified presentation: built into transaction, pass state directly;
wenzelm
parents: 29516
diff changeset
   499
fun present_local_theory loc = local_theory_presentation loc (K I);
18955
fa71f2ddd2e8 added local_theory, with optional locale xname;
wenzelm
parents: 18811
diff changeset
   500
21007
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   501
end;
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   502
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   503
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   504
(* proof transitions *)
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   505
27601
6683cdb94af8 simplified commit_exit: operate on previous node of final state, include warning here;
wenzelm
parents: 27583
diff changeset
   506
fun end_proof f = transaction (fn int =>
24795
6f5cb7885fd7 print_state_context: local theory context, not proof context;
wenzelm
parents: 24780
diff changeset
   507
  (fn Proof (prf, (finish, _)) =>
33390
5b499f36dd25 modernized structure Proof_Node;
wenzelm
parents: 33223
diff changeset
   508
        let val state = Proof_Node.current prf in
21007
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   509
          if can (Proof.assert_bottom true) state then
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   510
            let
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   511
              val ctxt' = f int state;
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   512
              val gthy' = finish ctxt';
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   513
            in Theory (gthy', SOME ctxt') end
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   514
          else raise UNDEF
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   515
        end
27564
fc6d34e49e17 replaced obsolete ProofHistory by ProofNode (backtracking only);
wenzelm
parents: 27500
diff changeset
   516
    | SkipProof (0, (gthy, _)) => Theory (gthy, NONE)
21007
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   517
    | _ => raise UNDEF));
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   518
21294
5cd48242ef17 simplified local theory wrappers;
wenzelm
parents: 21277
diff changeset
   519
local
5cd48242ef17 simplified local theory wrappers;
wenzelm
parents: 21277
diff changeset
   520
47274
feef9b0b6031 misc tuning and simplification;
wenzelm
parents: 47069
diff changeset
   521
fun begin_proof init = transaction (fn int =>
21294
5cd48242ef17 simplified local theory wrappers;
wenzelm
parents: 21277
diff changeset
   522
  (fn Theory (gthy, _) =>
5cd48242ef17 simplified local theory wrappers;
wenzelm
parents: 21277
diff changeset
   523
    let
47274
feef9b0b6031 misc tuning and simplification;
wenzelm
parents: 47069
diff changeset
   524
      val (finish, prf) = init int gthy;
28433
b3dab95f098f begin_proof: avoid race condition wrt. skip_proofs flag;
wenzelm
parents: 28425
diff changeset
   525
      val skip = ! skip_proofs;
40960
9e54eb514a46 formal notepad without any result;
wenzelm
parents: 40132
diff changeset
   526
      val (is_goal, no_skip) =
9e54eb514a46 formal notepad without any result;
wenzelm
parents: 40132
diff changeset
   527
        (true, Proof.schematic_goal prf) handle ERROR _ => (false, true);
47274
feef9b0b6031 misc tuning and simplification;
wenzelm
parents: 47069
diff changeset
   528
      val _ =
feef9b0b6031 misc tuning and simplification;
wenzelm
parents: 47069
diff changeset
   529
        if is_goal andalso skip andalso no_skip then
feef9b0b6031 misc tuning and simplification;
wenzelm
parents: 47069
diff changeset
   530
          warning "Cannot skip proof of schematic goal statement"
feef9b0b6031 misc tuning and simplification;
wenzelm
parents: 47069
diff changeset
   531
        else ();
21294
5cd48242ef17 simplified local theory wrappers;
wenzelm
parents: 21277
diff changeset
   532
    in
40960
9e54eb514a46 formal notepad without any result;
wenzelm
parents: 40132
diff changeset
   533
      if skip andalso not no_skip then
47274
feef9b0b6031 misc tuning and simplification;
wenzelm
parents: 47069
diff changeset
   534
        SkipProof (0, (finish (Proof.global_skip_proof int prf), gthy))
feef9b0b6031 misc tuning and simplification;
wenzelm
parents: 47069
diff changeset
   535
      else Proof (Proof_Node.init prf, (finish, gthy))
21294
5cd48242ef17 simplified local theory wrappers;
wenzelm
parents: 21277
diff changeset
   536
    end
5cd48242ef17 simplified local theory wrappers;
wenzelm
parents: 21277
diff changeset
   537
  | _ => raise UNDEF));
5cd48242ef17 simplified local theory wrappers;
wenzelm
parents: 21277
diff changeset
   538
5cd48242ef17 simplified local theory wrappers;
wenzelm
parents: 21277
diff changeset
   539
in
5cd48242ef17 simplified local theory wrappers;
wenzelm
parents: 21277
diff changeset
   540
24780
47bb1e380d83 local_theory transactions: more careful treatment of context position;
wenzelm
parents: 24634
diff changeset
   541
fun local_theory_to_proof' loc f = begin_proof
47274
feef9b0b6031 misc tuning and simplification;
wenzelm
parents: 47069
diff changeset
   542
  (fn int => fn gthy =>
49062
7e31dfd99ce7 discontinued complicated/unreliable notion of recent proofs within context;
wenzelm
parents: 49042
diff changeset
   543
    let val (finish, lthy) = loc_begin loc gthy
49012
8686c36fa27d refined treatment of forked proofs at transaction boundaries, including proof commands (see also 7ee000ce5390);
wenzelm
parents: 49011
diff changeset
   544
    in (finish o Local_Theory.reset_group, f int (Local_Theory.new_group lthy)) end);
24780
47bb1e380d83 local_theory transactions: more careful treatment of context position;
wenzelm
parents: 24634
diff changeset
   545
24453
86cf57ddf8f6 Added local_theory_to_proof'
berghofe
parents: 24295
diff changeset
   546
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
   547
5cd48242ef17 simplified local theory wrappers;
wenzelm
parents: 21277
diff changeset
   548
fun theory_to_proof f = begin_proof
47274
feef9b0b6031 misc tuning and simplification;
wenzelm
parents: 47069
diff changeset
   549
  (fn _ => fn gthy =>
feef9b0b6031 misc tuning and simplification;
wenzelm
parents: 47069
diff changeset
   550
    (Context.Theory o Sign.reset_group o Proof_Context.theory_of,
49062
7e31dfd99ce7 discontinued complicated/unreliable notion of recent proofs within context;
wenzelm
parents: 49042
diff changeset
   551
      (case gthy of
49012
8686c36fa27d refined treatment of forked proofs at transaction boundaries, including proof commands (see also 7ee000ce5390);
wenzelm
parents: 49011
diff changeset
   552
        Context.Theory thy => f (Theory.checkpoint (Sign.new_group thy))
8686c36fa27d refined treatment of forked proofs at transaction boundaries, including proof commands (see also 7ee000ce5390);
wenzelm
parents: 49011
diff changeset
   553
      | _ => raise UNDEF)));
21294
5cd48242ef17 simplified local theory wrappers;
wenzelm
parents: 21277
diff changeset
   554
5cd48242ef17 simplified local theory wrappers;
wenzelm
parents: 21277
diff changeset
   555
end;
5cd48242ef17 simplified local theory wrappers;
wenzelm
parents: 21277
diff changeset
   556
27601
6683cdb94af8 simplified commit_exit: operate on previous node of final state, include warning here;
wenzelm
parents: 27583
diff changeset
   557
val forget_proof = transaction (fn _ =>
21007
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   558
  (fn Proof (_, (_, orig_gthy)) => Theory (orig_gthy, NONE)
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   559
    | SkipProof (_, (_, orig_gthy)) => Theory (orig_gthy, NONE)
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   560
    | _ => raise UNDEF));
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   561
30366
e3d788b9dffb simplified presentation: built into transaction, pass state directly;
wenzelm
parents: 29516
diff changeset
   562
val present_proof = present_transaction (fn _ =>
49062
7e31dfd99ce7 discontinued complicated/unreliable notion of recent proofs within context;
wenzelm
parents: 49042
diff changeset
   563
  (fn Proof (prf, x) => Proof (Proof_Node.apply I prf, x)
27564
fc6d34e49e17 replaced obsolete ProofHistory by ProofNode (backtracking only);
wenzelm
parents: 27500
diff changeset
   564
    | skip as SkipProof _ => skip
30366
e3d788b9dffb simplified presentation: built into transaction, pass state directly;
wenzelm
parents: 29516
diff changeset
   565
    | _ => raise UNDEF));
21177
e8228486aa03 removed checkpoint interface;
wenzelm
parents: 21007
diff changeset
   566
27601
6683cdb94af8 simplified commit_exit: operate on previous node of final state, include warning here;
wenzelm
parents: 27583
diff changeset
   567
fun proofs' f = transaction (fn int =>
49062
7e31dfd99ce7 discontinued complicated/unreliable notion of recent proofs within context;
wenzelm
parents: 49042
diff changeset
   568
  (fn Proof (prf, x) => Proof (Proof_Node.applys (f int) prf, x)
27564
fc6d34e49e17 replaced obsolete ProofHistory by ProofNode (backtracking only);
wenzelm
parents: 27500
diff changeset
   569
    | skip as SkipProof _ => skip
16815
13d20ed9086c added print_state_hook;
wenzelm
parents: 16729
diff changeset
   570
    | _ => raise UNDEF));
15668
53c049a365cf improved exn_message;
wenzelm
parents: 15633
diff changeset
   571
49863
b5fb6e7f8d81 more informative errors for 'proof' and 'apply' steps;
wenzelm
parents: 49062
diff changeset
   572
fun proof' f = proofs' ((Seq.single o Seq.Result) oo f);
17904
21c6894b5998 simplified interfaces proof/proof' etc.: perform ProofHistory.apply(s)/current internally;
wenzelm
parents: 17513
diff changeset
   573
val proofs = proofs' o K;
6689
wenzelm
parents: 6664
diff changeset
   574
val proof = proof' o K;
16815
13d20ed9086c added print_state_hook;
wenzelm
parents: 16729
diff changeset
   575
27601
6683cdb94af8 simplified commit_exit: operate on previous node of final state, include warning here;
wenzelm
parents: 27583
diff changeset
   576
fun actual_proof f = transaction (fn _ =>
21007
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   577
  (fn Proof (prf, x) => Proof (f prf, x)
20963
a7fd8f05a2be added type global_theory -- theory or local_theory;
wenzelm
parents: 20928
diff changeset
   578
    | _ => raise UNDEF));
16815
13d20ed9086c added print_state_hook;
wenzelm
parents: 16729
diff changeset
   579
27601
6683cdb94af8 simplified commit_exit: operate on previous node of final state, include warning here;
wenzelm
parents: 27583
diff changeset
   580
fun skip_proof f = transaction (fn _ =>
21007
1bbb31aaf98d renamed enter_forward_proof to enter_proof_body;
wenzelm
parents: 20985
diff changeset
   581
  (fn SkipProof (h, x) => SkipProof (f h, x)
18563
wenzelm
parents: 17904
diff changeset
   582
    | _ => raise UNDEF));
wenzelm
parents: 17904
diff changeset
   583
27601
6683cdb94af8 simplified commit_exit: operate on previous node of final state, include warning here;
wenzelm
parents: 27583
diff changeset
   584
fun skip_proof_to_theory pred = transaction (fn _ =>
27564
fc6d34e49e17 replaced obsolete ProofHistory by ProofNode (backtracking only);
wenzelm
parents: 27500
diff changeset
   585
  (fn SkipProof (d, (gthy, _)) => if pred d then Theory (gthy, NONE) else raise UNDEF
33725
a8481da77270 implicit name space grouping for theory/local_theory transactions;
wenzelm
parents: 33671
diff changeset
   586
    | _ => raise UNDEF));
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   587
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   588
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   589
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   590
(** toplevel transactions **)
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   591
27427
f6751d265cf6 added name_of;
wenzelm
parents: 26982
diff changeset
   592
(* identification *)
f6751d265cf6 added name_of;
wenzelm
parents: 26982
diff changeset
   593
f6751d265cf6 added name_of;
wenzelm
parents: 26982
diff changeset
   594
fun get_id (Transition {pos, ...}) = Position.get_id pos;
f6751d265cf6 added name_of;
wenzelm
parents: 26982
diff changeset
   595
fun put_id id (tr as Transition {pos, ...}) = position (Position.put_id id pos) tr;
f6751d265cf6 added name_of;
wenzelm
parents: 26982
diff changeset
   596
f6751d265cf6 added name_of;
wenzelm
parents: 26982
diff changeset
   597
51228
dff3471dd8bc more tight representation of command timing;
wenzelm
parents: 51226
diff changeset
   598
(* approximative identification within source file *)
dff3471dd8bc more tight representation of command timing;
wenzelm
parents: 51226
diff changeset
   599
dff3471dd8bc more tight representation of command timing;
wenzelm
parents: 51226
diff changeset
   600
fun approximative_id tr =
dff3471dd8bc more tight representation of command timing;
wenzelm
parents: 51226
diff changeset
   601
  let
dff3471dd8bc more tight representation of command timing;
wenzelm
parents: 51226
diff changeset
   602
    val name = name_of tr;
dff3471dd8bc more tight representation of command timing;
wenzelm
parents: 51226
diff changeset
   603
    val pos = pos_of tr;
dff3471dd8bc more tight representation of command timing;
wenzelm
parents: 51226
diff changeset
   604
  in
dff3471dd8bc more tight representation of command timing;
wenzelm
parents: 51226
diff changeset
   605
    (case (Position.file_of pos, Position.offset_of pos) of
dff3471dd8bc more tight representation of command timing;
wenzelm
parents: 51226
diff changeset
   606
      (SOME file, SOME offset) => SOME {file = file, offset = offset, name = name}
dff3471dd8bc more tight representation of command timing;
wenzelm
parents: 51226
diff changeset
   607
    | _ => NONE)
dff3471dd8bc more tight representation of command timing;
wenzelm
parents: 51226
diff changeset
   608
  end;
dff3471dd8bc more tight representation of command timing;
wenzelm
parents: 51226
diff changeset
   609
dff3471dd8bc more tight representation of command timing;
wenzelm
parents: 51226
diff changeset
   610
25960
1f9956e0bd89 removed unused properties;
wenzelm
parents: 25847
diff changeset
   611
(* thread position *)
25799
7a204e0467f8 maintain thread transition properties;
wenzelm
parents: 25796
diff changeset
   612
25960
1f9956e0bd89 removed unused properties;
wenzelm
parents: 25847
diff changeset
   613
fun setmp_thread_position (Transition {pos, ...}) f x =
25819
e6feb08b7f4b replaced thread_properties by simplified version in position.ML;
wenzelm
parents: 25809
diff changeset
   614
  Position.setmp_thread_data pos f x;
25799
7a204e0467f8 maintain thread transition properties;
wenzelm
parents: 25796
diff changeset
   615
27606
82399f3a8ca8 support for command status;
wenzelm
parents: 27603
diff changeset
   616
fun status tr m =
43665
573d1272f36d tuned signature;
wenzelm
parents: 42360
diff changeset
   617
  setmp_thread_position tr (fn () => Output.status (Markup.markup_only m)) ();
27606
82399f3a8ca8 support for command status;
wenzelm
parents: 27603
diff changeset
   618
25799
7a204e0467f8 maintain thread transition properties;
wenzelm
parents: 25796
diff changeset
   619
28095
7eaf0813bdc3 added add_hook interface for post-transition hooks;
wenzelm
parents: 27859
diff changeset
   620
(* post-transition hooks *)
7eaf0813bdc3 added add_hook interface for post-transition hooks;
wenzelm
parents: 27859
diff changeset
   621
37905
wenzelm
parents: 37865
diff changeset
   622
local
wenzelm
parents: 37865
diff changeset
   623
  val hooks = Unsynchronized.ref ([]: (transition -> state -> state -> unit) list);
wenzelm
parents: 37865
diff changeset
   624
in
28095
7eaf0813bdc3 added add_hook interface for post-transition hooks;
wenzelm
parents: 27859
diff changeset
   625
32738
15bb09ca0378 explicit indication of Unsynchronized.ref;
wenzelm
parents: 32062
diff changeset
   626
fun add_hook f = CRITICAL (fn () => Unsynchronized.change hooks (cons f));
33223
d27956b4d3b4 non-critical atomic accesses;
wenzelm
parents: 32792
diff changeset
   627
fun get_hooks () = ! hooks;
28095
7eaf0813bdc3 added add_hook interface for post-transition hooks;
wenzelm
parents: 27859
diff changeset
   628
7eaf0813bdc3 added add_hook interface for post-transition hooks;
wenzelm
parents: 27859
diff changeset
   629
end;
7eaf0813bdc3 added add_hook interface for post-transition hooks;
wenzelm
parents: 27859
diff changeset
   630
7eaf0813bdc3 added add_hook interface for post-transition hooks;
wenzelm
parents: 27859
diff changeset
   631
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   632
(* apply transitions *)
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   633
51217
65ab2c4f4c32 support for prescient timing information within command transactions;
wenzelm
parents: 51216
diff changeset
   634
fun get_timing (Transition {timing, ...}) = timing;
65ab2c4f4c32 support for prescient timing information within command transactions;
wenzelm
parents: 51216
diff changeset
   635
fun put_timing timing = map_transition (fn (name, pos, int_only, print, no_timing, _, trans) =>
65ab2c4f4c32 support for prescient timing information within command transactions;
wenzelm
parents: 51216
diff changeset
   636
  (name, pos, int_only, print, no_timing, timing, trans));
65ab2c4f4c32 support for prescient timing information within command transactions;
wenzelm
parents: 51216
diff changeset
   637
6664
f679ddd1ddd8 cleaned comments;
wenzelm
parents: 6244
diff changeset
   638
local
f679ddd1ddd8 cleaned comments;
wenzelm
parents: 6244
diff changeset
   639
51241
83252b0605be make SML/NJ happy;
wenzelm
parents: 51239
diff changeset
   640
fun timing_message tr (t: Timing.timing) =
51282
3d3c1ea0a401 tuned 2464ba6e6fc9 -- NB: approximative_id is NONE for PIDE document transactions;
wenzelm
parents: 51278
diff changeset
   641
  if Timing.is_relevant_time (#elapsed t) then
51228
dff3471dd8bc more tight representation of command timing;
wenzelm
parents: 51226
diff changeset
   642
    (case approximative_id tr of
dff3471dd8bc more tight representation of command timing;
wenzelm
parents: 51226
diff changeset
   643
      SOME id =>
dff3471dd8bc more tight representation of command timing;
wenzelm
parents: 51226
diff changeset
   644
        (Output.protocol_message
dff3471dd8bc more tight representation of command timing;
wenzelm
parents: 51226
diff changeset
   645
          (Markup.command_timing :: Markup.command_timing_properties id (#elapsed t)) ""
dff3471dd8bc more tight representation of command timing;
wenzelm
parents: 51226
diff changeset
   646
        handle Fail _ => ())
dff3471dd8bc more tight representation of command timing;
wenzelm
parents: 51226
diff changeset
   647
    | NONE => ())
51216
e6e7685fc8f8 emit command_timing properties into build log;
wenzelm
parents: 50917
diff changeset
   648
  else ();
e6e7685fc8f8 emit command_timing properties into build log;
wenzelm
parents: 50917
diff changeset
   649
32792
a08a2b962a09 eliminated dead code;
wenzelm
parents: 32738
diff changeset
   650
fun app int (tr as Transition {trans, print, no_timing, ...}) =
25819
e6feb08b7f4b replaced thread_properties by simplified version in position.ML;
wenzelm
parents: 25809
diff changeset
   651
  setmp_thread_position tr (fn state =>
25799
7a204e0467f8 maintain thread transition properties;
wenzelm
parents: 25796
diff changeset
   652
    let
7a204e0467f8 maintain thread transition properties;
wenzelm
parents: 25796
diff changeset
   653
      fun do_timing f x = (warning (command_msg "" tr); timeap f x);
7a204e0467f8 maintain thread transition properties;
wenzelm
parents: 25796
diff changeset
   654
      fun do_profiling f x = profile (! profiling) f x;
7a204e0467f8 maintain thread transition properties;
wenzelm
parents: 25796
diff changeset
   655
51216
e6e7685fc8f8 emit command_timing properties into build log;
wenzelm
parents: 50917
diff changeset
   656
      val start = Timing.start ();
e6e7685fc8f8 emit command_timing properties into build log;
wenzelm
parents: 50917
diff changeset
   657
26256
3e7939e978c6 added exception CONTEXT, indicating context of another exception;
wenzelm
parents: 26081
diff changeset
   658
      val (result, status) =
37905
wenzelm
parents: 37865
diff changeset
   659
         state |>
wenzelm
parents: 37865
diff changeset
   660
          (apply_trans int trans
wenzelm
parents: 37865
diff changeset
   661
            |> (! profiling > 0 andalso not no_timing) ? do_profiling
wenzelm
parents: 37865
diff changeset
   662
            |> (! profiling > 0 orelse ! timing andalso not no_timing) ? do_timing);
26256
3e7939e978c6 added exception CONTEXT, indicating context of another exception;
wenzelm
parents: 26081
diff changeset
   663
26621
78b3ad7af5d5 eliminated unused name_of, source, source_of, print', print3, three_buffersN;
wenzelm
parents: 26602
diff changeset
   664
      val _ = if int andalso not (! quiet) andalso print then print_state false result else ();
51216
e6e7685fc8f8 emit command_timing properties into build log;
wenzelm
parents: 50917
diff changeset
   665
e6e7685fc8f8 emit command_timing properties into build log;
wenzelm
parents: 50917
diff changeset
   666
      val _ = timing_message tr (Timing.result start);
26256
3e7939e978c6 added exception CONTEXT, indicating context of another exception;
wenzelm
parents: 26081
diff changeset
   667
    in (result, Option.map (fn UNDEF => type_error tr state | exn => exn) status) end);
6664
f679ddd1ddd8 cleaned comments;
wenzelm
parents: 6244
diff changeset
   668
f679ddd1ddd8 cleaned comments;
wenzelm
parents: 6244
diff changeset
   669
in
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   670
26602
5534b6a6b810 made purely value-oriented, moved global state to structure Isar (cf. isar.ML);
wenzelm
parents: 26491
diff changeset
   671
fun transition int tr st =
28095
7eaf0813bdc3 added add_hook interface for post-transition hooks;
wenzelm
parents: 27859
diff changeset
   672
  let
7eaf0813bdc3 added add_hook interface for post-transition hooks;
wenzelm
parents: 27859
diff changeset
   673
    val hooks = get_hooks ();
28103
b79e61861f0f simplified Toplevel.add_hook: cover successful transactions only;
wenzelm
parents: 28095
diff changeset
   674
    fun apply_hooks st' = hooks |> List.app (fn f => (try (fn () => f tr st st') (); ()));
28095
7eaf0813bdc3 added add_hook interface for post-transition hooks;
wenzelm
parents: 27859
diff changeset
   675
7eaf0813bdc3 added add_hook interface for post-transition hooks;
wenzelm
parents: 27859
diff changeset
   676
    val ctxt = try context_of st;
7eaf0813bdc3 added add_hook interface for post-transition hooks;
wenzelm
parents: 27859
diff changeset
   677
    val res =
7eaf0813bdc3 added add_hook interface for post-transition hooks;
wenzelm
parents: 27859
diff changeset
   678
      (case app int tr st of
38888
8248cda328de moved Toplevel.run_command to Pure/PIDE/document.ML;
wenzelm
parents: 38876
diff changeset
   679
        (_, SOME Runtime.TERMINATE) => NONE
8248cda328de moved Toplevel.run_command to Pure/PIDE/document.ML;
wenzelm
parents: 38876
diff changeset
   680
      | (st', SOME (Runtime.EXCURSION_FAIL exn_info)) => SOME (st', SOME exn_info)
31476
c5d2899b6de9 moved Isar toplevel runtime support to runtime.ML, which is loaded early (before ml_compiler.ML);
wenzelm
parents: 31431
diff changeset
   681
      | (st', SOME exn) => SOME (st', SOME (Runtime.exn_context ctxt exn, at_command tr))
28103
b79e61861f0f simplified Toplevel.add_hook: cover successful transactions only;
wenzelm
parents: 28095
diff changeset
   682
      | (st', NONE) => SOME (st', NONE));
b79e61861f0f simplified Toplevel.add_hook: cover successful transactions only;
wenzelm
parents: 28095
diff changeset
   683
    val _ = (case res of SOME (st', NONE) => apply_hooks st' | _ => ());
28095
7eaf0813bdc3 added add_hook interface for post-transition hooks;
wenzelm
parents: 27859
diff changeset
   684
  in res end;
6664
f679ddd1ddd8 cleaned comments;
wenzelm
parents: 6244
diff changeset
   685
f679ddd1ddd8 cleaned comments;
wenzelm
parents: 6244
diff changeset
   686
end;
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   687
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   688
51284
59a03019f3bf fork diagnostic commands (theory loader and PIDE interaction);
wenzelm
parents: 51282
diff changeset
   689
(* managed commands *)
5828
1feeadaad6a9 The Isabelle/Isar toplevel.
wenzelm
parents:
diff changeset
   690
51323
wenzelm
parents: 51322
diff changeset
   691
fun command_errors int tr st =
wenzelm
parents: 51322
diff changeset
   692
  (case transition int tr st of
wenzelm
parents: 51322
diff changeset
   693
    SOME (st', NONE) => ([], SOME st')
wenzelm
parents: 51322
diff changeset
   694
  | SOME (_, SOME (exn, _)) => (ML_Compiler.exn_messages_ids exn, NONE)
wenzelm
parents: 51322
diff changeset
   695
  | NONE => (ML_Compiler.exn_messages_ids Runtime.TERMINATE, NONE));
wenzelm
parents: 51322
diff changeset
   696
51284
59a03019f3bf fork diagnostic commands (theory loader and PIDE interaction);
wenzelm
parents: 51282
diff changeset
   697
fun command_exception int tr st =
59a03019f3bf fork diagnostic commands (theory loader and PIDE interaction);
wenzelm
parents: 51282
diff changeset
   698
  (case transition int tr st of
28425
25d6099179a6 export setmp_thread_position;
wenzelm
parents: 28394
diff changeset
   699
    SOME (st', NONE) => st'
39285
85728a4b5620 avoid extra wrapping for interrupts;
wenzelm
parents: 39237
diff changeset
   700
  | SOME (_, SOME (exn, info)) =>
85728a4b5620 avoid extra wrapping for interrupts;
wenzelm
parents: 39237
diff changeset
   701
      if Exn.is_interrupt exn then reraise exn else raise Runtime.EXCURSION_FAIL (exn, info)
38888
8248cda328de moved Toplevel.run_command to Pure/PIDE/document.ML;
wenzelm
parents: 38876
diff changeset
   702
  | NONE => raise Runtime.EXCURSION_FAIL (Runtime.TERMINATE, at_command tr));
27576
7afff36043e6 eliminated internal command history -- superceeded by global Isar state (cf. isar.ML);
wenzelm
parents: 27564
diff changeset
   703
51323
wenzelm
parents: 51322
diff changeset
   704
fun command tr = command_exception (! interact) tr;
51284
59a03019f3bf fork diagnostic commands (theory loader and PIDE interaction);
wenzelm
parents: 51282
diff changeset
   705
28433
b3dab95f098f begin_proof: avoid race condition wrt. skip_proofs flag;
wenzelm
parents: 28425
diff changeset
   706
46959
cdc791910460 defer actual parsing of command spans and thus allow new commands to be used in the same theory where defined;
wenzelm
parents: 45666
diff changeset
   707
(* scheduled proof result *)
28433
b3dab95f098f begin_proof: avoid race condition wrt. skip_proofs flag;
wenzelm
parents: 28425
diff changeset
   708
51332
8707df0b0255 refined parallel_proofs = 2: fork whole Isar sub-proofs, not just terminal ones;
wenzelm
parents: 51324
diff changeset
   709
datatype result =
8707df0b0255 refined parallel_proofs = 2: fork whole Isar sub-proofs, not just terminal ones;
wenzelm
parents: 51324
diff changeset
   710
  Result of transition * state |
8707df0b0255 refined parallel_proofs = 2: fork whole Isar sub-proofs, not just terminal ones;
wenzelm
parents: 51324
diff changeset
   711
  Result_List of result list |
8707df0b0255 refined parallel_proofs = 2: fork whole Isar sub-proofs, not just terminal ones;
wenzelm
parents: 51324
diff changeset
   712
  Result_Future of result future;
8707df0b0255 refined parallel_proofs = 2: fork whole Isar sub-proofs, not just terminal ones;
wenzelm
parents: 51324
diff changeset
   713
8707df0b0255 refined parallel_proofs = 2: fork whole Isar sub-proofs, not just terminal ones;
wenzelm
parents: 51324
diff changeset
   714
fun join_results (Result x) = [x]
8707df0b0255 refined parallel_proofs = 2: fork whole Isar sub-proofs, not just terminal ones;
wenzelm
parents: 51324
diff changeset
   715
  | join_results (Result_List xs) = maps join_results xs
8707df0b0255 refined parallel_proofs = 2: fork whole Isar sub-proofs, not just terminal ones;
wenzelm
parents: 51324
diff changeset
   716
  | join_results (Result_Future x) = join_results (Future.join x);
8707df0b0255 refined parallel_proofs = 2: fork whole Isar sub-proofs, not just terminal ones;
wenzelm
parents: 51324
diff changeset
   717
51323
wenzelm
parents: 51322
diff changeset
   718
local
wenzelm
parents: 51322
diff changeset
   719
47417
9679bab23f93 misc tuning and simplification;
wenzelm
parents: 47416
diff changeset
   720
structure Result = Proof_Data
28974
d6b190efa01a excursion: pass explicit proof states as result of future proof, replaced low-level Thm.join_futures by PureThy.force_proofs;
wenzelm
parents: 28645
diff changeset
   721
(
51332
8707df0b0255 refined parallel_proofs = 2: fork whole Isar sub-proofs, not just terminal ones;
wenzelm
parents: 51324
diff changeset
   722
  type T = result;
8707df0b0255 refined parallel_proofs = 2: fork whole Isar sub-proofs, not just terminal ones;
wenzelm
parents: 51324
diff changeset
   723
  val empty: T = Result_List [];
47417
9679bab23f93 misc tuning and simplification;
wenzelm
parents: 47416
diff changeset
   724
  fun init _ = empty;
28974
d6b190efa01a excursion: pass explicit proof states as result of future proof, replaced low-level Thm.join_futures by PureThy.force_proofs;
wenzelm
parents: 28645
diff changeset
   725
);
d6b190efa01a excursion: pass explicit proof states as result of future proof, replaced low-level Thm.join_futures by PureThy.force_proofs;
wenzelm
parents: 28645
diff changeset
   726
51332
8707df0b0255 refined parallel_proofs = 2: fork whole Isar sub-proofs, not just terminal ones;
wenzelm
parents: 51324
diff changeset
   727
val get_result = Result.get o Proof.context_of;
8707df0b0255 refined parallel_proofs = 2: fork whole Isar sub-proofs, not just terminal ones;
wenzelm
parents: 51324
diff changeset
   728
val put_result = Proof.map_context o Result.put;
51324
c17f5de0a915 uniform treatment of global/local proofs;
wenzelm
parents: 51323
diff changeset
   729
c17f5de0a915 uniform treatment of global/local proofs;
wenzelm
parents: 51323
diff changeset
   730
fun proof_future_enabled st =
c17f5de0a915 uniform treatment of global/local proofs;
wenzelm
parents: 51323
diff changeset
   731
  (case try proof_of st of
c17f5de0a915 uniform treatment of global/local proofs;
wenzelm
parents: 51323
diff changeset
   732
    NONE => false
c17f5de0a915 uniform treatment of global/local proofs;
wenzelm
parents: 51323
diff changeset
   733
  | SOME state =>
c17f5de0a915 uniform treatment of global/local proofs;
wenzelm
parents: 51323
diff changeset
   734
      not (Proof.is_relevant state) andalso
c17f5de0a915 uniform treatment of global/local proofs;
wenzelm
parents: 51323
diff changeset
   735
       (if can (Proof.assert_bottom true) state
c17f5de0a915 uniform treatment of global/local proofs;
wenzelm
parents: 51323
diff changeset
   736
        then Goal.future_enabled ()
c17f5de0a915 uniform treatment of global/local proofs;
wenzelm
parents: 51323
diff changeset
   737
        else Goal.future_enabled_nested 2));
c17f5de0a915 uniform treatment of global/local proofs;
wenzelm
parents: 51323
diff changeset
   738
51321
75682dfff630 more Thy_Syntax.element operations;
wenzelm
parents: 51318
diff changeset
   739
fun priority elem =
75682dfff630 more Thy_Syntax.element operations;
wenzelm
parents: 51318
diff changeset
   740
  let
75682dfff630 more Thy_Syntax.element operations;
wenzelm
parents: 51318
diff changeset
   741
    val estimate = Thy_Syntax.fold_element (curry Time.+ o get_timing) elem Time.zeroTime;
75682dfff630 more Thy_Syntax.element operations;
wenzelm
parents: 51318
diff changeset
   742
  in
51278
wenzelm
parents: 51274
diff changeset
   743
    if estimate = Time.zeroTime then ~1
wenzelm
parents: 51274
diff changeset
   744
    else Int.min (Real.floor (Real.max (Math.log10 (Time.toReal estimate), ~3.0)) - 3, ~1)
wenzelm
parents: 51274
diff changeset
   745
  end;
wenzelm
parents: 51274
diff changeset
   746
51323
wenzelm
parents: 51322
diff changeset
   747
fun atom_result tr st =
wenzelm
parents: 51322
diff changeset
   748
  let
wenzelm
parents: 51322
diff changeset
   749
    val st' =
wenzelm
parents: 51322
diff changeset
   750
      if Goal.future_enabled () andalso Keyword.is_diag (name_of tr) then
wenzelm
parents: 51322
diff changeset
   751
        setmp_thread_position tr (fn () =>
wenzelm
parents: 51322
diff changeset
   752
          (Goal.fork_name "Toplevel.diag" (priority (Thy_Syntax.atom tr))
wenzelm
parents: 51322
diff changeset
   753
            (fn () => command tr st); st)) ()
wenzelm
parents: 51322
diff changeset
   754
      else command tr st;
51332
8707df0b0255 refined parallel_proofs = 2: fork whole Isar sub-proofs, not just terminal ones;
wenzelm
parents: 51324
diff changeset
   755
  in (Result (tr, st'), st') end;
51323
wenzelm
parents: 51322
diff changeset
   756
wenzelm
parents: 51322
diff changeset
   757
in
wenzelm
parents: 51322
diff changeset
   758
51332
8707df0b0255 refined parallel_proofs = 2: fork whole Isar sub-proofs, not just terminal ones;
wenzelm
parents: 51324
diff changeset
   759
fun element_result (Thy_Syntax.Element (tr, NONE)) st = atom_result tr st
8707df0b0255 refined parallel_proofs = 2: fork whole Isar sub-proofs, not just terminal ones;
wenzelm
parents: 51324
diff changeset
   760
  | element_result (Thy_Syntax.Element (head_tr, SOME element_rest)) st =
48633
7cd32f9d4293 recovered comination of Toplevel.skip_proofs and Goal.parallel_proofs from 9679bab23f93 (NB: skip_proofs leads to failure of Toplevel.proof_of);
wenzelm
parents: 47881
diff changeset
   761
      let
51324
c17f5de0a915 uniform treatment of global/local proofs;
wenzelm
parents: 51323
diff changeset
   762
        val (head_result, st') = atom_result head_tr st;
51332
8707df0b0255 refined parallel_proofs = 2: fork whole Isar sub-proofs, not just terminal ones;
wenzelm
parents: 51324
diff changeset
   763
        val (body_elems, end_tr) = element_rest;
51324
c17f5de0a915 uniform treatment of global/local proofs;
wenzelm
parents: 51323
diff changeset
   764
      in
c17f5de0a915 uniform treatment of global/local proofs;
wenzelm
parents: 51323
diff changeset
   765
        if not (proof_future_enabled st')
c17f5de0a915 uniform treatment of global/local proofs;
wenzelm
parents: 51323
diff changeset
   766
        then
51332
8707df0b0255 refined parallel_proofs = 2: fork whole Isar sub-proofs, not just terminal ones;
wenzelm
parents: 51324
diff changeset
   767
          let
8707df0b0255 refined parallel_proofs = 2: fork whole Isar sub-proofs, not just terminal ones;
wenzelm
parents: 51324
diff changeset
   768
            val proof_trs = maps Thy_Syntax.flat_element body_elems @ [end_tr];
8707df0b0255 refined parallel_proofs = 2: fork whole Isar sub-proofs, not just terminal ones;
wenzelm
parents: 51324
diff changeset
   769
            val (proof_results, st'') = fold_map atom_result proof_trs st';
8707df0b0255 refined parallel_proofs = 2: fork whole Isar sub-proofs, not just terminal ones;
wenzelm
parents: 51324
diff changeset
   770
          in (Result_List (head_result :: proof_results), st'') end
51324
c17f5de0a915 uniform treatment of global/local proofs;
wenzelm
parents: 51323
diff changeset
   771
        else
c17f5de0a915 uniform treatment of global/local proofs;
wenzelm
parents: 51323
diff changeset
   772
          let
c17f5de0a915 uniform treatment of global/local proofs;
wenzelm
parents: 51323
diff changeset
   773
            val finish = Context.Theory o Proof_Context.theory_of;
28974
d6b190efa01a excursion: pass explicit proof states as result of future proof, replaced low-level Thm.join_futures by PureThy.force_proofs;
wenzelm
parents: 28645
diff changeset
   774
51324
c17f5de0a915 uniform treatment of global/local proofs;
wenzelm
parents: 51323
diff changeset
   775
            val future_proof = Proof.future_proof
51332
8707df0b0255 refined parallel_proofs = 2: fork whole Isar sub-proofs, not just terminal ones;
wenzelm
parents: 51324
diff changeset
   776
              (fn state =>
51324
c17f5de0a915 uniform treatment of global/local proofs;
wenzelm
parents: 51323
diff changeset
   777
                setmp_thread_position head_tr (fn () =>
c17f5de0a915 uniform treatment of global/local proofs;
wenzelm
parents: 51323
diff changeset
   778
                  Goal.fork_name "Toplevel.future_proof"
51332
8707df0b0255 refined parallel_proofs = 2: fork whole Isar sub-proofs, not just terminal ones;
wenzelm
parents: 51324
diff changeset
   779
                    (priority (Thy_Syntax.Element (empty, SOME element_rest)))
51324
c17f5de0a915 uniform treatment of global/local proofs;
wenzelm
parents: 51323
diff changeset
   780
                    (fn () =>
51332
8707df0b0255 refined parallel_proofs = 2: fork whole Isar sub-proofs, not just terminal ones;
wenzelm
parents: 51324
diff changeset
   781
                      let
8707df0b0255 refined parallel_proofs = 2: fork whole Isar sub-proofs, not just terminal ones;
wenzelm
parents: 51324
diff changeset
   782
                        val State (SOME (Proof (prf, (_, orig_gthy))), prev) = st';
8707df0b0255 refined parallel_proofs = 2: fork whole Isar sub-proofs, not just terminal ones;
wenzelm
parents: 51324
diff changeset
   783
                        val prf' = Proof_Node.apply (K state) prf;
8707df0b0255 refined parallel_proofs = 2: fork whole Isar sub-proofs, not just terminal ones;
wenzelm
parents: 51324
diff changeset
   784
                        val (result, result_state) =
8707df0b0255 refined parallel_proofs = 2: fork whole Isar sub-proofs, not just terminal ones;
wenzelm
parents: 51324
diff changeset
   785
                          State (SOME (Proof (prf', (finish, orig_gthy))), prev)
8707df0b0255 refined parallel_proofs = 2: fork whole Isar sub-proofs, not just terminal ones;
wenzelm
parents: 51324
diff changeset
   786
                          |> fold_map element_result body_elems ||> command end_tr;
8707df0b0255 refined parallel_proofs = 2: fork whole Isar sub-proofs, not just terminal ones;
wenzelm
parents: 51324
diff changeset
   787
                      in (Result_List result, presentation_context_of result_state) end)) ())
8707df0b0255 refined parallel_proofs = 2: fork whole Isar sub-proofs, not just terminal ones;
wenzelm
parents: 51324
diff changeset
   788
              #> (fn (res, state') => state' |> put_result (Result_Future res));
8707df0b0255 refined parallel_proofs = 2: fork whole Isar sub-proofs, not just terminal ones;
wenzelm
parents: 51324
diff changeset
   789
8707df0b0255 refined parallel_proofs = 2: fork whole Isar sub-proofs, not just terminal ones;
wenzelm
parents: 51324
diff changeset
   790
            val forked_proof =
8707df0b0255 refined parallel_proofs = 2: fork whole Isar sub-proofs, not just terminal ones;
wenzelm
parents: 51324
diff changeset
   791
              proof (future_proof #>
8707df0b0255 refined parallel_proofs = 2: fork whole Isar sub-proofs, not just terminal ones;
wenzelm
parents: 51324
diff changeset
   792
                (fn state => state |> Proof.local_done_proof |> put_result (get_result state))) o
8707df0b0255 refined parallel_proofs = 2: fork whole Isar sub-proofs, not just terminal ones;
wenzelm
parents: 51324
diff changeset
   793
              end_proof (fn _ => future_proof #>
8707df0b0255 refined parallel_proofs = 2: fork whole Isar sub-proofs, not just terminal ones;
wenzelm
parents: 51324
diff changeset
   794
                (fn state => state |> Proof.global_done_proof |> Result.put (get_result state)));
28974
d6b190efa01a excursion: pass explicit proof states as result of future proof, replaced low-level Thm.join_futures by PureThy.force_proofs;
wenzelm
parents: 28645
diff changeset
   795
51324
c17f5de0a915 uniform treatment of global/local proofs;
wenzelm
parents: 51323
diff changeset
   796
            val st'' = st'
51332
8707df0b0255 refined parallel_proofs = 2: fork whole Isar sub-proofs, not just terminal ones;
wenzelm
parents: 51324
diff changeset
   797
              |> command (head_tr |> set_print false |> reset_trans |> forked_proof);
8707df0b0255 refined parallel_proofs = 2: fork whole Isar sub-proofs, not just terminal ones;
wenzelm
parents: 51324
diff changeset
   798
            val end_result = Result (end_tr, st'');
51324
c17f5de0a915 uniform treatment of global/local proofs;
wenzelm
parents: 51323
diff changeset
   799
            val result =
51332
8707df0b0255 refined parallel_proofs = 2: fork whole Isar sub-proofs, not just terminal ones;
wenzelm
parents: 51324
diff changeset
   800
              Result_List [head_result, Result.get (presentation_context_of st''), end_result];
51324
c17f5de0a915 uniform treatment of global/local proofs;
wenzelm
parents: 51323
diff changeset
   801
          in (result, st'') end
c17f5de0a915 uniform treatment of global/local proofs;
wenzelm
parents: 51323
diff changeset
   802
      end;
28433
b3dab95f098f begin_proof: avoid race condition wrt. skip_proofs flag;
wenzelm
parents: 28425
diff changeset
   803
6664
f679ddd1ddd8 cleaned comments;
wenzelm
parents: 6244
diff changeset
   804
end;
51323
wenzelm
parents: 51322
diff changeset
   805
wenzelm
parents: 51322
diff changeset
   806
end;