src/Pure/General/symbol_pos.ML
author wenzelm
Tue, 12 Jul 2011 14:33:08 +0200
changeset 43773 e8ba493027a3
parent 43709 717e96cf9527
child 43947 9b00f09f7721
permissions -rw-r--r--
more precise Symbol_Pos.quote_string;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
27763
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
     1
(*  Title:      Pure/General/symbol_pos.ML
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
     2
    Author:     Makarius
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
     3
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
     4
Symbols with explicit position information.
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
     5
*)
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
     6
36957
cdb9e83abfbe tuned signature;
wenzelm
parents: 32784
diff changeset
     7
signature SYMBOL_POS =
27763
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
     8
sig
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
     9
  type T = Symbol.symbol * Position.T
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    10
  val symbol: T -> Symbol.symbol
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    11
  val $$$ : Symbol.symbol -> T list -> T list * T list
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    12
  val ~$$$ : Symbol.symbol -> T list -> T list * T list
27797
9861b39a2fd5 added content;
wenzelm
parents: 27778
diff changeset
    13
  val content: T list -> string
27763
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    14
  val is_eof: T -> bool
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    15
  val stopper: T Scan.stopper
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    16
  val !!! : string -> (T list -> 'a) -> T list -> 'a
30586
9674f64a0702 moved basic change_prompt, scan_string, scan_alt_string, scan_quoted to symbol_pos.ML;
wenzelm
parents: 30573
diff changeset
    17
  val change_prompt: ('a -> 'b) -> 'a -> 'b
27778
3ec7a4d9ef18 renamed SymbolPos.scan_position to SymbolPos.scan_pos;
wenzelm
parents: 27763
diff changeset
    18
  val scan_pos: T list -> Position.T * T list
42503
27514b6fbe93 more uniform variations of scan_string;
wenzelm
parents: 41416
diff changeset
    19
  val scan_string_q: T list -> (Position.T * (T list * Position.T)) * T list
27514b6fbe93 more uniform variations of scan_string;
wenzelm
parents: 41416
diff changeset
    20
  val scan_string_qq: T list -> (Position.T * (T list * Position.T)) * T list
27514b6fbe93 more uniform variations of scan_string;
wenzelm
parents: 41416
diff changeset
    21
  val scan_string_bq: T list -> (Position.T * (T list * Position.T)) * T list
43773
e8ba493027a3 more precise Symbol_Pos.quote_string;
wenzelm
parents: 43709
diff changeset
    22
  val quote_string_q: string -> string
e8ba493027a3 more precise Symbol_Pos.quote_string;
wenzelm
parents: 43709
diff changeset
    23
  val quote_string_qq: string -> string
e8ba493027a3 more precise Symbol_Pos.quote_string;
wenzelm
parents: 43709
diff changeset
    24
  val quote_string_bq: string -> string
27763
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    25
  val scan_comment: (string -> (T list -> T list * T list) -> T list -> T list * T list) ->
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    26
    T list -> T list * T list
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    27
  val scan_comment_body: (string -> (T list -> T list * T list) -> T list -> T list * T list) ->
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    28
    T list -> T list * T list
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    29
  val source: Position.T -> (Symbol.symbol, 'a) Source.source ->
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    30
    (T, Position.T * (Symbol.symbol, 'a) Source.source) Source.source
27778
3ec7a4d9ef18 renamed SymbolPos.scan_position to SymbolPos.scan_pos;
wenzelm
parents: 27763
diff changeset
    31
  type text = string
27797
9861b39a2fd5 added content;
wenzelm
parents: 27778
diff changeset
    32
  val implode: T list -> text
9861b39a2fd5 added content;
wenzelm
parents: 27778
diff changeset
    33
  val range: T list -> Position.range
9861b39a2fd5 added content;
wenzelm
parents: 27778
diff changeset
    34
  val implode_range: Position.T -> Position.T -> T list -> text * Position.range
27778
3ec7a4d9ef18 renamed SymbolPos.scan_position to SymbolPos.scan_pos;
wenzelm
parents: 27763
diff changeset
    35
  val explode: text * Position.T -> T list
27763
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    36
end;
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    37
30573
49899f26fbd1 de-camelized Symbol_Pos;
wenzelm
parents: 29606
diff changeset
    38
structure Symbol_Pos: SYMBOL_POS =
27763
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    39
struct
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    40
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    41
(* type T *)
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    42
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    43
type T = Symbol.symbol * Position.T;
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    44
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    45
fun symbol ((s, _): T) = s;
27852
6454fef6a293 added untabify_content;
wenzelm
parents: 27797
diff changeset
    46
27797
9861b39a2fd5 added content;
wenzelm
parents: 27778
diff changeset
    47
val content = implode o map symbol;
27763
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    48
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    49
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    50
(* stopper *)
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    51
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    52
fun mk_eof pos = (Symbol.eof, pos);
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    53
val eof = mk_eof Position.none;
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    54
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    55
val is_eof = Symbol.is_eof o symbol;
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    56
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    57
val stopper =
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    58
  Scan.stopper (fn [] => eof | inp => mk_eof (List.last inp |-> Position.advance)) is_eof;
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    59
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    60
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    61
(* basic scanners *)
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    62
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    63
fun !!! text scan =
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    64
  let
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    65
    fun get_pos [] = " (past end-of-text!)"
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    66
      | get_pos ((_, pos) :: _) = Position.str_of pos;
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    67
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    68
    fun err (syms, msg) =
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    69
      text ^ get_pos syms ^ " at " ^ Symbol.beginning 10 (map symbol syms) ^
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    70
      (case msg of NONE => "" | SOME s => "\n" ^ s);
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    71
  in Scan.!! err scan end;
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    72
30586
9674f64a0702 moved basic change_prompt, scan_string, scan_alt_string, scan_quoted to symbol_pos.ML;
wenzelm
parents: 30573
diff changeset
    73
fun change_prompt scan = Scan.prompt "# " scan;
9674f64a0702 moved basic change_prompt, scan_string, scan_alt_string, scan_quoted to symbol_pos.ML;
wenzelm
parents: 30573
diff changeset
    74
27763
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    75
fun $$$ s = Scan.one (fn x => symbol x = s) >> single;
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    76
fun ~$$$ s = Scan.one (fn x => symbol x <> s) >> single;
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    77
27778
3ec7a4d9ef18 renamed SymbolPos.scan_position to SymbolPos.scan_pos;
wenzelm
parents: 27763
diff changeset
    78
val scan_pos = Scan.ahead (Scan.one (K true)) >> (fn (_, pos): T => pos);
27763
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    79
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    80
43773
e8ba493027a3 more precise Symbol_Pos.quote_string;
wenzelm
parents: 43709
diff changeset
    81
(* scan string literals *)
30586
9674f64a0702 moved basic change_prompt, scan_string, scan_alt_string, scan_quoted to symbol_pos.ML;
wenzelm
parents: 30573
diff changeset
    82
9674f64a0702 moved basic change_prompt, scan_string, scan_alt_string, scan_quoted to symbol_pos.ML;
wenzelm
parents: 30573
diff changeset
    83
local
9674f64a0702 moved basic change_prompt, scan_string, scan_alt_string, scan_quoted to symbol_pos.ML;
wenzelm
parents: 30573
diff changeset
    84
9674f64a0702 moved basic change_prompt, scan_string, scan_alt_string, scan_quoted to symbol_pos.ML;
wenzelm
parents: 30573
diff changeset
    85
val char_code =
9674f64a0702 moved basic change_prompt, scan_string, scan_alt_string, scan_quoted to symbol_pos.ML;
wenzelm
parents: 30573
diff changeset
    86
  Scan.one (Symbol.is_ascii_digit o symbol) --
9674f64a0702 moved basic change_prompt, scan_string, scan_alt_string, scan_quoted to symbol_pos.ML;
wenzelm
parents: 30573
diff changeset
    87
  Scan.one (Symbol.is_ascii_digit o symbol) --
9674f64a0702 moved basic change_prompt, scan_string, scan_alt_string, scan_quoted to symbol_pos.ML;
wenzelm
parents: 30573
diff changeset
    88
  Scan.one (Symbol.is_ascii_digit o symbol) :|--
9674f64a0702 moved basic change_prompt, scan_string, scan_alt_string, scan_quoted to symbol_pos.ML;
wenzelm
parents: 30573
diff changeset
    89
  (fn (((a, pos), (b, _)), (c, _)) =>
9674f64a0702 moved basic change_prompt, scan_string, scan_alt_string, scan_quoted to symbol_pos.ML;
wenzelm
parents: 30573
diff changeset
    90
    let val (n, _) = Library.read_int [a, b, c]
9674f64a0702 moved basic change_prompt, scan_string, scan_alt_string, scan_quoted to symbol_pos.ML;
wenzelm
parents: 30573
diff changeset
    91
    in if n <= 255 then Scan.succeed [(chr n, pos)] else Scan.fail end);
9674f64a0702 moved basic change_prompt, scan_string, scan_alt_string, scan_quoted to symbol_pos.ML;
wenzelm
parents: 30573
diff changeset
    92
9674f64a0702 moved basic change_prompt, scan_string, scan_alt_string, scan_quoted to symbol_pos.ML;
wenzelm
parents: 30573
diff changeset
    93
fun scan_str q =
9674f64a0702 moved basic change_prompt, scan_string, scan_alt_string, scan_quoted to symbol_pos.ML;
wenzelm
parents: 30573
diff changeset
    94
  $$$ "\\" |-- !!! "bad escape character in string" ($$$ q || $$$ "\\" || char_code) ||
9674f64a0702 moved basic change_prompt, scan_string, scan_alt_string, scan_quoted to symbol_pos.ML;
wenzelm
parents: 30573
diff changeset
    95
  Scan.one (fn (s, _) => s <> q andalso s <> "\\" andalso Symbol.is_regular s) >> single;
9674f64a0702 moved basic change_prompt, scan_string, scan_alt_string, scan_quoted to symbol_pos.ML;
wenzelm
parents: 30573
diff changeset
    96
9674f64a0702 moved basic change_prompt, scan_string, scan_alt_string, scan_quoted to symbol_pos.ML;
wenzelm
parents: 30573
diff changeset
    97
fun scan_strs q =
9674f64a0702 moved basic change_prompt, scan_string, scan_alt_string, scan_quoted to symbol_pos.ML;
wenzelm
parents: 30573
diff changeset
    98
  (scan_pos --| $$$ q) -- !!! "missing quote at end of string"
9674f64a0702 moved basic change_prompt, scan_string, scan_alt_string, scan_quoted to symbol_pos.ML;
wenzelm
parents: 30573
diff changeset
    99
    (change_prompt ((Scan.repeat (scan_str q) >> flat) -- ($$$ q |-- scan_pos)));
9674f64a0702 moved basic change_prompt, scan_string, scan_alt_string, scan_quoted to symbol_pos.ML;
wenzelm
parents: 30573
diff changeset
   100
9674f64a0702 moved basic change_prompt, scan_string, scan_alt_string, scan_quoted to symbol_pos.ML;
wenzelm
parents: 30573
diff changeset
   101
in
9674f64a0702 moved basic change_prompt, scan_string, scan_alt_string, scan_quoted to symbol_pos.ML;
wenzelm
parents: 30573
diff changeset
   102
42503
27514b6fbe93 more uniform variations of scan_string;
wenzelm
parents: 41416
diff changeset
   103
val scan_string_q = scan_strs "'";
27514b6fbe93 more uniform variations of scan_string;
wenzelm
parents: 41416
diff changeset
   104
val scan_string_qq = scan_strs "\"";
27514b6fbe93 more uniform variations of scan_string;
wenzelm
parents: 41416
diff changeset
   105
val scan_string_bq = scan_strs "`";
30586
9674f64a0702 moved basic change_prompt, scan_string, scan_alt_string, scan_quoted to symbol_pos.ML;
wenzelm
parents: 30573
diff changeset
   106
9674f64a0702 moved basic change_prompt, scan_string, scan_alt_string, scan_quoted to symbol_pos.ML;
wenzelm
parents: 30573
diff changeset
   107
end;
9674f64a0702 moved basic change_prompt, scan_string, scan_alt_string, scan_quoted to symbol_pos.ML;
wenzelm
parents: 30573
diff changeset
   108
9674f64a0702 moved basic change_prompt, scan_string, scan_alt_string, scan_quoted to symbol_pos.ML;
wenzelm
parents: 30573
diff changeset
   109
43773
e8ba493027a3 more precise Symbol_Pos.quote_string;
wenzelm
parents: 43709
diff changeset
   110
(* quote string literals *)
e8ba493027a3 more precise Symbol_Pos.quote_string;
wenzelm
parents: 43709
diff changeset
   111
e8ba493027a3 more precise Symbol_Pos.quote_string;
wenzelm
parents: 43709
diff changeset
   112
local
e8ba493027a3 more precise Symbol_Pos.quote_string;
wenzelm
parents: 43709
diff changeset
   113
e8ba493027a3 more precise Symbol_Pos.quote_string;
wenzelm
parents: 43709
diff changeset
   114
fun char_code i =
e8ba493027a3 more precise Symbol_Pos.quote_string;
wenzelm
parents: 43709
diff changeset
   115
  (if i < 10 then "00" else if i < 100 then "0" else "") ^ string_of_int i;
e8ba493027a3 more precise Symbol_Pos.quote_string;
wenzelm
parents: 43709
diff changeset
   116
e8ba493027a3 more precise Symbol_Pos.quote_string;
wenzelm
parents: 43709
diff changeset
   117
fun quote_str q s =
e8ba493027a3 more precise Symbol_Pos.quote_string;
wenzelm
parents: 43709
diff changeset
   118
  if Symbol.is_ascii_control s then "\\" ^ char_code (ord s)
e8ba493027a3 more precise Symbol_Pos.quote_string;
wenzelm
parents: 43709
diff changeset
   119
  else if s = q orelse s = "\\" then "\\" ^ s
e8ba493027a3 more precise Symbol_Pos.quote_string;
wenzelm
parents: 43709
diff changeset
   120
  else s;
e8ba493027a3 more precise Symbol_Pos.quote_string;
wenzelm
parents: 43709
diff changeset
   121
e8ba493027a3 more precise Symbol_Pos.quote_string;
wenzelm
parents: 43709
diff changeset
   122
fun quote_string q = enclose q q o implode o map (quote_str q) o Symbol.explode;
e8ba493027a3 more precise Symbol_Pos.quote_string;
wenzelm
parents: 43709
diff changeset
   123
e8ba493027a3 more precise Symbol_Pos.quote_string;
wenzelm
parents: 43709
diff changeset
   124
in
e8ba493027a3 more precise Symbol_Pos.quote_string;
wenzelm
parents: 43709
diff changeset
   125
e8ba493027a3 more precise Symbol_Pos.quote_string;
wenzelm
parents: 43709
diff changeset
   126
val quote_string_q = quote_string "'";
e8ba493027a3 more precise Symbol_Pos.quote_string;
wenzelm
parents: 43709
diff changeset
   127
val quote_string_qq = quote_string "\"";
e8ba493027a3 more precise Symbol_Pos.quote_string;
wenzelm
parents: 43709
diff changeset
   128
val quote_string_bq = quote_string "`";
e8ba493027a3 more precise Symbol_Pos.quote_string;
wenzelm
parents: 43709
diff changeset
   129
e8ba493027a3 more precise Symbol_Pos.quote_string;
wenzelm
parents: 43709
diff changeset
   130
end;
e8ba493027a3 more precise Symbol_Pos.quote_string;
wenzelm
parents: 43709
diff changeset
   131
e8ba493027a3 more precise Symbol_Pos.quote_string;
wenzelm
parents: 43709
diff changeset
   132
27763
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   133
(* ML-style comments *)
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   134
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   135
local
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   136
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   137
val scan_cmt =
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   138
  Scan.depend (fn (d: int) => $$$ "(" @@@ $$$ "*" >> pair (d + 1)) ||
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   139
  Scan.depend (fn 0 => Scan.fail | d => $$$ "*" @@@ $$$ ")" >> pair (d - 1)) ||
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   140
  Scan.lift ($$$ "*" --| Scan.ahead (~$$$ ")")) ||
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   141
  Scan.lift (Scan.one (fn (s, _) => s <> "*" andalso Symbol.is_regular s)) >> single;
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   142
30586
9674f64a0702 moved basic change_prompt, scan_string, scan_alt_string, scan_quoted to symbol_pos.ML;
wenzelm
parents: 30573
diff changeset
   143
val scan_body = change_prompt (Scan.pass 0 (Scan.repeat scan_cmt >> flat));
27763
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   144
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   145
in
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   146
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   147
fun scan_comment cut =
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   148
  $$$ "(" @@@ $$$ "*" @@@ cut "missing end of comment" (scan_body @@@ $$$ "*" @@@ $$$ ")");
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   149
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   150
fun scan_comment_body cut =
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   151
  $$$ "(" |-- $$$ "*" |-- cut "missing end of comment" (scan_body --| $$$ "*" --| $$$ ")");
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   152
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   153
end;
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   154
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   155
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   156
(* source *)
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   157
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   158
fun source pos =
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   159
  Source.source' pos Symbol.stopper (Scan.bulk (Scan.depend (fn pos =>
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   160
    Scan.one Symbol.not_eof >> (fn s => (Position.advance s pos, (s, pos)))))) NONE;
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   161
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   162
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   163
(* compact representation -- with Symbol.DEL padding *)
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   164
27778
3ec7a4d9ef18 renamed SymbolPos.scan_position to SymbolPos.scan_pos;
wenzelm
parents: 27763
diff changeset
   165
type text = string;
3ec7a4d9ef18 renamed SymbolPos.scan_position to SymbolPos.scan_pos;
wenzelm
parents: 27763
diff changeset
   166
27763
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   167
fun pad [] = []
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   168
  | pad [(s, _)] = [s]
32784
1a5dde5079ac eliminated redundant bindings;
wenzelm
parents: 30586
diff changeset
   169
  | pad ((s1, pos1) :: (rest as (_, pos2) :: _)) =
27763
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   170
      let
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   171
        val end_pos1 = Position.advance s1 pos1;
27797
9861b39a2fd5 added content;
wenzelm
parents: 27778
diff changeset
   172
        val d = Int.max (0, Position.distance_of end_pos1 pos2);
27763
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   173
      in s1 :: replicate d Symbol.DEL @ pad rest end;
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   174
27797
9861b39a2fd5 added content;
wenzelm
parents: 27778
diff changeset
   175
val implode = implode o pad;
27763
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   176
27797
9861b39a2fd5 added content;
wenzelm
parents: 27778
diff changeset
   177
fun range (syms as (_, pos) :: _) =
27763
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   178
      let val pos' = List.last syms |-> Position.advance
27797
9861b39a2fd5 added content;
wenzelm
parents: 27778
diff changeset
   179
      in Position.range pos pos' end
9861b39a2fd5 added content;
wenzelm
parents: 27778
diff changeset
   180
  | range [] = Position.no_range;
27763
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   181
27797
9861b39a2fd5 added content;
wenzelm
parents: 27778
diff changeset
   182
fun implode_range pos1 pos2 syms =
9861b39a2fd5 added content;
wenzelm
parents: 27778
diff changeset
   183
  let val syms' = (("", pos1) :: syms @ [("", pos2)])
9861b39a2fd5 added content;
wenzelm
parents: 27778
diff changeset
   184
  in (implode syms', range syms') end;
27778
3ec7a4d9ef18 renamed SymbolPos.scan_position to SymbolPos.scan_pos;
wenzelm
parents: 27763
diff changeset
   185
27763
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   186
fun explode (str, pos) =
41416
a2208d3e2bd6 more scalable Symbol_Pos.explode;
wenzelm
parents: 40525
diff changeset
   187
  let
a2208d3e2bd6 more scalable Symbol_Pos.explode;
wenzelm
parents: 40525
diff changeset
   188
    val (res, _) =
a2208d3e2bd6 more scalable Symbol_Pos.explode;
wenzelm
parents: 40525
diff changeset
   189
      fold (fn s => fn (res, p) => ((s, p) :: res, Position.advance s p))
a2208d3e2bd6 more scalable Symbol_Pos.explode;
wenzelm
parents: 40525
diff changeset
   190
        (Symbol.explode str) ([], Position.reset_range pos);
a2208d3e2bd6 more scalable Symbol_Pos.explode;
wenzelm
parents: 40525
diff changeset
   191
  in fold (fn (s, p) => if s = Symbol.DEL then I else cons (s, p)) res [] end;
27763
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   192
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   193
end;
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   194
36957
cdb9e83abfbe tuned signature;
wenzelm
parents: 32784
diff changeset
   195
structure Basic_Symbol_Pos =   (*not open by default*)
cdb9e83abfbe tuned signature;
wenzelm
parents: 32784
diff changeset
   196
struct
cdb9e83abfbe tuned signature;
wenzelm
parents: 32784
diff changeset
   197
  val $$$ = Symbol_Pos.$$$;
cdb9e83abfbe tuned signature;
wenzelm
parents: 32784
diff changeset
   198
  val ~$$$ = Symbol_Pos.~$$$;
cdb9e83abfbe tuned signature;
wenzelm
parents: 32784
diff changeset
   199
end;
27763
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   200