src/Pure/General/symbol.ML
author paulson
Thu, 05 Sep 2002 14:03:03 +0200
changeset 13559 51c3ac47d127
parent 12904 c208d71702d1
child 13730 09aeb7346d3f
permissions -rw-r--r--
added checking so that (rename_tac "x y") is rejected, since "x y" is not an identifier
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
12116
4027b15377a5 got rid of obsolete input filtering;
wenzelm
parents: 11010
diff changeset
     6
Generalized characters with infinitely many named symbols.
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
10953
ea024d025463 added spaces;
wenzelm
parents: 10923
diff changeset
    13
  val spaces: int -> symbol
6857
6e6eb8d92377 added sync marker;
wenzelm
parents: 6692
diff changeset
    14
  val sync: symbol
6e6eb8d92377 added sync marker;
wenzelm
parents: 6692
diff changeset
    15
  val is_sync: symbol -> bool
6e6eb8d92377 added sync marker;
wenzelm
parents: 6692
diff changeset
    16
  val not_sync: symbol -> bool
10747
794cd4d768b5 scan: malformed result;
wenzelm
parents: 10738
diff changeset
    17
  val malformed: symbol
6116
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
    18
  val eof: symbol
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
    19
  val is_eof: symbol -> bool
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
    20
  val not_eof: symbol -> bool
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
    21
  val stopper: symbol * (symbol -> bool)
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
    22
  val is_ascii: symbol -> bool
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
    23
  val is_letter: symbol -> bool
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
    24
  val is_digit: symbol -> bool
12904
c208d71702d1 added is_quasi;
wenzelm
parents: 12116
diff changeset
    25
  val is_quasi: symbol -> bool
6116
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
    26
  val is_quasi_letter: symbol -> bool
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
    27
  val is_letdig: symbol -> bool
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
    28
  val is_blank: symbol -> bool
13559
51c3ac47d127 added checking so that (rename_tac "x y") is rejected, since
paulson
parents: 12904
diff changeset
    29
  val is_identifier: symbol -> bool
8230
6f8aa407bcf9 is_symbolic;
wenzelm
parents: 6857
diff changeset
    30
  val is_symbolic: symbol -> bool
6116
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
    31
  val is_printable: symbol -> bool
6272
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    32
  val length: symbol list -> int
11010
2c6559297be3 added strip_blanks;
wenzelm
parents: 10953
diff changeset
    33
  val strip_blanks: string -> string
6116
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
    34
  val beginning: symbol list -> string
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
    35
  val scan: string list -> symbol * string list
6640
d2e8342bf5c3 rearranged order of modules;
wenzelm
parents: 6320
diff changeset
    36
  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
    37
  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
    38
    (symbol, (string, 'a) Source.source) Source.source
6272
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    39
  val explode: string -> symbol list
12904
c208d71702d1 added is_quasi;
wenzelm
parents: 12116
diff changeset
    40
  val bump_string: string -> string
10953
ea024d025463 added spaces;
wenzelm
parents: 10923
diff changeset
    41
  val default_indent: string * int -> string
ea024d025463 added spaces;
wenzelm
parents: 10923
diff changeset
    42
  val add_mode: string -> (string -> string * real) * (string * int -> string) -> unit
6692
05c56f41e661 avoid string constants;
wenzelm
parents: 6640
diff changeset
    43
  val symbolsN: string
05c56f41e661 avoid string constants;
wenzelm
parents: 6640
diff changeset
    44
  val xsymbolsN: string
10923
e34948f18541 export plain_output;
wenzelm
parents: 10747
diff changeset
    45
  val plain_output: string -> string
6272
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    46
  val output: string -> string
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    47
  val output_width: string -> string * real
10953
ea024d025463 added spaces;
wenzelm
parents: 10923
diff changeset
    48
  val indent: string * int -> string
6116
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
    49
end;
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
    50
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
    51
structure Symbol: SYMBOL =
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
    52
struct
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
    53
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
    54
6272
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    55
(** generalized characters **)
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    56
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    57
(*symbols, which are considered the smallest entities of any Isabelle
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    58
  string, may be of the following form:
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    59
    (a) ASCII symbols: a
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    60
    (b) printable symbols: \<ident>
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    61
    (c) control symbols: \<^ident>
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    62
12116
4027b15377a5 got rid of obsolete input filtering;
wenzelm
parents: 11010
diff changeset
    63
  output is subject to the print_mode variable (default: verbatim),
4027b15377a5 got rid of obsolete input filtering;
wenzelm
parents: 11010
diff changeset
    64
  actual interpretation in display is up to front-end tools;
6272
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    65
*)
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    66
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    67
type symbol = string;
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    68
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    69
val space = " ";
10953
ea024d025463 added spaces;
wenzelm
parents: 10923
diff changeset
    70
fun spaces k = Library.replicate_string k space;
6857
6e6eb8d92377 added sync marker;
wenzelm
parents: 6692
diff changeset
    71
val sync = "\\<^sync>";
10747
794cd4d768b5 scan: malformed result;
wenzelm
parents: 10738
diff changeset
    72
val malformed = "\\<^malformed>";
6272
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    73
val eof = "";
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    74
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    75
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    76
(* kinds *)
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    77
6857
6e6eb8d92377 added sync marker;
wenzelm
parents: 6692
diff changeset
    78
fun is_sync s = s = sync;
6e6eb8d92377 added sync marker;
wenzelm
parents: 6692
diff changeset
    79
fun not_sync s = s <> sync;
6e6eb8d92377 added sync marker;
wenzelm
parents: 6692
diff changeset
    80
6272
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    81
fun is_eof s = s = eof;
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    82
fun not_eof s = s <> eof;
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    83
val stopper = (eof, is_eof);
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    84
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    85
fun is_ascii s = size s = 1 andalso ord s < 128;
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    86
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    87
fun is_letter s =
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    88
  size s = 1 andalso
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    89
   (ord "A" <= ord s andalso ord s <= ord "Z" orelse
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    90
    ord "a" <= ord s andalso ord s <= ord "z");
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    91
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    92
fun is_digit s =
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    93
  size s = 1 andalso ord "0" <= ord s andalso ord s <= ord "9";
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
    94
12904
c208d71702d1 added is_quasi;
wenzelm
parents: 12116
diff changeset
    95
fun is_quasi "_" = true
c208d71702d1 added is_quasi;
wenzelm
parents: 12116
diff changeset
    96
  | is_quasi "'" = true
c208d71702d1 added is_quasi;
wenzelm
parents: 12116
diff changeset
    97
  | is_quasi _ = false;
c208d71702d1 added is_quasi;
wenzelm
parents: 12116
diff changeset
    98
c208d71702d1 added is_quasi;
wenzelm
parents: 12116
diff changeset
    99
fun is_quasi_letter s = is_quasi s orelse is_letter s;
6272
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   100
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   101
val is_blank =
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   102
  fn " " => true | "\t" => true | "\n" => true | "\^L" => true
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   103
    | "\160" => true | "\\<spacespace>" => true
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   104
    | _ => false;
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   105
12904
c208d71702d1 added is_quasi;
wenzelm
parents: 12116
diff changeset
   106
fun is_letdig s = is_quasi_letter s orelse is_digit s;
6272
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   107
8230
6f8aa407bcf9 is_symbolic;
wenzelm
parents: 6857
diff changeset
   108
fun is_symbolic s =
6f8aa407bcf9 is_symbolic;
wenzelm
parents: 6857
diff changeset
   109
  size s > 2 andalso nth_elem_string (2, s) <> "^";
6f8aa407bcf9 is_symbolic;
wenzelm
parents: 6857
diff changeset
   110
6272
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   111
fun is_printable s =
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   112
  size s = 1 andalso ord space <= ord s andalso ord s <= ord "~" orelse
8230
6f8aa407bcf9 is_symbolic;
wenzelm
parents: 6857
diff changeset
   113
  is_symbolic s;
6f8aa407bcf9 is_symbolic;
wenzelm
parents: 6857
diff changeset
   114
13559
51c3ac47d127 added checking so that (rename_tac "x y") is rejected, since
paulson
parents: 12904
diff changeset
   115
fun is_identifier s =
51c3ac47d127 added checking so that (rename_tac "x y") is rejected, since
paulson
parents: 12904
diff changeset
   116
  case (explode s) of
51c3ac47d127 added checking so that (rename_tac "x y") is rejected, since
paulson
parents: 12904
diff changeset
   117
      [] => false
51c3ac47d127 added checking so that (rename_tac "x y") is rejected, since
paulson
parents: 12904
diff changeset
   118
    | c::cs => is_letter c andalso forall is_letdig cs;
6272
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   119
10738
3a610089c43b tuned length;
wenzelm
parents: 9961
diff changeset
   120
fun sym_length ss = foldl (fn (n, s) =>
3a610089c43b tuned length;
wenzelm
parents: 9961
diff changeset
   121
  (if not (is_printable s) then 0 else
3a610089c43b tuned length;
wenzelm
parents: 9961
diff changeset
   122
    (case Library.try String.substring (s, 2, 4) of
3a610089c43b tuned length;
wenzelm
parents: 9961
diff changeset
   123
      Some s' => if s' = "long" orelse s' = "Long" then 2 else 1
3a610089c43b tuned length;
wenzelm
parents: 9961
diff changeset
   124
    | None => 1)) + n) (0, ss);
6272
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   125
11010
2c6559297be3 added strip_blanks;
wenzelm
parents: 10953
diff changeset
   126
fun strip_blanks s =
2c6559297be3 added strip_blanks;
wenzelm
parents: 10953
diff changeset
   127
  implode (#1 (Library.take_suffix is_blank (#2 (Library.take_prefix is_blank (explode s)))));
2c6559297be3 added strip_blanks;
wenzelm
parents: 10953
diff changeset
   128
6272
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   129
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   130
(* beginning *)
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   131
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   132
val smash_blanks = map (fn s => if is_blank s then space else s);
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   133
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   134
fun beginning raw_ss =
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   135
  let
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   136
    val (all_ss, _) = take_suffix is_blank raw_ss;
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   137
    val dots = if length all_ss > 10 then " ..." else "";
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   138
    val (ss, _) = take_suffix is_blank (take (10, all_ss));
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   139
  in implode (smash_blanks ss) ^ dots end;
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   140
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   141
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   142
8998
56c44eee46ad fixed comment;
wenzelm
parents: 8806
diff changeset
   143
(** scanning through symbols **)
6640
d2e8342bf5c3 rearranged order of modules;
wenzelm
parents: 6320
diff changeset
   144
d2e8342bf5c3 rearranged order of modules;
wenzelm
parents: 6320
diff changeset
   145
fun scanner msg scan chs =
d2e8342bf5c3 rearranged order of modules;
wenzelm
parents: 6320
diff changeset
   146
  let
d2e8342bf5c3 rearranged order of modules;
wenzelm
parents: 6320
diff changeset
   147
    fun err_msg cs = msg ^ ": " ^ beginning cs;
d2e8342bf5c3 rearranged order of modules;
wenzelm
parents: 6320
diff changeset
   148
    val fin_scan = Scan.error (Scan.finite stopper (!! (fn (cs, _) => err_msg cs) scan));
d2e8342bf5c3 rearranged order of modules;
wenzelm
parents: 6320
diff changeset
   149
  in
d2e8342bf5c3 rearranged order of modules;
wenzelm
parents: 6320
diff changeset
   150
    (case fin_scan chs of
d2e8342bf5c3 rearranged order of modules;
wenzelm
parents: 6320
diff changeset
   151
      (result, []) => result
d2e8342bf5c3 rearranged order of modules;
wenzelm
parents: 6320
diff changeset
   152
    | (_, rest) => error (err_msg rest))
d2e8342bf5c3 rearranged order of modules;
wenzelm
parents: 6320
diff changeset
   153
  end;
d2e8342bf5c3 rearranged order of modules;
wenzelm
parents: 6320
diff changeset
   154
d2e8342bf5c3 rearranged order of modules;
wenzelm
parents: 6320
diff changeset
   155
d2e8342bf5c3 rearranged order of modules;
wenzelm
parents: 6320
diff changeset
   156
6272
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   157
(** symbol input **)
6116
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   158
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   159
(* scan *)
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   160
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   161
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
   162
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   163
val scan =
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   164
  ($$ "\\" --| Scan.optional ($$ "\\") "") ^^ $$ "<" ^^
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   165
    !! (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
   166
      (Scan.optional ($$ "^") "" ^^ scan_id ^^ $$ ">") ||
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   167
  Scan.one not_eof;
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   168
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   169
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   170
(* source *)
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   171
10747
794cd4d768b5 scan: malformed result;
wenzelm
parents: 10738
diff changeset
   172
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
   173
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   174
fun source do_recover src =
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   175
  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
   176
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   177
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   178
(* explode *)
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   179
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   180
fun no_syms [] = true
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   181
  | no_syms ("\\" :: "<" :: _) = false
12116
4027b15377a5 got rid of obsolete input filtering;
wenzelm
parents: 11010
diff changeset
   182
  | no_syms (_ :: cs) = no_syms cs;
6116
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   183
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   184
fun sym_explode str =
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   185
  let val chs = explode str in
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   186
    if no_syms chs then chs     (*tune trivial case*)
12116
4027b15377a5 got rid of obsolete input filtering;
wenzelm
parents: 11010
diff changeset
   187
    else the (Scan.read stopper (Scan.repeat scan) chs)
6116
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   188
  end;
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   189
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   190
12904
c208d71702d1 added is_quasi;
wenzelm
parents: 12116
diff changeset
   191
(* bump_string -- increment suffix of lowercase letters like a base 26 number *)
c208d71702d1 added is_quasi;
wenzelm
parents: 12116
diff changeset
   192
c208d71702d1 added is_quasi;
wenzelm
parents: 12116
diff changeset
   193
fun bump_string str =
c208d71702d1 added is_quasi;
wenzelm
parents: 12116
diff changeset
   194
  let
c208d71702d1 added is_quasi;
wenzelm
parents: 12116
diff changeset
   195
    fun bump [] = ["a"]
c208d71702d1 added is_quasi;
wenzelm
parents: 12116
diff changeset
   196
      | bump ("z" :: ss) = "a" :: bump ss
c208d71702d1 added is_quasi;
wenzelm
parents: 12116
diff changeset
   197
      | bump (s :: ss) =
c208d71702d1 added is_quasi;
wenzelm
parents: 12116
diff changeset
   198
          if size s = 1 andalso ord "a" <= ord s andalso ord s < ord "z"
c208d71702d1 added is_quasi;
wenzelm
parents: 12116
diff changeset
   199
          then chr (ord s + 1) :: ss
c208d71702d1 added is_quasi;
wenzelm
parents: 12116
diff changeset
   200
          else "a" :: s :: ss;
c208d71702d1 added is_quasi;
wenzelm
parents: 12116
diff changeset
   201
    val (cs, qs) = Library.take_suffix is_quasi (sym_explode str);
c208d71702d1 added is_quasi;
wenzelm
parents: 12116
diff changeset
   202
  in implode (rev (bump (rev cs)) @ qs) end;
c208d71702d1 added is_quasi;
wenzelm
parents: 12116
diff changeset
   203
6272
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   204
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   205
(** symbol output **)
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   206
10953
ea024d025463 added spaces;
wenzelm
parents: 10923
diff changeset
   207
(* default *)
6272
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   208
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   209
fun string_size s = (s, real (size s));
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   210
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   211
fun default_output s =
6320
4df282137880 tuned using nth_elem_string, exists_string;
wenzelm
parents: 6272
diff changeset
   212
  if not (exists_string (equal "\\") s) then string_size s
10738
3a610089c43b tuned length;
wenzelm
parents: 9961
diff changeset
   213
  else string_size (implode (map (fn "\\" => "\\\\" | c => c) (explode s)));    (*sic!*)
6272
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   214
10953
ea024d025463 added spaces;
wenzelm
parents: 10923
diff changeset
   215
fun default_indent (_: string, k) = spaces k;
6272
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   216
10953
ea024d025463 added spaces;
wenzelm
parents: 10923
diff changeset
   217
6272
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   218
(* maintain modes *)
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   219
6692
05c56f41e661 avoid string constants;
wenzelm
parents: 6640
diff changeset
   220
val symbolsN = "symbols";
05c56f41e661 avoid string constants;
wenzelm
parents: 6640
diff changeset
   221
val xsymbolsN = "xsymbols";
05c56f41e661 avoid string constants;
wenzelm
parents: 6640
diff changeset
   222
12116
4027b15377a5 got rid of obsolete input filtering;
wenzelm
parents: 11010
diff changeset
   223
val modes =
4027b15377a5 got rid of obsolete input filtering;
wenzelm
parents: 11010
diff changeset
   224
  ref (Symtab.empty: ((string -> string * real) * (string * int -> string)) Symtab.table);
6272
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   225
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   226
fun lookup_mode name = Symtab.lookup (! modes, name);
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   227
10953
ea024d025463 added spaces;
wenzelm
parents: 10923
diff changeset
   228
fun add_mode name m =
6272
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   229
 (if is_none (lookup_mode name) then ()
6320
4df282137880 tuned using nth_elem_string, exists_string;
wenzelm
parents: 6272
diff changeset
   230
  else warning ("Redeclaration of symbol print mode " ^ quote name);
10953
ea024d025463 added spaces;
wenzelm
parents: 10923
diff changeset
   231
  modes := Symtab.update ((name, m), ! modes));
ea024d025463 added spaces;
wenzelm
parents: 10923
diff changeset
   232
ea024d025463 added spaces;
wenzelm
parents: 10923
diff changeset
   233
fun get_mode () =
ea024d025463 added spaces;
wenzelm
parents: 10923
diff changeset
   234
  if_none (get_first lookup_mode (! print_mode)) (default_output, default_indent);
6272
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   235
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   236
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   237
(* mode output *)
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   238
10953
ea024d025463 added spaces;
wenzelm
parents: 10923
diff changeset
   239
fun output_width x = #1 (get_mode ()) x;
6272
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   240
val output = #1 o output_width;
10923
e34948f18541 export plain_output;
wenzelm
parents: 10747
diff changeset
   241
val plain_output = #1 o default_output;
6272
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   242
10953
ea024d025463 added spaces;
wenzelm
parents: 10923
diff changeset
   243
fun indent x = #2 (get_mode ()) x;
ea024d025463 added spaces;
wenzelm
parents: 10923
diff changeset
   244
6272
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   245
6116
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   246
(*final declarations of this structure!*)
6272
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   247
val length = sym_length;
6116
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   248
val explode = sym_explode;
6272
52d99d68d3be added output_width;
wenzelm
parents: 6225
diff changeset
   249
6116
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   250
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
diff changeset
   251
end;