2018-05-30 10:15:50 +02:00
|
|
|
use crate::utils::paths;
|
|
|
|
use crate::utils::sugg::DiagnosticBuilderExt;
|
2019-03-12 08:01:21 +01:00
|
|
|
use crate::utils::{get_trait_def_id, implements_trait, return_ty, same_tys, span_lint_hir_and_then};
|
2018-11-27 21:14:15 +01:00
|
|
|
use if_chain::if_chain;
|
2018-12-29 16:04:45 +01:00
|
|
|
use rustc_errors::Applicability;
|
2020-01-07 01:39:50 +09:00
|
|
|
use rustc_hir as hir;
|
|
|
|
use rustc_hir::def_id::DefId;
|
|
|
|
use rustc_hir::HirIdSet;
|
2020-01-12 15:08:41 +09:00
|
|
|
use rustc_lint::{LateContext, LateLintPass, LintContext};
|
2020-03-30 11:02:14 +02:00
|
|
|
use rustc_middle::lint::in_external_macro;
|
|
|
|
use rustc_middle::ty::{self, Ty};
|
2020-01-11 20:37:08 +09:00
|
|
|
use rustc_session::{declare_tool_lint, impl_lint_pass};
|
2020-01-04 11:00:00 +01:00
|
|
|
use rustc_span::source_map::Span;
|
2016-03-01 16:25:15 +01:00
|
|
|
|
2018-03-28 15:24:26 +02:00
|
|
|
declare_clippy_lint! {
|
2019-03-05 11:50:33 -05:00
|
|
|
/// **What it does:** Checks for types with a `fn new() -> Self` method and no
|
|
|
|
/// implementation of
|
|
|
|
/// [`Default`](https://doc.rust-lang.org/std/default/trait.Default.html).
|
|
|
|
///
|
|
|
|
/// It detects both the case when a manual
|
|
|
|
/// [`Default`](https://doc.rust-lang.org/std/default/trait.Default.html)
|
|
|
|
/// implementation is required and also when it can be created with
|
|
|
|
/// `#[derive(Default)]`
|
|
|
|
///
|
|
|
|
/// **Why is this bad?** The user might expect to be able to use
|
|
|
|
/// [`Default`](https://doc.rust-lang.org/std/default/trait.Default.html) as the
|
|
|
|
/// type can be constructed without arguments.
|
|
|
|
///
|
|
|
|
/// **Known problems:** Hopefully none.
|
|
|
|
///
|
|
|
|
/// **Example:**
|
|
|
|
///
|
2019-03-05 17:23:50 -05:00
|
|
|
/// ```ignore
|
2019-03-05 11:50:33 -05:00
|
|
|
/// struct Foo(Bar);
|
|
|
|
///
|
|
|
|
/// impl Foo {
|
|
|
|
/// fn new() -> Self {
|
|
|
|
/// Foo(Bar::new())
|
|
|
|
/// }
|
|
|
|
/// }
|
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
/// Instead, use:
|
|
|
|
///
|
2019-03-05 17:23:50 -05:00
|
|
|
/// ```ignore
|
2019-03-05 11:50:33 -05:00
|
|
|
/// struct Foo(Bar);
|
|
|
|
///
|
|
|
|
/// impl Default for Foo {
|
|
|
|
/// fn default() -> Self {
|
|
|
|
/// Foo(Bar::new())
|
|
|
|
/// }
|
|
|
|
/// }
|
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
/// Or, if
|
|
|
|
/// [`Default`](https://doc.rust-lang.org/std/default/trait.Default.html)
|
|
|
|
/// can be derived by `#[derive(Default)]`:
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// struct Foo;
|
|
|
|
///
|
|
|
|
/// impl Foo {
|
|
|
|
/// fn new() -> Self {
|
|
|
|
/// Foo
|
|
|
|
/// }
|
|
|
|
/// }
|
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
/// Instead, use:
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// #[derive(Default)]
|
|
|
|
/// struct Foo;
|
|
|
|
///
|
|
|
|
/// impl Foo {
|
|
|
|
/// fn new() -> Self {
|
|
|
|
/// Foo
|
|
|
|
/// }
|
|
|
|
/// }
|
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
/// You can also have `new()` call `Default::default()`.
|
2018-12-17 16:25:49 -07:00
|
|
|
pub NEW_WITHOUT_DEFAULT,
|
2018-03-28 15:24:26 +02:00
|
|
|
style,
|
2018-12-17 16:25:49 -07:00
|
|
|
"`fn new() -> Self` method without `Default` implementation"
|
2016-05-17 08:33:57 +02:00
|
|
|
}
|
|
|
|
|
2018-10-21 21:59:45 -07:00
|
|
|
#[derive(Clone, Default)]
|
|
|
|
pub struct NewWithoutDefault {
|
2019-06-18 19:45:01 +02:00
|
|
|
impling_types: Option<HirIdSet>,
|
2018-10-21 21:59:45 -07:00
|
|
|
}
|
2016-03-01 16:25:15 +01:00
|
|
|
|
2019-04-08 13:43:55 -07:00
|
|
|
impl_lint_pass!(NewWithoutDefault => [NEW_WITHOUT_DEFAULT]);
|
2016-03-01 16:25:15 +01:00
|
|
|
|
2016-12-07 13:13:40 +01:00
|
|
|
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for NewWithoutDefault {
|
2020-01-18 14:14:36 +09:00
|
|
|
#[allow(clippy::too_many_lines)]
|
2019-12-22 15:42:41 +01:00
|
|
|
fn check_item(&mut self, cx: &LateContext<'a, 'tcx>, item: &'tcx hir::Item<'_>) {
|
2020-01-18 14:14:36 +09:00
|
|
|
if let hir::ItemKind::Impl {
|
|
|
|
of_trait: None, items, ..
|
|
|
|
} = item.kind
|
|
|
|
{
|
2017-11-29 17:06:27 +01:00
|
|
|
for assoc_item in items {
|
2020-04-14 12:25:45 +02:00
|
|
|
if let hir::AssocItemKind::Fn { has_self: false } = assoc_item.kind {
|
2018-12-08 01:56:03 +01:00
|
|
|
let impl_item = cx.tcx.hir().impl_item(assoc_item.id);
|
2018-07-24 07:55:38 +01:00
|
|
|
if in_external_macro(cx.sess(), impl_item.span) {
|
2017-11-29 17:06:27 +01:00
|
|
|
return;
|
|
|
|
}
|
2020-03-16 16:00:16 +01:00
|
|
|
if let hir::ImplItemKind::Fn(ref sig, _) = impl_item.kind {
|
2018-06-28 15:46:58 +02:00
|
|
|
let name = impl_item.ident.name;
|
2019-02-24 19:43:15 +01:00
|
|
|
let id = impl_item.hir_id;
|
2018-06-24 15:32:40 +02:00
|
|
|
if sig.header.constness == hir::Constness::Const {
|
2017-11-29 17:06:27 +01:00
|
|
|
// can't be implemented by default
|
|
|
|
return;
|
2018-10-07 12:39:54 +02:00
|
|
|
}
|
|
|
|
if sig.header.unsafety == hir::Unsafety::Unsafe {
|
|
|
|
// can't be implemented for unsafe new
|
|
|
|
return;
|
2017-11-29 17:06:27 +01:00
|
|
|
}
|
2018-06-24 15:32:40 +02:00
|
|
|
if impl_item.generics.params.iter().any(|gen| match gen.kind {
|
|
|
|
hir::GenericParamKind::Type { .. } => true,
|
2018-11-27 21:14:15 +01:00
|
|
|
_ => false,
|
2018-06-24 15:32:40 +02:00
|
|
|
}) {
|
2017-11-29 17:06:27 +01:00
|
|
|
// when the result of `new()` depends on a type parameter we should not require
|
|
|
|
// an
|
|
|
|
// impl of `Default`
|
|
|
|
return;
|
|
|
|
}
|
2019-05-17 23:53:54 +02:00
|
|
|
if sig.decl.inputs.is_empty() && name == sym!(new) && cx.access_levels.is_reachable(id) {
|
2019-07-06 10:52:51 +07:00
|
|
|
let self_did = cx.tcx.hir().local_def_id(cx.tcx.hir().get_parent_item(id));
|
2018-11-27 21:14:15 +01:00
|
|
|
let self_ty = cx.tcx.type_of(self_did);
|
2017-11-29 17:06:27 +01:00
|
|
|
if_chain! {
|
2019-02-27 10:39:33 +01:00
|
|
|
if same_tys(cx, self_ty, return_ty(cx, id));
|
2019-05-17 23:53:54 +02:00
|
|
|
if let Some(default_trait_id) = get_trait_def_id(cx, &paths::DEFAULT_TRAIT);
|
2017-11-29 17:06:27 +01:00
|
|
|
then {
|
2018-10-21 21:59:45 -07:00
|
|
|
if self.impling_types.is_none() {
|
2019-06-18 19:45:01 +02:00
|
|
|
let mut impls = HirIdSet::default();
|
2018-10-21 21:59:45 -07:00
|
|
|
cx.tcx.for_each_impl(default_trait_id, |d| {
|
|
|
|
if let Some(ty_def) = cx.tcx.type_of(d).ty_adt_def() {
|
2020-04-24 11:57:34 +02:00
|
|
|
if let Some(local_def_id) = ty_def.did.as_local() {
|
|
|
|
impls.insert(cx.tcx.hir().as_local_hir_id(local_def_id));
|
2018-10-21 21:59:45 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
self.impling_types = Some(impls);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if a Default implementation exists for the Self type, regardless of
|
|
|
|
// generics
|
|
|
|
if_chain! {
|
|
|
|
if let Some(ref impling_types) = self.impling_types;
|
|
|
|
if let Some(self_def) = cx.tcx.type_of(self_did).ty_adt_def();
|
2020-03-19 14:33:10 +01:00
|
|
|
if let Some(self_def_id) = self_def.did.as_local();
|
2018-10-21 21:59:45 -07:00
|
|
|
then {
|
2020-03-19 14:33:10 +01:00
|
|
|
let self_id = cx.tcx.hir().local_def_id_to_hir_id(self_def_id);
|
2019-06-18 19:45:01 +02:00
|
|
|
if impling_types.contains(&self_id) {
|
2018-10-21 21:59:45 -07:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-29 17:06:27 +01:00
|
|
|
if let Some(sp) = can_derive_default(self_ty, cx, default_trait_id) {
|
2019-03-12 08:01:21 +01:00
|
|
|
span_lint_hir_and_then(
|
2017-11-29 17:06:27 +01:00
|
|
|
cx,
|
2018-12-17 16:25:49 -07:00
|
|
|
NEW_WITHOUT_DEFAULT,
|
2018-12-11 15:06:41 +09:00
|
|
|
id,
|
2017-11-29 17:10:53 +01:00
|
|
|
impl_item.span,
|
2018-11-27 21:14:15 +01:00
|
|
|
&format!(
|
|
|
|
"you should consider deriving a `Default` implementation for `{}`",
|
|
|
|
self_ty
|
|
|
|
),
|
2020-04-17 08:08:00 +02:00
|
|
|
|diag| {
|
|
|
|
diag.suggest_item_with_attr(
|
2018-09-18 18:07:54 +03:00
|
|
|
cx,
|
|
|
|
sp,
|
|
|
|
"try this",
|
|
|
|
"#[derive(Default)]",
|
2018-09-18 20:01:17 +03:00
|
|
|
Applicability::MaybeIncorrect,
|
2018-09-18 18:07:54 +03:00
|
|
|
);
|
2017-11-29 17:06:27 +01:00
|
|
|
});
|
|
|
|
} else {
|
2019-03-12 08:01:21 +01:00
|
|
|
span_lint_hir_and_then(
|
2017-11-29 17:06:27 +01:00
|
|
|
cx,
|
|
|
|
NEW_WITHOUT_DEFAULT,
|
2018-12-11 15:06:41 +09:00
|
|
|
id,
|
2017-11-29 17:10:53 +01:00
|
|
|
impl_item.span,
|
2018-11-27 21:14:15 +01:00
|
|
|
&format!(
|
|
|
|
"you should consider adding a `Default` implementation for `{}`",
|
|
|
|
self_ty
|
|
|
|
),
|
2020-04-17 08:08:00 +02:00
|
|
|
|diag| {
|
|
|
|
diag.suggest_prepend_item(
|
2017-11-29 17:06:27 +01:00
|
|
|
cx,
|
2017-11-29 17:10:53 +01:00
|
|
|
item.span,
|
2017-11-29 17:06:27 +01:00
|
|
|
"try this",
|
|
|
|
&create_new_without_default_suggest_msg(self_ty),
|
2018-09-18 20:01:17 +03:00
|
|
|
Applicability::MaybeIncorrect,
|
2017-11-29 17:06:27 +01:00
|
|
|
);
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-11-05 04:25:13 +09:00
|
|
|
}
|
|
|
|
}
|
2017-10-23 15:18:02 -04:00
|
|
|
}
|
2016-03-01 16:25:15 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-05-17 08:33:57 +02:00
|
|
|
|
2018-07-23 13:01:12 +02:00
|
|
|
fn create_new_without_default_suggest_msg(ty: Ty<'_>) -> String {
|
2018-05-30 18:24:44 +02:00
|
|
|
#[rustfmt::skip]
|
2017-11-05 04:25:13 +09:00
|
|
|
format!(
|
|
|
|
"impl Default for {} {{
|
|
|
|
fn default() -> Self {{
|
|
|
|
Self::new()
|
|
|
|
}}
|
|
|
|
}}", ty)
|
|
|
|
}
|
|
|
|
|
2017-06-11 05:57:25 +03:00
|
|
|
fn can_derive_default<'t, 'c>(ty: Ty<'t>, cx: &LateContext<'c, 't>, default_trait_id: DefId) -> Option<Span> {
|
2019-09-26 16:03:36 +07:00
|
|
|
match ty.kind {
|
2018-08-22 23:34:52 +02:00
|
|
|
ty::Adt(adt_def, substs) if adt_def.is_struct() => {
|
2016-05-17 08:33:57 +02:00
|
|
|
for field in adt_def.all_fields() {
|
|
|
|
let f_ty = field.ty(cx.tcx, substs);
|
2017-06-11 05:34:47 +03:00
|
|
|
if !implements_trait(cx, f_ty, default_trait_id, &[]) {
|
2016-12-29 11:19:32 -08:00
|
|
|
return None;
|
2016-05-17 08:33:57 +02:00
|
|
|
}
|
|
|
|
}
|
2017-06-11 06:15:53 +03:00
|
|
|
Some(cx.tcx.def_span(adt_def.did))
|
2016-12-20 18:21:30 +01:00
|
|
|
},
|
2016-12-29 11:19:32 -08:00
|
|
|
_ => None,
|
2016-05-17 08:33:57 +02:00
|
|
|
}
|
|
|
|
}
|