rust/crates/ra_ide/src/completion.rs

161 lines
5.1 KiB
Rust
Raw Normal View History

//! FIXME: write short doc here
2019-01-08 13:33:36 -06:00
mod completion_item;
mod completion_context;
mod presentation;
2019-01-08 13:33:36 -06:00
mod complete_dot;
2019-08-23 07:55:21 -05:00
mod complete_record_literal;
mod complete_record_pattern;
2019-02-24 14:49:47 -06:00
mod complete_pattern;
2019-01-08 13:33:36 -06:00
mod complete_fn_param;
mod complete_keyword;
mod complete_snippet;
mod complete_path;
mod complete_scope;
2019-01-20 23:19:51 -06:00
mod complete_postfix;
mod complete_macro_in_item_position;
2020-01-22 22:38:03 -06:00
mod complete_trait_impl;
2020-03-11 04:46:43 -05:00
#[cfg(test)]
mod test_utils;
2019-01-08 13:33:36 -06:00
2020-02-06 05:52:32 -06:00
use ra_ide_db::RootDatabase;
2019-01-08 13:33:36 -06:00
use crate::{
completion::{
completion_context::CompletionContext,
completion_item::{CompletionKind, Completions},
2019-01-08 13:33:36 -06:00
},
2020-02-06 05:52:32 -06:00
FilePosition,
2019-01-08 13:33:36 -06:00
};
pub use crate::completion::completion_item::{
CompletionItem, CompletionItemKind, InsertTextFormat,
};
2020-03-31 15:39:46 -05:00
use either::Either;
use hir::{StructField, Type};
use ra_syntax::{
ast::{self, NameOwner},
SmolStr,
};
2019-01-08 13:33:36 -06:00
2020-03-10 12:39:17 -05:00
#[derive(Clone, Debug, PartialEq, Eq)]
2020-03-31 09:02:55 -05:00
pub struct CompletionConfig {
2020-03-10 12:39:17 -05:00
pub enable_postfix_completions: bool,
pub add_call_parenthesis: bool,
pub add_call_argument_snippets: bool,
}
2020-03-31 09:02:55 -05:00
impl Default for CompletionConfig {
2020-03-10 12:39:17 -05:00
fn default() -> Self {
2020-03-31 09:02:55 -05:00
CompletionConfig {
2020-03-10 12:39:17 -05:00
enable_postfix_completions: true,
add_call_parenthesis: true,
add_call_argument_snippets: true,
}
}
}
2019-01-08 13:33:36 -06:00
/// Main entry point for completion. We run completion as a two-phase process.
///
/// First, we look at the position and collect a so-called `CompletionContext.
/// This is a somewhat messy process, because, during completion, syntax tree is
/// incomplete and can look really weird.
///
/// Once the context is collected, we run a series of completion routines which
2019-02-11 10:18:27 -06:00
/// look at the context and produce completion items. One subtlety about this
2019-01-08 13:33:36 -06:00
/// phase is that completion engine should not filter by the substring which is
/// already present, it should give all possible variants for the identifier at
/// the caret. In other words, for
///
/// ```no-run
/// fn f() {
/// let foo = 92;
/// let _ = bar<|>
/// }
/// ```
///
/// `foo` *should* be present among the completion variants. Filtering by
/// identifier prefix/fuzzy match should be done higher in the stack, together
/// with ordering of completions (currently this is done by the client).
2020-03-10 12:39:17 -05:00
pub(crate) fn completions(
db: &RootDatabase,
position: FilePosition,
2020-03-31 09:02:55 -05:00
config: &CompletionConfig,
2020-03-10 12:39:17 -05:00
) -> Option<Completions> {
2020-03-31 09:02:55 -05:00
let ctx = CompletionContext::new(db, position, config)?;
2019-01-08 13:33:36 -06:00
let mut acc = Completions::default();
complete_fn_param::complete_fn_param(&mut acc, &ctx);
complete_keyword::complete_expr_keyword(&mut acc, &ctx);
complete_keyword::complete_use_tree_keyword(&mut acc, &ctx);
complete_snippet::complete_expr_snippet(&mut acc, &ctx);
complete_snippet::complete_item_snippet(&mut acc, &ctx);
complete_path::complete_path(&mut acc, &ctx);
complete_scope::complete_scope(&mut acc, &ctx);
complete_dot::complete_dot(&mut acc, &ctx);
2019-08-23 07:55:21 -05:00
complete_record_literal::complete_record_literal(&mut acc, &ctx);
complete_record_pattern::complete_record_pattern(&mut acc, &ctx);
2019-02-24 14:49:47 -06:00
complete_pattern::complete_pattern(&mut acc, &ctx);
2019-01-20 23:19:51 -06:00
complete_postfix::complete_postfix(&mut acc, &ctx);
complete_macro_in_item_position::complete_macro_in_item_position(&mut acc, &ctx);
2020-01-22 22:38:03 -06:00
complete_trait_impl::complete_trait_impl(&mut acc, &ctx);
Some(acc)
2019-01-08 13:33:36 -06:00
}
2020-03-31 15:39:46 -05:00
pub(crate) fn get_missing_fields(
ctx: &CompletionContext,
record: Either<&ast::RecordLit, &ast::RecordPat>,
) -> Option<Vec<(StructField, Type)>> {
let (ty, variant) = match record {
Either::Left(record_lit) => (
ctx.sema.type_of_expr(&record_lit.clone().into())?,
ctx.sema.resolve_record_literal(record_lit)?,
),
Either::Right(record_pat) => (
ctx.sema.type_of_pat(&record_pat.clone().into())?,
ctx.sema.resolve_record_pattern(record_pat)?,
),
};
let already_present_names = get_already_present_names(record);
Some(
ty.variant_fields(ctx.db, variant)
.into_iter()
.filter(|(field, _)| {
!already_present_names.contains(&SmolStr::from(field.name(ctx.db).to_string()))
})
.collect(),
)
}
fn get_already_present_names(record: Either<&ast::RecordLit, &ast::RecordPat>) -> Vec<SmolStr> {
// TODO kb have a single match
match record {
Either::Left(record_lit) => record_lit
.record_field_list()
.map(|field_list| field_list.fields())
.map(|fields| {
fields
.into_iter()
.filter_map(|field| field.name_ref())
.map(|name_ref| name_ref.text().clone())
.collect()
})
.unwrap_or_default(),
Either::Right(record_pat) => record_pat
.record_field_pat_list()
.map(|pat_list| pat_list.bind_pats())
.map(|bind_pats| {
bind_pats
.into_iter()
.filter_map(|pat| pat.name())
.map(|name| name.text().clone())
.collect()
})
.unwrap_or_default(),
}
}