//! FIXME: write short doc here use hir::{self, Docs, HasSource}; use ra_assists::utils::get_missing_impl_items; use ra_syntax::{ ast::{self, edit}, AstNode, SyntaxKind, SyntaxNode, TextRange, }; use ra_text_edit::TextEdit; use crate::{ completion::{ CompletionContext, CompletionItem, CompletionItemKind, CompletionKind, Completions, }, display::FunctionSignature, }; pub(crate) fn complete_trait_impl(acc: &mut Completions, ctx: &CompletionContext) { let trigger = ctx.token.ancestors().find(|p| match p.kind() { SyntaxKind::FN_DEF | SyntaxKind::TYPE_ALIAS_DEF | SyntaxKind::CONST_DEF => true, _ => false, }); let impl_block = trigger .as_ref() .and_then(|node| node.parent()) .and_then(|node| node.parent()) .and_then(|node| ast::ImplBlock::cast(node)); if let (Some(trigger), Some(impl_block)) = (trigger, impl_block) { match trigger.kind() { SyntaxKind::FN_DEF => { for missing_fn in get_missing_impl_items(ctx.db, &ctx.analyzer, &impl_block) .iter() .filter_map(|item| match item { hir::AssocItem::Function(fn_item) => Some(fn_item), _ => None, }) { add_function_impl(&trigger, acc, ctx, &missing_fn); } } SyntaxKind::TYPE_ALIAS_DEF => { for missing_fn in get_missing_impl_items(ctx.db, &ctx.analyzer, &impl_block) .iter() .filter_map(|item| match item { hir::AssocItem::TypeAlias(type_item) => Some(type_item), _ => None, }) { add_type_alias_impl(&trigger, acc, ctx, &missing_fn); } } SyntaxKind::CONST_DEF => { for missing_fn in get_missing_impl_items(ctx.db, &ctx.analyzer, &impl_block) .iter() .filter_map(|item| match item { hir::AssocItem::Const(const_item) => Some(const_item), _ => None, }) { add_const_impl(&trigger, acc, ctx, &missing_fn); } } _ => {} } } } fn add_function_impl( fn_def_node: &SyntaxNode, acc: &mut Completions, ctx: &CompletionContext, func: &hir::Function, ) { let display = FunctionSignature::from_hir(ctx.db, func.clone()); let fn_name = func.name(ctx.db).to_string(); let label = if func.params(ctx.db).len() > 0 { format!("fn {}(..)", fn_name) } else { format!("fn {}()", fn_name) }; let builder = CompletionItem::new(CompletionKind::Magic, ctx.source_range(), label.clone()) .lookup_by(fn_name) .set_documentation(func.docs(ctx.db)); let completion_kind = if func.has_self_param(ctx.db) { CompletionItemKind::Method } else { CompletionItemKind::Function }; let snippet = format!("{} {{}}", display); builder .text_edit(TextEdit::replace(fn_def_node.text_range(), snippet)) .kind(completion_kind) .add_to(acc); } fn add_type_alias_impl( type_def_node: &SyntaxNode, acc: &mut Completions, ctx: &CompletionContext, type_alias: &hir::TypeAlias, ) { let alias_name = type_alias.name(ctx.db).to_string(); let snippet = format!("type {} = ", alias_name); CompletionItem::new(CompletionKind::Magic, ctx.source_range(), snippet.clone()) .text_edit(TextEdit::replace(type_def_node.text_range(), snippet)) .lookup_by(alias_name) .kind(CompletionItemKind::TypeAlias) .set_documentation(type_alias.docs(ctx.db)) .add_to(acc); } fn add_const_impl( const_def_node: &SyntaxNode, acc: &mut Completions, ctx: &CompletionContext, const_: &hir::Const, ) { let const_name = const_.name(ctx.db).map(|n| n.to_string()); if let Some(const_name) = const_name { let snippet = make_const_compl_syntax(&const_.source(ctx.db).value); CompletionItem::new(CompletionKind::Magic, ctx.source_range(), snippet.clone()) .text_edit(TextEdit::replace(const_def_node.text_range(), snippet)) .lookup_by(const_name) .kind(CompletionItemKind::Const) .set_documentation(const_.docs(ctx.db)) .add_to(acc); } } fn make_const_compl_syntax(const_: &ast::ConstDef) -> String { let const_ = edit::strip_attrs_and_docs(const_); let const_start = const_.syntax().text_range().start(); let const_end = const_.syntax().text_range().end(); let start = const_.syntax().first_child_or_token().map_or(const_start, |f| f.text_range().start()); let end = const_ .syntax() .children_with_tokens() .find(|s| s.kind() == SyntaxKind::SEMI || s.kind() == SyntaxKind::EQ) .map_or(const_end, |f| f.text_range().start()); let len = end - start; let range = TextRange::from_to(0.into(), len); let syntax = const_.syntax().text().slice(range).to_string(); format!("{} = ", syntax.trim_end()) } #[cfg(test)] mod tests { use crate::completion::{do_completion, CompletionItem, CompletionKind}; use insta::assert_debug_snapshot; fn complete(code: &str) -> Vec { do_completion(code, CompletionKind::Magic) } #[test] fn single_function() { let completions = complete( r" trait Test { fn foo(); } struct T1; impl Test for T1 { fn f<|> } ", ); assert_debug_snapshot!(completions, @r###" [ CompletionItem { label: "fn foo()", source_range: [141; 142), delete: [138; 142), insert: "fn foo() {}", kind: Function, lookup: "foo", }, ] "###); } #[test] fn hide_implemented_fn() { let completions = complete( r" trait Test { fn foo(); fn foo_bar(); } struct T1; impl Test for T1 { fn foo() {} fn f<|> } ", ); assert_debug_snapshot!(completions, @r###" [ CompletionItem { label: "fn foo_bar()", source_range: [200; 201), delete: [197; 201), insert: "fn foo_bar() {}", kind: Function, lookup: "foo_bar", }, ] "###); } #[test] fn generic_fn() { let completions = complete( r" trait Test { fn foo(); } struct T1; impl Test for T1 { fn f<|> } ", ); assert_debug_snapshot!(completions, @r###" [ CompletionItem { label: "fn foo()", source_range: [144; 145), delete: [141; 145), insert: "fn foo() {}", kind: Function, lookup: "foo", }, ] "###); } #[test] fn generic_constrait_fn() { let completions = complete( r" trait Test { fn foo() where T: Into; } struct T1; impl Test for T1 { fn f<|> } ", ); assert_debug_snapshot!(completions, @r###" [ CompletionItem { label: "fn foo()", source_range: [166; 167), delete: [163; 167), insert: "fn foo()\nwhere T: Into {}", kind: Function, lookup: "foo", }, ] "###); } #[test] fn associated_type() { let completions = complete( r" trait Test { type SomeType; } impl Test for () { type S<|> } ", ); assert_debug_snapshot!(completions, @r###" [ CompletionItem { label: "type SomeType = ", source_range: [124; 125), delete: [119; 125), insert: "type SomeType = ", kind: TypeAlias, lookup: "SomeType", }, ] "###); } #[test] fn associated_const() { let completions = complete( r" trait Test { const SOME_CONST: u16; } impl Test for () { const S<|> } ", ); assert_debug_snapshot!(completions, @r###" [ CompletionItem { label: "const SOME_CONST: u16 = ", source_range: [133; 134), delete: [127; 134), insert: "const SOME_CONST: u16 = ", kind: Const, lookup: "SOME_CONST", }, ] "###); } #[test] fn associated_const_with_default() { let completions = complete( r" trait Test { const SOME_CONST: u16 = 42; } impl Test for () { const S<|> } ", ); assert_debug_snapshot!(completions, @r###" [ CompletionItem { label: "const SOME_CONST: u16 = ", source_range: [138; 139), delete: [132; 139), insert: "const SOME_CONST: u16 = ", kind: Const, lookup: "SOME_CONST", }, ] "###); } }