Source file locate.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
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
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
(* {{{ COPYING *(

     This file is part of Merlin, an helper for ocaml editors

     Copyright (C) 2013 - 2015  Frédéric Bour  <frederic.bour(_)lakaban.net>
                                Thomas Refis  <refis.thomas(_)gmail.com>
                                Simon Castellan  <simon.castellan(_)iuwt.fr>

     Permission is hereby granted, free of charge, to any person obtaining a
     copy of this software and associated documentation files (the "Software"),
     to deal in the Software without restriction, including without limitation the
     rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
     sell copies of the Software, and to permit persons to whom the Software is
     furnished to do so, subject to the following conditions:

     The above copyright notice and this permission notice shall be included in
     all copies or substantial portions of the Software.

     The Software is provided "as is", without warranty of any kind, express or
     implied, including but not limited to the warranties of merchantability,
     fitness for a particular purpose and noninfringement. In no event shall
     the authors or copyright holders be liable for any claim, damages or other
     liability, whether in an action of contract, tort or otherwise, arising
     from, out of or in connection with the software or the use or other dealings
     in the Software.

   )* }}} *)

open Std

let last_location = ref Location.none

let { Logger.log } = Logger.for_section "locate"
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 is_builtin_path = function
    | Path.Pident id -> Ident.is_predef id
    | _ -> false

  (* Reuse the code of [Misc.find_in_path_uncap] but returns all the files
     matching, instead of the first one. This is only used when looking for ml
     files, not cmts. Indeed for cmts we know that the load path will only ever
     contain files with uniq names; this in not the case for the "source path"
     however. We therefore get all matching files and use an heuristic at the
     call site to choose the appropriate file.

     Note: We do not refine the load path for module path as we used too. *)
  let find_all_in_path_uncap ?src_suffix_pair ~with_fallback path file =
    let name = File.with_ext ?src_suffix_pair file in
    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_uncap ?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.build_path config
end

let move_to filename cmt_infos =
  let digest =
    (* [None] only for packs, and we wouldn't have a trie if the cmt was for a
       pack. *)
    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 -> (
      (* If the source file was a post-processed file (.pp.mli?), use the
         regular .mli? file for locate. *)
      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 comp_unit ml_or_mli =
  Preferences.set ml_or_mli;
  let file = Preferences.build comp_unit in
  match Utils.find_file ~config ~with_fallback:true 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 ->
      (* This case is necessary to traverse module type aliases *)
      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

let uid_of_path ~config ~env ~ml_or_mli ~decl_uid path namespace =
  let module Shape_reduce = Shape.Make_reduce (struct
    type env = Env.t

    let fuel = 10

    let read_unit_shape ~unit_name =
      log ~title:"read_unit_shape" "inspecting %s" unit_name;
      match load_cmt ~config unit_name `ML 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

    let find_shape env id =
      Env.shape_of_path ~namespace:Shape.Sig_component_kind.Module env
        (Pident id)
  end) in
  let unalias fallback_uid =
    let uid = scrape_alias ~fallback_uid ~env ~namespace path in
    log ~title:"uid_of_path" "Unaliasing uid: %a -> %a" Logger.fmt
      (fun fmt -> Shape.Uid.print fmt fallback_uid)
      Logger.fmt
      (fun fmt -> Shape.Uid.print fmt uid);
    uid
  in
  match ml_or_mli with
  | `MLI -> unalias decl_uid
  | `ML -> (
    let shape = Env.shape_of_path ~namespace env path in
    log ~title:"shape_of_path" "initial: %a" Logger.fmt (fun fmt ->
        Shape.print fmt shape);
    let r = Shape_reduce.weak_reduce env shape in
    log ~title:"shape_of_path" "reduced: %a" Logger.fmt (fun fmt ->
        Shape.print fmt r);
    match r.uid with
    | Some uid -> uid
    | None ->
      log ~title:"shape_of_path" "No uid found; fallbacking to declaration uid";
      unalias decl_uid)

let from_uid ~config ~ml_or_mli uid loc path =
  let loc_of_comp_unit comp_unit =
    match load_cmt ~config comp_unit ml_or_mli 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 loc
    | _ -> None
  in
  let title = "from_uid" in
  match uid with
  | Shape.Uid.Item { comp_unit; _ } ->
    let locopt =
      let log_and_return msg =
        log ~title msg;
        None
      in
      let uid_to_loc_tbl =
        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);
          Some (Env.get_uid_to_loc_tbl ())
        end
        else begin
          log ~title "Loading the cmt for unit %S" comp_unit;
          match load_cmt ~config comp_unit ml_or_mli with
          | Ok (_pos_fname, cmt) -> Some cmt.cmt_uid_to_loc
          | Error () -> log_and_return "Failed to load the cmt file."
        end
      in
      Option.bind uid_to_loc_tbl ~f:(fun tbl ->
          log ~title "Looking for %a in the uid_to_loc table" Logger.fmt
            (fun fmt -> Shape.Uid.print fmt uid);
          match Shape.Uid.Tbl.find_opt tbl uid with
          | Some loc ->
            log ~title "Found location: %a" Logger.fmt (fun fmt ->
                Location.print_loc fmt loc);
            Some (uid, loc)
          | None -> log_and_return "Uid not found in the table.")
    in
    begin
      match locopt with
      | Some (uid, loc) -> `Found (Some uid, loc)
      | None ->
        log ~title "Fallbacking to lookup location: %a" Logger.fmt (fun fmt ->
            Location.print_loc fmt loc);
        `Found (Some uid, loc)
    end
  | Compilation_unit comp_unit -> begin
    log ~title "Got the uid of a compilation unit: %a" Logger.fmt (fun fmt ->
        Shape.Uid.print fmt uid);
    match loc_of_comp_unit comp_unit with
    | Some loc -> `Found (Some uid, loc)
    | _ ->
      log ~title "Failed to load the CU's cmt";
      `Not_found (Path.name path, None)
  end
  | Predef _ | Internal -> assert false

let locate ~config ~env ~ml_or_mli decl_uid loc path ns =
  let uid = uid_of_path ~config ~env ~ml_or_mli ~decl_uid path ns in
  from_uid ~config ~ml_or_mli uid loc path

let path_and_loc_of_cstr desc _ =
  let open Types in
  match desc.cstr_tag with
  | Cstr_extension (path, _) -> (path, desc.cstr_loc)
  | _ -> (
    match get_desc desc.cstr_res with
    | Tconstr (path, _, _) -> (path, desc.cstr_loc)
    | _ -> assert false)

let path_and_loc_from_label desc env =
  let open Types in
  match get_desc desc.lbl_res with
  | Tconstr (path, _, _) ->
    let typ_decl = Env.find_type path env in
    (path, typ_decl.Types.type_loc)
  | _ -> assert false

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 ->
      (* no extension? we have to decide. *)
      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
  let dir = Filename.dirname initial_path in
  let dir =
    match Mconfig.(config.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 =
        (* TODO: remove duplicates in [source_path] instead of using
           [sort_uniq] here. *)
        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 -> (
                (* Check if we are referring to the same files.
                    Especially useful on OSX case-insensitive FS.
                    FIXME: May be able handle symlinks and non-existing files,
                    CHECK *)
                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))

(* Well, that's just another hack.
   [find_source] doesn't like the "-o" option of the compiler. This hack handles
   Jane Street specific use case where "-o" is used to prefix a unit name by the
   name of the library which contains it. *)
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 with
  | Found src -> `Found (Some src, loc.Location.loc_start)
  | 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)

module Namespace = struct
  type all = Namespace.t

  type under_type = [ `Constr | `Labels ]

  type t =
    (* TODO: share with [Namespace.t] *)
    [ `Type | `Mod | `Modtype | `Vals | under_type ]

  type inferred =
    [ t
    | `This_label of Types.label_description
    | `This_cstr of Types.constructor_description ]

  let from_context : Context.t -> inferred list = function
    | Type -> [ `Type; `Mod; `Modtype; `Constr; `Labels; `Vals ]
    | Module_type -> [ `Modtype; `Mod; `Type; `Constr; `Labels; `Vals ]
    | Expr | Constant -> [ `Vals; `Mod; `Modtype; `Constr; `Labels; `Type ]
    | Patt -> [ `Mod; `Modtype; `Type; `Constr; `Labels; `Vals ]
    | Unknown -> [ `Vals; `Type; `Constr; `Mod; `Modtype; `Labels ]
    | Label lbl -> [ `This_label lbl ]
    | Module_path -> [ `Mod ]
    | Constructor (c, _) -> [ `This_cstr c ]
end

module Env_lookup : sig
  val loc :
    Path.t ->
    Namespace.all ->
    Env.t ->
    (Location.t * Shape.Uid.t * Shape.Sig_component_kind.t) option

  val in_namespaces :
    Namespace.inferred list ->
    Longident.t ->
    Env.t ->
    (Path.t * Shape.Sig_component_kind.t * Shape.Uid.t * Location.t) option
end = struct
  let loc path (namespace : Namespace.all) env =
    try
      Some
        (match namespace with
        | `Unknown | `Apply | `Vals ->
          let vd = Env.find_value path env in
          (vd.val_loc, vd.val_uid, Shape.Sig_component_kind.Value)
        | `Constr | `Labels | `Type ->
          let td = Env.find_type path env in
          (td.type_loc, td.type_uid, Shape.Sig_component_kind.Type)
        | `Functor | `Mod ->
          let md = Env.find_module path env in
          (md.md_loc, md.md_uid, Shape.Sig_component_kind.Module)
        | `Modtype ->
          let mtd = Env.find_modtype path env in
          (mtd.mtd_loc, mtd.mtd_uid, Shape.Sig_component_kind.Module_type))
    with Not_found -> None

  exception
    Found of (Path.t * Shape.Sig_component_kind.t * Shape.Uid.t * Location.t)

  let in_namespaces (nss : Namespace.inferred list) ident env =
    let open Shape.Sig_component_kind in
    try
      List.iter nss ~f:(fun namespace ->
          try
            match namespace with
            | `This_cstr ({ Types.cstr_tag = Cstr_extension _; _ } as cd) ->
              log ~title:"lookup" "got extension constructor";
              let path, loc = path_and_loc_of_cstr cd env in
              (* TODO: Use [`Constr] here instead of [`Type] *)
              raise (Found (path, Extension_constructor, cd.cstr_uid, loc))
            | `This_cstr cd ->
              log ~title:"lookup"
                "got constructor, fetching path and loc in type namespace";
              let path, loc = path_and_loc_of_cstr cd env in
              (* TODO: Use [`Constr] here instead of [`Type] *)
              raise (Found (path, Type, cd.cstr_uid, loc))
            | `Constr ->
              log ~title:"lookup" "lookup in constructor namespace";
              let cd = Env.find_constructor_by_name ident env in
              let path, loc = path_and_loc_of_cstr cd env in
              (* TODO: Use [`Constr] here instead of [`Type] *)
              raise (Found (path, Type, cd.cstr_uid, loc))
            | `Mod ->
              log ~title:"lookup" "lookup in module namespace";
              let path, md = Env.find_module_by_name ident env in
              raise (Found (path, Module, md.md_uid, md.Types.md_loc))
            | `Modtype ->
              log ~title:"lookup" "lookup in module type namespace";
              let path, mtd = Env.find_modtype_by_name ident env in
              raise (Found (path, Module_type, mtd.mtd_uid, mtd.Types.mtd_loc))
            | `Type ->
              log ~title:"lookup" "lookup in type namespace";
              let path, typ_decl = Env.find_type_by_name ident env in
              raise
                (Found (path, Type, typ_decl.type_uid, typ_decl.Types.type_loc))
            | `Vals ->
              log ~title:"lookup" "lookup in value namespace";
              let path, val_desc = Env.find_value_by_name ident env in
              raise
                (Found (path, Value, val_desc.val_uid, val_desc.Types.val_loc))
            | `This_label lbl ->
              log ~title:"lookup"
                "got label, fetching path and loc in type namespace";
              let path, loc = path_and_loc_from_label lbl env in
              (* TODO: Use [`Labels] here instead of [`Type] *)
              raise (Found (path, Type, lbl.lbl_uid, loc))
            | `Labels ->
              log ~title:"lookup" "lookup in label namespace";
              let lbl = Env.find_label_by_name ident env in
              let path, loc = path_and_loc_from_label lbl env in
              (* TODO: Use [`Labels] here instead of [`Type] *)
              raise (Found (path, Type, lbl.lbl_uid, loc))
          with Not_found -> ());
      log ~title:"lookup" "   ... not in the environment";
      None
    with Found ((path, namespace, decl_uid, _loc) as x) ->
      log ~title:"env_lookup" "found: '%a' in namespace %s with uid %a"
        Logger.fmt
        (fun fmt -> Path.print fmt path)
        (Shape.Sig_component_kind.to_string namespace)
        Logger.fmt
        (fun fmt -> Shape.Uid.print fmt decl_uid);
      Some x
end

let uid_from_longident ~config ~env nss ml_or_mli ident =
  let str_ident =
    try String.concat ~sep:"." (Longident.flatten ident)
    with _ -> "Not a flat longident"
  in
  match Env_lookup.in_namespaces nss ident env with
  | None -> `Not_in_env str_ident
  | Some (path, namespace, decl_uid, loc) ->
    if Utils.is_builtin_path path then `Builtin
    else
      let uid = uid_of_path ~config ~env ~ml_or_mli ~decl_uid path namespace in
      `Uid (uid, loc, path)

let from_longident ~config ~env nss ml_or_mli ident =
  match uid_from_longident ~config ~env nss ml_or_mli ident with
  | `Uid (uid, loc, path) -> from_uid ~config ~ml_or_mli uid loc path
  | (`Builtin | `Not_in_env _) as v -> v

let from_path ~config ~env ~namespace ml_or_mli path =
  File_switching.reset ();
  if Utils.is_builtin_path path then `Builtin
  else
    match Env_lookup.loc path namespace env with
    | None -> `Not_in_env (Path.name path)
    | Some (loc, uid, namespace) -> (
      match locate ~config ~env ~ml_or_mli uid loc path namespace with
      | (`Not_found _ | `File_not_found _) as err -> err
      | `Found (uid, loc) -> (
        match find_source ~config loc (Path.name path) with
        | `Found (file, loc) -> `Found (uid, file, loc)
        | `File_not_found _ as otherwise -> otherwise))

let infer_namespace ?namespaces ~pos lid browse is_label =
  match namespaces with
  | Some nss ->
    if not is_label then `Ok (nss :> 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 (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 switch 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 switch with
        | `ML -> ".ml"
        | `MLI -> ".mli");
      match from_longident ~config ~env nss switch ident with
      | (`File_not_found _ | `Not_found _ | `Not_in_env _) as err -> err
      | `Builtin -> `Builtin path
      | `Found (uid, loc) -> (
        match find_source ~config loc path with
        | `Found (file, loc) -> `Found (uid, file, loc)
        | `File_not_found _ as otherwise -> otherwise))
  in
  Option.value_map ~f:from_lid ~default:(`Not_found (path, None)) lid

(* In a future release of OCaml the cmt's uid_to_loc table will contain
   fragments of the typedtree that might be used to get the docstrings without
   relying on this iteration *)

(** When we look for docstring in 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_doc_attributes_in_typedtree ~config ~comp_unit uid =
  let exception Found_attributes of Typedtree.attributes in
  let test elt_uid attributes =
    if Shape.Uid.equal uid elt_uid then raise (Found_attributes attributes)
  in
  let iterator =
    let first_item = ref true in
    let uid_is_comp_unit =
      match uid with
      | Shape.Uid.Compilation_unit _ -> true
      | _ -> false
    in
    fun env ->
      { Tast_iterator.default_iterator with
        (* Needed to return top-level module doc (when the uid is a compunit).
           The module docstring must be the first signature or structure item *)
        signature_item =
          (fun sub ({ sig_desc; _ } as si) ->
            begin
              match (sig_desc, !first_item, uid_is_comp_unit) with
              | Tsig_attribute attr, true, true ->
                raise (Found_attributes [ attr ])
              | _, false, true -> raise Not_found
              | _, _, _ -> first_item := false
            end;
            Tast_iterator.default_iterator.signature_item sub si);
        structure_item =
          (fun sub ({ str_desc; _ } as sti) ->
            begin
              match (str_desc, !first_item, uid_is_comp_unit) with
              | Tstr_attribute attr, true, true ->
                raise (Found_attributes [ attr ])
              | _, false, true -> raise Not_found
              | _, _, _ -> first_item := false
            end;
            Tast_iterator.default_iterator.structure_item sub sti);
        value_description =
          (fun sub ({ val_val; val_attributes; _ } as vd) ->
            test val_val.val_uid val_attributes;
            Tast_iterator.default_iterator.value_description sub vd);
        type_declaration =
          (fun sub ({ typ_type; typ_attributes; _ } as td) ->
            test typ_type.type_uid typ_attributes;
            Tast_iterator.default_iterator.type_declaration sub td);
        value_binding =
          (fun sub ({ vb_pat; vb_attributes; _ } as vb) ->
            let pat_var_iter ~f pat =
              let rec aux pat =
                let open Typedtree in
                match pat.pat_desc with
                | Tpat_var (id, _) -> f id
                | Tpat_alias (pat, _, _)
                | Tpat_variant (_, Some pat, _)
                | Tpat_lazy pat
                | Tpat_or (pat, _, _) -> aux pat
                | Tpat_tuple pats
                | Tpat_construct (_, _, pats, _)
                | Tpat_array pats -> List.iter ~f:aux pats
                | Tpat_record (pats, _) ->
                  List.iter ~f:(fun (_, _, pat) -> aux pat) pats
                | _ -> ()
              in
              aux pat
            in
            pat_var_iter vb_pat ~f:(fun id ->
                try
                  let vd = Env.find_value (Pident id) env in
                  test vd.val_uid vb_attributes
                with Not_found -> ());
            Tast_iterator.default_iterator.value_binding sub vb)
      }
  in
  let typedtree =
    log ~title:"doc_from_uid" "Loading the cmt for unit %S" comp_unit;
    match load_cmt ~config comp_unit `MLI with
    | Ok (_, cmt_infos) ->
      log ~title:"doc_from_uid" "Cmt loaded, itering on the typedtree";
      begin
        match cmt_infos.cmt_annots with
        | Interface s ->
          Some
            (`Interface
              { s with
                sig_final_env = Envaux.env_of_only_summary s.sig_final_env
              })
        | Implementation str ->
          Some
            (`Implementation
              { str with
                str_final_env = Envaux.env_of_only_summary str.str_final_env
              })
        | _ -> None
      end
    | Error _ -> None
  in
  try
    begin
      match typedtree with
      | Some (`Interface s) ->
        let iterator = iterator s.sig_final_env in
        iterator.signature iterator s;
        log ~title:"doc_from_uid" "uid not found in the signature"
      | Some (`Implementation str) ->
        let iterator = iterator str.str_final_env in
        iterator.structure iterator str;
        log ~title:"doc_from_uid" "uid not found in the implementation"
      | _ -> ()
    end;
    `No_documentation
  with
  | Found_attributes attrs ->
    log ~title:"doc_from_uid" "Found attributes for this uid";
    let parse_attributes 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
    in
    begin
      match parse_attributes attrs with
      | Some (doc, _) -> `Found (doc |> String.trim)
      | None -> `No_documentation
    end
  | Not_found -> `No_documentation

let doc_from_uid ~config ~loc uid =
  begin
    match uid with
    | Some (Shape.Uid.Item { comp_unit; _ } as uid)
    | Some (Shape.Uid.Compilation_unit comp_unit as uid)
      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;
      match find_doc_attributes_in_typedtree ~config ~comp_unit uid with
      | `Found doc -> `Found_doc doc
      | `No_documentation ->
        (* We fallback on the legacy heuristic to handle some unproper
           doc placement. See test [unattached-comment.t] *)
        `Found_loc loc)
    | _ ->
      (* Uid based search doesn't works in the current CU since Merlin's parser
         does not attach doc comments to the typedtree *)
      `Found_loc loc
  end

let doc_from_comment_list ~local_defs ~buffer_comments loc =
  (* When the doc we look for is in the current buffer or if search by uid
     has failed we use an alternative heuristic since Merlin's pure parser
     does not poulates doc attributes in the typedtree. *)
  let comments =
    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");
  let browse = Mbrowse.of_typedtree local_defs in
  let _, deepest_before =
    Mbrowse.(leaf_node @@ deepest_before loc.Location.loc_start [ browse ])
  in
  (* based on https://v2.ocaml.org/manual/doccomments.html#ss:label-comments: *)
  let after_only =
    begin
      match deepest_before with
      | Browse_raw.Constructor_declaration _ -> true
      (* The remaining `true` cases are currently not reachable *)
      | Label_declaration _ | Record_field _ | Row_field _ -> true
      | _ -> false
    end
  in
  match Ocamldoc.associate_comment ~after_only comments loc !last_location with
  | None, _ -> `No_documentation
  | Some doc, _ -> `Found doc

let get_doc ~config ~env ~local_defs ~comments ~pos =
  File_switching.reset ();
  fun path ->
    let_ref last_location Location.none @@ fun () ->
    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 ~namespace `MLI path in
        begin
          match from_path with
          | `Found (uid, _, pos) ->
            let loc : Location.t =
              { loc_start = pos; loc_end = pos; loc_ghost = true }
            in
            doc_from_uid ~config ~loc uid
          | (`Builtin | `Not_in_env _ | `File_not_found _ | `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 `MLI path with
          | `Found (uid, _, pos) ->
            let loc : Location.t =
              { loc_start = pos; loc_end = pos; loc_ghost = true }
            in
            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 _ -> `Builtin
          | (`Not_in_env _ | `Not_found _ | `File_not_found _) as otherwise ->
            otherwise
        end
    in
    match doc_from_uid_result with
    | `Found_doc doc -> `Found doc
    | `Found_loc loc ->
      doc_from_comment_list ~local_defs ~buffer_comments:comments loc
    | `Builtin -> begin
      match path with
      | `User_input path -> `Builtin path
      | `Completion_entry (_, path, _) -> `Builtin (Path.name path)
    end
    | (`File_not_found _ | `Not_found _ | `No_documentation | `Not_in_env _) as
      otherwise -> otherwise