diff options
| author | Kirill Bulatov <mail4score@gmail.com> | 2020-12-28 14:24:13 +0200 |
|---|---|---|
| committer | Kirill Bulatov <mail4score@gmail.com> | 2020-12-28 15:06:10 +0200 |
| commit | c4995cfbd5b265c02d3038d72b8a022cde5f7040 (patch) | |
| tree | d2fdb44eedf6c5e806804a1b874643b52586bb44 | |
| parent | 0e48cd0c3c712cea0267476de974012b2b05b508 (diff) | |
| download | rust-c4995cfbd5b265c02d3038d72b8a022cde5f7040.tar.gz rust-c4995cfbd5b265c02d3038d72b8a022cde5f7040.zip | |
Better query api and fuzzy search
| -rw-r--r-- | crates/completion/src/completions/unqualified_path.rs | 2 | ||||
| -rw-r--r-- | crates/hir_def/src/import_map.rs | 73 | ||||
| -rw-r--r-- | crates/ide_db/src/imports_locator.rs | 13 |
3 files changed, 47 insertions, 41 deletions
diff --git a/crates/completion/src/completions/unqualified_path.rs b/crates/completion/src/completions/unqualified_path.rs index 3d72a08b443..d0984975206 100644 --- a/crates/completion/src/completions/unqualified_path.rs +++ b/crates/completion/src/completions/unqualified_path.rs @@ -135,7 +135,7 @@ fn fuzzy_completion(acc: &mut Completions, ctx: &CompletionContext) -> Option<() ctx.krate?, Some(100), &potential_import_name, - false, + true, ) .filter_map(|import_candidate| { Some(match import_candidate { diff --git a/crates/hir_def/src/import_map.rs b/crates/hir_def/src/import_map.rs index 64d0ec47174..ce25e1c6e9a 100644 --- a/crates/hir_def/src/import_map.rs +++ b/crates/hir_def/src/import_map.rs @@ -156,7 +156,8 @@ impl ImportMap { let start = last_batch_start; last_batch_start = idx + 1; - let key = fst_string(&importables[start].1.path); + let key = fst_path(&importables[start].1.path); + builder.insert(key, start as u64).unwrap(); } @@ -212,15 +213,15 @@ impl fmt::Debug for ImportMap { } } -fn fst_string<T: ToString>(t: &T) -> String { - let mut s = t.to_string(); +fn fst_path(path: &ImportPath) -> String { + let mut s = path.to_string(); s.make_ascii_lowercase(); s } fn cmp((_, lhs): &(&ItemInNs, &ImportInfo), (_, rhs): &(&ItemInNs, &ImportInfo)) -> Ordering { - let lhs_str = fst_string(&lhs.path); - let rhs_str = fst_string(&rhs.path); + let lhs_str = fst_path(&lhs.path); + let rhs_str = fst_path(&rhs.path); lhs_str.cmp(&rhs_str) } @@ -237,14 +238,20 @@ pub enum ImportKind { BuiltinType, } +/// todo kb +#[derive(Debug)] +pub enum SearchMode { + Equals, + Contains, + Fuzzy, +} + #[derive(Debug)] pub struct Query { query: String, lowercased: String, - // TODO kb use enums instead? name_only: bool, - name_end: bool, - strict_include: bool, + search_mode: SearchMode, case_sensitive: bool, limit: usize, exclude_import_kinds: FxHashSet<ImportKind>, @@ -253,29 +260,23 @@ pub struct Query { impl Query { pub fn new(query: &str) -> Self { Self { - lowercased: query.to_lowercase(), query: query.to_string(), + lowercased: query.to_lowercase(), name_only: false, - name_end: false, - strict_include: false, + search_mode: SearchMode::Contains, case_sensitive: false, limit: usize::max_value(), exclude_import_kinds: FxHashSet::default(), } } - pub fn name_end(self) -> Self { - Self { name_end: true, ..self } - } - - /// todo kb pub fn name_only(self) -> Self { Self { name_only: true, ..self } } /// todo kb - pub fn strict_include(self) -> Self { - Self { strict_include: true, ..self } + pub fn search_mode(self, search_mode: SearchMode) -> Self { + Self { search_mode, ..self } } /// Limits the returned number of items to `limit`. @@ -309,18 +310,24 @@ fn contains_query(query: &Query, input_path: &ImportPath, enforce_lowercase: boo let query_string = if !enforce_lowercase && query.case_sensitive { &query.query } else { &query.lowercased }; - if query.strict_include { - if query.name_end { - &input == query_string - } else { - input.contains(query_string) + match query.search_mode { + SearchMode::Equals => &input == query_string, + SearchMode::Contains => input.contains(query_string), + SearchMode::Fuzzy => { + let mut unchecked_query_chars = query_string.chars(); + let mut mismatching_query_char = unchecked_query_chars.next(); + + for input_char in input.chars() { + match mismatching_query_char { + None => return true, + Some(matching_query_char) if matching_query_char == input_char => { + mismatching_query_char = unchecked_query_chars.next(); + } + _ => (), + } + } + mismatching_query_char.is_none() } - } else if query.name_end { - input.ends_with(query_string) - } else { - let input_chars = input.chars().collect::<FxHashSet<_>>(); - // TODO kb actually check for the order and the quantity - query_string.chars().all(|query_char| input_chars.contains(&query_char)) } } @@ -358,14 +365,14 @@ pub fn search_dependencies<'a>( continue; } - let common_importables_path_fst = fst_string(common_importables_path); + let common_importables_path_fst = fst_path(common_importables_path); // Add the items from this `ModPath` group. Those are all subsequent items in // `importables` whose paths match `path`. let iter = importables .iter() .copied() .take_while(|item| { - common_importables_path_fst == fst_string(&import_map.map[item].path) + common_importables_path_fst == fst_path(&import_map.map[item].path) }) .filter(|&item| match item_import_kind(item) { Some(import_kind) => !query.exclude_import_kinds.contains(&import_kind), @@ -741,7 +748,7 @@ mod tests { check_search( ra_fixture, "main", - Query::new("fmt"), + Query::new("fmt").search_mode(SearchMode::Fuzzy), expect