Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rustdoc: Unify external_paths and paths cache map #86909

Closed

Conversation

Stupremee
Copy link
Member

The formats::cache::Cache fields paths and external_paths are now
unified to a single paths map, which makes it easier to manage the
paths and avoids using local paths as extern and vice versa.

The paths map maps a DefId to an enum which can be either Local or
Extern so there can't be any misusing.

Resolves #86798

r? @jyn514

@rust-highfive rust-highfive added the S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. label Jul 6, 2021
@Stupremee Stupremee added C-cleanup Category: PRs that clean code up or issues documenting cleanup. T-rustdoc Relevant to the rustdoc team, which will review and decide on the PR/issue. labels Jul 6, 2021
@rust-log-analyzer

This comment has been minimized.

The `formats::cache::Cache` fields `paths` and `external_paths` are now
unified to a single `paths` map, which makes it easier to manage the
paths and avoids using local paths as extern and vice versa.

The `paths` map maps a `DefId` to an enum which can be either `Local` or
`Extern` so there can't be any misusing.
@Stupremee Stupremee force-pushed the unify-external_paths-and-paths branch from 0880e66 to 3fe671d Compare July 6, 2021 16:51
@@ -189,7 +189,7 @@ crate fn record_extern_fqn(cx: &mut DocContext<'_>, did: DefId, kind: ItemType)
if did.is_local() {
cx.cache.exact_paths.insert(did, fqn);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should we merge the exact_paths too?

Copy link
Member

@jyn514 jyn514 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't really understand the point of this change. It's good that there's one map instead of two I guess, but that comes with some churn (I left comments about behavior that changed by accident) and it doesn't solve the underlying issue that Local is completely wrong: there are non-local DefIds in paths and local DefIds in extern_paths. Any bugs from #86798 are still present, they're just harder to see because you call things "Local" when they aren't.

/// that node. This map contains local and external cached paths that are differentiated using
/// the [`CachedPath`] enum.
///
/// This was previously known as `extern_paths` and `paths`.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'd remove this comment, people can find it in the git history if they really care.

Suggested change
/// This was previously known as `extern_paths` and `paths`.

Comment on lines -787 to +789
path = if it.def_id.is_local() {
cx.current.join("/")
} else {
let (ref path, _) = cx.cache.external_paths[&it.def_id.expect_def_id()];
path[..path.len() - 1].join("/")
path = match cx.cache.paths[&it.def_id.expect_def_id()] {
CachedPath::Extern(_, _) => cx.current.join("/"),
CachedPath::Local(ref path, _) => path[..path.len() - 1].join("/"),
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This logic doesn't seem the same at all. What does Extern have to do with item.def_id.is_local()? Why do you use the code for Local that used to be used for external_paths?

@@ -528,7 +526,8 @@ pub(super) fn write_shared(
// Only create a js file if we have impls to add to it. If the trait is
// documented locally though we always create the file to avoid dead
// links.
if implementors.is_empty() && !cx.cache.paths.contains_key(&did) {
if implementors.is_empty() && cx.cache.paths.get(&did).map_or(false, CachedPath::is_extern)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is not the same logic.

Suggested change
if implementors.is_empty() && cx.cache.paths.get(&did).map_or(false, CachedPath::is_extern)
if implementors.is_empty() && cx.cache.paths.get(&did).map_or(true, CachedPath::is_extern)

})
.0
.unwrap()
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
.unwrap()
.expect("Trait should either be in local or external paths")

@Stupremee
Copy link
Member Author

Ohh I see. Yes that's true and I completely forgot that. So what you're saying is that the paths map should check any DefId and path if they match, so that local DefIds only point to Path::Local and non local to Path::Extern

@jyn514
Copy link
Member

jyn514 commented Jul 7, 2021

Yes. In fact I would remove Local and Extern altogether and only store the DefId; the caller can check def_id.is_local() if they care about the difference.

The problem comes that this is a change in behavior, and I think will cause some tests to fail :/ I don't know how to fix that; the current behavior has no rhyme nor reason, but rustdoc is depending on it anyway. But if you change it and the tests are easy to fix (🤞), then we don't have to worry about it.

@Stupremee
Copy link
Member Author

Now I understand. I was too fixed on unifying the paths maps and forgot about the original issue. 😅

@jyn514
Copy link
Member

jyn514 commented Jul 11, 2021

I'm going to close this for now - if you still think this is a good change on its own, feel free to reopen.

@jyn514 jyn514 closed this Jul 11, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
C-cleanup Category: PRs that clean code up or issues documenting cleanup. S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. T-rustdoc Relevant to the rustdoc team, which will review and decide on the PR/issue.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

rustdoc: Some items in cache.paths are non-local
5 participants