package odoc

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Source file env.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
open Odoc_compat

(*
 * Copyright (c) 2014 Leo White <leo@lpw25.net>
 *
 * Permission to use, copy, modify, and distribute this software for any
 * purpose with or without fee is hereby granted, provided that the above
 * copyright notice and this permission notice appear in all copies.
 *
 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 *)


(* We are slightly more flexible here than OCaml usually is, and allow
   'linking' of modules that have the same name. This is because we do
   documentation at a package level - it's perfectly acceptable to have
   libraries within a package that are never meant to be linked into the same
   binary, however package-level documents such as module and type indexes
   effectively have to link those libraries together. Hence we may find
   ourselves in the unfortunate situation where there are multiple modules with the same
   name in our include path. We therefore maintain a mapping of module/page
   name to Root _list_. Where we've already made a judgement about which module
   we're looking for we have a digest, and can pick the correct module. When we
   don't (for example, when handling package-level mld files), we pick the
   first right now. The ocamldoc syntax doesn't currently allow for specifying
   more accurately than just the module name anyway.

   Where we notice this ambiguity we warn the user to wrap their libraries,
   which will generally fix this issue. *)

open Or_error

type t = {
  expander : Odoc_xref.expander ;
  resolver : Odoc_xref.resolver ;
}

module Accessible_paths = struct
  type t = {
    root_map : Fs.File.t Odoc_model.Root.Hash_table.t;
    file_map : (string, Odoc_model.Root.t list) Hashtbl.t;
    directories : Fs.Directory.t list;
  }

  let create ~directories =
    { root_map = Odoc_model.Root.Hash_table.create 42
    ; file_map = Hashtbl.create 42
    ; directories }

  let find_file_by_name t name =
    let uname = name ^ ".odoc" in
    let lname = String.uncapitalize_ascii name ^ ".odoc" in
    let rec loop acc = function
      | [] -> acc
      | directory :: dirs ->
        let lfile = Fs.File.create ~directory ~name:lname in
        match Unix.stat (Fs.File.to_string lfile) with
        | _ -> loop (lfile::acc) dirs
        | exception Unix.Unix_error _ ->
          let ufile = Fs.File.create ~directory ~name:uname in
          match Unix.stat (Fs.File.to_string ufile) with
          | _ -> loop (ufile::acc) dirs
          | exception Unix.Unix_error _ ->
            loop acc dirs
    in
    loop [] t.directories

  (* If there's only one possible file we've discovered in the search path
     we can check the digest right now. If there's more than one, we defer
     until further up the call stack *)
  let check_optional_digest ?digest filename (roots : Odoc_model.Root.t list) =
    match roots, digest with
    | [root], Some d when Digest.compare d root.digest <> 0 ->
      let warning = Odoc_model.Error.filename_only "Digest mismatch" filename in
      prerr_endline (Odoc_model.Error.to_string warning);
      roots
    | _ ->
      roots

  let find_root t ~filename =
    match Hashtbl.find t.file_map filename with
    | roots -> roots
    | exception Not_found ->
      let paths = find_file_by_name t filename in
      (* This could be the empty list *)
      let filter_map f l =
        List.fold_right (fun x acc -> match f x with | Some y -> y::acc | None -> acc) l []
      in
      let safe_read file =
        match Root.read file with
        | Ok root -> Some (root, file)
        | Error (`Msg msg) ->
          let warning = Odoc_model.Error.filename_only msg (Fs.File.to_string file) in
          prerr_endline (Odoc_model.Error.to_string warning);
          None
        | exception End_of_file ->
          let warning = Odoc_model.Error.filename_only "End_of_file while reading" (Fs.File.to_string file) in
          prerr_endline (Odoc_model.Error.to_string warning);
          None
      in
      let roots_paths = filter_map safe_read paths in
      let roots = List.map fst roots_paths in
      Hashtbl.add t.file_map filename roots;
      List.iter (fun (root, path) ->
        Odoc_model.Root.Hash_table.add t.root_map root path) roots_paths;
      roots

  let file_of_root t root =
    try Odoc_model.Root.Hash_table.find t.root_map root
    with Not_found ->
      let _roots =
        match root.file with
        | Page page_name ->
          let filename = "page-" ^ page_name in
          check_optional_digest ~digest:root.digest filename @@ find_root t ~filename
        | Compilation_unit { name; _ } ->
          check_optional_digest ~digest:root.digest name @@ find_root t ~filename:name
      in
      Odoc_model.Root.Hash_table.find t.root_map root
end

let rec lookup_unit ~important_digests ap target_name =
  let handle_root (root : Odoc_model.Root.t) = match root.file with
    | Compilation_unit {hidden; _} -> Odoc_xref.Found {root; hidden}
    | Page _ -> assert false
  in
  let find_root ~digest =
    match Accessible_paths.find_root ap ~filename:target_name, digest with
    | [], _ -> Odoc_xref.Not_found
    | [r], _ -> handle_root r (* Already checked the digest, if one's been specified *)
    | r :: rs, None ->
      Printf.fprintf stderr "Warning, ambiguous lookup. Please wrap your libraries. Possible files:\n%!";
      let files_strs =
        List.map (fun root ->
          Accessible_paths.file_of_root ap root
          |> Fs.File.to_string
          |> Printf.sprintf "  %s") (r::rs)
      in
      prerr_endline (String.concat "\n" files_strs);
      (* We've not specified a digest, let's try the first one *)
      handle_root r
    | roots, Some d ->
      (* If we can't find a module that matches the digest, return Not_found *)
      try handle_root @@ List.find (fun root -> root.Odoc_model.Root.digest = d) roots
      with Not_found -> Odoc_xref.Not_found
  in
  function
  | [] when important_digests -> Odoc_xref.Not_found
  | [] -> find_root ~digest:None
  | import :: imports ->
    match import with
    | Odoc_model.Lang.Compilation_unit.Import.Unresolved (name, digest)
      when name = target_name ->
      begin match digest with
      | None when important_digests -> Forward_reference
      | _ -> find_root ~digest
      end
    | Odoc_model.Lang.Compilation_unit.Import.Resolved root
      when Odoc_model.Root.Odoc_file.name root.file =
          target_name -> begin
        match root.file with
        | Compilation_unit {hidden; _} -> Found {root; hidden}
        | Page _ -> assert false
      end
    | _ -> lookup_unit ~important_digests ap target_name imports

let lookup_page ap target_name =
  match Accessible_paths.find_root ap ~filename:("page-" ^ target_name) with
  | [] -> None
  | [root] -> Some root
  | root :: _roots -> Some root

let fetch_page ap root =
  match Accessible_paths.file_of_root ap root with
  | path -> Page.load path
  | exception Not_found ->
    let msg =
      Printf.sprintf "No unit for root: %s\n%!" (Odoc_model.Root.to_string root)
    in
    Error (`Msg msg)

let fetch_unit ap root =
  match Accessible_paths.file_of_root ap root with
  | path -> Compilation_unit.load path
  | exception Not_found ->
    let msg =
      Printf.sprintf "No unit for root: %s\n%!" (Odoc_model.Root.to_string root)
    in
    Error (`Msg msg)

type builder = [ `Unit of Compilation_unit.t | `Page of Page.t ] -> t

let create ?(important_digests=true) ~directories : builder =
  let ap = Accessible_paths.create ~directories in
  fun unit_or_page ->
    let lookup_unit target_name : Odoc_xref.lookup_result =
      match unit_or_page with
      | `Page _ -> lookup_unit ~important_digests:false ap target_name []
      | `Unit unit ->
        let lookup_result =
          lookup_unit
            ~important_digests
            ap
            target_name
            unit.Odoc_model.Lang.Compilation_unit.imports
        in
        match lookup_result with
        | Not_found -> begin
            let root = Compilation_unit.root unit in
            match root.file with
            | Page _ -> assert false
            | Compilation_unit {name;hidden} when target_name = name ->
              Found { root; hidden }
            | Compilation_unit _ -> Not_found
          end
        | x -> x
    in
    let fetch_unit root : (Odoc_model.Lang.Compilation_unit.t, _) Result.result =
      match unit_or_page with
      | `Page _ -> fetch_unit ap root
      | `Unit unit ->
        let current_root = Compilation_unit.root unit in
        if Odoc_model.Root.equal root current_root then
          Ok unit
        else
          fetch_unit ap root
    in
    let lookup_page target_name = lookup_page ap target_name in
    let fetch_page root : (Odoc_model.Lang.Page.t, _) Result.result =
      match unit_or_page with
      | `Unit _ -> fetch_page ap root
      | `Page page ->
        let current_root = Page.root page in
        if Odoc_model.Root.equal root current_root then
          Ok page
        else
          fetch_page ap root
    in
    let resolver =
      Odoc_xref.build_resolver lookup_unit fetch_unit lookup_page fetch_page
    in
    let expander =
      (* CR trefis: what is the ~root param good for? *)
      let fetch ~root:_ root = fetch_unit root in
      let lookup _ s = lookup_unit s in
      Odoc_xref.build_expander (lookup ()) fetch
    in
    { expander; resolver }

let build builder unit =
  builder unit

let resolver t = t.resolver
let expander t = t.expander
OCaml

Innovation. Community. Security.