Source file occurrences.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
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
open Std
module Lid_set = Index_format.Lid_set
let { Logger.log } = Logger.for_section "occurrences"
type t =
{ occurrences : Query_protocol.occurrence list;
status : Query_protocol.occurrences_status
}
module Staleness = struct
type t = Stale | Fresh
let is_stale = function
| Stale -> true
| Fresh -> false
end
module Occurrence_set : sig
type t
val empty : t
(** Filter an [Lid_set.t]. [Lid.t]s that are kept must be assigned a staleness *)
val of_filtered_lid_set :
Lid_set.t -> f:(Index_format.Lid.t -> Staleness.t option) -> t
val to_list : t -> (Index_format.Lid.t * Staleness.t) list
val union : t -> t -> t
end = struct
module Lid_map = Map.Make (Index_format.Lid)
type t = Staleness.t Lid_map.t
let empty = Lid_map.empty
let to_list = Lid_map.to_list
let of_filtered_lid_set lid_set ~f:get_staleness =
let maybe_add_lid acc lid =
match get_staleness lid with
| Some staleness -> Lid_map.add lid staleness acc
| None -> acc
in
Lid_set.fold maybe_add_lid empty lid_set
let either_fresh a b =
let open Staleness in
match (a, b) with
| Fresh, _ | _, Fresh -> Fresh
| Stale, Stale -> Stale
let union a b = Lid_map.union (fun _ a b -> Some (either_fresh a b)) a b
end
let () = Mtyper.set_index_items Index_occurrences.items
let set_fname ~file (loc : Location.t) =
let pos_fname = file in
{ loc with
loc_start = { loc.loc_start with pos_fname };
loc_end = { loc.loc_end with pos_fname }
}
let last_loc (loc : Location.t) lid =
match lid with
| Longident.Lident _ -> loc
| _ ->
let last_segment = Longident.last lid in
let needs_parens = Pprintast.needs_parens ~kind:Other last_segment in
if not needs_parens then
let last_size = last_segment |> String.length in
{ loc with
loc_start =
{ loc.loc_end with pos_cnum = loc.loc_end.pos_cnum - last_size }
}
else loc
let uid_and_loc_of_node env node =
let open Browse_raw in
log ~title:"occurrences" "Looking for uid of node %s" @@ string_of_node node;
match node with
| Module_binding_name { mb_id = Some ident; mb_name; _ } ->
let md = Env.find_module (Pident ident) env in
Some (md.md_uid, mb_name.loc)
| Pattern
{ pat_desc = Tpat_var (_, name, uid) | Tpat_alias (_, _, name, uid); _ }
-> Some (uid, name.loc)
| Type_declaration { typ_type; typ_name; _ } ->
Some (typ_type.type_uid, typ_name.loc)
| Label_declaration { ld_uid; ld_name; _ } -> Some (ld_uid, ld_name.loc)
| Constructor_declaration { cd_uid; cd_name; _ } -> Some (cd_uid, cd_name.loc)
| Value_description { val_val; val_name; _ } ->
Some (val_val.val_uid, val_name.loc)
| _ -> None
let comp_unit_of_uid = function
| Shape.Uid.Compilation_unit comp_unit | Item { comp_unit; _ } ->
Some comp_unit
| Internal | Predef _ -> None
module Stat_check : sig
type t
val create : cache_size:int -> Index_format.index -> t
val check : t -> file:string -> bool
val get_outdated_files : t -> String.Set.t
end = struct
type t = { index : Index_format.index; cache : (string, bool) Hashtbl.t }
let create ~cache_size index = { index; cache = Hashtbl.create cache_size }
let get_outdated_files t =
Hashtbl.fold
(fun file check acc -> if check then acc else String.Set.add file acc)
t.cache String.Set.empty
let stat t file =
let open Index_format in
match Stats.find_opt file t.index.stats with
| None ->
log ~title:"stat_check" "No stats found for file %S." file;
true
| Some { size; _ } -> (
try
let stats = Unix.stat file in
let equal =
Int.equal stats.st_size size
in
if not equal then
log ~title:"stat_check"
"File %s has been modified since the index was built." file;
equal
with Unix.Unix_error _ ->
log ~title:"stat_check" "Could not stat file %S" file;
false)
let check t ~file =
let cache_and_return b =
Hashtbl.add t.cache file b;
b
in
match Hashtbl.find_opt t.cache file with
| Some result -> result
| None -> cache_and_return (stat t file)
end
let get_buffer_locs result uid =
Stamped_hashtable.fold
(fun (uid', loc) () acc ->
if Shape.Uid.equal uid uid' then
Lid_set.add (Index_format.Lid.of_lid loc) acc
else acc)
(Mtyper.get_index result) Lid_set.empty
let get_external_locs ~(config : Mconfig.t) ~current_buffer_path uid :
(Occurrence_set.t * Std.String.Set.t) list =
let title = "get_external_locs" in
List.filter_map config.merlin.index_files ~f:(fun index_file ->
log ~title "Lookin for occurrences of %a in index %s" Logger.fmt
(Fun.flip Shape.Uid.print uid)
index_file;
let external_locs =
try
let external_index = Index_cache.read index_file in
Index_format.Uid_map.find_opt uid external_index.defs
|> Option.map ~f:(fun uid_locs -> (external_index, uid_locs))
with Index_format.Not_an_index _ | Sys_error _ ->
log ~title "Could not load index %s" index_file;
None
in
Option.map external_locs ~f:(fun (index, locs) ->
let stats = Stat_check.create ~cache_size:128 index in
( Occurrence_set.of_filtered_lid_set locs ~f:(fun lid ->
let { Location.loc; _ } = Index_format.Lid.to_lid lid in
let file_rel_to_root =
loc.Location.loc_start.Lexing.pos_fname
in
let file_uncanon, buf_uncanon =
match config.merlin.source_root with
| Some root ->
(Filename.concat root file_rel_to_root, current_buffer_path)
| None -> (file_rel_to_root, config.query.filename)
in
let file = Misc.canonicalize_filename file_uncanon in
let buf = Misc.canonicalize_filename buf_uncanon in
if String.equal file buf then None
else begin
let is_fresh =
Stat_check.check stats ~file:file_rel_to_root
in
if not is_fresh then
log ~title:"locs_of" "File %s might be out-of-sync." file;
let staleness : Staleness.t =
match is_fresh with
| true -> Fresh
| false -> Stale
in
Some staleness
end),
Stat_check.get_outdated_files stats )))
let lookup_related_uids_in_indexes ~(config : Mconfig.t) uid =
let title = "lookup_related_uids_in_indexes" in
let open Index_format in
let related_uids =
List.fold_left ~init:(Uid_map.empty ()) config.merlin.index_files
~f:(fun acc index_file ->
try
let index = Index_cache.read index_file in
Uid_map.union
(fun _ a b -> Some (Union_find.union a b))
index.related_uids acc
with Index_format.Not_an_index _ | Sys_error _ ->
log ~title "Could not load index %s" index_file;
acc)
in
Uid_map.find_opt uid related_uids
|> Option.value_map ~default:[] ~f:(fun x ->
x |> Union_find.get |> Uid_set.to_list)
let find_linked_uids ~config ~scope ~name uid =
let title = "find_linked_uids" in
match uid with
| Shape.Uid.Item { from = _; comp_unit; _ } ->
let locate_config =
{ Locate.mconfig = config; ml_or_mli = `ML; traverse_aliases = false }
in
let check_name uid =
Locate.lookup_uid_decl ~config uid
|> Option.bind ~f:(Typedtree_utils.location_of_declaration ~uid)
|> Option.value_map
~f:(fun { Location.txt; _ } ->
let result = String.equal name txt in
if not result then
log ~title "Found clashing idents %S <> %S. Ignoring UID %a."
name txt Logger.fmt
(Fun.flip Shape.Uid.print uid);
result)
~default:false
in
let related_uids =
match scope with
| `Buffer -> []
| `Project -> Locate.get_linked_uids ~config:locate_config ~comp_unit uid
| `Renaming -> lookup_related_uids_in_indexes ~config uid
in
log ~title "Found related uids: [%a]" Logger.fmt (fun fmt ->
List.iter ~f:(fprintf fmt "%a;" Shape.Uid.print) related_uids);
List.filter ~f:check_name related_uids
| _ -> []
let locs_of ~config ~env ~typer_result ~pos ~scope path =
log ~title:"occurrences" "Looking for occurences of %s (pos: %s)" path
(Lexing.print_position () pos);
let local_defs = Mtyper.get_typedtree typer_result in
let locate_result =
Locate.from_string
~config:{ mconfig = config; traverse_aliases = false; ml_or_mli = `ML }
~env ~local_defs ~pos path
in
let def, scope =
match locate_result with
| `At_origin ->
log ~title:"locs_of" "Cursor is on definition / declaration";
let browse = Mbrowse.of_typedtree local_defs in
let env, node = Mbrowse.leaf_node (Mbrowse.enclosing pos [ browse ]) in
let node_uid_loc = uid_and_loc_of_node env node in
(node_uid_loc, scope)
| `Found { uid; location; approximated = false; _ }
| `File_not_found { uid; location; approximated = false; _ } ->
log ~title:"locs_of" "Found definition uid using locate: %a " Logger.fmt
(fun fmt -> Shape.Uid.print fmt uid);
(Some (uid, location), scope)
| `Found { decl_uid; location; approximated = true; _ }
| `File_not_found { decl_uid; location; approximated = true; _ } ->
log ~title:"locs_of" "Approx. definition: %a " Logger.fmt (fun fmt ->
Shape.Uid.print fmt decl_uid);
(Some (decl_uid, location), `Buffer)
| `Builtin (uid, s) ->
log ~title:"locs_of" "Locate found a builtin: %s" s;
(Some (uid, Location.none), scope)
| _ ->
log ~title:"locs_of" "Locate failed to find a definition.";
(None, `Buffer)
in
let current_buffer_path =
Filename.concat config.query.directory config.query.filename
in
match def with
| Some (def_uid, def_loc) ->
log ~title:"locs_of" "Definition has uid %a (%a)" Logger.fmt
(fun fmt -> Shape.Uid.print fmt def_uid)
Logger.fmt
(fun fmt -> Location.print_loc fmt def_loc);
log ~title:"locs_of" "Indexing current buffer";
let buffer_locs = get_buffer_locs typer_result def_uid in
let buffer_occurrences =
Occurrence_set.of_filtered_lid_set buffer_locs ~f:(fun _ -> Some Fresh)
in
let external_occurrences =
if scope = `Buffer then []
else
let name =
String.split_on_char ~sep:'.' path |> List.last |> Option.get
in
let additional_uids = find_linked_uids ~config ~scope ~name def_uid in
List.concat_map
(def_uid :: additional_uids)
~f:(get_external_locs ~config ~current_buffer_path)
in
let external_occurrences, out_of_sync_files =
List.fold_left
~init:(Occurrence_set.empty, String.Set.empty)
~f:(fun (acc_locs, acc_files) (locs, files) ->
(Occurrence_set.union acc_locs locs, String.Set.union acc_files files))
external_occurrences
in
let occurrences =
Occurrence_set.union buffer_occurrences external_occurrences
in
let occurrences = Occurrence_set.to_list occurrences in
log ~title:"occurrences" "Found %i locs" (List.length occurrences);
let occurrences =
List.filter_map occurrences ~f:(fun (lid, staleness) ->
let ({ txt; loc } : 'a Location.loc) = Index_format.Lid.to_lid lid in
let file =
Misc.canonicalize_filename ?cwd:config.merlin.source_root
loc.loc_start.pos_fname
in
let loc = set_fname ~file loc in
let lid = try Longident.head txt with _ -> "not flat lid" in
log ~title:"occurrences" "Found occ: %s %a" lid Logger.fmt
(Fun.flip Location.print_loc loc);
let loc = last_loc loc txt in
let fname = loc.Location.loc_start.Lexing.pos_fname in
let loc =
if not (Filename.is_relative fname) then Some loc
else
match config.merlin.source_root with
| Some path ->
let file = Filename.concat path loc.loc_start.pos_fname in
Some (set_fname ~file loc)
| None -> begin
match Locate.find_source ~config loc fname with
| `Found (file, _) -> Some (set_fname ~file loc)
| `File_not_found msg ->
log ~title:"occurrences" "%s" msg;
None
end
in
Option.map loc ~f:(fun loc : Query_protocol.occurrence ->
{ loc; is_stale = Staleness.is_stale staleness }))
in
let def_uid_is_in_current_unit =
let uid_comp_unit = comp_unit_of_uid def_uid in
Option.value_map ~default:false uid_comp_unit
~f:(String.equal @@ Env.get_current_unit_name ())
in
let status =
match (scope, String.Set.to_list out_of_sync_files) with
| `Buffer, _ -> `Not_requested
| _, [] -> `Included
| _, l -> `Out_of_sync l
in
if not def_uid_is_in_current_unit then { occurrences; status }
else
let definition_occurrence : Query_protocol.occurrence =
{ loc = set_fname ~file:current_buffer_path def_loc; is_stale = false }
in
let occurrences = definition_occurrence :: occurrences in
{ occurrences; status }
| None -> { occurrences = []; status = `No_def }