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
open Astring
open Odoc_model
open Odoc_model.Names
open Or_error
type parent_spec =
| Explicit of Paths.Identifier.ContainerPage.t * Lang.Page.child list
| Package of Paths.Identifier.ContainerPage.t
| Noparent
type parent_cli_spec =
| CliParent of string
| CliPackage of string
| CliNoparent
let check_is_none msg = function None -> Ok () | Some _ -> Error (`Msg msg)
let check_is_empty msg = function [] -> Ok () | _ :: _ -> Error (`Msg msg)
(** Raises warnings and errors. *)
let lookup_implementation_of_cmti intf_file =
let input_file = Fs.File.set_ext ".cmt" intf_file in
if Fs.File.exists input_file then
let filename = Fs.File.to_string input_file in
Odoc_loader.read_cmt_infos ~filename |> Error.raise_errors_and_warnings
else (
Error.raise_warning ~non_fatal:true
(Error.filename_only
"No implementation file found for the given interface"
(Fs.File.to_string intf_file));
(None, []))
(** Used to disambiguate child references. *)
let is_module_name n = String.length n > 0 && Char.Ascii.is_upper n.[0]
(** Accepted child references:
- [page-foo] child is a container or leaf page.
- [module-Foo] child is a module.
- [module-foo], [Foo] child is a module, for backward compatibility.
Parses [...-"foo"] as [...-foo] for backward compatibility. *)
let parse_parent_child_reference s =
let unquote s =
let len = String.length s in
if String.head s = Some '"' && String.head ~rev:true s = Some '"' && len > 1
then String.with_range ~first:1 ~len:(len - 2) s
else s
in
match String.cut ~sep:"-" s with
| Some ("page", n) -> Ok (Lang.Page.Page_child (unquote n))
| Some ("src", n) -> Ok (Source_tree_child (unquote n))
| Some ("module", n) ->
Ok (Module_child (unquote (String.Ascii.capitalize n)))
| Some (k, _) -> Error (`Msg ("Unrecognized kind: " ^ k))
| None -> if is_module_name s then Ok (Module_child s) else Ok (Page_child s)
let resolve_parent_page resolver f =
let find_parent = function
| Lang.Page.Page_child p -> (
match Resolver.lookup_page resolver p with
| Some r -> Ok r
| None -> Error (`Msg "Couldn't find specified parent page"))
| Source_tree_child _ | Module_child _ ->
Error (`Msg "Expecting page as parent")
in
let = function
| { Paths.Identifier.iv = `Page _; _ } as container -> Ok container
| _ -> Error (`Msg "Specified parent is not a parent of this file")
in
parse_parent_child_reference f >>= fun r ->
find_parent r >>= fun page ->
extract_parent page.name >>= fun parent -> Ok (parent, page.children)
let parent resolver parent_cli_spec =
match parent_cli_spec with
| CliParent f ->
resolve_parent_page resolver f >>= fun (parent, children) ->
Ok (Explicit (parent, children))
| CliPackage package ->
Ok (Package (Paths.Identifier.Mk.page (None, PageName.make_std package)))
| CliNoparent -> Ok Noparent
let resolve_imports resolver imports =
List.map
(function
| Lang.Compilation_unit.Import.Resolved _ as resolved -> resolved
| Unresolved (name, _) as unresolved -> (
match Resolver.resolve_import resolver name with
| Some root -> Resolved (root, Names.ModuleName.make_std name)
| None -> unresolved))
imports
(** Raises warnings and errors. *)
let resolve_and_substitute ~resolver ~make_root ~source ~hidden
~count_occurrences (parent : Paths.Identifier.ContainerPage.t option)
input_file input_type =
let filename = Fs.File.to_string input_file in
let should_read_impl = source <> None || count_occurrences in
let unit, (impl_shape, local_jmp) =
match input_type with
| `Cmti ->
let unit =
Odoc_loader.read_cmti ~make_root ~parent ~filename
|> Error.raise_errors_and_warnings
and cmt_infos =
if should_read_impl then lookup_implementation_of_cmti input_file
else (None, [])
in
(unit, cmt_infos)
| `Cmt ->
Odoc_loader.read_cmt ~make_root ~parent ~filename
|> Error.raise_errors_and_warnings
| `Cmi ->
let unit =
Odoc_loader.read_cmi ~make_root ~parent ~filename
|> Error.raise_errors_and_warnings
and cmt_infos =
if should_read_impl then lookup_implementation_of_cmti input_file
else (None, [])
in
(unit, cmt_infos)
in
let unit = { unit with hidden = hidden || unit.hidden } in
let source_info =
let infos = Odoc_loader.Source_info.of_local_jmp local_jmp in
{
Lang.Source_info.id = source;
infos = List.rev_append infos unit.source_info.infos;
}
in
if not unit.Lang.Compilation_unit.interface then
Printf.eprintf "WARNING: not processing the \"interface\" file.%s\n%!"
(if not (Filename.check_suffix filename "cmt") then ""
else
Printf.sprintf " Using %S while you should use the .cmti file" filename);
let unit =
{ unit with imports = resolve_imports resolver unit.imports; source_info }
in
let env = Resolver.build_compile_env_for_unit resolver impl_shape unit in
let compiled =
Odoc_xref2.Compile.compile ~filename env unit |> Error.raise_warnings
in
(compiled, impl_shape)
let root_of_compilation_unit ~parent_spec ~hidden ~output ~module_name ~digest =
let open Root in
let filename =
Filename.chop_extension Fs.File.(to_string @@ basename output)
in
let result parent =
let file = Odoc_file.create_unit ~force_hidden:hidden module_name in
Ok
{
id = Paths.Identifier.Mk.root (parent, ModuleName.make_std module_name);
file;
digest;
}
in
let check_child = function
| Lang.Page.Module_child n ->
String.Ascii.(uncapitalize n = uncapitalize filename)
| Source_tree_child _ | Page_child _ -> false
in
match parent_spec with
| Noparent -> result None
| Explicit (parent, children) ->
if List.exists check_child children then result (Some parent)
else Error (`Msg "Specified parent is not a parent of this file")
| Package parent -> result (Some parent)
let name_of_output ~prefix output =
let page_dash_root =
Filename.chop_extension Fs.File.(to_string @@ basename output)
in
String.drop ~max:(String.length prefix) page_dash_root
let page_name_of_output ~is_parent_explicit output =
let root_name = name_of_output ~prefix:"page-" output in
(if is_parent_explicit then
match root_name with
| "index" ->
Format.eprintf
"Warning: Potential name clash - child page named 'index'\n%!"
| _ -> ());
root_name
let mld ~parent_spec ~output ~children ~warnings_options input =
List.fold_left
(fun acc child_str ->
match (acc, parse_parent_child_reference child_str) with
| Ok acc, Ok r -> Ok (r :: acc)
| Error m, _ -> Error m
| _, Error (`Msg m) ->
Error (`Msg ("Failed to parse child reference: " ^ m))
| _, Error _ -> Error (`Msg "Unknown failure parsing child reference"))
(Ok []) children
>>= fun children ->
let root_name =
let is_parent_explicit =
match parent_spec with Explicit _ -> true | _ -> false
in
page_name_of_output ~is_parent_explicit output
in
let input_s = Fs.File.to_string input in
let digest = Digest.file input_s in
let page_name = PageName.make_std root_name in
let check_child = function
| Lang.Page.Page_child n -> root_name = n
| Source_tree_child _ | Module_child _ -> false
in
(if children = [] then
match parent_spec with
| Explicit (p, _) -> Ok (Paths.Identifier.Mk.leaf_page (Some p, page_name))
| Package parent ->
Ok (Paths.Identifier.Mk.leaf_page (Some parent, page_name))
| Noparent -> Ok (Paths.Identifier.Mk.leaf_page (None, page_name))
else
let check parents_children v =
if List.exists check_child parents_children then Ok v
else Error (`Msg "Specified parent is not a parent of this file")
in
(match parent_spec with
| Explicit (p, cs) ->
check cs @@ Paths.Identifier.Mk.page (Some p, page_name)
| Package parent ->
Ok (Paths.Identifier.Mk.page (Some parent, page_name))
| Noparent -> Ok (Paths.Identifier.Mk.page (None, page_name)))
>>= fun id -> Ok (id :> Paths.Identifier.Page.t))
>>= fun name ->
let root =
let file = Root.Odoc_file.create_page root_name in
{ Root.id = (name :> Paths.Identifier.OdocId.t); file; digest }
in
let resolve content =
let page =
Lang.Page.{ name; root; children; content; digest; linked = false }
in
Odoc_file.save_page output ~warnings:[] page;
Ok ()
in
Fs.File.read input >>= fun str ->
Odoc_loader.read_string (name :> Paths.Identifier.LabelParent.t) input_s str
|> Error.handle_errors_and_warnings ~warnings_options
>>= function
| `Stop -> resolve []
| `Docs content -> resolve content
let handle_file_ext = function
| ".cmti" -> Ok `Cmti
| ".cmt" -> Ok `Cmt
| ".cmi" -> Ok `Cmi
| _ ->
Error (`Msg "Unknown extension, expected one of: cmti, cmt, cmi or mld.")
let compile ~resolver ~parent_cli_spec ~hidden ~children ~output
~count_occurrences ~warnings_options ~source input =
parent resolver parent_cli_spec >>= fun parent_spec ->
let ext = Fs.File.get_ext input in
if ext = ".mld" then
check_is_none "Not expecting source (--source) when compiling pages." source
>>= fun () -> mld ~parent_spec ~output ~warnings_options ~children input
else
check_is_empty "Not expecting children (--child) when compiling modules."
children
>>= fun () ->
(match source with
| Some (parent, name) -> (
Odoc_file.load parent >>= fun parent ->
let err_not_parent () =
Error (`Msg "Specified source-parent is not a parent of the source.")
in
match parent.Odoc_file.content with
| Odoc_file.Source_tree_content page -> (
match page.Lang.SourceTree.name with
| { Paths.Identifier.iv = `Page _; _ } as parent_id ->
let name = Paths.Identifier.Mk.source_page (parent_id, name) in
if
List.exists (Paths.Identifier.equal name) page.source_children
then Ok (Some name)
else err_not_parent ()
| { iv = `LeafPage _; _ } -> err_not_parent ())
| Unit_content _ | Odoc_file.Page_content _ ->
Error
(`Msg "Specified source-parent should be a page but is a module.")
)
| None -> Ok None)
>>= fun source ->
handle_file_ext ext >>= fun input_type ->
let parent =
match parent_spec with
| Noparent -> None
| Explicit (parent, _) -> Some parent
| Package parent -> Some parent
in
let make_root = root_of_compilation_unit ~parent_spec ~hidden ~output in
let result =
Error.catch_errors_and_warnings (fun () ->
resolve_and_substitute ~resolver ~make_root ~hidden ~source
~count_occurrences parent input input_type)
in
let _, warnings = Error.unpack_warnings result in
Error.handle_errors_and_warnings ~warnings_options result >>= fun unit ->
Odoc_file.save_unit output ~warnings unit;
Ok ()