rust/crates/ide_db/src/items_locator.rs

147 lines
4.5 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-03-02 17:26:53 -06:00
use either::Either;
use hir::{
import_map::{self, ImportKind},
2021-03-02 17:26:53 -06:00
AsAssocItem, Crate, ItemInNs, 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,
};
use rustc_hash::FxHashSet;
2020-02-06 05:52:32 -06:00
2021-01-16 16:53:15 -06:00
pub(crate) const DEFAULT_QUERY_SEARCH_LIMIT: usize = 40;
pub fn with_exact_name(
2021-02-24 17:06:31 -06:00
sema: &Semantics<'_, RootDatabase>,
krate: Crate,
2021-03-02 17:26:53 -06:00
exact_name: String,
) -> FxHashSet<ItemInNs> {
2020-11-13 11:16:56 -06:00
let _p = profile::span("find_exact_imports");
2021-03-02 17:26:53 -06:00
find_items(
2020-11-13 11:16:56 -06:00
sema,
krate,
{
2021-03-02 17:26:53 -06:00
let mut local_query = symbol_index::Query::new(exact_name.clone());
2020-11-13 11:16:56 -06:00
local_query.exact();
2021-01-16 16:53:15 -06:00
local_query.limit(DEFAULT_QUERY_SEARCH_LIMIT);
2020-11-13 11:16:56 -06:00
local_query
},
2021-03-02 17:26:53 -06:00
import_map::Query::new(exact_name)
2021-01-16 16:53:15 -06:00
.limit(DEFAULT_QUERY_SEARCH_LIMIT)
2020-12-28 03:41:08 -06:00
.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(),
2021-03-02 17:26:53 -06:00
)
}
2021-02-23 17:20:00 -06:00
#[derive(Debug)]
pub enum AssocItemSearch {
Include,
Exclude,
AssocItemsOnly,
2020-11-13 11:16:56 -06:00
}
2021-03-02 17:26:53 -06:00
pub fn with_similar_name(
sema: &Semantics<'_, RootDatabase>,
2020-11-13 11:16:56 -06:00
krate: Crate,
2020-12-29 06:35:49 -06:00
fuzzy_search_string: String,
assoc_item_search: AssocItemSearch,
2021-01-16 16:53:15 -06:00
limit: Option<usize>,
2021-03-02 17:26:53 -06:00
) -> FxHashSet<ItemInNs> {
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)
2021-01-16 16:53:15 -06:00
.name_only();
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-12-29 06:35:49 -06:00
let mut local_query = symbol_index::Query::new(fuzzy_search_string);
2021-01-16 16:53:15 -06:00
if let Some(limit) = limit {
external_query = external_query.limit(limit);
local_query.limit(limit);
}
2021-03-02 17:26:53 -06:00
find_items(sema, krate, local_query, external_query)
.into_iter()
.filter(move |&item| match assoc_item_search {
AssocItemSearch::Include => true,
2021-03-02 17:26:53 -06:00
AssocItemSearch::Exclude => !is_assoc_item(item, sema.db),
AssocItemSearch::AssocItemsOnly => is_assoc_item(item, sema.db),
})
.collect()
}
2021-03-02 17:26:53 -06:00
fn is_assoc_item(item: ItemInNs, db: &RootDatabase) -> bool {
item.as_module_def_id()
.and_then(|module_def_id| ModuleDef::from(module_def_id).as_assoc_item(db))
.is_some()
2020-11-13 11:16:56 -06:00
}
2021-03-02 17:26:53 -06:00
fn find_items(
sema: &Semantics<'_, RootDatabase>,
2020-11-13 11:16:56 -06:00
krate: Crate,
2020-11-16 13:24:54 -06:00
local_query: symbol_index::Query,
external_query: import_map::Query,
2021-03-02 17:26:53 -06:00
) -> FxHashSet<ItemInNs> {
2020-11-13 11:16:56 -06:00
let _p = profile::span("find_similar_imports");
let db = sema.db;
// Query dependencies first.
2021-03-02 17:26:53 -06:00
let mut candidates = krate
.query_external_importables(db, external_query)
.map(|external_importable| match external_importable {
Either::Left(module_def) => ItemInNs::from(module_def),
Either::Right(macro_def) => ItemInNs::from(macro_def),
})
.collect::<FxHashSet<_>>();
// 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()
2021-03-02 17:26:53 -06:00
.filter_map(|local_candidate| get_name_definition(sema, &local_candidate))
.filter_map(|name_definition_to_import| match name_definition_to_import {
2021-03-02 17:26:53 -06:00
Definition::ModuleDef(module_def) => Some(ItemInNs::from(module_def)),
Definition::Macro(macro_def) => Some(ItemInNs::from(macro_def)),
_ => None,
}),
);
2021-03-02 17:26:53 -06:00
candidates
}
2021-03-02 17:26:53 -06:00
fn get_name_definition(
sema: &Semantics<'_, 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)
}