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
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
open Std
let last_location = ref Location.none
let { Logger.log } = Logger.for_section "locate"
type config =
{ mconfig : Mconfig.t; ml_or_mli : [ `ML | `MLI ]; traverse_aliases : bool }
type result =
{ uid : Shape.Uid.t;
decl_uid : Shape.Uid.t;
file : string;
location : Location.t;
approximated : bool
}
module File : sig
type t = private
| ML of string
| MLL of string
| MLI of string
| CMT of string
| CMTI of string
val ml : string -> t
val mli : string -> t
val cmt : string -> t
val cmti : string -> t
val of_filename : string -> t option
val alternate : t -> t
val name : t -> string
val with_ext : ?src_suffix_pair:string * string -> t -> string
val explain_not_found :
?doc_from:string -> string -> t -> [> `File_not_found of string ]
end = struct
type t =
| ML of string
| MLL of string
| MLI of string
| CMT of string
| CMTI of string
let file_path_to_mod_name f = Misc.unitname (Filename.basename f)
let ml s = ML (file_path_to_mod_name s)
let mll s = MLL (file_path_to_mod_name s)
let mli s = MLI (file_path_to_mod_name s)
let cmt s = CMT (file_path_to_mod_name s)
let cmti s = CMTI (file_path_to_mod_name s)
let of_filename fn =
match Misc.rev_string_split ~on:'.' fn with
| [] | [ _ ] -> None
| ext :: _ ->
let ext = String.lowercase ext in
Some
(match ext with
| "cmti" -> cmti fn
| "cmt" -> cmt fn
| "mll" -> mll fn
| _ -> if Filename.check_suffix ext "i" then mli fn else ml fn)
let alternate = function
| ML s | MLL s -> MLI s
| MLI s -> ML s
| CMT s -> CMTI s
| CMTI s -> CMT s
let name = function
| ML name | MLL name | MLI name | CMT name | CMTI name -> name
let ext src_suffix_pair = function
| ML _ -> fst src_suffix_pair
| MLI _ -> snd src_suffix_pair
| MLL _ -> ".mll"
| CMT _ -> ".cmt"
| CMTI _ -> ".cmti"
let with_ext ?(src_suffix_pair = (".ml", ".mli")) t =
name t ^ ext src_suffix_pair t
let explain_not_found ?(doc_from = "") str_ident path =
let msg =
match path with
| ML file ->
sprintf
"'%s' seems to originate from '%s' whose ML file could not be found"
str_ident file
| MLL file ->
sprintf
"'%s' seems to originate from '%s' whose MLL file could not be found"
str_ident file
| MLI file ->
sprintf
"'%s' seems to originate from '%s' whose MLI file could not be found"
str_ident file
| CMT file ->
sprintf
"Needed cmt file of module '%s' to locate '%s' but it is not present"
file str_ident
| CMTI file when file <> doc_from ->
sprintf
"Needed cmti file of module '%s' to locate '%s' but it is not present"
file str_ident
| CMTI _ ->
sprintf
"The documentation for '%s' originates in the current file, but no \
cmt is available"
str_ident
in
`File_not_found msg
end
module Preferences : sig
val set : [ `ML | `MLI ] -> unit
val src : string -> File.t
val build : string -> File.t
val is_preferred : string -> bool
end = struct
let prioritize_impl = ref true
let set choice =
prioritize_impl :=
match choice with
| `ML -> true
| _ -> false
let src file = if !prioritize_impl then File.ml file else File.mli file
let build file = if !prioritize_impl then File.cmt file else File.cmti file
let is_preferred fn =
match File.of_filename fn with
| Some (ML _) -> !prioritize_impl
| Some (MLI _) -> not !prioritize_impl
| _ -> false
end
module File_switching : sig
val reset : unit -> unit
val move_to : digest:Digest.t -> string -> unit
val where_am_i : unit -> string option
val source_digest : unit -> Digest.t option
end = struct
type t = { last_file_visited : string; digest : Digest.t }
let last_file_visited t = t.last_file_visited
let digest t = t.digest
let state = ref None
let reset () = state := None
let move_to ~digest file =
log ~title:"File_switching.move_to" "file: %s\ndigest: %s" file
@@ Digest.to_hex digest;
state := Some { last_file_visited = file; digest }
let where_am_i () = Option.map !state ~f:last_file_visited
let source_digest () = Option.map !state ~f:digest
end
module Utils = struct
let find_all_in_path_uncap ?src_suffix_pair ~with_fallback path file =
let name = File.with_ext ?src_suffix_pair file in
log ~title:"find_all_in_path_uncap" "Looking for file %S in path:\n%a" name
Logger.fmt (fun fmt ->
Format.pp_print_list Format.pp_print_string fmt path);
let uname = String.uncapitalize name in
let fallback, ufallback =
let alt = File.alternate file in
let fallback = File.with_ext ?src_suffix_pair alt in
(fallback, String.uncapitalize fallback)
in
let try_file dirname basename acc =
if Misc.exact_file_exists ~dirname ~basename then
Misc.canonicalize_filename (Filename.concat dirname basename) :: acc
else acc
in
let try_dir acc dirname =
let acc = try_file dirname uname acc in
let acc = try_file dirname name acc in
let acc =
if with_fallback then
let acc = try_file dirname ufallback acc in
let acc = try_file dirname fallback acc in
acc
else acc
in
acc
in
List.fold_left ~f:try_dir ~init:[] path
let find_all_matches ~config ?(with_fallback = false) file =
let files =
List.concat_map
~f:(fun synonym_pair ->
find_all_in_path_uncap ~src_suffix_pair:synonym_pair ~with_fallback
(Mconfig.source_path config)
file)
Mconfig.(config.merlin.suffixes)
in
List.dedup_adjacent files ~cmp:String.compare
let find_file_with_path ~config ?(with_fallback = false) file path =
if File.name file = Misc.unitname Mconfig.(config.query.filename) then
Some Mconfig.(config.query.filename)
else
let attempt_search src_suffix_pair =
let fallback =
if with_fallback then
Some (File.with_ext ~src_suffix_pair (File.alternate file))
else None
in
let fname = File.with_ext ~src_suffix_pair file in
try Some (Misc.find_in_path_normalized ?fallback path fname)
with Not_found -> None
in
try
Some (List.find_map Mconfig.(config.merlin.suffixes) ~f:attempt_search)
with Not_found -> None
let find_file ~config ?with_fallback (file : File.t) =
find_file_with_path ~config ?with_fallback file
@@
match file with
| ML _ | MLI _ | MLL _ -> Mconfig.source_path config
| CMT _ | CMTI _ -> Mconfig.cmt_path config
end
let move_to filename cmt_infos =
let digest =
let sourcefile_in_builddir =
Filename.concat cmt_infos.Cmt_format.cmt_builddir
(Option.get cmt_infos.cmt_sourcefile)
in
match
sourcefile_in_builddir |> String.split_on_char ~sep:'.' |> List.rev
with
| ext :: "pp" :: rev_path -> (
let sourcefile_in_builddir =
ext :: rev_path |> List.rev |> String.concat ~sep:"."
in
match
Misc.exact_file_exists
~dirname:(Filename.dirname sourcefile_in_builddir)
~basename:(Filename.basename sourcefile_in_builddir)
with
| true -> Digest.file sourcefile_in_builddir
| false -> Option.get cmt_infos.cmt_source_digest)
| _ -> Option.get cmt_infos.cmt_source_digest
in
File_switching.move_to ~digest filename
let load_cmt ~config ?(with_fallback = true) comp_unit =
Preferences.set config.ml_or_mli;
let file = Preferences.build comp_unit in
match Utils.find_file ~config:config.mconfig ~with_fallback file with
| Some path ->
let cmt_infos = (Cmt_cache.read path).cmt_infos in
let source_file = cmt_infos.cmt_sourcefile in
let source_file = Option.value ~default:"*pack*" source_file in
move_to path cmt_infos;
Ok (source_file, cmt_infos)
| None -> Error ()
let scrape_alias ~env ~fallback_uid ~namespace path =
let find_type_and_uid ~env ~namespace path =
match namespace with
| Shape.Sig_component_kind.Module ->
let { Types.md_type; md_uid; _ } = Env.find_module path env in
(md_type, md_uid)
| Module_type -> begin
match Env.find_modtype path env with
| { Types.mtd_type = Some mtd_type; mtd_uid; _ } -> (mtd_type, mtd_uid)
| _ -> raise Not_found
end
| _ -> raise Not_found
in
let rec non_alias_declaration_uid ~fallback_uid path =
match find_type_and_uid ~env ~namespace path with
| Mty_alias path, fallback_uid ->
non_alias_declaration_uid ~fallback_uid path
| Mty_ident alias_path, fallback_uid
when namespace = Shape.Sig_component_kind.Module_type ->
non_alias_declaration_uid ~fallback_uid alias_path
| _, md_uid -> md_uid
| exception Not_found -> fallback_uid
in
non_alias_declaration_uid ~fallback_uid path
type find_source_result =
| Found of string
| Not_found of File.t
| Multiple_matches of string list
let find_source ~config loc =
log ~title:"find_source" "attempt to find %S"
loc.Location.loc_start.Lexing.pos_fname;
let fname = loc.Location.loc_start.Lexing.pos_fname in
let with_fallback = loc.Location.loc_ghost in
let file =
match File.of_filename fname with
| Some file -> file
| None ->
Preferences.src fname
in
let filename = File.name file in
let initial_path =
match File_switching.where_am_i () with
| None -> fname
| Some s -> s
in
log ~title:"find_source" "initial path: %S" initial_path;
let dir = Filename.dirname initial_path in
let dir =
match config.Mconfig.query.directory with
| "" -> dir
| cwd -> Misc.canonicalize_filename ~cwd dir
in
match Utils.find_all_matches ~config ~with_fallback file with
| [] ->
log ~title:"find_source" "failed to find %S in source path (fallback = %b)"
filename with_fallback;
log ~title:"find_source" "looking for %S in %S" (File.name file) dir;
begin
match Utils.find_file_with_path ~config ~with_fallback file [ dir ] with
| Some source -> Found source
| None -> (
log ~title:"find_source" "Trying to find %S in %S directly" fname dir;
try Found (Misc.find_in_path [ dir ] fname) with _ -> Not_found file)
end
| [ x ] -> Found x
| files -> (
log
~title:(sprintf "find_source(%s)" filename)
"multiple matches in the source path : %s"
(String.concat ~sep:" , " files);
try
match File_switching.source_digest () with
| None ->
log ~title:"find_source"
"... no source digest available to select the right one";
raise Not_found
| Some digest ->
log ~title:"find_source"
"... trying to use source digest to find the right one";
log ~title:"find_source" "Source digest: %s" (Digest.to_hex digest);
Found
(List.find files ~f:(fun f ->
let fdigest = Digest.file f in
log ~title:"find_source" " %s (%s)" f (Digest.to_hex fdigest);
fdigest = digest))
with Not_found -> (
log ~title:"find_source" "... using heuristic to select the right one";
log ~title:"find_source" "we are looking for a file named %s in %s" fname
dir;
let rev = String.reverse (Misc.canonicalize_filename ~cwd:dir fname) in
let lst =
List.map files ~f:(fun path ->
let path' = String.reverse path in
let priority =
(String.common_prefix_len rev path' * 2)
+ if Preferences.is_preferred path then 1 else 0
in
(priority, path))
in
let lst =
List.sort_uniq
~cmp:(fun ((i : int), s) ((j : int), t) ->
let tmp = compare j i in
if tmp <> 0 then tmp
else
match compare s t with
| 0 -> 0
| n -> (
match (File_id.get s, File_id.get t) with
| s', t' when File_id.check s' t' -> 0
| _ -> n))
lst
in
match lst with
| (i1, _) :: (i2, _) :: _ when i1 = i2 -> Multiple_matches files
| (_, s) :: _ -> Found s
| _ -> assert false))
let find_source ~config loc path =
let result =
match find_source ~config loc with
| Found _ as result -> result
| failure -> (
let fname = loc.Location.loc_start.Lexing.pos_fname in
match
let i = String.first_double_underscore_end fname in
let pos = i + 1 in
let fname = String.sub fname ~pos ~len:(String.length fname - pos) in
let loc =
let lstart =
{ loc.Location.loc_start with Lexing.pos_fname = fname }
in
{ loc with Location.loc_start = lstart }
in
find_source ~config loc
with
| Found _ as result -> result
| _ -> failure
| exception _ -> failure)
in
match (result : find_source_result) with
| Found src -> `Found (src, loc)
| Not_found f -> File.explain_not_found path f
| Multiple_matches lst ->
let matches = String.concat lst ~sep:", " in
`File_not_found
(sprintf
"Several source files in your path have the same name, and merlin \
doesn't know which is the right one: %s"
matches)
(** [find_loc_of_uid] uid's location are given by tables stored int he cmt files
for external compilation units or computed by Merlin for the current buffer.
This function lookups a uid's location in the appropriate table. *)
let find_loc_of_uid ~config ~local_defs uid comp_unit =
let title = "find_loc_of_uid" in
let loc_of_decl ~uid def =
match Typedtree_utils.location_of_declaration ~uid def with
| Some loc ->
log ~title "Found location: %a" Logger.fmt (fun fmt ->
Location.print_loc fmt loc.loc);
`Some (uid, loc.loc)
| None ->
log ~title "The declaration has no location.";
`None
in
if Env.get_unit_name () = comp_unit then begin
log ~title "We look for %a in the current compilation unit." Logger.fmt
(fun fmt -> Shape.Uid.print fmt uid);
log ~title "Looking for %a in the uid_to_loc table" Logger.fmt (fun fmt ->
Shape.Uid.print fmt uid);
let tbl = Ast_iterators.build_uid_to_locs_tbl ~local_defs () in
match Shape.Uid.Tbl.find_opt tbl uid with
| Some { Location.loc; _ } -> `Some (uid, loc)
| None ->
log ~title "Uid not found in the local table.";
`None
end
else begin
log ~title "Loading the cmt file for unit %S" comp_unit;
match load_cmt ~config comp_unit with
| Ok (_pos_fname, cmt) ->
log ~title "Shapes successfully loaded, looking for %a" Logger.fmt
(fun fmt -> Shape.Uid.print fmt uid);
begin
match Shape.Uid.Tbl.find_opt cmt.cmt_uid_to_decl uid with
| Some decl -> loc_of_decl ~uid decl
| None ->
log ~title "Uid not found in the cmt's table.";
`None
end
| _ ->
log ~title "Failed to load the cmt file";
`None
end
let find_loc_of_comp_unit ~config uid comp_unit =
let title = "find_loc_of_comp_unit" in
log ~title "Got the uid of a compilation unit: %s" comp_unit;
match load_cmt ~config comp_unit with
| Ok (pos_fname, _cmt) ->
let pos = Std.Lexing.make_pos ~pos_fname (1, 0) in
let loc = { Location.loc_start = pos; loc_end = pos; loc_ghost = true } in
`Some (uid, loc)
| _ ->
log ~title "Failed to load the CU's cmt";
`None
let find_definition_uid ~config ~env ~(decl : Env_lookup.item) path =
let namespace = decl.namespace in
let module Reduce = Shape_reduce.Make (struct
let fuel = 10
let read_unit_shape ~unit_name =
log ~title:"read_unit_shape" "inspecting %s" unit_name;
match
load_cmt
~config:{ config with ml_or_mli = `ML }
~with_fallback:false unit_name
with
| Ok (filename, cmt_infos) ->
move_to filename cmt_infos;
log ~title:"read_unit_shape" "shapes loaded for %s" unit_name;
cmt_infos.cmt_impl_shape
| Error () ->
log ~title:"read_unit_shape" "failed to find %s" unit_name;
None
end) in
let shape = Env.shape_of_path ~namespace env path in
log ~title:"shape_of_path" "initial: %a" Logger.fmt
(Fun.flip Shape.print shape);
let reduced = Reduce.reduce_for_uid env shape in
log ~title:"shape_of_path" "reduced: %a" Logger.fmt (fun fmt ->
Shape_reduce.print_result fmt reduced);
reduced
let rec uid_of_result ~traverse_aliases = function
| Shape_reduce.Resolved uid -> (Some uid, false)
| Resolved_alias
( (Item { comp_unit; _ } | Compilation_unit comp_unit),
(( Resolved_alias (Compilation_unit comp_unit', _)
| Resolved (Compilation_unit comp_unit') ) as rest) )
when let by = comp_unit ^ "__" in
String.is_prefixed ~by comp_unit' ->
log ~title:"uid_of_result" "Traversing wrapping alias: %s__ %s" comp_unit
comp_unit';
uid_of_result ~traverse_aliases rest
| Resolved_alias (_alias, rest) when traverse_aliases ->
uid_of_result ~traverse_aliases rest
| Resolved_alias (alias, _rest) -> (Some alias, false)
| Unresolved { uid = Some uid; desc = Comp_unit _; approximated } ->
(Some uid, approximated)
| Approximated _ | Unresolved _ | Internal_error_missing_uid -> (None, true)
(** This is the main function here *)
let from_path ~config ~env ~local_defs ~decl path =
let title = "from_path" in
let unalias (decl : Env_lookup.item) =
if not config.traverse_aliases then decl.uid
else
let namespace = decl.namespace in
let uid = scrape_alias ~fallback_uid:decl.uid ~env ~namespace path in
if uid <> decl.uid then
log ~title:"uid_of_path" "Unaliased declaration uid: %a -> %a"
Logger.fmt
(Fun.flip Shape.Uid.print decl.uid)
Logger.fmt
(Fun.flip Shape.Uid.print uid);
uid
in
let decl : Env_lookup.item = { decl with uid = unalias decl } in
let uid, approximated =
match config.ml_or_mli with
| `MLI -> (decl.uid, false)
| `ML -> (
let traverse_aliases = config.traverse_aliases in
let result = find_definition_uid ~config ~env ~decl path in
match uid_of_result ~traverse_aliases result with
| Some uid, approx -> (uid, approx)
| None, _approx ->
log ~title "No definition uid, falling back to the declaration uid: %a"
Logger.fmt
(Fun.flip Shape.Uid.print decl.uid);
(decl.uid, true))
in
let loc =
match uid with
| Predef s -> `Builtin (uid, s)
| Internal -> `Builtin (uid, "<internal>")
| Item { comp_unit; _ } -> find_loc_of_uid ~config ~local_defs uid comp_unit
| Compilation_unit comp_unit -> find_loc_of_comp_unit ~config uid comp_unit
in
let loc =
match loc with
| `None ->
log ~title "Falling back to the declaration's location: %a" Logger.fmt
(Fun.flip Location.print_loc decl.loc);
`Some (decl.uid, decl.loc)
| other -> other
in
match loc with
| `None -> assert false
| `Builtin _ as err -> err
| `Some (uid, loc) -> (
match find_source ~config:config.mconfig loc (Path.name path) with
| `Found (file, location) ->
log ~title:"find_source" "Found file: %s (%a)" file Logger.fmt
(Fun.flip Location.print_loc location);
`Found { uid; decl_uid = decl.uid; file; location; approximated }
| `File_not_found reason ->
`File_not_found
{ uid;
decl_uid = decl.uid;
file = reason;
location = loc;
approximated
})
let from_longident ~config ~env ~local_defs nss ident =
let str_ident =
try String.concat ~sep:"." (Longident.flatten ident)
with _ -> "Not a flat longident"
in
match Env_lookup.by_longident nss ident env with
| None -> `Not_in_env str_ident
| Some (path, decl) -> from_path ~config ~env ~local_defs ~decl path
let from_path ~config ~env ~local_defs ~namespace path =
File_switching.reset ();
match Env_lookup.by_path path namespace env with
| None -> `Not_in_env (Path.name path)
| Some decl -> from_path ~config ~env ~local_defs ~decl path
let infer_namespace ?namespaces ~pos lid browse is_label =
match namespaces with
| Some nss ->
if not is_label then `Ok (nss :> Env_lookup.Namespace.inferred list)
else if List.mem `Labels ~set:nss then (
log ~title:"from_string" "restricting namespaces to labels";
`Ok [ `Labels ])
else (
log ~title:"from_string"
"input is clearly a label, but the given namespaces don't cover that";
`Error `Missing_labels_namespace)
| None -> (
match
(Context.inspect_browse_tree ~cursor:pos lid [ browse ], is_label)
with
| None, _ ->
log ~title:"from_string" "already at origin, doing nothing";
`Error `At_origin
| Some (Label _ as ctxt), true | Some ctxt, false ->
log ~title:"from_string" "inferred context: %s" (Context.to_string ctxt);
`Ok (Env_lookup.Namespace.from_context ctxt)
| _, true ->
log ~title:"from_string"
"dropping inferred context, it is not precise enough";
`Ok [ `Labels ])
let from_string ~config ~env ~local_defs ~pos ?namespaces path =
File_switching.reset ();
let browse = Mbrowse.of_typedtree local_defs in
let lid = Type_utils.parse_longident path in
let from_lid lid =
let ident, is_label = Longident.keep_suffix lid in
match infer_namespace ?namespaces ~pos lid browse is_label with
| `Error e -> e
| `Ok nss ->
log ~title:"from_string"
"looking for the source of '%s' (prioritizing %s files)" path
(match config.ml_or_mli with
| `ML -> ".ml"
| `MLI -> ".mli");
from_longident ~config ~env ~local_defs nss ident
in
Option.value_map ~f:from_lid ~default:(`Not_found (path, None)) lid
let find_doc_attribute attrs =
let open Parsetree in
try
Some
(List.find_map attrs ~f:(fun attr ->
if
List.exists
[ "ocaml.doc"; "ocaml.text" ]
~f:(String.equal attr.attr_name.txt)
then Ast_helper.extract_str_payload attr.attr_payload
else None))
with Not_found -> None
let find_compunit_doc_in_typedtree cmt_infos =
let first_item_attribute =
log ~title:"doc_from_uid" "Itering on the typedtree";
match cmt_infos.Cmt_format.cmt_annots with
| Interface { sig_items = { sig_desc = Tsig_attribute attr; _ } :: _; _ } ->
Some attr
| Implementation
{ str_items = { str_desc = Tstr_attribute attr; _ } :: _; _ } ->
Some attr
| _ -> None
in
match first_item_attribute with
| None -> `No_documentation
| Some attr ->
log ~title:"doc_from_uid" "Found attributes for this uid";
begin
match find_doc_attribute [ attr ] with
| Some (doc, _) -> `Found_doc (doc |> String.trim)
| None -> `No_documentation
end
let doc_of_item_declaration decl =
let attributes =
match decl with
| Typedtree.Value { val_attributes; _ } -> val_attributes
| Value_binding { vb_attributes; _ } -> vb_attributes
| Type { typ_attributes; _ } -> typ_attributes
| Constructor { cd_attributes; _ } -> cd_attributes
| Extension_constructor { ext_attributes; _ } -> ext_attributes
| Label { ld_attributes; _ } -> ld_attributes
| Module { md_attributes; _ } -> md_attributes
| Module_substitution { ms_attributes; _ } -> ms_attributes
| Module_binding { mb_attributes; _ } -> mb_attributes
| Module_type { mtd_attributes; _ } -> mtd_attributes
| Class { ci_attributes; _ } | Class_type { ci_attributes; _ } ->
ci_attributes
in
match find_doc_attribute attributes with
| Some (doc, _) -> `Found_doc (doc |> String.trim)
| None -> `No_documentation
(** When we look for docstring in an external compilation unit we can perform a
uid-based search and return the attached comment in the attributes. This is
a more sound way to get documentation than resorting on the
[Ocamldoc.associate_comment] heuristic. *)
let find_uid_doc_in_cmt cmt_infos uid =
match uid with
| Shape.Uid.Compilation_unit _ ->
find_compunit_doc_in_typedtree cmt_infos
| _ -> begin
let decl =
Shape.Uid.Tbl.find_opt cmt_infos.Cmt_format.cmt_uid_to_decl uid
in
match decl with
| None -> `No_documentation
| Some decl -> begin
match doc_of_item_declaration decl with
| `Found_doc d -> `Found_doc d
| `No_documentation -> `Found_decl (uid, decl, cmt_infos.cmt_comments)
end
end
let doc_from_uid ~config ~loc uid =
begin
match uid with
| (Shape.Uid.Item { comp_unit; _ } | Shape.Uid.Compilation_unit comp_unit)
when Env.get_unit_name () <> comp_unit ->
log ~title:"get_doc"
"the doc (%a) you're looking for is in another\n\
\ compilation unit (%s)" Logger.fmt
(fun fmt -> Shape.Uid.print fmt uid)
comp_unit;
log ~title:"doc_from_uid" "Loading the cmt for unit %S" comp_unit;
begin
match load_cmt ~config:{ config with ml_or_mli = `MLI } comp_unit with
| Error _ -> `No_documentation
| Ok (_, cmt_infos) ->
log ~title:"doc_from_uid" "Cmt loaded for %s"
(Option.value ~default:"<>" cmt_infos.cmt_sourcefile);
find_uid_doc_in_cmt cmt_infos uid
end
| _ ->
`Found_loc loc
end
let ~after_only ~ loc =
let =
match File_switching.where_am_i () with
| None ->
log ~title:"get_doc" "Using reader's comment (current buffer)";
buffer_comments
| Some cmt_path ->
log ~title:"get_doc" "File switching: actually in %s" cmt_path;
let { Cmt_cache.cmt_infos; _ } = Cmt_cache.read cmt_path in
cmt_infos.Cmt_format.cmt_comments
in
log ~title:"get_doc" "%a" Logger.fmt (fun fmt ->
Format.fprintf fmt "looking around %a inside: [\n" Location.print_loc
!last_location;
List.iter comments ~f:(fun (c, l) ->
Format.fprintf fmt " (%S, %a);\n" c Location.print_loc l);
Format.fprintf fmt "]\n");
match Ocamldoc.associate_comment ~after_only comments loc !last_location with
| None, _ -> `No_documentation
| Some doc, _ -> `Found doc
let get_doc ~config:mconfig ~env ~local_defs ~ ~pos =
File_switching.reset ();
fun path ->
let_ref last_location Location.none @@ fun () ->
let config = { mconfig; ml_or_mli = `MLI; traverse_aliases = true } in
let doc_from_uid_result =
match path with
| `Completion_entry (namespace, path, _loc) ->
log ~title:"get_doc" "completion: looking for the doc of '%a'"
Logger.fmt (fun fmt -> Path.print fmt path);
let from_path = from_path ~config ~env ~local_defs ~namespace path in
begin
match from_path with
| `Found { uid; location = loc; _ }
| `File_not_found { uid; location = loc; _ } ->
doc_from_uid ~config ~loc uid
| (`Builtin _ | `Not_in_env _ | `Not_found _) as otherwise ->
otherwise
end
| `User_input path ->
log ~title:"get_doc" "looking for the doc of '%s'" path;
begin
match from_string ~config ~env ~local_defs ~pos path with
| `Found { uid; location = loc; _ }
| `File_not_found { uid; location = loc; _ } ->
doc_from_uid ~config ~loc uid
| `At_origin ->
`Found_loc
{ Location.loc_start = pos; loc_end = pos; loc_ghost = true }
| `Missing_labels_namespace -> `No_documentation
| (`Builtin _ | `Not_in_env _ | `Not_found _) as otherwise ->
otherwise
end
in
match doc_from_uid_result with
| `Found_doc doc -> `Found doc
| `Found_decl (uid, decl, ) -> (
match Typedtree_utils.location_of_declaration ~uid decl with
| None -> `No_documentation
| Some loc ->
let after_only =
match decl with
| Typedtree.Constructor _ | Label _ -> true
| _ -> false
in
doc_from_comment_list ~after_only ~buffer_comments:comments loc.loc)
| `Found_loc loc ->
let browse = Mbrowse.of_typedtree local_defs in
let _, deepest_before =
Mbrowse.(leaf_node @@ deepest_before loc.Location.loc_start [ browse ])
in
let after_only =
begin
match deepest_before with
| Browse_raw.Constructor_declaration _ -> true
| Label_declaration _ | Record_field _ | Row_field _ -> true
| _ -> false
end
in
doc_from_comment_list ~after_only ~buffer_comments:comments loc
| `Builtin _ -> begin
match path with
| `User_input path -> `Builtin path
| `Completion_entry (_, path, _) -> `Builtin (Path.name path)
end
| (`Not_found _ | `No_documentation | `Not_in_env _) as otherwise ->
otherwise