src/Doc/System/Environment.thy
author wenzelm
Sat, 10 Sep 2022 15:48:36 +0200
changeset 76105 7ce11c135dad
parent 75642 bb048086468a
child 76987 4c275405faae
permissions -rw-r--r--
update to Isabelle2022 and Ubuntu 22.04;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
66732
e566fb4d43d4 more and updated documentation;
wenzelm
parents: 64509
diff changeset
     1
(*:maxLineLen=78:*)
61575
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
     2
62640
e36cbe677c17 clarified name;
wenzelm
parents: 62639
diff changeset
     3
theory Environment
43564
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 41955
diff changeset
     4
imports Base
28215
a1cfc43ac47d converted basics.tex to theory file;
wenzelm
parents:
diff changeset
     5
begin
a1cfc43ac47d converted basics.tex to theory file;
wenzelm
parents:
diff changeset
     6
58618
782f0b662cae more cartouches;
wenzelm
parents: 58553
diff changeset
     7
chapter \<open>The Isabelle system environment\<close>
28215
a1cfc43ac47d converted basics.tex to theory file;
wenzelm
parents:
diff changeset
     8
61575
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
     9
text \<open>
62588
cd266473b81b isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents: 62576
diff changeset
    10
  This manual describes Isabelle together with related tools as seen from a
cd266473b81b isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents: 62576
diff changeset
    11
  system oriented view. See also the \<^emph>\<open>Isabelle/Isar Reference Manual\<close> @{cite
cd266473b81b isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents: 62576
diff changeset
    12
  "isabelle-isar-ref"} for the actual Isabelle input language and related
cd266473b81b isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents: 62576
diff changeset
    13
  concepts, and \<^emph>\<open>The Isabelle/Isar Implementation Manual\<close> @{cite
cd266473b81b isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents: 62576
diff changeset
    14
  "isabelle-implementation"} for the main concepts of the underlying
cd266473b81b isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents: 62576
diff changeset
    15
  implementation in Isabelle/ML.
58618
782f0b662cae more cartouches;
wenzelm
parents: 58553
diff changeset
    16
\<close>
28215
a1cfc43ac47d converted basics.tex to theory file;
wenzelm
parents:
diff changeset
    17
a1cfc43ac47d converted basics.tex to theory file;
wenzelm
parents:
diff changeset
    18
58618
782f0b662cae more cartouches;
wenzelm
parents: 58553
diff changeset
    19
section \<open>Isabelle settings \label{sec:settings}\<close>
28215
a1cfc43ac47d converted basics.tex to theory file;
wenzelm
parents:
diff changeset
    20
58618
782f0b662cae more cartouches;
wenzelm
parents: 58553
diff changeset
    21
text \<open>
62588
cd266473b81b isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents: 62576
diff changeset
    22
  Isabelle executables may depend on the \<^emph>\<open>Isabelle settings\<close> within the
cd266473b81b isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents: 62576
diff changeset
    23
  process environment. This is a statically scoped collection of environment
62013
92a2372a226b discontinued documentation of old browser;
wenzelm
parents: 61656
diff changeset
    24
  variables, such as @{setting ISABELLE_HOME}, @{setting ML_SYSTEM}, @{setting
92a2372a226b discontinued documentation of old browser;
wenzelm
parents: 61656
diff changeset
    25
  ML_HOME}. These variables are \<^emph>\<open>not\<close> intended to be set directly from the
75161
95612f330c93 misc tuning based on comments by Heiko Eißfeldt;
wenzelm
parents: 74427
diff changeset
    26
  shell, but are provided by Isabelle \<^emph>\<open>components\<close> within their \<^emph>\<open>settings
95612f330c93 misc tuning based on comments by Heiko Eißfeldt;
wenzelm
parents: 74427
diff changeset
    27
  files\<close>, as explained below.
58618
782f0b662cae more cartouches;
wenzelm
parents: 58553
diff changeset
    28
\<close>
28215
a1cfc43ac47d converted basics.tex to theory file;
wenzelm
parents:
diff changeset
    29
a1cfc43ac47d converted basics.tex to theory file;
wenzelm
parents:
diff changeset
    30
58618
782f0b662cae more cartouches;
wenzelm
parents: 58553
diff changeset
    31
subsection \<open>Bootstrapping the environment \label{sec:boot}\<close>
28215
a1cfc43ac47d converted basics.tex to theory file;
wenzelm
parents:
diff changeset
    32
61575
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
    33
text \<open>
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
    34
  Isabelle executables need to be run within a proper settings environment.
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
    35
  This is bootstrapped as described below, on the first invocation of one of
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
    36
  the outer wrapper scripts (such as @{executable_ref isabelle}). This happens
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
    37
  only once for each process tree, i.e.\ the environment is passed to
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
    38
  subprocesses according to regular Unix conventions.
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
    39
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
    40
    \<^enum> The special variable @{setting_def ISABELLE_HOME} is determined
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
    41
    automatically from the location of the binary that has been run.
28215
a1cfc43ac47d converted basics.tex to theory file;
wenzelm
parents:
diff changeset
    42
61575
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
    43
    You should not try to set @{setting ISABELLE_HOME} manually. Also note
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
    44
    that the Isabelle executables either have to be run from their original
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
    45
    location in the distribution directory, or via the executable objects
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
    46
    created by the @{tool install} tool. Symbolic links are admissible, but a
63680
6e1e8b5abbfa more symbols;
wenzelm
parents: 63669
diff changeset
    47
    plain copy of the \<^dir>\<open>$ISABELLE_HOME/bin\<close> files will not work!
61575
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
    48
63680
6e1e8b5abbfa more symbols;
wenzelm
parents: 63669
diff changeset
    49
    \<^enum> The file \<^file>\<open>$ISABELLE_HOME/etc/settings\<close> is run as a @{executable_ref
6e1e8b5abbfa more symbols;
wenzelm
parents: 63669
diff changeset
    50
    bash} shell script with the auto-export option for variables enabled.
28238
398bf960d3d4 misc tuning and modernization;
wenzelm
parents: 28223
diff changeset
    51
61575
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
    52
    This file holds a rather long list of shell variable assignments, thus
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
    53
    providing the site-wide default settings. The Isabelle distribution
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
    54
    already contains a global settings file with sensible defaults for most
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
    55
    variables. When installing the system, only a few of these may have to be
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
    56
    adapted (probably @{setting ML_SYSTEM} etc.).
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
    57
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 68541
diff changeset
    58
    \<^enum> The file \<^path>\<open>$ISABELLE_HOME_USER/etc/settings\<close> (if it
61575
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
    59
    exists) is run in the same way as the site default settings. Note that the
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
    60
    variable @{setting ISABELLE_HOME_USER} has already been set before ---
76105
7ce11c135dad update to Isabelle2022 and Ubuntu 22.04;
wenzelm
parents: 75642
diff changeset
    61
    usually to something like \<^verbatim>\<open>$USER_HOME/.isabelle/Isabelle2022\<close>.
61458
987533262fc2 Markdown support in document text;
wenzelm
parents: 61439
diff changeset
    62
61575
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
    63
    Thus individual users may override the site-wide defaults. Typically, a
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
    64
    user settings file contains only a few lines, with some assignments that
63680
6e1e8b5abbfa more symbols;
wenzelm
parents: 63669
diff changeset
    65
    are actually changed. Never copy the central
6e1e8b5abbfa more symbols;
wenzelm
parents: 63669
diff changeset
    66
    \<^file>\<open>$ISABELLE_HOME/etc/settings\<close> file!
28215
a1cfc43ac47d converted basics.tex to theory file;
wenzelm
parents:
diff changeset
    67
61575
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
    68
  Since settings files are regular GNU @{executable_def bash} scripts, one may
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
    69
  use complex shell commands, such as \<^verbatim>\<open>if\<close> or \<^verbatim>\<open>case\<close> statements to set
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
    70
  variables depending on the system architecture or other environment
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
    71
  variables. Such advanced features should be added only with great care,
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
    72
  though. In particular, external environment references should be kept at a
28215
a1cfc43ac47d converted basics.tex to theory file;
wenzelm
parents:
diff changeset
    73
  minimum.
a1cfc43ac47d converted basics.tex to theory file;
wenzelm
parents:
diff changeset
    74
61406
eb2463fc4d7b more symbols;
wenzelm
parents: 59904
diff changeset
    75
  \<^medskip>
68514
wenzelm
parents: 68477
diff changeset
    76
  A few variables are somewhat special, e.g.\ @{setting_def ISABELLE_TOOL} is
68219
c0341c0080e2 clarified store directories;
wenzelm
parents: 68003
diff changeset
    77
  set automatically to the absolute path name of the @{executable isabelle}
c0341c0080e2 clarified store directories;
wenzelm
parents: 68003
diff changeset
    78
  executables.
28215
a1cfc43ac47d converted basics.tex to theory file;
wenzelm
parents:
diff changeset
    79
61406
eb2463fc4d7b more symbols;
wenzelm
parents: 59904
diff changeset
    80
  \<^medskip>
61575
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
    81
  Note that the settings environment may be inspected with the @{tool getenv}
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
    82
  tool. This might help to figure out the effect of complex settings scripts.
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
    83
\<close>
28215
a1cfc43ac47d converted basics.tex to theory file;
wenzelm
parents:
diff changeset
    84
a1cfc43ac47d converted basics.tex to theory file;
wenzelm
parents:
diff changeset
    85
58618
782f0b662cae more cartouches;
wenzelm
parents: 58553
diff changeset
    86
subsection \<open>Common variables\<close>
28215
a1cfc43ac47d converted basics.tex to theory file;
wenzelm
parents:
diff changeset
    87
58618
782f0b662cae more cartouches;
wenzelm
parents: 58553
diff changeset
    88
text \<open>
61575
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
    89
  This is a reference of common Isabelle settings variables. Note that the
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
    90
  list is somewhat open-ended. Third-party utilities or interfaces may add
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
    91
  their own selection. Variables that are special in some sense are marked
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
    92
  with \<open>\<^sup>*\<close>.
28215
a1cfc43ac47d converted basics.tex to theory file;
wenzelm
parents:
diff changeset
    93
61575
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
    94
  \<^descr>[@{setting_def USER_HOME}\<open>\<^sup>*\<close>] Is the cross-platform user home directory.
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
    95
  On Unix systems this is usually the same as @{setting HOME}, but on Windows
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
    96
  it is the regular home directory of the user, not the one of within the
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
    97
  Cygwin root file-system.\<^footnote>\<open>Cygwin itself offers another choice whether its
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 68541
diff changeset
    98
  HOME should point to the \<^path>\<open>/home\<close> directory tree or the Windows user
63669
256fc20716f2 clarified antiquotations;
wenzelm
parents: 62847
diff changeset
    99
  home.\<close>
47661
012a887997f3 USER_HOME settings variable points to cross-platform user home directory;
wenzelm
parents: 45028
diff changeset
   100
61575
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
   101
  \<^descr>[@{setting_def ISABELLE_HOME}\<open>\<^sup>*\<close>] is the location of the top-level
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
   102
  Isabelle distribution directory. This is automatically determined from the
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
   103
  Isabelle executable that has been invoked. Do not attempt to set @{setting
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
   104
  ISABELLE_HOME} yourself from the shell!
50182
30177ec0be36 added ISABELLE_PLATFORM_FAMILY;
wenzelm
parents: 49173
diff changeset
   105
61575
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
   106
  \<^descr>[@{setting_def ISABELLE_HOME_USER}] is the user-specific counterpart of
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 68541
diff changeset
   107
  @{setting ISABELLE_HOME}. The default value is relative to \<^path>\<open>$USER_HOME/.isabelle\<close>, under rare circumstances this may be changed in the
61575
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
   108
  global setting file. Typically, the @{setting ISABELLE_HOME_USER} directory
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
   109
  mimics @{setting ISABELLE_HOME} to some extend. In particular, site-wide
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
   110
  defaults may be overridden by a private \<^verbatim>\<open>$ISABELLE_HOME_USER/etc/settings\<close>.
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
   111
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
   112
  \<^descr>[@{setting_def ISABELLE_PLATFORM_FAMILY}\<open>\<^sup>*\<close>] is automatically set to the
73671
7404f2e1d092 clarified platforms;
wenzelm
parents: 73150
diff changeset
   113
  general platform family (\<^verbatim>\<open>linux\<close>, \<^verbatim>\<open>macos\<close>, \<^verbatim>\<open>windows\<close>). Note that
50182
30177ec0be36 added ISABELLE_PLATFORM_FAMILY;
wenzelm
parents: 49173
diff changeset
   114
  platform-dependent tools usually need to refer to the more specific
68003
9b89d831dc80 prefer explicit 32/64 bit platform settings;
wenzelm
parents: 67904
diff changeset
   115
  identification according to @{setting ISABELLE_PLATFORM64}, @{setting
73671
7404f2e1d092 clarified platforms;
wenzelm
parents: 73150
diff changeset
   116
  ISABELLE_WINDOWS_PLATFORM64}, @{setting ISABELLE_APPLE_PLATFORM64}.
66732
e566fb4d43d4 more and updated documentation;
wenzelm
parents: 64509
diff changeset
   117
73671
7404f2e1d092 clarified platforms;
wenzelm
parents: 73150
diff changeset
   118
  \<^descr>[@{setting_def ISABELLE_PLATFORM64}\<open>\<^sup>*\<close>] indicates the standard Posix
7404f2e1d092 clarified platforms;
wenzelm
parents: 73150
diff changeset
   119
  platform (\<^verbatim>\<open>x86_64\<close>, \<^verbatim>\<open>arm64\<close>), together with a symbolic name for the
7404f2e1d092 clarified platforms;
wenzelm
parents: 73150
diff changeset
   120
  operating system (\<^verbatim>\<open>linux\<close>, \<^verbatim>\<open>darwin\<close>, \<^verbatim>\<open>cygwin\<close>).
36196
cbb9ee265cdd added ISABELLE_PLATFORM and ISABELLE_PLATFORM64 -- NB: ML and JVM may have a different idea;
wenzelm
parents: 33952
diff changeset
   121
68003
9b89d831dc80 prefer explicit 32/64 bit platform settings;
wenzelm
parents: 67904
diff changeset
   122
  \<^descr>[@{setting_def ISABELLE_WINDOWS_PLATFORM64}\<open>\<^sup>*\<close>, @{setting_def
73671
7404f2e1d092 clarified platforms;
wenzelm
parents: 73150
diff changeset
   123
  ISABELLE_WINDOWS_PLATFORM32}\<open>\<^sup>*\<close>] indicate the native Windows platform: both
7404f2e1d092 clarified platforms;
wenzelm
parents: 73150
diff changeset
   124
  64\,bit and 32\,bit executables are supported here.
47823
4fad76e6f4ba some manual updates;
wenzelm
parents: 47661
diff changeset
   125
66732
e566fb4d43d4 more and updated documentation;
wenzelm
parents: 64509
diff changeset
   126
  In GNU bash scripts, a preference for native Windows platform variants may
68003
9b89d831dc80 prefer explicit 32/64 bit platform settings;
wenzelm
parents: 67904
diff changeset
   127
  be specified like this (first 64 bit, second 32 bit):
66732
e566fb4d43d4 more and updated documentation;
wenzelm
parents: 64509
diff changeset
   128
68003
9b89d831dc80 prefer explicit 32/64 bit platform settings;
wenzelm
parents: 67904
diff changeset
   129
  @{verbatim [display] \<open>"${ISABELLE_WINDOWS_PLATFORM64:-${ISABELLE_WINDOWS_PLATFORM32:-
73671
7404f2e1d092 clarified platforms;
wenzelm
parents: 73150
diff changeset
   130
  $ISABELLE_PLATFORM64}}"\<close>}
7404f2e1d092 clarified platforms;
wenzelm
parents: 73150
diff changeset
   131
7404f2e1d092 clarified platforms;
wenzelm
parents: 73150
diff changeset
   132
  \<^descr>[@{setting_def ISABELLE_APPLE_PLATFORM64}\<open>\<^sup>*\<close>] indicates the native Apple
7404f2e1d092 clarified platforms;
wenzelm
parents: 73150
diff changeset
   133
  Silicon platform (\<^verbatim>\<open>arm64-darwin\<close> if available), instead of Intel emulation
7404f2e1d092 clarified platforms;
wenzelm
parents: 73150
diff changeset
   134
  via Rosetta (\<^verbatim>\<open>ISABELLE_PLATFORM64=x86_64-darwin\<close>).
36196
cbb9ee265cdd added ISABELLE_PLATFORM and ISABELLE_PLATFORM64 -- NB: ML and JVM may have a different idea;
wenzelm
parents: 33952
diff changeset
   135
62588
cd266473b81b isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents: 62576
diff changeset
   136
  \<^descr>[@{setting ISABELLE_TOOL}\<open>\<^sup>*\<close>] is automatically set to the full path name
66787
64b47495676d obsolete;
wenzelm
parents: 66785
diff changeset
   137
  of the @{executable isabelle} executable.
28215
a1cfc43ac47d converted basics.tex to theory file;
wenzelm
parents:
diff changeset
   138
61575
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
   139
  \<^descr>[@{setting_def ISABELLE_IDENTIFIER}\<open>\<^sup>*\<close>] refers to the name of this
76105
7ce11c135dad update to Isabelle2022 and Ubuntu 22.04;
wenzelm
parents: 75642
diff changeset
   140
  Isabelle distribution, e.g.\ ``\<^verbatim>\<open>Isabelle2022\<close>''.
61575
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
   141
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
   142
  \<^descr>[@{setting_def ML_SYSTEM}, @{setting_def ML_HOME}, @{setting_def
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
   143
  ML_OPTIONS}, @{setting_def ML_PLATFORM}, @{setting_def ML_IDENTIFIER}\<open>\<^sup>*\<close>]
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
   144
  specify the underlying ML system to be used for Isabelle. There is only a
63680
6e1e8b5abbfa more symbols;
wenzelm
parents: 63669
diff changeset
   145
  fixed set of admissable @{setting ML_SYSTEM} names (see the
6e1e8b5abbfa more symbols;
wenzelm
parents: 63669
diff changeset
   146
  \<^file>\<open>$ISABELLE_HOME/etc/settings\<close> file of the distribution).
61575
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
   147
28215
a1cfc43ac47d converted basics.tex to theory file;
wenzelm
parents:
diff changeset
   148
  The actual compiler binary will be run from the directory @{setting
61575
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
   149
  ML_HOME}, with @{setting ML_OPTIONS} as first arguments on the command line.
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
   150
  The optional @{setting ML_PLATFORM} may specify the binary format of ML heap
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
   151
  images, which is useful for cross-platform installations. The value of
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
   152
  @{setting ML_IDENTIFIER} is automatically obtained by composing the values
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
   153
  of @{setting ML_SYSTEM}, @{setting ML_PLATFORM} and the Isabelle version
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
   154
  values.
47823
4fad76e6f4ba some manual updates;
wenzelm
parents: 47661
diff changeset
   155
66733
9180953b976b more and updated documentation;
wenzelm
parents: 66732
diff changeset
   156
  \<^descr>[@{setting_def ISABELLE_JDK_HOME}] points to a full JDK (Java Development
9180953b976b more and updated documentation;
wenzelm
parents: 66732
diff changeset
   157
  Kit) installation with \<^verbatim>\<open>javac\<close> and \<^verbatim>\<open>jar\<close> executables. Note that
9180953b976b more and updated documentation;
wenzelm
parents: 66732
diff changeset
   158
  conventional \<^verbatim>\<open>JAVA_HOME\<close> points to the JRE (Java Runtime Environment), not
9180953b976b more and updated documentation;
wenzelm
parents: 66732
diff changeset
   159
  the JDK.
9180953b976b more and updated documentation;
wenzelm
parents: 66732
diff changeset
   160
9180953b976b more and updated documentation;
wenzelm
parents: 66732
diff changeset
   161
  \<^descr>[@{setting_def ISABELLE_JAVA_PLATFORM}] identifies the hardware and
9180953b976b more and updated documentation;
wenzelm
parents: 66732
diff changeset
   162
  operating system platform for the Java installation of Isabelle. That is
66906
03a96b8c7c06 updated to jdk-8u152, which is for x86_64 only;
wenzelm
parents: 66789
diff changeset
   163
  always the (native) 64 bit variant: \<^verbatim>\<open>x86_64-linux\<close>, \<^verbatim>\<open>x86_64-darwin\<close>,
66733
9180953b976b more and updated documentation;
wenzelm
parents: 66732
diff changeset
   164
  \<^verbatim>\<open>x86_64-windows\<close>.
61575
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
   165
68523
ccacc84e0251 clarified settings -- avoid hard-wired directories;
wenzelm
parents: 68514
diff changeset
   166
  \<^descr>[@{setting_def ISABELLE_BROWSER_INFO}] is the directory where HTML and PDF
ccacc84e0251 clarified settings -- avoid hard-wired directories;
wenzelm
parents: 68514
diff changeset
   167
  browser information is stored (see also \secref{sec:info}); its default is
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 68541
diff changeset
   168
  \<^path>\<open>$ISABELLE_HOME_USER/browser_info\<close>. For ``system build mode'' (see
68523
ccacc84e0251 clarified settings -- avoid hard-wired directories;
wenzelm
parents: 68514
diff changeset
   169
  \secref{sec:tool-build}), @{setting_def ISABELLE_BROWSER_INFO_SYSTEM} is
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 68541
diff changeset
   170
  used instead; its default is \<^path>\<open>$ISABELLE_HOME/browser_info\<close>.
68523
ccacc84e0251 clarified settings -- avoid hard-wired directories;
wenzelm
parents: 68514
diff changeset
   171
ccacc84e0251 clarified settings -- avoid hard-wired directories;
wenzelm
parents: 68514
diff changeset
   172
  \<^descr>[@{setting_def ISABELLE_HEAPS}] is the directory where session heap images,
69854
cc0b3e177b49 system option "system_heaps" supersedes various command-line options for "system build mode";
wenzelm
parents: 69593
diff changeset
   173
  log files, and build databases are stored; its default is
cc0b3e177b49 system option "system_heaps" supersedes various command-line options for "system build mode";
wenzelm
parents: 69593
diff changeset
   174
  \<^path>\<open>$ISABELLE_HOME_USER/heaps\<close>. If @{system_option system_heaps} is
cc0b3e177b49 system option "system_heaps" supersedes various command-line options for "system build mode";
wenzelm
parents: 69593
diff changeset
   175
  \<^verbatim>\<open>true\<close>, @{setting_def ISABELLE_HEAPS_SYSTEM} is used instead; its default
cc0b3e177b49 system option "system_heaps" supersedes various command-line options for "system build mode";
wenzelm
parents: 69593
diff changeset
   176
  is \<^path>\<open>$ISABELLE_HOME/heaps\<close>. See also \secref{sec:tool-build}.
61575
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
   177
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
   178
  \<^descr>[@{setting_def ISABELLE_LOGIC}] specifies the default logic to load if none
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
   179
  is given explicitely by the user. The default value is \<^verbatim>\<open>HOL\<close>.
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
   180
62562
905a5db3932d back to external line editor, due to problems of JLine with multithreading of in vs. out;
wenzelm
parents: 62559
diff changeset
   181
  \<^descr>[@{setting_def ISABELLE_LINE_EDITOR}] specifies the line editor for the
905a5db3932d back to external line editor, due to problems of JLine with multithreading of in vs. out;
wenzelm
parents: 62559
diff changeset
   182
  @{tool_ref console} interface.
905a5db3932d back to external line editor, due to problems of JLine with multithreading of in vs. out;
wenzelm
parents: 62559
diff changeset
   183
73741
941915a3b811 discontinued obsolete "isabelle latex";
wenzelm
parents: 73671
diff changeset
   184
  \<^descr>[@{setting_def ISABELLE_PDFLATEX}, @{setting_def ISABELLE_LUALATEX},
941915a3b811 discontinued obsolete "isabelle latex";
wenzelm
parents: 73671
diff changeset
   185
  @{setting_def ISABELLE_BIBTEX}, @{setting_def ISABELLE_MAKEINDEX}] refer to
941915a3b811 discontinued obsolete "isabelle latex";
wenzelm
parents: 73671
diff changeset
   186
  {\LaTeX}-related tools for Isabelle document preparation (see also
941915a3b811 discontinued obsolete "isabelle latex";
wenzelm
parents: 73671
diff changeset
   187
  \secref{sec:tool-document}).
61575
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
   188
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
   189
  \<^descr>[@{setting_def ISABELLE_TOOLS}] is a colon separated list of directories
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
   190
  that are scanned by @{executable isabelle} for external utility programs
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
   191
  (see also \secref{sec:isabelle-tool}).
50197
b385d134926d eval PDF_VIEWER/DVI_VIEWER command line, which allows additional quotes for program name, for example;
wenzelm
parents: 50182
diff changeset
   192
61575
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
   193
  \<^descr>[@{setting_def ISABELLE_DOCS}] is a colon separated list of directories
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
   194
  with documentation files.
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
   195
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
   196
  \<^descr>[@{setting_def PDF_VIEWER}] specifies the program to be used for displaying
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
   197
  \<^verbatim>\<open>pdf\<close> files.
54683
cf48ddc266e5 clarified "isabelle display" and 'display_drafts': re-use file and program instance, open asynchronously via desktop environment;
wenzelm
parents: 52746
diff changeset
   198
61575
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
   199
  \<^descr>[@{setting_def ISABELLE_TMP_PREFIX}\<open>\<^sup>*\<close>] is the prefix from which any
62588
cd266473b81b isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents: 62576
diff changeset
   200
  running Isabelle ML process derives an individual directory for temporary
cd266473b81b isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents: 62576
diff changeset
   201
  files.
68477
f090b313fdc8 more documentation;
wenzelm
parents: 68394
diff changeset
   202
f090b313fdc8 more documentation;
wenzelm
parents: 68394
diff changeset
   203
  \<^descr>[@{setting_def ISABELLE_TOOL_JAVA_OPTIONS}] is passed to the \<^verbatim>\<open>java\<close>
68514
wenzelm
parents: 68477
diff changeset
   204
  executable when running Isabelle tools (e.g.\ @{tool build}). This is
68477
f090b313fdc8 more documentation;
wenzelm
parents: 68394
diff changeset
   205
  occasionally helpful to provide more heap space, via additional options like
f090b313fdc8 more documentation;
wenzelm
parents: 68394
diff changeset
   206
  \<^verbatim>\<open>-Xms1g -Xmx4g\<close>.
58618
782f0b662cae more cartouches;
wenzelm
parents: 58553
diff changeset
   207
\<close>
28215
a1cfc43ac47d converted basics.tex to theory file;
wenzelm
parents:
diff changeset
   208
a1cfc43ac47d converted basics.tex to theory file;
wenzelm
parents:
diff changeset
   209
58618
782f0b662cae more cartouches;
wenzelm
parents: 58553
diff changeset
   210
subsection \<open>Additional components \label{sec:components}\<close>
32323
8185d3bfcbf1 tuned "Bootstrapping the environment";
wenzelm
parents: 32088
diff changeset
   211
61575
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
   212
text \<open>
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
   213
  Any directory may be registered as an explicit \<^emph>\<open>Isabelle component\<close>. The
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
   214
  general layout conventions are that of the main Isabelle distribution
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
   215
  itself, and the following two files (both optional) have a special meaning:
32323
8185d3bfcbf1 tuned "Bootstrapping the environment";
wenzelm
parents: 32088
diff changeset
   216
61575
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
   217
    \<^item> \<^verbatim>\<open>etc/settings\<close> holds additional settings that are initialized when
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
   218
    bootstrapping the overall Isabelle environment, cf.\ \secref{sec:boot}. As
64509
80aaa4ff7fed documentation for Isabelle/Scala tools;
wenzelm
parents: 63995
diff changeset
   219
    usual, the content is interpreted as a GNU bash script. It may refer to
80aaa4ff7fed documentation for Isabelle/Scala tools;
wenzelm
parents: 63995
diff changeset
   220
    the component's enclosing directory via the \<^verbatim>\<open>COMPONENT\<close> shell variable.
32323
8185d3bfcbf1 tuned "Bootstrapping the environment";
wenzelm
parents: 32088
diff changeset
   221
61575
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
   222
    For example, the following setting allows to refer to files within the
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
   223
    component later on, without having to hardwire absolute paths:
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
   224
    @{verbatim [display] \<open>MY_COMPONENT_HOME="$COMPONENT"\<close>}
32323
8185d3bfcbf1 tuned "Bootstrapping the environment";
wenzelm
parents: 32088
diff changeset
   225
61575
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
   226
    Components can also add to existing Isabelle settings such as
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
   227
    @{setting_def ISABELLE_TOOLS}, in order to provide component-specific
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
   228
    tools that can be invoked by end-users. For example:
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
   229
    @{verbatim [display] \<open>ISABELLE_TOOLS="$ISABELLE_TOOLS:$COMPONENT/lib/Tools"\<close>}
32323
8185d3bfcbf1 tuned "Bootstrapping the environment";
wenzelm
parents: 32088
diff changeset
   230
61575
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
   231
    \<^item> \<^verbatim>\<open>etc/components\<close> holds a list of further sub-components of the same
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
   232
    structure. The directory specifications given here can be either absolute
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
   233
    (with leading \<^verbatim>\<open>/\<close>) or relative to the component's main directory.
32323
8185d3bfcbf1 tuned "Bootstrapping the environment";
wenzelm
parents: 32088
diff changeset
   234
61575
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
   235
  The root of component initialization is @{setting ISABELLE_HOME} itself.
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
   236
  After initializing all of its sub-components recursively, @{setting
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
   237
  ISABELLE_HOME_USER} is included in the same manner (if that directory
71904
70442ddbfb15 tuned whitespace;
wenzelm
parents: 71903
diff changeset
   238
  exists). This allows to install private components via
70442ddbfb15 tuned whitespace;
wenzelm
parents: 71903
diff changeset
   239
  \<^path>\<open>$ISABELLE_HOME_USER/etc/components\<close>, although it is often more
70442ddbfb15 tuned whitespace;
wenzelm
parents: 71903
diff changeset
   240
  convenient to do that programmatically via the
70442ddbfb15 tuned whitespace;
wenzelm
parents: 71903
diff changeset
   241
  \<^bash_function>\<open>init_component\<close> shell function in the \<^verbatim>\<open>etc/settings\<close>
70442ddbfb15 tuned whitespace;
wenzelm
parents: 71903
diff changeset
   242
  script of \<^verbatim>\<open>$ISABELLE_HOME_USER\<close> (or any other component directory). For
70442ddbfb15 tuned whitespace;
wenzelm
parents: 71903
diff changeset
   243
  example:
66947
wenzelm
parents: 66906
diff changeset
   244
  @{verbatim [display] \<open>init_component "$HOME/screwdriver-2.0"\<close>}
48838
623ba165d059 direct support for component forests via init_components;
wenzelm
parents: 48813
diff changeset
   245
61575
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
   246
  This is tolerant wrt.\ missing component directories, but might produce a
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
   247
  warning.
48838
623ba165d059 direct support for component forests via init_components;
wenzelm
parents: 48813
diff changeset
   248
61406
eb2463fc4d7b more symbols;
wenzelm
parents: 59904
diff changeset
   249
  \<^medskip>
61575
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
   250
  More complex situations may be addressed by initializing components listed
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
   251
  in a given catalog file, relatively to some base directory:
61407
7ba7b8103565 @{verbatim [display]} supersedes old alltt/ttbox;
wenzelm
parents: 61406
diff changeset
   252
  @{verbatim [display] \<open>init_components "$HOME/my_component_store" "some_catalog_file"\<close>}
48838
623ba165d059 direct support for component forests via init_components;
wenzelm
parents: 48813
diff changeset
   253
61575
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
   254
  The component directories listed in the catalog file are treated as relative
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
   255
  to the given base directory.
48844
6408fb6f7d81 some explanations on isabelle components;
wenzelm
parents: 48838
diff changeset
   256
61575
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
   257
  See also \secref{sec:tool-components} for some tool-support for resolving
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
   258
  components that are formally initialized but not installed yet.
58618
782f0b662cae more cartouches;
wenzelm
parents: 58553
diff changeset
   259
\<close>
32323
8185d3bfcbf1 tuned "Bootstrapping the environment";
wenzelm
parents: 32088
diff changeset
   260
8185d3bfcbf1 tuned "Bootstrapping the environment";
wenzelm
parents: 32088
diff changeset
   261
62588
cd266473b81b isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents: 62576
diff changeset
   262
section \<open>The Isabelle tool wrapper \label{sec:isabelle-tool}\<close>
28215
a1cfc43ac47d converted basics.tex to theory file;
wenzelm
parents:
diff changeset
   263
58618
782f0b662cae more cartouches;
wenzelm
parents: 58553
diff changeset
   264
text \<open>
62588
cd266473b81b isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents: 62576
diff changeset
   265
  The main \<^emph>\<open>Isabelle tool wrapper\<close> provides a generic startup environment for
64509
80aaa4ff7fed documentation for Isabelle/Scala tools;
wenzelm
parents: 63995
diff changeset
   266
  Isabelle-related utilities, user interfaces, add-on applications etc. Such
80aaa4ff7fed documentation for Isabelle/Scala tools;
wenzelm
parents: 63995
diff changeset
   267
  tools automatically benefit from the settings mechanism
80aaa4ff7fed documentation for Isabelle/Scala tools;
wenzelm
parents: 63995
diff changeset
   268
  (\secref{sec:settings}). Moreover, this is the standard way to invoke
80aaa4ff7fed documentation for Isabelle/Scala tools;
wenzelm
parents: 63995
diff changeset
   269
  Isabelle/Scala functionality as a separate operating-system process.
80aaa4ff7fed documentation for Isabelle/Scala tools;
wenzelm
parents: 63995
diff changeset
   270
  Isabelle command-line tools are run uniformly via a common wrapper ---
80aaa4ff7fed documentation for Isabelle/Scala tools;
wenzelm
parents: 63995
diff changeset
   271
  @{executable_ref isabelle}:
61407
7ba7b8103565 @{verbatim [display]} supersedes old alltt/ttbox;
wenzelm
parents: 61406
diff changeset
   272
  @{verbatim [display]
62588
cd266473b81b isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents: 62576
diff changeset
   273
\<open>Usage: isabelle TOOL [ARGS ...]
cd266473b81b isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents: 62576
diff changeset
   274
62829
4141c2a8458b clarified Isabelle tool wrapper: bash, Scala, no perl, no ML;
wenzelm
parents: 62677
diff changeset
   275
  Start Isabelle TOOL with ARGS; pass "-?" for tool-specific help.
62588
cd266473b81b isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents: 62576
diff changeset
   276
cd266473b81b isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents: 62576
diff changeset
   277
Available tools:
cd266473b81b isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents: 62576
diff changeset
   278
  ...\<close>}
cd266473b81b isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents: 62576
diff changeset
   279
64509
80aaa4ff7fed documentation for Isabelle/Scala tools;
wenzelm
parents: 63995
diff changeset
   280
  Tools may be implemented in Isabelle/Scala or as stand-alone executables
80aaa4ff7fed documentation for Isabelle/Scala tools;
wenzelm
parents: 63995
diff changeset
   281
  (usually as GNU bash scripts). In the invocation of ``@{executable
80aaa4ff7fed documentation for Isabelle/Scala tools;
wenzelm
parents: 63995
diff changeset
   282
  isabelle}~\<open>tool\<close>'', the named \<open>tool\<close> is resolved as follows (and in the
80aaa4ff7fed documentation for Isabelle/Scala tools;
wenzelm
parents: 63995
diff changeset
   283
  given order).
80aaa4ff7fed documentation for Isabelle/Scala tools;
wenzelm
parents: 63995
diff changeset
   284
80aaa4ff7fed documentation for Isabelle/Scala tools;
wenzelm
parents: 63995
diff changeset
   285
    \<^enum> An external tool found on the directories listed in the @{setting
80aaa4ff7fed documentation for Isabelle/Scala tools;
wenzelm
parents: 63995
diff changeset
   286
    ISABELLE_TOOLS} settings variable (colon-separated list in standard POSIX
75642
bb048086468a discontinued Isabelle tools implemented as .scala scripts;
wenzelm
parents: 75291
diff changeset
   287
    notation). It is invoked as stand-alone program with the command-line
bb048086468a discontinued Isabelle tools implemented as .scala scripts;
wenzelm
parents: 75291
diff changeset
   288
    arguments provided as \<^verbatim>\<open>argv\<close> array.
64509
80aaa4ff7fed documentation for Isabelle/Scala tools;
wenzelm
parents: 63995
diff changeset
   289
75642
bb048086468a discontinued Isabelle tools implemented as .scala scripts;
wenzelm
parents: 75291
diff changeset
   290
    \<^enum> An internal tool that is declared via class
bb048086468a discontinued Isabelle tools implemented as .scala scripts;
wenzelm
parents: 75291
diff changeset
   291
    \<^scala_type>\<open>isabelle.Isabelle_Scala_Tools\<close> and registered via
bb048086468a discontinued Isabelle tools implemented as .scala scripts;
wenzelm
parents: 75291
diff changeset
   292
    \<^verbatim>\<open>services\<close> in \<^path>\<open>etc/build.props\<close>. See \secref{sec:scala-build} for
bb048086468a discontinued Isabelle tools implemented as .scala scripts;
wenzelm
parents: 75291
diff changeset
   293
    more details.
64509
80aaa4ff7fed documentation for Isabelle/Scala tools;
wenzelm
parents: 63995
diff changeset
   294
72252
3b17e7688dc6 updated documentation;
wenzelm
parents: 71904
diff changeset
   295
  There are also various administrative tools that are available from a bare
64509
80aaa4ff7fed documentation for Isabelle/Scala tools;
wenzelm
parents: 63995
diff changeset
   296
  repository clone of Isabelle, but not in regular distributions.
62588
cd266473b81b isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents: 62576
diff changeset
   297
\<close>
cd266473b81b isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents: 62576
diff changeset
   298
cd266473b81b isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents: 62576
diff changeset
   299
cd266473b81b isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents: 62576
diff changeset
   300
subsubsection \<open>Examples\<close>
cd266473b81b isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents: 62576
diff changeset
   301
cd266473b81b isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents: 62576
diff changeset
   302
text \<open>
cd266473b81b isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents: 62576
diff changeset
   303
  Show the list of available documentation of the Isabelle distribution:
cd266473b81b isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents: 62576
diff changeset
   304
  @{verbatim [display] \<open>isabelle doc\<close>}
cd266473b81b isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents: 62576
diff changeset
   305
cd266473b81b isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents: 62576
diff changeset
   306
  View a certain document as follows:
cd266473b81b isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents: 62576
diff changeset
   307
  @{verbatim [display] \<open>isabelle doc system\<close>}
cd266473b81b isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents: 62576
diff changeset
   308
cd266473b81b isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents: 62576
diff changeset
   309
  Query the Isabelle settings environment:
cd266473b81b isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents: 62576
diff changeset
   310
  @{verbatim [display] \<open>isabelle getenv ISABELLE_HOME_USER\<close>}
cd266473b81b isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents: 62576
diff changeset
   311
\<close>
cd266473b81b isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents: 62576
diff changeset
   312
cd266473b81b isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents: 62576
diff changeset
   313
cd266473b81b isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents: 62576
diff changeset
   314
section \<open>The raw Isabelle ML process\<close>
cd266473b81b isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents: 62576
diff changeset
   315
cd266473b81b isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents: 62576
diff changeset
   316
subsection \<open>Batch mode \label{sec:tool-process}\<close>
cd266473b81b isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents: 62576
diff changeset
   317
cd266473b81b isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents: 62576
diff changeset
   318
text \<open>
cd266473b81b isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents: 62576
diff changeset
   319
  The @{tool_def process} tool runs the raw ML process in batch mode:
cd266473b81b isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents: 62576
diff changeset
   320
  @{verbatim [display]
62634
aa3b47b32100 less physical "logic" argument, with option -l like "isabelle console" etc.;
wenzelm
parents: 62588
diff changeset
   321
\<open>Usage: isabelle process [OPTIONS]
28215
a1cfc43ac47d converted basics.tex to theory file;
wenzelm
parents:
diff changeset
   322
a1cfc43ac47d converted basics.tex to theory file;
wenzelm
parents:
diff changeset
   323
  Options are:
62677
0df43889f496 isabelle process -T THEORY;
wenzelm
parents: 62643
diff changeset
   324
    -T THEORY    load theory
62639
699e86051e35 isabelle process -d;
wenzelm
parents: 62634
diff changeset
   325
    -d DIR       include session directory
62506
860cd901ab43 clarified isabelle_process;
wenzelm
parents: 62475
diff changeset
   326
    -e ML_EXPR   evaluate ML expression on startup
860cd901ab43 clarified isabelle_process;
wenzelm
parents: 62475
diff changeset
   327
    -f ML_FILE   evaluate ML file on startup
62634
aa3b47b32100 less physical "logic" argument, with option -l like "isabelle console" etc.;
wenzelm
parents: 62588
diff changeset
   328
    -l NAME      logic session name (default ISABELLE_LOGIC="HOL")
28215
a1cfc43ac47d converted basics.tex to theory file;
wenzelm
parents:
diff changeset
   329
    -m MODE      add print mode for output
52056
fc458f304f93 added isabelle-process option -o;
wenzelm
parents: 52054
diff changeset
   330
    -o OPTION    override Isabelle system OPTION (via NAME=VAL or NAME)
28215
a1cfc43ac47d converted basics.tex to theory file;
wenzelm
parents:
diff changeset
   331
62634
aa3b47b32100 less physical "logic" argument, with option -l like "isabelle console" etc.;
wenzelm
parents: 62588
diff changeset
   332
  Run the raw Isabelle ML process in batch mode.\<close>}
28215
a1cfc43ac47d converted basics.tex to theory file;
wenzelm
parents:
diff changeset
   333
62643
6f7ac44365d7 eliminated without magic name;
wenzelm
parents: 62640
diff changeset
   334
  \<^medskip>
62506
860cd901ab43 clarified isabelle_process;
wenzelm
parents: 62475
diff changeset
   335
  Options \<^verbatim>\<open>-e\<close> and \<^verbatim>\<open>-f\<close> allow to evaluate ML code, before the ML process is
860cd901ab43 clarified isabelle_process;
wenzelm
parents: 62475
diff changeset
   336
  started. The source is either given literally or taken from a file. Multiple
860cd901ab43 clarified isabelle_process;
wenzelm
parents: 62475
diff changeset
   337
  \<^verbatim>\<open>-e\<close> and \<^verbatim>\<open>-f\<close> options are evaluated in the given order. Errors lead to
75161
95612f330c93 misc tuning based on comments by Heiko Eißfeldt;
wenzelm
parents: 74427
diff changeset
   338
  a premature exit of the ML process with return code 1.
28215
a1cfc43ac47d converted basics.tex to theory file;
wenzelm
parents:
diff changeset
   339
61406
eb2463fc4d7b more symbols;
wenzelm
parents: 59904
diff changeset
   340
  \<^medskip>
62677
0df43889f496 isabelle process -T THEORY;
wenzelm
parents: 62643
diff changeset
   341
  Option \<^verbatim>\<open>-T\<close> loads a specified theory file. This is a wrapper for \<^verbatim>\<open>-e\<close> with
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 68541
diff changeset
   342
  a suitable \<^ML>\<open>use_thy\<close> invocation.
62677
0df43889f496 isabelle process -T THEORY;
wenzelm
parents: 62643
diff changeset
   343
0df43889f496 isabelle process -T THEORY;
wenzelm
parents: 62643
diff changeset
   344
  \<^medskip>
62639
699e86051e35 isabelle process -d;
wenzelm
parents: 62634
diff changeset
   345
  Option \<^verbatim>\<open>-l\<close> specifies the logic session name. Option \<^verbatim>\<open>-d\<close> specifies
699e86051e35 isabelle process -d;
wenzelm
parents: 62634
diff changeset
   346
  additional directories for session roots, see also \secref{sec:tool-build}.
62634
aa3b47b32100 less physical "logic" argument, with option -l like "isabelle console" etc.;
wenzelm
parents: 62588
diff changeset
   347
aa3b47b32100 less physical "logic" argument, with option -l like "isabelle console" etc.;
wenzelm
parents: 62588
diff changeset
   348
  \<^medskip>
61575
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
   349
  The \<^verbatim>\<open>-m\<close> option adds identifiers of print modes to be made active for this
62573
27f90319a499 isabelle.Build uses ML_Process directly;
wenzelm
parents: 62562
diff changeset
   350
  session. For example, \<^verbatim>\<open>-m ASCII\<close> prefers ASCII replacement syntax over
27f90319a499 isabelle.Build uses ML_Process directly;
wenzelm
parents: 62562
diff changeset
   351
  mathematical Isabelle symbols.
28215
a1cfc43ac47d converted basics.tex to theory file;
wenzelm
parents:
diff changeset
   352
61406
eb2463fc4d7b more symbols;
wenzelm
parents: 59904
diff changeset
   353
  \<^medskip>
61575
f18f6e51e901 tuned whitespace;
wenzelm
parents: 61572
diff changeset
   354
  Option \<^verbatim>\<open>-o\<close> allows to override Isabelle system options for this process,
62573
27f90319a499 isabelle.Build uses ML_Process directly;
wenzelm
parents: 62562
diff changeset
   355
  see also \secref{sec:system-options}.
58618
782f0b662cae more cartouches;
wenzelm
parents: 58553
diff changeset
   356
\<close>
28215
a1cfc43ac47d converted basics.tex to theory file;
wenzelm
parents:
diff changeset
   357
a1cfc43ac47d converted basics.tex to theory file;
wenzelm
parents:
diff changeset
   358
68275
b5d0318757f0 more examples;
wenzelm
parents: 68219
diff changeset
   359
subsubsection \<open>Examples\<close>
28215
a1cfc43ac47d converted basics.tex to theory file;
wenzelm
parents:
diff changeset
   360
58618
782f0b662cae more cartouches;
wenzelm
parents: 58553
diff changeset
   361
text \<open>
62588
cd266473b81b isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents: 62576
diff changeset
   362
  The subsequent example retrieves the \<^verbatim>\<open>Main\<close> theory value from the theory
cd266473b81b isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents: 62576
diff changeset
   363
  loader within ML:
62634
aa3b47b32100 less physical "logic" argument, with option -l like "isabelle console" etc.;
wenzelm
parents: 62588
diff changeset
   364
  @{verbatim [display] \<open>isabelle process -e 'Thy_Info.get_theory "Main"'\<close>}
62588
cd266473b81b isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents: 62576
diff changeset
   365
64509
80aaa4ff7fed documentation for Isabelle/Scala tools;
wenzelm
parents: 63995
diff changeset
   366
  Observe the delicate quoting rules for the GNU bash shell vs.\ ML. The
62588
cd266473b81b isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents: 62576
diff changeset
   367
  Isabelle/ML and Scala libraries provide functions for that, but here we need
cd266473b81b isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents: 62576
diff changeset
   368
  to do it manually.
68275
b5d0318757f0 more examples;
wenzelm
parents: 68219
diff changeset
   369
b5d0318757f0 more examples;
wenzelm
parents: 68219
diff changeset
   370
  \<^medskip>
b5d0318757f0 more examples;
wenzelm
parents: 68219
diff changeset
   371
  This is how to invoke a function body with proper return code and printing
b5d0318757f0 more examples;
wenzelm
parents: 68219
diff changeset
   372
  of errors, and without printing of a redundant \<^verbatim>\<open>val it = (): unit\<close> result:
71632
c1bc38327bc2 clarified signature;
wenzelm
parents: 71578
diff changeset
   373
  @{verbatim [display] \<open>isabelle process -e 'Command_Line.tool (fn () => writeln "OK")'\<close>}
c1bc38327bc2 clarified signature;
wenzelm
parents: 71578
diff changeset
   374
  @{verbatim [display] \<open>isabelle process -e 'Command_Line.tool (fn () => error "Bad")'\<close>}
58618
782f0b662cae more cartouches;
wenzelm
parents: 58553
diff changeset
   375
\<close>
28238
398bf960d3d4 misc tuning and modernization;
wenzelm
parents: 28223
diff changeset
   376
398bf960d3d4 misc tuning and modernization;
wenzelm
parents: 28223
diff changeset
   377
62588
cd266473b81b isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents: 62576
diff changeset
   378
subsection \<open>Interactive mode\<close>
28238
398bf960d3d4 misc tuning and modernization;
wenzelm
parents: 28223
diff changeset
   379
58618
782f0b662cae more cartouches;
wenzelm
parents: 58553
diff changeset
   380
text \<open>
62588
cd266473b81b isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents: 62576
diff changeset
   381
  The @{tool_def console} tool runs the raw ML process with interactive
cd266473b81b isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents: 62576
diff changeset
   382
  console and line editor:
61407
7ba7b8103565 @{verbatim [display]} supersedes old alltt/ttbox;
wenzelm
parents: 61406
diff changeset
   383
  @{verbatim [display]
62588
cd266473b81b isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents: 62576
diff changeset
   384
\<open>Usage: isabelle console [OPTIONS]
28238
398bf960d3d4 misc tuning and modernization;
wenzelm
parents: 28223
diff changeset
   385
62588
cd266473b81b isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents: 62576
diff changeset
   386
  Options are:
cd266473b81b isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents: 62576
diff changeset
   387
    -d DIR       include session directory
68541
12b4b3bc585d command-line option for include_sessions;
wenzelm
parents: 68523
diff changeset
   388
    -i NAME      include session in name-space of theories
62588
cd266473b81b isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents: 62576
diff changeset
   389
    -l NAME      logic session name (default ISABELLE_LOGIC)
cd266473b81b isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents: 62576
diff changeset
   390
    -m MODE      add print mode for output
cd266473b81b isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents: 62576
diff changeset
   391
    -n           no build of session image on startup
cd266473b81b isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents: 62576
diff changeset
   392
    -o OPTION    override Isabelle system OPTION (via NAME=VAL or NAME)
62643
6f7ac44365d7 eliminated without magic name;
wenzelm
parents: 62640
diff changeset
   393
    -r           bootstrap from raw Poly/ML
28238
398bf960d3d4 misc tuning and modernization;
wenzelm
parents: 28223
diff changeset
   394
62588
cd266473b81b isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents: 62576
diff changeset
   395
  Build a logic session image and run the raw Isabelle ML process
cd266473b81b isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents: 62576
diff changeset
   396
  in interactive mode, with line editor ISABELLE_LINE_EDITOR.\<close>}
28238
398bf960d3d4 misc tuning and modernization;
wenzelm
parents: 28223
diff changeset
   397
62643
6f7ac44365d7 eliminated without magic name;
wenzelm
parents: 62640
diff changeset
   398
  \<^medskip>
62588
cd266473b81b isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents: 62576
diff changeset
   399
  Option \<^verbatim>\<open>-l\<close> specifies the logic session name. By default, its heap image is
62643
6f7ac44365d7 eliminated without magic name;
wenzelm
parents: 62640
diff changeset
   400
  checked and built on demand, but the option \<^verbatim>\<open>-n\<close> skips that.
28238
398bf960d3d4 misc tuning and modernization;
wenzelm
parents: 28223
diff changeset
   401
68541
12b4b3bc585d command-line option for include_sessions;
wenzelm
parents: 68523
diff changeset
   402
  Option \<^verbatim>\<open>-i\<close> includes additional sessions into the name-space of theories:
12b4b3bc585d command-line option for include_sessions;
wenzelm
parents: 68523
diff changeset
   403
  multiple occurrences are possible.
12b4b3bc585d command-line option for include_sessions;
wenzelm
parents: 68523
diff changeset
   404
62643
6f7ac44365d7 eliminated without magic name;
wenzelm
parents: 62640
diff changeset
   405
  Option \<^verbatim>\<open>-r\<close> indicates a bootstrap from the raw Poly/ML system, which is
6f7ac44365d7 eliminated without magic name;
wenzelm
parents: 62640
diff changeset
   406
  relevant for Isabelle/Pure development.
6f7ac44365d7 eliminated without magic name;
wenzelm
parents: 62640
diff changeset
   407
6f7ac44365d7 eliminated without magic name;
wenzelm
parents: 62640
diff changeset
   408
  \<^medskip>
62639
699e86051e35 isabelle process -d;
wenzelm
parents: 62634
diff changeset
   409
  Options \<^verbatim>\<open>-d\<close>, \<^verbatim>\<open>-m\<close>, \<^verbatim>\<open>-o\<close> have the same meaning as for @{tool process}
699e86051e35 isabelle process -d;
wenzelm
parents: 62634
diff changeset
   410
  (\secref{sec:tool-process}).
62588
cd266473b81b isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents: 62576
diff changeset
   411
cd266473b81b isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents: 62576
diff changeset
   412
  \<^medskip>
cd266473b81b isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents: 62576
diff changeset
   413
  The Isabelle/ML process is run through the line editor that is specified via
cd266473b81b isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents: 62576
diff changeset
   414
  the settings variable @{setting ISABELLE_LINE_EDITOR} (e.g.\
cd266473b81b isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents: 62576
diff changeset
   415
  @{executable_def rlwrap} for GNU readline); the fall-back is to use plain
cd266473b81b isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents: 62576
diff changeset
   416
  standard input/output.
28238
398bf960d3d4 misc tuning and modernization;
wenzelm
parents: 28223
diff changeset
   417
62588
cd266473b81b isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents: 62576
diff changeset
   418
  The user is connected to the raw ML toplevel loop: this is neither
cd266473b81b isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents: 62576
diff changeset
   419
  Isabelle/Isar nor Isabelle/ML within the usual formal context. The most
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 68541
diff changeset
   420
  relevant ML commands at this stage are \<^ML>\<open>use\<close> (for ML files) and
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 68541
diff changeset
   421
  \<^ML>\<open>use_thy\<close> (for theory files).
58618
782f0b662cae more cartouches;
wenzelm
parents: 58553
diff changeset
   422
\<close>
28215
a1cfc43ac47d converted basics.tex to theory file;
wenzelm
parents:
diff changeset
   423
62451
040b94ffbdde removed pointless "isabelle yxml";
wenzelm
parents: 62354
diff changeset
   424
63995
2e4d80723fb0 added isabelle_java cold-start executable;
wenzelm
parents: 63680
diff changeset
   425
section \<open>The raw Isabelle Java process \label{sec:isabelle-java}\<close>
2e4d80723fb0 added isabelle_java cold-start executable;
wenzelm
parents: 63680
diff changeset
   426
2e4d80723fb0 added isabelle_java cold-start executable;
wenzelm
parents: 63680
diff changeset
   427
text \<open>
2e4d80723fb0 added isabelle_java cold-start executable;
wenzelm
parents: 63680
diff changeset
   428
  The @{executable_ref isabelle_java} executable allows to run a Java process
2e4d80723fb0 added isabelle_java cold-start executable;
wenzelm
parents: 63680
diff changeset
   429
  within the name space of Java and Scala components that are bundled with
2e4d80723fb0 added isabelle_java cold-start executable;
wenzelm
parents: 63680
diff changeset
   430
  Isabelle, but \<^emph>\<open>without\<close> the Isabelle settings environment
2e4d80723fb0 added isabelle_java cold-start executable;
wenzelm
parents: 63680
diff changeset
   431
  (\secref{sec:settings}).
2e4d80723fb0 added isabelle_java cold-start executable;
wenzelm
parents: 63680
diff changeset
   432
2e4d80723fb0 added isabelle_java cold-start executable;
wenzelm
parents: 63680
diff changeset
   433
  After such a JVM cold-start, the Isabelle environment can be accessed via
2e4d80723fb0 added isabelle_java cold-start executable;
wenzelm
parents: 63680
diff changeset
   434
  \<^verbatim>\<open>Isabelle_System.getenv\<close> as usual, but the underlying process environment
2e4d80723fb0 added isabelle_java cold-start executable;
wenzelm
parents: 63680
diff changeset
   435
  remains clean. This is e.g.\ relevant when invoking other processes that
2e4d80723fb0 added isabelle_java cold-start executable;
wenzelm
parents: 63680
diff changeset
   436
  should remain separate from the current Isabelle installation.
2e4d80723fb0 added isabelle_java cold-start executable;
wenzelm
parents: 63680
diff changeset
   437
2e4d80723fb0 added isabelle_java cold-start executable;
wenzelm
parents: 63680
diff changeset
   438
  \<^medskip>
2e4d80723fb0 added isabelle_java cold-start executable;
wenzelm
parents: 63680
diff changeset
   439
  Note that under normal circumstances, Isabelle command-line tools are run
2e4d80723fb0 added isabelle_java cold-start executable;
wenzelm
parents: 63680
diff changeset
   440
  \<^emph>\<open>within\<close> the settings environment, as provided by the @{executable
2e4d80723fb0 added isabelle_java cold-start executable;
wenzelm
parents: 63680
diff changeset
   441
  isabelle} wrapper (\secref{sec:isabelle-tool} and \secref{sec:tool-java}).
2e4d80723fb0 added isabelle_java cold-start executable;
wenzelm
parents: 63680
diff changeset
   442
\<close>
2e4d80723fb0 added isabelle_java cold-start executable;
wenzelm
parents: 63680
diff changeset
   443
2e4d80723fb0 added isabelle_java cold-start executable;
wenzelm
parents: 63680
diff changeset
   444
2e4d80723fb0 added isabelle_java cold-start executable;
wenzelm
parents: 63680
diff changeset
   445
subsubsection \<open>Example\<close>
2e4d80723fb0 added isabelle_java cold-start executable;
wenzelm
parents: 63680
diff changeset
   446
2e4d80723fb0 added isabelle_java cold-start executable;
wenzelm
parents: 63680
diff changeset
   447
text \<open>
2e4d80723fb0 added isabelle_java cold-start executable;
wenzelm
parents: 63680
diff changeset
   448
  The subsequent example creates a raw Java process on the command-line and
2e4d80723fb0 added isabelle_java cold-start executable;
wenzelm
parents: 63680
diff changeset
   449
  invokes the main Isabelle application entry point:
75291
e4d6b9bd5071 clarified module name;
wenzelm
parents: 75161
diff changeset
   450
  @{verbatim [display] \<open>isabelle_java -Djava.awt.headless=false isabelle.jedit.JEdit_Main\<close>}
63995
2e4d80723fb0 added isabelle_java cold-start executable;
wenzelm
parents: 63680
diff changeset
   451
\<close>
2e4d80723fb0 added isabelle_java cold-start executable;
wenzelm
parents: 63680
diff changeset
   452
2e4d80723fb0 added isabelle_java cold-start executable;
wenzelm
parents: 63680
diff changeset
   453
67904
465f43a9f780 documentation for the Isabelle server;
wenzelm
parents: 67399
diff changeset
   454
section \<open>YXML versus XML \label{sec:yxml-vs-xml}\<close>
62451
040b94ffbdde removed pointless "isabelle yxml";
wenzelm
parents: 62354
diff changeset
   455
040b94ffbdde removed pointless "isabelle yxml";
wenzelm
parents: 62354
diff changeset
   456
text \<open>
040b94ffbdde removed pointless "isabelle yxml";
wenzelm
parents: 62354
diff changeset
   457
  Isabelle tools often use YXML, which is a simple and efficient syntax for
040b94ffbdde removed pointless "isabelle yxml";
wenzelm
parents: 62354
diff changeset
   458
  untyped XML trees. The YXML format is defined as follows.
040b94ffbdde removed pointless "isabelle yxml";
wenzelm
parents: 62354
diff changeset
   459
040b94ffbdde removed pointless "isabelle yxml";
wenzelm
parents: 62354
diff changeset
   460
    \<^enum> The encoding is always UTF-8.
040b94ffbdde removed pointless "isabelle yxml";
wenzelm
parents: 62354
diff changeset
   461
040b94ffbdde removed pointless "isabelle yxml";
wenzelm
parents: 62354
diff changeset
   462
    \<^enum> Body text is represented verbatim (no escaping, no special treatment of
040b94ffbdde removed pointless "isabelle yxml";
wenzelm
parents: 62354
diff changeset
   463
    white space, no named entities, no CDATA chunks, no comments).
040b94ffbdde removed pointless "isabelle yxml";
wenzelm
parents: 62354
diff changeset
   464
040b94ffbdde removed pointless "isabelle yxml";
wenzelm
parents: 62354
diff changeset
   465
    \<^enum> Markup elements are represented via ASCII control characters \<open>\<^bold>X = 5\<close>
040b94ffbdde removed pointless "isabelle yxml";
wenzelm
parents: 62354
diff changeset
   466
    and \<open>\<^bold>Y = 6\<close> as follows:
040b94ffbdde removed pointless "isabelle yxml";
wenzelm
parents: 62354
diff changeset
   467
040b94ffbdde removed pointless "isabelle yxml";
wenzelm
parents: 62354
diff changeset
   468
    \begin{tabular}{ll}
040b94ffbdde removed pointless "isabelle yxml";
wenzelm
parents: 62354
diff changeset
   469
      XML & YXML \\\hline
040b94ffbdde removed pointless "isabelle yxml";
wenzelm
parents: 62354
diff changeset
   470
      \<^verbatim>\<open><\<close>\<open>name attribute\<close>\<^verbatim>\<open>=\<close>\<open>value \<dots>\<close>\<^verbatim>\<open>>\<close> &
040b94ffbdde removed pointless "isabelle yxml";
wenzelm
parents: 62354
diff changeset
   471
      \<open>\<^bold>X\<^bold>Yname\<^bold>Yattribute\<close>\<^verbatim>\<open>=\<close>\<open>value\<dots>\<^bold>X\<close> \\
040b94ffbdde removed pointless "isabelle yxml";
wenzelm
parents: 62354
diff changeset
   472
      \<^verbatim>\<open></\<close>\<open>name\<close>\<^verbatim>\<open>>\<close> & \<open>\<^bold>X\<^bold>Y\<^bold>X\<close> \\
040b94ffbdde removed pointless "isabelle yxml";
wenzelm
parents: 62354
diff changeset
   473
    \end{tabular}
040b94ffbdde removed pointless "isabelle yxml";
wenzelm
parents: 62354
diff changeset
   474
040b94ffbdde removed pointless "isabelle yxml";
wenzelm
parents: 62354
diff changeset
   475
    There is no special case for empty body text, i.e.\ \<^verbatim>\<open><foo/>\<close> is treated
040b94ffbdde removed pointless "isabelle yxml";
wenzelm
parents: 62354
diff changeset
   476
    like \<^verbatim>\<open><foo></foo>\<close>. Also note that \<open>\<^bold>X\<close> and \<open>\<^bold>Y\<close> may never occur in
040b94ffbdde removed pointless "isabelle yxml";
wenzelm
parents: 62354
diff changeset
   477
    well-formed XML documents.
040b94ffbdde removed pointless "isabelle yxml";
wenzelm
parents: 62354
diff changeset
   478
040b94ffbdde removed pointless "isabelle yxml";
wenzelm
parents: 62354
diff changeset
   479
  Parsing YXML is pretty straight-forward: split the text into chunks
040b94ffbdde removed pointless "isabelle yxml";
wenzelm
parents: 62354
diff changeset
   480
  separated by \<open>\<^bold>X\<close>, then split each chunk into sub-chunks separated by \<open>\<^bold>Y\<close>.
040b94ffbdde removed pointless "isabelle yxml";
wenzelm
parents: 62354
diff changeset
   481
  Markup chunks start with an empty sub-chunk, and a second empty sub-chunk
040b94ffbdde removed pointless "isabelle yxml";
wenzelm
parents: 62354
diff changeset
   482
  indicates close of an element. Any other non-empty chunk consists of plain
63680
6e1e8b5abbfa more symbols;
wenzelm
parents: 63669
diff changeset
   483
  text. For example, see \<^file>\<open>~~/src/Pure/PIDE/yxml.ML\<close> or
6e1e8b5abbfa more symbols;
wenzelm
parents: 63669
diff changeset
   484
  \<^file>\<open>~~/src/Pure/PIDE/yxml.scala\<close>.
62451
040b94ffbdde removed pointless "isabelle yxml";
wenzelm
parents: 62354
diff changeset
   485
040b94ffbdde removed pointless "isabelle yxml";
wenzelm
parents: 62354
diff changeset
   486
  YXML documents may be detected quickly by checking that the first two
040b94ffbdde removed pointless "isabelle yxml";
wenzelm
parents: 62354
diff changeset
   487
  characters are \<open>\<^bold>X\<^bold>Y\<close>.
040b94ffbdde removed pointless "isabelle yxml";
wenzelm
parents: 62354
diff changeset
   488
\<close>
040b94ffbdde removed pointless "isabelle yxml";
wenzelm
parents: 62354
diff changeset
   489
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67044
diff changeset
   490
end