src/Pure/General/position.ML
author wenzelm
Sat, 01 Apr 2023 15:01:35 +0200
changeset 77773 4b2262cfbf13
parent 77772 7e0d920b4e6e
child 77774 9273eb5d2672
permissions -rw-r--r--
more uniform treatment of properties (but < 0 should not occur here);
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
6118
caa439435666 fixed titles;
wenzelm
parents: 5010
diff changeset
     1
(*  Title:      Pure/General/position.ML
74165
86163ea20e77 tuned comments;
wenzelm
parents: 73864
diff changeset
     2
    Author:     Makarius
5010
9101b70b696d moved Thy/position.ML to General/position.ML;
wenzelm
parents:
diff changeset
     3
74165
86163ea20e77 tuned comments;
wenzelm
parents: 73864
diff changeset
     4
Source positions starting from 1; values <= 0 mean "absent". Count Isabelle
86163ea20e77 tuned comments;
wenzelm
parents: 73864
diff changeset
     5
symbols, not UTF8 bytes nor UTF16 characters. Position range specifies a
86163ea20e77 tuned comments;
wenzelm
parents: 73864
diff changeset
     6
right-open interval offset .. end_offset (exclusive).
5010
9101b70b696d moved Thy/position.ML to General/position.ML;
wenzelm
parents:
diff changeset
     7
*)
9101b70b696d moved Thy/position.ML to General/position.ML;
wenzelm
parents:
diff changeset
     8
9101b70b696d moved Thy/position.ML to General/position.ML;
wenzelm
parents:
diff changeset
     9
signature POSITION =
9101b70b696d moved Thy/position.ML to General/position.ML;
wenzelm
parents:
diff changeset
    10
sig
41484
51310e1ccd6f more direct treatment of Position.end_offset;
wenzelm
parents: 41483
diff changeset
    11
  eqtype T
71465
910a081cca74 more position information for oracles (e.g. "skip_proof" for 'sorry'), requires Proofterm.proofs := 1;
wenzelm
parents: 70498
diff changeset
    12
  val ord: T ord
62940
a03592aafadf tuned -- avoid recoding properties;
wenzelm
parents: 62929
diff changeset
    13
  val make: Thread_Position.T -> T
a03592aafadf tuned -- avoid recoding properties;
wenzelm
parents: 62929
diff changeset
    14
  val dest: T -> Thread_Position.T
23673
67c748e5ae54 replaced name by file (unquoted);
wenzelm
parents: 23627
diff changeset
    15
  val line_of: T -> int option
27795
f67f4c677d81 count offset as well;
wenzelm
parents: 27791
diff changeset
    16
  val offset_of: T -> int option
41484
51310e1ccd6f more direct treatment of Position.end_offset;
wenzelm
parents: 41483
diff changeset
    17
  val end_offset_of: T -> int option
23673
67c748e5ae54 replaced name by file (unquoted);
wenzelm
parents: 23627
diff changeset
    18
  val file_of: T -> string option
74166
ff3dbb2be924 tuned signature;
wenzelm
parents: 74165
diff changeset
    19
  val id_of: T -> string option
74174
a3b0fc510705 clarified signature;
wenzelm
parents: 74171
diff changeset
    20
  val symbol: Symbol.symbol -> T -> T
a3b0fc510705 clarified signature;
wenzelm
parents: 74171
diff changeset
    21
  val symbol_explode: string -> T -> T
68177
6e40f5d43936 clarified signature;
wenzelm
parents: 68172
diff changeset
    22
  val distance_of: T * T -> int option
5010
9101b70b696d moved Thy/position.ML to General/position.ML;
wenzelm
parents:
diff changeset
    23
  val none: T
27777
7a63d1b50b88 only increment column if valid;
wenzelm
parents: 27764
diff changeset
    24
  val start: T
31435
d24ef3ff34bc export file_name;
wenzelm
parents: 31424
diff changeset
    25
  val file_name: string -> Properties.T
44200
ce0112e26b3b tuned error message;
wenzelm
parents: 43710
diff changeset
    26
  val file_only: string -> T
27777
7a63d1b50b88 only increment column if valid;
wenzelm
parents: 27764
diff changeset
    27
  val file: string -> T
56437
b14bd153a753 clarified position: no offset here;
wenzelm
parents: 56333
diff changeset
    28
  val line_file_only: int -> string -> T
b14bd153a753 clarified position: no offset here;
wenzelm
parents: 56333
diff changeset
    29
  val line_file: int -> string -> T
5010
9101b70b696d moved Thy/position.ML to General/position.ML;
wenzelm
parents:
diff changeset
    30
  val line: int -> T
67280
dfc5a1503916 clarified default position for empty message pos;
wenzelm
parents: 64556
diff changeset
    31
  val get_props: T -> Properties.T
29307
3a0b38b7fbb4 added id;
wenzelm
parents: 28122
diff changeset
    32
  val id: string -> T
32573
62b5b538408d Isar.define_command: identify transaction;
wenzelm
parents: 32195
diff changeset
    33
  val id_only: string -> T
27426
c0ef698c0904 added get_id/put_id;
wenzelm
parents: 26890
diff changeset
    34
  val put_id: string -> T -> T
68858
e1796b8ddbae more accurate position for auxiliary files;
wenzelm
parents: 68829
diff changeset
    35
  val copy_id: T -> T -> T
68829
1a4fa494a4a8 tuned signature;
wenzelm
parents: 68183
diff changeset
    36
  val id_properties_of: T -> Properties.T
50911
ee7fe4230642 more explicit treatment of (optional) exception properties, notably for "serial" -- avoid conflict with startPosition = offset;
wenzelm
parents: 50254
diff changeset
    37
  val parse_id: T -> int option
77771
279b18bb4059 clarified signature;
wenzelm
parents: 77770
diff changeset
    38
  val shift_offsets: {remove_id: bool} -> int -> T -> T
68183
6560324b1e4d adjust position according to offset of command/exec id;
wenzelm
parents: 68177
diff changeset
    39
  val adjust_offsets: (int -> int option) -> T -> T
28017
4919bd124a58 type Properties.T;
wenzelm
parents: 27796
diff changeset
    40
  val of_properties: Properties.T -> T
4919bd124a58 type Properties.T;
wenzelm
parents: 27796
diff changeset
    41
  val properties_of: T -> Properties.T
42327
7c7cc7590eb3 Name_Space.entry_markup: keep def position as separate properties;
wenzelm
parents: 42204
diff changeset
    42
  val def_properties_of: T -> Properties.T
71910
f8b0271cc744 tuned signature;
wenzelm
parents: 71465
diff changeset
    43
  val entity_markup: string -> string * T -> Markup.T
74262
839a6e284545 tuned signature;
wenzelm
parents: 74183
diff changeset
    44
  val make_entity_markup: {def: bool} -> serial -> string -> string * T -> Markup.T
39440
4c2547af5909 simplified/clarified (Context_)Position.markup/reported_text;
wenzelm
parents: 38887
diff changeset
    45
  val markup: T -> Markup.T -> Markup.T
41504
f0f20a5b54df clarified notion Position.is_reported;
wenzelm
parents: 41484
diff changeset
    46
  val is_reported: T -> bool
56459
38d0b2099743 no report for position singularity, notably for aux. file, especially empty one;
wenzelm
parents: 56437
diff changeset
    47
  val is_reported_range: T -> bool
39507
839873937ddd tuned signature of (Context_)Position.report variants;
wenzelm
parents: 39440
diff changeset
    48
  val reported_text: T -> Markup.T -> string -> string
839873937ddd tuned signature of (Context_)Position.report variants;
wenzelm
parents: 39440
diff changeset
    49
  val report_text: T -> Markup.T -> string -> unit
839873937ddd tuned signature of (Context_)Position.report variants;
wenzelm
parents: 39440
diff changeset
    50
  val report: T -> Markup.T -> unit
44736
c2a3f1c84179 bulk reports for improved message throughput;
wenzelm
parents: 44735
diff changeset
    51
  type report = T * Markup.T
48767
7f0c469cc796 reports with body text, not just markup;
wenzelm
parents: 45666
diff changeset
    52
  type report_text = report * string
7f0c469cc796 reports with body text, not just markup;
wenzelm
parents: 45666
diff changeset
    53
  val reports_text: report_text list -> unit
44736
c2a3f1c84179 bulk reports for improved message throughput;
wenzelm
parents: 44735
diff changeset
    54
  val reports: report list -> unit
55922
710bc66f432c more markup for inner syntax class/type names (notably for completion);
wenzelm
parents: 55624
diff changeset
    55
  val store_reports: report_text list Unsynchronized.ref ->
710bc66f432c more markup for inner syntax class/type names (notably for completion);
wenzelm
parents: 55624
diff changeset
    56
    T list -> ('a -> Markup.T list) -> 'a -> unit
55959
c3b458435f4f more decisive commitment to get_free vs. the_const;
wenzelm
parents: 55922
diff changeset
    57
  val append_reports: report_text list Unsynchronized.ref -> report list -> unit
71465
910a081cca74 more position information for oracles (e.g. "skip_proof" for 'sorry'), requires Proofterm.proofs := 1;
wenzelm
parents: 70498
diff changeset
    58
  val here_strs: T -> string * string
48992
0518bf89c777 renamed Position.str_of to Position.here;
wenzelm
parents: 48767
diff changeset
    59
  val here: T -> string
49691
74ad6ecf2af2 more error positions;
wenzelm
parents: 49528
diff changeset
    60
  val here_list: T list -> string
27764
e0ee3cc240fe advance: single argument (again);
wenzelm
parents: 27759
diff changeset
    61
  type range = T * T
27796
a6da5f68e776 added distance_of (permissive version);
wenzelm
parents: 27795
diff changeset
    62
  val no_range: range
62800
7ac100f86863 tuned signature;
wenzelm
parents: 62798
diff changeset
    63
  val no_range_position: T -> T
62797
e08c44eed27f tuned signature;
wenzelm
parents: 62750
diff changeset
    64
  val range_position: range -> T
e08c44eed27f tuned signature;
wenzelm
parents: 62750
diff changeset
    65
  val range: T * T -> range
58978
e42da880c61e more position information, e.g. relevant for errors in generated ML source;
wenzelm
parents: 58854
diff changeset
    66
  val range_of_properties: Properties.T -> range
e42da880c61e more position information, e.g. relevant for errors in generated ML source;
wenzelm
parents: 58854
diff changeset
    67
  val properties_of_range: range -> Properties.T
25817
d8e0190917a5 type T: based on properties, added id field;
wenzelm
parents: 25792
diff changeset
    68
  val thread_data: unit -> T
d8e0190917a5 type T: based on properties, added id field;
wenzelm
parents: 25792
diff changeset
    69
  val setmp_thread_data: T -> ('a -> 'b) -> 'a -> 'b
49528
789b73fcca72 report proper binding positions only -- avoid swamping document model with unspecific information;
wenzelm
parents: 48992
diff changeset
    70
  val default: T -> bool * T
5010
9101b70b696d moved Thy/position.ML to General/position.ML;
wenzelm
parents:
diff changeset
    71
end;
9101b70b696d moved Thy/position.ML to General/position.ML;
wenzelm
parents:
diff changeset
    72
9101b70b696d moved Thy/position.ML to General/position.ML;
wenzelm
parents:
diff changeset
    73
structure Position: POSITION =
9101b70b696d moved Thy/position.ML to General/position.ML;
wenzelm
parents:
diff changeset
    74
struct
9101b70b696d moved Thy/position.ML to General/position.ML;
wenzelm
parents:
diff changeset
    75
9101b70b696d moved Thy/position.ML to General/position.ML;
wenzelm
parents:
diff changeset
    76
(* datatype position *)
9101b70b696d moved Thy/position.ML to General/position.ML;
wenzelm
parents:
diff changeset
    77
77769
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
    78
datatype T = Pos of {line: int, offset: int, end_offset: int, props: Properties.T};
71465
910a081cca74 more position information for oracles (e.g. "skip_proof" for 'sorry'), requires Proofterm.proofs := 1;
wenzelm
parents: 70498
diff changeset
    79
41484
51310e1ccd6f more direct treatment of Position.end_offset;
wenzelm
parents: 41483
diff changeset
    80
fun norm_props (props: Properties.T) =
45666
d83797ef0d2d separate module for concrete Isabelle markup;
wenzelm
parents: 45412
diff changeset
    81
  maps (fn a => the_list (find_first (fn (b, _) => a = b) props))
72707
f1380c9f3806 clarified signature;
wenzelm
parents: 72706
diff changeset
    82
    [Markup.fileN, Markup.idN];
41484
51310e1ccd6f more direct treatment of Position.end_offset;
wenzelm
parents: 41483
diff changeset
    83
77769
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
    84
fun make {line, offset, end_offset, props} =
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
    85
  Pos {line = line, offset = offset, end_offset = end_offset, props = norm_props props};
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
    86
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
    87
fun dest (Pos args) = args;
27777
7a63d1b50b88 only increment column if valid;
wenzelm
parents: 27764
diff changeset
    88
77769
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
    89
val ord =
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
    90
  pointer_eq_ord
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
    91
   (int_ord o apply2 (#line o dest) |||
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
    92
    int_ord o apply2 (#offset o dest) |||
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
    93
    int_ord o apply2 (#end_offset o dest) |||
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
    94
    Properties.ord o apply2 (#props o dest));
27795
f67f4c677d81 count offset as well;
wenzelm
parents: 27791
diff changeset
    95
27777
7a63d1b50b88 only increment column if valid;
wenzelm
parents: 27764
diff changeset
    96
27796
a6da5f68e776 added distance_of (permissive version);
wenzelm
parents: 27795
diff changeset
    97
(* fields *)
a6da5f68e776 added distance_of (permissive version);
wenzelm
parents: 27795
diff changeset
    98
77769
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
    99
fun valid (i: int) = i > 0;
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
   100
fun maybe_valid i = if valid i then SOME i else NONE;
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
   101
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
   102
val invalid = not o valid;
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
   103
fun invalid_pos (Pos {line, offset, ...}) = invalid line andalso invalid offset;
27796
a6da5f68e776 added distance_of (permissive version);
wenzelm
parents: 27795
diff changeset
   104
77769
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
   105
val line_of = maybe_valid o #line o dest;
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
   106
val offset_of = maybe_valid o #offset o dest;
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
   107
val end_offset_of = maybe_valid o #end_offset o dest;
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
   108
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
   109
fun file_of (Pos {props, ...}) = Properties.get props Markup.fileN;
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
   110
fun id_of (Pos {props, ...}) = Properties.get props Markup.idN;
27796
a6da5f68e776 added distance_of (permissive version);
wenzelm
parents: 27795
diff changeset
   111
a6da5f68e776 added distance_of (permissive version);
wenzelm
parents: 27795
diff changeset
   112
77769
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
   113
(* symbol positions *)
5010
9101b70b696d moved Thy/position.ML to General/position.ML;
wenzelm
parents:
diff changeset
   114
77769
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
   115
fun symbols [] pos = pos
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
   116
  | symbols ss (pos as Pos {line, offset, end_offset, props}) =
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
   117
      let
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
   118
        val line' = if valid line then fold (fn s => s = "\n" ? Integer.add 1) ss line else line;
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
   119
        val offset' =
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
   120
          if valid offset then fold (fn s => Symbol.not_eof s ? Integer.add 1) ss offset else offset;
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
   121
      in
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
   122
        if line = line' andalso offset = offset' then pos
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
   123
        else Pos {line = line', offset = offset', end_offset = end_offset, props = props}
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
   124
      end;
27795
f67f4c677d81 count offset as well;
wenzelm
parents: 27791
diff changeset
   125
77769
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
   126
val symbol = symbols o single;
27777
7a63d1b50b88 only increment column if valid;
wenzelm
parents: 27764
diff changeset
   127
77769
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
   128
fun symbol_explode str pos =
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
   129
  if str = "" orelse invalid_pos pos then pos
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
   130
  else fold symbol (Symbol.explode str) pos;
74171
a9e79c3645c4 clarified signature;
wenzelm
parents: 74166
diff changeset
   131
74176
wenzelm
parents: 74174
diff changeset
   132
27796
a6da5f68e776 added distance_of (permissive version);
wenzelm
parents: 27795
diff changeset
   133
(* distance of adjacent positions *)
27777
7a63d1b50b88 only increment column if valid;
wenzelm
parents: 27764
diff changeset
   134
77769
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
   135
fun distance_of (Pos {offset, ...}, Pos {offset = offset', ...}) =
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
   136
  if valid offset andalso valid offset' then SOME (offset' - offset) else NONE;
26882
9e824d8f4512 renamed Position.path to Path.position;
wenzelm
parents: 26633
diff changeset
   137
5010
9101b70b696d moved Thy/position.ML to General/position.ML;
wenzelm
parents:
diff changeset
   138
27777
7a63d1b50b88 only increment column if valid;
wenzelm
parents: 27764
diff changeset
   139
(* make position *)
7a63d1b50b88 only increment column if valid;
wenzelm
parents: 27764
diff changeset
   140
77769
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
   141
val none = Pos {line = 0, offset = 0, end_offset = 0, props = []};
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
   142
val start = Pos {line = 1, offset = 1, end_offset = 0, props = []};
27744
d4c5ddf98869 advance: operate on symbol list (less overhead);
wenzelm
parents: 27741
diff changeset
   143
29307
3a0b38b7fbb4 added id;
wenzelm
parents: 28122
diff changeset
   144
27796
a6da5f68e776 added distance_of (permissive version);
wenzelm
parents: 27795
diff changeset
   145
fun file_name "" = []
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49691
diff changeset
   146
  | file_name name = [(Markup.fileN, name)];
27796
a6da5f68e776 added distance_of (permissive version);
wenzelm
parents: 27795
diff changeset
   147
77769
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
   148
fun file_only name = Pos {line = 0, offset = 0, end_offset = 0, props = file_name name};
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
   149
fun file name = Pos {line = 1, offset = 1, end_offset = 0, props = file_name name};
27744
d4c5ddf98869 advance: operate on symbol list (less overhead);
wenzelm
parents: 27741
diff changeset
   150
77769
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
   151
fun line_file_only line name = Pos {line = line, offset = 0, end_offset = 0, props = file_name name};
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
   152
fun line_file line name = Pos {line = line, offset = 1, end_offset = 0, props = file_name name};
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
   153
fun line line = line_file line "";
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
   154
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
   155
val get_props = #props o dest;
5010
9101b70b696d moved Thy/position.ML to General/position.ML;
wenzelm
parents:
diff changeset
   156
77769
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
   157
fun id id = Pos {line = 0, offset = 1, end_offset = 0, props = [(Markup.idN, id)]};
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
   158
fun id_only id = Pos {line = 0, offset = 0, end_offset = 0, props = [(Markup.idN, id)]};
67280
dfc5a1503916 clarified default position for empty message pos;
wenzelm
parents: 64556
diff changeset
   159
77769
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
   160
fun put_id id (pos as Pos {line, offset, end_offset, props}) =
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
   161
  let val props' = norm_props (Properties.put (Markup.idN, id) props) in
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
   162
    if props = props' then pos
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
   163
    else Pos {line = line, offset = offset, end_offset = end_offset, props = props'}
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
   164
  end;
22158
ff4fc4ee9eb0 Add line_of, name_of destructors.
aspinall
parents: 15531
diff changeset
   165
74166
ff3dbb2be924 tuned signature;
wenzelm
parents: 74165
diff changeset
   166
fun copy_id pos = (case id_of pos of NONE => I | SOME id => put_id id);
27426
c0ef698c0904 added get_id/put_id;
wenzelm
parents: 26890
diff changeset
   167
74166
ff3dbb2be924 tuned signature;
wenzelm
parents: 74165
diff changeset
   168
fun parse_id pos = Option.map Value.parse_int (id_of pos);
50911
ee7fe4230642 more explicit treatment of (optional) exception properties, notably for "serial" -- avoid conflict with startPosition = offset;
wenzelm
parents: 50254
diff changeset
   169
68829
1a4fa494a4a8 tuned signature;
wenzelm
parents: 68183
diff changeset
   170
fun id_properties_of pos =
74166
ff3dbb2be924 tuned signature;
wenzelm
parents: 74165
diff changeset
   171
  (case id_of pos of
68829
1a4fa494a4a8 tuned signature;
wenzelm
parents: 68183
diff changeset
   172
    SOME id => [(Markup.idN, id)]
1a4fa494a4a8 tuned signature;
wenzelm
parents: 68183
diff changeset
   173
  | NONE => []);
29307
3a0b38b7fbb4 added id;
wenzelm
parents: 28122
diff changeset
   174
74180
wenzelm
parents: 74179
diff changeset
   175
wenzelm
parents: 74179
diff changeset
   176
(* adjust offsets *)
wenzelm
parents: 74179
diff changeset
   177
77769
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
   178
fun shift_offsets {remove_id} shift (pos as Pos {line, offset, end_offset, props}) =
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
   179
  if shift < 0 then raise Fail "Illegal offset shift"
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
   180
  else if shift > 0 andalso valid line then raise Fail "Illegal line position"
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
   181
  else
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
   182
    let
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
   183
      val offset' = if valid offset then offset + shift else offset;
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
   184
      val end_offset' = if valid end_offset then end_offset + shift else end_offset;
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
   185
      val props' = if remove_id then Properties.remove Markup.idN props else props;
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
   186
    in
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
   187
      if offset = offset' andalso end_offset = end_offset' andalso props = props' then pos
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
   188
      else Pos {line = line, offset = offset', end_offset = end_offset', props = props'}
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
   189
    end;
74180
wenzelm
parents: 74179
diff changeset
   190
77769
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
   191
fun adjust_offsets adjust pos =
68858
e1796b8ddbae more accurate position for auxiliary files;
wenzelm
parents: 68829
diff changeset
   192
  if is_none (file_of pos) then
e1796b8ddbae more accurate position for auxiliary files;
wenzelm
parents: 68829
diff changeset
   193
    (case parse_id pos of
e1796b8ddbae more accurate position for auxiliary files;
wenzelm
parents: 68829
diff changeset
   194
      SOME id =>
e1796b8ddbae more accurate position for auxiliary files;
wenzelm
parents: 68829
diff changeset
   195
        (case adjust id of
77769
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
   196
          SOME shift => shift_offsets {remove_id = true} shift pos
68858
e1796b8ddbae more accurate position for auxiliary files;
wenzelm
parents: 68829
diff changeset
   197
        | NONE => pos)
e1796b8ddbae more accurate position for auxiliary files;
wenzelm
parents: 68829
diff changeset
   198
    | NONE => pos)
e1796b8ddbae more accurate position for auxiliary files;
wenzelm
parents: 68829
diff changeset
   199
  else pos;
68183
6560324b1e4d adjust position according to offset of command/exec id;
wenzelm
parents: 68177
diff changeset
   200
6560324b1e4d adjust position according to offset of command/exec id;
wenzelm
parents: 68177
diff changeset
   201
29307
3a0b38b7fbb4 added id;
wenzelm
parents: 28122
diff changeset
   202
(* markup properties *)
3a0b38b7fbb4 added id;
wenzelm
parents: 28122
diff changeset
   203
25817
d8e0190917a5 type T: based on properties, added id field;
wenzelm
parents: 25792
diff changeset
   204
fun of_properties props =
74181
wenzelm
parents: 74180
diff changeset
   205
  make {
77772
7e0d920b4e6e tuned signature;
wenzelm
parents: 77771
diff changeset
   206
    line = Properties.get_int props Markup.lineN,
7e0d920b4e6e tuned signature;
wenzelm
parents: 77771
diff changeset
   207
    offset = Properties.get_int props Markup.offsetN,
7e0d920b4e6e tuned signature;
wenzelm
parents: 77771
diff changeset
   208
    end_offset = Properties.get_int props Markup.end_offsetN,
58978
e42da880c61e more position information, e.g. relevant for errors in generated ML source;
wenzelm
parents: 58854
diff changeset
   209
    props = props};
26003
7a8aee8353cf added column field;
wenzelm
parents: 25954
diff changeset
   210
77773
4b2262cfbf13 more uniform treatment of properties (but < 0 should not occur here);
wenzelm
parents: 77772
diff changeset
   211
fun int_entry k i = if i = 0 then [] else [(k, Value.print_int i)];
41484
51310e1ccd6f more direct treatment of Position.end_offset;
wenzelm
parents: 41483
diff changeset
   212
77769
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
   213
fun properties_of (Pos {line, offset, end_offset, props}) =
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
   214
  int_entry Markup.lineN line @
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
   215
  int_entry Markup.offsetN offset @
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
   216
  int_entry Markup.end_offsetN end_offset @ props;
26003
7a8aee8353cf added column field;
wenzelm
parents: 25954
diff changeset
   217
74182
72bb7e9143f7 minor performance tuning;
wenzelm
parents: 74181
diff changeset
   218
val def_properties_of = properties_of #> map (apfst Markup.def_name);
42327
7c7cc7590eb3 Name_Space.entry_markup: keep def position as separate properties;
wenzelm
parents: 42204
diff changeset
   219
71910
f8b0271cc744 tuned signature;
wenzelm
parents: 71465
diff changeset
   220
fun entity_markup kind (name, pos) =
f8b0271cc744 tuned signature;
wenzelm
parents: 71465
diff changeset
   221
  Markup.entity kind name |> Markup.properties (def_properties_of pos);
f8b0271cc744 tuned signature;
wenzelm
parents: 71465
diff changeset
   222
74262
839a6e284545 tuned signature;
wenzelm
parents: 74183
diff changeset
   223
fun make_entity_markup {def} serial kind (name, pos) =
74183
af81e4a307be clarified signature;
wenzelm
parents: 74182
diff changeset
   224
  let
af81e4a307be clarified signature;
wenzelm
parents: 74182
diff changeset
   225
    val props =
af81e4a307be clarified signature;
wenzelm
parents: 74182
diff changeset
   226
      if def then (Markup.defN, Value.print_int serial) :: properties_of pos
af81e4a307be clarified signature;
wenzelm
parents: 74182
diff changeset
   227
      else (Markup.refN, Value.print_int serial) :: def_properties_of pos;
af81e4a307be clarified signature;
wenzelm
parents: 74182
diff changeset
   228
  in Markup.entity kind name |> Markup.properties props end;
45412
7797f5351ec4 entity markup for bound variables;
wenzelm
parents: 44736
diff changeset
   229
39440
4c2547af5909 simplified/clarified (Context_)Position.markup/reported_text;
wenzelm
parents: 38887
diff changeset
   230
val markup = Markup.properties o properties_of;
4c2547af5909 simplified/clarified (Context_)Position.markup/reported_text;
wenzelm
parents: 38887
diff changeset
   231
4c2547af5909 simplified/clarified (Context_)Position.markup/reported_text;
wenzelm
parents: 38887
diff changeset
   232
4c2547af5909 simplified/clarified (Context_)Position.markup/reported_text;
wenzelm
parents: 38887
diff changeset
   233
(* reports *)
38887
1261481ef5e5 Command.State: add reported positions to markup tree, according main message position or Markup.binding/entity/report occurrences in body;
wenzelm
parents: 38236
diff changeset
   234
74166
ff3dbb2be924 tuned signature;
wenzelm
parents: 74165
diff changeset
   235
fun is_reported pos = is_some (offset_of pos) andalso is_some (id_of pos);
56459
38d0b2099743 no report for position singularity, notably for aux. file, especially empty one;
wenzelm
parents: 56437
diff changeset
   236
fun is_reported_range pos = is_reported pos andalso is_some (end_offset_of pos);
30669
6de7ef888aa3 added report_text -- status messages with text body;
wenzelm
parents: 29307
diff changeset
   237
41504
f0f20a5b54df clarified notion Position.is_reported;
wenzelm
parents: 41484
diff changeset
   238
fun reported_text pos m txt = if is_reported pos then Markup.markup (markup pos m) txt else "";
56333
38f1422ef473 support bulk messages consisting of small string segments, which are more healthy to the Poly/ML RTS and might prevent spurious GC crashes such as MTGCProcessMarkPointers::ScanAddressesInObject;
wenzelm
parents: 55959
diff changeset
   239
fun report_text pos markup txt = Output.report [reported_text pos markup txt];
39507
839873937ddd tuned signature of (Context_)Position.report variants;
wenzelm
parents: 39440
diff changeset
   240
fun report pos markup = report_text pos markup "";
27764
e0ee3cc240fe advance: single argument (again);
wenzelm
parents: 27759
diff changeset
   241
44736
c2a3f1c84179 bulk reports for improved message throughput;
wenzelm
parents: 44735
diff changeset
   242
type report = T * Markup.T;
48767
7f0c469cc796 reports with body text, not just markup;
wenzelm
parents: 45666
diff changeset
   243
type report_text = report * string;
44736
c2a3f1c84179 bulk reports for improved message throughput;
wenzelm
parents: 44735
diff changeset
   244
48767
7f0c469cc796 reports with body text, not just markup;
wenzelm
parents: 45666
diff changeset
   245
val reports_text =
7f0c469cc796 reports with body text, not just markup;
wenzelm
parents: 45666
diff changeset
   246
  map (fn ((pos, m), txt) => if is_reported pos then Markup.markup (markup pos m) txt else "")
56333
38f1422ef473 support bulk messages consisting of small string segments, which are more healthy to the Poly/ML RTS and might prevent spurious GC crashes such as MTGCProcessMarkPointers::ScanAddressesInObject;
wenzelm
parents: 55959
diff changeset
   247
  #> Output.report;
42204
b3277168c1e7 added Position.reports convenience;
wenzelm
parents: 41504
diff changeset
   248
48767
7f0c469cc796 reports with body text, not just markup;
wenzelm
parents: 45666
diff changeset
   249
val reports = map (rpair "") #> reports_text;
7f0c469cc796 reports with body text, not just markup;
wenzelm
parents: 45666
diff changeset
   250
44735
66862d02678c tuned signature;
wenzelm
parents: 44224
diff changeset
   251
fun store_reports _ [] _ _ = ()
55922
710bc66f432c more markup for inner syntax class/type names (notably for completion);
wenzelm
parents: 55624
diff changeset
   252
  | store_reports (r: report_text list Unsynchronized.ref) ps markup x =
42204
b3277168c1e7 added Position.reports convenience;
wenzelm
parents: 41504
diff changeset
   253
      let val ms = markup x
55922
710bc66f432c more markup for inner syntax class/type names (notably for completion);
wenzelm
parents: 55624
diff changeset
   254
      in Unsynchronized.change r (fold (fn p => fold (fn m => cons ((p, m), "")) ms) ps) end;
42204
b3277168c1e7 added Position.reports convenience;
wenzelm
parents: 41504
diff changeset
   255
55959
c3b458435f4f more decisive commitment to get_free vs. the_const;
wenzelm
parents: 55922
diff changeset
   256
fun append_reports (r: report_text list Unsynchronized.ref) reports =
c3b458435f4f more decisive commitment to get_free vs. the_const;
wenzelm
parents: 55922
diff changeset
   257
  Unsynchronized.change r (append (map (rpair "") reports));
c3b458435f4f more decisive commitment to get_free vs. the_const;
wenzelm
parents: 55922
diff changeset
   258
25817
d8e0190917a5 type T: based on properties, added id field;
wenzelm
parents: 25792
diff changeset
   259
56532
3da244bc02bd tuned message, to accommodate extra brackets produced by Scala parsers;
wenzelm
parents: 56459
diff changeset
   260
(* here: user output *)
26003
7a8aee8353cf added column field;
wenzelm
parents: 25954
diff changeset
   261
71465
910a081cca74 more position information for oracles (e.g. "skip_proof" for 'sorry'), requires Proofterm.proofs := 1;
wenzelm
parents: 70498
diff changeset
   262
fun here_strs pos =
910a081cca74 more position information for oracles (e.g. "skip_proof" for 'sorry'), requires Proofterm.proofs := 1;
wenzelm
parents: 70498
diff changeset
   263
  (case (line_of pos, file_of pos) of
910a081cca74 more position information for oracles (e.g. "skip_proof" for 'sorry'), requires Proofterm.proofs := 1;
wenzelm
parents: 70498
diff changeset
   264
    (SOME i, NONE) => (" ", "(line " ^ Value.print_int i ^ ")")
910a081cca74 more position information for oracles (e.g. "skip_proof" for 'sorry'), requires Proofterm.proofs := 1;
wenzelm
parents: 70498
diff changeset
   265
  | (SOME i, SOME name) => (" ", "(line " ^ Value.print_int i ^ " of " ^ quote name ^ ")")
910a081cca74 more position information for oracles (e.g. "skip_proof" for 'sorry'), requires Proofterm.proofs := 1;
wenzelm
parents: 70498
diff changeset
   266
  | (NONE, SOME name) => (" ", "(file " ^ quote name ^ ")")
910a081cca74 more position information for oracles (e.g. "skip_proof" for 'sorry'), requires Proofterm.proofs := 1;
wenzelm
parents: 70498
diff changeset
   267
  | _ => if is_reported pos then ("", "\092<^here>") else ("", ""));
910a081cca74 more position information for oracles (e.g. "skip_proof" for 'sorry'), requires Proofterm.proofs := 1;
wenzelm
parents: 70498
diff changeset
   268
48992
0518bf89c777 renamed Position.str_of to Position.here;
wenzelm
parents: 48767
diff changeset
   269
fun here pos =
26003
7a8aee8353cf added column field;
wenzelm
parents: 25954
diff changeset
   270
  let
7a8aee8353cf added column field;
wenzelm
parents: 25954
diff changeset
   271
    val props = properties_of pos;
71465
910a081cca74 more position information for oracles (e.g. "skip_proof" for 'sorry'), requires Proofterm.proofs := 1;
wenzelm
parents: 70498
diff changeset
   272
    val (s1, s2) = here_strs pos;
26003
7a8aee8353cf added column field;
wenzelm
parents: 25954
diff changeset
   273
  in
69348
f0aef5e337a2 more robust (amending 76979adf0b96);
wenzelm
parents: 68858
diff changeset
   274
    if s2 = "" then ""
55624
d52409077135 tuned messages;
wenzelm
parents: 55546
diff changeset
   275
    else s1 ^ Markup.markup (Markup.properties props Markup.position) s2
26003
7a8aee8353cf added column field;
wenzelm
parents: 25954
diff changeset
   276
  end;
25817
d8e0190917a5 type T: based on properties, added id field;
wenzelm
parents: 25792
diff changeset
   277
70498
de75eea6ffc8 tuned message;
wenzelm
parents: 69348
diff changeset
   278
val here_list = map here #> distinct (op =) #> implode;
49691
74ad6ecf2af2 more error positions;
wenzelm
parents: 49528
diff changeset
   279
23627
f543538866a2 added property conversions;
wenzelm
parents: 22158
diff changeset
   280
27736
3703dbd0cdea added encode_range;
wenzelm
parents: 27661
diff changeset
   281
(* range *)
3703dbd0cdea added encode_range;
wenzelm
parents: 27661
diff changeset
   282
3703dbd0cdea added encode_range;
wenzelm
parents: 27661
diff changeset
   283
type range = T * T;
3703dbd0cdea added encode_range;
wenzelm
parents: 27661
diff changeset
   284
27796
a6da5f68e776 added distance_of (permissive version);
wenzelm
parents: 27795
diff changeset
   285
val no_range = (none, none);
a6da5f68e776 added distance_of (permissive version);
wenzelm
parents: 27795
diff changeset
   286
77769
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
   287
fun no_range_position (Pos {line, offset, end_offset = _, props}) =
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
   288
  Pos {line = line, offset = offset, end_offset = 0, props = props};
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
   289
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
   290
fun range_position (Pos {line, offset, end_offset = _, props}, Pos {offset = offset', ...}) =
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
   291
  Pos {line = line, offset = offset, end_offset = offset', props = props};
17391f298cf5 misc tuning and clarification: more tight representation;
wenzelm
parents: 74262
diff changeset
   292
62800
7ac100f86863 tuned signature;
wenzelm
parents: 62798
diff changeset
   293
fun range (pos, pos') = (range_position (pos, pos'), no_range_position pos');
27777
7a63d1b50b88 only increment column if valid;
wenzelm
parents: 27764
diff changeset
   294
58978
e42da880c61e more position information, e.g. relevant for errors in generated ML source;
wenzelm
parents: 58854
diff changeset
   295
fun range_of_properties props =
e42da880c61e more position information, e.g. relevant for errors in generated ML source;
wenzelm
parents: 58854
diff changeset
   296
  let
e42da880c61e more position information, e.g. relevant for errors in generated ML source;
wenzelm
parents: 58854
diff changeset
   297
    val pos = of_properties props;
e42da880c61e more position information, e.g. relevant for errors in generated ML source;
wenzelm
parents: 58854
diff changeset
   298
    val pos' =
77772
7e0d920b4e6e tuned signature;
wenzelm
parents: 77771
diff changeset
   299
      make {line = Properties.get_int props Markup.end_lineN,
7e0d920b4e6e tuned signature;
wenzelm
parents: 77771
diff changeset
   300
        offset = Properties.get_int props Markup.end_offsetN,
58978
e42da880c61e more position information, e.g. relevant for errors in generated ML source;
wenzelm
parents: 58854
diff changeset
   301
        end_offset = 0,
e42da880c61e more position information, e.g. relevant for errors in generated ML source;
wenzelm
parents: 58854
diff changeset
   302
        props = props};
e42da880c61e more position information, e.g. relevant for errors in generated ML source;
wenzelm
parents: 58854
diff changeset
   303
  in (pos, pos') end;
e42da880c61e more position information, e.g. relevant for errors in generated ML source;
wenzelm
parents: 58854
diff changeset
   304
e42da880c61e more position information, e.g. relevant for errors in generated ML source;
wenzelm
parents: 58854
diff changeset
   305
fun properties_of_range (pos, pos') =
74181
wenzelm
parents: 74180
diff changeset
   306
  properties_of pos @ int_entry Markup.end_lineN (the_default 0 (line_of pos'));
58978
e42da880c61e more position information, e.g. relevant for errors in generated ML source;
wenzelm
parents: 58854
diff changeset
   307
27764
e0ee3cc240fe advance: single argument (again);
wenzelm
parents: 27759
diff changeset
   308
e0ee3cc240fe advance: single argument (again);
wenzelm
parents: 27759
diff changeset
   309
(* thread data *)
e0ee3cc240fe advance: single argument (again);
wenzelm
parents: 27759
diff changeset
   310
62940
a03592aafadf tuned -- avoid recoding properties;
wenzelm
parents: 62929
diff changeset
   311
val thread_data = make o Thread_Position.get;
a03592aafadf tuned -- avoid recoding properties;
wenzelm
parents: 62929
diff changeset
   312
fun setmp_thread_data pos = Thread_Position.setmp (dest pos);
27764
e0ee3cc240fe advance: single argument (again);
wenzelm
parents: 27759
diff changeset
   313
33097
9d501e11084a maintain position of formal entities via name space;
wenzelm
parents: 32573
diff changeset
   314
fun default pos =
49528
789b73fcca72 report proper binding positions only -- avoid swamping document model with unspecific information;
wenzelm
parents: 48992
diff changeset
   315
  if pos = none then (false, thread_data ())
789b73fcca72 report proper binding positions only -- avoid swamping document model with unspecific information;
wenzelm
parents: 48992
diff changeset
   316
  else (true, pos);
33097
9d501e11084a maintain position of formal entities via name space;
wenzelm
parents: 32573
diff changeset
   317
27764
e0ee3cc240fe advance: single argument (again);
wenzelm
parents: 27759
diff changeset
   318
end;