doc-src/IsarImplementation/Thy/integration.thy
author wenzelm
Sat, 04 Nov 2006 13:19:04 +0100
changeset 21168 0f869edd6cc1
parent 20491 98ba42f19995
child 21401 faddc6504177
permissions -rw-r--r--
replaced Toplevel.proof_to_theory by Toplevel.end_proof;
wenzelm@18537
     1
wenzelm@18537
     2
(* $Id$ *)
wenzelm@18537
     3
wenzelm@18537
     4
theory integration imports base begin
wenzelm@18537
     5
wenzelm@18537
     6
chapter {* System integration *}
wenzelm@18537
     7
wenzelm@20447
     8
section {* Isar toplevel \label{sec:isar-toplevel} *}
wenzelm@18537
     9
wenzelm@18537
    10
text {* The Isar toplevel may be considered the centeral hub of the
wenzelm@18537
    11
  Isabelle/Isar system, where all key components and sub-systems are
wenzelm@20451
    12
  integrated into a single read-eval-print loop of Isar commands.  We
wenzelm@20451
    13
  shall even incorporate the existing {\ML} toplevel of the compiler
wenzelm@18537
    14
  and run-time system (cf.\ \secref{sec:ML-toplevel}).
wenzelm@18537
    15
wenzelm@20451
    16
  Isabelle/Isar departs from the original ``LCF system architecture''
wenzelm@18537
    17
  where {\ML} was really The Meta Language for defining theories and
wenzelm@20451
    18
  conducting proofs.  Instead, {\ML} now only serves as the
wenzelm@18537
    19
  implementation language for the system (and user extensions), while
wenzelm@20451
    20
  the specific Isar toplevel supports the concepts of theory and proof
wenzelm@20451
    21
  development natively.  This includes the graph structure of theories
wenzelm@20451
    22
  and the block structure of proofs, support for unlimited undo,
wenzelm@20451
    23
  facilities for tracing, debugging, timing, profiling etc.
wenzelm@18537
    24
wenzelm@18537
    25
  \medskip The toplevel maintains an implicit state, which is
wenzelm@18537
    26
  transformed by a sequence of transitions -- either interactively or
wenzelm@18537
    27
  in batch-mode.  In interactive mode, Isar state transitions are
wenzelm@18537
    28
  encapsulated as safe transactions, such that both failure and undo
wenzelm@18537
    29
  are handled conveniently without destroying the underlying draft
wenzelm@18537
    30
  theory (cf.~\secref{sec:context-theory}).  In batch mode,
wenzelm@20451
    31
  transitions operate in a linear (destructive) fashion, such that
wenzelm@20451
    32
  error conditions abort the present attempt to construct a theory or
wenzelm@20451
    33
  proof altogether.
wenzelm@18537
    34
wenzelm@18537
    35
  The toplevel state is a disjoint sum of empty @{text toplevel}, or
wenzelm@18537
    36
  @{text theory}, or @{text proof}.  On entering the main Isar loop we
wenzelm@18537
    37
  start with an empty toplevel.  A theory is commenced by giving a
wenzelm@18537
    38
  @{text \<THEORY>} header; within a theory we may issue theory
wenzelm@20025
    39
  commands such as @{text \<DEFINITION>}, or state a @{text
wenzelm@20025
    40
  \<THEOREM>} to be proven.  Now we are within a proof state, with a
wenzelm@20025
    41
  rich collection of Isar proof commands for structured proof
wenzelm@18537
    42
  composition, or unstructured proof scripts.  When the proof is
wenzelm@18537
    43
  concluded we get back to the theory, which is then updated by
wenzelm@18537
    44
  storing the resulting fact.  Further theory declarations or theorem
wenzelm@18537
    45
  statements with proofs may follow, until we eventually conclude the
wenzelm@18537
    46
  theory development by issuing @{text \<END>}.  The resulting theory
wenzelm@18537
    47
  is then stored within the theory database and we are back to the
wenzelm@18537
    48
  empty toplevel.
wenzelm@18537
    49
wenzelm@18537
    50
  In addition to these proper state transformations, there are also
wenzelm@18537
    51
  some diagnostic commands for peeking at the toplevel state without
wenzelm@18537
    52
  modifying it (e.g.\ \isakeyword{thm}, \isakeyword{term},
wenzelm@18537
    53
  \isakeyword{print-cases}).
wenzelm@18537
    54
*}
wenzelm@18537
    55
wenzelm@18537
    56
text %mlref {*
wenzelm@18537
    57
  \begin{mldecls}
wenzelm@18537
    58
  @{index_ML_type Toplevel.state} \\
wenzelm@18537
    59
  @{index_ML Toplevel.UNDEF: "exn"} \\
wenzelm@18537
    60
  @{index_ML Toplevel.is_toplevel: "Toplevel.state -> bool"} \\
wenzelm@18537
    61
  @{index_ML Toplevel.theory_of: "Toplevel.state -> theory"} \\
wenzelm@18537
    62
  @{index_ML Toplevel.proof_of: "Toplevel.state -> Proof.state"} \\
wenzelm@18537
    63
  @{index_ML Toplevel.debug: "bool ref"} \\
wenzelm@18537
    64
  @{index_ML Toplevel.timing: "bool ref"} \\
wenzelm@18537
    65
  @{index_ML Toplevel.profiling: "int ref"} \\
wenzelm@18537
    66
  \end{mldecls}
wenzelm@18537
    67
wenzelm@18537
    68
  \begin{description}
wenzelm@18537
    69
wenzelm@18537
    70
  \item @{ML_type Toplevel.state} represents Isar toplevel states,
wenzelm@20451
    71
  which are normally manipulated through the concept of toplevel
wenzelm@20451
    72
  transitions only (\secref{sec:toplevel-transition}).  Also note that
wenzelm@20451
    73
  a raw toplevel state is subject to the same linearity restrictions
wenzelm@20451
    74
  as a theory context (cf.~\secref{sec:context-theory}).
wenzelm@18537
    75
wenzelm@18537
    76
  \item @{ML Toplevel.UNDEF} is raised for undefined toplevel
wenzelm@20451
    77
  operations.  Many operations work only partially for certain cases,
wenzelm@20451
    78
  since @{ML_type Toplevel.state} is a sum type.
wenzelm@18537
    79
wenzelm@20451
    80
  \item @{ML Toplevel.is_toplevel}~@{text "state"} checks for an empty
wenzelm@20451
    81
  toplevel state.
wenzelm@18537
    82
wenzelm@20451
    83
  \item @{ML Toplevel.theory_of}~@{text "state"} selects the theory of
wenzelm@20451
    84
  a theory or proof (!), otherwise raises @{ML Toplevel.UNDEF}.
wenzelm@18537
    85
wenzelm@20451
    86
  \item @{ML Toplevel.proof_of}~@{text "state"} selects the Isar proof
wenzelm@20451
    87
  state if available, otherwise raises @{ML Toplevel.UNDEF}.
wenzelm@18537
    88
wenzelm@18537
    89
  \item @{ML "set Toplevel.debug"} makes the toplevel print further
wenzelm@18537
    90
  details about internal error conditions, exceptions being raised
wenzelm@18537
    91
  etc.
wenzelm@18537
    92
wenzelm@18537
    93
  \item @{ML "set Toplevel.timing"} makes the toplevel print timing
wenzelm@18537
    94
  information for each Isar command being executed.
wenzelm@18537
    95
wenzelm@20451
    96
  \item @{ML Toplevel.profiling}~@{verbatim ":="}~@{text "n"} controls
wenzelm@20451
    97
  low-level profiling of the underlying {\ML} runtime system.  For
wenzelm@20451
    98
  Poly/ML, @{text "n = 1"} means time and @{text "n = 2"} space
wenzelm@20451
    99
  profiling.
wenzelm@18537
   100
wenzelm@18537
   101
  \end{description}
wenzelm@18537
   102
*}
wenzelm@18537
   103
wenzelm@18537
   104
wenzelm@20451
   105
subsection {* Toplevel transitions \label{sec:toplevel-transition} *}
wenzelm@18537
   106
wenzelm@20451
   107
text {*
wenzelm@20451
   108
  An Isar toplevel transition consists of a partial function on the
wenzelm@20451
   109
  toplevel state, with additional information for diagnostics and
wenzelm@20451
   110
  error reporting: there are fields for command name, source position,
wenzelm@20451
   111
  optional source text, as well as flags for interactive-only commands
wenzelm@20451
   112
  (which issue a warning in batch-mode), printing of result state,
wenzelm@20451
   113
  etc.
wenzelm@18537
   114
wenzelm@20451
   115
  The operational part is represented as the sequential union of a
wenzelm@20451
   116
  list of partial functions, which are tried in turn until the first
wenzelm@20475
   117
  one succeeds.  This acts like an outer case-expression for various
wenzelm@20475
   118
  alternative state transitions.  For example, \isakeyword{qed} acts
wenzelm@20475
   119
  differently for a local proofs vs.\ the global ending of the main
wenzelm@20475
   120
  proof.
wenzelm@18537
   121
wenzelm@18537
   122
  Toplevel transitions are composed via transition transformers.
wenzelm@18537
   123
  Internally, Isar commands are put together from an empty transition
wenzelm@18537
   124
  extended by name and source position (and optional source text).  It
wenzelm@18537
   125
  is then left to the individual command parser to turn the given
wenzelm@20451
   126
  concrete syntax into a suitable transition transformer that adjoin
wenzelm@18537
   127
  actual operations on a theory or proof state etc.
wenzelm@18537
   128
*}
wenzelm@18537
   129
wenzelm@18537
   130
text %mlref {*
wenzelm@18537
   131
  \begin{mldecls}
wenzelm@18537
   132
  @{index_ML Toplevel.print: "Toplevel.transition -> Toplevel.transition"} \\
wenzelm@18537
   133
  @{index_ML Toplevel.no_timing: "Toplevel.transition -> Toplevel.transition"} \\
wenzelm@18537
   134
  @{index_ML Toplevel.keep: "(Toplevel.state -> unit) ->
wenzelm@18537
   135
  Toplevel.transition -> Toplevel.transition"} \\
wenzelm@18537
   136
  @{index_ML Toplevel.theory: "(theory -> theory) ->
wenzelm@18537
   137
  Toplevel.transition -> Toplevel.transition"} \\
wenzelm@18537
   138
  @{index_ML Toplevel.theory_to_proof: "(theory -> Proof.state) ->
wenzelm@18537
   139
  Toplevel.transition -> Toplevel.transition"} \\
wenzelm@18537
   140
  @{index_ML Toplevel.proof: "(Proof.state -> Proof.state) ->
wenzelm@18537
   141
  Toplevel.transition -> Toplevel.transition"} \\
wenzelm@18537
   142
  @{index_ML Toplevel.proofs: "(Proof.state -> Proof.state Seq.seq) ->
wenzelm@18537
   143
  Toplevel.transition -> Toplevel.transition"} \\
wenzelm@21168
   144
  @{index_ML Toplevel.end_proof: "(bool -> Proof.state -> Proof.context) ->
wenzelm@18537
   145
  Toplevel.transition -> Toplevel.transition"} \\
wenzelm@18537
   146
  \end{mldecls}
wenzelm@18537
   147
wenzelm@18537
   148
  \begin{description}
wenzelm@18537
   149
wenzelm@20451
   150
  \item @{ML Toplevel.print}~@{text "tr"} sets the print flag, which
wenzelm@20451
   151
  causes the toplevel loop to echo the result state (in interactive
wenzelm@20451
   152
  mode).
wenzelm@18537
   153
wenzelm@20451
   154
  \item @{ML Toplevel.no_timing}~@{text "tr"} indicates that the
wenzelm@20451
   155
  transition should never show timing information, e.g.\ because it is
wenzelm@20451
   156
  a diagnostic command.
wenzelm@18537
   157
wenzelm@20451
   158
  \item @{ML Toplevel.keep}~@{text "tr"} adjoins a diagnostic
wenzelm@20451
   159
  function.
wenzelm@18537
   160
wenzelm@20451
   161
  \item @{ML Toplevel.theory}~@{text "tr"} adjoins a theory
wenzelm@20451
   162
  transformer.
wenzelm@18537
   163
wenzelm@20451
   164
  \item @{ML Toplevel.theory_to_proof}~@{text "tr"} adjoins a global
wenzelm@20451
   165
  goal function, which turns a theory into a proof state.  The theory
wenzelm@20451
   166
  may be changed before entering the proof; the generic Isar goal
wenzelm@20451
   167
  setup includes an argument that specifies how to apply the proven
wenzelm@20451
   168
  result to the theory, when the proof is finished.
wenzelm@18558
   169
wenzelm@20451
   170
  \item @{ML Toplevel.proof}~@{text "tr"} adjoins a deterministic
wenzelm@20451
   171
  proof command, with a singleton result.
wenzelm@18537
   172
wenzelm@20451
   173
  \item @{ML Toplevel.proofs}~@{text "tr"} adjoins a general proof
wenzelm@20451
   174
  command, with zero or more result states (represented as a lazy
wenzelm@20451
   175
  list).
wenzelm@18537
   176
wenzelm@21168
   177
  \item @{ML Toplevel.end_proof}~@{text "tr"} adjoins a concluding
wenzelm@21168
   178
  proof command, that returns the resulting theory, after storing the
wenzelm@21168
   179
  resulting facts in the context etc.
wenzelm@18537
   180
wenzelm@18537
   181
  \end{description}
wenzelm@18537
   182
*}
wenzelm@18537
   183
wenzelm@18537
   184
wenzelm@18537
   185
subsection {* Toplevel control *}
wenzelm@18537
   186
wenzelm@20451
   187
text {*
wenzelm@20451
   188
  There are a few special control commands that modify the behavior
wenzelm@20451
   189
  the toplevel itself, and only make sense in interactive mode.  Under
wenzelm@20451
   190
  normal circumstances, the user encounters these only implicitly as
wenzelm@20451
   191
  part of the protocol between the Isabelle/Isar system and a
wenzelm@20451
   192
  user-interface such as ProofGeneral.
wenzelm@18537
   193
wenzelm@18537
   194
  \begin{description}
wenzelm@18537
   195
wenzelm@18537
   196
  \item \isacommand{undo} follows the three-level hierarchy of empty
wenzelm@18537
   197
  toplevel vs.\ theory vs.\ proof: undo within a proof reverts to the
wenzelm@18537
   198
  previous proof context, undo after a proof reverts to the theory
wenzelm@18537
   199
  before the initial goal statement, undo of a theory command reverts
wenzelm@18537
   200
  to the previous theory value, undo of a theory header discontinues
wenzelm@18537
   201
  the current theory development and removes it from the theory
wenzelm@18537
   202
  database (\secref{sec:theory-database}).
wenzelm@18537
   203
wenzelm@18537
   204
  \item \isacommand{kill} aborts the current level of development:
wenzelm@18537
   205
  kill in a proof context reverts to the theory before the initial
wenzelm@18537
   206
  goal statement, kill in a theory context aborts the current theory
wenzelm@18537
   207
  development, removing it from the database.
wenzelm@18537
   208
wenzelm@18537
   209
  \item \isacommand{exit} drops out of the Isar toplevel into the
wenzelm@18537
   210
  underlying {\ML} toplevel (\secref{sec:ML-toplevel}).  The Isar
wenzelm@18537
   211
  toplevel state is preserved and may be continued later.
wenzelm@18537
   212
wenzelm@18537
   213
  \item \isacommand{quit} terminates the Isabelle/Isar process without
wenzelm@18537
   214
  saving.
wenzelm@18537
   215
wenzelm@18537
   216
  \end{description}
wenzelm@18537
   217
*}
wenzelm@18537
   218
wenzelm@18537
   219
wenzelm@18537
   220
section {* ML toplevel \label{sec:ML-toplevel} *}
wenzelm@18537
   221
wenzelm@20475
   222
text {*
wenzelm@20475
   223
  The {\ML} toplevel provides a read-compile-eval-print loop for {\ML}
wenzelm@20475
   224
  values, types, structures, and functors.  {\ML} declarations operate
wenzelm@20475
   225
  on the global system state, which consists of the compiler
wenzelm@18537
   226
  environment plus the values of {\ML} reference variables.  There is
wenzelm@18537
   227
  no clean way to undo {\ML} declarations, except for reverting to a
wenzelm@18537
   228
  previously saved state of the whole Isabelle process.  {\ML} input
wenzelm@18537
   229
  is either read interactively from a TTY, or from a string (usually
wenzelm@20451
   230
  within a theory text), or from a source file (usually loaded from a
wenzelm@20451
   231
  theory).
wenzelm@18537
   232
wenzelm@18537
   233
  Whenever the {\ML} toplevel is active, the current Isabelle theory
wenzelm@18537
   234
  context is passed as an internal reference variable.  Thus {\ML}
wenzelm@18537
   235
  code may access the theory context during compilation, it may even
wenzelm@20451
   236
  change the value of a theory being under construction --- while
wenzelm@20451
   237
  observing the usual linearity restrictions
wenzelm@20451
   238
  (cf.~\secref{sec:context-theory}).
wenzelm@18537
   239
*}
wenzelm@18537
   240
wenzelm@18537
   241
text %mlref {*
wenzelm@18537
   242
  \begin{mldecls}
wenzelm@18537
   243
  @{index_ML context: "theory -> unit"} \\
wenzelm@18537
   244
  @{index_ML the_context: "unit -> theory"} \\
wenzelm@18537
   245
  @{index_ML "Context.>> ": "(theory -> theory) -> unit"} \\
wenzelm@18537
   246
  \end{mldecls}
wenzelm@18537
   247
wenzelm@18537
   248
  \begin{description}
wenzelm@18537
   249
wenzelm@18537
   250
  \item @{ML context}~@{text thy} sets the {\ML} theory context to
wenzelm@18537
   251
  @{text thy}.  This is usually performed automatically by the system,
wenzelm@18537
   252
  when dropping out of the interactive Isar toplevel into {\ML}, or
wenzelm@18537
   253
  when Isar invokes {\ML} to process code from a string or a file.
wenzelm@18537
   254
wenzelm@18537
   255
  \item @{ML "the_context ()"} refers to the theory context of the
wenzelm@18537
   256
  {\ML} toplevel --- at compile time!  {\ML} code needs to take care
wenzelm@20451
   257
  to refer to @{ML "the_context ()"} correctly.  Recall that
wenzelm@20451
   258
  evaluation of a function body is delayed until actual runtime.
wenzelm@20451
   259
  Moreover, persistent {\ML} toplevel bindings to an unfinished theory
wenzelm@20451
   260
  should be avoided: code should either project out the desired
wenzelm@20451
   261
  information immediately, or produce an explicit @{ML_type
wenzelm@20451
   262
  theory_ref} (cf.\ \secref{sec:context-theory}).
wenzelm@18537
   263
wenzelm@18537
   264
  \item @{ML "Context.>>"}~@{text f} applies theory transformation
wenzelm@18537
   265
  @{text f} to the current theory of the {\ML} toplevel.  In order to
wenzelm@18537
   266
  work as expected, the theory should be still under construction, and
wenzelm@18537
   267
  the Isar language element that invoked the {\ML} compiler in the
wenzelm@20451
   268
  first place should be ready to accept the changed theory value
wenzelm@18537
   269
  (e.g.\ \isakeyword{ML-setup}, but not plain \isakeyword{ML}).
wenzelm@20451
   270
  Otherwise the theory becomes stale!
wenzelm@18537
   271
wenzelm@18537
   272
  \end{description}
wenzelm@18537
   273
wenzelm@18537
   274
  It is very important to note that the above functions are really
wenzelm@18537
   275
  restricted to the compile time, even though the {\ML} compiler is
wenzelm@18537
   276
  invoked at runtime!  The majority of {\ML} code uses explicit
wenzelm@20451
   277
  functional arguments of a theory or proof context instead.  Thus it
wenzelm@20451
   278
  may be invoked for an arbitrary context later on, without having to
wenzelm@20451
   279
  worry about any operational details.
wenzelm@18537
   280
wenzelm@18537
   281
  \bigskip
wenzelm@18537
   282
wenzelm@18537
   283
  \begin{mldecls}
wenzelm@18537
   284
  @{index_ML Isar.main: "unit -> unit"} \\
wenzelm@18537
   285
  @{index_ML Isar.loop: "unit -> unit"} \\
wenzelm@18537
   286
  @{index_ML Isar.state: "unit -> Toplevel.state"} \\
wenzelm@20025
   287
  @{index_ML Isar.context: "unit -> Proof.context"} \\
wenzelm@18537
   288
  @{index_ML Isar.exn: "unit -> (exn * string) option"} \\
wenzelm@18537
   289
  \end{mldecls}
wenzelm@18537
   290
wenzelm@18537
   291
  \begin{description}
wenzelm@18537
   292
wenzelm@18537
   293
  \item @{ML "Isar.main ()"} invokes the Isar toplevel from {\ML},
wenzelm@20451
   294
  initializing an empty toplevel state.
wenzelm@18537
   295
wenzelm@18537
   296
  \item @{ML "Isar.loop ()"} continues the Isar toplevel with the
wenzelm@20451
   297
  current state, after having dropped out of the Isar toplevel loop.
wenzelm@18537
   298
wenzelm@18537
   299
  \item @{ML "Isar.state ()"} and @{ML "Isar.exn ()"} get current
wenzelm@20451
   300
  toplevel state and error condition, respectively.  This only works
wenzelm@20451
   301
  after having dropped out of the Isar toplevel loop.
wenzelm@18537
   302
wenzelm@20025
   303
  \item @{ML "Isar.context ()"} produces the proof context from @{ML
wenzelm@20451
   304
  "Isar.state ()"}, analogous to @{ML Context.proof_of}
wenzelm@20451
   305
  (\secref{sec:generic-context}).
wenzelm@20025
   306
wenzelm@18537
   307
  \end{description}
wenzelm@18537
   308
*}
wenzelm@18537
   309
wenzelm@18537
   310
wenzelm@20451
   311
section {* Theory database \label{sec:theory-database} *}
wenzelm@18537
   312
wenzelm@20451
   313
text {*
wenzelm@20451
   314
  The theory database maintains a collection of theories, together
wenzelm@20451
   315
  with some administrative information about their original sources,
wenzelm@20451
   316
  which are held in an external store (i.e.\ some directory within the
wenzelm@20451
   317
  regular file system).
wenzelm@18537
   318
wenzelm@20451
   319
  The theory database is organized as a directed acyclic graph;
wenzelm@20451
   320
  entries are referenced by theory name.  Although some additional
wenzelm@20451
   321
  interfaces allow to include a directory specification as well, this
wenzelm@20451
   322
  is only a hint to the underlying theory loader.  The internal theory
wenzelm@20451
   323
  name space is flat!
wenzelm@18537
   324
wenzelm@18537
   325
  Theory @{text A} is associated with the main theory file @{text
wenzelm@18537
   326
  A}\verb,.thy,, which needs to be accessible through the theory
wenzelm@20451
   327
  loader path.  Any number of additional {\ML} source files may be
wenzelm@18537
   328
  associated with each theory, by declaring these dependencies in the
wenzelm@18537
   329
  theory header as @{text \<USES>}, and loading them consecutively
wenzelm@18537
   330
  within the theory context.  The system keeps track of incoming {\ML}
wenzelm@20451
   331
  sources and associates them with the current theory.  The file
wenzelm@20451
   332
  @{text A}\verb,.ML, is loaded after a theory has been concluded, in
wenzelm@20451
   333
  order to support legacy proof {\ML} proof scripts.
wenzelm@18537
   334
wenzelm@18537
   335
  The basic internal actions of the theory database are @{text
wenzelm@18554
   336
  "update"}, @{text "outdate"}, and @{text "remove"}:
wenzelm@18537
   337
wenzelm@18537
   338
  \begin{itemize}
wenzelm@18537
   339
wenzelm@18537
   340
  \item @{text "update A"} introduces a link of @{text "A"} with a
wenzelm@18537
   341
  @{text "theory"} value of the same name; it asserts that the theory
wenzelm@20451
   342
  sources are now consistent with that value;
wenzelm@18537
   343
wenzelm@18537
   344
  \item @{text "outdate A"} invalidates the link of a theory database
wenzelm@20451
   345
  entry to its sources, but retains the present theory value;
wenzelm@18537
   346
wenzelm@20451
   347
  \item @{text "remove A"} deletes entry @{text "A"} from the theory
wenzelm@18537
   348
  database.
wenzelm@18537
   349
  
wenzelm@18537
   350
  \end{itemize}
wenzelm@18537
   351
wenzelm@18537
   352
  These actions are propagated to sub- or super-graphs of a theory
wenzelm@20451
   353
  entry as expected, in order to preserve global consistency of the
wenzelm@20451
   354
  state of all loaded theories with the sources of the external store.
wenzelm@20451
   355
  This implies certain causalities between actions: @{text "update"}
wenzelm@20451
   356
  or @{text "outdate"} of an entry will @{text "outdate"} all
wenzelm@20451
   357
  descendants; @{text "remove"} will @{text "remove"} all descendants.
wenzelm@18537
   358
wenzelm@18537
   359
  \medskip There are separate user-level interfaces to operate on the
wenzelm@18537
   360
  theory database directly or indirectly.  The primitive actions then
wenzelm@18537
   361
  just happen automatically while working with the system.  In
wenzelm@18537
   362
  particular, processing a theory header @{text "\<THEORY> A
wenzelm@20451
   363
  \<IMPORTS> B\<^sub>1 \<dots> B\<^sub>n \<BEGIN>"} ensures that the
wenzelm@18537
   364
  sub-graph of the collective imports @{text "B\<^sub>1 \<dots> B\<^sub>n"}
wenzelm@20451
   365
  is up-to-date, too.  Earlier theories are reloaded as required, with
wenzelm@18537
   366
  @{text update} actions proceeding in topological order according to
wenzelm@18537
   367
  theory dependencies.  There may be also a wave of implied @{text
wenzelm@18537
   368
  outdate} actions for derived theory nodes until a stable situation
wenzelm@18537
   369
  is achieved eventually.
wenzelm@18537
   370
*}
wenzelm@18537
   371
wenzelm@18537
   372
text %mlref {*
wenzelm@18537
   373
  \begin{mldecls}
wenzelm@18537
   374
  @{index_ML theory: "string -> theory"} \\
wenzelm@18537
   375
  @{index_ML use_thy: "string -> unit"} \\
wenzelm@18537
   376
  @{index_ML update_thy: "string -> unit"} \\
wenzelm@18537
   377
  @{index_ML touch_thy: "string -> unit"} \\
wenzelm@18537
   378
  @{index_ML remove_thy: "string -> unit"} \\[1ex]
wenzelm@18537
   379
  @{index_ML ThyInfo.begin_theory}@{verbatim ": ... -> bool -> theory"} \\
wenzelm@18537
   380
  @{index_ML ThyInfo.end_theory: "theory -> theory"} \\
wenzelm@18537
   381
  @{index_ML ThyInfo.register_theory: "theory -> unit"} \\[1ex]
wenzelm@18537
   382
  @{verbatim "datatype action = Update | Outdate | Remove"} \\
wenzelm@18537
   383
  @{index_ML ThyInfo.add_hook: "(ThyInfo.action -> string -> unit) -> unit"} \\
wenzelm@18537
   384
  \end{mldecls}
wenzelm@18537
   385
wenzelm@18537
   386
  \begin{description}
wenzelm@18537
   387
wenzelm@18537
   388
  \item @{ML theory}~@{text A} retrieves the theory value presently
wenzelm@20451
   389
  associated with name @{text A}.  Note that the result might be
wenzelm@20451
   390
  outdated.
wenzelm@18537
   391
wenzelm@18537
   392
  \item @{ML use_thy}~@{text A} loads theory @{text A} if it is absent
wenzelm@18537
   393
  or out-of-date.  It ensures that all parent theories are available
wenzelm@18537
   394
  as well, but does not reload them if older versions are already
wenzelm@18537
   395
  present.
wenzelm@18537
   396
wenzelm@18537
   397
  \item @{ML update_thy} is similar to @{ML use_thy}, but ensures that
wenzelm@20451
   398
  theory @{text A} and all ancestors are fully up-to-date.
wenzelm@18537
   399
wenzelm@20451
   400
  \item @{ML touch_thy}~@{text A} performs and @{text outdate} action
wenzelm@20451
   401
  on theory @{text A} and all descendants.
wenzelm@18537
   402
wenzelm@20451
   403
  \item @{ML remove_thy}~@{text A} deletes theory @{text A} and all
wenzelm@18537
   404
  descendants from the theory database.
wenzelm@18537
   405
wenzelm@18537
   406
  \item @{ML ThyInfo.begin_theory} is the basic operation behind a
wenzelm@18537
   407
  @{text \<THEORY>} header declaration.  The boolean argument
wenzelm@18537
   408
  indicates the strictness of treating ancestors: for @{ML true} (as
wenzelm@18537
   409
  in interactive mode) like @{ML update_thy}, and for @{ML false} (as
wenzelm@18537
   410
  in batch mode) like @{ML use_thy}.  This is {\ML} functions is
wenzelm@18537
   411
  normally not invoked directly.
wenzelm@18537
   412
wenzelm@18537
   413
  \item @{ML ThyInfo.end_theory} concludes the loading of a theory
wenzelm@20451
   414
  proper.  An attached theory {\ML} file may be still loaded later on.
wenzelm@20451
   415
  This is function is normally not invoked directly.
wenzelm@18537
   416
wenzelm@20451
   417
  \item @{ML ThyInfo.register_theory}~@{text "text thy"} registers an
wenzelm@20451
   418
  existing theory value with the theory loader database.  There is no
wenzelm@20451
   419
  management of associated sources.
wenzelm@18537
   420
wenzelm@18537
   421
  \item @{ML "ThyInfo.add_hook"}~@{text f} registers function @{text
wenzelm@18537
   422
  f} as a hook for theory database actions.  The function will be
wenzelm@18537
   423
  invoked with the action and theory name being involved; thus derived
wenzelm@18537
   424
  actions may be performed in associated system components, e.g.\
wenzelm@20451
   425
  maintaining the state of an editor for the theory sources.
wenzelm@18537
   426
wenzelm@18537
   427
  The kind and order of actions occurring in practice depends both on
wenzelm@18537
   428
  user interactions and the internal process of resolving theory
wenzelm@18537
   429
  imports.  Hooks should not rely on a particular policy here!  Any
wenzelm@20451
   430
  exceptions raised by the hook are ignored.
wenzelm@18537
   431
wenzelm@18537
   432
  \end{description}
wenzelm@18537
   433
*}
wenzelm@18537
   434
wenzelm@18537
   435
end