Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
287 changes: 275 additions & 12 deletions crates/ide_assists/src/handlers/generate_default_from_new.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,10 @@ use crate::{
AssistId,
};
use ide_db::helpers::FamousDefs;
use itertools::Itertools;
use stdx::format_to;
use syntax::{
ast::{self, Impl, NameOwner},
ast::{self, GenericParamsOwner, Impl, NameOwner, TypeBoundsOwner},
AstNode,
};

Expand Down Expand Up @@ -65,23 +67,56 @@ pub(crate) fn generate_default_from_new(acc: &mut Assists, ctx: &AssistContext)
"Generate a Default impl from a new fn",
insert_location,
move |builder| {
let code = default_fn_node_for_new(impl_);
let default_code = " fn default() -> Self {
Self::new()
}";
let code = generate_trait_impl_text_from_impl(&impl_, "Default", default_code);
builder.insert(insert_location.end(), code);
},
)
}

fn default_fn_node_for_new(impl_: Impl) -> String {
format!(
"
fn generate_trait_impl_text_from_impl(impl_: &ast::Impl, trait_text: &str, code: &str) -> String {
let generic_params = impl_.generic_param_list();
let mut buf = String::with_capacity(code.len());
buf.push_str("\n\n");
buf.push_str("impl");

if let Some(generic_params) = &generic_params {
let lifetimes = generic_params.lifetime_params().map(|lt| format!("{}", lt.syntax()));
let type_params = generic_params.type_params().map(|type_param| {
let mut buf = String::new();
if let Some(it) = type_param.name() {
format_to!(buf, "{}", it.syntax());
}
if let Some(it) = type_param.colon_token() {
format_to!(buf, "{} ", it);
}
if let Some(it) = type_param.type_bound_list() {
format_to!(buf, "{}", it.syntax());
}
buf
});
let const_params = generic_params.const_params().map(|t| t.syntax().to_string());
let generics = lifetimes.chain(type_params).chain(const_params).format(", ");
format_to!(buf, "<{}>", generics);
}

buf.push(' ');
buf.push_str(trait_text);
buf.push_str(" for ");
buf.push_str(&impl_.self_ty().unwrap().syntax().text().to_string());

match impl_.where_clause() {
Some(where_clause) => {
format_to!(buf, "\n{}\n{{\n{}\n}}", where_clause, code);
}
None => {
format_to!(buf, " {{\n{}\n}}", code);
}
}

impl Default for {} {{
fn default() -> Self {{
Self::new()
}}
}}",
impl_.self_ty().unwrap().syntax().text()
)
buf
}

fn is_default_implemented(ctx: &AssistContext, impl_: &Impl) -> bool {
Expand Down Expand Up @@ -175,6 +210,234 @@ impl Default for Test {
);
}

#[test]
fn new_function_with_generic() {
check_pass(
r#"
pub struct Foo<T> {
_bar: *mut T,
}

impl<T> Foo<T> {
pub fn ne$0w() -> Self {
unimplemented!()
}
}
"#,
r#"
pub struct Foo<T> {
_bar: *mut T,
}

impl<T> Foo<T> {
pub fn new() -> Self {
unimplemented!()
}
}

impl<T> Default for Foo<T> {
fn default() -> Self {
Self::new()
}
}
"#,
);
}

#[test]
fn new_function_with_generics() {
check_pass(
r#"
pub struct Foo<T, B> {
_tars: *mut T,
_bar: *mut B,
}

impl<T, B> Foo<T, B> {
pub fn ne$0w() -> Self {
unimplemented!()
}
}
"#,
r#"
pub struct Foo<T, B> {
_tars: *mut T,
_bar: *mut B,
}

impl<T, B> Foo<T, B> {
pub fn new() -> Self {
unimplemented!()
}
}

impl<T, B> Default for Foo<T, B> {
fn default() -> Self {
Self::new()
}
}
"#,
);
}

#[test]
fn new_function_with_generic_and_bound() {
check_pass(
r#"
pub struct Foo<T> {
t: T,
}

impl<T: From<i32>> Foo<T> {
pub fn ne$0w() -> Self {
Foo { t: 0.into() }
}
}
"#,
r#"
pub struct Foo<T> {
t: T,
}

impl<T: From<i32>> Foo<T> {
pub fn new() -> Self {
Foo { t: 0.into() }
}
}

impl<T: From<i32>> Default for Foo<T> {
fn default() -> Self {
Self::new()
}
}
"#,
);
}

#[test]
fn new_function_with_generics_and_bounds() {
check_pass(
r#"
pub struct Foo<T, B> {
_tars: T,
_bar: B,
}

impl<T: From<i32>, B: From<i64>> Foo<T, B> {
pub fn ne$0w() -> Self {
unimplemented!()
}
}
"#,
r#"
pub struct Foo<T, B> {
_tars: T,
_bar: B,
}

impl<T: From<i32>, B: From<i64>> Foo<T, B> {
pub fn new() -> Self {
unimplemented!()
}
}

impl<T: From<i32>, B: From<i64>> Default for Foo<T, B> {
fn default() -> Self {
Self::new()
}
}
"#,
);
}

#[test]
fn new_function_with_generic_and_where() {
check_pass(
r#"
pub struct Foo<T> {
t: T,
}

impl<T: From<i32>> Foo<T>
where
Option<T>: Debug
{
pub fn ne$0w() -> Self {
Foo { t: 0.into() }
}
}
"#,
r#"
pub struct Foo<T> {
t: T,
}

impl<T: From<i32>> Foo<T>
where
Option<T>: Debug
{
pub fn new() -> Self {
Foo { t: 0.into() }
}
}

impl<T: From<i32>> Default for Foo<T>
where
Option<T>: Debug
{
fn default() -> Self {
Self::new()
}
}
"#,
);
}

#[test]
fn new_function_with_generics_and_wheres() {
check_pass(
r#"
pub struct Foo<T, B> {
_tars: T,
_bar: B,
}

impl<T: From<i32>, B: From<i64>> Foo<T, B>
where
Option<T>: Debug, Option<B>: Debug,
{
pub fn ne$0w() -> Self {
unimplemented!()
}
}
"#,
r#"
pub struct Foo<T, B> {
_tars: T,
_bar: B,
}

impl<T: From<i32>, B: From<i64>> Foo<T, B>
where
Option<T>: Debug, Option<B>: Debug,
{
pub fn new() -> Self {
unimplemented!()
}
}

impl<T: From<i32>, B: From<i64>> Default for Foo<T, B>
where
Option<T>: Debug, Option<B>: Debug,
{
fn default() -> Self {
Self::new()
}
}
"#,
);
}

#[test]
fn new_function_with_parameters() {
cov_mark::check!(new_function_with_parameters);
Expand Down