mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-13 21:54:42 +00:00
Use the existing Semantics in auto_import
This commit is contained in:
parent
d34fd372bb
commit
c1139a5a44
2 changed files with 51 additions and 55 deletions
|
@ -5,7 +5,7 @@ use hir::{
|
||||||
AsAssocItem, AssocItemContainer, ModPath, Module, ModuleDef, PathResolution, Semantics, Trait,
|
AsAssocItem, AssocItemContainer, ModPath, Module, ModuleDef, PathResolution, Semantics, Trait,
|
||||||
Type,
|
Type,
|
||||||
};
|
};
|
||||||
use ra_ide_db::{imports_locator::ImportsLocator, RootDatabase};
|
use ra_ide_db::{imports_locator, RootDatabase};
|
||||||
use ra_prof::profile;
|
use ra_prof::profile;
|
||||||
use ra_syntax::{
|
use ra_syntax::{
|
||||||
ast::{self, AstNode},
|
ast::{self, AstNode},
|
||||||
|
@ -35,8 +35,8 @@ use crate::{utils::insert_use_statement, AssistContext, AssistId, Assists, Group
|
||||||
// # pub mod std { pub mod collections { pub struct HashMap { } } }
|
// # pub mod std { pub mod collections { pub struct HashMap { } } }
|
||||||
// ```
|
// ```
|
||||||
pub(crate) fn auto_import(acc: &mut Assists, ctx: &AssistContext) -> Option<()> {
|
pub(crate) fn auto_import(acc: &mut Assists, ctx: &AssistContext) -> Option<()> {
|
||||||
let auto_import_assets = AutoImportAssets::new(&ctx)?;
|
let auto_import_assets = AutoImportAssets::new(ctx)?;
|
||||||
let proposed_imports = auto_import_assets.search_for_imports(ctx.db());
|
let proposed_imports = auto_import_assets.search_for_imports(ctx);
|
||||||
if proposed_imports.is_empty() {
|
if proposed_imports.is_empty() {
|
||||||
return None;
|
return None;
|
||||||
}
|
}
|
||||||
|
@ -127,11 +127,11 @@ impl AutoImportAssets {
|
||||||
GroupLabel(name)
|
GroupLabel(name)
|
||||||
}
|
}
|
||||||
|
|
||||||
fn search_for_imports(&self, db: &RootDatabase) -> BTreeSet<ModPath> {
|
fn search_for_imports(&self, ctx: &AssistContext) -> BTreeSet<ModPath> {
|
||||||
let _p = profile("auto_import::search_for_imports");
|
let _p = profile("auto_import::search_for_imports");
|
||||||
|
let db = ctx.db();
|
||||||
let current_crate = self.module_with_name_to_import.krate();
|
let current_crate = self.module_with_name_to_import.krate();
|
||||||
ImportsLocator::new(db, current_crate)
|
imports_locator::find_imports(&ctx.sema, current_crate, &self.get_search_query())
|
||||||
.find_imports(&self.get_search_query())
|
|
||||||
.into_iter()
|
.into_iter()
|
||||||
.filter_map(|candidate| match &self.import_candidate {
|
.filter_map(|candidate| match &self.import_candidate {
|
||||||
ImportCandidate::TraitAssocItem(assoc_item_type, _) => {
|
ImportCandidate::TraitAssocItem(assoc_item_type, _) => {
|
||||||
|
|
|
@ -13,57 +13,53 @@ use crate::{
|
||||||
use either::Either;
|
use either::Either;
|
||||||
use rustc_hash::FxHashSet;
|
use rustc_hash::FxHashSet;
|
||||||
|
|
||||||
pub struct ImportsLocator<'a> {
|
pub fn find_imports<'a>(
|
||||||
sema: Semantics<'a, RootDatabase>,
|
sema: &Semantics<'a, RootDatabase>,
|
||||||
krate: Crate,
|
krate: Crate,
|
||||||
|
name_to_import: &str,
|
||||||
|
) -> Vec<Either<ModuleDef, MacroDef>> {
|
||||||
|
let _p = profile("search_for_imports");
|
||||||
|
let db = sema.db;
|
||||||
|
|
||||||
|
// Query dependencies first.
|
||||||
|
let mut candidates: FxHashSet<_> =
|
||||||
|
krate.query_external_importables(db, name_to_import).collect();
|
||||||
|
|
||||||
|
// Query the local crate using the symbol index.
|
||||||
|
let local_results = {
|
||||||
|
let mut query = Query::new(name_to_import.to_string());
|
||||||
|
query.exact();
|
||||||
|
query.limit(40);
|
||||||
|
symbol_index::crate_symbols(db, krate.into(), query)
|
||||||
|
};
|
||||||
|
|
||||||
|
candidates.extend(
|
||||||
|
local_results
|
||||||
|
.into_iter()
|
||||||
|
.filter_map(|import_candidate| get_name_definition(sema, &import_candidate))
|
||||||
|
.filter_map(|name_definition_to_import| match name_definition_to_import {
|
||||||
|
Definition::ModuleDef(module_def) => Some(Either::Left(module_def)),
|
||||||
|
Definition::Macro(macro_def) => Some(Either::Right(macro_def)),
|
||||||
|
_ => None,
|
||||||
|
}),
|
||||||
|
);
|
||||||
|
|
||||||
|
candidates.into_iter().collect()
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<'a> ImportsLocator<'a> {
|
fn get_name_definition<'a>(
|
||||||
pub fn new(db: &'a RootDatabase, krate: Crate) -> Self {
|
sema: &Semantics<'a, RootDatabase>,
|
||||||
Self { sema: Semantics::new(db), krate }
|
import_candidate: &FileSymbol,
|
||||||
}
|
) -> Option<Definition> {
|
||||||
|
let _p = profile("get_name_definition");
|
||||||
|
let file_id = import_candidate.file_id;
|
||||||
|
|
||||||
pub fn find_imports(&mut self, name_to_import: &str) -> Vec<Either<ModuleDef, MacroDef>> {
|
let candidate_node = import_candidate.ptr.to_node(sema.parse(file_id).syntax());
|
||||||
let _p = profile("search_for_imports");
|
let candidate_name_node = if candidate_node.kind() != NAME {
|
||||||
let db = self.sema.db;
|
candidate_node.children().find(|it| it.kind() == NAME)?
|
||||||
|
} else {
|
||||||
// Query dependencies first.
|
candidate_node
|
||||||
let mut candidates: FxHashSet<_> =
|
};
|
||||||
self.krate.query_external_importables(db, name_to_import).collect();
|
let name = ast::Name::cast(candidate_name_node)?;
|
||||||
|
classify_name(sema, &name)?.into_definition()
|
||||||
// Query the local crate using the symbol index.
|
|
||||||
let local_results = {
|
|
||||||
let mut query = Query::new(name_to_import.to_string());
|
|
||||||
query.exact();
|
|
||||||
query.limit(40);
|
|
||||||
symbol_index::crate_symbols(db, self.krate.into(), query)
|
|
||||||
};
|
|
||||||
|
|
||||||
candidates.extend(
|
|
||||||
local_results
|
|
||||||
.into_iter()
|
|
||||||
.filter_map(|import_candidate| self.get_name_definition(&import_candidate))
|
|
||||||
.filter_map(|name_definition_to_import| match name_definition_to_import {
|
|
||||||
Definition::ModuleDef(module_def) => Some(Either::Left(module_def)),
|
|
||||||
Definition::Macro(macro_def) => Some(Either::Right(macro_def)),
|
|
||||||
_ => None,
|
|
||||||
}),
|
|
||||||
);
|
|
||||||
|
|
||||||
candidates.into_iter().collect()
|
|
||||||
}
|
|
||||||
|
|
||||||
fn get_name_definition(&mut self, import_candidate: &FileSymbol) -> Option<Definition> {
|
|
||||||
let _p = profile("get_name_definition");
|
|
||||||
let file_id = import_candidate.file_id;
|
|
||||||
|
|
||||||
let candidate_node = import_candidate.ptr.to_node(self.sema.parse(file_id).syntax());
|
|
||||||
let candidate_name_node = if candidate_node.kind() != NAME {
|
|
||||||
candidate_node.children().find(|it| it.kind() == NAME)?
|
|
||||||
} else {
|
|
||||||
candidate_node
|
|
||||||
};
|
|
||||||
let name = ast::Name::cast(candidate_name_node)?;
|
|
||||||
classify_name(&self.sema, &name)?.into_definition()
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue