src/Pure/Isar/toplevel.ML
author wenzelm
Mon, 09 Mar 2009 21:26:13 +0100
changeset 30398 d7ac4b7aa590
parent 30366 e3d788b9dffb
child 30423 9e9b8adddb93
permissions -rw-r--r--
simplified presentation_context_of;
wenzelm@5828
     1
(*  Title:      Pure/Isar/toplevel.ML
wenzelm@5828
     2
    Author:     Markus Wenzel, TU Muenchen
wenzelm@5828
     3
wenzelm@26602
     4
Isabelle/Isar toplevel transactions.
wenzelm@5828
     5
*)
wenzelm@5828
     6
wenzelm@5828
     7
signature TOPLEVEL =
wenzelm@5828
     8
sig
wenzelm@19063
     9
  exception UNDEF
wenzelm@20963
    10
  type generic_theory
wenzelm@18589
    11
  type node
wenzelm@20963
    12
  val theory_node: node -> generic_theory option
wenzelm@27564
    13
  val proof_node: node -> ProofNode.T option
wenzelm@20963
    14
  val cases_node: (generic_theory -> 'a) -> (Proof.state -> 'a) -> node -> 'a
wenzelm@29066
    15
  val context_node: node -> Proof.context
wenzelm@5828
    16
  type state
wenzelm@26602
    17
  val toplevel: state
wenzelm@7732
    18
  val is_toplevel: state -> bool
wenzelm@18589
    19
  val is_theory: state -> bool
wenzelm@18589
    20
  val is_proof: state -> bool
wenzelm@17076
    21
  val level: state -> int
wenzelm@27576
    22
  val previous_node_of: state -> node option
wenzelm@5828
    23
  val node_of: state -> node
wenzelm@20963
    24
  val node_case: (generic_theory -> 'a) -> (Proof.state -> 'a) -> state -> 'a
wenzelm@30398
    25
  val presentation_context_of: state -> Proof.context
wenzelm@21506
    26
  val context_of: state -> Proof.context
wenzelm@22089
    27
  val generic_theory_of: state -> generic_theory
wenzelm@5828
    28
  val theory_of: state -> theory
wenzelm@5828
    29
  val proof_of: state -> Proof.state
wenzelm@18589
    30
  val proof_position_of: state -> int
wenzelm@21007
    31
  val enter_proof_body: state -> Proof.state
wenzelm@16815
    32
  val print_state_context: state -> unit
wenzelm@16815
    33
  val print_state: bool -> state -> unit
wenzelm@16682
    34
  val quiet: bool ref
wenzelm@16682
    35
  val debug: bool ref
wenzelm@17321
    36
  val interact: bool ref
wenzelm@16682
    37
  val timing: bool ref
wenzelm@16682
    38
  val profiling: int ref
wenzelm@16815
    39
  val skip_proofs: bool ref
wenzelm@5828
    40
  exception TERMINATE
wenzelm@27583
    41
  exception TOPLEVEL_ERROR
wenzelm@26256
    42
  exception CONTEXT of Proof.context * exn
wenzelm@20128
    43
  val exn_message: exn -> string
wenzelm@20128
    44
  val program: (unit -> 'a) -> 'a
wenzelm@16682
    45
  type transition
wenzelm@5828
    46
  val empty: transition
wenzelm@27441
    47
  val init_of: transition -> string option
wenzelm@27427
    48
  val name_of: transition -> string
wenzelm@28105
    49
  val pos_of: transition -> Position.T
wenzelm@27500
    50
  val str_of: transition -> string
wenzelm@5828
    51
  val name: string -> transition -> transition
wenzelm@5828
    52
  val position: Position.T -> transition -> transition
wenzelm@5828
    53
  val interactive: bool -> transition -> transition
wenzelm@5828
    54
  val print: transition -> transition
wenzelm@9010
    55
  val no_timing: transition -> transition
wenzelm@27576
    56
  val init_theory: string -> (bool -> theory) -> (theory -> unit) -> transition -> transition
wenzelm@6689
    57
  val exit: transition -> transition
wenzelm@5828
    58
  val keep: (state -> unit) -> transition -> transition
wenzelm@7612
    59
  val keep': (bool -> state -> unit) -> transition -> transition
wenzelm@5828
    60
  val imperative: (unit -> unit) -> transition -> transition
wenzelm@27840
    61
  val ignored: Position.T -> transition
wenzelm@27840
    62
  val malformed: Position.T -> string -> transition
wenzelm@5828
    63
  val theory: (theory -> theory) -> transition -> transition
wenzelm@26491
    64
  val generic_theory: (generic_theory -> generic_theory) -> transition -> transition
wenzelm@7612
    65
  val theory': (bool -> theory -> theory) -> transition -> transition
wenzelm@20985
    66
  val begin_local_theory: bool -> (theory -> local_theory) -> transition -> transition
wenzelm@21007
    67
  val end_local_theory: transition -> transition
wenzelm@29380
    68
  val local_theory': xstring option -> (bool -> local_theory -> local_theory) ->
wenzelm@29380
    69
    transition -> transition
wenzelm@20963
    70
  val local_theory: xstring option -> (local_theory -> local_theory) -> transition -> transition
wenzelm@30366
    71
  val present_local_theory: xstring option -> (state -> unit) -> transition -> transition
berghofe@24453
    72
  val local_theory_to_proof': xstring option -> (bool -> local_theory -> Proof.state) ->
berghofe@24453
    73
    transition -> transition
wenzelm@21007
    74
  val local_theory_to_proof: xstring option -> (local_theory -> Proof.state) ->
wenzelm@21007
    75
    transition -> transition
wenzelm@17363
    76
  val theory_to_proof: (theory -> Proof.state) -> transition -> transition
wenzelm@21007
    77
  val end_proof: (bool -> Proof.state -> Proof.context) -> transition -> transition
wenzelm@21007
    78
  val forget_proof: transition -> transition
wenzelm@30366
    79
  val present_proof: (state -> unit) -> transition -> transition
wenzelm@21177
    80
  val proofs': (bool -> Proof.state -> Proof.state Seq.seq) -> transition -> transition
wenzelm@21177
    81
  val proof': (bool -> Proof.state -> Proof.state) -> transition -> transition
wenzelm@21177
    82
  val proofs: (Proof.state -> Proof.state Seq.seq) -> transition -> transition
wenzelm@17904
    83
  val proof: (Proof.state -> Proof.state) -> transition -> transition
wenzelm@27564
    84
  val actual_proof: (ProofNode.T -> ProofNode.T) -> transition -> transition
wenzelm@27564
    85
  val skip_proof: (int -> int) -> transition -> transition
wenzelm@17904
    86
  val skip_proof_to_theory: (int -> bool) -> transition -> transition
wenzelm@27427
    87
  val get_id: transition -> string option
wenzelm@27427
    88
  val put_id: string -> transition -> transition
wenzelm@9512
    89
  val unknown_theory: transition -> transition
wenzelm@9512
    90
  val unknown_proof: transition -> transition
wenzelm@9512
    91
  val unknown_context: transition -> transition
wenzelm@28425
    92
  val setmp_thread_position: transition -> ('a -> 'b) -> 'a -> 'b
wenzelm@27606
    93
  val status: transition -> Markup.T -> unit
wenzelm@26602
    94
  val error_msg: transition -> exn * string -> unit
wenzelm@28103
    95
  val add_hook: (transition -> state -> state -> unit) -> unit
wenzelm@26602
    96
  val transition: bool -> transition -> state -> (state * (exn * string) option) option
wenzelm@28425
    97
  val commit_exit: Position.T -> transition
wenzelm@28425
    98
  val command: transition -> state -> state
wenzelm@29516
    99
  val run_command: string -> transition -> state -> state option
wenzelm@29427
   100
  val excursion: (transition * transition list) list -> (transition * state) list lazy
wenzelm@5828
   101
end;
wenzelm@5828
   102
wenzelm@6965
   103
structure Toplevel: TOPLEVEL =
wenzelm@5828
   104
struct
wenzelm@5828
   105
wenzelm@5828
   106
(** toplevel state **)
wenzelm@5828
   107
wenzelm@19063
   108
exception UNDEF;
wenzelm@19063
   109
wenzelm@19063
   110
wenzelm@21294
   111
(* local theory wrappers *)
wenzelm@5828
   112
wenzelm@20963
   113
type generic_theory = Context.generic;    (*theory or local_theory*)
wenzelm@20963
   114
wenzelm@25292
   115
val loc_init = TheoryTarget.context;
wenzelm@28394
   116
val loc_exit = LocalTheory.exit_global;
wenzelm@21294
   117
wenzelm@25292
   118
fun loc_begin loc (Context.Theory thy) = loc_init (the_default "-" loc) thy
wenzelm@21294
   119
  | loc_begin NONE (Context.Proof lthy) = lthy
haftmann@25269
   120
  | loc_begin (SOME loc) (Context.Proof lthy) = loc_init loc (loc_exit lthy);
wenzelm@21294
   121
wenzelm@21294
   122
fun loc_finish _ (Context.Theory _) = Context.Theory o loc_exit
wenzelm@21294
   123
  | loc_finish NONE (Context.Proof _) = Context.Proof o LocalTheory.restore
wenzelm@25292
   124
  | loc_finish (SOME _) (Context.Proof lthy) = fn lthy' =>
wenzelm@25292
   125
      Context.Proof (LocalTheory.reinit (LocalTheory.raw_theory (K (loc_exit lthy')) lthy));
wenzelm@21294
   126
wenzelm@21294
   127
wenzelm@21958
   128
(* datatype node *)
wenzelm@21294
   129
wenzelm@5828
   130
datatype node =
wenzelm@27576
   131
  Theory of generic_theory * Proof.context option
wenzelm@27576
   132
    (*theory with presentation context*) |
wenzelm@27576
   133
  Proof of ProofNode.T * ((Proof.context -> generic_theory) * generic_theory)
wenzelm@27576
   134
    (*proof node, finish, original theory*) |
wenzelm@27564
   135
  SkipProof of int * (generic_theory * generic_theory);
wenzelm@27564
   136
    (*proof depth, resulting theory, original theory*)
wenzelm@5828
   137
wenzelm@22056
   138
val the_global_theory = fn Theory (Context.Theory thy, _) => thy | _ => raise UNDEF;
wenzelm@20963
   139
val theory_node = fn Theory (gthy, _) => SOME gthy | _ => NONE;
wenzelm@18589
   140
val proof_node = fn Proof (prf, _) => SOME prf | _ => NONE;
wenzelm@18589
   141
wenzelm@20963
   142
fun cases_node f _ (Theory (gthy, _)) = f gthy
wenzelm@27564
   143
  | cases_node _ g (Proof (prf, _)) = g (ProofNode.current prf)
wenzelm@21007
   144
  | cases_node f _ (SkipProof (_, (gthy, _))) = f gthy;
wenzelm@19063
   145
wenzelm@29066
   146
val context_node = cases_node Context.proof_of Proof.context_of;
wenzelm@29066
   147
wenzelm@5828
   148
wenzelm@21958
   149
(* datatype state *)
wenzelm@5828
   150
wenzelm@27601
   151
type node_info = node * (theory -> unit);  (*node with exit operation*)
wenzelm@27601
   152
datatype state = State of node_info option * node_info option;  (*current, previous*)
wenzelm@21958
   153
wenzelm@27576
   154
val toplevel = State (NONE, NONE);
wenzelm@21958
   155
wenzelm@27576
   156
fun is_toplevel (State (NONE, _)) = true
wenzelm@7732
   157
  | is_toplevel _ = false;
wenzelm@7732
   158
wenzelm@27576
   159
fun level (State (NONE, _)) = 0
wenzelm@27576
   160
  | level (State (SOME (Theory _, _), _)) = 0
wenzelm@27576
   161
  | level (State (SOME (Proof (prf, _), _), _)) = Proof.level (ProofNode.current prf)
wenzelm@27576
   162
  | level (State (SOME (SkipProof (d, _), _), _)) = d + 1;   (*different notion of proof depth!*)
wenzelm@17076
   163
wenzelm@27576
   164
fun str_of_state (State (NONE, _)) = "at top level"
wenzelm@27576
   165
  | str_of_state (State (SOME (Theory (Context.Theory _, _), _), _)) = "in theory mode"
wenzelm@27576
   166
  | str_of_state (State (SOME (Theory (Context.Proof _, _), _), _)) = "in local theory mode"
wenzelm@27576
   167
  | str_of_state (State (SOME (Proof _, _), _)) = "in proof mode"
wenzelm@27576
   168
  | str_of_state (State (SOME (SkipProof _, _), _)) = "in skipped proof mode";
wenzelm@5946
   169
wenzelm@5946
   170
wenzelm@27576
   171
(* current node *)
wenzelm@5828
   172
wenzelm@27603
   173
fun previous_node_of (State (_, prev)) = Option.map #1 prev;
wenzelm@6689
   174
wenzelm@27576
   175
fun node_of (State (NONE, _)) = raise UNDEF
wenzelm@27576
   176
  | node_of (State (SOME (node, _), _)) = node;
wenzelm@5828
   177
wenzelm@18589
   178
fun is_theory state = not (is_toplevel state) andalso is_some (theory_node (node_of state));
wenzelm@18589
   179
fun is_proof state = not (is_toplevel state) andalso is_some (proof_node (node_of state));
wenzelm@18589
   180
wenzelm@19063
   181
fun node_case f g state = cases_node f g (node_of state);
wenzelm@5828
   182
wenzelm@30398
   183
fun presentation_context_of state =
wenzelm@30398
   184
  (case try node_of state of
wenzelm@30398
   185
    SOME (Theory (_, SOME ctxt)) => ctxt
wenzelm@30398
   186
  | SOME node => context_node node
wenzelm@30398
   187
  | NONE => raise UNDEF);
wenzelm@30366
   188
wenzelm@21506
   189
val context_of = node_case Context.proof_of Proof.context_of;
wenzelm@22089
   190
val generic_theory_of = node_case I (Context.Proof o Proof.context_of);
wenzelm@20963
   191
val theory_of = node_case Context.theory_of Proof.theory_of;
wenzelm@18589
   192
val proof_of = node_case (fn _ => raise UNDEF) I;
wenzelm@17208
   193
wenzelm@18589
   194
fun proof_position_of state =
wenzelm@18589
   195
  (case node_of state of
wenzelm@27564
   196
    Proof (prf, _) => ProofNode.position prf
wenzelm@18589
   197
  | _ => raise UNDEF);
wenzelm@6664
   198
wenzelm@21007
   199
val enter_proof_body = node_case (Proof.init o Context.proof_of) Proof.enter_forward;
wenzelm@5828
   200
wenzelm@5828
   201
wenzelm@16815
   202
(* print state *)
wenzelm@16815
   203
wenzelm@25292
   204
val pretty_context = LocalTheory.pretty o Context.cases (TheoryTarget.init NONE) I;
wenzelm@16815
   205
wenzelm@23640
   206
fun print_state_context state =
wenzelm@24795
   207
  (case try node_of state of
wenzelm@21506
   208
    NONE => []
wenzelm@24795
   209
  | SOME (Theory (gthy, _)) => pretty_context gthy
wenzelm@24795
   210
  | SOME (Proof (_, (_, gthy))) => pretty_context gthy
wenzelm@24795
   211
  | SOME (SkipProof (_, (gthy, _))) => pretty_context gthy)
wenzelm@23640
   212
  |> Pretty.chunks |> Pretty.writeln;
wenzelm@16815
   213
wenzelm@23640
   214
fun print_state prf_only state =
wenzelm@23701
   215
  (case try node_of state of
wenzelm@23701
   216
    NONE => []
wenzelm@23701
   217
  | SOME (Theory (gthy, _)) => if prf_only then [] else pretty_context gthy
wenzelm@23701
   218
  | SOME (Proof (prf, _)) =>
wenzelm@27564
   219
      Proof.pretty_state (ProofNode.position prf) (ProofNode.current prf)
wenzelm@27564
   220
  | SOME (SkipProof (d, _)) => [Pretty.str ("skipped proof: depth " ^ string_of_int d)])
wenzelm@23701
   221
  |> Pretty.markup_chunks Markup.state |> Pretty.writeln;
wenzelm@16815
   222
wenzelm@16815
   223
wenzelm@15668
   224
wenzelm@5828
   225
(** toplevel transitions **)
wenzelm@5828
   226
wenzelm@16682
   227
val quiet = ref false;
wenzelm@22135
   228
val debug = Output.debugging;
wenzelm@17321
   229
val interact = ref false;
wenzelm@16682
   230
val timing = Output.timing;
wenzelm@16682
   231
val profiling = ref 0;
wenzelm@16815
   232
val skip_proofs = ref false;
wenzelm@16682
   233
wenzelm@5828
   234
exception TERMINATE;
wenzelm@7022
   235
exception EXCURSION_FAIL of exn * string;
wenzelm@6689
   236
exception FAILURE of state * exn;
wenzelm@24055
   237
exception TOPLEVEL_ERROR;
wenzelm@5828
   238
wenzelm@20128
   239
wenzelm@20128
   240
(* print exceptions *)
wenzelm@20128
   241
wenzelm@26256
   242
exception CONTEXT of Proof.context * exn;
wenzelm@26256
   243
wenzelm@26256
   244
fun exn_context NONE exn = exn
wenzelm@26256
   245
  | exn_context (SOME ctxt) exn = CONTEXT (ctxt, exn);
wenzelm@26256
   246
wenzelm@20128
   247
local
wenzelm@20128
   248
wenzelm@26256
   249
fun if_context NONE _ _ = []
wenzelm@26256
   250
  | if_context (SOME ctxt) f xs = map (f ctxt) xs;
wenzelm@20128
   251
wenzelm@20128
   252
fun raised name [] = "exception " ^ name ^ " raised"
wenzelm@20128
   253
  | raised name [msg] = "exception " ^ name ^ " raised: " ^ msg
wenzelm@20128
   254
  | raised name msgs = cat_lines (("exception " ^ name ^ " raised:") :: msgs);
wenzelm@20128
   255
wenzelm@20128
   256
in
wenzelm@20128
   257
wenzelm@26256
   258
fun exn_message e =
wenzelm@26256
   259
  let
wenzelm@26256
   260
    val detailed = ! debug;
wenzelm@26256
   261
wenzelm@26256
   262
    fun exn_msg _ (CONTEXT (ctxt, exn)) = exn_msg (SOME ctxt) exn
wenzelm@28458
   263
      | exn_msg ctxt (Exn.EXCEPTIONS exns) = cat_lines (map (exn_msg ctxt) exns)
wenzelm@26293
   264
      | exn_msg ctxt (EXCURSION_FAIL (exn, loc)) =
wenzelm@26293
   265
          exn_msg ctxt exn ^ Markup.markup Markup.location ("\n" ^ loc)
wenzelm@26256
   266
      | exn_msg _ TERMINATE = "Exit."
wenzelm@28443
   267
      | exn_msg _ Exn.Interrupt = "Interrupt."
wenzelm@26256
   268
      | exn_msg _ TimeLimit.TimeOut = "Timeout."
wenzelm@26256
   269
      | exn_msg _ TOPLEVEL_ERROR = "Error."
wenzelm@26256
   270
      | exn_msg _ (SYS_ERROR msg) = "## SYSTEM ERROR ##\n" ^ msg
wenzelm@26256
   271
      | exn_msg _ (ERROR msg) = msg
wenzelm@26256
   272
      | exn_msg _ (Fail msg) = raised "Fail" [msg]
wenzelm@26256
   273
      | exn_msg _ (THEORY (msg, thys)) =
wenzelm@26256
   274
          raised "THEORY" (msg :: (if detailed then map Context.str_of_thy thys else []))
wenzelm@26256
   275
      | exn_msg _ (Syntax.AST (msg, asts)) = raised "AST" (msg ::
wenzelm@26256
   276
            (if detailed then map (Pretty.string_of o Syntax.pretty_ast) asts else []))
wenzelm@26256
   277
      | exn_msg ctxt (TYPE (msg, Ts, ts)) = raised "TYPE" (msg ::
wenzelm@26256
   278
            (if detailed then
wenzelm@26256
   279
              if_context ctxt Syntax.string_of_typ Ts @ if_context ctxt Syntax.string_of_term ts
wenzelm@26256
   280
             else []))
wenzelm@26256
   281
      | exn_msg ctxt (TERM (msg, ts)) = raised "TERM" (msg ::
wenzelm@26256
   282
            (if detailed then if_context ctxt Syntax.string_of_term ts else []))
wenzelm@26256
   283
      | exn_msg ctxt (THM (msg, i, thms)) = raised ("THM " ^ string_of_int i) (msg ::
wenzelm@26256
   284
            (if detailed then if_context ctxt ProofContext.string_of_thm thms else []))
wenzelm@26256
   285
      | exn_msg _ exn = raised (General.exnMessage exn) []
wenzelm@26256
   286
  in exn_msg NONE e end;
wenzelm@26256
   287
wenzelm@20128
   288
end;
wenzelm@20128
   289
wenzelm@20128
   290
wenzelm@20128
   291
(* controlled execution *)
wenzelm@20128
   292
wenzelm@20128
   293
local
wenzelm@20128
   294
wenzelm@18685
   295
fun debugging f x =
wenzelm@23940
   296
  if ! debug then exception_trace (fn () => f x)
wenzelm@18685
   297
  else f x;
wenzelm@18685
   298
wenzelm@26256
   299
fun toplevel_error f x =
wenzelm@26256
   300
  let val ctxt = try ML_Context.the_local_context () in
wenzelm@26256
   301
    f x handle exn =>
wenzelm@26256
   302
      (Output.error_msg (exn_message (exn_context ctxt exn)); raise TOPLEVEL_ERROR)
wenzelm@26256
   303
  end;
wenzelm@24055
   304
wenzelm@20128
   305
in
wenzelm@20128
   306
wenzelm@20128
   307
fun controlled_execution f =
wenzelm@20128
   308
  f
wenzelm@20128
   309
  |> debugging
wenzelm@24055
   310
  |> interruptible;
wenzelm@20128
   311
wenzelm@20128
   312
fun program f =
wenzelm@24055
   313
 (f
wenzelm@28463
   314
  |> controlled_execution
wenzelm@24055
   315
  |> toplevel_error) ();
wenzelm@20128
   316
wenzelm@20128
   317
end;
wenzelm@20128
   318
wenzelm@5828
   319
wenzelm@27601
   320
(* node transactions -- maintaining stable checkpoints *)
wenzelm@7022
   321
wenzelm@6689
   322
local
wenzelm@6689
   323
wenzelm@30366
   324
fun reset_presentation (Theory (gthy, _)) = Theory (gthy, NONE)
wenzelm@30366
   325
  | reset_presentation node = node;
wenzelm@30366
   326
wenzelm@26624
   327
fun is_draft_theory (Theory (gthy, _)) = Context.is_draft (Context.theory_of gthy)
wenzelm@26624
   328
  | is_draft_theory _ = false;
wenzelm@26624
   329
wenzelm@27601
   330
fun is_stale state = Context.is_stale (theory_of state) handle UNDEF => false;
wenzelm@27601
   331
wenzelm@26624
   332
fun stale_error NONE = SOME (ERROR "Stale theory encountered after successful execution!")
wenzelm@26624
   333
  | stale_error some = some;
wenzelm@16815
   334
wenzelm@27576
   335
fun map_theory f (Theory (gthy, ctxt)) =
wenzelm@27576
   336
      Theory (Context.mapping f (LocalTheory.raw_theory f) gthy, ctxt)
wenzelm@27576
   337
  | map_theory _ node = node;
wenzelm@6689
   338
wenzelm@6689
   339
in
wenzelm@6689
   340
wenzelm@30366
   341
fun apply_transaction pos f g (node, exit) =
wenzelm@20128
   342
  let
wenzelm@27576
   343
    val _ = is_draft_theory node andalso error "Illegal draft theory in toplevel state";
wenzelm@27576
   344
    val cont_node = reset_presentation node;
wenzelm@27576
   345
    val back_node = map_theory (Theory.checkpoint o Theory.copy) cont_node;
wenzelm@27601
   346
    fun state_error e nd = (State (SOME (nd, exit), SOME (node, exit)), e);
wenzelm@6689
   347
wenzelm@20128
   348
    val (result, err) =
wenzelm@20128
   349
      cont_node
wenzelm@27576
   350
      |> controlled_execution f
wenzelm@26624
   351
      |> map_theory Theory.checkpoint
wenzelm@26624
   352
      |> state_error NONE
wenzelm@26624
   353
      handle exn => state_error (SOME exn) cont_node;
wenzelm@26624
   354
wenzelm@26624
   355
    val (result', err') =
wenzelm@26624
   356
      if is_stale result then state_error (stale_error err) back_node
wenzelm@26624
   357
      else (result, err);
wenzelm@20128
   358
  in
wenzelm@26624
   359
    (case err' of
wenzelm@30366
   360
      NONE => tap g result'
wenzelm@26624
   361
    | SOME exn => raise FAILURE (result', exn))
wenzelm@20128
   362
  end;
wenzelm@6689
   363
wenzelm@6689
   364
end;
wenzelm@6689
   365
wenzelm@6689
   366
wenzelm@6689
   367
(* primitive transitions *)
wenzelm@6689
   368
wenzelm@5828
   369
datatype trans =
wenzelm@27576
   370
  Init of string * (bool -> theory) * (theory -> unit) | (*theory name, init, exit*)
wenzelm@27576
   371
  Exit |                                         (*formal exit of theory -- without committing*)
wenzelm@27576
   372
  CommitExit |                                   (*exit and commit final theory*)
wenzelm@27576
   373
  Keep of bool -> state -> unit |                (*peek at state*)
wenzelm@30366
   374
  Transaction of (bool -> node -> node) * (state -> unit);  (*node transaction and presentation*)
wenzelm@21958
   375
wenzelm@6689
   376
local
wenzelm@6689
   377
wenzelm@27576
   378
fun apply_tr int _ (Init (_, f, exit)) (State (NONE, _)) =
wenzelm@27576
   379
      State (SOME (Theory (Context.Theory (Theory.checkpoint (f int)), NONE), exit), NONE)
wenzelm@27603
   380
  | apply_tr _ _ Exit (State (prev as SOME (Theory (Context.Theory _, _), _), _)) =
wenzelm@27603
   381
      State (NONE, prev)
wenzelm@27601
   382
  | apply_tr _ _ CommitExit (State (NONE, SOME (Theory (Context.Theory thy, _), exit))) =
wenzelm@27576
   383
      (controlled_execution exit thy; toplevel)
wenzelm@27576
   384
  | apply_tr int _ (Keep f) state =
wenzelm@27576
   385
      controlled_execution (fn x => tap (f int) x) state
wenzelm@30366
   386
  | apply_tr int pos (Transaction (f, g)) (State (SOME state, _)) =
wenzelm@30366
   387
      apply_transaction pos (fn x => f int x) g state
wenzelm@23363
   388
  | apply_tr _ _ _ _ = raise UNDEF;
wenzelm@6689
   389
wenzelm@23363
   390
fun apply_union _ _ [] state = raise FAILURE (state, UNDEF)
wenzelm@23363
   391
  | apply_union int pos (tr :: trs) state =
wenzelm@28451
   392
      apply_union int pos trs state
wenzelm@28451
   393
        handle UNDEF => apply_tr int pos tr state
wenzelm@28451
   394
          | FAILURE (alt_state, UNDEF) => apply_tr int pos tr alt_state
wenzelm@6689
   395
          | exn as FAILURE _ => raise exn
wenzelm@6689
   396
          | exn => raise FAILURE (state, exn);
wenzelm@6689
   397
wenzelm@6689
   398
in
wenzelm@6689
   399
wenzelm@23363
   400
fun apply_trans int pos trs state = (apply_union int pos trs state, NONE)
skalberg@15531
   401
  handle FAILURE (alt_state, exn) => (alt_state, SOME exn) | exn => (state, SOME exn);
wenzelm@6689
   402
wenzelm@6689
   403
end;
wenzelm@5828
   404
wenzelm@5828
   405
wenzelm@5828
   406
(* datatype transition *)
wenzelm@5828
   407
wenzelm@5828
   408
datatype transition = Transition of
wenzelm@26621
   409
 {name: string,              (*command name*)
wenzelm@26621
   410
  pos: Position.T,           (*source position*)
wenzelm@26621
   411
  int_only: bool,            (*interactive-only*)
wenzelm@26621
   412
  print: bool,               (*print result state*)
wenzelm@26621
   413
  no_timing: bool,           (*suppress timing*)
wenzelm@26621
   414
  trans: trans list};        (*primitive transitions (union)*)
wenzelm@5828
   415
wenzelm@26621
   416
fun make_transition (name, pos, int_only, print, no_timing, trans) =
wenzelm@26621
   417
  Transition {name = name, pos = pos, int_only = int_only, print = print, no_timing = no_timing,
wenzelm@26621
   418
    trans = trans};
wenzelm@5828
   419
wenzelm@26621
   420
fun map_transition f (Transition {name, pos, int_only, print, no_timing, trans}) =
wenzelm@26621
   421
  make_transition (f (name, pos, int_only, print, no_timing, trans));
wenzelm@5828
   422
wenzelm@27441
   423
val empty = make_transition ("", Position.none, false, false, false, []);
wenzelm@5828
   424
wenzelm@5828
   425
wenzelm@5828
   426
(* diagnostics *)
wenzelm@5828
   427
wenzelm@27441
   428
fun init_of (Transition {trans = [Init (name, _, _)], ...}) = SOME name
wenzelm@27441
   429
  | init_of _ = NONE;
wenzelm@27441
   430
wenzelm@27427
   431
fun name_of (Transition {name, ...}) = name;
wenzelm@28105
   432
fun pos_of (Transition {pos, ...}) = pos;
wenzelm@28105
   433
fun str_of tr = quote (name_of tr) ^ Position.str_of (pos_of tr);
wenzelm@5828
   434
wenzelm@27427
   435
fun command_msg msg tr = msg ^ "command " ^ str_of tr;
wenzelm@5828
   436
fun at_command tr = command_msg "At " tr ^ ".";
wenzelm@5828
   437
wenzelm@5828
   438
fun type_error tr state =
wenzelm@18685
   439
  ERROR (command_msg "Illegal application of " tr ^ " " ^ str_of_state state);
wenzelm@5828
   440
wenzelm@5828
   441
wenzelm@5828
   442
(* modify transitions *)
wenzelm@5828
   443
wenzelm@28451
   444
fun name name = map_transition (fn (_, pos, int_only, print, no_timing, trans) =>
wenzelm@28451
   445
  (name, pos, int_only, print, no_timing, trans));
wenzelm@5828
   446
wenzelm@26621
   447
fun position pos = map_transition (fn (name, _, int_only, print, no_timing, trans) =>
wenzelm@26621
   448
  (name, pos, int_only, print, no_timing, trans));
wenzelm@5828
   449
wenzelm@26621
   450
fun interactive int_only = map_transition (fn (name, pos, _, print, no_timing, trans) =>
wenzelm@26621
   451
  (name, pos, int_only, print, no_timing, trans));
wenzelm@5828
   452
wenzelm@26621
   453
val no_timing = map_transition (fn (name, pos, int_only, print, _, trans) =>
wenzelm@26621
   454
  (name, pos, int_only, print, true, trans));
wenzelm@5828
   455
wenzelm@26621
   456
fun add_trans tr = map_transition (fn (name, pos, int_only, print, no_timing, trans) =>
wenzelm@28451
   457
  (name, pos, int_only, print, no_timing, tr :: trans));
wenzelm@17363
   458
wenzelm@28433
   459
val reset_trans = map_transition (fn (name, pos, int_only, print, no_timing, _) =>
wenzelm@28433
   460
  (name, pos, int_only, print, no_timing, []));
wenzelm@28433
   461
wenzelm@28453
   462
fun set_print print = map_transition (fn (name, pos, int_only, _, no_timing, trans) =>
wenzelm@28453
   463
  (name, pos, int_only, print, no_timing, trans));
wenzelm@28453
   464
wenzelm@28453
   465
val print = set_print true;
wenzelm@5828
   466
wenzelm@5828
   467
wenzelm@21007
   468
(* basic transitions *)
wenzelm@5828
   469
wenzelm@27576
   470
fun init_theory name f exit = add_trans (Init (name, f, exit));
wenzelm@6689
   471
val exit = add_trans Exit;
wenzelm@7612
   472
val keep' = add_trans o Keep;
wenzelm@30366
   473
wenzelm@30366
   474
fun present_transaction f g = add_trans (Transaction (f, g));
wenzelm@30366
   475
fun transaction f = present_transaction f (K ());
wenzelm@5828
   476
wenzelm@7612
   477
fun keep f = add_trans (Keep (fn _ => f));
wenzelm@5828
   478
fun imperative f = keep (fn _ => f ());
wenzelm@5828
   479
wenzelm@27840
   480
fun ignored pos = empty |> name "<ignored>" |> position pos |> imperative I;
wenzelm@27840
   481
fun malformed pos msg =
wenzelm@27840
   482
  empty |> name "<malformed>" |> position pos |> imperative (fn () => error msg);
wenzelm@27840
   483
wenzelm@21007
   484
val unknown_theory = imperative (fn () => warning "Unknown theory context");
wenzelm@21007
   485
val unknown_proof = imperative (fn () => warning "Unknown proof context");
wenzelm@21007
   486
val unknown_context = imperative (fn () => warning "Unknown context");
wenzelm@15668
   487
wenzelm@21007
   488
wenzelm@21007
   489
(* theory transitions *)
wenzelm@15668
   490
wenzelm@27601
   491
fun generic_theory f = transaction (fn _ =>
wenzelm@26491
   492
  (fn Theory (gthy, _) => Theory (f gthy, NONE)
wenzelm@26491
   493
    | _ => raise UNDEF));
wenzelm@26491
   494
wenzelm@27601
   495
fun theory' f = transaction (fn int =>
wenzelm@20963
   496
  (fn Theory (Context.Theory thy, _) => Theory (Context.Theory (f int thy), NONE)
wenzelm@20963
   497
    | _ => raise UNDEF));
wenzelm@18563
   498
wenzelm@20963
   499
fun theory f = theory' (K f);
wenzelm@17076
   500
wenzelm@27601
   501
fun begin_local_theory begin f = transaction (fn _ =>
wenzelm@20963
   502
  (fn Theory (Context.Theory thy, _) =>
wenzelm@20963
   503
        let
wenzelm@20985
   504
          val lthy = f thy;
wenzelm@21294
   505
          val gthy = if begin then Context.Proof lthy else Context.Theory (loc_exit lthy);
wenzelm@21294
   506
        in Theory (gthy, SOME lthy) end
wenzelm@20963
   507
    | _ => raise UNDEF));
wenzelm@20963
   508
wenzelm@27601
   509
val end_local_theory = transaction (fn _ =>
wenzelm@21294
   510
  (fn Theory (Context.Proof lthy, _) => Theory (Context.Theory (loc_exit lthy), SOME lthy)
wenzelm@21007
   511
    | _ => raise UNDEF));
wenzelm@21007
   512
wenzelm@21007
   513
local
wenzelm@21007
   514
wenzelm@30366
   515
fun local_theory_presentation loc f = present_transaction (fn int =>
wenzelm@21294
   516
  (fn Theory (gthy, _) =>
wenzelm@21294
   517
        let
wenzelm@21294
   518
          val finish = loc_finish loc gthy;
wenzelm@29380
   519
          val lthy' = f int (loc_begin loc gthy);
wenzelm@21294
   520
        in Theory (finish lthy', SOME lthy') end
wenzelm@30366
   521
    | _ => raise UNDEF));
wenzelm@20963
   522
wenzelm@21007
   523
in
wenzelm@21007
   524
wenzelm@30366
   525
fun local_theory' loc f = local_theory_presentation loc f (K ());
wenzelm@29380
   526
fun local_theory loc f = local_theory' loc (K f);
wenzelm@30366
   527
fun present_local_theory loc = local_theory_presentation loc (K I);
wenzelm@18955
   528
wenzelm@21007
   529
end;
wenzelm@21007
   530
wenzelm@21007
   531
wenzelm@21007
   532
(* proof transitions *)
wenzelm@21007
   533
wenzelm@27601
   534
fun end_proof f = transaction (fn int =>
wenzelm@24795
   535
  (fn Proof (prf, (finish, _)) =>
wenzelm@27564
   536
        let val state = ProofNode.current prf in
wenzelm@21007
   537
          if can (Proof.assert_bottom true) state then
wenzelm@21007
   538
            let
wenzelm@21007
   539
              val ctxt' = f int state;
wenzelm@21007
   540
              val gthy' = finish ctxt';
wenzelm@21007
   541
            in Theory (gthy', SOME ctxt') end
wenzelm@21007
   542
          else raise UNDEF
wenzelm@21007
   543
        end
wenzelm@27564
   544
    | SkipProof (0, (gthy, _)) => Theory (gthy, NONE)
wenzelm@21007
   545
    | _ => raise UNDEF));
wenzelm@21007
   546
wenzelm@21294
   547
local
wenzelm@21294
   548
wenzelm@27601
   549
fun begin_proof init finish = transaction (fn int =>
wenzelm@21294
   550
  (fn Theory (gthy, _) =>
wenzelm@21294
   551
    let
berghofe@24453
   552
      val prf = init int gthy;
wenzelm@28433
   553
      val skip = ! skip_proofs;
wenzelm@21294
   554
      val schematic = Proof.schematic_goal prf;
wenzelm@21294
   555
    in
wenzelm@28433
   556
      if skip andalso schematic then
wenzelm@21294
   557
        warning "Cannot skip proof of schematic goal statement"
wenzelm@21294
   558
      else ();
wenzelm@28433
   559
      if skip andalso not schematic then
wenzelm@27564
   560
        SkipProof (0, (finish gthy (Proof.global_skip_proof int prf), gthy))
wenzelm@27564
   561
      else Proof (ProofNode.init prf, (finish gthy, gthy))
wenzelm@21294
   562
    end
wenzelm@21294
   563
  | _ => raise UNDEF));
wenzelm@21294
   564
wenzelm@21294
   565
in
wenzelm@21294
   566
wenzelm@24780
   567
fun local_theory_to_proof' loc f = begin_proof
wenzelm@25960
   568
  (fn int => fn gthy => f int (loc_begin loc gthy))
wenzelm@24780
   569
  (loc_finish loc);
wenzelm@24780
   570
berghofe@24453
   571
fun local_theory_to_proof loc f = local_theory_to_proof' loc (K f);
wenzelm@21294
   572
wenzelm@21294
   573
fun theory_to_proof f = begin_proof
wenzelm@24780
   574
  (K (fn Context.Theory thy => f thy | _ => raise UNDEF))
wenzelm@24780
   575
  (K (Context.Theory o ProofContext.theory_of));
wenzelm@21294
   576
wenzelm@21294
   577
end;
wenzelm@21294
   578
wenzelm@27601
   579
val forget_proof = transaction (fn _ =>
wenzelm@21007
   580
  (fn Proof (_, (_, orig_gthy)) => Theory (orig_gthy, NONE)
wenzelm@21007
   581
    | SkipProof (_, (_, orig_gthy)) => Theory (orig_gthy, NONE)
wenzelm@21007
   582
    | _ => raise UNDEF));
wenzelm@21007
   583
wenzelm@30366
   584
val present_proof = present_transaction (fn _ =>
wenzelm@27564
   585
  (fn Proof (prf, x) => Proof (ProofNode.apply I prf, x)
wenzelm@27564
   586
    | skip as SkipProof _ => skip
wenzelm@30366
   587
    | _ => raise UNDEF));
wenzelm@21177
   588
wenzelm@27601
   589
fun proofs' f = transaction (fn int =>
wenzelm@27564
   590
  (fn Proof (prf, x) => Proof (ProofNode.applys (f int) prf, x)
wenzelm@27564
   591
    | skip as SkipProof _ => skip
wenzelm@16815
   592
    | _ => raise UNDEF));
wenzelm@15668
   593
wenzelm@17904
   594
fun proof' f = proofs' (Seq.single oo f);
wenzelm@17904
   595
val proofs = proofs' o K;
wenzelm@6689
   596
val proof = proof' o K;
wenzelm@16815
   597
wenzelm@27601
   598
fun actual_proof f = transaction (fn _ =>
wenzelm@21007
   599
  (fn Proof (prf, x) => Proof (f prf, x)
wenzelm@20963
   600
    | _ => raise UNDEF));
wenzelm@16815
   601
wenzelm@27601
   602
fun skip_proof f = transaction (fn _ =>
wenzelm@21007
   603
  (fn SkipProof (h, x) => SkipProof (f h, x)
wenzelm@18563
   604
    | _ => raise UNDEF));
wenzelm@18563
   605
wenzelm@27601
   606
fun skip_proof_to_theory pred = transaction (fn _ =>
wenzelm@27564
   607
  (fn SkipProof (d, (gthy, _)) => if pred d then Theory (gthy, NONE) else raise UNDEF
wenzelm@17904
   608
  | _ => raise UNDEF));
wenzelm@5828
   609
wenzelm@5828
   610
wenzelm@5828
   611
wenzelm@5828
   612
(** toplevel transactions **)
wenzelm@5828
   613
wenzelm@27427
   614
(* identification *)
wenzelm@27427
   615
wenzelm@27427
   616
fun get_id (Transition {pos, ...}) = Position.get_id pos;
wenzelm@27427
   617
fun put_id id (tr as Transition {pos, ...}) = position (Position.put_id id pos) tr;
wenzelm@27427
   618
wenzelm@27427
   619
wenzelm@25960
   620
(* thread position *)
wenzelm@25799
   621
wenzelm@25960
   622
fun setmp_thread_position (Transition {pos, ...}) f x =
wenzelm@25819
   623
  Position.setmp_thread_data pos f x;
wenzelm@25799
   624
wenzelm@27606
   625
fun status tr m =
wenzelm@27606
   626
  setmp_thread_position tr (fn () => Output.status (Markup.markup m "")) ();
wenzelm@27606
   627
wenzelm@26602
   628
fun error_msg tr exn_info =
wenzelm@26602
   629
  setmp_thread_position tr (fn () => Output.error_msg (exn_message (EXCURSION_FAIL exn_info))) ();
wenzelm@26602
   630
wenzelm@25799
   631
wenzelm@28095
   632
(* post-transition hooks *)
wenzelm@28095
   633
wenzelm@28103
   634
local val hooks = ref ([]: (transition -> state -> state -> unit) list) in
wenzelm@28095
   635
wenzelm@28095
   636
fun add_hook f = CRITICAL (fn () => change hooks (cons f));
wenzelm@28095
   637
fun get_hooks () = CRITICAL (fn () => ! hooks);
wenzelm@28095
   638
wenzelm@28095
   639
end;
wenzelm@28095
   640
wenzelm@28095
   641
wenzelm@5828
   642
(* apply transitions *)
wenzelm@5828
   643
wenzelm@6664
   644
local
wenzelm@6664
   645
wenzelm@25799
   646
fun app int (tr as Transition {trans, pos, int_only, print, no_timing, ...}) =
wenzelm@25819
   647
  setmp_thread_position tr (fn state =>
wenzelm@25799
   648
    let
wenzelm@26621
   649
      val _ = if not int andalso int_only then warning (command_msg "Interactive-only " tr) else ();
wenzelm@16682
   650
wenzelm@25799
   651
      fun do_timing f x = (warning (command_msg "" tr); timeap f x);
wenzelm@25799
   652
      fun do_profiling f x = profile (! profiling) f x;
wenzelm@16682
   653
wenzelm@26256
   654
      val (result, status) =
wenzelm@25799
   655
         state |> (apply_trans int pos trans
wenzelm@25799
   656
          |> (if ! profiling > 0 andalso not no_timing then do_profiling else I)
wenzelm@25799
   657
          |> (if ! profiling > 0 orelse ! timing andalso not no_timing then do_timing else I));
wenzelm@26256
   658
wenzelm@26621
   659
      val _ = if int andalso not (! quiet) andalso print then print_state false result else ();
wenzelm@26256
   660
    in (result, Option.map (fn UNDEF => type_error tr state | exn => exn) status) end);
wenzelm@6664
   661
wenzelm@6664
   662
in
wenzelm@5828
   663
wenzelm@26602
   664
fun transition int tr st =
wenzelm@28095
   665
  let
wenzelm@28095
   666
    val hooks = get_hooks ();
wenzelm@28103
   667
    fun apply_hooks st' = hooks |> List.app (fn f => (try (fn () => f tr st st') (); ()));
wenzelm@28095
   668
wenzelm@28095
   669
    val ctxt = try context_of st;
wenzelm@28095
   670
    val res =
wenzelm@28095
   671
      (case app int tr st of
wenzelm@28095
   672
        (_, SOME TERMINATE) => NONE
wenzelm@28103
   673
      | (st', SOME (EXCURSION_FAIL exn_info)) => SOME (st', SOME exn_info)
wenzelm@28103
   674
      | (st', SOME exn) => SOME (st', SOME (exn_context ctxt exn, at_command tr))
wenzelm@28103
   675
      | (st', NONE) => SOME (st', NONE));
wenzelm@28103
   676
    val _ = (case res of SOME (st', NONE) => apply_hooks st' | _ => ());
wenzelm@28095
   677
  in res end;
wenzelm@6664
   678
wenzelm@6664
   679
end;
wenzelm@5828
   680
wenzelm@5828
   681
wenzelm@27601
   682
(* commit final exit *)
wenzelm@27601
   683
wenzelm@28425
   684
fun commit_exit pos =
wenzelm@27601
   685
  name "end" empty
wenzelm@28425
   686
  |> position pos
wenzelm@27601
   687
  |> add_trans CommitExit
wenzelm@27601
   688
  |> imperative (fn () => warning "Expected to find finished theory");
wenzelm@27601
   689
wenzelm@27601
   690
wenzelm@28425
   691
(* nested commands *)
wenzelm@5828
   692
wenzelm@28425
   693
fun command tr st =
wenzelm@27576
   694
  (case transition (! interact) tr st of
wenzelm@28425
   695
    SOME (st', NONE) => st'
wenzelm@28425
   696
  | SOME (_, SOME exn_info) => raise EXCURSION_FAIL exn_info
wenzelm@27576
   697
  | NONE => raise EXCURSION_FAIL (TERMINATE, at_command tr));
wenzelm@27576
   698
wenzelm@29484
   699
fun command_result tr st =
wenzelm@29484
   700
  let val st' = command tr st
wenzelm@29484
   701
  in (st', st') end;
wenzelm@29484
   702
wenzelm@29516
   703
fun run_command thy_name tr st =
wenzelm@29516
   704
  (case
wenzelm@29516
   705
      (case init_of tr of
wenzelm@29516
   706
        SOME name => Exn.capture (fn () => ThyLoad.check_name thy_name name) ()
wenzelm@29516
   707
      | NONE => Exn.Result ()) of
wenzelm@29516
   708
    Exn.Result () =>
wenzelm@29516
   709
      (case transition true tr st of
wenzelm@29516
   710
        SOME (st', NONE) => (status tr Markup.finished; SOME st')
wenzelm@29516
   711
      | SOME (_, SOME exn_info) => (error_msg tr exn_info; status tr Markup.failed; NONE)
wenzelm@29516
   712
      | NONE => (error_msg tr (TERMINATE, at_command tr); status tr Markup.failed; NONE))
wenzelm@29516
   713
  | Exn.Exn exn => (error_msg tr (exn, at_command tr); status tr Markup.failed; NONE));
wenzelm@29484
   714
wenzelm@28433
   715
wenzelm@28433
   716
(* excursion of units, consisting of commands with proof *)
wenzelm@28433
   717
wenzelm@28974
   718
structure States = ProofDataFun
wenzelm@28974
   719
(
wenzelm@28974
   720
  type T = state list future option;
wenzelm@28974
   721
  fun init _ = NONE;
wenzelm@28974
   722
);
wenzelm@28974
   723
wenzelm@28974
   724
fun proof_result immediate (tr, proof_trs) st =
wenzelm@28433
   725
  let val st' = command tr st in
wenzelm@28453
   726
    if immediate orelse null proof_trs orelse
wenzelm@28453
   727
      not (can proof_of st') orelse Proof.is_relevant (proof_of st')
wenzelm@28433
   728
    then
wenzelm@28453
   729
      let val (states, st'') = fold_map command_result proof_trs st'
wenzelm@28974
   730
      in (Lazy.value ((tr, st') :: (proof_trs ~~ states)), st'') end
wenzelm@28453
   731
    else
wenzelm@28433
   732
      let
wenzelm@28433
   733
        val (body_trs, end_tr) = split_last proof_trs;
wenzelm@28453
   734
        val finish = Context.Theory o ProofContext.theory_of;
wenzelm@28974
   735
wenzelm@29386
   736
        val future_proof = Proof.global_future_proof
wenzelm@28974
   737
          (fn prf =>
wenzelm@29343
   738
            Future.fork_pri ~1 (fn () =>
wenzelm@30366
   739
              let val (states, result_state) =
wenzelm@28974
   740
                (case st' of State (SOME (Proof (_, (_, orig_gthy)), exit), prev)
wenzelm@28974
   741
                  => State (SOME (Proof (ProofNode.init prf, (finish, orig_gthy)), exit), prev))
wenzelm@28974
   742
                |> fold_map command_result body_trs
wenzelm@28974
   743
                ||> command (end_tr |> set_print false);
wenzelm@30398
   744
              in (states, presentation_context_of result_state) end))
wenzelm@28974
   745
          #> (fn (states, ctxt) => States.put (SOME states) ctxt);
wenzelm@28974
   746
wenzelm@28974
   747
        val st'' = st' |> command (end_tr |> reset_trans |> end_proof (K future_proof));
wenzelm@28974
   748
wenzelm@28974
   749
        val states =
wenzelm@30398
   750
          (case States.get (presentation_context_of st'') of
wenzelm@28974
   751
            NONE => sys_error ("No future states for " ^ name_of tr ^ Position.str_of (pos_of tr))
wenzelm@28974
   752
          | SOME states => states);
wenzelm@28974
   753
        val result = Lazy.lazy
wenzelm@28974
   754
          (fn () => (tr, st') :: (body_trs ~~ Future.join states) @ [(end_tr, st'')]);
wenzelm@28974
   755
wenzelm@28974
   756
      in (result, st'') end
wenzelm@28433
   757
  end;
wenzelm@28433
   758
wenzelm@29068
   759
fun excursion input =
wenzelm@28425
   760
  let
wenzelm@28433
   761
    val end_pos = if null input then error "No input" else pos_of (fst (List.last input));
wenzelm@28433
   762
wenzelm@29448
   763
    val immediate = not (Goal.future_enabled ());
wenzelm@29427
   764
    val (results, end_state) = fold_map (proof_result immediate) input toplevel;
wenzelm@28433
   765
    val _ =
wenzelm@28433
   766
      (case end_state of
wenzelm@29427
   767
        State (NONE, SOME (Theory (Context.Theory _, _), _)) =>
wenzelm@29427
   768
          command (commit_exit end_pos) end_state
wenzelm@28433
   769
      | _ => error "Unfinished development at end of input");
wenzelm@29427
   770
  in Lazy.lazy (fn () => maps Lazy.force results) end;
wenzelm@7062
   771
wenzelm@6664
   772
end;