dune/src/odoc.ml

291 lines
8.6 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
module Mld : sig
type t
val create : name:string -> t
2018-01-13 12:46:47 +00:00
val odoc_file : doc_dir:Path.t -> t -> Path.t
val odoc_input : doc_dir:Path.t -> t -> Path.t
2018-01-13 12:46:47 +00:00
val html_filename : t -> string
end = struct
type t = string (** source file name without the extension. *)
let create ~name = name
let odoc_file ~doc_dir t =
Path.relative doc_dir (sprintf "page-%s%s" t odoc_ext)
let odoc_input ~doc_dir t =
Path.relative doc_dir (sprintf "%s-generated.mld" t)
let html_filename t =
sprintf "%s.html" t
2018-01-13 12:46:47 +00:00
end
module Module_or_mld = struct
type t =
| Mld of Mld.t
| Module of Module.t
let odoc_file ~doc_dir = function
| Mld m -> Mld.odoc_file ~doc_dir m
| Module m -> Module.odoc_file ~doc_dir m
2018-01-13 12:46:47 +00:00
let odoc_input ~dir ~doc_dir = function
| Mld m -> Mld.odoc_input ~doc_dir m
2018-01-13 12:46:47 +00:00
| Module m -> Module.cmti_file m ~dir
let html_dir ~doc_dir = function
| Mld _ -> doc_dir
| Module m -> doc_dir ++ String.capitalize_ascii m.obj_name
let html_file ~doc_dir t =
match t with
| Mld m -> html_dir ~doc_dir t ++ Mld.html_filename m
| Module _ -> html_dir ~doc_dir t ++ "index.html"
2018-01-13 12:46:47 +00:00
end
let module_or_mld_deps (m : Module_or_mld.t) ~dir ~doc_dir ~dep_graph ~modules =
2017-05-11 17:09:44 +00:00
Build.dyn_paths
(dep_graph
>>^ fun graph ->
2018-01-13 12:46:47 +00:00
match m with
| Mld _ -> []
| Module m ->
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 ~doc_dir))
2017-05-11 17:09:44 +00:00
2018-01-13 12:46:47 +00:00
let compile sctx (m : Module_or_mld.t) ~odoc ~dir ~includes ~dep_graph
~doc_dir ~modules ~lib_unique_name =
2017-05-11 17:09:44 +00:00
let context = SC.context sctx in
let odoc_file = Module_or_mld.odoc_file m ~doc_dir in
2017-05-11 17:09:44 +00:00
SC.add_rule sctx
(module_or_mld_deps m ~doc_dir ~dir ~dep_graph ~modules
2017-05-11 17:09:44 +00:00
>>>
includes
>>>
Build.run ~context ~dir:doc_dir odoc
2017-05-11 17:09:44 +00:00
[ A "compile"
2017-10-24 11:58:34 +00:00
; A "-I"; Path dir
2018-01-13 12:46:47 +00:00
; Dyn (fun x -> x)
; As ["--pkg"; lib_unique_name]
; A "-o"; Target odoc_file
; Dep (Module_or_mld.odoc_input m ~dir ~doc_dir)
2017-05-11 17:09:44 +00:00
]);
(m, odoc_file)
2018-01-13 12:46:47 +00:00
let to_html sctx (m : Module_or_mld.t) odoc_file ~doc_dir ~odoc ~dir ~includes
~(lib : Library.t) =
2017-05-11 17:09:44 +00:00
let context = SC.context sctx in
let html_dir = Module_or_mld.html_dir ~doc_dir m in
let html_file = Module_or_mld.html_file ~doc_dir m in
let to_remove, jbuilder_keep =
2018-01-13 12:46:47 +00:00
match m with
| Mld _ -> html_file, []
| Module _ ->
2018-01-13 12:46:47 +00:00
let jbuilder_keep =
Build.create_file (html_dir ++ Config.jbuilder_keep_fname) in
html_dir, [jbuilder_keep]
2018-01-13 12:46:47 +00:00
in
2017-05-11 17:09:44 +00:00
SC.add_rule sctx
(SC.Doc.static_deps sctx (dir, lib)
2017-05-11 17:09:44 +00:00
>>>
includes
>>>
2018-01-13 12:46:47 +00:00
Build.progn (
Build.remove_tree to_remove
:: Build.mkdir html_dir
:: Build.run ~context ~dir odoc ~extra_targets:[html_file]
[ A "html"
; A "-I"; Path doc_dir
2018-01-13 12:46:47 +00:00
; Dyn (fun x -> x)
; A "-o"; Path (Path.parent doc_dir)
2018-01-13 12:46:47 +00:00
; Dep odoc_file
]
:: jbuilder_keep
)
);
2017-05-11 17:09:44 +00:00
html_file
2018-01-13 12:46:47 +00:00
let all_mld_files sctx ~(lib : Library.t) ~lib_name ~modules ~dir files =
let all_files =
if List.mem "index.mld" ~set:files then files else "index.mld" :: files
2017-05-12 14:05:16 +00:00
in
let doc_dir = SC.Doc.dir sctx (dir, lib) in
2018-01-13 12:46:47 +00:00
List.map all_files ~f:(fun file ->
let name = Filename.chop_extension file in
let mld = Mld.create ~name in
let generated_mld = Mld.odoc_input ~doc_dir mld in
2018-01-13 12:46:47 +00:00
let source_mld = dir ++ file in
SC.add_rule sctx
(Build.if_file_exists source_mld
~then_:(Build.contents source_mld)
~else_:(Build.arr (fun () ->
(if lib.wrapped then
sprintf
"{1 Library %s}\n\
The entry point for this library is module {!module:%s}."
lib_name
(String.capitalize_ascii lib.name)
else
sprintf
"{1 Library %s}\n\
This library exposes the following toplevel modules: {!modules:%s}."
lib_name
(String_map.keys modules |> String.concat ~sep:" "))))
>>>
Build.write_file_dyn generated_mld);
mld
2018-01-13 12:46:47 +00:00
)
2017-05-12 14:05:16 +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"
2018-01-13 12:46:47 +00:00
let setup_library_rules sctx (lib : Library.t) ~dir ~modules ~mld_files
~requires ~(dep_graph:Ocamldep.dep_graph) =
let doc_dir = SC.Doc.dir sctx (dir, lib) in
let lib_unique_name = SC.unique_library_name sctx (Internal (dir, lib)) in
let lib_name = Library.best_name lib 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.Doc.deps sctx
>>^ Lib.include_flags)
in
2018-01-13 12:46:47 +00:00
let mld_files =
all_mld_files sctx ~dir ~lib ~lib_name ~modules mld_files
in
let mld_and_odoc_files =
List.map mld_files ~f:(fun m ->
compile sctx ~odoc ~dir ~includes ~dep_graph ~modules
~doc_dir ~lib_unique_name (Mld m))
2018-01-13 12:46:47 +00:00
in
let modules_and_odoc_files =
2018-01-13 12:46:47 +00:00
List.map (String_map.values modules) ~f:(fun m ->
compile sctx ~odoc ~dir ~includes ~dep_graph ~modules
~doc_dir ~lib_unique_name (Module m))
in
2018-01-13 12:46:47 +00:00
let inputs_and_odoc_files = modules_and_odoc_files @ mld_and_odoc_files in
SC.Doc.setup_deps sctx (dir, lib) (List.map inputs_and_odoc_files ~f:snd);
2018-01-13 12:46:47 +00:00
(*
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 =
2018-01-13 12:46:47 +00:00
List.map inputs_and_odoc_files ~f:(fun (m, odoc_file) ->
to_html sctx m odoc_file ~doc_dir ~odoc ~dir ~includes ~lib)
in
let doc_root = SC.Doc.root sctx in
SC.add_alias_deps sctx (Build_system.Alias.doc ~dir)
(css_file ~doc_dir:doc_root
:: toplevel_index ~doc_dir:doc_root
:: html_files)
2017-05-11 17:09:44 +00:00
let setup_css_rule sctx =
let context = SC.context sctx in
let doc_dir = SC.Doc.root sctx 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 doc_dir = SC.Doc.root sctx in
2017-08-21 15:16:14 +00:00
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 :: _ ->
let libs = SC.libs sctx in
let (lib, scope) =
match String.rsplit2 lib ~on:'@' with
| None -> (lib, Lib_db.external_scope libs)
| Some (lib, name) -> (lib, Lib_db.find_scope_by_name_exn libs ~name)
in
let scope =
{ Lib_db.
data = scope
; required_by = ["@doc target"]
} in
match Lib_db.Scope.find scope lib with
| None | Some (External _) -> ()
| Some (Internal (dir, _)) -> SC.load_dir sctx ~dir