src/Pure/General/symbol.ML
author wenzelm
Tue, 16 Jan 2001 21:53:57 +0100
changeset 10923 e34948f18541
parent 10747 794cd4d768b5
child 10953 ea024d025463
permissions -rw-r--r--
export plain_output;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
6118
caa439435666 fixed titles;
wenzelm
parents: 6116
diff changeset
     1
(*  Title:      Pure/General/symbol.ML
6116
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
     2
    ID:         $Id$
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
     3
    Author:     Markus Wenzel, TU Muenchen
8806
wenzelm
parents: 8663
diff changeset
     4
    License:    GPL (GNU GENERAL PUBLIC LICENSE)
6116
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
     5
8806
wenzelm
parents: 8663
diff changeset
     6
Generalized characters, independent of encoding.
6116
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
     7
*)
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
     8
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
     9
signature SYMBOL =
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
    10
sig
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
    11
  type symbol
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
    12
  val space: symbol
6857
6e6eb8d92377 added sync marker;
wenzelm
parents: 6692
diff changeset
    13
  val sync: symbol
6e6eb8d92377 added sync marker;
wenzelm
parents: 6692
diff changeset
    14
  val is_sync: symbol -> bool
6e6eb8d92377 added sync marker;
wenzelm
parents: 6692
diff changeset
    15
  val not_sync: symbol -> bool
10747
794cd4d768b5 scan: malformed result;
wenzelm
parents: 10738
diff changeset
    16
  val malformed: symbol
6116
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
    17
  val eof: symbol
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
    18
  val is_eof: symbol -> bool
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
    19
  val not_eof: symbol -> bool
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
    20
  val stopper: symbol * (symbol -> bool)
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
    21
  val is_ascii: symbol -> bool
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
    22
  val is_letter: symbol -> bool
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
    23
  val is_digit: symbol -> bool
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
    24
  val is_quasi_letter: symbol -> bool
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
    25
  val is_letdig: symbol -> bool
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
    26
  val is_blank: symbol -> bool
8230
6f8aa407bcf9 is_symbolic;
wenzelm
parents: 6857
diff changeset
    27
  val is_symbolic: symbol -> bool
6116
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
    28
  val is_printable: symbol -> bool
6272
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    29
  val length: symbol list -> int
6116
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
    30
  val beginning: symbol list -> string
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
    31
  val scan: string list -> symbol * string list
6640
d2e8342bf5c3 rearranged order of modules;
wenzelm
parents: 6320
diff changeset
    32
  val scanner: string -> (symbol list -> 'a * symbol list) -> symbol list -> 'a
6116
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
    33
  val source: bool -> (string, 'a) Source.source ->
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
    34
    (symbol, (string, 'a) Source.source) Source.source
6272
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    35
  val explode: string -> symbol list
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    36
  val input: string -> string
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    37
  val add_mode: string -> (string -> string * real) -> unit
6692
05c56f41e661 avoid string constants;
wenzelm
parents: 6640
diff changeset
    38
  val isabelle_fontN: string
05c56f41e661 avoid string constants;
wenzelm
parents: 6640
diff changeset
    39
  val symbolsN: string
05c56f41e661 avoid string constants;
wenzelm
parents: 6640
diff changeset
    40
  val xsymbolsN: string
10923
e34948f18541 export plain_output;
wenzelm
parents: 10747
diff changeset
    41
  val plain_output: string -> string
6272
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    42
  val output: string -> string
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    43
  val output_width: string -> string * real
6116
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
    44
end;
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
    45
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
    46
structure Symbol: SYMBOL =
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
    47
struct
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
    48
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
    49
6272
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    50
(** generalized characters **)
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    51
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    52
(*symbols, which are considered the smallest entities of any Isabelle
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    53
  string, may be of the following form:
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    54
    (a) ASCII symbols: a
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    55
    (b) printable symbols: \<ident>
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    56
    (c) control symbols: \<^ident>
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    57
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    58
  input may include non-ASCII characters according to isabelle-0 encoding;
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    59
  output is subject to the print_mode variable (default: verbatim);
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    60
*)
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    61
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    62
type symbol = string;
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    63
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    64
val space = " ";
6857
6e6eb8d92377 added sync marker;
wenzelm
parents: 6692
diff changeset
    65
val sync = "\\<^sync>";
10747
794cd4d768b5 scan: malformed result;
wenzelm
parents: 10738
diff changeset
    66
val malformed = "\\<^malformed>";
6272
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    67
val eof = "";
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    68
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    69
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    70
(* kinds *)
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    71
6857
6e6eb8d92377 added sync marker;
wenzelm
parents: 6692
diff changeset
    72
fun is_sync s = s = sync;
6e6eb8d92377 added sync marker;
wenzelm
parents: 6692
diff changeset
    73
fun not_sync s = s <> sync;
6e6eb8d92377 added sync marker;
wenzelm
parents: 6692
diff changeset
    74
6272
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    75
fun is_eof s = s = eof;
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    76
fun not_eof s = s <> eof;
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    77
val stopper = (eof, is_eof);
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    78
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    79
fun is_ascii s = size s = 1 andalso ord s < 128;
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    80
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    81
fun is_letter s =
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    82
  size s = 1 andalso
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    83
   (ord "A" <= ord s andalso ord s <= ord "Z" orelse
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    84
    ord "a" <= ord s andalso ord s <= ord "z");
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    85
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    86
fun is_digit s =
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    87
  size s = 1 andalso ord "0" <= ord s andalso ord s <= ord "9";
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    88
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    89
fun is_quasi_letter "_" = true
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    90
  | is_quasi_letter "'" = true
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    91
  | is_quasi_letter s = is_letter s;
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    92
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    93
val is_blank =
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    94
  fn " " => true | "\t" => true | "\n" => true | "\^L" => true
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    95
    | "\160" => true | "\\<spacespace>" => true
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    96
    | _ => false;
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    97
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    98
val is_letdig = is_quasi_letter orf is_digit;
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    99
8230
6f8aa407bcf9 is_symbolic;
wenzelm
parents: 6857
diff changeset
   100
fun is_symbolic s =
6f8aa407bcf9 is_symbolic;
wenzelm
parents: 6857
diff changeset
   101
  size s > 2 andalso nth_elem_string (2, s) <> "^";
6f8aa407bcf9 is_symbolic;
wenzelm
parents: 6857
diff changeset
   102
6272
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   103
fun is_printable s =
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   104
  size s = 1 andalso ord space <= ord s andalso ord s <= ord "~" orelse
8230
6f8aa407bcf9 is_symbolic;
wenzelm
parents: 6857
diff changeset
   105
  is_symbolic s;
6f8aa407bcf9 is_symbolic;
wenzelm
parents: 6857
diff changeset
   106
6272
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   107
10738
3a610089c43b tuned length;
wenzelm
parents: 9961
diff changeset
   108
fun sym_length ss = foldl (fn (n, s) =>
3a610089c43b tuned length;
wenzelm
parents: 9961
diff changeset
   109
  (if not (is_printable s) then 0 else
3a610089c43b tuned length;
wenzelm
parents: 9961
diff changeset
   110
    (case Library.try String.substring (s, 2, 4) of
3a610089c43b tuned length;
wenzelm
parents: 9961
diff changeset
   111
      Some s' => if s' = "long" orelse s' = "Long" then 2 else 1
3a610089c43b tuned length;
wenzelm
parents: 9961
diff changeset
   112
    | None => 1)) + n) (0, ss);
6272
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   113
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   114
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   115
(* beginning *)
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   116
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   117
val smash_blanks = map (fn s => if is_blank s then space else s);
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   118
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   119
fun beginning raw_ss =
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   120
  let
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   121
    val (all_ss, _) = take_suffix is_blank raw_ss;
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   122
    val dots = if length all_ss > 10 then " ..." else "";
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   123
    val (ss, _) = take_suffix is_blank (take (10, all_ss));
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   124
  in implode (smash_blanks ss) ^ dots end;
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   125
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   126
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   127
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   128
(** isabelle-0 encoding table **)
6116
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   129
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   130
val enc_start = 160;
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   131
val enc_end = 255;
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   132
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   133
val enc_vector =
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   134
[
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   135
(* GENERATED TEXT FOLLOWS - Do not edit! *)
6166
a56aaad7ff2d renamed space2 to spacespace
oheimb
parents: 6118
diff changeset
   136
  "\\<spacespace>",
6116
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   137
  "\\<Gamma>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   138
  "\\<Delta>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   139
  "\\<Theta>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   140
  "\\<Lambda>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   141
  "\\<Pi>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   142
  "\\<Sigma>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   143
  "\\<Phi>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   144
  "\\<Psi>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   145
  "\\<Omega>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   146
  "\\<alpha>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   147
  "\\<beta>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   148
  "\\<gamma>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   149
  "\\<delta>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   150
  "\\<epsilon>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   151
  "\\<zeta>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   152
  "\\<eta>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   153
  "\\<theta>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   154
  "\\<kappa>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   155
  "\\<lambda>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   156
  "\\<mu>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   157
  "\\<nu>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   158
  "\\<xi>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   159
  "\\<pi>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   160
  "\\<rho>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   161
  "\\<sigma>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   162
  "\\<tau>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   163
  "\\<phi>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   164
  "\\<chi>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   165
  "\\<psi>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   166
  "\\<omega>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   167
  "\\<not>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   168
  "\\<and>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   169
  "\\<or>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   170
  "\\<forall>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   171
  "\\<exists>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   172
  "\\<And>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   173
  "\\<lceil>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   174
  "\\<rceil>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   175
  "\\<lfloor>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   176
  "\\<rfloor>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   177
  "\\<turnstile>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   178
  "\\<Turnstile>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   179
  "\\<lbrakk>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   180
  "\\<rbrakk>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   181
  "\\<cdot>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   182
  "\\<in>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   183
  "\\<subseteq>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   184
  "\\<inter>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   185
  "\\<union>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   186
  "\\<Inter>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   187
  "\\<Union>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   188
  "\\<sqinter>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   189
  "\\<squnion>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   190
  "\\<Sqinter>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   191
  "\\<Squnion>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   192
  "\\<bottom>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   193
  "\\<doteq>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   194
  "\\<equiv>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   195
  "\\<noteq>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   196
  "\\<sqsubset>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   197
  "\\<sqsubseteq>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   198
  "\\<prec>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   199
  "\\<preceq>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   200
  "\\<succ>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   201
  "\\<approx>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   202
  "\\<sim>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   203
  "\\<simeq>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   204
  "\\<le>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   205
  "\\<Colon>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   206
  "\\<leftarrow>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   207
  "\\<midarrow>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   208
  "\\<rightarrow>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   209
  "\\<Leftarrow>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   210
  "\\<Midarrow>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   211
  "\\<Rightarrow>",
9961
5a9626118941 updated;
wenzelm
parents: 8998
diff changeset
   212
  "\\<frown>",
6116
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   213
  "\\<mapsto>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   214
  "\\<leadsto>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   215
  "\\<up>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   216
  "\\<down>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   217
  "\\<notin>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   218
  "\\<times>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   219
  "\\<oplus>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   220
  "\\<ominus>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   221
  "\\<otimes>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   222
  "\\<oslash>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   223
  "\\<subset>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   224
  "\\<infinity>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   225
  "\\<box>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   226
  "\\<diamond>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   227
  "\\<circ>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   228
  "\\<bullet>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   229
  "\\<parallel>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   230
  "\\<surd>",
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   231
  "\\<copyright>"
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   232
(* END OF GENERATED TEXT *)
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   233
];
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   234
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   235
val enc_rel = enc_vector ~~ map chr (enc_start upto enc_end);
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   236
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   237
val char_tab = Symtab.make enc_rel;
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   238
val symbol_tab = Symtab.make (map swap enc_rel);
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   239
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   240
fun lookup_symbol c =
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   241
  if ord c < enc_start then None
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   242
  else Symtab.lookup (symbol_tab, c);
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   243
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   244
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   245
(* encode / decode *)
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   246
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   247
fun char s = if_none (Symtab.lookup (char_tab, s)) s;
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   248
fun symbol c = if_none (lookup_symbol c) c;
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   249
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   250
fun symbol' c =
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   251
  (case lookup_symbol c of
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   252
    None => c
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   253
  | Some s => "\\" ^ s);
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   254
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   255
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   256
8998
56c44eee46ad fixed comment;
wenzelm
parents: 8806
diff changeset
   257
(** scanning through symbols **)
6640
d2e8342bf5c3 rearranged order of modules;
wenzelm
parents: 6320
diff changeset
   258
d2e8342bf5c3 rearranged order of modules;
wenzelm
parents: 6320
diff changeset
   259
fun scanner msg scan chs =
d2e8342bf5c3 rearranged order of modules;
wenzelm
parents: 6320
diff changeset
   260
  let
d2e8342bf5c3 rearranged order of modules;
wenzelm
parents: 6320
diff changeset
   261
    fun err_msg cs = msg ^ ": " ^ beginning cs;
d2e8342bf5c3 rearranged order of modules;
wenzelm
parents: 6320
diff changeset
   262
    val fin_scan = Scan.error (Scan.finite stopper (!! (fn (cs, _) => err_msg cs) scan));
d2e8342bf5c3 rearranged order of modules;
wenzelm
parents: 6320
diff changeset
   263
  in
d2e8342bf5c3 rearranged order of modules;
wenzelm
parents: 6320
diff changeset
   264
    (case fin_scan chs of
d2e8342bf5c3 rearranged order of modules;
wenzelm
parents: 6320
diff changeset
   265
      (result, []) => result
d2e8342bf5c3 rearranged order of modules;
wenzelm
parents: 6320
diff changeset
   266
    | (_, rest) => error (err_msg rest))
d2e8342bf5c3 rearranged order of modules;
wenzelm
parents: 6320
diff changeset
   267
  end;
d2e8342bf5c3 rearranged order of modules;
wenzelm
parents: 6320
diff changeset
   268
d2e8342bf5c3 rearranged order of modules;
wenzelm
parents: 6320
diff changeset
   269
d2e8342bf5c3 rearranged order of modules;
wenzelm
parents: 6320
diff changeset
   270
6272
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   271
(** symbol input **)
6116
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   272
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   273
(* scan *)
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   274
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   275
val scan_id = Scan.one is_letter ^^ (Scan.any is_letdig >> implode);
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   276
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   277
val scan =
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   278
  ($$ "\\" --| Scan.optional ($$ "\\") "") ^^ $$ "<" ^^
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   279
    !! (fn (cs, _) => "Malformed symbolic character specification: \\" ^ "<" ^ beginning cs)
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   280
      (Scan.optional ($$ "^") "" ^^ scan_id ^^ $$ ">") ||
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   281
  Scan.one not_eof;
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   282
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   283
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   284
(* source *)
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   285
10747
794cd4d768b5 scan: malformed result;
wenzelm
parents: 10738
diff changeset
   286
val recover = Scan.any ((not o is_blank) andf not_eof) >> K [malformed];
6116
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   287
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   288
fun source do_recover src =
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   289
  Source.source stopper (Scan.bulk scan) (if do_recover then Some recover else None) src;
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   290
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   291
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   292
(* explode *)
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   293
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   294
fun no_syms [] = true
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   295
  | no_syms ("\\" :: "<" :: _) = false
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   296
  | no_syms (c :: cs) = ord c < enc_start andalso no_syms cs;
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   297
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   298
fun sym_explode str =
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   299
  let val chs = explode str in
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   300
    if no_syms chs then chs     (*tune trivial case*)
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   301
    else map symbol (the (Scan.read stopper (Scan.repeat scan) chs))
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   302
  end;
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   303
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   304
6272
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   305
(* input *)
6116
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   306
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   307
fun input str =
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   308
  let val chs = explode str in
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   309
    if forall (fn c => ord c < enc_start) chs then str
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   310
    else implode (map symbol' chs)
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   311
  end;
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   312
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   313
6272
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   314
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   315
(** symbol output **)
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   316
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   317
(* default_output *)
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   318
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   319
fun string_size s = (s, real (size s));
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   320
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   321
fun default_output s =
6320
4df282137880 tuned using nth_elem_string, exists_string;
wenzelm
parents: 6272
diff changeset
   322
  if not (exists_string (equal "\\") s) then string_size s
10738
3a610089c43b tuned length;
wenzelm
parents: 9961
diff changeset
   323
  else string_size (implode (map (fn "\\" => "\\\\" | c => c) (explode s)));    (*sic!*)
6272
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   324
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   325
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   326
(* isabelle_font_output *)
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   327
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   328
fun isabelle_font_output s =
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   329
  let val cs = sym_explode s
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   330
  in (implode (map char cs), real (sym_length cs)) end;
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   331
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   332
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   333
(* maintain modes *)
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   334
6692
05c56f41e661 avoid string constants;
wenzelm
parents: 6640
diff changeset
   335
val isabelle_fontN = "isabelle_font";
05c56f41e661 avoid string constants;
wenzelm
parents: 6640
diff changeset
   336
val symbolsN = "symbols";
05c56f41e661 avoid string constants;
wenzelm
parents: 6640
diff changeset
   337
val xsymbolsN = "xsymbols";
05c56f41e661 avoid string constants;
wenzelm
parents: 6640
diff changeset
   338
05c56f41e661 avoid string constants;
wenzelm
parents: 6640
diff changeset
   339
val modes = ref (Symtab.make [(isabelle_fontN, isabelle_font_output)]);
6272
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   340
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   341
fun lookup_mode name = Symtab.lookup (! modes, name);
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   342
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   343
fun add_mode name f =
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   344
 (if is_none (lookup_mode name) then ()
6320
4df282137880 tuned using nth_elem_string, exists_string;
wenzelm
parents: 6272
diff changeset
   345
  else warning ("Redeclaration of symbol print mode " ^ quote name);
6272
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   346
  modes := Symtab.update ((name, f), ! modes));
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   347
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   348
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   349
(* mode output *)
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   350
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   351
fun output_width s =
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   352
  (case get_first lookup_mode (! print_mode) of
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   353
    None => default_output s
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   354
  | Some f => f s);
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   355
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   356
val output = #1 o output_width;
10923
e34948f18541 export plain_output;
wenzelm
parents: 10747
diff changeset
   357
val plain_output = #1 o default_output;
6272
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   358
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   359
6116
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   360
(*final declarations of this structure!*)
6272
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   361
val length = sym_length;
6116
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   362
val explode = sym_explode;
6272
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   363
6116
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   364
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   365
end;