2019-12-24 00:19:09 +00: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-06-09 16:48:44 +00:00
|
|
|
use hir::{Crate, MacroDef, ModuleDef, Semantics};
|
2020-08-12 16:26:51 +00:00
|
|
|
use syntax::{ast, AstNode, SyntaxKind::NAME};
|
2019-12-24 00:19:09 +00:00
|
|
|
|
2020-02-06 15:26:43 +00:00
|
|
|
use crate::{
|
2020-03-03 17:36:39 +00:00
|
|
|
defs::{classify_name, Definition},
|
2020-02-06 15:26:43 +00:00
|
|
|
symbol_index::{self, FileSymbol, Query},
|
|
|
|
RootDatabase,
|
|
|
|
};
|
2020-03-23 11:34:56 +00:00
|
|
|
use either::Either;
|
2020-06-09 16:48:44 +00:00
|
|
|
use rustc_hash::FxHashSet;
|
2020-02-06 11:52:32 +00:00
|
|
|
|
2020-07-01 08:48:15 +00:00
|
|
|
pub fn find_imports<'a>(
|
|
|
|
sema: &Semantics<'a, RootDatabase>,
|
2020-06-09 16:48:44 +00:00
|
|
|
krate: Crate,
|
2020-07-01 08:48:15 +00:00
|
|
|
name_to_import: &str,
|
|
|
|
) -> Vec<Either<ModuleDef, MacroDef>> {
|
2020-08-12 14:32:36 +00:00
|
|
|
let _p = profile::span("search_for_imports");
|
2020-07-01 08:48:15 +00:00
|
|
|
let db = sema.db;
|
2019-12-24 00:19:09 +00:00
|
|
|
|
2020-07-01 08:48:15 +00:00
|
|
|
// Query dependencies first.
|
|
|
|
let mut candidates: FxHashSet<_> =
|
|
|
|
krate.query_external_importables(db, name_to_import).collect();
|
2019-12-24 00:19:09 +00:00
|
|
|
|
2020-07-01 08:48:15 +00:00
|
|
|
// 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)
|
|
|
|
};
|
2020-06-09 16:48:44 +00:00
|
|
|
|
2020-07-01 08:48:15 +00:00
|
|
|
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,
|
|
|
|
}),
|
|
|
|
);
|
2019-12-24 00:19:09 +00:00
|
|
|
|
2020-07-01 08:48:15 +00:00
|
|
|
candidates.into_iter().collect()
|
|
|
|
}
|
2020-02-06 15:40:28 +00:00
|
|
|
|
2020-07-01 08:48:15 +00:00
|
|
|
fn get_name_definition<'a>(
|
|
|
|
sema: &Semantics<'a, RootDatabase>,
|
|
|
|
import_candidate: &FileSymbol,
|
|
|
|
) -> Option<Definition> {
|
2020-08-12 14:32:36 +00:00
|
|
|
let _p = profile::span("get_name_definition");
|
2020-07-01 08:48:15 +00:00
|
|
|
let file_id = import_candidate.file_id;
|
2020-02-18 17:35:10 +00:00
|
|
|
|
2020-07-01 08:48:15 +00:00
|
|
|
let candidate_node = import_candidate.ptr.to_node(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)?;
|
2020-08-08 18:14:18 +00:00
|
|
|
classify_name(sema, &name)?.into_definition(sema.db)
|
2019-12-24 00:19:09 +00:00
|
|
|
}
|