rust/crates/ide_db/src/imports_locator.rs

124 lines
4.0 KiB
Rust
Raw Normal View History

2021-01-08 08:46:48 -06:00
//! This module contains an import search functionality that is provided to the assists module.
2020-08-13 10:33:38 -05:00
//! Later, this should be moved away to a separate crate that is accessible from the assists module.
2021-01-04 10:33:05 -06:00
use hir::{import_map, AsAssocItem, Crate, MacroDef, ModuleDef, Semantics};
2020-08-12 11:26:51 -05:00
use syntax::{ast, AstNode, SyntaxKind::NAME};
2020-02-06 09:26:43 -06:00
use crate::{
2020-10-15 10:27:50 -05:00
defs::{Definition, NameClass},
2020-11-16 13:24:54 -06:00
symbol_index::{self, FileSymbol},
2020-02-06 09:26:43 -06:00
RootDatabase,
};
2020-03-23 06:34:56 -05:00
use either::Either;
use rustc_hash::FxHashSet;
2020-02-06 05:52:32 -06:00
2020-11-13 11:16:56 -06:00
pub fn find_exact_imports<'a>(
sema: &Semantics<'a, RootDatabase>,
krate: Crate,
2020-12-29 06:35:49 -06:00
name_to_import: String,
2020-11-13 11:16:56 -06:00
) -> impl Iterator<Item = Either<ModuleDef, MacroDef>> {
let _p = profile::span("find_exact_imports");
find_imports(
sema,
krate,
{
2020-12-29 06:35:49 -06:00
let mut local_query = symbol_index::Query::new(name_to_import.clone());
2020-11-13 11:16:56 -06:00
local_query.exact();
local_query.limit(40);
local_query
},
2020-12-28 03:41:08 -06:00
import_map::Query::new(name_to_import)
.limit(40)
.name_only()
2020-12-28 06:24:13 -06:00
.search_mode(import_map::SearchMode::Equals)
2020-12-28 03:41:08 -06:00
.case_sensitive(),
2020-11-13 11:16:56 -06:00
)
}
pub fn find_similar_imports<'a>(
sema: &Semantics<'a, RootDatabase>,
krate: Crate,
limit: Option<usize>,
2020-12-29 06:35:49 -06:00
fuzzy_search_string: String,
2021-01-04 10:33:05 -06:00
ignore_assoc_items: bool,
2020-12-28 06:24:13 -06:00
name_only: bool,
2021-01-04 10:33:05 -06:00
) -> impl Iterator<Item = Either<ModuleDef, MacroDef>> + 'a {
2020-11-13 11:16:56 -06:00
let _p = profile::span("find_similar_imports");
2020-12-29 06:35:49 -06:00
let mut external_query = import_map::Query::new(fuzzy_search_string.clone())
.search_mode(import_map::SearchMode::Fuzzy);
2020-12-28 06:24:13 -06:00
if name_only {
external_query = external_query.name_only();
}
2020-12-29 06:35:49 -06:00
let mut local_query = symbol_index::Query::new(fuzzy_search_string);
if let Some(limit) = limit {
local_query.limit(limit);
external_query = external_query.limit(limit);
}
2021-01-04 10:33:05 -06:00
let db = sema.db;
find_imports(sema, krate, local_query, external_query).filter(move |import_candidate| {
if ignore_assoc_items {
match import_candidate {
Either::Left(ModuleDef::Function(function)) => function.as_assoc_item(db).is_none(),
Either::Left(ModuleDef::Const(const_)) => const_.as_assoc_item(db).is_none(),
Either::Left(ModuleDef::TypeAlias(type_alias)) => {
type_alias.as_assoc_item(db).is_none()
}
_ => true,
}
} else {
true
}
})
2020-11-13 11:16:56 -06:00
}
fn find_imports<'a>(
sema: &Semantics<'a, RootDatabase>,
krate: Crate,
2020-11-16 13:24:54 -06:00
local_query: symbol_index::Query,
external_query: import_map::Query,
2020-11-13 11:16:56 -06:00
) -> impl Iterator<Item = Either<ModuleDef, MacroDef>> {
let _p = profile::span("find_similar_imports");
let db = sema.db;
// Query dependencies first.
2020-11-13 11:16:56 -06:00
let mut candidates: FxHashSet<_> =
krate.query_external_importables(db, external_query).collect();
// Query the local crate using the symbol index.
2020-11-13 11:16:56 -06:00
let local_results = symbol_index::crate_symbols(db, krate.into(), local_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,
}),
);
2020-11-13 11:16:56 -06:00
candidates.into_iter()
}
fn get_name_definition<'a>(
sema: &Semantics<'a, RootDatabase>,
import_candidate: &FileSymbol,
) -> Option<Definition> {
2020-08-12 09:32:36 -05:00
let _p = profile::span("get_name_definition");
let file_id = import_candidate.file_id;
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-10-15 10:33:32 -05:00
NameClass::classify(sema, &name)?.defined(sema.db)
}