| author | wenzelm | 
| Wed, 26 May 2021 18:07:49 +0200 | |
| changeset 73787 | 493b1ae188da | 
| parent 72707 | f1380c9f3806 | 
| child 73864 | ac5a72740f3a | 
| permissions | -rw-r--r-- | 
| 6118 | 1 | (* Title: Pure/General/position.ML | 
| 5010 | 2 | Author: Markus Wenzel, TU Muenchen | 
| 3 | ||
| 29307 | 4 | Source positions: counting Isabelle symbols, starting from 1. | 
| 5010 | 5 | *) | 
| 6 | ||
| 7 | signature POSITION = | |
| 8 | sig | |
| 41484 | 9 | eqtype T | 
| 71465 
910a081cca74
more position information for oracles (e.g. "skip_proof" for 'sorry'), requires Proofterm.proofs := 1;
 wenzelm parents: 
70498diff
changeset | 10 | val ord: T ord | 
| 62940 | 11 | val make: Thread_Position.T -> T | 
| 12 | val dest: T -> Thread_Position.T | |
| 23673 | 13 | val line_of: T -> int option | 
| 27795 | 14 | val offset_of: T -> int option | 
| 41484 | 15 | val end_offset_of: T -> int option | 
| 23673 | 16 | val file_of: T -> string option | 
| 27796 | 17 | val advance: Symbol.symbol -> T -> T | 
| 68183 
6560324b1e4d
adjust position according to offset of command/exec id;
 wenzelm parents: 
68177diff
changeset | 18 | val advance_offsets: int -> T -> T | 
| 68177 | 19 | val distance_of: T * T -> int option | 
| 5010 | 20 | val none: T | 
| 27777 | 21 | val start: T | 
| 31435 | 22 | val file_name: string -> Properties.T | 
| 44200 | 23 | val file_only: string -> T | 
| 27777 | 24 | val file: string -> T | 
| 56437 | 25 | val line_file_only: int -> string -> T | 
| 26 | val line_file: int -> string -> T | |
| 5010 | 27 | val line: int -> T | 
| 67280 
dfc5a1503916
clarified default position for empty message pos;
 wenzelm parents: 
64556diff
changeset | 28 | val get_props: T -> Properties.T | 
| 29307 | 29 | val id: string -> T | 
| 32573 | 30 | val id_only: string -> T | 
| 27426 | 31 | val get_id: T -> string option | 
| 32 | val put_id: string -> T -> T | |
| 68858 | 33 | val copy_id: T -> T -> T | 
| 68829 | 34 | 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: 
50254diff
changeset | 35 | val parse_id: T -> int option | 
| 68183 
6560324b1e4d
adjust position according to offset of command/exec id;
 wenzelm parents: 
68177diff
changeset | 36 | val adjust_offsets: (int -> int option) -> T -> T | 
| 28017 | 37 | val of_properties: Properties.T -> T | 
| 38 | val properties_of: T -> Properties.T | |
| 68172 | 39 | val offset_properties_of: T -> Properties.T | 
| 42327 
7c7cc7590eb3
Name_Space.entry_markup: keep def position as separate properties;
 wenzelm parents: 
42204diff
changeset | 40 | val def_properties_of: T -> Properties.T | 
| 71910 | 41 | val entity_markup: string -> string * T -> Markup.T | 
| 45412 | 42 | val entity_properties_of: bool -> serial -> T -> Properties.T | 
| 39440 
4c2547af5909
simplified/clarified (Context_)Position.markup/reported_text;
 wenzelm parents: 
38887diff
changeset | 43 | val markup: T -> Markup.T -> Markup.T | 
| 41504 | 44 | val is_reported: T -> bool | 
| 56459 
38d0b2099743
no report for position singularity, notably for aux. file, especially empty one;
 wenzelm parents: 
56437diff
changeset | 45 | val is_reported_range: T -> bool | 
| 39507 
839873937ddd
tuned signature of (Context_)Position.report variants;
 wenzelm parents: 
39440diff
changeset | 46 | val reported_text: T -> Markup.T -> string -> string | 
| 
839873937ddd
tuned signature of (Context_)Position.report variants;
 wenzelm parents: 
39440diff
changeset | 47 | val report_text: T -> Markup.T -> string -> unit | 
| 
839873937ddd
tuned signature of (Context_)Position.report variants;
 wenzelm parents: 
39440diff
changeset | 48 | val report: T -> Markup.T -> unit | 
| 44736 | 49 | type report = T * Markup.T | 
| 48767 | 50 | type report_text = report * string | 
| 51 | val reports_text: report_text list -> unit | |
| 44736 | 52 | val reports: report list -> unit | 
| 55922 
710bc66f432c
more markup for inner syntax class/type names (notably for completion);
 wenzelm parents: 
55624diff
changeset | 53 | val store_reports: report_text list Unsynchronized.ref -> | 
| 
710bc66f432c
more markup for inner syntax class/type names (notably for completion);
 wenzelm parents: 
55624diff
changeset | 54 |     T list -> ('a -> Markup.T list) -> 'a -> unit
 | 
| 55959 
c3b458435f4f
more decisive commitment to get_free vs. the_const;
 wenzelm parents: 
55922diff
changeset | 55 | 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: 
70498diff
changeset | 56 | val here_strs: T -> string * string | 
| 48992 | 57 | val here: T -> string | 
| 49691 | 58 | val here_list: T list -> string | 
| 27764 | 59 | type range = T * T | 
| 27796 | 60 | val no_range: range | 
| 62800 | 61 | val no_range_position: T -> T | 
| 62797 | 62 | val range_position: range -> T | 
| 63 | val range: T * T -> range | |
| 58978 
e42da880c61e
more position information, e.g. relevant for errors in generated ML source;
 wenzelm parents: 
58854diff
changeset | 64 | val range_of_properties: Properties.T -> range | 
| 
e42da880c61e
more position information, e.g. relevant for errors in generated ML source;
 wenzelm parents: 
58854diff
changeset | 65 | val properties_of_range: range -> Properties.T | 
| 25817 | 66 | val thread_data: unit -> T | 
| 67 |   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: 
48992diff
changeset | 68 | val default: T -> bool * T | 
| 5010 | 69 | end; | 
| 70 | ||
| 71 | structure Position: POSITION = | |
| 72 | struct | |
| 73 | ||
| 74 | (* datatype position *) | |
| 75 | ||
| 43710 
7270ae921cf2
discontinued odd Position.column -- left-over from attempts at PGIP implementation;
 wenzelm parents: 
42818diff
changeset | 76 | datatype T = Pos of (int * int * int) * Properties.T; | 
| 41484 | 77 | |
| 71465 
910a081cca74
more position information for oracles (e.g. "skip_proof" for 'sorry'), requires Proofterm.proofs := 1;
 wenzelm parents: 
70498diff
changeset | 78 | fun ord (pos1 as Pos ((i, j, k), props), pos2 as Pos ((i', j', k'), props')) = | 
| 
910a081cca74
more position information for oracles (e.g. "skip_proof" for 'sorry'), requires Proofterm.proofs := 1;
 wenzelm parents: 
70498diff
changeset | 79 | if pointer_eq (pos1, pos2) then EQUAL | 
| 
910a081cca74
more position information for oracles (e.g. "skip_proof" for 'sorry'), requires Proofterm.proofs := 1;
 wenzelm parents: 
70498diff
changeset | 80 | else | 
| 
910a081cca74
more position information for oracles (e.g. "skip_proof" for 'sorry'), requires Proofterm.proofs := 1;
 wenzelm parents: 
70498diff
changeset | 81 | (case int_ord (i, i') of | 
| 
910a081cca74
more position information for oracles (e.g. "skip_proof" for 'sorry'), requires Proofterm.proofs := 1;
 wenzelm parents: 
70498diff
changeset | 82 | EQUAL => | 
| 
910a081cca74
more position information for oracles (e.g. "skip_proof" for 'sorry'), requires Proofterm.proofs := 1;
 wenzelm parents: 
70498diff
changeset | 83 | (case int_ord (j, j') of | 
| 
910a081cca74
more position information for oracles (e.g. "skip_proof" for 'sorry'), requires Proofterm.proofs := 1;
 wenzelm parents: 
70498diff
changeset | 84 | EQUAL => | 
| 
910a081cca74
more position information for oracles (e.g. "skip_proof" for 'sorry'), requires Proofterm.proofs := 1;
 wenzelm parents: 
70498diff
changeset | 85 | (case int_ord (k, k') of | 
| 
910a081cca74
more position information for oracles (e.g. "skip_proof" for 'sorry'), requires Proofterm.proofs := 1;
 wenzelm parents: 
70498diff
changeset | 86 | EQUAL => Properties.ord (props, props') | 
| 
910a081cca74
more position information for oracles (e.g. "skip_proof" for 'sorry'), requires Proofterm.proofs := 1;
 wenzelm parents: 
70498diff
changeset | 87 | | ord => ord) | 
| 
910a081cca74
more position information for oracles (e.g. "skip_proof" for 'sorry'), requires Proofterm.proofs := 1;
 wenzelm parents: 
70498diff
changeset | 88 | | ord => ord) | 
| 
910a081cca74
more position information for oracles (e.g. "skip_proof" for 'sorry'), requires Proofterm.proofs := 1;
 wenzelm parents: 
70498diff
changeset | 89 | | ord => ord); | 
| 
910a081cca74
more position information for oracles (e.g. "skip_proof" for 'sorry'), requires Proofterm.proofs := 1;
 wenzelm parents: 
70498diff
changeset | 90 | |
| 41484 | 91 | fun norm_props (props: Properties.T) = | 
| 45666 | 92 | maps (fn a => the_list (find_first (fn (b, _) => a = b) props)) | 
| 72707 | 93 | [Markup.fileN, Markup.idN]; | 
| 41484 | 94 | |
| 43710 
7270ae921cf2
discontinued odd Position.column -- left-over from attempts at PGIP implementation;
 wenzelm parents: 
42818diff
changeset | 95 | fun make {line = i, offset = j, end_offset = k, props} = Pos ((i, j, k), norm_props props);
 | 
| 
7270ae921cf2
discontinued odd Position.column -- left-over from attempts at PGIP implementation;
 wenzelm parents: 
42818diff
changeset | 96 | fun dest (Pos ((i, j, k), props)) = {line = i, offset = j, end_offset = k, props = props};
 | 
| 27777 | 97 | |
| 27795 | 98 | fun valid (i: int) = i > 0; | 
| 99 | fun if_valid i i' = if valid i then i' else i; | |
| 100 | ||
| 27777 | 101 | |
| 27796 | 102 | (* fields *) | 
| 103 | ||
| 43710 
7270ae921cf2
discontinued odd Position.column -- left-over from attempts at PGIP implementation;
 wenzelm parents: 
42818diff
changeset | 104 | fun line_of (Pos ((i, _, _), _)) = if valid i then SOME i else NONE; | 
| 
7270ae921cf2
discontinued odd Position.column -- left-over from attempts at PGIP implementation;
 wenzelm parents: 
42818diff
changeset | 105 | fun offset_of (Pos ((_, j, _), _)) = if valid j then SOME j else NONE; | 
| 
7270ae921cf2
discontinued odd Position.column -- left-over from attempts at PGIP implementation;
 wenzelm parents: 
42818diff
changeset | 106 | fun end_offset_of (Pos ((_, _, k), _)) = if valid k then SOME k else NONE; | 
| 27796 | 107 | |
| 50201 
c26369c9eda6
Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
 wenzelm parents: 
49691diff
changeset | 108 | fun file_of (Pos (_, props)) = Properties.get props Markup.fileN; | 
| 27796 | 109 | |
| 110 | ||
| 27777 | 111 | (* advance *) | 
| 26003 | 112 | |
| 43710 
7270ae921cf2
discontinued odd Position.column -- left-over from attempts at PGIP implementation;
 wenzelm parents: 
42818diff
changeset | 113 | fun advance_count "\n" (i: int, j: int, k: int) = | 
| 
7270ae921cf2
discontinued odd Position.column -- left-over from attempts at PGIP implementation;
 wenzelm parents: 
42818diff
changeset | 114 | (if_valid i (i + 1), if_valid j (j + 1), k) | 
| 
7270ae921cf2
discontinued odd Position.column -- left-over from attempts at PGIP implementation;
 wenzelm parents: 
42818diff
changeset | 115 | | advance_count s (i, j, k) = | 
| 58854 | 116 | if Symbol.not_eof s then (i, if_valid j (j + 1), k) | 
| 43710 
7270ae921cf2
discontinued odd Position.column -- left-over from attempts at PGIP implementation;
 wenzelm parents: 
42818diff
changeset | 117 | else (i, j, k); | 
| 5010 | 118 | |
| 43710 
7270ae921cf2
discontinued odd Position.column -- left-over from attempts at PGIP implementation;
 wenzelm parents: 
42818diff
changeset | 119 | fun invalid_count (i, j, _: int) = | 
| 
7270ae921cf2
discontinued odd Position.column -- left-over from attempts at PGIP implementation;
 wenzelm parents: 
42818diff
changeset | 120 | not (valid i orelse valid j); | 
| 27795 | 121 | |
| 122 | fun advance sym (pos as (Pos (count, props))) = | |
| 123 | if invalid_count count then pos else Pos (advance_count sym count, props); | |
| 27777 | 124 | |
| 68183 
6560324b1e4d
adjust position according to offset of command/exec id;
 wenzelm parents: 
68177diff
changeset | 125 | fun advance_offsets offset (pos as (Pos (count as (i, j, k), props))) = | 
| 
6560324b1e4d
adjust position according to offset of command/exec id;
 wenzelm parents: 
68177diff
changeset | 126 | if offset = 0 orelse invalid_count count then pos | 
| 
6560324b1e4d
adjust position according to offset of command/exec id;
 wenzelm parents: 
68177diff
changeset | 127 | else if offset < 0 then raise Fail "Illegal offset" | 
| 59085 
08a6901eb035
clarified define_command: send tokens more directly, without requiring keywords in ML;
 wenzelm parents: 
58978diff
changeset | 128 | else if valid i then raise Fail "Illegal line position" | 
| 68183 
6560324b1e4d
adjust position according to offset of command/exec id;
 wenzelm parents: 
68177diff
changeset | 129 | else Pos ((i, if_valid j (j + offset), if_valid k (k + offset)), props); | 
| 59085 
08a6901eb035
clarified define_command: send tokens more directly, without requiring keywords in ML;
 wenzelm parents: 
58978diff
changeset | 130 | |
| 27777 | 131 | |
| 27796 | 132 | (* distance of adjacent positions *) | 
| 27777 | 133 | |
| 68177 | 134 | fun distance_of (Pos ((_, j, _), _), Pos ((_, j', _), _)) = | 
| 135 | if valid j andalso valid j' then SOME (j' - j) else NONE; | |
| 26882 | 136 | |
| 5010 | 137 | |
| 27777 | 138 | (* make position *) | 
| 139 | ||
| 43710 
7270ae921cf2
discontinued odd Position.column -- left-over from attempts at PGIP implementation;
 wenzelm parents: 
42818diff
changeset | 140 | val none = Pos ((0, 0, 0), []); | 
| 
7270ae921cf2
discontinued odd Position.column -- left-over from attempts at PGIP implementation;
 wenzelm parents: 
42818diff
changeset | 141 | val start = Pos ((1, 1, 0), []); | 
| 27744 | 142 | |
| 29307 | 143 | |
| 27796 | 144 | fun file_name "" = [] | 
| 50201 
c26369c9eda6
Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
 wenzelm parents: 
49691diff
changeset | 145 | | file_name name = [(Markup.fileN, name)]; | 
| 27796 | 146 | |
| 44200 | 147 | fun file_only name = Pos ((0, 0, 0), file_name name); | 
| 43710 
7270ae921cf2
discontinued odd Position.column -- left-over from attempts at PGIP implementation;
 wenzelm parents: 
42818diff
changeset | 148 | fun file name = Pos ((1, 1, 0), file_name name); | 
| 27744 | 149 | |
| 56437 | 150 | fun line_file_only i name = Pos ((i, 0, 0), file_name name); | 
| 43710 
7270ae921cf2
discontinued odd Position.column -- left-over from attempts at PGIP implementation;
 wenzelm parents: 
42818diff
changeset | 151 | fun line_file i name = Pos ((i, 1, 0), file_name name); | 
| 27795 | 152 | fun line i = line_file i ""; | 
| 5010 | 153 | |
| 67280 
dfc5a1503916
clarified default position for empty message pos;
 wenzelm parents: 
64556diff
changeset | 154 | fun get_props (Pos (_, props)) = props; | 
| 
dfc5a1503916
clarified default position for empty message pos;
 wenzelm parents: 
64556diff
changeset | 155 | |
| 50201 
c26369c9eda6
Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
 wenzelm parents: 
49691diff
changeset | 156 | fun id id = Pos ((0, 1, 0), [(Markup.idN, id)]); | 
| 
c26369c9eda6
Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
 wenzelm parents: 
49691diff
changeset | 157 | fun id_only id = Pos ((0, 0, 0), [(Markup.idN, id)]); | 
| 22158 | 158 | |
| 50201 
c26369c9eda6
Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
 wenzelm parents: 
49691diff
changeset | 159 | fun get_id (Pos (_, props)) = Properties.get props Markup.idN; | 
| 62750 | 160 | fun put_id id (Pos (count, props)) = Pos (count, norm_props (Properties.put (Markup.idN, id) props)); | 
| 68858 | 161 | fun copy_id pos = (case get_id pos of NONE => I | SOME id => put_id id); | 
| 27426 | 162 | |
| 63806 | 163 | fun parse_id pos = Option.map Value.parse_int (get_id pos); | 
| 50911 
ee7fe4230642
more explicit treatment of (optional) exception properties, notably for "serial" -- avoid conflict with startPosition = offset;
 wenzelm parents: 
50254diff
changeset | 164 | |
| 68829 | 165 | fun id_properties_of pos = | 
| 166 | (case get_id pos of | |
| 167 | SOME id => [(Markup.idN, id)] | |
| 168 | | NONE => []); | |
| 29307 | 169 | |
| 68183 
6560324b1e4d
adjust position according to offset of command/exec id;
 wenzelm parents: 
68177diff
changeset | 170 | fun adjust_offsets adjust (pos as Pos (_, props)) = | 
| 68858 | 171 | if is_none (file_of pos) then | 
| 172 | (case parse_id pos of | |
| 173 | SOME id => | |
| 174 | (case adjust id of | |
| 175 | SOME offset => | |
| 176 | let val Pos (count, _) = advance_offsets offset pos | |
| 177 | in Pos (count, Properties.remove Markup.idN props) end | |
| 178 | | NONE => pos) | |
| 179 | | NONE => pos) | |
| 180 | else pos; | |
| 68183 
6560324b1e4d
adjust position according to offset of command/exec id;
 wenzelm parents: 
68177diff
changeset | 181 | |
| 
6560324b1e4d
adjust position according to offset of command/exec id;
 wenzelm parents: 
68177diff
changeset | 182 | |
| 29307 | 183 | (* markup properties *) | 
| 184 | ||
| 58978 
e42da880c61e
more position information, e.g. relevant for errors in generated ML source;
 wenzelm parents: 
58854diff
changeset | 185 | fun get props name = | 
| 
e42da880c61e
more position information, e.g. relevant for errors in generated ML source;
 wenzelm parents: 
58854diff
changeset | 186 | (case Properties.get props name of | 
| 
e42da880c61e
more position information, e.g. relevant for errors in generated ML source;
 wenzelm parents: 
58854diff
changeset | 187 | NONE => 0 | 
| 63806 | 188 | | SOME s => Value.parse_int s); | 
| 58978 
e42da880c61e
more position information, e.g. relevant for errors in generated ML source;
 wenzelm parents: 
58854diff
changeset | 189 | |
| 25817 | 190 | fun of_properties props = | 
| 58978 
e42da880c61e
more position information, e.g. relevant for errors in generated ML source;
 wenzelm parents: 
58854diff
changeset | 191 |   make {line = get props Markup.lineN,
 | 
| 
e42da880c61e
more position information, e.g. relevant for errors in generated ML source;
 wenzelm parents: 
58854diff
changeset | 192 | offset = get props Markup.offsetN, | 
| 
e42da880c61e
more position information, e.g. relevant for errors in generated ML source;
 wenzelm parents: 
58854diff
changeset | 193 | end_offset = get props Markup.end_offsetN, | 
| 
e42da880c61e
more position information, e.g. relevant for errors in generated ML source;
 wenzelm parents: 
58854diff
changeset | 194 | props = props}; | 
| 26003 | 195 | |
| 63806 | 196 | fun value k i = if valid i then [(k, Value.print_int i)] else []; | 
| 41484 | 197 | |
| 43710 
7270ae921cf2
discontinued odd Position.column -- left-over from attempts at PGIP implementation;
 wenzelm parents: 
42818diff
changeset | 198 | fun properties_of (Pos ((i, j, k), props)) = | 
| 50201 
c26369c9eda6
Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
 wenzelm parents: 
49691diff
changeset | 199 | value Markup.lineN i @ value Markup.offsetN j @ value Markup.end_offsetN k @ props; | 
| 26003 | 200 | |
| 68172 | 201 | fun offset_properties_of (Pos ((_, j, k), _)) = | 
| 202 | value Markup.offsetN j @ value Markup.end_offsetN k; | |
| 203 | ||
| 54038 | 204 | val def_properties_of = properties_of #> map (fn (x, y) => ("def_" ^ x, y));
 | 
| 42327 
7c7cc7590eb3
Name_Space.entry_markup: keep def position as separate properties;
 wenzelm parents: 
42204diff
changeset | 205 | |
| 71910 | 206 | fun entity_markup kind (name, pos) = | 
| 207 | Markup.entity kind name |> Markup.properties (def_properties_of pos); | |
| 208 | ||
| 57899 
5867d1306712
clarified signature: entity serial number is not position id;
 wenzelm parents: 
56532diff
changeset | 209 | fun entity_properties_of def serial pos = | 
| 63806 | 210 | if def then (Markup.defN, Value.print_int serial) :: properties_of pos | 
| 211 | else (Markup.refN, Value.print_int serial) :: def_properties_of pos; | |
| 45412 | 212 | |
| 39440 
4c2547af5909
simplified/clarified (Context_)Position.markup/reported_text;
 wenzelm parents: 
38887diff
changeset | 213 | val markup = Markup.properties o properties_of; | 
| 
4c2547af5909
simplified/clarified (Context_)Position.markup/reported_text;
 wenzelm parents: 
38887diff
changeset | 214 | |
| 
4c2547af5909
simplified/clarified (Context_)Position.markup/reported_text;
 wenzelm parents: 
38887diff
changeset | 215 | |
| 
4c2547af5909
simplified/clarified (Context_)Position.markup/reported_text;
 wenzelm parents: 
38887diff
changeset | 216 | (* 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: 
38236diff
changeset | 217 | |
| 41504 | 218 | fun is_reported pos = is_some (offset_of pos) andalso is_some (get_id pos); | 
| 56459 
38d0b2099743
no report for position singularity, notably for aux. file, especially empty one;
 wenzelm parents: 
56437diff
changeset | 219 | 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: 
29307diff
changeset | 220 | |
| 41504 | 221 | 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: 
55959diff
changeset | 222 | fun report_text pos markup txt = Output.report [reported_text pos markup txt]; | 
| 39507 
839873937ddd
tuned signature of (Context_)Position.report variants;
 wenzelm parents: 
39440diff
changeset | 223 | fun report pos markup = report_text pos markup ""; | 
| 27764 | 224 | |
| 44736 | 225 | type report = T * Markup.T; | 
| 48767 | 226 | type report_text = report * string; | 
| 44736 | 227 | |
| 48767 | 228 | val reports_text = | 
| 229 | 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: 
55959diff
changeset | 230 | #> Output.report; | 
| 42204 | 231 | |
| 48767 | 232 | val reports = map (rpair "") #> reports_text; | 
| 233 | ||
| 44735 | 234 | fun store_reports _ [] _ _ = () | 
| 55922 
710bc66f432c
more markup for inner syntax class/type names (notably for completion);
 wenzelm parents: 
55624diff
changeset | 235 | | store_reports (r: report_text list Unsynchronized.ref) ps markup x = | 
| 42204 | 236 | let val ms = markup x | 
| 55922 
710bc66f432c
more markup for inner syntax class/type names (notably for completion);
 wenzelm parents: 
55624diff
changeset | 237 | in Unsynchronized.change r (fold (fn p => fold (fn m => cons ((p, m), "")) ms) ps) end; | 
| 42204 | 238 | |
| 55959 
c3b458435f4f
more decisive commitment to get_free vs. the_const;
 wenzelm parents: 
55922diff
changeset | 239 | fun append_reports (r: report_text list Unsynchronized.ref) reports = | 
| 
c3b458435f4f
more decisive commitment to get_free vs. the_const;
 wenzelm parents: 
55922diff
changeset | 240 | Unsynchronized.change r (append (map (rpair "") reports)); | 
| 
c3b458435f4f
more decisive commitment to get_free vs. the_const;
 wenzelm parents: 
55922diff
changeset | 241 | |
| 25817 | 242 | |
| 56532 
3da244bc02bd
tuned message, to accommodate extra brackets produced by Scala parsers;
 wenzelm parents: 
56459diff
changeset | 243 | (* here: user output *) | 
| 26003 | 244 | |
| 71465 
910a081cca74
more position information for oracles (e.g. "skip_proof" for 'sorry'), requires Proofterm.proofs := 1;
 wenzelm parents: 
70498diff
changeset | 245 | fun here_strs pos = | 
| 
910a081cca74
more position information for oracles (e.g. "skip_proof" for 'sorry'), requires Proofterm.proofs := 1;
 wenzelm parents: 
70498diff
changeset | 246 | (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: 
70498diff
changeset | 247 |     (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: 
70498diff
changeset | 248 |   | (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: 
70498diff
changeset | 249 |   | (NONE, SOME name) => (" ", "(file " ^ quote name ^ ")")
 | 
| 
910a081cca74
more position information for oracles (e.g. "skip_proof" for 'sorry'), requires Proofterm.proofs := 1;
 wenzelm parents: 
70498diff
changeset | 250 |   | _ => 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: 
70498diff
changeset | 251 | |
| 48992 | 252 | fun here pos = | 
| 26003 | 253 | let | 
| 254 | val props = properties_of pos; | |
| 71465 
910a081cca74
more position information for oracles (e.g. "skip_proof" for 'sorry'), requires Proofterm.proofs := 1;
 wenzelm parents: 
70498diff
changeset | 255 | val (s1, s2) = here_strs pos; | 
| 26003 | 256 | in | 
| 69348 | 257 | if s2 = "" then "" | 
| 55624 | 258 | else s1 ^ Markup.markup (Markup.properties props Markup.position) s2 | 
| 26003 | 259 | end; | 
| 25817 | 260 | |
| 70498 | 261 | val here_list = map here #> distinct (op =) #> implode; | 
| 49691 | 262 | |
| 23627 | 263 | |
| 27736 | 264 | (* range *) | 
| 265 | ||
| 266 | type range = T * T; | |
| 267 | ||
| 27796 | 268 | val no_range = (none, none); | 
| 269 | ||
| 62800 | 270 | fun no_range_position (Pos ((i, j, _), props)) = Pos ((i, j, 0), props); | 
| 62797 | 271 | fun range_position (Pos ((i, j, _), props), Pos ((_, j', _), _)) = Pos ((i, j, j'), props); | 
| 62800 | 272 | fun range (pos, pos') = (range_position (pos, pos'), no_range_position pos'); | 
| 27777 | 273 | |
| 58978 
e42da880c61e
more position information, e.g. relevant for errors in generated ML source;
 wenzelm parents: 
58854diff
changeset | 274 | fun range_of_properties props = | 
| 
e42da880c61e
more position information, e.g. relevant for errors in generated ML source;
 wenzelm parents: 
58854diff
changeset | 275 | let | 
| 
e42da880c61e
more position information, e.g. relevant for errors in generated ML source;
 wenzelm parents: 
58854diff
changeset | 276 | val pos = of_properties props; | 
| 
e42da880c61e
more position information, e.g. relevant for errors in generated ML source;
 wenzelm parents: 
58854diff
changeset | 277 | val pos' = | 
| 
e42da880c61e
more position information, e.g. relevant for errors in generated ML source;
 wenzelm parents: 
58854diff
changeset | 278 |       make {line = get props Markup.end_lineN,
 | 
| 
e42da880c61e
more position information, e.g. relevant for errors in generated ML source;
 wenzelm parents: 
58854diff
changeset | 279 | offset = get props Markup.end_offsetN, | 
| 
e42da880c61e
more position information, e.g. relevant for errors in generated ML source;
 wenzelm parents: 
58854diff
changeset | 280 | end_offset = 0, | 
| 
e42da880c61e
more position information, e.g. relevant for errors in generated ML source;
 wenzelm parents: 
58854diff
changeset | 281 | props = props}; | 
| 
e42da880c61e
more position information, e.g. relevant for errors in generated ML source;
 wenzelm parents: 
58854diff
changeset | 282 | in (pos, pos') end; | 
| 
e42da880c61e
more position information, e.g. relevant for errors in generated ML source;
 wenzelm parents: 
58854diff
changeset | 283 | |
| 
e42da880c61e
more position information, e.g. relevant for errors in generated ML source;
 wenzelm parents: 
58854diff
changeset | 284 | fun properties_of_range (pos, pos') = | 
| 
e42da880c61e
more position information, e.g. relevant for errors in generated ML source;
 wenzelm parents: 
58854diff
changeset | 285 | properties_of pos @ value Markup.end_lineN (the_default 0 (line_of pos')); | 
| 
e42da880c61e
more position information, e.g. relevant for errors in generated ML source;
 wenzelm parents: 
58854diff
changeset | 286 | |
| 27764 | 287 | |
| 288 | (* thread data *) | |
| 289 | ||
| 62940 | 290 | val thread_data = make o Thread_Position.get; | 
| 291 | fun setmp_thread_data pos = Thread_Position.setmp (dest pos); | |
| 27764 | 292 | |
| 33097 
9d501e11084a
maintain position of formal entities via name space;
 wenzelm parents: 
32573diff
changeset | 293 | fun default pos = | 
| 49528 
789b73fcca72
report proper binding positions only -- avoid swamping document model with unspecific information;
 wenzelm parents: 
48992diff
changeset | 294 | if pos = none then (false, thread_data ()) | 
| 
789b73fcca72
report proper binding positions only -- avoid swamping document model with unspecific information;
 wenzelm parents: 
48992diff
changeset | 295 | else (true, pos); | 
| 33097 
9d501e11084a
maintain position of formal entities via name space;
 wenzelm parents: 
32573diff
changeset | 296 | |
| 27764 | 297 | end; |