Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 89ca0dc

Browse files
committedOct 17, 2022
Auto merge of #13428 - Veykril:fmt-stuck, r=Veykril
fix: Fix formatting requests hanging when r-a is still starting The reason for that was that we were calculating the crate defmaps of the file we are saving by accident causing us to get stuck waiting on their expensive computation, while we only need the relevant crate id. Closes #4054 Closes #11654
2 parents 106285b + 359836d commit 89ca0dc

File tree

7 files changed

+14
-16
lines changed

7 files changed

+14
-16
lines changed
 

‎crates/ide/src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -482,8 +482,8 @@ impl Analysis {
482482
}
483483

484484
/// Returns crates this file belongs too.
485-
pub fn crate_for(&self, file_id: FileId) -> Cancellable<Vec<CrateId>> {
486-
self.with_db(|db| parent_module::crate_for(db, file_id))
485+
pub fn crates_for(&self, file_id: FileId) -> Cancellable<Vec<CrateId>> {
486+
self.with_db(|db| parent_module::crates_for(db, file_id))
487487
}
488488

489489
/// Returns the edition of the given crate.

‎crates/ide/src/parent_module.rs

+5-7
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
use hir::Semantics;
22
use ide_db::{
3-
base_db::{CrateId, FileId, FilePosition},
3+
base_db::{CrateId, FileId, FileLoader, FilePosition},
44
RootDatabase,
55
};
6-
use itertools::Itertools;
76
use syntax::{
87
algo::find_node_at_offset,
98
ast::{self, AstNode},
@@ -55,9 +54,8 @@ pub(crate) fn parent_module(db: &RootDatabase, position: FilePosition) -> Vec<Na
5554
}
5655

5756
/// Returns `Vec` for the same reason as `parent_module`
58-
pub(crate) fn crate_for(db: &RootDatabase, file_id: FileId) -> Vec<CrateId> {
59-
let sema = Semantics::new(db);
60-
sema.to_module_defs(file_id).map(|module| module.krate().into()).unique().collect()
57+
pub(crate) fn crates_for(db: &RootDatabase, file_id: FileId) -> Vec<CrateId> {
58+
db.relevant_crates(file_id).iter().copied().collect()
6159
}
6260

6361
#[cfg(test)]
@@ -147,7 +145,7 @@ $0
147145
mod foo;
148146
"#,
149147
);
150-
assert_eq!(analysis.crate_for(file_id).unwrap().len(), 1);
148+
assert_eq!(analysis.crates_for(file_id).unwrap().len(), 1);
151149
}
152150

153151
#[test]
@@ -162,6 +160,6 @@ mod baz;
162160
mod baz;
163161
"#,
164162
);
165-
assert_eq!(analysis.crate_for(file_id).unwrap().len(), 2);
163+
assert_eq!(analysis.crates_for(file_id).unwrap().len(), 2);
166164
}
167165
}

‎crates/ide/src/status.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ pub(crate) fn status(db: &RootDatabase, file_id: Option<FileId>) -> String {
4545

4646
if let Some(file_id) = file_id {
4747
format_to!(buf, "\nFile info:\n");
48-
let crates = crate::parent_module::crate_for(db, file_id);
48+
let crates = crate::parent_module::crates_for(db, file_id);
4949
if crates.is_empty() {
5050
format_to!(buf, "Does not belong to any crate");
5151
}

‎crates/rust-analyzer/src/cargo_target_spec.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ impl CargoTargetSpec {
118118
global_state_snapshot: &GlobalStateSnapshot,
119119
file_id: FileId,
120120
) -> Result<Option<CargoTargetSpec>> {
121-
let crate_id = match &*global_state_snapshot.analysis.crate_for(file_id)? {
121+
let crate_id = match &*global_state_snapshot.analysis.crates_for(file_id)? {
122122
&[crate_id, ..] => crate_id,
123123
_ => return Ok(None),
124124
};

‎crates/rust-analyzer/src/dispatch.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ impl<'a> RequestDispatcher<'a> {
5252
let _pctx = stdx::panic_context::enter(panic_context);
5353
f(self.global_state, params)
5454
};
55-
if let Ok(response) = result_to_response::<R>(req.id.clone(), result) {
55+
if let Ok(response) = result_to_response::<R>(req.id, result) {
5656
self.global_state.respond(response);
5757
}
5858

@@ -80,7 +80,7 @@ impl<'a> RequestDispatcher<'a> {
8080
f(global_state_snapshot, params)
8181
});
8282

83-
if let Ok(response) = thread_result_to_response::<R>(req.id.clone(), result) {
83+
if let Ok(response) = thread_result_to_response::<R>(req.id, result) {
8484
self.global_state.respond(response);
8585
}
8686

‎crates/rust-analyzer/src/handlers.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -658,7 +658,7 @@ pub(crate) fn handle_parent_module(
658658

659659
// check if invoked at the crate root
660660
let file_id = from_proto::file_id(&snap, &params.text_document.uri)?;
661-
let crate_id = match snap.analysis.crate_for(file_id)?.first() {
661+
let crate_id = match snap.analysis.crates_for(file_id)?.first() {
662662
Some(&crate_id) => crate_id,
663663
None => return Ok(None),
664664
};
@@ -1782,7 +1782,7 @@ fn run_rustfmt(
17821782
) -> Result<Option<Vec<lsp_types::TextEdit>>> {
17831783
let file_id = from_proto::file_id(snap, &text_document.uri)?;
17841784
let file = snap.analysis.file_text(file_id)?;
1785-
let crate_ids = snap.analysis.crate_for(file_id)?;
1785+
let crate_ids = snap.analysis.crates_for(file_id)?;
17861786

17871787
let line_index = snap.file_line_index(file_id)?;
17881788

‎crates/rust-analyzer/src/main_loop.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -783,7 +783,7 @@ impl GlobalState {
783783
let analysis = this.analysis_host.analysis();
784784
// Crates containing or depending on the saved file
785785
let crate_ids: Vec<_> = analysis
786-
.crate_for(file_id)?
786+
.crates_for(file_id)?
787787
.into_iter()
788788
.flat_map(|id| {
789789
this.analysis_host

0 commit comments

Comments
 (0)
Please sign in to comment.