package odoc
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
OCaml Documentation Generator
Install
dune-project
Dependency
Authors
Maintainers
Sources
odoc-3.2.1.tbz
sha256=d45eb125514839fd9ac27702bb4938d1b4f3b6978e9b16ab9673ea067245affc
sha512=3555386b4770a7caa8ec903683bde5ecdc41d5e57ffaee617d5da225c747bbd1e9c1d2677f4df97e96bbdfc69f580ea83b1b92b933ea40a436a658788b677bbc
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 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 335 336 337 338 339 340 341 342 343open 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 #if defined OXCAML let unit_name_as_string = Compilation_unit.name_as_string let name_to_string = Compilation_unit.Name.to_string #else let unit_name_as_string x = x let name_to_string x = x #endif 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 |> unit_name_as_string in let sourcefile = ( cmt_info.cmt_sourcefile, cmt_info.cmt_source_digest, cmt_info.cmt_builddir ) in Cmti.cmti_builddir := cmt_info.cmt_builddir; let id, sg, canonical = Cmti.read_interface parent name ~warnings_tag intf in #if defined OXCAML let imports = cmt_info.cmt_imports |> Array.map (fun import -> Import_info.name import |> Compilation_unit.Name.to_string, Import_info.crc import) |> Array.to_list in #else let imports = cmt_info.cmt_imports in #endif compilation_unit_of_sig ~make_root ~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 |> unit_name_as_string 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 _ -> ())); #if defined OXCAML let imports = cmt_info.cmt_imports |> Array.map (fun import -> Import_info.name import |> Compilation_unit.Name.to_string, Import_info.crc import) |> Array.to_list in #else let imports = cmt_info.cmt_imports in #endif 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 -> Cmt.cmt_builddir := cmt_info.cmt_builddir; Cmti.cmti_builddir := cmt_info.cmt_builddir; 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) #if defined OXCAML let compilation_unit_of_import_info (info : Import_info.Intf.Nonalias.t option) = match info with | None -> None | Some (Parameter, _) -> None | Some (Normal cu, _) -> Some (cu |> Compilation_unit.full_path_as_string) #else let compilation_unit_of_import_info info = Option.map snd info #endif #if defined OXCAML let cmi_crcs cmi_info = List.map (fun import -> Import_info.name import, Import_info.Intf.info import) (Array.to_list cmi_info.Cmi_format.cmi_crcs) #else let cmi_crcs cmi_info = cmi_info.Cmi_format.cmi_crcs #endif let read_cmi ~make_root ~parent ~filename ~warnings_tag () = let cmi_info = Cmi_format.read_cmi filename in let cmi_crcs = cmi_crcs cmi_info in match cmi_crcs with | (name, (Some _ as interface)) :: imports when name = cmi_info.cmi_name -> let name = name |> name_to_string in let id, sg = Cmi.read_interface parent name ~warnings_tag (Odoc_model.Compat.signature cmi_info.cmi_sign) in #if defined OXCAML let imports = imports |> List.map (fun (name, info_opt) -> name |> Compilation_unit.Name.to_string, compilation_unit_of_import_info info_opt) in let interface = interface |> Option.map snd in #endif 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 |> unit_name_as_string 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 #if defined OXCAML let imports = imports |> Array.map (fun import -> Import_info.name import |> Compilation_unit.Name.to_string, Import_info.crc import) |> Array.to_list in #endif 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)"
>