Source file pos.ml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
type attr = ..
type t = { code_pos : Lexing.position * Lexing.position; attr : attr list }
type attr += Law_pos of string list
let from_lpos (p : Lexing.position * Lexing.position) : t =
{ code_pos = p; attr = [] }
let lex_pos_compare lp1 lp2 =
match String.compare lp1.Lexing.pos_fname lp2.Lexing.pos_fname with
| 0 -> Int.compare lp1.Lexing.pos_cnum lp2.Lexing.pos_cnum
| n -> n
let compare p1 p2 =
let p1beg, p1end = p1.code_pos and p2beg, p2end = p2.code_pos in
match lex_pos_compare p1beg p2beg with
| 0 -> lex_pos_compare p1end p2end
| n -> n
let equal p1 p2 = p1.code_pos = p2.code_pos
let attrs t = t.attr
let set_attrs t attr = { t with attr }
let add_attr t attr = { t with attr = attr :: t.attr }
let add_attrs t attrs = List.fold_left add_attr t attrs
let rem_attr t attr = { t with attr = List.filter (fun a -> a <> attr) t.attr }
let get_attrs t f = List.filter_map f t.attr
let get_attr t f =
match get_attrs t f with
| [] -> None
| [a] -> Some a
| _ :: _ :: _ -> invalid_arg "Pos.get_attr: multiple matching attributes"
let has_attr t a = List.mem a t.attr
let take_attr t f =
let rec aux acc = function
| [] -> None, List.rev acc
| a :: r -> (
match f a with
| None -> aux (a :: acc) r
| some -> some, List.rev_append acc r)
in
let r, attr = aux [] t.attr in
r, { t with attr }
let join_attr a1 a2 =
if List.exists (function Law_pos _ -> true | _ -> false) a1 then
a1 @ List.filter (function Law_pos _ -> false | _ -> true) a2
else a1 @ a2
let join (p1 : t) (p2 : t) : t =
if (fst p1.code_pos).Lexing.pos_fname <> (fst p2.code_pos).Lexing.pos_fname
then invalid_arg "Pos.join";
let beg1, end1 = p1.code_pos in
let beg2, end2 = p2.code_pos in
let first, second =
if lex_pos_compare beg1 beg2 <= 0 then p1, p2 else p2, p1
in
{
code_pos =
(fst first.code_pos, if lex_pos_compare end1 end2 <= 0 then end2 else end1);
attr = join_attr first.attr second.attr;
}
let from_info
(file : string)
(sline : int)
(scol : int)
(eline : int)
(ecol : int) : t =
let spos =
{
Lexing.pos_fname = file;
Lexing.pos_lnum = sline;
Lexing.pos_cnum = scol;
Lexing.pos_bol = 1;
}
in
let epos =
{
Lexing.pos_fname = file;
Lexing.pos_lnum = eline;
Lexing.pos_cnum = ecol;
Lexing.pos_bol = 1;
}
in
{ code_pos = spos, epos; attr = [] }
let overwrite_law_info (pos : t) (law_pos : string list) : t =
{
pos with
attr =
Law_pos law_pos
:: List.filter (function Law_pos _ -> false | _ -> true) pos.attr;
}
let get_law_info (pos : t) : string list =
Option.value ~default:[]
@@ List.find_map (function Law_pos l -> Some l | _ -> None) pos.attr
let get_start_line (pos : t) : int =
let s, _ = pos.code_pos in
s.Lexing.pos_lnum
let get_start_column (pos : t) : int =
let s, _ = pos.code_pos in
s.Lexing.pos_cnum - s.Lexing.pos_bol + 1
let get_end_line (pos : t) : int =
let _, e = pos.code_pos in
e.Lexing.pos_lnum
let get_end_column (pos : t) : int =
let _, e = pos.code_pos in
e.Lexing.pos_cnum - e.Lexing.pos_bol + 1
let get_file (pos : t) : string = (fst pos.code_pos).Lexing.pos_fname
let to_string (pos : t) : string =
let s, e = pos.code_pos in
Printf.sprintf "in file %s, from %d:%d to %d:%d" s.Lexing.pos_fname
s.Lexing.pos_lnum
(s.Lexing.pos_cnum - s.Lexing.pos_bol)
e.Lexing.pos_lnum
(e.Lexing.pos_cnum - e.Lexing.pos_bol)
let to_string_short (pos : t) : string =
let s, e = pos.code_pos in
Printf.sprintf "%s:%d.%d-%d.%d" s.Lexing.pos_fname s.Lexing.pos_lnum
(s.Lexing.pos_cnum - s.Lexing.pos_bol + 1)
e.Lexing.pos_lnum
(e.Lexing.pos_cnum - e.Lexing.pos_bol + 1)
let to_string_shorter (pos : t) : string =
let s, e = pos.code_pos in
let f = Filename.(remove_extension (basename s.Lexing.pos_fname)) in
if s.Lexing.pos_lnum = e.Lexing.pos_lnum then
Printf.sprintf "%s:%d.%d-%d" f s.Lexing.pos_lnum
(s.Lexing.pos_cnum - s.Lexing.pos_bol + 1)
(e.Lexing.pos_cnum - e.Lexing.pos_bol + 1)
else
Printf.sprintf "%s:%d.%d-%d.%d" f s.Lexing.pos_lnum
(s.Lexing.pos_cnum - s.Lexing.pos_bol + 1)
e.Lexing.pos_lnum
(e.Lexing.pos_cnum - e.Lexing.pos_bol + 1)
let indent_number (s : string) : int =
try
let rec aux (i : int) = if s.[i] = ' ' then aux (i + 1) else i in
aux 0
with Invalid_argument _ -> String.length s
let utf8_byte_index s ui0 =
let rec aux bi ui =
if ui >= ui0 then bi
else
aux (bi + Uchar.utf_decode_length (String.get_utf_8_uchar s bi)) (ui + 1)
in
aux 0 0
let rec pad_fmt n s ppf =
if n > 0 then (
Format.pp_print_as ppf 1 s;
pad_fmt (n - 1) s ppf)
let format_loc_text_parts (pos : t) =
let filename = get_file pos in
let pr_head ppf =
Format.fprintf ppf "@{<blue>─➤ @{<bold>%s:@}@}@," (to_string_short pos)
in
let pr_context =
try
let sline = get_start_line pos in
let eline = get_end_line pos in
let ic, input_line_opt =
let from_contents =
match Global.options.input_src with
| Contents (str, uri) when uri = filename -> Some str
| _ -> None
in
match from_contents with
| Some str ->
let line_index = ref 0 in
let lines = String.split_on_char '\n' str in
let input_line_opt () : string option =
match List.nth_opt lines !line_index with
| Some l ->
line_index := !line_index + 1;
Some l
| None -> None
in
None, input_line_opt
| None -> (
try
let ic = open_in filename in
let input_line_opt () : string option =
try Some (input_line ic) with End_of_file -> None
in
Some ic, input_line_opt
with Sys_error _ -> None, fun () -> None)
in
let = 0 in
let rec get_lines (n : int) : (int * string) list =
match input_line_opt () with
| Some line ->
if n < sline - include_extra_count then get_lines (n + 1)
else if
n >= sline - include_extra_count && n <= eline + include_extra_count
then (n, line) :: get_lines (n + 1)
else []
| None -> []
in
let pos_lines = get_lines 1 in
let nspaces = int_of_float (log10 (float_of_int eline)) + 1 in
(match ic with None -> () | Some ic -> close_in ic);
let line_matched_substrings =
try
List.map
(fun (line_no, line) ->
let line_indent = indent_number line in
let match_start_index =
utf8_byte_index line
(if line_no = sline then get_start_column pos - 1
else line_indent)
in
let match_end_index =
if line_no = eline then
utf8_byte_index line (get_end_column pos - 1)
else String.length line
in
( line_no,
line,
String.sub line 0 match_start_index,
String.sub line match_start_index
(max 0 (match_end_index - match_start_index)) ))
pos_lines
with Invalid_argument _ ->
[]
in
let print_matched_line
ppf
(line_no, line, unmatched_prefix, matched_substring) =
let match_start_col = String.width unmatched_prefix in
let match_num_cols = String.width matched_substring in
Format.fprintf ppf "@{<blue>%*d │@} %a" nspaces line_no
(fun ppf -> Format.pp_print_as ppf (String.width line))
line;
Format.pp_print_cut ppf ();
if line_no >= sline && line_no <= eline then
Format.fprintf ppf "@{<blue>%*s │@} %*s@{<bold;red>%t@}" nspaces ""
match_start_col ""
(pad_fmt match_num_cols "‾")
in
if line_matched_substrings <> [] then (fun ppf ->
Format.fprintf ppf "@{<blue> %*s│@}@," nspaces "";
Format.pp_print_list print_matched_line ppf line_matched_substrings)
else ignore
with Sys_error _ -> ignore
in
let pr_legal =
let legal_pos_lines =
List.rev_map
(fun s ->
Re.Pcre.substitute ~rex:(Re.Pcre.regexp "\n\\s*")
~subst:(fun _ -> " ")
s)
(get_law_info pos)
in
let rec pp_legal nspaces leg ppf =
match leg with
| [last] ->
Format.fprintf ppf "@,@{<blue>%*s@<2>%s %s@}" nspaces "" "└─" last
| l :: lines ->
Format.fprintf ppf "@,@{<blue>%*s@<2>%s %s@}" nspaces "" "└┬" l;
pp_legal (nspaces + 1) lines ppf
| [] -> ()
in
match legal_pos_lines with
| [] -> None
| fst :: rest ->
Some
(fun ppf ->
Format.fprintf ppf "@{<blue>%s@}" fst;
pp_legal 0 rest ppf)
in
pr_head, pr_context, pr_legal
let format_loc_text ppf t =
if get_file t = "" then (
if Global.options.debug then
Format.pp_print_string ppf " (no position information)")
else
let pr_head, pr_context, pr_legal = format_loc_text_parts t in
Format.pp_open_vbox ppf 0;
pr_head ppf;
pr_context ppf;
Option.iter
(fun f ->
Format.pp_print_cut ppf ();
f ppf)
pr_legal;
Format.pp_close_box ppf ()
let void : t =
let zero_pos =
{
Lexing.pos_fname = "";
Lexing.pos_lnum = 0;
Lexing.pos_cnum = 0;
Lexing.pos_bol = 0;
}
in
{ code_pos = zero_pos, zero_pos; attr = [] }
module Map = Map.Make (struct
type nonrec t = t
let compare t1 t2 =
match lex_pos_compare (fst t1.code_pos) (fst t2.code_pos) with
| 0 -> lex_pos_compare (snd t1.code_pos) (snd t2.code_pos)
| n -> n
let format ppf t = Format.pp_print_string ppf (to_string_short t)
end)