2020-02-18 11:35:10 -06:00
|
|
|
use hir::Adt;
|
2019-11-09 09:56:36 -06:00
|
|
|
use ra_syntax::{
|
|
|
|
ast::{
|
2020-04-03 14:12:09 -05:00
|
|
|
self, AstNode, AstToken, NameOwner, StructKind, TypeAscriptionOwner, TypeParamsOwner,
|
|
|
|
VisibilityOwner,
|
2019-11-09 09:56:36 -06:00
|
|
|
},
|
|
|
|
TextUnit, T,
|
|
|
|
};
|
2020-03-28 05:01:25 -05:00
|
|
|
use stdx::{format_to, SepBy};
|
2019-11-09 09:56:36 -06:00
|
|
|
|
|
|
|
use crate::{Assist, AssistCtx, AssistId};
|
|
|
|
|
|
|
|
// Assist: add_new
|
|
|
|
//
|
|
|
|
// Adds a new inherent impl for a type.
|
|
|
|
//
|
|
|
|
// ```
|
|
|
|
// struct Ctx<T: Clone> {
|
|
|
|
// data: T,<|>
|
|
|
|
// }
|
|
|
|
// ```
|
|
|
|
// ->
|
|
|
|
// ```
|
|
|
|
// struct Ctx<T: Clone> {
|
|
|
|
// data: T,
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// impl<T: Clone> Ctx<T> {
|
|
|
|
// fn new(data: T) -> Self { Self { data } }
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// ```
|
2020-02-06 09:58:57 -06:00
|
|
|
pub(crate) fn add_new(ctx: AssistCtx) -> Option<Assist> {
|
2019-11-09 09:56:36 -06:00
|
|
|
let strukt = ctx.find_node_at_offset::<ast::StructDef>()?;
|
|
|
|
|
|
|
|
// We want to only apply this to non-union structs with named fields
|
2019-11-25 08:30:50 -06:00
|
|
|
let field_list = match strukt.kind() {
|
|
|
|
StructKind::Record(named) => named,
|
2019-11-09 09:56:36 -06:00
|
|
|
_ => return None,
|
|
|
|
};
|
|
|
|
|
|
|
|
// Return early if we've found an existing new fn
|
2020-02-29 14:24:40 -06:00
|
|
|
let impl_def = find_struct_impl(&ctx, &strukt)?;
|
2019-11-09 09:56:36 -06:00
|
|
|
|
2020-01-14 11:32:26 -06:00
|
|
|
ctx.add_assist(AssistId("add_new"), "Add default constructor", |edit| {
|
2019-11-09 09:56:36 -06:00
|
|
|
edit.target(strukt.syntax().text_range());
|
|
|
|
|
|
|
|
let mut buf = String::with_capacity(512);
|
|
|
|
|
2020-02-29 14:24:40 -06:00
|
|
|
if impl_def.is_some() {
|
2019-11-09 09:56:36 -06:00
|
|
|
buf.push('\n');
|
|
|
|
}
|
|
|
|
|
2020-03-28 05:01:25 -05:00
|
|
|
let vis = strukt.visibility().map(|v| format!("{} ", v));
|
2020-02-18 06:53:02 -06:00
|
|
|
let vis = vis.as_deref().unwrap_or("");
|
2019-11-09 09:56:36 -06:00
|
|
|
|
2020-03-28 05:01:25 -05:00
|
|
|
let params = field_list
|
|
|
|
.fields()
|
|
|
|
.filter_map(|f| {
|
|
|
|
Some(format!(
|
|
|
|
"{}: {}",
|
|
|
|
f.name()?.syntax().text(),
|
|
|
|
f.ascribed_type()?.syntax().text()
|
|
|
|
))
|
|
|
|
})
|
|
|
|
.sep_by(", ");
|
|
|
|
let fields = field_list.fields().filter_map(|f| f.name()).sep_by(", ");
|
2019-11-09 09:56:36 -06:00
|
|
|
|
2020-03-28 05:01:25 -05:00
|
|
|
format_to!(buf, " {}fn new({}) -> Self {{ Self {{ {} }} }}", vis, params, fields);
|
2019-11-09 09:56:36 -06:00
|
|
|
|
2020-02-29 14:24:40 -06:00
|
|
|
let (start_offset, end_offset) = impl_def
|
|
|
|
.and_then(|impl_def| {
|
2019-12-07 04:52:20 -06:00
|
|
|
buf.push('\n');
|
2020-02-29 14:24:40 -06:00
|
|
|
let start = impl_def
|
2019-12-07 04:52:20 -06:00
|
|
|
.syntax()
|
|
|
|
.descendants_with_tokens()
|
|
|
|
.find(|t| t.kind() == T!['{'])?
|
|
|
|
.text_range()
|
|
|
|
.end();
|
|
|
|
|
|
|
|
Some((start, TextUnit::from_usize(1)))
|
|
|
|
})
|
|
|
|
.unwrap_or_else(|| {
|
|
|
|
buf = generate_impl_text(&strukt, &buf);
|
|
|
|
let start = strukt.syntax().text_range().end();
|
|
|
|
|
|
|
|
(start, TextUnit::from_usize(3))
|
|
|
|
});
|
2019-11-09 09:56:36 -06:00
|
|
|
|
|
|
|
edit.set_cursor(start_offset + TextUnit::of_str(&buf) - end_offset);
|
|
|
|
edit.insert(start_offset, buf);
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// Generates the surrounding `impl Type { <code> }` including type and lifetime
|
|
|
|
// parameters
|
|
|
|
fn generate_impl_text(strukt: &ast::StructDef, code: &str) -> String {
|
|
|
|
let type_params = strukt.type_param_list();
|
|
|
|
let mut buf = String::with_capacity(code.len());
|
|
|
|
buf.push_str("\n\nimpl");
|
|
|
|
if let Some(type_params) = &type_params {
|
2020-03-28 05:01:25 -05:00
|
|
|
format_to!(buf, "{}", type_params.syntax());
|
2019-11-09 09:56:36 -06:00
|
|
|
}
|
|
|
|
buf.push_str(" ");
|
|
|
|
buf.push_str(strukt.name().unwrap().text().as_str());
|
|
|
|
if let Some(type_params) = type_params {
|
|
|
|
let lifetime_params = type_params
|
|
|
|
.lifetime_params()
|
2020-04-03 14:12:09 -05:00
|
|
|
.filter_map(|it| it.lifetime())
|
2019-11-09 09:56:36 -06:00
|
|
|
.map(|it| it.text().clone());
|
|
|
|
let type_params =
|
|
|
|
type_params.type_params().filter_map(|it| it.name()).map(|it| it.text().clone());
|
2020-03-28 05:01:25 -05:00
|
|
|
format_to!(buf, "<{}>", lifetime_params.chain(type_params).sep_by(", "))
|
2019-11-09 09:56:36 -06:00
|
|
|
}
|
|
|
|
|
2020-03-28 05:01:25 -05:00
|
|
|
format_to!(buf, " {{\n{}\n}}\n", code);
|
2019-11-09 09:56:36 -06:00
|
|
|
|
|
|
|
buf
|
|
|
|
}
|
|
|
|
|
|
|
|
// Uses a syntax-driven approach to find any impl blocks for the struct that
|
|
|
|
// exist within the module/file
|
|
|
|
//
|
|
|
|
// Returns `None` if we've found an existing `new` fn
|
|
|
|
//
|
|
|
|
// FIXME: change the new fn checking to a more semantic approach when that's more
|
|
|
|
// viable (e.g. we process proc macros, etc)
|
2020-02-29 14:24:40 -06:00
|
|
|
fn find_struct_impl(ctx: &AssistCtx, strukt: &ast::StructDef) -> Option<Option<ast::ImplDef>> {
|
2019-11-09 09:56:36 -06:00
|
|
|
let db = ctx.db;
|
|
|
|
let module = strukt.syntax().ancestors().find(|node| {
|
|
|
|
ast::Module::can_cast(node.kind()) || ast::SourceFile::can_cast(node.kind())
|
|
|
|
})?;
|
|
|
|
|
2020-02-18 11:35:10 -06:00
|
|
|
let struct_def = ctx.sema.to_def(strukt)?;
|
2019-11-09 09:56:36 -06:00
|
|
|
|
2020-02-29 14:24:40 -06:00
|
|
|
let block = module.descendants().filter_map(ast::ImplDef::cast).find_map(|impl_blk| {
|
2020-02-18 11:35:10 -06:00
|
|
|
let blk = ctx.sema.to_def(&impl_blk)?;
|
2019-11-09 09:56:36 -06:00
|
|
|
|
2020-02-07 11:17:08 -06:00
|
|
|
// FIXME: handle e.g. `struct S<T>; impl<U> S<U> {}`
|
|
|
|
// (we currently use the wrong type parameter)
|
|
|
|
// also we wouldn't want to use e.g. `impl S<u32>`
|
|
|
|
let same_ty = match blk.target_ty(db).as_adt() {
|
|
|
|
Some(def) => def == Adt::Struct(struct_def),
|
|
|
|
None => false,
|
|
|
|
};
|
2019-11-09 09:56:36 -06:00
|
|
|
let not_trait_impl = blk.target_trait(db).is_none();
|
|
|
|
|
2019-11-15 13:48:07 -06:00
|
|
|
if !(same_ty && not_trait_impl) {
|
2019-12-13 16:35:15 -06:00
|
|
|
None
|
|
|
|
} else {
|
|
|
|
Some(impl_blk)
|
2019-11-15 13:48:07 -06:00
|
|
|
}
|
2019-11-09 09:56:36 -06:00
|
|
|
});
|
|
|
|
|
2019-12-13 16:35:15 -06:00
|
|
|
if let Some(ref impl_blk) = block {
|
|
|
|
if has_new_fn(impl_blk) {
|
|
|
|
return None;
|
|
|
|
}
|
2019-11-09 09:56:36 -06:00
|
|
|
}
|
2019-12-13 16:35:15 -06:00
|
|
|
|
|
|
|
Some(block)
|
2019-11-09 09:56:36 -06:00
|
|
|
}
|
|
|
|
|
2020-02-29 14:24:40 -06:00
|
|
|
fn has_new_fn(imp: &ast::ImplDef) -> bool {
|
2019-11-09 09:56:36 -06:00
|
|
|
if let Some(il) = imp.item_list() {
|
|
|
|
for item in il.impl_items() {
|
|
|
|
if let ast::ImplItem::FnDef(f) = item {
|
2019-12-13 16:35:15 -06:00
|
|
|
if let Some(name) = f.name() {
|
|
|
|
if name.text().eq_ignore_ascii_case("new") {
|
|
|
|
return true;
|
|
|
|
}
|
2019-11-09 09:56:36 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
false
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use crate::helpers::{check_assist, check_assist_not_applicable, check_assist_target};
|
|
|
|
|
2019-11-15 13:48:07 -06:00
|
|
|
use super::*;
|
|
|
|
|
2019-11-09 09:56:36 -06:00
|
|
|
#[test]
|
|
|
|
#[rustfmt::skip]
|
|
|
|
fn test_add_new() {
|
|
|
|
// Check output of generation
|
|
|
|
check_assist(
|
|
|
|
add_new,
|
|
|
|
"struct Foo {<|>}",
|
|
|
|
"struct Foo {}
|
|
|
|
|
|
|
|
impl Foo {
|
|
|
|
fn new() -> Self { Self { } }<|>
|
|
|
|
}
|
|
|
|
",
|
|
|
|
);
|
|
|
|
check_assist(
|
|
|
|
add_new,
|
|
|
|
"struct Foo<T: Clone> {<|>}",
|
|
|
|
"struct Foo<T: Clone> {}
|
|
|
|
|
|
|
|
impl<T: Clone> Foo<T> {
|
|
|
|
fn new() -> Self { Self { } }<|>
|
|
|
|
}
|
|
|
|
",
|
|
|
|
);
|
|
|
|
check_assist(
|
|
|
|
add_new,
|
|
|
|
"struct Foo<'a, T: Foo<'a>> {<|>}",
|
|
|
|
"struct Foo<'a, T: Foo<'a>> {}
|
|
|
|
|
|
|
|
impl<'a, T: Foo<'a>> Foo<'a, T> {
|
|
|
|
fn new() -> Self { Self { } }<|>
|
|
|
|
}
|
|
|
|
",
|
|
|
|
);
|
|
|
|
check_assist(
|
|
|
|
add_new,
|
|
|
|
"struct Foo { baz: String <|>}",
|
|
|
|
"struct Foo { baz: String }
|
|
|
|
|
|
|
|
impl Foo {
|
|
|
|
fn new(baz: String) -> Self { Self { baz } }<|>
|
|
|
|
}
|
|
|
|
",
|
|
|
|
);
|
|
|
|
check_assist(
|
|
|
|
add_new,
|
|
|
|
"struct Foo { baz: String, qux: Vec<i32> <|>}",
|
|
|
|
"struct Foo { baz: String, qux: Vec<i32> }
|
|
|
|
|
|
|
|
impl Foo {
|
|
|
|
fn new(baz: String, qux: Vec<i32>) -> Self { Self { baz, qux } }<|>
|
|
|
|
}
|
|
|
|
",
|
|
|
|
);
|
|
|
|
|
|
|
|
// Check that visibility modifiers don't get brought in for fields
|
|
|
|
check_assist(
|
|
|
|
add_new,
|
|
|
|
"struct Foo { pub baz: String, pub qux: Vec<i32> <|>}",
|
|
|
|
"struct Foo { pub baz: String, pub qux: Vec<i32> }
|
|
|
|
|
|
|
|
impl Foo {
|
|
|
|
fn new(baz: String, qux: Vec<i32>) -> Self { Self { baz, qux } }<|>
|
|
|
|
}
|
|
|
|
",
|
|
|
|
);
|
|
|
|
|
|
|
|
// Check that it reuses existing impls
|
|
|
|
check_assist(
|
|
|
|
add_new,
|
|
|
|
"struct Foo {<|>}
|
|
|
|
|
|
|
|
impl Foo {}
|
|
|
|
",
|
|
|
|
"struct Foo {}
|
|
|
|
|
|
|
|
impl Foo {
|
|
|
|
fn new() -> Self { Self { } }<|>
|
|
|
|
}
|
|
|
|
",
|
|
|
|
);
|
|
|
|
check_assist(
|
|
|
|
add_new,
|
|
|
|
"struct Foo {<|>}
|
|
|
|
|
|
|
|
impl Foo {
|
|
|
|
fn qux(&self) {}
|
|
|
|
}
|
|
|
|
",
|
|
|
|
"struct Foo {}
|
|
|
|
|
|
|
|
impl Foo {
|
|
|
|
fn new() -> Self { Self { } }<|>
|
|
|
|
|
|
|
|
fn qux(&self) {}
|
|
|
|
}
|
|
|
|
",
|
|
|
|
);
|
|
|
|
|
|
|
|
check_assist(
|
|
|
|
add_new,
|
|
|
|
"struct Foo {<|>}
|
|
|
|
|
|
|
|
impl Foo {
|
|
|
|
fn qux(&self) {}
|
|
|
|
fn baz() -> i32 {
|
|
|
|
5
|
|
|
|
}
|
|
|
|
}
|
|
|
|
",
|
|
|
|
"struct Foo {}
|
|
|
|
|
|
|
|
impl Foo {
|
|
|
|
fn new() -> Self { Self { } }<|>
|
|
|
|
|
|
|
|
fn qux(&self) {}
|
|
|
|
fn baz() -> i32 {
|
|
|
|
5
|
|
|
|
}
|
|
|
|
}
|
|
|
|
",
|
|
|
|
);
|
|
|
|
|
|
|
|
// Check visibility of new fn based on struct
|
|
|
|
check_assist(
|
|
|
|
add_new,
|
|
|
|
"pub struct Foo {<|>}",
|
|
|
|
"pub struct Foo {}
|
|
|
|
|
|
|
|
impl Foo {
|
|
|
|
pub fn new() -> Self { Self { } }<|>
|
|
|
|
}
|
|
|
|
",
|
|
|
|
);
|
|
|
|
check_assist(
|
|
|
|
add_new,
|
|
|
|
"pub(crate) struct Foo {<|>}",
|
|
|
|
"pub(crate) struct Foo {}
|
|
|
|
|
|
|
|
impl Foo {
|
|
|
|
pub(crate) fn new() -> Self { Self { } }<|>
|
|
|
|
}
|
|
|
|
",
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn add_new_not_applicable_if_fn_exists() {
|
|
|
|
check_assist_not_applicable(
|
|
|
|
add_new,
|
|
|
|
"
|
|
|
|
struct Foo {<|>}
|
|
|
|
|
|
|
|
impl Foo {
|
|
|
|
fn new() -> Self {
|
|
|
|
Self
|
2019-11-15 13:48:07 -06:00
|
|
|
}
|
2019-11-09 09:56:36 -06:00
|
|
|
}",
|
|
|
|
);
|
|
|
|
|
|
|
|
check_assist_not_applicable(
|
|
|
|
add_new,
|
|
|
|
"
|
|
|
|
struct Foo {<|>}
|
|
|
|
|
|
|
|
impl Foo {
|
|
|
|
fn New() -> Self {
|
|
|
|
Self
|
2019-11-15 13:48:07 -06:00
|
|
|
}
|
2019-11-09 09:56:36 -06:00
|
|
|
}",
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn add_new_target() {
|
|
|
|
check_assist_target(
|
|
|
|
add_new,
|
|
|
|
"
|
|
|
|
struct SomeThingIrrelevant;
|
|
|
|
/// Has a lifetime parameter
|
|
|
|
struct Foo<'a, T: Foo<'a>> {<|>}
|
|
|
|
struct EvenMoreIrrelevant;
|
|
|
|
",
|
|
|
|
"/// Has a lifetime parameter
|
|
|
|
struct Foo<'a, T: Foo<'a>> {}",
|
|
|
|
);
|
|
|
|
}
|
2019-11-15 13:48:07 -06:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_unrelated_new() {
|
|
|
|
check_assist(
|
|
|
|
add_new,
|
|
|
|
r##"
|
|
|
|
pub struct AstId<N: AstNode> {
|
|
|
|
file_id: HirFileId,
|
|
|
|
file_ast_id: FileAstId<N>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<N: AstNode> AstId<N> {
|
|
|
|
pub fn new(file_id: HirFileId, file_ast_id: FileAstId<N>) -> AstId<N> {
|
|
|
|
AstId { file_id, file_ast_id }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct Source<T> {
|
|
|
|
pub file_id: HirFileId,<|>
|
|
|
|
pub ast: T,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> Source<T> {
|
|
|
|
pub fn map<F: FnOnce(T) -> U, U>(self, f: F) -> Source<U> {
|
|
|
|
Source { file_id: self.file_id, ast: f(self.ast) }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"##,
|
|
|
|
r##"
|
|
|
|
pub struct AstId<N: AstNode> {
|
|
|
|
file_id: HirFileId,
|
|
|
|
file_ast_id: FileAstId<N>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<N: AstNode> AstId<N> {
|
|
|
|
pub fn new(file_id: HirFileId, file_ast_id: FileAstId<N>) -> AstId<N> {
|
|
|
|
AstId { file_id, file_ast_id }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct Source<T> {
|
|
|
|
pub file_id: HirFileId,
|
|
|
|
pub ast: T,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> Source<T> {
|
|
|
|
pub fn new(file_id: HirFileId, ast: T) -> Self { Self { file_id, ast } }<|>
|
|
|
|
|
|
|
|
pub fn map<F: FnOnce(T) -> U, U>(self, f: F) -> Source<U> {
|
|
|
|
Source { file_id: self.file_id, ast: f(self.ast) }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"##,
|
|
|
|
);
|
|
|
|
}
|
2019-11-09 09:56:36 -06:00
|
|
|
}
|