Skip to content

Commit

Permalink
Different hierarchy root for modules
Browse files Browse the repository at this point in the history
The 'hierarchy_root' that ensures that relative references can't escape
into other packages or libraries is different for modules and pages.

This means that relative references can't be resolved from 'impl' units
and from the 'html-url' command.

The "current package dir" computation is changed to be more robust.
  • Loading branch information
Julow committed Jul 18, 2024
1 parent e4f1fe3 commit a193c2b
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 30 deletions.
74 changes: 47 additions & 27 deletions src/odoc/resolver.ml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ module Named_roots : sig

val all_of : ?root:string -> ext:string -> t -> (Fs.File.t list, error) result

val current_root : t -> Fs.Directory.t option

val find_by_path :
?root:string -> t -> path:Fs.File.t -> (Fs.File.t option, error) result

Expand All @@ -57,7 +59,11 @@ end = struct

type pkg = { flat : flat; hierarchical : hierarchical }

type t = { table : (string, pkg) Hashtbl.t; current_root : string option }
type t = {
table : (string, pkg) Hashtbl.t;
current_root : string option;
current_root_dir : Fs.Directory.t option;
}

type error = NoPackage | NoRoot

Expand All @@ -74,9 +80,17 @@ end = struct
and hierarchical = (Hashtbl.create 42, root) in
Hashtbl.add cache pkgname { flat; hierarchical })
pkglist;
{ current_root; table = cache }
let current_root_dir =
match current_root with
| Some root -> (
try Some (List.assq root pkglist) with Not_found -> None)
| None -> None
in
{ current_root; table = cache; current_root_dir }

let current_root t = t.current_root_dir

let find_by_path ?root { table = cache; current_root } ~path =
let find_by_path ?root { table = cache; current_root; _ } ~path =
let path = Fpath.normalize path in
let root =
match (root, current_root) with
Expand Down Expand Up @@ -112,7 +126,7 @@ end = struct
in
flat_namespace

let find_by_name ?root { table = cache; current_root } ~name =
let find_by_name ?root { table = cache; current_root; _ } ~name =
let package =
match (root, current_root) with
| Some pkg, _ | None, Some pkg -> Ok pkg
Expand All @@ -127,7 +141,7 @@ end = struct
Ok (Hashtbl.find_all flat name)
| None -> Error NoPackage

let all_of ?root ~ext { table; current_root } =
let all_of ?root ~ext { table; current_root; _ } =
(match (root, current_root) with
| None, Some current_root -> Ok current_root
| Some pkg, _ -> Ok pkg
Expand All @@ -148,7 +162,6 @@ end = struct
end

let () = (ignore Named_roots.find_by_name [@warning "-5"])
let () = (ignore Named_roots.find_by_path [@warning "-5"])

module Accessible_paths : sig
type t
Expand Down Expand Up @@ -193,21 +206,21 @@ module Hierarchy : sig

type error = [ `Escape_hierarchy ]

val make : current_package:Fs.Directory.t -> current_dir:Fs.Directory.t -> t
val make : hierarchy_root:Fs.Directory.t -> current_dir:Fs.Directory.t -> t

val resolve_relative : t -> Fs.File.t -> (Fs.File.t, error) result
(** [resolve_relative h relpath] resolve [relpath] relatively to the current
directory, making sure not to escape the hierarchy. *)
end = struct
type t = { current_package : Fs.Directory.t; current_dir : Fs.Directory.t }
type t = { hierarchy_root : Fs.Directory.t; current_dir : Fs.Directory.t }

type error = [ `Escape_hierarchy ]

let make ~current_package ~current_dir = { current_package; current_dir }
let make ~hierarchy_root ~current_dir = { hierarchy_root; current_dir }

let resolve_relative t relpath =
let path = Fs.File.append t.current_dir relpath in
if Fs.Directory.contains ~parentdir:t.current_package path then Ok path
if Fs.Directory.contains ~parentdir:t.hierarchy_root path then Ok path
else Error `Escape_hierarchy
end

Expand Down Expand Up @@ -460,7 +473,7 @@ type t = {
pages : Named_roots.t option;
libs : Named_roots.t option;
open_modules : string list;
hierarchy : Hierarchy.t option;
current_dir : Fs.Directory.t option;
}

let all_roots ?root named_roots =
Expand Down Expand Up @@ -515,23 +528,16 @@ type roots = {

let create ~important_digests ~directories ~open_modules ~roots =
let ap = Accessible_paths.create ~directories in
let pages, libs, hierarchy =
let pages, libs, current_dir =
match roots with
| None -> (None, None, None)
| Some { page_roots; lib_roots; current_lib; current_package; current_dir }
->
let pages = Named_roots.create ~current_root:current_package page_roots
and libs = Named_roots.create ~current_root:current_lib lib_roots in
let hierarchy =
match Named_roots.find_by_path pages ~path:(Fpath.v ".") with
| Ok (Some current_package) ->
let current_package = Fs.Directory.of_file current_package in
Some (Hierarchy.make ~current_package ~current_dir)
| Ok None | Error _ -> None
in
(Some pages, Some libs, hierarchy)
(Some pages, Some libs, Some current_dir)
in
{ important_digests; ap; open_modules; pages; libs; hierarchy }
{ important_digests; ap; open_modules; pages; libs; current_dir }

(** Helpers for creating xref2 env. *)

Expand All @@ -544,7 +550,7 @@ let build_compile_env_for_unit
open_modules = open_units;
pages = _;
libs = _;
hierarchy = _;
current_dir = _;
} m =
add_unit_to_cache (Odoc_file.Unit_content m);
let imports_map = build_imports_map m.imports in
Expand All @@ -560,9 +566,21 @@ let build_compile_env_for_unit
Env.env_of_unit m ~linking:false resolver

(** [important_digests] and [imports_map] only apply to modules. *)
let build ?(imports_map = StringMap.empty)
{ important_digests; ap; open_modules = open_units; pages; libs; hierarchy }
=
let build ?(imports_map = StringMap.empty) ?hierarchy_roots
{
important_digests;
ap;
open_modules = open_units;
pages;
libs;
current_dir;
} =
let hierarchy =
let open OptionMonad in
current_dir >>= fun current_dir ->
hierarchy_roots >>= Named_roots.current_root >>= fun hierarchy_root ->
Some (Hierarchy.make ~hierarchy_root ~current_dir)
in
let lookup_unit =
lookup_unit ~important_digests ~imports_map ap ~libs ~hierarchy
and lookup_page = lookup_page ap ~pages ~hierarchy
Expand All @@ -579,7 +597,7 @@ let build_compile_env_for_impl t i =
let build_link_env_for_unit t m =
add_unit_to_cache (Odoc_file.Unit_content m);
let imports_map = build_imports_map m.imports in
let resolver = build ~imports_map t in
let resolver = build ~imports_map ?hierarchy_roots:t.libs t in
Env.env_of_unit m ~linking:true resolver

let build_link_env_for_impl t i =
Expand All @@ -591,7 +609,9 @@ let build_link_env_for_impl t i =

let build_env_for_page t p =
add_unit_to_cache (Odoc_file.Page_content p);
let resolver = build { t with important_digests = false } in
let resolver =
build ?hierarchy_roots:t.pages { t with important_digests = false }
in
Env.env_of_page p resolver

let build_env_for_reference t =
Expand Down
4 changes: 1 addition & 3 deletions test/xref2/path_references.t/run.t
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,6 @@
File "doc/foo.mld", line 6, characters 35-41:
Warning: Failed to resolve reference unresolvedroot(bar) Couldn't find "bar"
$ odoc link --current-package pkg -P pkg:h/pkg/doc -L libname:h/pkg/lib/libname h/pkg/lib/libname/test.odoc
File "test.ml", line 12, characters 30-39:
Warning: Failed to resolve reference ./Test Path 'Test' not found
File "test.ml", line 6, characters 38-44:
Warning: Failed to resolve reference unresolvedroot(bar) Couldn't find "bar"
File "test.ml", line 4, characters 34-45:
Expand Down Expand Up @@ -115,5 +113,5 @@ Helper that extracts references in a compact way. Headings help to interpret the
["Module","Test"]
{"`Reference":[{"`Resolved":{"`Identifier":{"`Root":[{"Some":{"`Page":[{"Some":{"`Page":[{"Some":{"`Page":["None","pkg"]}},"lib"]}},"libname"]}},"Test"]}}},[]]}
{"`Reference":[{"`Resolved":{"`Identifier":{"`Root":[{"Some":{"`Page":[{"Some":{"`Page":[{"Some":{"`Page":["None","pkg"]}},"lib"]}},"libname"]}},"Test"]}}},[]]}
{"`Reference":[{"`Any_path":["`TRelativePath",["Test"]]},[]]}
{"`Reference":[{"`Resolved":{"`Identifier":{"`Root":[{"Some":{"`Page":[{"Some":{"`Page":[{"Some":{"`Page":["None","pkg"]}},"lib"]}},"libname"]}},"Test"]}}},[]]}
{"`Reference":[{"`Resolved":{"`Identifier":{"`Root":[{"Some":{"`Page":[{"Some":{"`Page":[{"Some":{"`Page":["None","pkg"]}},"lib"]}},"libname"]}},"Test"]}}},[]]}

0 comments on commit a193c2b

Please sign in to comment.