2021-01-08 14:46:48 +00:00
|
|
|
//! This module contains an import search functionality that is provided to the assists module.
|
2020-08-13 15:33:38 +00:00
|
|
|
//! Later, this should be moved away to a separate crate that is accessible from the assists module.
|
2019-12-24 00:19:09 +00:00
|
|
|
|
2021-01-05 08:34:03 +00:00
|
|
|
use hir::{
|
|
|
|
import_map::{self, ImportKind},
|
|
|
|
AsAssocItem, 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-10-15 15:27:50 +00:00
|
|
|
defs::{Definition, NameClass},
|
2020-11-16 19:24:54 +00:00
|
|
|
symbol_index::{self, FileSymbol},
|
2020-02-06 15:26:43 +00:00
|
|
|
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
|
|
|
|
2021-01-16 22:53:15 +00:00
|
|
|
pub(crate) const DEFAULT_QUERY_SEARCH_LIMIT: usize = 40;
|
2021-01-16 17:33:36 +00:00
|
|
|
|
2020-11-13 17:16:56 +00:00
|
|
|
pub fn find_exact_imports<'a>(
|
2020-07-01 08:48:15 +00:00
|
|
|
sema: &Semantics<'a, RootDatabase>,
|
2020-06-09 16:48:44 +00:00
|
|
|
krate: Crate,
|
2020-12-29 12:35:49 +00:00
|
|
|
name_to_import: String,
|
2021-01-05 08:34:03 +00:00
|
|
|
) -> Box<dyn Iterator<Item = Either<ModuleDef, MacroDef>>> {
|
2020-11-13 17:16:56 +00:00
|
|
|
let _p = profile::span("find_exact_imports");
|
2021-01-05 08:34:03 +00:00
|
|
|
Box::new(find_imports(
|
2020-11-13 17:16:56 +00:00
|
|
|
sema,
|
|
|
|
krate,
|
|
|
|
{
|
2020-12-29 12:35:49 +00:00
|
|
|
let mut local_query = symbol_index::Query::new(name_to_import.clone());
|
2020-11-13 17:16:56 +00:00
|
|
|
local_query.exact();
|
2021-01-16 22:53:15 +00:00
|
|
|
local_query.limit(DEFAULT_QUERY_SEARCH_LIMIT);
|
2020-11-13 17:16:56 +00:00
|
|
|
local_query
|
|
|
|
},
|
2020-12-28 09:41:08 +00:00
|
|
|
import_map::Query::new(name_to_import)
|
2021-01-16 22:53:15 +00:00
|
|
|
.limit(DEFAULT_QUERY_SEARCH_LIMIT)
|
2020-12-28 09:41:08 +00:00
|
|
|
.name_only()
|
2020-12-28 12:24:13 +00:00
|
|
|
.search_mode(import_map::SearchMode::Equals)
|
2020-12-28 09:41:08 +00:00
|
|
|
.case_sensitive(),
|
2021-01-05 08:34:03 +00:00
|
|
|
))
|
|
|
|
}
|
|
|
|
|
|
|
|
pub enum AssocItemSearch {
|
|
|
|
Include,
|
|
|
|
Exclude,
|
|
|
|
AssocItemsOnly,
|
2020-11-13 17:16:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn find_similar_imports<'a>(
|
|
|
|
sema: &Semantics<'a, RootDatabase>,
|
|
|
|
krate: Crate,
|
2020-12-29 12:35:49 +00:00
|
|
|
fuzzy_search_string: String,
|
2021-01-05 08:34:03 +00:00
|
|
|
assoc_item_search: AssocItemSearch,
|
2021-01-16 22:53:15 +00:00
|
|
|
limit: Option<usize>,
|
2021-01-05 08:34:03 +00:00
|
|
|
) -> Box<dyn Iterator<Item = Either<ModuleDef, MacroDef>> + 'a> {
|
2020-11-13 17:16:56 +00:00
|
|
|
let _p = profile::span("find_similar_imports");
|
2020-11-24 00:26:16 +00:00
|
|
|
|
2020-12-29 12:35:49 +00:00
|
|
|
let mut external_query = import_map::Query::new(fuzzy_search_string.clone())
|
2021-01-05 08:34:03 +00:00
|
|
|
.search_mode(import_map::SearchMode::Fuzzy)
|
2021-01-16 22:53:15 +00:00
|
|
|
.name_only();
|
2021-01-05 08:34:03 +00:00
|
|
|
|
|
|
|
match assoc_item_search {
|
|
|
|
AssocItemSearch::Include => {}
|
|
|
|
AssocItemSearch::Exclude => {
|
|
|
|
external_query = external_query.exclude_import_kind(ImportKind::AssociatedItem);
|
|
|
|
}
|
|
|
|
AssocItemSearch::AssocItemsOnly => {
|
|
|
|
external_query = external_query.assoc_items_only();
|
|
|
|
}
|
2020-11-24 00:26:16 +00:00
|
|
|
}
|
|
|
|
|
2020-12-29 12:35:49 +00:00
|
|
|
let mut local_query = symbol_index::Query::new(fuzzy_search_string);
|
2021-01-16 22:53:15 +00:00
|
|
|
|
|
|
|
if let Some(limit) = limit {
|
|
|
|
external_query = external_query.limit(limit);
|
|
|
|
local_query.limit(limit);
|
|
|
|
}
|
2020-12-08 12:38:43 +00:00
|
|
|
|
2021-01-04 16:33:05 +00:00
|
|
|
let db = sema.db;
|
2021-01-05 08:34:03 +00:00
|
|
|
Box::new(find_imports(sema, krate, local_query, external_query).filter(
|
|
|
|
move |import_candidate| match assoc_item_search {
|
|
|
|
AssocItemSearch::Include => true,
|
|
|
|
AssocItemSearch::Exclude => !is_assoc_item(import_candidate, db),
|
|
|
|
AssocItemSearch::AssocItemsOnly => is_assoc_item(import_candidate, db),
|
|
|
|
},
|
|
|
|
))
|
|
|
|
}
|
|
|
|
|
|
|
|
fn is_assoc_item(import_candidate: &Either<ModuleDef, MacroDef>, db: &RootDatabase) -> bool {
|
|
|
|
match import_candidate {
|
|
|
|
Either::Left(ModuleDef::Function(function)) => function.as_assoc_item(db).is_some(),
|
|
|
|
Either::Left(ModuleDef::Const(const_)) => const_.as_assoc_item(db).is_some(),
|
|
|
|
Either::Left(ModuleDef::TypeAlias(type_alias)) => type_alias.as_assoc_item(db).is_some(),
|
|
|
|
_ => false,
|
|
|
|
}
|
2020-11-13 17:16:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn find_imports<'a>(
|
|
|
|
sema: &Semantics<'a, RootDatabase>,
|
|
|
|
krate: Crate,
|
2020-11-16 19:24:54 +00:00
|
|
|
local_query: symbol_index::Query,
|
|
|
|
external_query: import_map::Query,
|
2020-11-13 17:16:56 +00:00
|
|
|
) -> impl Iterator<Item = Either<ModuleDef, MacroDef>> {
|
|
|
|
let _p = profile::span("find_similar_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.
|
2020-11-13 17:16:56 +00:00
|
|
|
let mut candidates: FxHashSet<_> =
|
|
|
|
krate.query_external_importables(db, external_query).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.
|
2020-11-13 17:16:56 +00:00
|
|
|
let local_results = symbol_index::crate_symbols(db, krate.into(), local_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-11-13 17:16:56 +00:00
|
|
|
candidates.into_iter()
|
2020-07-01 08:48:15 +00:00
|
|
|
}
|
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-10-15 15:33:32 +00:00
|
|
|
NameClass::classify(sema, &name)?.defined(sema.db)
|
2019-12-24 00:19:09 +00:00
|
|
|
}
|