-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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: Clean up html::format::print_where_clause
#95828
Conversation
r? @notriddle (rust-highfive has picked a reviewer for you, use r? to override) |
src/librustdoc/html/format.rs
Outdated
} | ||
clause = left_padding + &clause; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This doesn't seem any easier-to-follow than the previous version. Here's the things that I really don't like about either version:
- It uses
indent.saturating_sub(1)
. Does this meanleft_padding
has the same value whenindent=0
as it has whenindent=1
? If so, isn't that a bug? If not, why not? - This is doing string replacement on a value that was already produced with string concatenation above. Isn't this slow? Why isn't it building the string correctly the first time? I would imagine setting up
br_with_padding
at the beginning of the function and then using it below, instead of doing thisclause.replace()
stuff, would be faster (though, perhaps, not faster-enough to show up in profiling). clause = left_padding + &clause
andclause.insert_str(0, left_padding)
are the same thing. One isn't cleaner than the other.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- I'm not familiar with rustdoc's internals, so I'm not sure about this.
- In this function, the only concatenation to
clause
between the call tocomma_sep
and the string replacement adds six bytes at most (" "
), so the extra overhead seems insignificant. All direct calls tocomma_sep
are in this file, but tracking down the inputs that are eventually fed intocomma_sep
seems troublesome. - Fair. I think it's marginally more self-evident, but I definitely see where you're coming from. I can revert it and remove the mention of closing the issue if that's best.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(More of a note to myself)
https://play.rust-lang.org/?version=stable&mode=debug&edition=2021&gist=afd5bfce027f84ae4b54cf29f8995fd6
(indent
= 3)
f_alternate: false
end_newline: false
clause: "<br> <span class="where">where[COMMA_SEP]</span>"
f_alternate: false
end_newline: true
clause: " <span class="where fmt-newline">where[COMMA_SEP], </span>"
f_alternate: true
end_newline: false
clause: " where[COMMA_SEP]"
f_alternate: true
end_newline: true
clause: " where[COMMA_SEP], "
This doesn't help with the string replacement concern (not sure that can be resolved easily), but this might be useful for simplifying the logic in the bottom half of the function. Even with just two boolean flags, it's quite gnarly.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, a match with four branches would be a great way to clean that thing up. The code might be a little longer, but it would be much, much easier to understand.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I previously implemented it with a match expression. Currently, it's two layers of if-else nesting (one if-else expression in each branch) since I've found that it's slightly more amenable to duplicating code across branches. I think it's still readable.
Btw, should be rebased after #95813 lands. |
I'm not sure what the comment about adding a space means, so I'm not sure if I'm correct to put in both places where |
In at least two other functions in this file ( I'll preemptively change it; please tell me if I'm wrong. |
@vacuus I think you did well to change it. Tests will tell us if we missed something. |
☔ The latest upstream changes (presumably #96224) made this pull request unmergeable. Please resolve the merge conflicts. |
Sorry about the delay. Rebase it, and r=me. @bors delegate+ |
✌️ @vacuus can now approve this pull request |
This comment has been minimized.
This comment has been minimized.
I don't really know about the rollup stuff. I hope it's fine to ignore it. 😅 |
📌 Commit 5d59c16 has been approved by |
Rollups as used to merge multiple PRs at once. We prevent PRs that have a perf impact or a very big impact on the code to be put in rollups. In this case, it's fine to put it into a rollup though. :) @bors rollup |
☀️ Test successful - checks-actions |
Finished benchmarking commit (3d3dafb): comparison url. Summary: This benchmark run did not return any relevant results. If you disagree with this performance assessment, please file an issue in rust-lang/rustc-perf. |
(Arguably) closes #95814