2019-12-23 18:19:09 -06:00
|
|
|
//! This module contains an import search funcionality that is provided to the ra_assists module.
|
|
|
|
//! Later, this should be moved away to a separate crate that is accessible from the ra_assists module.
|
|
|
|
|
|
|
|
use crate::{
|
|
|
|
db::RootDatabase,
|
2020-02-06 05:22:35 -06:00
|
|
|
ide_db::symbol_index::{self, FileSymbol},
|
2020-01-24 01:33:18 -06:00
|
|
|
references::{classify_name, NameDefinition, NameKind},
|
2019-12-23 18:19:09 -06:00
|
|
|
Query,
|
|
|
|
};
|
2020-01-24 01:33:18 -06:00
|
|
|
use hir::{db::HirDatabase, ModuleDef, SourceBinder};
|
2019-12-23 18:19:09 -06:00
|
|
|
use ra_assists::ImportsLocator;
|
|
|
|
use ra_prof::profile;
|
|
|
|
use ra_syntax::{ast, AstNode, SyntaxKind::NAME};
|
|
|
|
|
|
|
|
pub(crate) struct ImportsLocatorIde<'a> {
|
|
|
|
source_binder: SourceBinder<'a, RootDatabase>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> ImportsLocatorIde<'a> {
|
|
|
|
pub(crate) fn new(db: &'a RootDatabase) -> Self {
|
|
|
|
Self { source_binder: SourceBinder::new(db) }
|
|
|
|
}
|
|
|
|
|
2020-01-24 01:33:18 -06:00
|
|
|
fn get_name_definition(
|
2019-12-23 18:19:09 -06:00
|
|
|
&mut self,
|
2020-01-24 01:33:18 -06:00
|
|
|
db: &impl HirDatabase,
|
|
|
|
import_candidate: &FileSymbol,
|
|
|
|
) -> Option<NameDefinition> {
|
|
|
|
let _p = profile("get_name_definition");
|
|
|
|
let file_id = import_candidate.file_id.into();
|
|
|
|
let candidate_node = import_candidate.ptr.to_node(&db.parse_or_expand(file_id)?);
|
|
|
|
let candidate_name_node = if candidate_node.kind() != NAME {
|
|
|
|
candidate_node.children().find(|it| it.kind() == NAME)?
|
|
|
|
} else {
|
|
|
|
candidate_node
|
|
|
|
};
|
|
|
|
classify_name(
|
|
|
|
&mut self.source_binder,
|
|
|
|
hir::InFile { file_id, value: &ast::Name::cast(candidate_name_node)? },
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-27 06:42:45 -06:00
|
|
|
impl ImportsLocator for ImportsLocatorIde<'_> {
|
2020-01-24 01:33:18 -06:00
|
|
|
fn find_imports(&mut self, name_to_import: &str) -> Vec<ModuleDef> {
|
2019-12-23 18:19:09 -06:00
|
|
|
let _p = profile("search_for_imports");
|
|
|
|
let db = self.source_binder.db;
|
|
|
|
|
|
|
|
let project_results = {
|
|
|
|
let mut query = Query::new(name_to_import.to_string());
|
|
|
|
query.exact();
|
2020-01-23 13:30:59 -06:00
|
|
|
query.limit(40);
|
2019-12-23 18:19:09 -06:00
|
|
|
symbol_index::world_symbols(db, query)
|
|
|
|
};
|
|
|
|
let lib_results = {
|
|
|
|
let mut query = Query::new(name_to_import.to_string());
|
|
|
|
query.libs();
|
|
|
|
query.exact();
|
2020-01-23 13:30:59 -06:00
|
|
|
query.limit(40);
|
2019-12-23 18:19:09 -06:00
|
|
|
symbol_index::world_symbols(db, query)
|
|
|
|
};
|
|
|
|
|
|
|
|
project_results
|
|
|
|
.into_iter()
|
|
|
|
.chain(lib_results.into_iter())
|
|
|
|
.filter_map(|import_candidate| self.get_name_definition(db, &import_candidate))
|
2020-02-04 06:41:56 -06:00
|
|
|
.filter_map(|name_definition_to_import| match name_definition_to_import.kind {
|
|
|
|
NameKind::Def(module_def) => Some(module_def),
|
|
|
|
_ => None,
|
2019-12-23 18:19:09 -06:00
|
|
|
})
|
|
|
|
.collect()
|
|
|
|
}
|
|
|
|
}
|