rust/clippy_lints/src/new_without_default.rs

172 lines
7.0 KiB
Rust
Raw Normal View History

use clippy_utils::diagnostics::span_lint_hir_and_then;
2021-03-16 11:06:34 -05:00
use clippy_utils::paths;
use clippy_utils::source::snippet;
2021-03-16 11:06:34 -05:00
use clippy_utils::sugg::DiagnosticBuilderExt;
use clippy_utils::{get_trait_def_id, return_ty};
2018-11-27 14:14:15 -06:00
use if_chain::if_chain;
use rustc_errors::Applicability;
2020-01-06 10:39:50 -06:00
use rustc_hir as hir;
use rustc_hir::HirIdSet;
2020-01-12 00:08:41 -06:00
use rustc_lint::{LateContext, LateLintPass, LintContext};
use rustc_middle::lint::in_external_macro;
use rustc_middle::ty::{Ty, TyS};
2020-01-11 05:37:08 -06:00
use rustc_session::{declare_tool_lint, impl_lint_pass};
use rustc_span::sym;
2018-03-28 08:24:26 -05:00
declare_clippy_lint! {
/// **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).
///
/// **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 16:23:50 -06:00
/// ```ignore
/// struct Foo(Bar);
///
/// impl Foo {
/// fn new() -> Self {
/// Foo(Bar::new())
/// }
/// }
/// ```
///
/// To fix the lint, add a `Default` implementation that delegates to `new`:
///
2019-03-05 16:23:50 -06:00
/// ```ignore
/// struct Foo(Bar);
///
/// impl Default for Foo {
/// fn default() -> Self {
/// Foo::new()
/// }
/// }
/// ```
pub NEW_WITHOUT_DEFAULT,
2018-03-28 08:24:26 -05:00
style,
"`fn new() -> Self` method without `Default` implementation"
}
#[derive(Clone, Default)]
pub struct NewWithoutDefault {
impling_types: Option<HirIdSet>,
}
2019-04-08 15:43:55 -05:00
impl_lint_pass!(NewWithoutDefault => [NEW_WITHOUT_DEFAULT]);
impl<'tcx> LateLintPass<'tcx> for NewWithoutDefault {
2020-01-17 23:14:36 -06:00
#[allow(clippy::too_many_lines)]
fn check_item(&mut self, cx: &LateContext<'tcx>, item: &'tcx hir::Item<'_>) {
if let hir::ItemKind::Impl(hir::Impl {
of_trait: None,
ref generics,
items,
..
}) = item.kind
2020-01-17 23:14:36 -06:00
{
2017-11-29 10:06:27 -06:00
for assoc_item in items {
if let hir::AssocItemKind::Fn { has_self: false } = assoc_item.kind {
let impl_item = cx.tcx.hir().impl_item(assoc_item.id);
2018-07-24 01:55:38 -05:00
if in_external_macro(cx.sess(), impl_item.span) {
2017-11-29 10:06:27 -06:00
return;
}
if let hir::ImplItemKind::Fn(ref sig, _) = impl_item.kind {
2018-06-28 08:46:58 -05:00
let name = impl_item.ident.name;
let id = impl_item.hir_id();
if sig.header.constness == hir::Constness::Const {
2017-11-29 10:06:27 -06:00
// can't be implemented by default
return;
}
if sig.header.unsafety == hir::Unsafety::Unsafe {
// can't be implemented for unsafe new
return;
2017-11-29 10:06:27 -06:00
}
if impl_item
.generics
.params
.iter()
.any(|gen| matches!(gen.kind, hir::GenericParamKind::Type { .. }))
{
2017-11-29 10:06:27 -06:00
// when the result of `new()` depends on a type parameter we should not require
// an
// impl of `Default`
return;
}
2021-03-30 14:59:59 -05:00
if_chain! {
if sig.decl.inputs.is_empty();
if name == sym::new;
if cx.access_levels.is_reachable(id);
let self_def_id = cx.tcx.hir().local_def_id(cx.tcx.hir().get_parent_item(id));
let self_ty = cx.tcx.type_of(self_def_id);
2021-03-30 14:59:59 -05:00
if TyS::same_type(self_ty, return_ty(cx, id));
if let Some(default_trait_id) = get_trait_def_id(cx, &paths::DEFAULT_TRAIT);
then {
if self.impling_types.is_none() {
let mut impls = HirIdSet::default();
cx.tcx.for_each_impl(default_trait_id, |d| {
if let Some(ty_def) = cx.tcx.type_of(d).ty_adt_def() {
if let Some(local_def_id) = ty_def.did.as_local() {
impls.insert(cx.tcx.hir().local_def_id_to_hir_id(local_def_id));
}
}
2021-03-30 14:59:59 -05:00
});
self.impling_types = Some(impls);
}
2021-03-30 14:59:59 -05:00
// 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_def_id).ty_adt_def();
if let Some(self_local_did) = self_def.did.as_local();
let self_id = cx.tcx.hir().local_def_id_to_hir_id(self_local_did);
if impling_types.contains(&self_id);
then {
return;
}
2017-11-29 10:06:27 -06:00
}
2021-03-30 14:59:59 -05:00
let generics_sugg = snippet(cx, generics.span, "");
span_lint_hir_and_then(
cx,
NEW_WITHOUT_DEFAULT,
id,
impl_item.span,
&format!(
"you should consider adding a `Default` implementation for `{}`",
self_ty
),
|diag| {
diag.suggest_prepend_item(
cx,
item.span,
"try this",
&create_new_without_default_suggest_msg(self_ty, &generics_sugg),
Applicability::MaybeIncorrect,
);
},
);
2017-11-29 10:06:27 -06:00
}
2017-11-04 14:25:13 -05:00
}
}
}
}
}
}
}
fn create_new_without_default_suggest_msg(ty: Ty<'_>, generics_sugg: &str) -> String {
2018-05-30 11:24:44 -05:00
#[rustfmt::skip]
2017-11-04 14:25:13 -05:00
format!(
"impl{} Default for {} {{
2017-11-04 14:25:13 -05:00
fn default() -> Self {{
Self::new()
}}
}}", generics_sugg, ty)
2017-11-04 14:25:13 -05:00
}