dune/src/odoc.ml

240 lines
7.2 KiB
OCaml
Raw Normal View History

2017-05-11 17:09:44 +00:00
open Import
2017-06-02 13:32:05 +00:00
open Jbuild
2017-05-11 17:09:44 +00:00
open Build.O
module SC = Super_context
let ( ++ ) = Path.relative
let get_odoc sctx = SC.resolve_program sctx "odoc" ~hint:"opam install odoc"
2017-05-22 13:12:02 +00:00
let odoc_ext = ".odoc"
2017-05-11 17:09:44 +00:00
2017-10-24 11:58:34 +00:00
let module_deps (m : Module.t) ~dir ~dep_graph ~modules =
2017-05-11 17:09:44 +00:00
Build.dyn_paths
(dep_graph
>>^ fun graph ->
2017-10-24 11:58:34 +00:00
List.map (Utils.find_deps ~dir graph m.name)
~f:(fun name ->
let m = Utils.find_module ~dir modules name in
Module.odoc_file m ~dir))
2017-05-11 17:09:44 +00:00
2017-10-24 11:58:34 +00:00
let compile_module sctx (m : Module.t) ~odoc ~dir ~includes ~dep_graph ~modules
~lib_unique_name =
2017-05-11 17:09:44 +00:00
let context = SC.context sctx in
2017-10-24 11:58:34 +00:00
let odoc_file = Module.odoc_file m ~dir in
2017-05-11 17:09:44 +00:00
SC.add_rule sctx
2017-10-24 11:58:34 +00:00
(module_deps m ~dir ~dep_graph ~modules
2017-05-11 17:09:44 +00:00
>>>
includes
>>>
Build.run ~context ~dir odoc ~extra_targets:[odoc_file]
[ A "compile"
2017-10-21 16:37:22 +00:00
; Dyn (fun x -> x)
2017-10-24 11:58:34 +00:00
; A "-I"; Path dir
; As ["--pkg"; lib_unique_name]
2017-10-24 11:58:34 +00:00
; Dep (Module.cmti_file m ~dir)
2017-05-11 17:09:44 +00:00
]);
(m, odoc_file)
2017-10-24 11:58:34 +00:00
let to_html sctx (m : Module.t) odoc_file ~doc_dir ~odoc ~dir ~includes
~lib_unique_name ~(lib : Library.t) =
2017-05-11 17:09:44 +00:00
let context = SC.context sctx in
let html_dir = doc_dir ++ lib_unique_name ++ String.capitalize_ascii m.obj_name in
2017-10-24 11:58:34 +00:00
let html_file = html_dir ++ "index.html" in
2017-05-11 17:09:44 +00:00
SC.add_rule sctx
2017-05-22 13:12:02 +00:00
(SC.Libs.static_file_deps (dir, lib) ~ext:odoc_ext
2017-05-11 17:09:44 +00:00
>>>
includes
>>>
2017-10-24 11:58:34 +00:00
Build.progn
[ Build.remove_tree html_dir
; Build.mkdir html_dir
; Build.run ~context ~dir odoc ~extra_targets:[html_file]
[ A "html"
; Dyn (fun x -> x)
; A "-I"; Path dir
; A "-o"; Path doc_dir
; Dep odoc_file
]
; Build.create_file (html_dir ++ Config.jbuilder_keep_fname)
]
);
2017-05-11 17:09:44 +00:00
html_file
let lib_index sctx ~odoc ~dir ~(lib : Library.t) ~lib_name ~lib_unique_name ~doc_dir ~modules
2017-10-24 11:58:34 +00:00
~includes =
let context = SC.context sctx in
let generated_index_mld = dir ++ sprintf "%s-generated.mld" lib.name in
let source_index_mld = dir ++ sprintf "%s.mld" lib.name in
let header = "{{: ../index.html} Up}" in
2017-10-24 11:58:34 +00:00
SC.add_rule sctx
(Build.if_file_exists source_index_mld
~then_:(Build.contents source_index_mld
>>^ fun s -> sprintf "%s\n%s" header s)
~else_:(Build.arr (fun () ->
(if lib.wrapped then
sprintf
"%s\n\
{2 Library %s}\n\
2017-10-24 11:58:34 +00:00
The entry point for this library is module {!module:%s}."
header
lib_name
2017-10-24 11:58:34 +00:00
(String.capitalize_ascii lib.name)
else
sprintf
"%s\n\
{2 Library %s}\n\
This library exposes the following toplevel modules:\n{!modules:%s}"
2017-10-24 11:58:34 +00:00
header
lib_name
2017-10-24 11:58:34 +00:00
(String_map.keys modules |> String.concat ~sep:" "))))
>>>
Build.write_file_dyn generated_index_mld);
let html_file =
doc_dir ++ lib_unique_name ++ "index.html"
2017-05-12 14:05:16 +00:00
in
2017-10-24 11:58:34 +00:00
SC.add_rule sctx
(SC.Libs.static_file_deps (dir, lib) ~ext:odoc_ext
>>>
includes
>>>
Build.run ~context ~dir odoc ~extra_targets:[html_file]
[ A "html"
; Dyn (fun x -> x)
; A "-I"; Path dir
; A "-o"; Path doc_dir
; A "--index-for"; A lib_unique_name
2017-10-24 11:58:34 +00:00
; Dep generated_index_mld
]);
html_file
2017-05-12 14:05:16 +00:00
2017-05-22 13:12:02 +00:00
let doc_dir ~context = Path.relative context.Context.build_dir "_doc"
2017-05-11 17:09:44 +00:00
2017-05-22 13:12:02 +00:00
let css_file ~doc_dir = doc_dir ++ "odoc.css"
2017-05-11 17:09:44 +00:00
2017-08-21 15:16:14 +00:00
let toplevel_index ~doc_dir = doc_dir ++ "index.html"
2017-10-24 11:58:34 +00:00
let setup_library_rules sctx (lib : Library.t) ~dir ~modules ~requires
~(dep_graph:Ocamldep.dep_graph) =
let lib_unique_name = SC.unique_library_name sctx (Internal (dir, lib)) in
let lib_name = Library.best_name lib in
let context = SC.context sctx in
let dep_graph =
Build.memoize "odoc deps"
((* Use the dependency graph given by ocamldep. However, when a module has no
.mli, use the dependencies for the .ml *)
Build.fanout dep_graph.intf dep_graph.impl
>>^ fun (intf, impl) ->
String_map.merge intf impl ~f:(fun _ intf impl ->
match intf, impl with
| Some _, _ -> intf
| None, Some _ -> impl
| None, None -> assert false))
in
let odoc = get_odoc sctx in
let includes =
Build.memoize "includes"
(requires
>>>
SC.Libs.file_deps sctx ~ext:odoc_ext
>>^ Lib.include_flags)
in
let modules_and_odoc_files =
List.map (String_map.values modules)
~f:(compile_module sctx ~odoc ~dir ~includes ~dep_graph ~modules
~lib_unique_name)
in
SC.Libs.setup_file_deps_alias sctx ~ext:odoc_ext (dir, lib)
(List.map modules_and_odoc_files ~f:snd);
let doc_dir = doc_dir ~context in
(*
let modules_and_odoc_files =
if lib.wrapped then
let main_module_name = String.capitalize_ascii lib.name in
List.filter modules_and_odoc_files
~f:(fun (m, _) -> m.Module.name = main_module_name)
else
modules_and_odoc_files
in*)
let html_files =
List.map modules_and_odoc_files ~f:(fun (m, odoc_file) ->
to_html sctx m odoc_file ~doc_dir ~odoc ~dir ~includes ~lib
~lib_unique_name)
in
let lib_index_html =
lib_index sctx ~dir ~lib ~lib_unique_name ~lib_name ~doc_dir
~modules ~includes ~odoc
in
SC.add_alias_deps sctx (Build_system.Alias.doc ~dir)
(css_file ~doc_dir
:: toplevel_index ~doc_dir
:: lib_index_html
:: html_files)
2017-05-11 17:09:44 +00:00
let setup_css_rule sctx =
let context = SC.context sctx in
2017-05-22 13:12:02 +00:00
let doc_dir = doc_dir ~context in
2017-05-11 17:09:44 +00:00
SC.add_rule sctx
(Build.run ~context
~dir:context.build_dir
2017-05-22 13:12:02 +00:00
~extra_targets:[css_file ~doc_dir]
2017-05-11 17:09:44 +00:00
(get_odoc sctx)
2017-08-21 15:16:14 +00:00
[ A "css"; A "-o"; Path doc_dir ])
let sp = Printf.sprintf
let setup_toplevel_index_rule sctx =
let list_items =
Super_context.stanzas_to_consider_for_install sctx
|> List.filter_map ~f:(fun (_path, stanza) ->
match stanza with
| Stanza.Library
{Library.kind = Library.Kind.Normal; public = Some public_info; _} ->
let name = public_info.name in
let link = sp {|<a href="%s/index.html">%s</a>|} name name in
let version_suffix =
match public_info.package.Package.version_from_opam_file with
| None ->
""
| Some v ->
sp {| <span class="version">%s</span>|} v
in
Some (sp "<li>%s%s</li>" link version_suffix)
| _ ->
None)
2017-08-21 15:16:14 +00:00
in
let list_items = String.concat ~sep:"\n " list_items in
2017-08-21 15:16:14 +00:00
let html =
sp {|<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>index</title>
<link rel="stylesheet" href="./odoc.css"/>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width,initial-scale=1.0"/>
</head>
<body>
<div class="by-name">
<h2>OCaml package documentation</h2>
<ol>
%s
</ol>
</body>
</html>
|} list_items
2017-08-21 15:16:14 +00:00
in
let context = SC.context sctx in
let doc_dir = doc_dir ~context in
SC.add_rule sctx @@ Build.write_file (toplevel_index ~doc_dir) html
let gen_rules sctx ~dir rest =
match rest with
| [] ->
setup_css_rule sctx;
setup_toplevel_index_rule sctx
| lib :: _ ->
match Lib_db.find (SC.libs sctx) ~from:dir lib with
| None | Some (External _) -> ()
| Some (Internal (dir, _)) -> SC.load_dir sctx ~dir