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

Speed up resolving a "Generate delegate method" assist #19362

Merged
merged 2 commits into from
Mar 22, 2025

Conversation

nemethf
Copy link
Contributor

@nemethf nemethf commented Mar 15, 2025

To advance the discussion of #19322 this pull request implements the solution outlined there. The PR is split into two parts. The first one contains the core idea, while the boring second part makes sure rust-analyzer compiles after the extension of struct AssistId.


Part 1

Fix #19322

Sometimes there are 185 "Generate delegate" assists with the same
assist_id and asssist_kind. This commit introduces and additional
differentiator: assist_subtype. Therefore, when the LSP client sends
an assist resolve request, rust-analyzer only need to compute edits
for a single assist instead of 185.


Part 2

Make it compile by adding a None subtype to rest of the AssistId
instantiations.

@rustbot rustbot added the S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. label Mar 15, 2025
Copy link
Member

@Veykril Veykril left a comment

Choose a reason for hiding this comment

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

Overall this sounds reasonable to me

@@ -32,7 +32,7 @@ pub(crate) fn add_braces(acc: &mut Assists, ctx: &AssistContext<'_>) -> Option<(
let (expr_type, expr) = get_replacement_node(ctx)?;

acc.add(
AssistId("add_braces", AssistKind::RefactorRewrite),
AssistId("add_braces", AssistKind::RefactorRewrite, None),
Copy link
Member

Choose a reason for hiding this comment

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

It would likely be nicer to have a constructor function for the None case here, something like

Suggested change
AssistId("add_braces", AssistKind::RefactorRewrite, None),
assist_id("add_braces", AssistKind::RefactorRewrite),

or

Suggested change
AssistId("add_braces", AssistKind::RefactorRewrite, None),
AssistId::refactor_rewrite(add_braces"),

To keep the group one long but the common case short?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I force-pushed a new version with the second option. I chose it over the first one because it resulted in more concise code. Thanks for the suggestion.

@nemethf nemethf force-pushed the fix-19322 branch 2 times, most recently from c86a7fe to 3a68f9a Compare March 17, 2025 20:04
nemethf added 2 commits March 22, 2025 09:41
Fix rust-lang#19322

Sometimes there are 185 "Generate delegate" assists with the same
assist_id and asssist_kind.  This commit introduces and additional
differentiator: assist_subtype.  Therefore, when the LSP client sends
an assist resolve request, rust-analyzer only need to compute edits
for a single assist instead of 185.
Make it compile by adding a `None` subtype to rest of the AssistId
instantiations.
@nemethf
Copy link
Contributor Author

nemethf commented Mar 22, 2025

I've resolved the merge conflict. Is there anything more that I need to do here? Thanks.

@Veykril
Copy link
Member

Veykril commented Mar 22, 2025

Nope, should be good to go
Thanks!

@Veykril Veykril added this pull request to the merge queue Mar 22, 2025
Merged via the queue into rust-lang:master with commit 8d7cda3 Mar 22, 2025
9 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
S-waiting-on-review Status: Awaiting review from the assignee but also interested parties.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Resolving a "Generate delegate method" takes too long
3 participants