author | wenzelm |
Wed, 16 Jan 2013 16:26:36 +0100 | |
changeset 50911 | ee7fe4230642 |
parent 50254 | 935ac0ad7e83 |
child 54038 | f522477d671d |
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:
42818
diff
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:
42818
diff
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:
50254
diff
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:
42204
diff
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:
38887
diff
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:
39440
diff
changeset
|
37 |
val reported_text: T -> Markup.T -> string -> string |
839873937ddd
tuned signature of (Context_)Position.report variants;
wenzelm
parents:
39440
diff
changeset
|
38 |
val report_text: T -> Markup.T -> string -> unit |
839873937ddd
tuned signature of (Context_)Position.report variants;
wenzelm
parents:
39440
diff
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 |
44 |
val store_reports: report list Unsynchronized.ref -> T list -> ('a -> Markup.T list) -> 'a -> unit |
|
48992 | 45 |
val here: T -> string |
49691 | 46 |
val here_list: T list -> string |
27764 | 47 |
type range = T * T |
27796 | 48 |
val no_range: range |
41484 | 49 |
val set_range: range -> T |
27777 | 50 |
val reset_range: T -> T |
27764 | 51 |
val range: T -> T -> range |
25817 | 52 |
val thread_data: unit -> T |
53 |
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
|
54 |
val default: T -> bool * T |
5010 | 55 |
end; |
56 |
||
57 |
structure Position: POSITION = |
|
58 |
struct |
|
59 |
||
60 |
(* datatype position *) |
|
61 |
||
43710
7270ae921cf2
discontinued odd Position.column -- left-over from attempts at PGIP implementation;
wenzelm
parents:
42818
diff
changeset
|
62 |
datatype T = Pos of (int * int * int) * Properties.T; |
41484 | 63 |
|
64 |
fun norm_props (props: Properties.T) = |
|
45666 | 65 |
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:
49691
diff
changeset
|
66 |
Markup.position_properties'; |
41484 | 67 |
|
43710
7270ae921cf2
discontinued odd Position.column -- left-over from attempts at PGIP implementation;
wenzelm
parents:
42818
diff
changeset
|
68 |
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:
42818
diff
changeset
|
69 |
fun dest (Pos ((i, j, k), props)) = {line = i, offset = j, end_offset = k, props = props}; |
27777 | 70 |
|
27795 | 71 |
fun valid (i: int) = i > 0; |
72 |
fun if_valid i i' = if valid i then i' else i; |
|
73 |
||
27777 | 74 |
|
27796 | 75 |
(* fields *) |
76 |
||
43710
7270ae921cf2
discontinued odd Position.column -- left-over from attempts at PGIP implementation;
wenzelm
parents:
42818
diff
changeset
|
77 |
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:
42818
diff
changeset
|
78 |
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:
42818
diff
changeset
|
79 |
fun end_offset_of (Pos ((_, _, k), _)) = if valid k then SOME k else NONE; |
27796 | 80 |
|
50201
c26369c9eda6
Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents:
49691
diff
changeset
|
81 |
fun file_of (Pos (_, props)) = Properties.get props Markup.fileN; |
27796 | 82 |
|
83 |
||
27777 | 84 |
(* advance *) |
26003 | 85 |
|
43710
7270ae921cf2
discontinued odd Position.column -- left-over from attempts at PGIP implementation;
wenzelm
parents:
42818
diff
changeset
|
86 |
fun advance_count "\n" (i: int, j: int, k: int) = |
7270ae921cf2
discontinued odd Position.column -- left-over from attempts at PGIP implementation;
wenzelm
parents:
42818
diff
changeset
|
87 |
(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:
42818
diff
changeset
|
88 |
| advance_count s (i, j, k) = |
7270ae921cf2
discontinued odd Position.column -- left-over from attempts at PGIP implementation;
wenzelm
parents:
42818
diff
changeset
|
89 |
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:
42818
diff
changeset
|
90 |
else (i, j, k); |
5010 | 91 |
|
43710
7270ae921cf2
discontinued odd Position.column -- left-over from attempts at PGIP implementation;
wenzelm
parents:
42818
diff
changeset
|
92 |
fun invalid_count (i, j, _: int) = |
7270ae921cf2
discontinued odd Position.column -- left-over from attempts at PGIP implementation;
wenzelm
parents:
42818
diff
changeset
|
93 |
not (valid i orelse valid j); |
27795 | 94 |
|
95 |
fun advance sym (pos as (Pos (count, props))) = |
|
96 |
if invalid_count count then pos else Pos (advance_count sym count, props); |
|
27777 | 97 |
|
98 |
||
27796 | 99 |
(* distance of adjacent positions *) |
27777 | 100 |
|
43710
7270ae921cf2
discontinued odd Position.column -- left-over from attempts at PGIP implementation;
wenzelm
parents:
42818
diff
changeset
|
101 |
fun distance_of (Pos ((_, j, _), _)) (Pos ((_, j', _), _)) = |
27796 | 102 |
if valid j andalso valid j' then j' - j |
103 |
else 0; |
|
26882 | 104 |
|
5010 | 105 |
|
27777 | 106 |
(* make position *) |
107 |
||
43710
7270ae921cf2
discontinued odd Position.column -- left-over from attempts at PGIP implementation;
wenzelm
parents:
42818
diff
changeset
|
108 |
val none = Pos ((0, 0, 0), []); |
7270ae921cf2
discontinued odd Position.column -- left-over from attempts at PGIP implementation;
wenzelm
parents:
42818
diff
changeset
|
109 |
val start = Pos ((1, 1, 0), []); |
27744 | 110 |
|
29307 | 111 |
|
27796 | 112 |
fun file_name "" = [] |
50201
c26369c9eda6
Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents:
49691
diff
changeset
|
113 |
| file_name name = [(Markup.fileN, name)]; |
27796 | 114 |
|
44200 | 115 |
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:
42818
diff
changeset
|
116 |
fun file name = Pos ((1, 1, 0), file_name name); |
27744 | 117 |
|
43710
7270ae921cf2
discontinued odd Position.column -- left-over from attempts at PGIP implementation;
wenzelm
parents:
42818
diff
changeset
|
118 |
fun line_file i name = Pos ((i, 1, 0), file_name name); |
27795 | 119 |
fun line i = line_file i ""; |
5010 | 120 |
|
50201
c26369c9eda6
Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents:
49691
diff
changeset
|
121 |
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:
49691
diff
changeset
|
122 |
fun id_only id = Pos ((0, 0, 0), [(Markup.idN, id)]); |
22158 | 123 |
|
50201
c26369c9eda6
Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents:
49691
diff
changeset
|
124 |
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:
49691
diff
changeset
|
125 |
fun put_id id (Pos (count, props)) = Pos (count, Properties.put (Markup.idN, id) props); |
27426 | 126 |
|
50911
ee7fe4230642
more explicit treatment of (optional) exception properties, notably for "serial" -- avoid conflict with startPosition = offset;
wenzelm
parents:
50254
diff
changeset
|
127 |
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:
50254
diff
changeset
|
128 |
|
29307 | 129 |
|
130 |
(* markup properties *) |
|
131 |
||
25817 | 132 |
fun of_properties props = |
23627 | 133 |
let |
27795 | 134 |
fun get name = |
28017 | 135 |
(case Properties.get props name of |
27795 | 136 |
NONE => 0 |
50254
935ac0ad7e83
prefer tight Markup.print_int/parse_int for property values;
wenzelm
parents:
50201
diff
changeset
|
137 |
| SOME s => Markup.parse_int s); |
41484 | 138 |
in |
50201
c26369c9eda6
Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents:
49691
diff
changeset
|
139 |
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:
49691
diff
changeset
|
140 |
end_offset = get Markup.end_offsetN, props = props} |
41484 | 141 |
end; |
142 |
||
26003 | 143 |
|
50254
935ac0ad7e83
prefer tight Markup.print_int/parse_int for property values;
wenzelm
parents:
50201
diff
changeset
|
144 |
fun value k i = if valid i then [(k, Markup.print_int i)] else []; |
41484 | 145 |
|
43710
7270ae921cf2
discontinued odd Position.column -- left-over from attempts at PGIP implementation;
wenzelm
parents:
42818
diff
changeset
|
146 |
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:
49691
diff
changeset
|
147 |
value Markup.lineN i @ value Markup.offsetN j @ value Markup.end_offsetN k @ props; |
26003 | 148 |
|
42327
7c7cc7590eb3
Name_Space.entry_markup: keep def position as separate properties;
wenzelm
parents:
42204
diff
changeset
|
149 |
val def_properties_of = properties_of #> (map (fn (x, y) => ("def_" ^ x, y))); |
7c7cc7590eb3
Name_Space.entry_markup: keep def position as separate properties;
wenzelm
parents:
42204
diff
changeset
|
150 |
|
45412 | 151 |
fun entity_properties_of def id pos = |
50254
935ac0ad7e83
prefer tight Markup.print_int/parse_int for property values;
wenzelm
parents:
50201
diff
changeset
|
152 |
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:
50201
diff
changeset
|
153 |
else (Markup.refN, Markup.print_int id) :: def_properties_of pos; |
45412 | 154 |
|
26052 | 155 |
fun default_properties default props = |
50201
c26369c9eda6
Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents:
49691
diff
changeset
|
156 |
if exists (member (op =) Markup.position_properties o #1) props then props |
26052 | 157 |
else properties_of default @ props; |
158 |
||
39440
4c2547af5909
simplified/clarified (Context_)Position.markup/reported_text;
wenzelm
parents:
38887
diff
changeset
|
159 |
val markup = Markup.properties o properties_of; |
4c2547af5909
simplified/clarified (Context_)Position.markup/reported_text;
wenzelm
parents:
38887
diff
changeset
|
160 |
|
4c2547af5909
simplified/clarified (Context_)Position.markup/reported_text;
wenzelm
parents:
38887
diff
changeset
|
161 |
|
4c2547af5909
simplified/clarified (Context_)Position.markup/reported_text;
wenzelm
parents:
38887
diff
changeset
|
162 |
(* 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
|
163 |
|
41504 | 164 |
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:
29307
diff
changeset
|
165 |
|
41504 | 166 |
fun reported_text pos m txt = if is_reported pos then Markup.markup (markup pos m) txt else ""; |
39507
839873937ddd
tuned signature of (Context_)Position.report variants;
wenzelm
parents:
39440
diff
changeset
|
167 |
fun report_text pos markup txt = Output.report (reported_text pos markup txt); |
839873937ddd
tuned signature of (Context_)Position.report variants;
wenzelm
parents:
39440
diff
changeset
|
168 |
fun report pos markup = report_text pos markup ""; |
27764 | 169 |
|
44736 | 170 |
type report = T * Markup.T; |
48767 | 171 |
type report_text = report * string; |
44736 | 172 |
|
48767 | 173 |
val reports_text = |
174 |
map (fn ((pos, m), txt) => if is_reported pos then Markup.markup (markup pos m) txt else "") |
|
44736 | 175 |
#> implode #> Output.report; |
42204 | 176 |
|
48767 | 177 |
val reports = map (rpair "") #> reports_text; |
178 |
||
44735 | 179 |
fun store_reports _ [] _ _ = () |
44736 | 180 |
| store_reports (r: report list Unsynchronized.ref) ps markup x = |
42204 | 181 |
let val ms = markup x |
182 |
in Unsynchronized.change r (fold (fn p => fold (fn m => cons (p, m)) ms) ps) end; |
|
183 |
||
25817 | 184 |
|
48992 | 185 |
(* here: inlined formal markup *) |
26003 | 186 |
|
48992 | 187 |
fun here pos = |
26003 | 188 |
let |
189 |
val props = properties_of pos; |
|
190 |
val s = |
|
191 |
(case (line_of pos, file_of pos) of |
|
50254
935ac0ad7e83
prefer tight Markup.print_int/parse_int for property values;
wenzelm
parents:
50201
diff
changeset
|
192 |
(SOME i, NONE) => "(line " ^ Markup.print_int i ^ ")" |
935ac0ad7e83
prefer tight Markup.print_int/parse_int for property values;
wenzelm
parents:
50201
diff
changeset
|
193 |
| (SOME i, SOME name) => "(line " ^ Markup.print_int i ^ " of " ^ quote name ^ ")" |
44224 | 194 |
| (NONE, SOME name) => "(file " ^ quote name ^ ")" |
26003 | 195 |
| _ => ""); |
196 |
in |
|
197 |
if null props then "" |
|
50201
c26369c9eda6
Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents:
49691
diff
changeset
|
198 |
else (if s = "" then "" else " ") ^ Markup.markup (Markup.properties props Markup.position) s |
26003 | 199 |
end; |
25817 | 200 |
|
49691 | 201 |
val here_list = space_implode " " o map here; |
202 |
||
23627 | 203 |
|
27736 | 204 |
(* range *) |
205 |
||
206 |
type range = T * T; |
|
207 |
||
27796 | 208 |
val no_range = (none, none); |
209 |
||
43710
7270ae921cf2
discontinued odd Position.column -- left-over from attempts at PGIP implementation;
wenzelm
parents:
42818
diff
changeset
|
210 |
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:
42818
diff
changeset
|
211 |
fun reset_range (Pos ((i, j, _), props)) = Pos ((i, j, 0), props); |
27777 | 212 |
|
41484 | 213 |
fun range pos pos' = (set_range (pos, pos'), pos'); |
27741 | 214 |
|
27764 | 215 |
|
216 |
(* thread data *) |
|
217 |
||
218 |
local val tag = Universal.tag () : T Universal.tag in |
|
27741 | 219 |
|
28122 | 220 |
fun thread_data () = the_default none (Thread.getLocal tag); |
27764 | 221 |
|
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:
33097
diff
changeset
|
222 |
fun setmp_thread_data pos = Library.setmp_thread_data tag (thread_data ()) pos; |
27764 | 223 |
|
5010 | 224 |
end; |
27764 | 225 |
|
33097
9d501e11084a
maintain position of formal entities via name space;
wenzelm
parents:
32573
diff
changeset
|
226 |
fun default pos = |
49528
789b73fcca72
report proper binding positions only -- avoid swamping document model with unspecific information;
wenzelm
parents:
48992
diff
changeset
|
227 |
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
|
228 |
else (true, pos); |
33097
9d501e11084a
maintain position of formal entities via name space;
wenzelm
parents:
32573
diff
changeset
|
229 |
|
27764 | 230 |
end; |