| author | haftmann |
| Fri, 03 Sep 2010 16:08:09 +0200 | |
| changeset 39121 | 6f6a9c8abbac |
| parent 38887 | 1261481ef5e5 |
| child 39440 | 4c2547af5909 |
| 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 |
|
9 |
type T |
|
| 31424 | 10 |
val value: string -> int -> Properties.T |
| 23673 | 11 |
val line_of: T -> int option |
| 26003 | 12 |
val column_of: T -> int option |
| 27795 | 13 |
val offset_of: T -> int option |
| 23673 | 14 |
val file_of: T -> string option |
| 27796 | 15 |
val advance: Symbol.symbol -> T -> T |
16 |
val distance_of: T -> T -> int |
|
| 5010 | 17 |
val none: T |
| 27777 | 18 |
val start: T |
| 31435 | 19 |
val file_name: string -> Properties.T |
| 27777 | 20 |
val file: string -> T |
| 5010 | 21 |
val line: int -> T |
| 27777 | 22 |
val line_file: int -> string -> T |
| 29307 | 23 |
val id: string -> T |
| 32573 | 24 |
val id_only: string -> T |
| 27426 | 25 |
val get_id: T -> string option |
26 |
val put_id: string -> T -> T |
|
| 28017 | 27 |
val of_properties: Properties.T -> T |
28 |
val properties_of: T -> Properties.T |
|
29 |
val default_properties: T -> Properties.T -> Properties.T |
|
|
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
|
30 |
val report_markup: T -> Markup.T |
|
30669
6de7ef888aa3
added report_text -- status messages with text body;
wenzelm
parents:
29307
diff
changeset
|
31 |
val report_text: Markup.T -> T -> string -> unit |
| 27764 | 32 |
val report: Markup.T -> T -> unit |
| 26003 | 33 |
val str_of: T -> string |
| 27764 | 34 |
type range = T * T |
| 27796 | 35 |
val no_range: range |
| 27764 | 36 |
val encode_range: range -> T |
| 27777 | 37 |
val reset_range: T -> T |
| 27764 | 38 |
val range: T -> T -> range |
| 25817 | 39 |
val thread_data: unit -> T |
40 |
val setmp_thread_data: T -> ('a -> 'b) -> 'a -> 'b
|
|
|
33097
9d501e11084a
maintain position of formal entities via name space;
wenzelm
parents:
32573
diff
changeset
|
41 |
val default: T -> T |
| 5010 | 42 |
end; |
43 |
||
44 |
structure Position: POSITION = |
|
45 |
struct |
|
46 |
||
47 |
(* datatype position *) |
|
48 |
||
| 28017 | 49 |
datatype T = Pos of (int * int * int) * Properties.T; |
| 27777 | 50 |
|
| 27795 | 51 |
fun valid (i: int) = i > 0; |
52 |
fun if_valid i i' = if valid i then i' else i; |
|
53 |
||
54 |
fun value k i = if valid i then [(k, string_of_int i)] else []; |
|
| 27777 | 55 |
|
56 |
||
| 27796 | 57 |
(* fields *) |
58 |
||
59 |
fun line_of (Pos ((i, _, _), _)) = if valid i then SOME i else NONE; |
|
60 |
fun column_of (Pos ((_, j, _), _)) = if valid j then SOME j else NONE; |
|
61 |
fun offset_of (Pos ((_, _, k), _)) = if valid k then SOME k else NONE; |
|
62 |
||
| 28017 | 63 |
fun file_of (Pos (_, props)) = Properties.get props Markup.fileN; |
| 27796 | 64 |
|
65 |
||
| 27777 | 66 |
(* advance *) |
| 26003 | 67 |
|
| 27795 | 68 |
fun advance_count "\n" (i: int, j: int, k: int) = |
69 |
(if_valid i (i + 1), if_valid j 1, if_valid k (k + 1)) |
|
70 |
| advance_count s (i, j, k) = |
|
|
37533
d775bd70f571
explicit treatment of UTF8 character sequences as Isabelle symbols;
wenzelm
parents:
37043
diff
changeset
|
71 |
if Symbol.is_regular s then (i, if_valid j (j + 1), if_valid k (k + 1)) |
|
d775bd70f571
explicit treatment of UTF8 character sequences as Isabelle symbols;
wenzelm
parents:
37043
diff
changeset
|
72 |
else (i, j, k); |
| 5010 | 73 |
|
| 27795 | 74 |
fun invalid_count (i, j, k) = |
75 |
not (valid i orelse valid j orelse valid k); |
|
76 |
||
77 |
fun advance sym (pos as (Pos (count, props))) = |
|
78 |
if invalid_count count then pos else Pos (advance_count sym count, props); |
|
| 27777 | 79 |
|
80 |
||
| 27796 | 81 |
(* distance of adjacent positions *) |
| 27777 | 82 |
|
| 27796 | 83 |
fun distance_of (Pos ((_, j, k), _)) (Pos ((_, j', k'), _)) = |
84 |
if valid j andalso valid j' then j' - j |
|
85 |
else if valid k andalso valid k' then k' - k |
|
86 |
else 0; |
|
| 26882 | 87 |
|
| 5010 | 88 |
|
| 27777 | 89 |
(* make position *) |
90 |
||
| 27795 | 91 |
val none = Pos ((0, 0, 0), []); |
92 |
val start = Pos ((1, 1, 1), []); |
|
| 27744 | 93 |
|
| 29307 | 94 |
|
| 27796 | 95 |
fun file_name "" = [] |
96 |
| file_name name = [(Markup.fileN, name)]; |
|
97 |
||
| 27795 | 98 |
fun file name = Pos ((1, 1, 1), file_name name); |
| 27744 | 99 |
|
| 27795 | 100 |
fun line_file i name = Pos ((i, 0, 0), file_name name); |
101 |
fun line i = line_file i ""; |
|
| 5010 | 102 |
|
| 29307 | 103 |
fun id id = Pos ((0, 0, 1), [(Markup.idN, id)]); |
| 32573 | 104 |
fun id_only id = Pos ((0, 0, 0), [(Markup.idN, id)]); |
| 22158 | 105 |
|
| 28017 | 106 |
fun get_id (Pos (_, props)) = Properties.get props Markup.idN; |
107 |
fun put_id id (Pos (count, props)) = Pos (count, Properties.put (Markup.idN, id) props); |
|
| 27426 | 108 |
|
| 29307 | 109 |
|
110 |
(* markup properties *) |
|
111 |
||
| 25817 | 112 |
fun of_properties props = |
| 23627 | 113 |
let |
| 27795 | 114 |
fun get name = |
| 28017 | 115 |
(case Properties.get props name of |
| 27795 | 116 |
NONE => 0 |
117 |
| SOME s => the_default 0 (Int.fromString s)); |
|
118 |
val count = (get Markup.lineN, get Markup.columnN, get Markup.offsetN); |
|
| 26003 | 119 |
fun property name = the_list (find_first (fn (x: string, _) => x = name) props); |
|
27749
24f2b57a34ea
of_properties: observe Markup.position_properties';
wenzelm
parents:
27744
diff
changeset
|
120 |
in Pos (count, maps property Markup.position_properties') end; |
| 26003 | 121 |
|
| 27795 | 122 |
fun properties_of (Pos ((i, j, k), props)) = |
123 |
value Markup.lineN i @ value Markup.columnN j @ value Markup.offsetN k @ props; |
|
| 26003 | 124 |
|
| 26052 | 125 |
fun default_properties default props = |
126 |
if exists (member (op =) Markup.position_properties o #1) props then props |
|
127 |
else properties_of default @ props; |
|
128 |
||
|
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
|
129 |
fun report_markup pos = Markup.properties (properties_of pos) Markup.report; |
|
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
|
130 |
|
|
30669
6de7ef888aa3
added report_text -- status messages with text body;
wenzelm
parents:
29307
diff
changeset
|
131 |
fun report_text markup (pos as Pos (count, _)) txt = |
| 27795 | 132 |
if invalid_count count then () |
|
38236
d8c7be27e01d
explicitly distinguish Output.status (essential feedback) vs. Output.report (useful markup);
wenzelm
parents:
37533
diff
changeset
|
133 |
else Output.report (Markup.markup (Markup.properties (properties_of pos) markup) txt); |
|
30669
6de7ef888aa3
added report_text -- status messages with text body;
wenzelm
parents:
29307
diff
changeset
|
134 |
|
|
6de7ef888aa3
added report_text -- status messages with text body;
wenzelm
parents:
29307
diff
changeset
|
135 |
fun report markup pos = report_text markup pos ""; |
| 27764 | 136 |
|
| 25817 | 137 |
|
| 26003 | 138 |
(* str_of *) |
139 |
||
140 |
fun str_of pos = |
|
141 |
let |
|
142 |
val props = properties_of pos; |
|
143 |
val s = |
|
144 |
(case (line_of pos, file_of pos) of |
|
| 27795 | 145 |
(SOME i, NONE) => "(line " ^ string_of_int i ^ ")" |
146 |
| (SOME i, SOME name) => "(line " ^ string_of_int i ^ " of " ^ quote name ^ ")" |
|
| 26003 | 147 |
| _ => ""); |
148 |
in |
|
149 |
if null props then "" |
|
150 |
else (if s = "" then "" else " ") ^ Markup.markup (Markup.properties props Markup.position) s |
|
151 |
end; |
|
| 25817 | 152 |
|
| 23627 | 153 |
|
| 27736 | 154 |
(* range *) |
155 |
||
156 |
type range = T * T; |
|
157 |
||
| 27796 | 158 |
val no_range = (none, none); |
159 |
||
| 27795 | 160 |
fun encode_range (Pos (count, props), Pos ((i, j, k), _)) = |
| 28017 | 161 |
let val props' = props |> fold_rev Properties.put |
| 27795 | 162 |
(value Markup.end_lineN i @ value Markup.end_columnN j @ value Markup.end_offsetN k) |
163 |
in Pos (count, props') end; |
|
| 27777 | 164 |
|
165 |
fun reset_range (Pos (count, props)) = |
|
| 28017 | 166 |
let val props' = props |> fold Properties.remove |
| 27795 | 167 |
[Markup.end_lineN, Markup.end_columnN, Markup.end_offsetN] |
168 |
in Pos (count, props') end; |
|
| 27736 | 169 |
|
| 27764 | 170 |
fun range pos pos' = (encode_range (pos, pos'), pos'); |
| 27741 | 171 |
|
| 27764 | 172 |
|
173 |
(* thread data *) |
|
174 |
||
175 |
local val tag = Universal.tag () : T Universal.tag in |
|
| 27741 | 176 |
|
| 28122 | 177 |
fun thread_data () = the_default none (Thread.getLocal tag); |
| 27764 | 178 |
|
|
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
|
179 |
fun setmp_thread_data pos = Library.setmp_thread_data tag (thread_data ()) pos; |
| 27764 | 180 |
|
| 5010 | 181 |
end; |
| 27764 | 182 |
|
|
33097
9d501e11084a
maintain position of formal entities via name space;
wenzelm
parents:
32573
diff
changeset
|
183 |
fun default pos = |
|
9d501e11084a
maintain position of formal entities via name space;
wenzelm
parents:
32573
diff
changeset
|
184 |
if pos = none then thread_data () |
|
9d501e11084a
maintain position of formal entities via name space;
wenzelm
parents:
32573
diff
changeset
|
185 |
else pos; |
|
9d501e11084a
maintain position of formal entities via name space;
wenzelm
parents:
32573
diff
changeset
|
186 |
|
| 27764 | 187 |
end; |