2021-03-25 18:29:11 +00:00
|
|
|
use clippy_utils::diagnostics::span_lint_hir_and_then;
|
2021-07-29 10:16:06 +00:00
|
|
|
use clippy_utils::return_ty;
|
2021-03-25 18:29:11 +00:00
|
|
|
use clippy_utils::source::snippet;
|
2022-01-23 20:41:46 +00:00
|
|
|
use clippy_utils::sugg::DiagnosticExt;
|
2018-11-27 20:14:15 +00:00
|
|
|
use if_chain::if_chain;
|
2018-12-29 15:04:45 +00:00
|
|
|
use rustc_errors::Applicability;
|
2020-01-06 16:39:50 +00:00
|
|
|
use rustc_hir as hir;
|
|
|
|
use rustc_hir::HirIdSet;
|
2020-01-12 06:08:41 +00:00
|
|
|
use rustc_lint::{LateContext, LateLintPass, LintContext};
|
2020-03-30 09:02:14 +00:00
|
|
|
use rustc_middle::lint::in_external_macro;
|
2020-01-11 11:37:08 +00:00
|
|
|
use rustc_session::{declare_tool_lint, impl_lint_pass};
|
2020-11-05 13:29:48 +00:00
|
|
|
use rustc_span::sym;
|
2016-03-01 15:25:15 +00:00
|
|
|
|
2018-03-28 13:24:26 +00:00
|
|
|
declare_clippy_lint! {
|
2021-07-29 10:16:06 +00:00
|
|
|
/// ### What it does
|
2022-02-26 13:26:21 +00:00
|
|
|
/// Checks for public types with a `pub fn new() -> Self` method and no
|
2019-03-05 16:50:33 +00:00
|
|
|
/// implementation of
|
|
|
|
/// [`Default`](https://doc.rust-lang.org/std/default/trait.Default.html).
|
|
|
|
///
|
2021-07-29 10:16:06 +00:00
|
|
|
/// ### Why is this bad?
|
|
|
|
/// The user might expect to be able to use
|
2019-03-05 16:50:33 +00:00
|
|
|
/// [`Default`](https://doc.rust-lang.org/std/default/trait.Default.html) as the
|
|
|
|
/// type can be constructed without arguments.
|
|
|
|
///
|
2021-07-29 10:16:06 +00:00
|
|
|
/// ### Example
|
2019-03-05 22:23:50 +00:00
|
|
|
/// ```ignore
|
2022-02-26 13:26:21 +00:00
|
|
|
/// pub struct Foo(Bar);
|
2019-03-05 16:50:33 +00:00
|
|
|
///
|
|
|
|
/// impl Foo {
|
2022-02-26 13:26:21 +00:00
|
|
|
/// pub fn new() -> Self {
|
2019-03-05 16:50:33 +00:00
|
|
|
/// Foo(Bar::new())
|
|
|
|
/// }
|
|
|
|
/// }
|
|
|
|
/// ```
|
|
|
|
///
|
2020-06-23 15:05:22 +00:00
|
|
|
/// To fix the lint, add a `Default` implementation that delegates to `new`:
|
2019-03-05 16:50:33 +00:00
|
|
|
///
|
2019-03-05 22:23:50 +00:00
|
|
|
/// ```ignore
|
2022-02-26 13:26:21 +00:00
|
|
|
/// pub struct Foo(Bar);
|
2019-03-05 16:50:33 +00:00
|
|
|
///
|
|
|
|
/// impl Default for Foo {
|
|
|
|
/// fn default() -> Self {
|
2020-05-28 13:45:24 +00:00
|
|
|
/// Foo::new()
|
2019-03-05 16:50:33 +00:00
|
|
|
/// }
|
|
|
|
/// }
|
|
|
|
/// ```
|
2021-12-06 11:33:31 +00:00
|
|
|
#[clippy::version = "pre 1.29.0"]
|
2018-12-17 23:25:49 +00:00
|
|
|
pub NEW_WITHOUT_DEFAULT,
|
2018-03-28 13:24:26 +00:00
|
|
|
style,
|
2022-02-26 13:26:21 +00:00
|
|
|
"`pub fn new() -> Self` method without `Default` implementation"
|
2016-05-17 06:33:57 +00:00
|
|
|
}
|
|
|
|
|
2018-10-22 04:59:45 +00:00
|
|
|
#[derive(Clone, Default)]
|
|
|
|
pub struct NewWithoutDefault {
|
2019-06-18 17:45:01 +00:00
|
|
|
impling_types: Option<HirIdSet>,
|
2018-10-22 04:59:45 +00:00
|
|
|
}
|
2016-03-01 15:25:15 +00:00
|
|
|
|
2019-04-08 20:43:55 +00:00
|
|
|
impl_lint_pass!(NewWithoutDefault => [NEW_WITHOUT_DEFAULT]);
|
2016-03-01 15:25:15 +00:00
|
|
|
|
2020-06-25 20:41:36 +00:00
|
|
|
impl<'tcx> LateLintPass<'tcx> for NewWithoutDefault {
|
|
|
|
fn check_item(&mut self, cx: &LateContext<'tcx>, item: &'tcx hir::Item<'_>) {
|
2020-11-22 22:46:21 +00:00
|
|
|
if let hir::ItemKind::Impl(hir::Impl {
|
2021-03-25 18:29:11 +00:00
|
|
|
of_trait: None,
|
2022-05-05 14:12:52 +00:00
|
|
|
generics,
|
2021-07-29 10:16:06 +00:00
|
|
|
self_ty: impl_self_ty,
|
2021-03-25 18:29:11 +00:00
|
|
|
items,
|
|
|
|
..
|
2020-11-22 22:46:21 +00:00
|
|
|
}) = item.kind
|
2020-01-18 05:14:36 +00:00
|
|
|
{
|
2022-02-05 14:26:49 +00:00
|
|
|
for assoc_item in *items {
|
2021-10-07 09:21:30 +00:00
|
|
|
if assoc_item.kind == (hir::AssocItemKind::Fn { has_self: false }) {
|
2018-12-08 00:56:03 +00:00
|
|
|
let impl_item = cx.tcx.hir().impl_item(assoc_item.id);
|
2018-07-24 06:55:38 +00:00
|
|
|
if in_external_macro(cx.sess(), impl_item.span) {
|
2017-11-29 16:06:27 +00:00
|
|
|
return;
|
|
|
|
}
|
2020-03-16 15:00:16 +00:00
|
|
|
if let hir::ImplItemKind::Fn(ref sig, _) = impl_item.kind {
|
2018-06-28 13:46:58 +00:00
|
|
|
let name = impl_item.ident.name;
|
2021-01-30 22:25:03 +00:00
|
|
|
let id = impl_item.hir_id();
|
2018-06-24 13:32:40 +00:00
|
|
|
if sig.header.constness == hir::Constness::Const {
|
2017-11-29 16:06:27 +00:00
|
|
|
// can't be implemented by default
|
|
|
|
return;
|
2018-10-07 10:39:54 +00:00
|
|
|
}
|
|
|
|
if sig.header.unsafety == hir::Unsafety::Unsafe {
|
|
|
|
// can't be implemented for unsafe new
|
|
|
|
return;
|
2017-11-29 16:06:27 +00:00
|
|
|
}
|
2022-04-26 12:04:23 +00:00
|
|
|
if cx.tcx.is_doc_hidden(impl_item.def_id) {
|
2022-02-26 13:26:21 +00:00
|
|
|
// shouldn't be implemented when it is hidden in docs
|
|
|
|
return;
|
|
|
|
}
|
2020-07-14 12:59:59 +00:00
|
|
|
if impl_item
|
|
|
|
.generics
|
|
|
|
.params
|
|
|
|
.iter()
|
|
|
|
.any(|gen| matches!(gen.kind, hir::GenericParamKind::Type { .. }))
|
|
|
|
{
|
2017-11-29 16:06:27 +00:00
|
|
|
// when the result of `new()` depends on a type parameter we should not require
|
|
|
|
// an
|
|
|
|
// impl of `Default`
|
|
|
|
return;
|
|
|
|
}
|
2021-04-08 15:50:13 +00:00
|
|
|
if_chain! {
|
|
|
|
if sig.decl.inputs.is_empty();
|
|
|
|
if name == sym::new;
|
2021-07-28 22:07:32 +00:00
|
|
|
if cx.access_levels.is_reachable(impl_item.def_id);
|
2021-10-21 17:41:47 +00:00
|
|
|
let self_def_id = cx.tcx.hir().get_parent_item(id);
|
2020-05-28 13:45:24 +00:00
|
|
|
let self_ty = cx.tcx.type_of(self_def_id);
|
2022-01-25 07:42:52 +00:00
|
|
|
if self_ty == return_ty(cx, id);
|
2021-07-29 10:16:06 +00:00
|
|
|
if let Some(default_trait_id) = cx.tcx.get_diagnostic_item(sym::Default);
|
2021-04-08 15:50:13 +00:00
|
|
|
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() {
|
2022-03-04 20:28:41 +00:00
|
|
|
if let Some(local_def_id) = ty_def.did().as_local() {
|
2021-04-08 15:50:13 +00:00
|
|
|
impls.insert(cx.tcx.hir().local_def_id_to_hir_id(local_def_id));
|
2018-10-22 04:59:45 +00:00
|
|
|
}
|
|
|
|
}
|
2021-04-08 15:50:13 +00:00
|
|
|
});
|
|
|
|
self.impling_types = Some(impls);
|
|
|
|
}
|
2018-10-22 04:59:45 +00:00
|
|
|
|
2021-04-08 15:50:13 +00: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();
|
2022-03-04 20:28:41 +00:00
|
|
|
if let Some(self_local_did) = self_def.did().as_local();
|
2021-04-08 15:50:13 +00:00
|
|
|
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 16:06:27 +00:00
|
|
|
}
|
2021-04-08 15:50:13 +00:00
|
|
|
|
|
|
|
let generics_sugg = snippet(cx, generics.span, "");
|
2021-07-29 10:16:06 +00:00
|
|
|
let self_ty_fmt = self_ty.to_string();
|
|
|
|
let self_type_snip = snippet(cx, impl_self_ty.span, &self_ty_fmt);
|
2021-04-08 15:50:13 +00:00
|
|
|
span_lint_hir_and_then(
|
|
|
|
cx,
|
|
|
|
NEW_WITHOUT_DEFAULT,
|
|
|
|
id,
|
|
|
|
impl_item.span,
|
|
|
|
&format!(
|
|
|
|
"you should consider adding a `Default` implementation for `{}`",
|
2021-07-29 10:16:06 +00:00
|
|
|
self_type_snip
|
2021-04-08 15:50:13 +00:00
|
|
|
),
|
|
|
|
|diag| {
|
|
|
|
diag.suggest_prepend_item(
|
|
|
|
cx,
|
|
|
|
item.span,
|
2021-07-29 10:16:06 +00:00
|
|
|
"try adding this",
|
|
|
|
&create_new_without_default_suggest_msg(&self_type_snip, &generics_sugg),
|
2021-04-08 15:50:13 +00:00
|
|
|
Applicability::MaybeIncorrect,
|
|
|
|
);
|
|
|
|
},
|
|
|
|
);
|
2017-11-29 16:06:27 +00:00
|
|
|
}
|
2017-11-04 19:25:13 +00:00
|
|
|
}
|
|
|
|
}
|
2017-10-23 19:18:02 +00:00
|
|
|
}
|
2016-03-01 15:25:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-05-17 06:33:57 +00:00
|
|
|
|
2021-07-29 10:16:06 +00:00
|
|
|
fn create_new_without_default_suggest_msg(self_type_snip: &str, generics_sugg: &str) -> String {
|
2018-05-30 16:24:44 +00:00
|
|
|
#[rustfmt::skip]
|
2017-11-04 19:25:13 +00:00
|
|
|
format!(
|
2021-03-25 18:29:11 +00:00
|
|
|
"impl{} Default for {} {{
|
2017-11-04 19:25:13 +00:00
|
|
|
fn default() -> Self {{
|
|
|
|
Self::new()
|
|
|
|
}}
|
2021-07-29 10:16:06 +00:00
|
|
|
}}", generics_sugg, self_type_snip)
|
2017-11-04 19:25:13 +00:00
|
|
|
}
|