package odoc
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
OCaml documentation generator
Install
dune-project
Dependency
Authors
Maintainers
Sources
odoc-2.1.1.tbz
sha256=f574dbd28cd0fc3a2b95525c4bb95ddf6d1f6408bb4fe12157fa537884f987fd
sha512=1c545c281a7022a167f028fff8cec6fb3f2f82da0881431be74e7a4281c5353ed83bfbdb4d9d9e08af6755dbe3505c052c5e5b58cdeb08c57aed5e89c0f15e91
doc/src/odoc.loader/odoc_loader.ml.html
Source file odoc_loader.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 177open Result module Error = Odoc_model.Error let read_string parent_definition filename text = let location = let pos = Lexing.{ pos_fname = filename; pos_lnum = 1; pos_cnum = 0; pos_bol = 0 } in Location.{ loc_start = pos; loc_end = pos; loc_ghost = true } in Error.catch_errors_and_warnings (fun () -> Doc_attr.page parent_definition location text) let corrupted file = Error.raise_exception (Error.filename_only "corrupted" file) let not_a_typedtree file = Error.raise_exception (Error.filename_only "not a Typedtree" file) let not_an_implementation file = Error.raise_exception (Error.filename_only "not an implementation" file) let not_an_interface file = Error.raise_exception (Error.filename_only "not an interface" file) let wrong_version file = Error.raise_exception (Error.filename_only "wrong OCaml version" file) let error_msg file (msg : string) = Error.raise_exception (Error.filename_only "%s" msg file) exception Corrupted exception Not_an_implementation exception Not_an_interface exception Make_root_error of string let make_compilation_unit ~make_root ~imports ~interface ?sourcefile ~name ~id ?canonical content = let open Odoc_model.Lang.Compilation_unit in let interface, digest = match interface with | Some digest -> (true, digest) | None -> ( match List.assoc name imports with | Some digest -> (false, digest) | None -> raise Corrupted | exception Not_found -> raise Corrupted) in let root = match make_root ~module_name:name ~digest with | Ok root -> root | Error (`Msg m) -> raise (Make_root_error m) in let imports = List.filter (fun (name', _) -> name <> name') imports in let imports = List.map (fun (s, d) -> Import.Unresolved (s, d)) imports in let source = match sourcefile with | Some (Some file, Some digest, build_dir) -> Some { Source.file; digest; build_dir } | _ -> None in { id; root; digest; imports; source; interface; hidden = Odoc_model.Root.contains_double_underscore name; content; expansion = None; linked = false; canonical; } let compilation_unit_of_sig ~make_root ~imports ~interface ?sourcefile ~name ~id ?canonical sg = let content = Odoc_model.Lang.Compilation_unit.Module sg in make_compilation_unit ~make_root ~imports ~interface ?sourcefile ~name ~id ?canonical content let read_cmti ~make_root ~parent ~filename () = let cmt_info = Cmt_format.read_cmt filename in match cmt_info.cmt_annots with | Interface intf -> ( match cmt_info.cmt_interface_digest with | None -> raise Corrupted | Some _ as interface -> let name = cmt_info.cmt_modname in let sourcefile = ( cmt_info.cmt_sourcefile, cmt_info.cmt_source_digest, cmt_info.cmt_builddir ) in let id, sg, canonical = Cmti.read_interface parent name intf in compilation_unit_of_sig ~make_root ~imports:cmt_info.cmt_imports ~interface ~sourcefile ~name ~id ?canonical sg) | _ -> raise Not_an_interface let read_cmt ~make_root ~parent ~filename () = match Cmt_format.read_cmt filename with | exception Cmi_format.Error (Not_an_interface _) -> raise Not_an_implementation | cmt_info -> ( let name = cmt_info.cmt_modname in let sourcefile = ( cmt_info.cmt_sourcefile, cmt_info.cmt_source_digest, cmt_info.cmt_builddir ) in let interface = cmt_info.cmt_interface_digest in let imports = cmt_info.cmt_imports in match cmt_info.cmt_annots with | Packed (_, files) -> let id = `Root (parent, Odoc_model.Names.ModuleName.make_std name) in let items = List.map (fun file -> let pref = Misc.chop_extensions file in Astring.String.Ascii.capitalize (Filename.basename pref)) files in let items = List.sort String.compare items in let items = List.map (fun name -> let id = `Module (id, Odoc_model.Names.ModuleName.make_std name) in let path = `Root name in { Odoc_model.Lang.Compilation_unit.Packed.id; path }) items in let content = Odoc_model.Lang.Compilation_unit.Pack items in make_compilation_unit ~make_root ~imports ~interface ~sourcefile ~name ~id content | Implementation impl -> let id, sg, canonical = Cmt.read_implementation parent name impl in compilation_unit_of_sig ~make_root ~imports ~interface ~sourcefile ~name ~id ?canonical sg | _ -> raise Not_an_implementation) let read_cmi ~make_root ~parent ~filename () = let cmi_info = Cmi_format.read_cmi filename in match cmi_info.cmi_crcs with | (name, (Some _ as interface)) :: imports when name = cmi_info.cmi_name -> let id, sg = Cmi.read_interface parent name (Odoc_model.Compat.signature cmi_info.cmi_sign) in compilation_unit_of_sig ~make_root ~imports ~interface ~name ~id sg | _ -> raise Corrupted (** Catch errors from reading the object files and some internal errors *) let wrap_errors ~filename f = Odoc_model.Error.catch_errors_and_warnings (fun () -> try f () with | Cmi_format.Error (Not_an_interface _) -> not_an_interface filename | Cmt_format.Error (Not_a_typedtree _) -> not_a_typedtree filename | Cmi_format.Error (Wrong_version_interface _) -> wrong_version filename | Cmi_format.Error (Corrupted_interface _) -> corrupted filename | Corrupted -> corrupted filename | Not_an_implementation -> not_an_implementation filename | Not_an_interface -> not_an_interface filename | Make_root_error m -> error_msg filename m) let read_cmti ~make_root ~parent ~filename = wrap_errors ~filename (read_cmti ~make_root ~parent ~filename) let read_cmt ~make_root ~parent ~filename = wrap_errors ~filename (read_cmt ~make_root ~parent ~filename) let read_cmi ~make_root ~parent ~filename = wrap_errors ~filename (read_cmi ~make_root ~parent ~filename)
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>