doc-src/System/Thy/Basics.thy
author wenzelm
Sun, 30 Nov 2008 12:58:20 +0100
changeset 28914 f993cbffc42a
parent 28506 3ab515ee4e6f
child 28916 0a802cdda340
permissions -rw-r--r--
default for ISABELLE_HOME_USER is now ~/.isabelle instead of ~/isabelle;
wenzelm@28215
     1
(* $Id$ *)
wenzelm@28215
     2
wenzelm@28215
     3
theory Basics
wenzelm@28215
     4
imports Pure
wenzelm@28215
     5
begin
wenzelm@28215
     6
wenzelm@28215
     7
chapter {* The Isabelle system environment *}
wenzelm@28215
     8
wenzelm@28215
     9
text {*
wenzelm@28215
    10
  This manual describes Isabelle together with related tools and user
wenzelm@28215
    11
  interfaces as seen from an outside (system oriented) view.  See also
wenzelm@28215
    12
  the \emph{Isabelle/Isar Reference Manual}~\cite{isabelle-isar-ref}
wenzelm@28215
    13
  and the \emph{Isabelle Reference Manual}~\cite{isabelle-ref} for the
wenzelm@28215
    14
  actual Isabelle commands and related functions.
wenzelm@28215
    15
wenzelm@28215
    16
  \medskip The Isabelle system environment emerges from a few general
wenzelm@28215
    17
  concepts.
wenzelm@28215
    18
wenzelm@28238
    19
  \begin{enumerate}
wenzelm@28215
    20
wenzelm@28238
    21
  \item The \emph{Isabelle settings} mechanism provides environment
wenzelm@28223
    22
  variables to all Isabelle programs (including tools and user
wenzelm@28223
    23
  interfaces).
wenzelm@28215
    24
wenzelm@28504
    25
  \item The \emph{raw Isabelle process} (@{executable_ref
wenzelm@28504
    26
  "isabelle-process"}) runs logic sessions either interactively or in
wenzelm@28504
    27
  batch mode.  In particular, this view abstracts over the invocation
wenzelm@28504
    28
  of the actual ML system to be used.  Regular users rarely need to
wenzelm@28504
    29
  care about the low-level process.
wenzelm@28215
    30
wenzelm@28504
    31
  \item The \emph{Isabelle tools wrapper} (@{executable_ref isabelle})
wenzelm@28238
    32
  provides a generic startup environment Isabelle related utilities,
wenzelm@28238
    33
  user interfaces etc.  Such tools automatically benefit from the
wenzelm@28238
    34
  settings mechanism.
wenzelm@28215
    35
wenzelm@28238
    36
  \item The \emph{Isabelle interface wrapper} (@{executable_ref
wenzelm@28504
    37
  "isabelle-interface"}) provides some abstraction over the actual
wenzelm@28504
    38
  user interface to be used.  The de-facto standard interface for
wenzelm@28504
    39
  Isabelle is Proof~General \cite{proofgeneral}.
wenzelm@28215
    40
wenzelm@28238
    41
  \end{enumerate}
wenzelm@28215
    42
*}
wenzelm@28215
    43
wenzelm@28215
    44
wenzelm@28215
    45
section {* Isabelle settings \label{sec:settings} *}
wenzelm@28215
    46
wenzelm@28215
    47
text {*
wenzelm@28215
    48
  The Isabelle system heavily depends on the \emph{settings
wenzelm@28215
    49
  mechanism}\indexbold{settings}.  Essentially, this is a statically
wenzelm@28215
    50
  scoped collection of environment variables, such as @{setting
wenzelm@28215
    51
  ISABELLE_HOME}, @{setting ML_SYSTEM}, @{setting ML_HOME}.  These
wenzelm@28215
    52
  variables are \emph{not} intended to be set directly from the shell,
wenzelm@28215
    53
  though.  Isabelle employs a somewhat more sophisticated scheme of
wenzelm@28215
    54
  \emph{settings files} --- one for site-wide defaults, another for
wenzelm@28215
    55
  additional user-specific modifications.  With all configuration
wenzelm@28215
    56
  variables in at most two places, this scheme is more maintainable
wenzelm@28215
    57
  and user-friendly than global shell environment variables.
wenzelm@28215
    58
wenzelm@28215
    59
  In particular, we avoid the typical situation where prospective
wenzelm@28215
    60
  users of a software package are told to put several things into
wenzelm@28215
    61
  their shell startup scripts, before being able to actually run the
wenzelm@28215
    62
  program. Isabelle requires none such administrative chores of its
wenzelm@28215
    63
  end-users --- the executables can be invoked straight away.
wenzelm@28238
    64
  Occasionally, users would still want to put the @{"file"
wenzelm@28238
    65
  "$ISABELLE_HOME/bin"} directory into their shell's search path, but
wenzelm@28238
    66
  this is not required.
wenzelm@28215
    67
*}
wenzelm@28215
    68
wenzelm@28215
    69
wenzelm@28215
    70
subsection {* Building the environment *}
wenzelm@28215
    71
wenzelm@28215
    72
text {*
wenzelm@28215
    73
  Whenever any of the Isabelle executables is run, their settings
wenzelm@28215
    74
  environment is put together as follows.
wenzelm@28215
    75
wenzelm@28215
    76
  \begin{enumerate}
wenzelm@28215
    77
wenzelm@28215
    78
  \item The special variable @{setting_def ISABELLE_HOME} is
wenzelm@28215
    79
  determined automatically from the location of the binary that has
wenzelm@28215
    80
  been run.
wenzelm@28215
    81
  
wenzelm@28215
    82
  You should not try to set @{setting ISABELLE_HOME} manually. Also
wenzelm@28215
    83
  note that the Isabelle executables either have to be run from their
wenzelm@28215
    84
  original location in the distribution directory, or via the
wenzelm@28238
    85
  executable objects created by the @{tool install} utility.  Symbolic
wenzelm@28238
    86
  links are admissible, but a plain copy of the @{"file"
wenzelm@28238
    87
  "$ISABELLE_HOME/bin"} files will not work!
wenzelm@28238
    88
wenzelm@28238
    89
  \item The file @{"file" "$ISABELLE_HOME/etc/settings"} ist run as a
wenzelm@28238
    90
  @{executable_ref bash} shell script with the auto-export option for
wenzelm@28238
    91
  variables enabled.
wenzelm@28215
    92
  
wenzelm@28215
    93
  This file holds a rather long list of shell variable assigments,
wenzelm@28215
    94
  thus providing the site-wide default settings.  The Isabelle
wenzelm@28215
    95
  distribution already contains a global settings file with sensible
wenzelm@28215
    96
  defaults for most variables.  When installing the system, only a few
wenzelm@28215
    97
  of these may have to be adapted (probably @{setting ML_SYSTEM}
wenzelm@28215
    98
  etc.).
wenzelm@28215
    99
  
wenzelm@28285
   100
  \item The file @{verbatim "$ISABELLE_HOME_USER/etc/settings"} (if it
wenzelm@28215
   101
  exists) is run in the same way as the site default settings. Note
wenzelm@28215
   102
  that the variable @{setting ISABELLE_HOME_USER} has already been set
wenzelm@28914
   103
  before --- usually to @{verbatim "~/.isabelle"}.
wenzelm@28215
   104
  
wenzelm@28215
   105
  Thus individual users may override the site-wide defaults.  See also
wenzelm@28238
   106
  file @{"file" "$ISABELLE_HOME/etc/user-settings.sample"} in the
wenzelm@28238
   107
  distribution.  Typically, a user settings file would contain only a
wenzelm@28238
   108
  few lines, just the assigments that are really changed.  One should
wenzelm@28238
   109
  definitely \emph{not} start with a full copy the basic @{"file"
wenzelm@28215
   110
  "$ISABELLE_HOME/etc/settings"}. This could cause very annoying
wenzelm@28215
   111
  maintainance problems later, when the Isabelle installation is
wenzelm@28215
   112
  updated or changed otherwise.
wenzelm@28215
   113
  
wenzelm@28215
   114
  \end{enumerate}
wenzelm@28215
   115
wenzelm@28238
   116
  Since settings files are regular GNU @{executable_def bash} scripts,
wenzelm@28238
   117
  one may use complex shell commands, such as @{verbatim "if"} or
wenzelm@28215
   118
  @{verbatim "case"} statements to set variables depending on the
wenzelm@28215
   119
  system architecture or other environment variables.  Such advanced
wenzelm@28215
   120
  features should be added only with great care, though. In
wenzelm@28215
   121
  particular, external environment references should be kept at a
wenzelm@28215
   122
  minimum.
wenzelm@28215
   123
wenzelm@28215
   124
  \medskip A few variables are somewhat special:
wenzelm@28215
   125
wenzelm@28215
   126
  \begin{itemize}
wenzelm@28215
   127
wenzelm@28502
   128
  \item @{setting_def ISABELLE_PROCESS} and @{setting_def ISABELLE_TOOL} are set
wenzelm@28215
   129
  automatically to the absolute path names of the @{executable
wenzelm@28504
   130
  "isabelle-process"} and @{executable isabelle} executables,
wenzelm@28215
   131
  respectively.
wenzelm@28215
   132
  
wenzelm@28238
   133
  \item @{setting_ref ISABELLE_OUTPUT} will have the identifiers of
wenzelm@28215
   134
  the Isabelle distribution (cf.\ @{setting ISABELLE_IDENTIFIER}) and
wenzelm@28215
   135
  the ML system (cf.\ @{setting ML_IDENTIFIER}) appended automatically
wenzelm@28215
   136
  to its value.
wenzelm@28215
   137
wenzelm@28215
   138
  \end{itemize}
wenzelm@28215
   139
wenzelm@28238
   140
  \medskip Note that the settings environment may be inspected with
wenzelm@28238
   141
  the Isabelle tool @{tool getenv}.  This might help to figure out the
wenzelm@28238
   142
  effect of complex settings scripts.
wenzelm@28215
   143
*}
wenzelm@28215
   144
wenzelm@28215
   145
wenzelm@28215
   146
subsection{* Common variables *}
wenzelm@28215
   147
wenzelm@28215
   148
text {*
wenzelm@28215
   149
  This is a reference of common Isabelle settings variables. Note that
wenzelm@28215
   150
  the list is somewhat open-ended. Third-party utilities or interfaces
wenzelm@28215
   151
  may add their own selection. Variables that are special in some
wenzelm@28215
   152
  sense are marked with @{text "\<^sup>*"}.
wenzelm@28215
   153
wenzelm@28215
   154
  \begin{description}
wenzelm@28215
   155
wenzelm@28215
   156
  \item[@{setting_def ISABELLE_HOME}@{text "\<^sup>*"}] is the
wenzelm@28215
   157
  location of the top-level Isabelle distribution directory. This is
wenzelm@28215
   158
  automatically determined from the Isabelle executable that has been
wenzelm@28215
   159
  invoked.  Do not attempt to set @{setting ISABELLE_HOME} yourself
wenzelm@28238
   160
  from the shell!
wenzelm@28215
   161
  
wenzelm@28215
   162
  \item[@{setting_def ISABELLE_HOME_USER}] is the user-specific
wenzelm@28215
   163
  counterpart of @{setting ISABELLE_HOME}. The default value is
wenzelm@28914
   164
  @{verbatim "~/.isabelle"}, under rare circumstances this may be
wenzelm@28215
   165
  changed in the global setting file.  Typically, the @{setting
wenzelm@28215
   166
  ISABELLE_HOME_USER} directory mimics @{setting ISABELLE_HOME} to
wenzelm@28215
   167
  some extend. In particular, site-wide defaults may be overridden by
wenzelm@28285
   168
  a private @{verbatim "$ISABELLE_HOME_USER/etc/settings"}.
wenzelm@28215
   169
  
wenzelm@28502
   170
  \item[@{setting_def ISABELLE_PROCESS}@{text "\<^sup>*"}, @{setting
wenzelm@28500
   171
  ISABELLE_TOOL}@{text "\<^sup>*"}] are automatically set to the full path
wenzelm@28215
   172
  names of the @{executable "isabelle-process"} and @{executable
wenzelm@28504
   173
  isabelle} executables, respectively.  Thus other tools and scripts
wenzelm@28238
   174
  need not assume that the @{"file" "$ISABELLE_HOME/bin"} directory is
wenzelm@28238
   175
  on the current search path of the shell.
wenzelm@28215
   176
  
wenzelm@28215
   177
  \item[@{setting_def ISABELLE_IDENTIFIER}@{text "\<^sup>*"}] refers
wenzelm@28215
   178
  to the name of this Isabelle distribution, e.g.\ ``@{verbatim
wenzelm@28215
   179
  Isabelle2008}''.
wenzelm@28215
   180
wenzelm@28215
   181
  \item[@{setting_def ML_SYSTEM}, @{setting_def ML_HOME},
wenzelm@28215
   182
  @{setting_def ML_OPTIONS}, @{setting_def ML_PLATFORM}, @{setting_def
wenzelm@28215
   183
  ML_IDENTIFIER}@{text "\<^sup>*"}] specify the underlying ML system
wenzelm@28215
   184
  to be used for Isabelle.  There is only a fixed set of admissable
wenzelm@28238
   185
  @{setting ML_SYSTEM} names (see the @{"file"
wenzelm@28238
   186
  "$ISABELLE_HOME/etc/settings"} file of the distribution).
wenzelm@28215
   187
  
wenzelm@28215
   188
  The actual compiler binary will be run from the directory @{setting
wenzelm@28215
   189
  ML_HOME}, with @{setting ML_OPTIONS} as first arguments on the
wenzelm@28215
   190
  command line.  The optional @{setting ML_PLATFORM} may specify the
wenzelm@28215
   191
  binary format of ML heap images, which is useful for cross-platform
wenzelm@28215
   192
  installations.  The value of @{setting ML_IDENTIFIER} is
wenzelm@28215
   193
  automatically obtained by composing the values of @{setting
wenzelm@28215
   194
  ML_SYSTEM}, @{setting ML_PLATFORM} and the Isabelle version values.
wenzelm@28215
   195
  
wenzelm@28215
   196
  \item[@{setting_def ISABELLE_PATH}] is a list of directories
wenzelm@28215
   197
  (separated by colons) where Isabelle logic images may reside.  When
wenzelm@28215
   198
  looking up heaps files, the value of @{setting ML_IDENTIFIER} is
wenzelm@28215
   199
  appended to each component internally.
wenzelm@28215
   200
  
wenzelm@28215
   201
  \item[@{setting_def ISABELLE_OUTPUT}@{text "\<^sup>*"}] is a
wenzelm@28215
   202
  directory where output heap files should be stored by default. The
wenzelm@28215
   203
  ML system and Isabelle version identifier is appended here, too.
wenzelm@28215
   204
  
wenzelm@28215
   205
  \item[@{setting_def ISABELLE_BROWSER_INFO}] is the directory where
wenzelm@28215
   206
  theory browser information (HTML text, graph data, and printable
wenzelm@28215
   207
  documents) is stored (see also \secref{sec:info}).  The default
wenzelm@28215
   208
  value is @{verbatim "$ISABELLE_HOME_USER/browser_info"}.
wenzelm@28215
   209
  
wenzelm@28215
   210
  \item[@{setting_def ISABELLE_LOGIC}] specifies the default logic to
wenzelm@28215
   211
  load if none is given explicitely by the user.  The default value is
wenzelm@28215
   212
  @{verbatim HOL}.
wenzelm@28215
   213
  
wenzelm@28215
   214
  \item[@{setting_def ISABELLE_LINE_EDITOR}] specifies the default
wenzelm@28238
   215
  line editor for the @{tool_ref tty} interface.
wenzelm@28215
   216
wenzelm@28215
   217
  \item[@{setting_def ISABELLE_USEDIR_OPTIONS}] is implicitly prefixed
wenzelm@28238
   218
  to the command line of any @{tool_ref usedir} invocation. This
wenzelm@28238
   219
  typically contains compilation options for object-logics --- @{tool
wenzelm@28238
   220
  usedir} is the basic utility for managing logic sessions (cf.\ the
wenzelm@28238
   221
  @{verbatim IsaMakefile}s in the distribution).
wenzelm@28215
   222
wenzelm@28215
   223
  \item[@{setting_def ISABELLE_FILE_IDENT}] specifies a shell command
wenzelm@28215
   224
  for producing a source file identification, based on the actual
wenzelm@28215
   225
  content instead of the full physical path and date stamp (which is
wenzelm@28215
   226
  the default). A typical identification would produce a ``digest'' of
wenzelm@28215
   227
  the text, using a cryptographic hash function like SHA-1, for
wenzelm@28215
   228
  example.
wenzelm@28215
   229
  
wenzelm@28215
   230
  \item[@{setting_def ISABELLE_LATEX}, @{setting_def
wenzelm@28215
   231
  ISABELLE_PDFLATEX}, @{setting_def ISABELLE_BIBTEX}, @{setting_def
wenzelm@28215
   232
  ISABELLE_DVIPS}] refer to {\LaTeX} related tools for Isabelle
wenzelm@28215
   233
  document preparation (see also \secref{sec:tool-latex}).
wenzelm@28215
   234
  
wenzelm@28215
   235
  \item[@{setting_def ISABELLE_TOOLS}] is a colon separated list of
wenzelm@28504
   236
  directories that are scanned by @{executable isabelle} for external
wenzelm@28504
   237
  utility programs (see also \secref{sec:isabelle-tool}).
wenzelm@28215
   238
  
wenzelm@28215
   239
  \item[@{setting_def ISABELLE_DOCS}] is a colon separated list of
wenzelm@28215
   240
  directories with documentation files.
wenzelm@28215
   241
  
wenzelm@28215
   242
  \item[@{setting_def ISABELLE_DOC_FORMAT}] specifies the preferred
wenzelm@28215
   243
  document format, typically @{verbatim dvi} or @{verbatim pdf}.
wenzelm@28215
   244
  
wenzelm@28215
   245
  \item[@{setting_def DVI_VIEWER}] specifies the command to be used
wenzelm@28215
   246
  for displaying @{verbatim dvi} files.
wenzelm@28215
   247
  
wenzelm@28215
   248
  \item[@{setting_def PDF_VIEWER}] specifies the command to be used
wenzelm@28215
   249
  for displaying @{verbatim pdf} files.
wenzelm@28215
   250
  
wenzelm@28215
   251
  \item[@{setting_def PRINT_COMMAND}] specifies the standard printer
wenzelm@28215
   252
  spool command, which is expected to accept @{verbatim ps} files.
wenzelm@28215
   253
  
wenzelm@28215
   254
  \item[@{setting_def ISABELLE_TMP_PREFIX}@{text "\<^sup>*"}] is the
wenzelm@28238
   255
  prefix from which any running @{executable "isabelle-process"}
wenzelm@28238
   256
  derives an individual directory for temporary files.  The default is
wenzelm@28215
   257
  somewhere in @{verbatim "/tmp"}.
wenzelm@28215
   258
  
wenzelm@28215
   259
  \item[@{setting_def ISABELLE_INTERFACE}] is an identifier that
wenzelm@28215
   260
  specifies the actual user interface that the capital @{executable
wenzelm@28215
   261
  Isabelle} or @{executable "isabelle-interface"} should invoke.  See
wenzelm@28215
   262
  \secref{sec:interface} for more details.
wenzelm@28215
   263
wenzelm@28215
   264
  \end{description}
wenzelm@28215
   265
*}
wenzelm@28215
   266
wenzelm@28215
   267
wenzelm@28215
   268
section {* The raw Isabelle process *}
wenzelm@28215
   269
wenzelm@28215
   270
text {*
wenzelm@28504
   271
  The @{executable_def "isabelle-process"} executable runs bare-bones
wenzelm@28504
   272
  Isabelle logic sessions --- either interactively or in batch mode.
wenzelm@28504
   273
  It provides an abstraction over the underlying ML system, and over
wenzelm@28504
   274
  the actual heap file locations.  Its usage is:
wenzelm@28215
   275
wenzelm@28215
   276
\begin{ttbox}
wenzelm@28238
   277
Usage: isabelle-process [OPTIONS] [INPUT] [OUTPUT]
wenzelm@28215
   278
wenzelm@28215
   279
  Options are:
wenzelm@28215
   280
    -C           tell ML system to copy output image
wenzelm@28215
   281
    -I           startup Isar interaction mode
wenzelm@28215
   282
    -P           startup Proof General interaction mode
wenzelm@28215
   283
    -S           secure mode -- disallow critical operations
wenzelm@28215
   284
    -W OUTPUT    startup process wrapper, with messages going to OUTPUT stream
wenzelm@28215
   285
    -X           startup PGIP interaction mode
wenzelm@28215
   286
    -c           tell ML system to compress output image
wenzelm@28215
   287
    -e MLTEXT    pass MLTEXT to the ML session
wenzelm@28215
   288
    -f           pass 'Session.finish();' to the ML session
wenzelm@28215
   289
    -m MODE      add print mode for output
wenzelm@28215
   290
    -q           non-interactive session
wenzelm@28215
   291
    -r           open heap file read-only
wenzelm@28215
   292
    -u           pass 'use"ROOT.ML";' to the ML session
wenzelm@28215
   293
    -w           reset write permissions on OUTPUT
wenzelm@28215
   294
wenzelm@28215
   295
  INPUT (default "\$ISABELLE_LOGIC") and OUTPUT specify in/out heaps.
wenzelm@28215
   296
  These are either names to be searched in the Isabelle path, or
wenzelm@28215
   297
  actual file names (containing at least one /).
wenzelm@28215
   298
  If INPUT is "RAW_ML_SYSTEM", just start the bare bones ML system.
wenzelm@28215
   299
\end{ttbox}
wenzelm@28215
   300
wenzelm@28215
   301
  Input files without path specifications are looked up in the
wenzelm@28215
   302
  @{setting ISABELLE_PATH} setting, which may consist of multiple
wenzelm@28215
   303
  components separated by colons --- these are tried in the given
wenzelm@28215
   304
  order with the value of @{setting ML_IDENTIFIER} appended
wenzelm@28215
   305
  internally.  In a similar way, base names are relative to the
wenzelm@28215
   306
  directory specified by @{setting ISABELLE_OUTPUT}.  In any case,
wenzelm@28215
   307
  actual file locations may also be given by including at least one
wenzelm@28215
   308
  slash (@{verbatim "/"}) in the name (hint: use @{verbatim "./"} to
wenzelm@28215
   309
  refer to the current directory).
wenzelm@28215
   310
*}
wenzelm@28215
   311
wenzelm@28215
   312
wenzelm@28223
   313
subsubsection {* Options *}
wenzelm@28215
   314
wenzelm@28215
   315
text {*
wenzelm@28215
   316
  If the input heap file does not have write permission bits set, or
wenzelm@28215
   317
  the @{verbatim "-r"} option is given explicitely, then the session
wenzelm@28215
   318
  started will be read-only.  That is, the ML world cannot be
wenzelm@28215
   319
  committed back into the image file.  Otherwise, a writable session
wenzelm@28215
   320
  enables commits into either the input file, or into another output
wenzelm@28215
   321
  heap file (if that is given as the second argument on the command
wenzelm@28215
   322
  line).
wenzelm@28215
   323
wenzelm@28215
   324
  The read-write state of sessions is determined at startup only, it
wenzelm@28215
   325
  cannot be changed intermediately. Also note that heap images may
wenzelm@28215
   326
  require considerable amounts of disk space (approximately
wenzelm@28215
   327
  50--200~MB). Users are responsible for themselves to dispose their
wenzelm@28215
   328
  heap files when they are no longer needed.
wenzelm@28215
   329
wenzelm@28215
   330
  \medskip The @{verbatim "-w"} option makes the output heap file
wenzelm@28215
   331
  read-only after terminating.  Thus subsequent invocations cause the
wenzelm@28215
   332
  logic image to be read-only automatically.
wenzelm@28215
   333
wenzelm@28215
   334
  \medskip The @{verbatim "-c"} option tells the underlying ML system
wenzelm@28215
   335
  to compress the output heap (fully transparently).  On Poly/ML for
wenzelm@28215
   336
  example, the image is garbage collected and all stored values are
wenzelm@28215
   337
  maximally shared, resulting in up to @{text "50%"} less disk space
wenzelm@28215
   338
  consumption.
wenzelm@28215
   339
wenzelm@28215
   340
  \medskip The @{verbatim "-C"} option tells the ML system to produce
wenzelm@28215
   341
  a completely self-contained output image, probably including a copy
wenzelm@28215
   342
  of the ML runtime system itself.
wenzelm@28215
   343
wenzelm@28215
   344
  \medskip Using the @{verbatim "-e"} option, arbitrary ML code may be
wenzelm@28215
   345
  passed to the Isabelle session from the command line. Multiple
wenzelm@28215
   346
  @{verbatim "-e"}'s are evaluated in the given order. Strange things
wenzelm@28215
   347
  may happen when errorneous ML code is provided. Also make sure that
wenzelm@28215
   348
  the ML commands are terminated properly by semicolon.
wenzelm@28215
   349
wenzelm@28215
   350
  \medskip The @{verbatim "-u"} option is a shortcut for @{verbatim
wenzelm@28215
   351
  "-e"} passing ``@{verbatim "use \"ROOT.ML\";"}'' to the ML session.
wenzelm@28223
   352
  The @{verbatim "-f"} option passes ``@{verbatim
wenzelm@28223
   353
  "Session.finish();"}'', which is intended mainly for administrative
wenzelm@28223
   354
  purposes.
wenzelm@28215
   355
wenzelm@28215
   356
  \medskip The @{verbatim "-m"} option adds identifiers of print modes
wenzelm@28215
   357
  to be made active for this session. Typically, this is used by some
wenzelm@28215
   358
  user interface, e.g.\ to enable output of proper mathematical
wenzelm@28215
   359
  symbols.
wenzelm@28215
   360
wenzelm@28215
   361
  \medskip Isabelle normally enters an interactive top-level loop
wenzelm@28215
   362
  (after processing the @{verbatim "-e"} texts). The @{verbatim "-q"}
wenzelm@28215
   363
  option inhibits interaction, thus providing a pure batch mode
wenzelm@28215
   364
  facility.
wenzelm@28215
   365
wenzelm@28215
   366
  \medskip The @{verbatim "-I"} option makes Isabelle enter Isar
wenzelm@28215
   367
  interaction mode on startup, instead of the primitive ML top-level.
wenzelm@28215
   368
  The @{verbatim "-P"} option configures the top-level loop for
wenzelm@28215
   369
  interaction with the Proof General user interface, and the
wenzelm@28215
   370
  @{verbatim "-X"} option enables XML-based PGIP communication.  The
wenzelm@28215
   371
  @{verbatim "-W"} option makes Isabelle enter a special process
wenzelm@28215
   372
  wrapper for interaction via an external program; the protocol is a
wenzelm@28238
   373
  stripped-down version of Proof General the interaction mode, see
wenzelm@28238
   374
  also @{"file" "~~/src/Pure/Tools/isabelle_process.ML"} and @{"file"
wenzelm@28238
   375
  "~~/src/Pure/Tools/isabelle_process.scala"}.
wenzelm@28215
   376
wenzelm@28215
   377
  \medskip The @{verbatim "-S"} option makes the Isabelle process more
wenzelm@28215
   378
  secure by disabling some critical operations, notably runtime
wenzelm@28215
   379
  compilation and evaluation of ML source code.
wenzelm@28215
   380
*}
wenzelm@28215
   381
wenzelm@28215
   382
wenzelm@28223
   383
subsubsection {* Examples *}
wenzelm@28215
   384
wenzelm@28215
   385
text {*
wenzelm@28215
   386
  Run an interactive session of the default object-logic (as specified
wenzelm@28215
   387
  by the @{setting ISABELLE_LOGIC} setting) like this:
wenzelm@28215
   388
\begin{ttbox}
wenzelm@28238
   389
isabelle-process
wenzelm@28215
   390
\end{ttbox}
wenzelm@28215
   391
wenzelm@28215
   392
  Usually @{setting ISABELLE_LOGIC} refers to one of the standard
wenzelm@28215
   393
  logic images, which are read-only by default.  A writable session
wenzelm@28215
   394
  --- based on @{verbatim FOL}, but output to @{verbatim Foo} (in the
wenzelm@28238
   395
  directory specified by the @{setting ISABELLE_OUTPUT} setting) ---
wenzelm@28215
   396
  may be invoked as follows:
wenzelm@28215
   397
\begin{ttbox}
wenzelm@28238
   398
isabelle-process FOL Foo
wenzelm@28215
   399
\end{ttbox}
wenzelm@28215
   400
  Ending this session normally (e.g.\ by typing control-D) dumps the
wenzelm@28215
   401
  whole ML system state into @{verbatim Foo}. Be prepared for several
wenzelm@28215
   402
  tens of megabytes.
wenzelm@28215
   403
wenzelm@28215
   404
  The @{verbatim Foo} session may be continued later (still in
wenzelm@28215
   405
  writable state) by:
wenzelm@28215
   406
\begin{ttbox}
wenzelm@28238
   407
isabelle-process Foo
wenzelm@28215
   408
\end{ttbox}
wenzelm@28215
   409
  A read-only @{verbatim Foo} session may be started by:
wenzelm@28215
   410
\begin{ttbox}
wenzelm@28238
   411
isabelle-process -r Foo
wenzelm@28215
   412
\end{ttbox}
wenzelm@28215
   413
wenzelm@28215
   414
  \medskip Note that manual session management like this does
wenzelm@28215
   415
  \emph{not} provide proper setup for theory presentation.  This would
wenzelm@28238
   416
  require the @{tool usedir} utility.
wenzelm@28215
   417
wenzelm@28238
   418
  \bigskip The next example demonstrates batch execution of Isabelle.
wenzelm@28238
   419
  We retrieve the @{verbatim FOL} theory value from the theory loader
wenzelm@28238
   420
  within ML:
wenzelm@28215
   421
\begin{ttbox}
wenzelm@28238
   422
isabelle-process -e 'theory "FOL";' -q -r FOL
wenzelm@28215
   423
\end{ttbox}
wenzelm@28215
   424
  Note that the output text will be interspersed with additional junk
wenzelm@28238
   425
  messages by the ML runtime environment.  The @{verbatim "-W"} option
wenzelm@28238
   426
  allows to communicate with the Isabelle process via an external
wenzelm@28238
   427
  program in a more robust fashion.
wenzelm@28238
   428
*}
wenzelm@28238
   429
wenzelm@28238
   430
wenzelm@28504
   431
section {* The Isabelle tools wrapper \label{sec:isabelle-tool} *}
wenzelm@28238
   432
wenzelm@28238
   433
text {*
wenzelm@28238
   434
  All Isabelle related tools and interfaces are called via a common
wenzelm@28504
   435
  wrapper --- @{executable isabelle}:
wenzelm@28238
   436
wenzelm@28238
   437
\begin{ttbox}
wenzelm@28504
   438
Usage: isabelle TOOL [ARGS ...]
wenzelm@28238
   439
wenzelm@28506
   440
  Start Isabelle tool NAME with ARGS; pass "-?" for tool specific help.
wenzelm@28238
   441
wenzelm@28238
   442
  Available tools are:
wenzelm@28238
   443
wenzelm@28238
   444
    browser - Isabelle graph browser
wenzelm@28238
   445
    \dots
wenzelm@28238
   446
\end{ttbox}
wenzelm@28238
   447
wenzelm@28238
   448
  In principle, Isabelle tools are ordinary executable scripts that
wenzelm@28238
   449
  are run within the Isabelle settings environment, see
wenzelm@28238
   450
  \secref{sec:settings}.  The set of available tools is collected by
wenzelm@28504
   451
  @{executable isabelle} from the directories listed in the @{setting
wenzelm@28238
   452
  ISABELLE_TOOLS} setting.  Do not try to call the scripts directly
wenzelm@28238
   453
  from the shell.  Neither should you add the tool directories to your
wenzelm@28238
   454
  shell's search path!
wenzelm@28238
   455
*}
wenzelm@28238
   456
wenzelm@28238
   457
wenzelm@28238
   458
subsubsection {* Examples *}
wenzelm@28238
   459
wenzelm@28238
   460
text {*
wenzelm@28238
   461
  Show the list of available documentation of the current Isabelle
wenzelm@28238
   462
  installation like this:
wenzelm@28238
   463
wenzelm@28238
   464
\begin{ttbox}
wenzelm@28504
   465
  isabelle doc
wenzelm@28238
   466
\end{ttbox}
wenzelm@28238
   467
wenzelm@28238
   468
  View a certain document as follows:
wenzelm@28238
   469
\begin{ttbox}
wenzelm@28504
   470
  isabelle doc isar-ref
wenzelm@28238
   471
\end{ttbox}
wenzelm@28238
   472
wenzelm@28238
   473
  Create an Isabelle session derived from HOL (see also
wenzelm@28238
   474
  \secref{sec:tool-mkdir} and \secref{sec:tool-make}):
wenzelm@28238
   475
\begin{ttbox}
wenzelm@28504
   476
  isabelle mkdir HOL Test && isabelle make
wenzelm@28238
   477
\end{ttbox}
wenzelm@28504
   478
  Note that @{verbatim "isabelle mkdir"} is usually only invoked once;
wenzelm@28238
   479
  existing sessions (including document output etc.) are then updated
wenzelm@28504
   480
  by @{verbatim "isabelle make"} alone.
wenzelm@28215
   481
*}
wenzelm@28215
   482
wenzelm@28215
   483
wenzelm@28215
   484
section {* The Isabelle interface wrapper \label{sec:interface} *}
wenzelm@28215
   485
wenzelm@28215
   486
text {*
wenzelm@28215
   487
  Isabelle is a generic theorem prover, even w.r.t.\ its user
wenzelm@28238
   488
  interface.  The @{executable_def Isabelle} (or @{executable_def
wenzelm@28215
   489
  "isabelle-interface"}) executable provides a uniform way for
wenzelm@28215
   490
  end-users to invoke a certain interface; which one to start is
wenzelm@28215
   491
  determined by the @{setting_ref ISABELLE_INTERFACE} setting
wenzelm@28215
   492
  variable, which should give a full path specification to the actual
wenzelm@28238
   493
  executable.
wenzelm@28215
   494
wenzelm@28215
   495
  Presently, the most prominent Isabelle interface is Proof
wenzelm@28215
   496
  General~\cite{proofgeneral}\index{user interface!Proof General}.
wenzelm@28215
   497
  The Proof General distribution includes an interface wrapper script
wenzelm@28215
   498
  for the regular Isar toplevel, see @{verbatim
wenzelm@28215
   499
  "ProofGeneral/isar/interface"}.  The canonical settings for
wenzelm@28215
   500
  Isabelle/Isar are as follows:
wenzelm@28215
   501
wenzelm@28215
   502
\begin{ttbox}
wenzelm@28215
   503
ISABELLE_INTERFACE=\$ISABELLE_HOME/contrib/ProofGeneral/isar/interface
wenzelm@28215
   504
PROOFGENERAL_OPTIONS=""
wenzelm@28215
   505
\end{ttbox}
wenzelm@28215
   506
wenzelm@28215
   507
  Thus @{executable Isabelle} would automatically invoke Emacs with
wenzelm@28215
   508
  proper setup of the Proof General Lisp packages.  There are some
wenzelm@28215
   509
  options available, such as @{verbatim "-l"} for passing the logic
wenzelm@28215
   510
  image to be used by default, or @{verbatim "-m"} to tune the
wenzelm@28250
   511
  standard print mode.
wenzelm@28215
   512
  
wenzelm@28215
   513
  \medskip Note that the world may be also seen the other way round:
wenzelm@28215
   514
  Emacs may be started first (with proper setup of Proof General
wenzelm@28238
   515
  mode), and @{executable "isabelle-process"} run from within.  This
wenzelm@28238
   516
  requires further Emacs Lisp configuration, see the Proof General
wenzelm@28215
   517
  documentation \cite{proofgeneral} for more information.
wenzelm@28215
   518
*}
wenzelm@28215
   519
wenzelm@28223
   520
end