2019-12-24 02:19:09 +02: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.
|
|
|
|
|
2020-01-24 09:33:18 +02:00
|
|
|
use hir::{db::HirDatabase, ModuleDef, SourceBinder};
|
2019-12-24 02:19:09 +02:00
|
|
|
use ra_prof::profile;
|
|
|
|
use ra_syntax::{ast, AstNode, SyntaxKind::NAME};
|
|
|
|
|
2020-02-06 16:26:43 +01:00
|
|
|
use crate::{
|
|
|
|
defs::classify_name,
|
|
|
|
defs::NameKind,
|
|
|
|
symbol_index::{self, FileSymbol, Query},
|
|
|
|
RootDatabase,
|
|
|
|
};
|
2020-02-06 12:52:32 +01:00
|
|
|
|
2020-02-06 19:27:48 +02:00
|
|
|
pub struct ImportsLocator<'a> {
|
2019-12-24 02:19:09 +02:00
|
|
|
source_binder: SourceBinder<'a, RootDatabase>,
|
|
|
|
}
|
|
|
|
|
2020-02-06 19:27:48 +02:00
|
|
|
impl<'a> ImportsLocator<'a> {
|
2020-02-06 16:26:43 +01:00
|
|
|
pub fn new(db: &'a RootDatabase) -> Self {
|
2019-12-24 02:19:09 +02:00
|
|
|
Self { source_binder: SourceBinder::new(db) }
|
|
|
|
}
|
|
|
|
|
2020-02-06 16:40:28 +01:00
|
|
|
pub fn find_imports(&mut self, name_to_import: &str) -> Vec<ModuleDef> {
|
2019-12-24 02:19:09 +02: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 21:30:59 +02:00
|
|
|
query.limit(40);
|
2019-12-24 02:19:09 +02: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 21:30:59 +02:00
|
|
|
query.limit(40);
|
2019-12-24 02:19:09 +02: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-06 16:00:39 +01:00
|
|
|
.filter_map(|name_definition_to_import| match name_definition_to_import {
|
2020-02-07 14:26:59 +01:00
|
|
|
NameKind::ModuleDef(module_def) => Some(module_def),
|
2020-02-04 13:41:56 +01:00
|
|
|
_ => None,
|
2019-12-24 02:19:09 +02:00
|
|
|
})
|
|
|
|
.collect()
|
|
|
|
}
|
2020-02-06 16:40:28 +01:00
|
|
|
|
|
|
|
fn get_name_definition(
|
|
|
|
&mut self,
|
|
|
|
db: &impl HirDatabase,
|
|
|
|
import_candidate: &FileSymbol,
|
|
|
|
) -> Option<NameKind> {
|
|
|
|
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)? },
|
|
|
|
)
|
|
|
|
.map(|it| it.kind)
|
|
|
|
}
|
2019-12-24 02:19:09 +02:00
|
|
|
}
|