package odoc
OCaml Documentation Generator
Install
Dune Dependency
Authors
Maintainers
Sources
odoc-3.0.0.tbz
sha256=ce84fa7e0cc5f3e8a54e6adeb10826152798b602057b9e46c5ae7e5d5206812b
sha512=9febd413450ca2e3824c9ef7e1c9ae8d8094aa72ed71327a69d8d6b42f6f197b3f3f40d674de0d11fa1242ee0df95c693b5d74467d530704e1339f3a523452f6
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 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
open 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) type make_root = module_name:string -> digest:Digest.t -> (Odoc_model.Root.t, [ `Msg of string ]) result exception Corrupted exception Not_an_implementation exception Not_an_interface exception Make_root_error of string let read_cmt_infos source_id ~filename root digest imports () = match Cmt_format.read_cmt filename with | exception Cmi_format.Error _ -> raise Corrupted | cmt_info -> ( match cmt_info.cmt_annots with | Implementation impl -> let shape_infos = Odoc_model.Compat.shape_info_of_cmt_infos cmt_info in Implementation.read_cmt_infos source_id shape_infos impl digest root imports | _ -> raise Not_an_implementation) 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.Names.contains_double_underscore name; content; expansion = None; linked = false; canonical; source_loc = None; } 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 ~warnings_tag () = 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 digest as interface -> let _ = try Odoc_model.Names.set_unique_ident (Digest.to_hex digest) with _ -> () in 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 ~warnings_tag 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 ~warnings_tag () = 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 (match cmt_info.cmt_interface_digest with | None -> ( match cmt_info.cmt_source_digest with | Some x -> ( try Odoc_model.Names.set_unique_ident (Digest.to_hex x) with _ -> ()) | None -> ( try Odoc_model.Names.set_unique_ident name with _ -> ())) | Some digest -> ( try Odoc_model.Names.set_unique_ident (Digest.to_hex digest) with _ -> ())); let imports = cmt_info.cmt_imports in match cmt_info.cmt_annots with | Packed (_, files) -> let id = Odoc_model.Paths.Identifier.Mk.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 = Odoc_model.Paths.Identifier.Mk.module_ (id, Odoc_model.Names.ModuleName.make_std name) in let path = `Root (Odoc_model.Names.ModuleName.make_std 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 ~warnings_tag 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 ~warnings_tag () = 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 ~warnings_tag (Odoc_model.Compat.signature cmi_info.cmi_sign) in compilation_unit_of_sig ~make_root ~imports ~interface ~name ~id sg | _ -> raise Corrupted let read_impl ~make_root ~filename ~source_id () = 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 | Implementation _impl -> let digest = match interface with | Some digest -> digest | None -> ( match List.assoc name imports with | Some digest -> digest | None -> raise Corrupted | exception Not_found -> raise Corrupted) in let () = match source_id with | None -> Odoc_model.Names.set_unique_ident filename | Some source_id -> Odoc_model.Names.set_unique_ident (Odoc_model.Paths.Identifier.fullname source_id |> String.concat "-") 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) -> Odoc_model.Lang.Compilation_unit.Import.Unresolved (s, d)) imports in read_cmt_infos source_id ~filename root digest imports () | _ -> raise Not_an_implementation) (** 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 ~warnings_tag = wrap_errors ~filename (read_cmti ~make_root ~parent ~filename ~warnings_tag) let read_cmt ~make_root ~parent ~filename ~warnings_tag = wrap_errors ~filename (read_cmt ~make_root ~parent ~filename ~warnings_tag) let read_impl ~make_root ~filename ~source_id = wrap_errors ~filename (read_impl ~make_root ~source_id ~filename) let read_cmi ~make_root ~parent ~filename ~warnings_tag = wrap_errors ~filename (read_cmi ~make_root ~parent ~filename ~warnings_tag) let read_location = Doc_attr.read_location let parse_attribute = Doc_attr.parse_attribute
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>