2018-05-30 03:15:50 -05:00
|
|
|
use crate::utils::paths;
|
|
|
|
use crate::utils::sugg::DiagnosticBuilderExt;
|
2018-12-11 00:06:41 -06:00
|
|
|
use crate::utils::{get_trait_def_id, implements_trait, return_ty, same_tys, span_lint_node_and_then};
|
2018-11-27 14:14:15 -06:00
|
|
|
use if_chain::if_chain;
|
2018-12-29 09:04:45 -06:00
|
|
|
use rustc::hir;
|
|
|
|
use rustc::hir::def_id::DefId;
|
|
|
|
use rustc::lint::{in_external_macro, LateContext, LateLintPass, LintArray, LintContext, LintPass};
|
|
|
|
use rustc::ty::{self, Ty};
|
|
|
|
use rustc::util::nodemap::NodeSet;
|
|
|
|
use rustc::{declare_tool_lint, lint_array};
|
|
|
|
use rustc_errors::Applicability;
|
|
|
|
use syntax::source_map::Span;
|
2016-03-01 09:25:15 -06:00
|
|
|
|
2016-08-06 02:55:04 -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).
|
2016-03-01 09:25:15 -06:00
|
|
|
///
|
2018-12-17 17:25:49 -06:00
|
|
|
/// 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
|
2019-01-07 07:32:32 -06:00
|
|
|
/// `#[derive(Default)]`
|
2018-12-17 17:25:49 -06:00
|
|
|
///
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **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.
|
2016-03-01 09:25:15 -06:00
|
|
|
///
|
|
|
|
/// **Known problems:** Hopefully none.
|
|
|
|
///
|
|
|
|
/// **Example:**
|
|
|
|
///
|
2018-08-27 10:35:30 -05:00
|
|
|
/// ```rust
|
2016-05-17 01:33:57 -05:00
|
|
|
/// struct Foo(Bar);
|
2016-03-01 09:25:15 -06:00
|
|
|
///
|
|
|
|
/// impl Foo {
|
|
|
|
/// fn new() -> Self {
|
2016-05-17 01:33:57 -05:00
|
|
|
/// Foo(Bar::new())
|
2016-03-01 09:25:15 -06:00
|
|
|
/// }
|
|
|
|
/// }
|
|
|
|
/// ```
|
2016-04-24 06:45:54 -05:00
|
|
|
///
|
|
|
|
/// Instead, use:
|
|
|
|
///
|
|
|
|
/// ```rust
|
2016-05-17 01:33:57 -05:00
|
|
|
/// struct Foo(Bar);
|
2016-04-24 06:45:54 -05:00
|
|
|
///
|
|
|
|
/// impl Default for Foo {
|
|
|
|
/// fn default() -> Self {
|
2016-05-17 01:33:57 -05:00
|
|
|
/// Foo(Bar::new())
|
2016-04-24 06:45:54 -05:00
|
|
|
/// }
|
|
|
|
/// }
|
|
|
|
/// ```
|
|
|
|
///
|
2018-12-17 17:25:49 -06:00
|
|
|
/// Or, if
|
|
|
|
/// [`Default`](https://doc.rust-lang.org/std/default/trait.Default.html)
|
|
|
|
/// can be derived by `#[derive(Default)]`:
|
2016-05-17 01:33:57 -05:00
|
|
|
///
|
2018-12-17 17:25:49 -06:00
|
|
|
/// ```rust
|
|
|
|
/// struct Foo;
|
2016-05-17 01:33:57 -05:00
|
|
|
///
|
2018-12-17 17:25:49 -06:00
|
|
|
/// impl Foo {
|
|
|
|
/// fn new() -> Self {
|
|
|
|
/// Foo
|
|
|
|
/// }
|
|
|
|
/// }
|
|
|
|
/// ```
|
2016-05-17 01:33:57 -05:00
|
|
|
///
|
2018-12-17 17:25:49 -06:00
|
|
|
/// Instead, use:
|
2016-05-17 01:33:57 -05:00
|
|
|
///
|
2018-08-27 10:35:30 -05:00
|
|
|
/// ```rust
|
2018-12-17 17:25:49 -06:00
|
|
|
/// #[derive(Default)]
|
2016-05-17 01:33:57 -05:00
|
|
|
/// struct Foo;
|
|
|
|
///
|
|
|
|
/// impl Foo {
|
|
|
|
/// fn new() -> Self {
|
|
|
|
/// Foo
|
|
|
|
/// }
|
|
|
|
/// }
|
|
|
|
/// ```
|
|
|
|
///
|
2018-12-17 17:25:49 -06:00
|
|
|
/// You can also have `new()` call `Default::default()`.
|
2018-03-28 08:24:26 -05:00
|
|
|
declare_clippy_lint! {
|
2018-12-17 17:25:49 -06:00
|
|
|
pub NEW_WITHOUT_DEFAULT,
|
2018-03-28 08:24:26 -05:00
|
|
|
style,
|
2018-12-17 17:25:49 -06:00
|
|
|
"`fn new() -> Self` method without `Default` implementation"
|
2016-05-17 01:33:57 -05:00
|
|
|
}
|
|
|
|
|
2018-10-21 23:59:45 -05:00
|
|
|
#[derive(Clone, Default)]
|
|
|
|
pub struct NewWithoutDefault {
|
|
|
|
impling_types: Option<NodeSet>,
|
|
|
|
}
|
2016-03-01 09:25:15 -06:00
|
|
|
|
|
|
|
impl LintPass for NewWithoutDefault {
|
|
|
|
fn get_lints(&self) -> LintArray {
|
2018-12-17 17:25:49 -06:00
|
|
|
lint_array!(NEW_WITHOUT_DEFAULT)
|
2016-03-01 09:25:15 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-07 06:13:40 -06:00
|
|
|
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for NewWithoutDefault {
|
2017-11-29 10:06:27 -06:00
|
|
|
fn check_item(&mut self, cx: &LateContext<'a, 'tcx>, item: &'tcx hir::Item) {
|
2018-07-16 08:07:39 -05:00
|
|
|
if let hir::ItemKind::Impl(_, _, _, _, None, _, ref items) = item.node {
|
2017-11-29 10:06:27 -06:00
|
|
|
for assoc_item in items {
|
|
|
|
if let hir::AssociatedItemKind::Method { has_self: false } = assoc_item.kind {
|
2018-12-07 18:56:03 -06:00
|
|
|
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::Method(ref sig, _) = impl_item.node {
|
2018-06-28 08:46:58 -05:00
|
|
|
let name = impl_item.ident.name;
|
2017-11-29 10:06:27 -06:00
|
|
|
let id = impl_item.id;
|
2018-06-24 08:32:40 -05:00
|
|
|
if sig.header.constness == hir::Constness::Const {
|
2017-11-29 10:06:27 -06:00
|
|
|
// can't be implemented by default
|
|
|
|
return;
|
2018-10-07 05:39:54 -05:00
|
|
|
}
|
|
|
|
if sig.header.unsafety == hir::Unsafety::Unsafe {
|
|
|
|
// can't be implemented for unsafe new
|
|
|
|
return;
|
2017-11-29 10:06:27 -06:00
|
|
|
}
|
2018-06-24 08:32:40 -05:00
|
|
|
if impl_item.generics.params.iter().any(|gen| match gen.kind {
|
|
|
|
hir::GenericParamKind::Type { .. } => true,
|
2018-11-27 14:14:15 -06:00
|
|
|
_ => false,
|
2018-06-24 08:32:40 -05:00
|
|
|
}) {
|
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;
|
|
|
|
}
|
2017-11-29 10:10:53 -06:00
|
|
|
if sig.decl.inputs.is_empty() && name == "new" && cx.access_levels.is_reachable(id) {
|
2018-12-07 18:56:03 -06:00
|
|
|
let self_did = cx.tcx.hir().local_def_id(cx.tcx.hir().get_parent(id));
|
2018-11-27 14:14:15 -06:00
|
|
|
let self_ty = cx.tcx.type_of(self_did);
|
2017-11-29 10:06:27 -06:00
|
|
|
if_chain! {
|
|
|
|
if same_tys(cx, self_ty, return_ty(cx, id));
|
|
|
|
if let Some(default_trait_id) = get_trait_def_id(cx, &paths::DEFAULT_TRAIT);
|
|
|
|
then {
|
2018-10-21 23:59:45 -05:00
|
|
|
if self.impling_types.is_none() {
|
2018-11-21 06:29:23 -06:00
|
|
|
let mut impls = NodeSet::default();
|
2018-10-21 23:59:45 -05:00
|
|
|
cx.tcx.for_each_impl(default_trait_id, |d| {
|
|
|
|
if let Some(ty_def) = cx.tcx.type_of(d).ty_adt_def() {
|
2018-12-07 18:56:03 -06:00
|
|
|
if let Some(node_id) = cx.tcx.hir().as_local_node_id(ty_def.did) {
|
2018-10-21 23:59:45 -05:00
|
|
|
impls.insert(node_id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
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();
|
|
|
|
if self_def.did.is_local();
|
|
|
|
then {
|
2018-12-07 18:56:03 -06:00
|
|
|
let self_id = cx.tcx.hir().local_def_id_to_node_id(self_def.did.to_local());
|
2018-10-21 23:59:45 -05:00
|
|
|
if impling_types.contains(&self_id) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-29 10:06:27 -06:00
|
|
|
if let Some(sp) = can_derive_default(self_ty, cx, default_trait_id) {
|
2018-12-11 00:06:41 -06:00
|
|
|
span_lint_node_and_then(
|
2017-11-29 10:06:27 -06:00
|
|
|
cx,
|
2018-12-17 17:25:49 -06:00
|
|
|
NEW_WITHOUT_DEFAULT,
|
2018-12-11 00:06:41 -06:00
|
|
|
id,
|
2017-11-29 10:10:53 -06:00
|
|
|
impl_item.span,
|
2018-11-27 14:14:15 -06:00
|
|
|
&format!(
|
|
|
|
"you should consider deriving a `Default` implementation for `{}`",
|
|
|
|
self_ty
|
|
|
|
),
|
2017-11-29 10:06:27 -06:00
|
|
|
|db| {
|
2018-09-15 11:28:51 -05:00
|
|
|
db.suggest_item_with_attr(
|
2018-09-18 10:07:54 -05:00
|
|
|
cx,
|
|
|
|
sp,
|
|
|
|
"try this",
|
|
|
|
"#[derive(Default)]",
|
2018-09-18 12:01:17 -05:00
|
|
|
Applicability::MaybeIncorrect,
|
2018-09-18 10:07:54 -05:00
|
|
|
);
|
2017-11-29 10:06:27 -06:00
|
|
|
});
|
|
|
|
} else {
|
2018-12-11 00:06:41 -06:00
|
|
|
span_lint_node_and_then(
|
2017-11-29 10:06:27 -06:00
|
|
|
cx,
|
|
|
|
NEW_WITHOUT_DEFAULT,
|
2018-12-11 00:06:41 -06:00
|
|
|
id,
|
2017-11-29 10:10:53 -06:00
|
|
|
impl_item.span,
|
2018-11-27 14:14:15 -06:00
|
|
|
&format!(
|
|
|
|
"you should consider adding a `Default` implementation for `{}`",
|
|
|
|
self_ty
|
|
|
|
),
|
2017-11-29 10:06:27 -06:00
|
|
|
|db| {
|
|
|
|
db.suggest_prepend_item(
|
|
|
|
cx,
|
2017-11-29 10:10:53 -06:00
|
|
|
item.span,
|
2017-11-29 10:06:27 -06:00
|
|
|
"try this",
|
|
|
|
&create_new_without_default_suggest_msg(self_ty),
|
2018-09-18 12:01:17 -05:00
|
|
|
Applicability::MaybeIncorrect,
|
2017-11-29 10:06:27 -06:00
|
|
|
);
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-11-04 14:25:13 -05:00
|
|
|
}
|
|
|
|
}
|
2017-10-23 14:18:02 -05:00
|
|
|
}
|
2016-03-01 09:25:15 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-05-17 01:33:57 -05:00
|
|
|
|
2018-07-23 06:01:12 -05:00
|
|
|
fn create_new_without_default_suggest_msg(ty: Ty<'_>) -> String {
|
2018-05-30 11:24:44 -05:00
|
|
|
#[rustfmt::skip]
|
2017-11-04 14:25:13 -05:00
|
|
|
format!(
|
|
|
|
"impl Default for {} {{
|
|
|
|
fn default() -> Self {{
|
|
|
|
Self::new()
|
|
|
|
}}
|
|
|
|
}}", ty)
|
|
|
|
}
|
|
|
|
|
2017-06-10 21:57:25 -05:00
|
|
|
fn can_derive_default<'t, 'c>(ty: Ty<'t>, cx: &LateContext<'c, 't>, default_trait_id: DefId) -> Option<Span> {
|
2016-05-17 01:33:57 -05:00
|
|
|
match ty.sty {
|
2018-08-22 16:34:52 -05:00
|
|
|
ty::Adt(adt_def, substs) if adt_def.is_struct() => {
|
2016-05-17 01:33:57 -05:00
|
|
|
for field in adt_def.all_fields() {
|
|
|
|
let f_ty = field.ty(cx.tcx, substs);
|
2017-06-10 21:34:47 -05:00
|
|
|
if !implements_trait(cx, f_ty, default_trait_id, &[]) {
|
2016-12-29 13:19:32 -06:00
|
|
|
return None;
|
2016-05-17 01:33:57 -05:00
|
|
|
}
|
|
|
|
}
|
2017-06-10 22:15:53 -05:00
|
|
|
Some(cx.tcx.def_span(adt_def.did))
|
2016-12-20 11:21:30 -06:00
|
|
|
},
|
2016-12-29 13:19:32 -06:00
|
|
|
_ => None,
|
2016-05-17 01:33:57 -05:00
|
|
|
}
|
|
|
|
}
|