| author | wenzelm | 
| Thu, 03 Apr 2014 21:08:00 +0200 | |
| changeset 56394 | bbf4d512f395 | 
| parent 56333 | 38f1422ef473 | 
| child 56437 | b14bd153a753 | 
| 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 | 
| 43710 
7270ae921cf2
discontinued odd Position.column -- left-over from attempts at PGIP implementation;
 wenzelm parents: 
42818diff
changeset | 10 |   val make: {line: int, offset: int, end_offset: int, props: Properties.T} -> T
 | 
| 
7270ae921cf2
discontinued odd Position.column -- left-over from attempts at PGIP implementation;
 wenzelm parents: 
42818diff
changeset | 11 |   val dest: T -> {line: int, offset: int, end_offset: int, props: Properties.T}
 | 
| 23673 | 12 | val line_of: T -> int option | 
| 27795 | 13 | val offset_of: T -> int option | 
| 41484 | 14 | val end_offset_of: T -> int option | 
| 23673 | 15 | val file_of: T -> string option | 
| 27796 | 16 | val advance: Symbol.symbol -> T -> T | 
| 17 | val distance_of: T -> T -> int | |
| 5010 | 18 | val none: T | 
| 27777 | 19 | val start: T | 
| 31435 | 20 | val file_name: string -> Properties.T | 
| 44200 | 21 | val file_only: string -> T | 
| 27777 | 22 | val file: string -> T | 
| 5010 | 23 | val line: int -> T | 
| 27777 | 24 | val line_file: int -> string -> T | 
| 29307 | 25 | val id: string -> T | 
| 32573 | 26 | val id_only: string -> T | 
| 27426 | 27 | val get_id: T -> string option | 
| 28 | val put_id: string -> T -> T | |
| 50911 
ee7fe4230642
more explicit treatment of (optional) exception properties, notably for "serial" -- avoid conflict with startPosition = offset;
 wenzelm parents: 
50254diff
changeset | 29 | val parse_id: T -> int option | 
| 28017 | 30 | val of_properties: Properties.T -> T | 
| 31 | val properties_of: T -> Properties.T | |
| 42327 
7c7cc7590eb3
Name_Space.entry_markup: keep def position as separate properties;
 wenzelm parents: 
42204diff
changeset | 32 | val def_properties_of: T -> Properties.T | 
| 45412 | 33 | val entity_properties_of: bool -> serial -> T -> Properties.T | 
| 28017 | 34 | val default_properties: T -> Properties.T -> Properties.T | 
| 39440 
4c2547af5909
simplified/clarified (Context_)Position.markup/reported_text;
 wenzelm parents: 
38887diff
changeset | 35 | val markup: T -> Markup.T -> Markup.T | 
| 41504 | 36 | val is_reported: T -> bool | 
| 39507 
839873937ddd
tuned signature of (Context_)Position.report variants;
 wenzelm parents: 
39440diff
changeset | 37 | val reported_text: T -> Markup.T -> string -> string | 
| 
839873937ddd
tuned signature of (Context_)Position.report variants;
 wenzelm parents: 
39440diff
changeset | 38 | val report_text: T -> Markup.T -> string -> unit | 
| 
839873937ddd
tuned signature of (Context_)Position.report variants;
 wenzelm parents: 
39440diff
changeset | 39 | val report: T -> Markup.T -> unit | 
| 44736 | 40 | type report = T * Markup.T | 
| 48767 | 41 | type report_text = report * string | 
| 42 | val reports_text: report_text list -> unit | |
| 44736 | 43 | val reports: report list -> unit | 
| 55922 
710bc66f432c
more markup for inner syntax class/type names (notably for completion);
 wenzelm parents: 
55624diff
changeset | 44 | val store_reports: report_text list Unsynchronized.ref -> | 
| 
710bc66f432c
more markup for inner syntax class/type names (notably for completion);
 wenzelm parents: 
55624diff
changeset | 45 |     T list -> ('a -> Markup.T list) -> 'a -> unit
 | 
| 55959 
c3b458435f4f
more decisive commitment to get_free vs. the_const;
 wenzelm parents: 
55922diff
changeset | 46 | val append_reports: report_text list Unsynchronized.ref -> report list -> unit | 
| 48992 | 47 | val here: T -> string | 
| 49691 | 48 | val here_list: T list -> string | 
| 27764 | 49 | type range = T * T | 
| 27796 | 50 | val no_range: range | 
| 41484 | 51 | val set_range: range -> T | 
| 27777 | 52 | val reset_range: T -> T | 
| 27764 | 53 | val range: T -> T -> range | 
| 25817 | 54 | val thread_data: unit -> T | 
| 55 |   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 | 56 | val default: T -> bool * T | 
| 5010 | 57 | end; | 
| 58 | ||
| 59 | structure Position: POSITION = | |
| 60 | struct | |
| 61 | ||
| 62 | (* datatype position *) | |
| 63 | ||
| 43710 
7270ae921cf2
discontinued odd Position.column -- left-over from attempts at PGIP implementation;
 wenzelm parents: 
42818diff
changeset | 64 | datatype T = Pos of (int * int * int) * Properties.T; | 
| 41484 | 65 | |
| 66 | fun norm_props (props: Properties.T) = | |
| 45666 | 67 | maps (fn a => the_list (find_first (fn (b, _) => a = b) props)) | 
| 50201 
c26369c9eda6
Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
 wenzelm parents: 
49691diff
changeset | 68 | Markup.position_properties'; | 
| 41484 | 69 | |
| 43710 
7270ae921cf2
discontinued odd Position.column -- left-over from attempts at PGIP implementation;
 wenzelm parents: 
42818diff
changeset | 70 | 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 | 71 | fun dest (Pos ((i, j, k), props)) = {line = i, offset = j, end_offset = k, props = props};
 | 
| 27777 | 72 | |
| 27795 | 73 | fun valid (i: int) = i > 0; | 
| 74 | fun if_valid i i' = if valid i then i' else i; | |
| 75 | ||
| 27777 | 76 | |
| 27796 | 77 | (* fields *) | 
| 78 | ||
| 43710 
7270ae921cf2
discontinued odd Position.column -- left-over from attempts at PGIP implementation;
 wenzelm parents: 
42818diff
changeset | 79 | 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 | 80 | 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 | 81 | fun end_offset_of (Pos ((_, _, k), _)) = if valid k then SOME k else NONE; | 
| 27796 | 82 | |
| 50201 
c26369c9eda6
Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
 wenzelm parents: 
49691diff
changeset | 83 | fun file_of (Pos (_, props)) = Properties.get props Markup.fileN; | 
| 27796 | 84 | |
| 85 | ||
| 27777 | 86 | (* advance *) | 
| 26003 | 87 | |
| 43710 
7270ae921cf2
discontinued odd Position.column -- left-over from attempts at PGIP implementation;
 wenzelm parents: 
42818diff
changeset | 88 | 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 | 89 | (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 | 90 | | advance_count s (i, j, k) = | 
| 
7270ae921cf2
discontinued odd Position.column -- left-over from attempts at PGIP implementation;
 wenzelm parents: 
42818diff
changeset | 91 | if Symbol.is_regular s then (i, if_valid j (j + 1), k) | 
| 
7270ae921cf2
discontinued odd Position.column -- left-over from attempts at PGIP implementation;
 wenzelm parents: 
42818diff
changeset | 92 | else (i, j, k); | 
| 5010 | 93 | |
| 43710 
7270ae921cf2
discontinued odd Position.column -- left-over from attempts at PGIP implementation;
 wenzelm parents: 
42818diff
changeset | 94 | fun invalid_count (i, j, _: int) = | 
| 
7270ae921cf2
discontinued odd Position.column -- left-over from attempts at PGIP implementation;
 wenzelm parents: 
42818diff
changeset | 95 | not (valid i orelse valid j); | 
| 27795 | 96 | |
| 97 | fun advance sym (pos as (Pos (count, props))) = | |
| 98 | if invalid_count count then pos else Pos (advance_count sym count, props); | |
| 27777 | 99 | |
| 100 | ||
| 27796 | 101 | (* distance of adjacent positions *) | 
| 27777 | 102 | |
| 43710 
7270ae921cf2
discontinued odd Position.column -- left-over from attempts at PGIP implementation;
 wenzelm parents: 
42818diff
changeset | 103 | fun distance_of (Pos ((_, j, _), _)) (Pos ((_, j', _), _)) = | 
| 27796 | 104 | if valid j andalso valid j' then j' - j | 
| 105 | else 0; | |
| 26882 | 106 | |
| 5010 | 107 | |
| 27777 | 108 | (* make position *) | 
| 109 | ||
| 43710 
7270ae921cf2
discontinued odd Position.column -- left-over from attempts at PGIP implementation;
 wenzelm parents: 
42818diff
changeset | 110 | val none = Pos ((0, 0, 0), []); | 
| 
7270ae921cf2
discontinued odd Position.column -- left-over from attempts at PGIP implementation;
 wenzelm parents: 
42818diff
changeset | 111 | val start = Pos ((1, 1, 0), []); | 
| 27744 | 112 | |
| 29307 | 113 | |
| 27796 | 114 | fun file_name "" = [] | 
| 50201 
c26369c9eda6
Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
 wenzelm parents: 
49691diff
changeset | 115 | | file_name name = [(Markup.fileN, name)]; | 
| 27796 | 116 | |
| 44200 | 117 | 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 | 118 | fun file name = Pos ((1, 1, 0), file_name name); | 
| 27744 | 119 | |
| 43710 
7270ae921cf2
discontinued odd Position.column -- left-over from attempts at PGIP implementation;
 wenzelm parents: 
42818diff
changeset | 120 | fun line_file i name = Pos ((i, 1, 0), file_name name); | 
| 27795 | 121 | fun line i = line_file i ""; | 
| 5010 | 122 | |
| 50201 
c26369c9eda6
Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
 wenzelm parents: 
49691diff
changeset | 123 | 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 | 124 | fun id_only id = Pos ((0, 0, 0), [(Markup.idN, id)]); | 
| 22158 | 125 | |
| 50201 
c26369c9eda6
Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
 wenzelm parents: 
49691diff
changeset | 126 | fun get_id (Pos (_, props)) = Properties.get props Markup.idN; | 
| 
c26369c9eda6
Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
 wenzelm parents: 
49691diff
changeset | 127 | fun put_id id (Pos (count, props)) = Pos (count, Properties.put (Markup.idN, id) props); | 
| 27426 | 128 | |
| 50911 
ee7fe4230642
more explicit treatment of (optional) exception properties, notably for "serial" -- avoid conflict with startPosition = offset;
 wenzelm parents: 
50254diff
changeset | 129 | fun parse_id pos = Option.map Markup.parse_int (get_id pos); | 
| 
ee7fe4230642
more explicit treatment of (optional) exception properties, notably for "serial" -- avoid conflict with startPosition = offset;
 wenzelm parents: 
50254diff
changeset | 130 | |
| 29307 | 131 | |
| 132 | (* markup properties *) | |
| 133 | ||
| 25817 | 134 | fun of_properties props = | 
| 23627 | 135 | let | 
| 27795 | 136 | fun get name = | 
| 28017 | 137 | (case Properties.get props name of | 
| 27795 | 138 | NONE => 0 | 
| 50254 
935ac0ad7e83
prefer tight Markup.print_int/parse_int for property values;
 wenzelm parents: 
50201diff
changeset | 139 | | SOME s => Markup.parse_int s); | 
| 41484 | 140 | in | 
| 50201 
c26369c9eda6
Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
 wenzelm parents: 
49691diff
changeset | 141 |     make {line = get Markup.lineN, offset = get Markup.offsetN,
 | 
| 
c26369c9eda6
Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
 wenzelm parents: 
49691diff
changeset | 142 | end_offset = get Markup.end_offsetN, props = props} | 
| 41484 | 143 | end; | 
| 144 | ||
| 26003 | 145 | |
| 50254 
935ac0ad7e83
prefer tight Markup.print_int/parse_int for property values;
 wenzelm parents: 
50201diff
changeset | 146 | fun value k i = if valid i then [(k, Markup.print_int i)] else []; | 
| 41484 | 147 | |
| 43710 
7270ae921cf2
discontinued odd Position.column -- left-over from attempts at PGIP implementation;
 wenzelm parents: 
42818diff
changeset | 148 | 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 | 149 | value Markup.lineN i @ value Markup.offsetN j @ value Markup.end_offsetN k @ props; | 
| 26003 | 150 | |
| 54038 | 151 | 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 | 152 | |
| 45412 | 153 | fun entity_properties_of def id pos = | 
| 50254 
935ac0ad7e83
prefer tight Markup.print_int/parse_int for property values;
 wenzelm parents: 
50201diff
changeset | 154 | if def then (Markup.defN, Markup.print_int id) :: properties_of pos | 
| 
935ac0ad7e83
prefer tight Markup.print_int/parse_int for property values;
 wenzelm parents: 
50201diff
changeset | 155 | else (Markup.refN, Markup.print_int id) :: def_properties_of pos; | 
| 45412 | 156 | |
| 26052 | 157 | fun default_properties default props = | 
| 50201 
c26369c9eda6
Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
 wenzelm parents: 
49691diff
changeset | 158 | if exists (member (op =) Markup.position_properties o #1) props then props | 
| 26052 | 159 | else properties_of default @ props; | 
| 160 | ||
| 39440 
4c2547af5909
simplified/clarified (Context_)Position.markup/reported_text;
 wenzelm parents: 
38887diff
changeset | 161 | val markup = Markup.properties o properties_of; | 
| 
4c2547af5909
simplified/clarified (Context_)Position.markup/reported_text;
 wenzelm parents: 
38887diff
changeset | 162 | |
| 
4c2547af5909
simplified/clarified (Context_)Position.markup/reported_text;
 wenzelm parents: 
38887diff
changeset | 163 | |
| 
4c2547af5909
simplified/clarified (Context_)Position.markup/reported_text;
 wenzelm parents: 
38887diff
changeset | 164 | (* 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 | 165 | |
| 41504 | 166 | fun is_reported pos = is_some (offset_of pos) andalso is_some (get_id pos); | 
| 30669 
6de7ef888aa3
added report_text -- status messages with text body;
 wenzelm parents: 
29307diff
changeset | 167 | |
| 41504 | 168 | 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 | 169 | 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 | 170 | fun report pos markup = report_text pos markup ""; | 
| 27764 | 171 | |
| 44736 | 172 | type report = T * Markup.T; | 
| 48767 | 173 | type report_text = report * string; | 
| 44736 | 174 | |
| 48767 | 175 | val reports_text = | 
| 176 | 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 | 177 | #> Output.report; | 
| 42204 | 178 | |
| 48767 | 179 | val reports = map (rpair "") #> reports_text; | 
| 180 | ||
| 44735 | 181 | fun store_reports _ [] _ _ = () | 
| 55922 
710bc66f432c
more markup for inner syntax class/type names (notably for completion);
 wenzelm parents: 
55624diff
changeset | 182 | | store_reports (r: report_text list Unsynchronized.ref) ps markup x = | 
| 42204 | 183 | let val ms = markup x | 
| 55922 
710bc66f432c
more markup for inner syntax class/type names (notably for completion);
 wenzelm parents: 
55624diff
changeset | 184 | in Unsynchronized.change r (fold (fn p => fold (fn m => cons ((p, m), "")) ms) ps) end; | 
| 42204 | 185 | |
| 55959 
c3b458435f4f
more decisive commitment to get_free vs. the_const;
 wenzelm parents: 
55922diff
changeset | 186 | fun append_reports (r: report_text list Unsynchronized.ref) reports = | 
| 
c3b458435f4f
more decisive commitment to get_free vs. the_const;
 wenzelm parents: 
55922diff
changeset | 187 | Unsynchronized.change r (append (map (rpair "") reports)); | 
| 
c3b458435f4f
more decisive commitment to get_free vs. the_const;
 wenzelm parents: 
55922diff
changeset | 188 | |
| 25817 | 189 | |
| 48992 | 190 | (* here: inlined formal markup *) | 
| 26003 | 191 | |
| 48992 | 192 | fun here pos = | 
| 26003 | 193 | let | 
| 194 | val props = properties_of pos; | |
| 55624 | 195 | val (s1, s2) = | 
| 26003 | 196 | (case (line_of pos, file_of pos) of | 
| 55624 | 197 |         (SOME i, NONE) => (" ", "(line " ^ Markup.print_int i ^ ")")
 | 
| 198 |       | (SOME i, SOME name) => (" ", "(line " ^ Markup.print_int i ^ " of " ^ quote name ^ ")")
 | |
| 199 |       | (NONE, SOME name) => (" ", "(file " ^ quote name ^ ")")
 | |
| 200 |       | _ => if is_reported pos then ("", "\\<here>") else ("", ""));
 | |
| 26003 | 201 | in | 
| 202 | if null props then "" | |
| 55624 | 203 | else s1 ^ Markup.markup (Markup.properties props Markup.position) s2 | 
| 26003 | 204 | end; | 
| 25817 | 205 | |
| 49691 | 206 | val here_list = space_implode " " o map here; | 
| 207 | ||
| 23627 | 208 | |
| 27736 | 209 | (* range *) | 
| 210 | ||
| 211 | type range = T * T; | |
| 212 | ||
| 27796 | 213 | val no_range = (none, none); | 
| 214 | ||
| 43710 
7270ae921cf2
discontinued odd Position.column -- left-over from attempts at PGIP implementation;
 wenzelm parents: 
42818diff
changeset | 215 | fun set_range (Pos ((i, j, _), props), Pos ((_, j', _), _)) = Pos ((i, j, j'), props); | 
| 
7270ae921cf2
discontinued odd Position.column -- left-over from attempts at PGIP implementation;
 wenzelm parents: 
42818diff
changeset | 216 | fun reset_range (Pos ((i, j, _), props)) = Pos ((i, j, 0), props); | 
| 27777 | 217 | |
| 41484 | 218 | fun range pos pos' = (set_range (pos, pos'), pos'); | 
| 27741 | 219 | |
| 27764 | 220 | |
| 221 | (* thread data *) | |
| 222 | ||
| 223 | local val tag = Universal.tag () : T Universal.tag in | |
| 27741 | 224 | |
| 28122 | 225 | fun thread_data () = the_default none (Thread.getLocal tag); | 
| 27764 | 226 | |
| 37043 
f8e24980af05
more robust Position.setmp_thread_data, independently of Output.debugging (essentially reverts f9ec18f7c0f6, which was motivated by clean exception_trace, but without transaction positions the Isabelle_Process protocol breaks down);
 wenzelm parents: 
33097diff
changeset | 227 | fun setmp_thread_data pos = Library.setmp_thread_data tag (thread_data ()) pos; | 
| 27764 | 228 | |
| 5010 | 229 | end; | 
| 27764 | 230 | |
| 33097 
9d501e11084a
maintain position of formal entities via name space;
 wenzelm parents: 
32573diff
changeset | 231 | fun default pos = | 
| 49528 
789b73fcca72
report proper binding positions only -- avoid swamping document model with unspecific information;
 wenzelm parents: 
48992diff
changeset | 232 | if pos = none then (false, thread_data ()) | 
| 
789b73fcca72
report proper binding positions only -- avoid swamping document model with unspecific information;
 wenzelm parents: 
48992diff
changeset | 233 | else (true, pos); | 
| 33097 
9d501e11084a
maintain position of formal entities via name space;
 wenzelm parents: 
32573diff
changeset | 234 | |
| 27764 | 235 | end; |