Skip to content

Commit a70a0ca

Browse files
author
Jonas Schievink
committed
ImportsLocator: use ImportMap for non-local crates
1 parent b01fb22 commit a70a0ca

File tree

2 files changed

+70
-23
lines changed

2 files changed

+70
-23
lines changed

crates/ra_assists/src/handlers/auto_import.rs

Lines changed: 46 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ impl AutoImportAssets {
130130
fn search_for_imports(&self, db: &RootDatabase) -> BTreeSet<ModPath> {
131131
let _p = profile("auto_import::search_for_imports");
132132
let current_crate = self.module_with_name_to_import.krate();
133-
ImportsLocator::new(db)
133+
ImportsLocator::new(db, current_crate)
134134
.find_imports(&self.get_search_query())
135135
.into_iter()
136136
.filter_map(|candidate| match &self.import_candidate {
@@ -841,4 +841,49 @@ fn main() {
841841
",
842842
)
843843
}
844+
845+
#[test]
846+
fn dep_import() {
847+
check_assist(
848+
auto_import,
849+
r"
850+
//- /lib.rs crate:dep
851+
pub struct Struct;
852+
853+
//- /main.rs crate:main deps:dep
854+
fn main() {
855+
Struct<|>
856+
}",
857+
r"use dep::Struct;
858+
859+
fn main() {
860+
Struct
861+
}
862+
",
863+
);
864+
}
865+
866+
#[test]
867+
fn whole_segment() {
868+
check_assist(
869+
auto_import,
870+
r"
871+
//- /lib.rs crate:dep
872+
pub mod fmt {
873+
pub trait Display {}
874+
}
875+
876+
pub fn panic_fmt() {}
877+
878+
//- /main.rs crate:main deps:dep
879+
struct S;
880+
881+
impl f<|>mt::Display for S {}",
882+
r"use dep::fmt;
883+
884+
struct S;
885+
impl fmt::Display for S {}
886+
",
887+
);
888+
}
844889
}

crates/ra_ide_db/src/imports_locator.rs

Lines changed: 24 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//! This module contains an import search funcionality that is provided to the ra_assists module.
22
//! Later, this should be moved away to a separate crate that is accessible from the ra_assists module.
33
4-
use hir::{MacroDef, ModuleDef, Semantics};
4+
use hir::{Crate, MacroDef, ModuleDef, Semantics};
55
use ra_prof::profile;
66
use ra_syntax::{ast, AstNode, SyntaxKind::NAME};
77

@@ -11,44 +11,46 @@ use crate::{
1111
RootDatabase,
1212
};
1313
use either::Either;
14+
use rustc_hash::FxHashSet;
1415

1516
pub struct ImportsLocator<'a> {
1617
sema: Semantics<'a, RootDatabase>,
18+
krate: Crate,
1719
}
1820

1921
impl<'a> ImportsLocator<'a> {
20-
pub fn new(db: &'a RootDatabase) -> Self {
21-
Self { sema: Semantics::new(db) }
22+
pub fn new(db: &'a RootDatabase, krate: Crate) -> Self {
23+
Self { sema: Semantics::new(db), krate }
2224
}
2325

2426
pub fn find_imports(&mut self, name_to_import: &str) -> Vec<Either<ModuleDef, MacroDef>> {
2527
let _p = profile("search_for_imports");
2628
let db = self.sema.db;
2729

28-
let project_results = {
29-
let mut query = Query::new(name_to_import.to_string());
30-
query.exact();
31-
query.limit(40);
32-
symbol_index::world_symbols(db, query)
33-
};
34-
let lib_results = {
30+
// Query dependencies first.
31+
let mut candidates: FxHashSet<_> =
32+
self.krate.query_external_importables(db, name_to_import).collect();
33+
34+
// Query the local crate using the symbol index.
35+
let local_results = {
3536
let mut query = Query::new(name_to_import.to_string());
36-
query.libs();
3737
query.exact();
3838
query.limit(40);
39-
symbol_index::world_symbols(db, query)
39+
symbol_index::crate_symbols(db, self.krate.into(), query)
4040
};
4141

42-
project_results
43-
.into_iter()
44-
.chain(lib_results.into_iter())
45-
.filter_map(|import_candidate| self.get_name_definition(&import_candidate))
46-
.filter_map(|name_definition_to_import| match name_definition_to_import {
47-
Definition::ModuleDef(module_def) => Some(Either::Left(module_def)),
48-
Definition::Macro(macro_def) => Some(Either::Right(macro_def)),
49-
_ => None,
50-
})
51-
.collect()
42+
candidates.extend(
43+
local_results
44+
.into_iter()
45+
.filter_map(|import_candidate| self.get_name_definition(&import_candidate))
46+
.filter_map(|name_definition_to_import| match name_definition_to_import {
47+
Definition::ModuleDef(module_def) => Some(Either::Left(module_def)),
48+
Definition::Macro(macro_def) => Some(Either::Right(macro_def)),
49+
_ => None,
50+
}),
51+
);
52+
53+
candidates.into_iter().collect()
5254
}
5355

5456
fn get_name_definition(&mut self, import_candidate: &FileSymbol) -> Option<Definition> {

0 commit comments

Comments
 (0)